source: patches/readline-6.1-branch_update-1.patch @ c8d4414

clfs-1.2clfs-2.1clfs-3.0.0-systemdclfs-3.0.0-sysvinitsystemdsysvinit
Last change on this file since c8d4414 was 06fcd8e, checked in by Joe Ciccone <jciccone@…>, 14 years ago

Updated Readline to 6.1.

  • Property mode set to 100644
File size: 1.6 KB
  • readline-6.1

    Submitted By: Joe Ciccone <jciccone@gmail.com>
    Date: 2010-08-03
    Initial Package Version: 6.1
    Origin: Upstream
    Upstream Status: From Upstream
    Description: Contains all upstream patches up to 6.1-002
    
    diff -Naur readline-6.1.orig/complete.c readline-6.1/complete.c
    old new  
    21382138         All other entries except "." and ".." match. */
    21392139      if (filename_len == 0)
    21402140        {
    2141           if (_rl_match_hidden_files == 0 && HIDDEN_FILE (entry->d_name))
     2141          if (_rl_match_hidden_files == 0 && HIDDEN_FILE (convfn))
    21422142            continue;
    21432143
    21442144          if (convfn[0] != '.' ||
     
    22192219                temp[dirlen++] = '/';
    22202220            }
    22212221
    2222           strcpy (temp + dirlen, entry->d_name);
     2222          strcpy (temp + dirlen, convfn);
    22232223        }
    22242224      else
    22252225        temp = savestring (convfn);
  • readline-6.1

    diff -Naur readline-6.1.orig/patchlevel readline-6.1/patchlevel
    old new  
    11# Do not edit -- exists only for use by patch
    22
    3 0
     32
  • readline-6.1

    diff -Naur readline-6.1.orig/readline.h readline-6.1/readline.h
    old new  
    3939#endif
    4040
    4141/* Hex-encoded Readline version number. */
    42 #define RL_READLINE_VERSION     0x0600          /* Readline 6.0 */
     42#define RL_READLINE_VERSION     0x0601          /* Readline 6.1 */
    4343#define RL_VERSION_MAJOR        6
    44 #define RL_VERSION_MINOR        0
     44#define RL_VERSION_MINOR        1
    4545
    4646/* Readline data structures. */
    4747
Note: See TracBrowser for help on using the repository browser.