зеркало из https://github.com/github/ruby.git
* Makefile.in: don't remove macros. now name2ctype uses macros.
* tool/enc-unicode.rb: add comment why it uses Hash#index. * enc/unicode/{name2ctype.kwd,name2ctype.src,name2ctype.h.blt}: update to follow the current name2ctype.h. FYI current Unicode version is 6.1. git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@36070 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
Родитель
de08418fc6
Коммит
06d483006c
10
ChangeLog
10
ChangeLog
|
@ -1,3 +1,13 @@
|
||||||
|
Thu Jun 14 02:53:30 2012 NARUSE, Yui <naruse@ruby-lang.org>
|
||||||
|
|
||||||
|
* Makefile.in: don't remove macros. now name2ctype uses macros.
|
||||||
|
|
||||||
|
* tool/enc-unicode.rb: add comment why it uses Hash#index.
|
||||||
|
|
||||||
|
* enc/unicode/{name2ctype.kwd,name2ctype.src,name2ctype.h.blt}:
|
||||||
|
update to follow the current name2ctype.h.
|
||||||
|
FYI current Unicode version is 6.1.
|
||||||
|
|
||||||
Thu Jun 14 00:16:59 2012 Akinori MUSHA <knu@iDaemons.org>
|
Thu Jun 14 00:16:59 2012 Akinori MUSHA <knu@iDaemons.org>
|
||||||
|
|
||||||
* lib/net/http/responses.rb, lib/webrick/httpstatus.rb: Add HTTP
|
* lib/net/http/responses.rb, lib/webrick/httpstatus.rb: Add HTTP
|
||||||
|
|
|
@ -294,7 +294,7 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd
|
||||||
trap '$(RM) $@-1.h $@-2.h' 0 && \
|
trap '$(RM) $@-1.h $@-2.h' 0 && \
|
||||||
set -x; \
|
set -x; \
|
||||||
sed '/^#ifdef USE_UNICODE_PROPERTIES/,/^#endif/d' $? | gperf $(NAME2CTYPE_OPTIONS) > $@-1.h && \
|
sed '/^#ifdef USE_UNICODE_PROPERTIES/,/^#endif/d' $? | gperf $(NAME2CTYPE_OPTIONS) > $@-1.h && \
|
||||||
sed -e '/^#ifdef USE_UNICODE_PROPERTIES/,/^#endif/{' -e '/^#/d' -e '}' $? | gperf $(NAME2CTYPE_OPTIONS) > $@-2.h && \
|
sed '/^#ifdef USE_UNICODE_PROPERTIES/d;/^#endif/d' $? | gperf $(NAME2CTYPE_OPTIONS) > $@-2.h && \
|
||||||
diff -DUSE_UNICODE_PROPERTIES $@-1.h $@-2.h > $@.tmp || :; \
|
diff -DUSE_UNICODE_PROPERTIES $@-1.h $@-2.h > $@.tmp || :; \
|
||||||
$(MV) $@.tmp $@ && \
|
$(MV) $@.tmp $@ && \
|
||||||
$(CP) $? $(?:.kwd=.src) && \
|
$(CP) $? $(?:.kwd=.src) && \
|
||||||
|
|
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
Разница между файлами не показана из-за своего большого размера
Загрузить разницу
|
@ -231,7 +231,7 @@ $const_cache = {}
|
||||||
# the group
|
# the group
|
||||||
def make_const(prop, data, name)
|
def make_const(prop, data, name)
|
||||||
puts "\n/* '#{prop}': #{name} */"
|
puts "\n/* '#{prop}': #{name} */"
|
||||||
if origprop = $const_cache.index(data)
|
if origprop = $const_cache.index(data) # don't use Hash#key because it is 1.9 feature
|
||||||
puts "#define CR_#{prop} CR_#{origprop}"
|
puts "#define CR_#{prop} CR_#{origprop}"
|
||||||
else
|
else
|
||||||
$const_cache[prop] = data
|
$const_cache[prop] = data
|
||||||
|
|
Загрузка…
Ссылка в новой задаче