source:
patches/readline-6.1-branch_update-1.patch@
5d307e8
Last change on this file since 5d307e8 was 06fcd8e, checked in by , 14 years ago | |
---|---|
|
|
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 2138 2138 All other entries except "." and ".." match. */ 2139 2139 if (filename_len == 0) 2140 2140 { 2141 if (_rl_match_hidden_files == 0 && HIDDEN_FILE ( entry->d_name))2141 if (_rl_match_hidden_files == 0 && HIDDEN_FILE (convfn)) 2142 2142 continue; 2143 2143 2144 2144 if (convfn[0] != '.' || … … 2219 2219 temp[dirlen++] = '/'; 2220 2220 } 2221 2221 2222 strcpy (temp + dirlen, entry->d_name);2222 strcpy (temp + dirlen, convfn); 2223 2223 } 2224 2224 else 2225 2225 temp = savestring (convfn); -
readline-6.1
diff -Naur readline-6.1.orig/patchlevel readline-6.1/patchlevel
old new 1 1 # Do not edit -- exists only for use by patch 2 2 3 0 3 2 -
readline-6.1
diff -Naur readline-6.1.orig/readline.h readline-6.1/readline.h
old new 39 39 #endif 40 40 41 41 /* Hex-encoded Readline version number. */ 42 #define RL_READLINE_VERSION 0x060 0 /* Readline 6.0*/42 #define RL_READLINE_VERSION 0x0601 /* Readline 6.1 */ 43 43 #define RL_VERSION_MAJOR 6 44 #define RL_VERSION_MINOR 044 #define RL_VERSION_MINOR 1 45 45 46 46 /* Readline data structures. */ 47 47
Note:
See TracBrowser
for help on using the repository browser.