From: Chet Ramey Date: Sat, 13 Jan 2024 23:27:28 +0000 (-0500) Subject: Bash-5.2 patch 26: fix typo when specifying readline's custom color prefix X-Git-Tag: bash-5.3-alpha~2 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f3b6bd19457e260b65d11f2712ec3da56cef463f;p=thirdparty%2Fbash.git Bash-5.2 patch 26: fix typo when specifying readline's custom color prefix --- diff --git a/lib/readline/colors.c b/lib/readline/colors.c index dba81a279..4212c64c3 100644 --- a/lib/readline/colors.c +++ b/lib/readline/colors.c @@ -73,7 +73,7 @@ static bool is_colored (enum indicator_no type); static void restore_default_color (void); -#define RL_COLOR_PREFIX_EXTENSION "readline-colored-completion-prefix" +#define RL_COLOR_PREFIX_EXTENSION ".readline-colored-completion-prefix" COLOR_EXT_TYPE *_rl_color_ext_list = 0; diff --git a/patchlevel.h b/patchlevel.h index 8c430b164..e48142124 100644 --- a/patchlevel.h +++ b/patchlevel.h @@ -25,6 +25,6 @@ regexp `^#define[ ]*PATCHLEVEL', since that's what support/mkversion.sh looks for to find the patch level (for the sccs version string). */ -#define PATCHLEVEL 25 +#define PATCHLEVEL 26 #endif /* _PATCHLEVEL_H_ */