mirror of
https://https.git.savannah.gnu.org/git/bash.git
synced 2026-08-08 03:02:40 +02:00
commit bash-20170421 snapshot
This commit is contained in:
@@ -53,7 +53,7 @@ BASHINCDIR = ${topdir}/include
|
||||
INCLUDES = -I. -I../.. -I$(topdir) -I$(BASHINCDIR) -I$(topdir)/lib
|
||||
|
||||
CCFLAGS = $(PROFILE_FLAGS) $(DEFS) $(LOCAL_DEFS) ${INCLUDES} $(CPPFLAGS) \
|
||||
$(LOCAL_CFLAGS) $(CFLAGS)
|
||||
$(LOCAL_CFLAGS) $(CFLAGS) ${ASAN_CFLAGS}
|
||||
|
||||
# Here is a rule for making .o files from .c files that doesn't force
|
||||
# the type of the machine (like -sun3) into the flags.
|
||||
|
||||
@@ -64,7 +64,8 @@ LOCAL_DEFS = @LOCAL_DEFS@
|
||||
|
||||
INCLUDES = -I. -I$(BUILD_DIR) -I$(topdir) -I$(topdir)/lib
|
||||
|
||||
CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(APP_CFLAGS) $(CPPFLAGS) ${INCLUDES} $(LOCAL_CFLAGS) $(CFLAGS)
|
||||
CCFLAGS = $(DEFS) $(LOCAL_DEFS) $(APP_CFLAGS) $(CPPFLAGS) ${INCLUDES} \
|
||||
$(LOCAL_CFLAGS) $(CFLAGS) ${ASAN_CFLAGS}
|
||||
|
||||
.c.o:
|
||||
${RM} $@
|
||||
|
||||
@@ -90,6 +90,12 @@ If @code{readline} encounters an @code{EOF} while reading the line, and the
|
||||
line is empty at that point, then @code{(char *)NULL} is returned.
|
||||
Otherwise, the line is ended just as if a newline had been typed.
|
||||
|
||||
Readline performs some expansion on the @var{prompt} before it is
|
||||
displayed on the screen. See the description of @code{rl_expand_prompt}
|
||||
(@pxref{Redisplay}) for additional details, especially if @var{prompt}
|
||||
will contain characters that do not consume physical screen space when
|
||||
displayed.
|
||||
|
||||
If you want the user to be able to get at the line later, (with
|
||||
@key{C-p} for example), you must call @code{add_history()} to save the
|
||||
line away in a @dfn{history} list of such lines.
|
||||
|
||||
@@ -4,7 +4,7 @@ Copyright (C) 1988-2017 Free Software Foundation, Inc.
|
||||
|
||||
@set EDITION 7.0
|
||||
@set VERSION 7.0
|
||||
@set UPDATED 3 February 2017
|
||||
@set UPDATED-MONTH February 2017
|
||||
@set UPDATED 21 April 2017
|
||||
@set UPDATED-MONTH April 2017
|
||||
|
||||
@set LASTCHANGE Fri Feb 3 15:59:51 EST 2017
|
||||
@set LASTCHANGE Fri Apr 21 15:25:17 EDT 2017
|
||||
|
||||
Reference in New Issue
Block a user