File tree Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Expand file tree Collapse file tree 3 files changed +10
-5
lines changed Original file line number Diff line number Diff line change
1
+ Wed Jul 22 23:39:34 2009 Yukihiro Matsumoto <matz@ruby-lang.org>
2
+
3
+ * lib/rexml/text.rb (REXML::Text.normalize): call to_s for input.
4
+ [ruby-talk:337069]
5
+
1
6
Tue Jul 21 18:21:47 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
2
7
3
8
* lib/mkmf.rb (SRC_EXT): should be flat.
Original file line number Diff line number Diff line change @@ -286,7 +286,7 @@ def Text::read_with_substitution( input, illegal=nil )
286
286
EREFERENCE = /&(?!#{ Entity ::NAME } ;)/
287
287
# Escapes all possible entities
288
288
def Text ::normalize ( input , doctype = nil , entity_filter = nil )
289
- copy = input
289
+ copy = input . to_s
290
290
# Doing it like this rather than in a loop improves the speed
291
291
#copy = copy.gsub( EREFERENCE, '&' )
292
292
copy = copy . gsub ( "&" , "&" )
Original file line number Diff line number Diff line change 1
1
#define RUBY_VERSION "1.8.7"
2
- #define RUBY_RELEASE_DATE "2009-07-21 "
2
+ #define RUBY_RELEASE_DATE "2009-07-22 "
3
3
#define RUBY_VERSION_CODE 187
4
- #define RUBY_RELEASE_CODE 20090721
5
- #define RUBY_PATCHLEVEL 187
4
+ #define RUBY_RELEASE_CODE 20090722
5
+ #define RUBY_PATCHLEVEL 188
6
6
7
7
#define RUBY_VERSION_MAJOR 1
8
8
#define RUBY_VERSION_MINOR 8
9
9
#define RUBY_VERSION_TEENY 7
10
10
#define RUBY_RELEASE_YEAR 2009
11
11
#define RUBY_RELEASE_MONTH 7
12
- #define RUBY_RELEASE_DAY 21
12
+ #define RUBY_RELEASE_DAY 22
13
13
14
14
#ifdef RUBY_EXTERN
15
15
RUBY_EXTERN const char ruby_version [];
You can’t perform that action at this time.
0 commit comments