-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* 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
- Loading branch information
Showing
6 changed files
with
63,551 additions
and
50,667 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,13 @@ | ||
Thu Jun 14 02:53:30 2012 NARUSE, Yui <[email protected]> | ||
|
||
* 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 <[email protected]> | ||
|
||
* lib/net/http/responses.rb, lib/webrick/httpstatus.rb: Add HTTP | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -294,7 +294,7 @@ enc/unicode/name2ctype.h: enc/unicode/name2ctype.kwd | |
trap '$(RM) [email protected] [email protected]' 0 && \ | ||
set -x; \ | ||
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 || :; \ | ||
$(MV) $@.tmp $@ && \ | ||
$(CP) $? $(?:.kwd=.src) && \ | ||
|
Oops, something went wrong.