summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authornaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-25 03:10:57 +0000
committernaruse <naruse@b2dd03c8-39d4-4d8f-98ff-823fe69b080e>2008-06-25 03:10:57 +0000
commit30e263fc07fb66bb0a545da5540fecaf37d8c071 (patch)
treed111c69b100bc0c24feb47727d2b3f3a405f3928
parent8eb4988a033509c1dcf5a2f315cd92a98d8e53b6 (diff)
* lib/erb.rb (ERB::Compiler#compile): magic comment needs LF.
git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@17568 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
-rw-r--r--ChangeLog4
-rw-r--r--lib/erb.rb2
2 files changed, 5 insertions, 1 deletions
diff --git a/ChangeLog b/ChangeLog
index ea287cf6e0..c6abe7806f 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+Wed Jun 25 12:10:01 2008 NARUSE, Yui <naruse@ruby-lang.org>
+
+ * lib/erb.rb (ERB::Compiler#compile): magic comment needs LF.
+
Wed Jun 25 09:31:11 2008 NARUSE, Yui <naruse@ruby-lang.org>
* lib/erb.rb (ERB::Compiler#compile): output magic comment.
diff --git a/lib/erb.rb b/lib/erb.rb
index c6e9129120..e1f0782855 100644
--- a/lib/erb.rb
+++ b/lib/erb.rb
@@ -518,7 +518,7 @@ class ERB
def compile(s)
out = Buffer.new(self)
- out.push("# -*- coding: #{s.encoding} -*-")
+ out.push("# -*- coding: #{s.encoding} -*-\n")
content = ''
scanner = make_scanner(s)