diff options
Diffstat (limited to 'data/bash/bash40-036')
-rw-r--r-- | data/bash/bash40-036 | 90 |
1 files changed, 90 insertions, 0 deletions
diff --git a/data/bash/bash40-036 b/data/bash/bash40-036 new file mode 100644 index 000000000..ed08e3936 --- /dev/null +++ b/data/bash/bash40-036 @@ -0,0 +1,90 @@ + BASH PATCH REPORT + ================= + +Bash-Release: 4.0 +Patch-ID: bash40-036 + +Bug-Reported-by: Jerome Reybert <jreybert@gmail.com> +Bug-Reference-ID: <f5da50720908070109p1faa3847x5a9dff68d24a7197@mail.gmail.com> +Bug-Reference-URL: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=538013 + +Bug-Description: + +Under some circumstances, menu-complete is unable to complete filenames. + +Patch: + +*** ../bash-4.0-patched/lib/readline/complete.c 2009-01-22 15:15:14.000000000 -0500 +--- lib/readline/complete.c 2009-08-26 17:15:59.000000000 -0400 +*************** +*** 2209,2213 **** + /* The first time through, we generate the list of matches and set things + up to insert them. */ +! if (rl_last_func != rl_menu_complete) + { + /* Clean up from previous call, if any. */ +--- 2252,2256 ---- + /* The first time through, we generate the list of matches and set things + up to insert them. */ +! if (rl_last_func != rl_old_menu_complete) + { + /* Clean up from previous call, if any. */ +*************** +*** 2221,2224 **** +--- 2264,2269 ---- + rl_completion_invoking_key = invoking_key; + ++ RL_SETSTATE(RL_STATE_COMPLETING); ++ + /* Only the completion entry function can change these. */ + set_completion_defaults ('%'); +*************** +*** 2260,2266 **** +--- 2305,2314 ---- + orig_text = (char *)0; + completion_changed_buffer = 0; ++ RL_UNSETSTATE(RL_STATE_COMPLETING); + return (0); + } + ++ RL_UNSETSTATE(RL_STATE_COMPLETING); ++ + for (match_list_size = 0; matches[match_list_size]; match_list_size++) + ; +*************** +*** 2338,2341 **** +--- 2386,2391 ---- + full_completion = 0; + ++ RL_SETSTATE(RL_STATE_COMPLETING); ++ + /* Only the completion entry function can change these. */ + set_completion_defaults ('%'); +*************** +*** 2379,2385 **** +--- 2429,2438 ---- + orig_text = (char *)0; + completion_changed_buffer = 0; ++ RL_UNSETSTATE(RL_STATE_COMPLETING); + return (0); + } + ++ RL_UNSETSTATE(RL_STATE_COMPLETING); ++ + for (match_list_size = 0; matches[match_list_size]; match_list_size++) + ; +*** ../bash-4.0/patchlevel.h 2009-01-04 14:32:40.000000000 -0500 +--- patchlevel.h 2009-02-22 16:11:31.000000000 -0500 +*************** +*** 26,30 **** + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 35 + + #endif /* _PATCHLEVEL_H_ */ +--- 26,30 ---- + looks for to find the patch level (for the sccs version string). */ + +! #define PATCHLEVEL 36 + + #endif /* _PATCHLEVEL_H_ */ |