mirror of
https://github.com/ruby/ruby.git
synced 2022-11-09 12:17:21 -05:00
* parse.y (magic_comment_encoding): ignores unused emacs-style
encoding comment, as like Vim styles. [ruby-core:23470] git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@23437 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
parent
78e376a3ee
commit
f29235378d
2 changed files with 4 additions and 3 deletions
|
@ -1,4 +1,7 @@
|
|||
Sat May 16 09:30:14 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
Sat May 16 09:49:05 2009 Nobuyoshi Nakada <nobu@ruby-lang.org>
|
||||
|
||||
* parse.y (magic_comment_encoding): ignores unused emacs-style
|
||||
encoding comment, as like Vim styles. [ruby-core:23470]
|
||||
|
||||
* defs/keywords (reserved_word): made inline function static.
|
||||
[ruby-core:23210]
|
||||
|
|
2
parse.y
2
parse.y
|
@ -6100,8 +6100,6 @@ static void
|
|||
magic_comment_encoding(struct parser_params *parser, const char *name, const char *val)
|
||||
{
|
||||
if (!comment_at_top(parser)) {
|
||||
rb_warningS("encoding '%s' is ignored, valid only in the first line except for shebang line.",
|
||||
val);
|
||||
return;
|
||||
}
|
||||
parser_set_encode(parser, val);
|
||||
|
|
Loading…
Add table
Reference in a new issue