mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-09 11:40:30 +02:00
fix for fdflags loadable builtin; new strptime loadable builtin; enable -f doesn't fall back to current directory if using BASH_LOADABLES_PATH; new operator for rl_complete_internal that just dumps possible completions
This commit is contained in:
@@ -63,7 +63,7 @@ ARFLAGS = @ARFLAGS@
|
||||
LOCAL_DEFS = @LOCAL_DEFS@
|
||||
|
||||
DEFS = -DLOCALEDIR=\"$(localedir)\" -DLOCALE_ALIAS_PATH=\"$(aliaspath)\" \
|
||||
-DLIBDIR=\"$(libdir)\" -DIN_LIBINTL -DBUILDING_LIBINTL
|
||||
-DLIBDIR=\"$(libdir)\" -DIN_LIBINTL -DBUILDING_LIBINTL @DEFS@
|
||||
|
||||
# XXX - use this?
|
||||
RELOCATABLE_DEFS = -DENABLE_RELOCATABLE=1 -DIN_LIBRARY \
|
||||
|
||||
@@ -290,7 +290,7 @@ local_wcsnlen (const wchar_t *s, size_t maxlen)
|
||||
static size_t
|
||||
wctomb_fallback (char *s, wchar_t wc)
|
||||
{
|
||||
static char hex[16] = "0123456789ABCDEF";
|
||||
static char const hex[16] = "0123456789ABCDEF";
|
||||
|
||||
s[0] = '\\';
|
||||
if (sizeof (wchar_t) > 2 && wc > 0xffff)
|
||||
|
||||
Reference in New Issue
Block a user