* parse.y: remove useless function str_extend_p().

git-svn-id: svn+ssh://ci.ruby-lang.org/ruby/trunk@2622 b2dd03c8-39d4-4d8f-98ff-823fe69b080e
This commit is contained in:
aamine 2002-07-04 14:41:36 +00:00
Родитель 8e346d8cb1
Коммит 02b589fd43
2 изменённых файлов: 4 добавлений и 18 удалений

Просмотреть файл

@ -1,3 +1,7 @@
Thu Jul 4 23:43:26 2002 Minero Aoki <aamine@loveruby.net>
* parse.y: remove useless function str_extend_p().
Wed Jul 3 14:26:40 2002 Sean Chittenden <sean@ruby-lang.org>
* lib/net/ftp.rb (get): new method.

18
parse.y
Просмотреть файл

@ -2294,8 +2294,6 @@ none : /* none */ {$$ = 0;}
static char *tokenbuf = NULL;
static int tokidx, toksiz = 0;
static int str_extend_p _((void));
#define LEAVE_BS 1
static VALUE (*lex_gets)(); /* gets function */
@ -4195,22 +4193,6 @@ yylex()
}
}
static int
str_extend_p()
{
int c = nextc(), t = 0;
switch (c) {
case '$':
case '@':
t = tSTRING_DVAR;
case '{':
t = tSTRING_DBEG;
}
pushback(c);
pushback('#');
return t;
}
NODE*
rb_node_newnode(type, a0, a1, a2)
enum node_type type;