- Timestamp:
- Apr 30, 2007, 1:09:36 AM (18 years ago)
- Location:
- trunk/essentials/app-shells/bash
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
trunk/essentials/app-shells/bash/Makefile.in
-
Property svn:eol-style
set to
native
r3228 r3235 659 659 config.h: stamp-h 660 660 661 stamp-h: config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h661 stamp-h: version.h config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h 662 662 CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status 663 663 … … 667 667 # comment out for distribution 668 668 $(srcdir)/configure: $(srcdir)/configure.in $(srcdir)/aclocal.m4 $(srcdir)/config.h.in 669 cd $(srcdir) && autoconf669 cd $(srcdir) 670 670 671 671 # for chet -
Property svn:eol-style
set to
-
trunk/essentials/app-shells/bash/doc/builtins.1
-
Property svn:eol-style
set to
native
r3228 r3235 9 9 shift, shopt, source, suspend, test, times, trap, type, typeset, 10 10 ulimit, umask, unalias, unset, wait \- bash built-in commands, see \fBbash\fR(1) 11 .SH BASH BUILTIN COMMANDS12 .nr zZ 113 .so bash.114 11 .SH SEE ALSO 15 12 bash(1), sh(1) -
Property svn:eol-style
set to
-
trunk/essentials/app-shells/bash/lib/readline/complete.c
r3231 r3235 1545 1545 { 1546 1546 filename = tilde_expand (text); 1547 s = (nontrivial_match && rl_completion_mark_symlink_dirs == 0) 1548 ? LSTAT (filename, &finfo) 1549 : stat (filename, &finfo); 1547 s = stat (filename, &finfo); 1550 1548 if (s == 0 && S_ISDIR (finfo.st_mode)) 1551 1549 { -
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.