From: K.Kosako Date: Mon, 27 Aug 2018 02:01:14 +0000 (+0900) Subject: rename CASEFOLD_VERSION to UNICODE_CASEFOLD_VERSION X-Git-Tag: v6.9.0~12 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=efe7f523db8340f43b3f08e404c4c69dd18ebd5d;p=onig rename CASEFOLD_VERSION to UNICODE_CASEFOLD_VERSION --- diff --git a/src/make_unicode_fold_data.py b/src/make_unicode_fold_data.py index 64aa3a2..64c529d 100755 --- a/src/make_unicode_fold_data.py +++ b/src/make_unicode_fold_data.py @@ -1,7 +1,7 @@ #!/usr/bin/python # -*- coding: utf-8 -*- # make_unicode_fold_data.py -# Copyright (c) 2016-2017 K.Kosako +# Copyright (c) 2016-2018 K.Kosako import sys import re @@ -234,7 +234,7 @@ def output_fold_source(f, out_comment): print >> f, '#include "regenc.h"' print >> f, '' if VERSION_INFO is not None: - print "#define CASEFOLD_VERSION %s" % re.sub(r'[\.-]', '_', VERSION_INFO) + print "#define UNICODE_CASEFOLD_VERSION %s" % re.sub(r'[\.-]', '_', VERSION_INFO) print '' #output_macros(f, DataName) print >> f, ''