Changeset 3235 for trunk


Ignore:
Timestamp:
Apr 30, 2007, 1:09:36 AM (18 years ago)
Author:
bird
Message:

Applied bash-3.1-gentoo.patch (gentoo).

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  
    659659config.h:       stamp-h
    660660
    661 stamp-h:        config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h
     661stamp-h:        version.h config.status $(srcdir)/config.h.in $(srcdir)/config-top.h $(srcdir)/config-bot.h
    662662        CONFIG_FILES= CONFIG_HEADERS=config.h $(SHELL) ./config.status
    663663
     
    667667# comment out for distribution
    668668$(srcdir)/configure:    $(srcdir)/configure.in $(srcdir)/aclocal.m4 $(srcdir)/config.h.in
    669         cd $(srcdir) && autoconf
     669        cd $(srcdir)
    670670
    671671# for chet
  • trunk/essentials/app-shells/bash/doc/builtins.1

    • Property svn:eol-style set to native
    r3228 r3235  
    99shift, shopt, source, suspend, test, times, trap, type, typeset,
    1010ulimit, umask, unalias, unset, wait \- bash built-in commands, see \fBbash\fR(1)
    11 .SH BASH BUILTIN COMMANDS
    12 .nr zZ 1
    13 .so bash.1
    1411.SH SEE ALSO
    1512bash(1), sh(1)
  • trunk/essentials/app-shells/bash/lib/readline/complete.c

    r3231 r3235  
    15451545    {
    15461546      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);
    15501548      if (s == 0 && S_ISDIR (finfo.st_mode))
    15511549        {
  • trunk/essentials/app-shells/bash/parse.y

    • Property svn:eol-style set to native
    r3228 r3235  
    390390        ;
    391391
    392 word_list:      WORD
     392word_list:
     393                        { $$ = (WORD_LIST *)NULL; }
     394        |       WORD
    393395                        { $$ = make_word_list ($1, (WORD_LIST *)NULL); }
    394396        |       word_list WORD
     
    11871189#if defined (READLINE)
    11881190char *current_readline_prompt = (char *)NULL;
    1189 char *current_readline_line = (char *)NULL;
     1191unsigned char *current_readline_line = (unsigned char *)NULL;
    11901192int current_readline_line_index = 0;
    11911193
Note: See TracChangeset for help on using the changeset viewer.