Changeset 3235 for trunk/essentials/app-shells/bash/parse.y
- Timestamp:
- Apr 30, 2007, 1:09:36 AM (18 years ago)
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/parse.y
-
Property svn:eol-style
set to
native
r3228 r3235 390 390 ; 391 391 392 word_list: WORD 392 word_list: 393 { $$ = (WORD_LIST *)NULL; } 394 | WORD 393 395 { $$ = make_word_list ($1, (WORD_LIST *)NULL); } 394 396 | word_list WORD … … 1187 1189 #if defined (READLINE) 1188 1190 char *current_readline_prompt = (char *)NULL; 1189 char *current_readline_line = (char *)NULL;1191 unsigned char *current_readline_line = (unsigned char *)NULL; 1190 1192 int current_readline_line_index = 0; 1191 1193 -
Property svn:eol-style
set to
Note:
See TracChangeset
for help on using the changeset viewer.