Module Name:src
Committed By: rillig
Date: Sun Aug 15 22:22:52 UTC 2021
Modified Files:
src/lib/libedit: readline.c
Log Message:
libedit: simplify calls to macro ADD_STRING
The lint comments CONSTCOND and LINTED were not necessary. It is
simpler to just specify what to f
Module Name:src
Committed By: rillig
Date: Sun Aug 15 22:14:45 UTC 2021
Modified Files:
src/lib/libedit: readline.c
Log Message:
readline: fix lint warning about effective unconst cast
Calling strchr to avoid the syntactical unconst cast is not necessary
here. A simple p
Module Name:src
Committed By: wiz
Date: Sun Aug 15 10:12:55 UTC 2021
Modified Files:
src/lib/libedit: editline.3
Log Message:
Add verb to sentence.
To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 src/lib/libedit/editline.3
Please note that diffs are not
Module Name:src
Committed By: christos
Date: Sun Aug 15 10:08:41 UTC 2021
Modified Files:
src/lib/libedit: editline.3 el.c el.h eln.c histedit.h read.c
Log Message:
Disable attempts to handle EINTR and non-blocking I/O by default. It is
confusing to other programs and unex
Module Name:src
Committed By: christos
Date: Sun Aug 15 10:06:32 UTC 2021
Modified Files:
src/lib/libedit: readline.c
Log Message:
Add a LINTED comment... Why doesn't NOTREACHED work?
To generate a diff of this commit:
cvs rdiff -u -r1.159 -r1.160 src/lib/libedit/readlin
Module Name:src
Committed By: christos
Date: Wed Jul 14 07:47:23 UTC 2021
Modified Files:
src/lib/libedit: tty.c
Log Message:
Via Jess Thrysoee, from Adrian Bunk: Fix libedit build on Linux/Alpha
Alpha is the only Linux architecture that has SIGINFO:
https://sources.de
Module Name:src
Committed By: christos
Date: Wed May 5 14:49:59 UTC 2021
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
PR/56147: Miroslav Lichvar: Avoid memory leak if strdup fails.
To generate a diff of this commit:
cvs rdiff -u -r1.67 -r1.68 src/lib/lib
Module Name:src
Committed By: christos
Date: Sun Mar 28 13:39:39 UTC 2021
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Only unescape when we are quoting and don't add a space if we are quoting
(we already did) (Piotr Stefaniak)
To generate a diff of this
Module Name:src
Committed By: christos
Date: Sun Mar 28 13:38:10 UTC 2021
Modified Files:
src/lib/libedit: filecomplete.h
Log Message:
document the flag
To generate a diff of this commit:
cvs rdiff -u -r1.12 -r1.13 src/lib/libedit/filecomplete.h
Please note that diffs a
Module Name:src
Committed By: christos
Date: Sun Mar 28 13:33:54 UTC 2021
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Pass the unescaped filename the the append function so it has to do less work
(for example it can call stat(2) directly (Piotr Stefaniak)
Module Name:src
Committed By: christos
Date: Sat Mar 27 18:55:02 UTC 2021
Modified Files:
src/lib/libedit: filecomplete.c filecomplete.h
Log Message:
Add fn_complete2() that controls the quoting of the returned match.
Before it was based on the heuristic that we were not s
Module Name:src
Committed By: christos
Date: Fri Jul 10 20:34:24 UTC 2020
Modified Files:
src/lib/libedit: terminal.c
Log Message:
Fix numeric variable handling in settc (lyzliyuzhi at 163 dot com)
To generate a diff of this commit:
cvs rdiff -u -r1.42 -r1.43 src/lib/lib
Module Name:src
Committed By: christos
Date: Sun May 31 23:24:24 UTC 2020
Modified Files:
src/lib/libedit: terminal.c tty.c
Log Message:
use strlcpy() instead of strncpy() for gcc happiness
To generate a diff of this commit:
cvs rdiff -u -r1.41 -r1.42 src/lib/libedit/ter
Module Name:src
Committed By: ryo
Date: Mon Mar 30 06:56:38 UTC 2020
Modified Files:
src/lib/libedit: search.c
Log Message:
patbuf must be updated if the length of patbuf is greater than or equal to 0.
(that is always)
fix of r1.7 was incorrect.
To generate a diff of th
Module Name:src
Committed By: ryo
Date: Mon Mar 30 06:54:37 UTC 2020
Modified Files:
src/lib/libedit: common.c map.c refresh.c search.c
Log Message:
fix build error with SDEBUG, MAP_DEBUG, DEBUG_REFRESH
To generate a diff of this commit:
cvs rdiff -u -r1.48 -r1.49 src/li
Module Name:src
Committed By: abhinav
Date: Sun Jan 5 07:12:05 UTC 2020
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
PR lib/54510 - when user supplied completion function is there,
don't unescape the string to be completed.
To generate a diff of this com
Module Name:src
Committed By: tih
Date: Sun Jan 5 00:03:28 UTC 2020
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Summary: Remove over-simplified extraneous test
The file name matching code in libedit tries to adjust to the presence
of explicit " or ' char
Module Name:src
Committed By: christos
Date: Tue Dec 10 19:42:09 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
When 'attempted_completion_function' non-NULL, with a 'single_match'
match, the expected space is not being added. Problem observed with
"
Module Name:src
Committed By: christos
Date: Fri Apr 26 16:56:58 UTC 2019
Modified Files:
src/lib/libedit: el.c eln.c readline.c
Log Message:
Follow the man page for EL_GETTC and not require a NULL terminated argument
list: https://reviews.llvm.org/D61191
To generate a d
Module Name:src
Committed By: abhinav
Date: Sat Apr 20 08:44:10 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
PR lib/54131 - declare the loop variable outside the for loop
To generate a diff of this commit:
cvs rdiff -u -r1.54 -r1.55 src/lib/libed
Module Name:src
Committed By: christos
Date: Fri Apr 12 17:30:49 UTC 2019
Modified Files:
src/lib/libedit: terminal.c
Log Message:
PR/52359: Benjamin Lorenz: When resizing because of a signal save and restore
the cursor position, since it does not change.
To generate a d
Module Name:src
Committed By: christos
Date: Fri Apr 12 15:12:29 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
PR/54117: Paavo Helde: Fix memory overrun: Account for the closing quote
in memory allocation if quoted.
To generate a diff of this comm
Module Name:src
Committed By: abhinav
Date: Sun Mar 31 03:04:58 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
src/lib/libedit/TEST: test_filecompletion.c
Log Message:
Perform quoting of filename completions when there are multiple matches as well
Quotin
Module Name:src
Committed By: abhinav
Date: Sun Mar 24 16:42:49 UTC 2019
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Only quote the completion matches if we are doing filename completion
If the user supplies a value for the attempted_completion_function p
Module Name:src
Committed By: christos
Date: Fri Feb 15 23:20:35 UTC 2019
Modified Files:
src/lib/libedit: readline.c terminal.c
src/lib/libedit/readline: readline.h
Log Message:
PR/53983: Jonathan Perkins: Fix types for readline compatibility
To generate a diff
Module Name:src
Committed By: christos
Date: Thu Feb 14 20:09:12 UTC 2019
Modified Files:
src/lib/libedit: readline.c
Log Message:
PR/53981: Jonathan Perkins: history_list should null-terminate
To generate a diff of this commit:
cvs rdiff -u -r1.149 -r1.150 src/lib/libed
Module Name:src
Committed By: christos
Date: Thu Jan 10 18:41:56 UTC 2019
Modified Files:
src/lib/libedit: readline.c
Log Message:
PR/53856: F. Aragon: editline/libedit not prompting colors in readline mode
To generate a diff of this commit:
cvs rdiff -u -r1.148 -r1.149
Module Name:src
Committed By: uwe
Date: Fri Jan 4 03:03:44 UTC 2019
Modified Files:
src/lib/libedit: refresh.c
Log Message:
Fix mis-applied change in previous. Don't increment r_oldcv twice.
PR lib/53803
To generate a diff of this commit:
cvs rdiff -u -r1.55 -r1.56 src
Module Name:src
Committed By: christos
Date: Sun Dec 2 16:58:13 UTC 2018
Modified Files:
src/lib/libedit: readline.c tty.c tty.h
src/lib/libedit/readline: readline.h
Log Message:
Add a couple more readline compat functions.
To generate a diff of this commit:
cvs
Module Name:src
Committed By: christos
Date: Thu Nov 29 03:10:20 UTC 2018
Modified Files:
src/lib/libedit: parse.c
Log Message:
Fix off by one
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/lib/libedit/parse.c
Please note that diffs are not public do
Module Name:src
Committed By: christos
Date: Sun Nov 25 16:21:05 UTC 2018
Modified Files:
src/lib/libedit: read.c
Log Message:
>From Yuichiro Naito (FreeBSD):
hrs@ says that
(cbp >= MB_LEN_MAX) condition is necessary for checking invalid
byte sequences. If malicious inpu
Module Name:src
Committed By: christos
Date: Sun Nov 25 16:20:28 UTC 2018
Modified Files:
src/lib/libedit: chartype.c
Log Message:
>From Yuichiro Naito (FreeBSD):
hrs@ says that wctomb(3) has an internal shift state,
if wctomb(3) is called outside of libedit,
the internal
Module Name:src
Committed By: christos
Date: Sat Nov 24 12:17:35 UTC 2018
Modified Files:
src/lib/libedit: terminal.c
Log Message:
PR/53682: Jordan Lewis: use newlines instead of padded spaces when restoring
multi-line histories.
To generate a diff of this commit:
cvs rd
Module Name:src
Committed By: christos
Date: Sun Nov 18 17:15:41 UTC 2018
Modified Files:
src/lib/libedit: chartype.c
Log Message:
fix compilation
To generate a diff of this commit:
cvs rdiff -u -r1.32 -r1.33 src/lib/libedit/chartype.c
Please note that diffs are not pub
Module Name:src
Committed By: christos
Date: Sun Nov 18 17:09:39 UTC 2018
Modified Files:
src/lib/libedit: chartype.c editline.3 el.c el.h read.c
Log Message:
Remove utf-8 requirement (Yuichiro NAITO)
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/lib/
Module Name:src
Committed By: christos
Date: Tue Oct 23 16:49:13 UTC 2018
Modified Files:
src/lib/libedit: refresh.c
Log Message:
Apply revisions 1.21, 1.22 from OpenBSD:
In re_fastputc(), set lastline to the new line, not the previous
line so it gets initialized properly
Module Name:src
Committed By: kre
Date: Thu Sep 13 09:03:40 UTC 2018
Modified Files:
src/lib/libedit: history.c
Log Message:
Fix editing mistake, remove ) from func call that is now gone.
To generate a diff of this commit:
cvs rdiff -u -r1.61 -r1.62 src/lib/libedit/histo
Module Name:src
Committed By: christos
Date: Thu Sep 13 01:26:33 UTC 2018
Modified Files:
src/lib/libedit: history.c
Log Message:
more efficient to use decode_result :-) Pointed out by kre@
To generate a diff of this commit:
cvs rdiff -u -r1.60 -r1.61 src/lib/libedit/his
Module Name:src
Committed By: christos
Date: Wed Sep 12 22:10:35 UTC 2018
Modified Files:
src/lib/libedit: history.c
Log Message:
PR/53597: Yasuhiro Horimoto: Avoid segmentation fault in bad history file.
To generate a diff of this commit:
cvs rdiff -u -r1.59 -r1.60 src/
Module Name:src
Committed By: christos
Date: Sat Jun 9 17:41:55 UTC 2018
Modified Files:
src/lib/libedit: readline.c
src/lib/libedit/readline: readline.h
Log Message:
Provide more compatibility with readline headers; now python-3.6.5 works
when changing 'readline'
Module Name:src
Committed By: christos
Date: Fri May 4 20:38:27 UTC 2018
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
fix uninitialized
To generate a diff of this commit:
cvs rdiff -u -r1.50 -r1.51 src/lib/libedit/filecomplete.c
Please note that diffs a
Module Name:src
Committed By: abhinav
Date: Fri May 4 16:39:15 UTC 2018
Modified Files:
src/lib/libedit: filecomplete.c
src/lib/libedit/TEST: test_filecompletion.c
Log Message:
Handle filename autocompletion when the cursor is at a backslash or quote
character
F
Module Name:src
Committed By: abhinav
Date: Wed May 2 08:45:03 UTC 2018
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Add '*' and '[' to the list of characters which need escaping during
autocompletion
To generate a diff of this commit:
cvs rdiff -u -r1.
Module Name:src
Committed By: christos
Date: Mon Feb 26 17:36:15 UTC 2018
Modified Files:
src/lib/libedit: common.c search.c
Log Message:
PR/53058: Nikhil Benesch: use correctly typed variables (wchar_t vs wint_t)
as parameters.
To generate a diff of this commit:
cvs rdi
Module Name:src
Committed By: christos
Date: Mon Jan 1 22:32:47 UTC 2018
Modified Files:
src/lib/libedit: el.c readline.c tty.c tty.h
Log Message:
Only FLUSH if we are ending libedit; DRAIN if we suspend for readline.
This allows pasting multiline buffers (Gerry Swislow)
Module Name:src
Committed By: uwe
Date: Sat Dec 23 18:25:03 UTC 2017
Modified Files:
src/lib/libedit: history.c
Log Message:
The order in which the arguments to a function are evaluated is
undefined, so don't use va_arg() twice.
PR lib/52849
To generate a diff of this c
Module Name:src
Committed By: christos
Date: Fri Dec 8 16:56:24 UTC 2017
Modified Files:
src/lib/libedit: readline.c
Log Message:
For applications that don't issue their own prompt (like python)
don't set unbuffered unless they've already printed the prompt.
This avoids p
Module Name:src
Committed By: abhinav
Date: Fri Oct 27 18:16:10 UTC 2017
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Add NULL check after doing memory allocation at a couple of places
ok christos@
To generate a diff of this commit:
cvs rdiff -u -r1.47 -
Module Name:src
Committed By: abhinav
Date: Sun Oct 15 19:17:30 UTC 2017
Modified Files:
src/lib/libedit/TEST: test_filecompletion.c
Log Message:
Add copyright and rcs header to the test program.
Also, remove a test case which was not supposed to be there.
(While that test
Module Name:src
Committed By: abhinav
Date: Sun Oct 15 18:59:00 UTC 2017
Modified Files:
src/lib/libedit: filecomplete.c
src/lib/libedit/TEST: Makefile
Added Files:
src/lib/libedit/TEST: test_filecompletion.c
Log Message:
Add support for escaping special ch
Module Name:src
Committed By: abhinav
Date: Wed Oct 11 06:49:03 UTC 2017
Modified Files:
src/lib/libedit: chared.c
Log Message:
Fix typo in comment
To generate a diff of this commit:
cvs rdiff -u -r1.56 -r1.57 src/lib/libedit/chared.c
Please note that diffs are not publ
Module Name:src
Committed By: kre
Date: Sun Sep 17 08:10:08 UTC 2017
Modified Files:
src/lib/libedit: readline.c
Log Message:
PR lib/52547 - read_history (readline.c) should now sets history_length.
Patch from Yen Chi Hsuan in the PR, extracted from Apple's version of
rea
Module Name:src
Committed By: abhinav
Date: Sat Sep 16 20:40:35 UTC 2017
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Fix indentation (convert spaces to tab)
To generate a diff of this commit:
cvs rdiff -u -r1.45 -r1.46 src/lib/libedit/filecomplete.c
Ple
Module Name:src
Committed By: christos
Date: Tue Sep 5 18:07:59 UTC 2017
Modified Files:
src/lib/libedit: el.c el.h readline.c tty.c
Log Message:
For readline emulation, don't reset the tty to "sane" (cooked) mode if we
did not start this way. Also set and reset the tty o
Module Name:src
Committed By: wiz
Date: Sat Sep 2 06:48:10 UTC 2017
Modified Files:
src/lib/libedit: editline.3
Log Message:
Remove trailing whitespace; convert Xr readline to Nm readline, since
we won't get a readline man page in base.
To generate a diff of this commit
Module Name:src
Committed By: christos
Date: Fri Sep 1 10:19:10 UTC 2017
Modified Files:
src/lib/libedit: editline.3 hist.h histedit.h history.c readline.c
src/lib/libedit/readline: readline.h
Log Message:
PR/51517: Jay West: Tty settings not restored on exit
PR/5
Module Name:src
Committed By: kre
Date: Fri Jun 30 20:26:52 UTC 2017
Modified Files:
src/lib/libedit: Makefile literal.c literal.h refresh.c
Log Message:
Allow wide characters (properly encoded as byte strings according to LC_CTYPE)
to be (perhaps part of) the "invisible"
Module Name:src
Committed By: kre
Date: Thu Jun 29 02:54:40 UTC 2017
Modified Files:
src/lib/libedit: literal.c
Log Message:
Fix an obvious, but almost invisible typo (avoid some core dumps).
To generate a diff of this commit:
cvs rdiff -u -r1.1 -r1.2 src/lib/libedit/lit
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:29:13 UTC 2017
Modified Files:
src/lib/libedit: refresh.c
Log Message:
fix comment
To generate a diff of this commit:
cvs rdiff -u -r1.52 -r1.53 src/lib/libedit/refresh.c
Please note that diffs are not public do
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:25:13 UTC 2017
Modified Files:
src/lib/libedit: Makefile el.c el.h prompt.c
Added Files:
src/lib/libedit: literal.c literal.h
Log Message:
add literal escape sequence support, patterned after the tcsh ones.
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:24:19 UTC 2017
Modified Files:
src/lib/libedit: read.c
Log Message:
remove unused variable
To generate a diff of this commit:
cvs rdiff -u -r1.102 -r1.103 src/lib/libedit/read.c
Please note that diffs are not pu
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:23:48 UTC 2017
Modified Files:
src/lib/libedit: refresh.c refresh.h
Log Message:
- add literal sequence handling.
To generate a diff of this commit:
cvs rdiff -u -r1.51 -r1.52 src/lib/libedit/refresh.c
cvs rdiff
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:23:09 UTC 2017
Modified Files:
src/lib/libedit: terminal.c
Log Message:
- handle literal escape sequence printing.
- factor out common code in allocation and freeing of the display.
To generate a diff of this com
Module Name:src
Committed By: christos
Date: Tue Jun 27 23:22:20 UTC 2017
Modified Files:
src/lib/libedit: editline.3
Log Message:
mention the limitation of the literal sequence delimiter.
To generate a diff of this commit:
cvs rdiff -u -r1.94 -r1.95 src/lib/libedit/edit
Module Name:src
Committed By: kre
Date: Tue Jun 27 01:22:58 UTC 2017
Modified Files:
src/lib/libedit: editline.3 editrc.5
Log Message:
Include EDITRC in doc.
To generate a diff of this commit:
cvs rdiff -u -r1.93 -r1.94 src/lib/libedit/editline.3
cvs rdiff -u -r1.32 -r1.
Module Name:src
Committed By: kre
Date: Tue Jun 27 00:47:37 UTC 2017
Modified Files:
src/lib/libedit: el.c
Log Message:
Make the default editrc file be $EDITRC (from env) if set, falling back
to $HOME/.editrc otherwise.Better support for this in sh coming.
To generat
Module Name:src
Committed By: christos
Date: Mon May 22 19:16:25 UTC 2017
Modified Files:
src/lib/libedit: chartype.h
Log Message:
Add DragonFly.
To generate a diff of this commit:
cvs rdiff -u -r1.34 -r1.35 src/lib/libedit/chartype.h
Please note that diffs are not publ
Module Name:src
Committed By: abhinav
Date: Fri Apr 21 05:38:03 UTC 2017
Modified Files:
src/lib/libedit: filecomplete.c filecomplete.h readline.c
Log Message:
When doing filename autocompletion, append a trailing slash at the end of
directory
names. We already do this wh
Module Name:src
Committed By: abhinav
Date: Mon Apr 10 15:02:40 UTC 2017
Modified Files:
src/lib/libedit: editline.3
Log Message:
Add missing argument for H_SET.
ok christos@
To generate a diff of this commit:
cvs rdiff -u -r1.92 -r1.93 src/lib/libedit/editline.3
Pleas
Module Name:src
Committed By: christos
Date: Sun Mar 5 19:23:58 UTC 2017
Modified Files:
src/lib/libedit: hist.c
Log Message:
one extra char for NUL.
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/lib/libedit/hist.c
Please note that diffs are not pub
Module Name:src
Committed By: christos
Date: Sun Mar 5 17:30:38 UTC 2017
Modified Files:
src/lib/libedit: hist.c
Log Message:
Grow the buffer for event search if there was not enough space.
>From Gerry Swislow
To generate a diff of this commit:
cvs rdiff -u -r1.30 -r1.3
Module Name:src
Committed By: christos
Date: Mon Jan 9 03:09:05 UTC 2017
Modified Files:
src/lib/libedit: readline.c
Log Message:
Make sure we take into account history_base when computing negative history
offsets. (Gerry Swinslow)
To generate a diff of this commit:
cvs
Module Name:src
Committed By: christos
Date: Mon Jan 9 02:54:18 UTC 2017
Modified Files:
src/lib/libedit: chartype.c
Log Message:
Make sure that argv is NULL terminated since functions like tty_stty rely
on it to be so (Gerry Swinslow)
To generate a diff of this commit:
Module Name:src
Committed By: christos
Date: Sun Dec 11 15:47:06 UTC 2016
Modified Files:
src/lib/libedit: read.c
Log Message:
PR/51706: Amir Plivatsky: Fix memory leak
To generate a diff of this commit:
cvs rdiff -u -r1.101 -r1.102 src/lib/libedit/read.c
Please note th
Module Name:src
Committed By: christos
Date: Mon Nov 7 15:30:19 UTC 2016
Modified Files:
src/lib/libedit: hist.c
Log Message:
Change the way the built-in history works; some programs enter history
with the trailing newline, others don't so don't make any assumptions
about
Module Name:src
Committed By: abhinav
Date: Mon Oct 31 17:46:32 UTC 2016
Modified Files:
src/lib/libedit: filecomplete.c
Log Message:
Fix file name auto completion in one specific case.
For example if you do
$mkdir -p /tmp/dir1/dir2
Then:
$ls /tmp/di auto completes to
$
Module Name:src
Committed By: christos
Date: Fri Oct 28 18:32:27 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
pass the stream to the getc function
To generate a diff of this commit:
cvs rdiff -u -r1.138 -r1.139 src/lib/libedit/readline.c
Please note
Module Name:src
Committed By: christos
Date: Fri Oct 28 18:32:35 UTC 2016
Modified Files:
src/lib/libedit/readline: readline.h
Log Message:
export rl_done
To generate a diff of this commit:
cvs rdiff -u -r1.40 -r1.41 src/lib/libedit/readline/readline.h
Please note that
Module Name:src
Committed By: mbalmer
Date: Thu Sep 1 13:23:44 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
fix typo
To generate a diff of this commit:
cvs rdiff -u -r1.137 -r1.138 src/lib/libedit/readline.c
Please note that diffs are not public do
Module Name:src
Committed By: christos
Date: Wed Aug 24 13:10:59 UTC 2016
Modified Files:
src/lib/libedit: readline.c
src/lib/libedit/readline: readline.h
Log Message:
more compatible with readline history functions.
To generate a diff of this commit:
cvs rdiff -
Module Name:src
Committed By: christos
Date: Thu Jun 2 21:40:51 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
Fix previous to better match readline behavior (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.135 -r1.136 src/lib/libed
Module Name:src
Committed By: christos
Date: Thu Jun 2 15:11:18 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
>From Ingo Schwarze:
In libedit, the only way how H_ENTER can fail is memory exhaustion,
too, and of course it is handled gracefully, returni
Module Name:src
Committed By: christos
Date: Tue May 31 19:25:17 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
remove the right history entry (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.133 -r1.134 src/lib/libedit/readline.c
P
Module Name:src
Committed By: christos
Date: Wed May 25 13:01:11 UTC 2016
Modified Files:
src/lib/libedit: read.c
Log Message:
abstract read code to a single function (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.100 -r1.101 src/lib/libedit/read.c
Module Name:src
Committed By: christos
Date: Tue May 24 19:31:27 UTC 2016
Modified Files:
src/lib/libedit: read.c
Log Message:
el_map.alt can't be NULL here (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.99 -r1.100 src/lib/libedit/read.c
Please note
Module Name:src
Committed By: christos
Date: Tue May 24 17:42:54 UTC 2016
Modified Files:
src/lib/libedit: Makefile read.c
Log Message:
remove debug read (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.62 -r1.63 src/lib/libedit/Makefile
cvs rdiff -u -
Module Name:src
Committed By: christos
Date: Tue May 24 15:00:45 UTC 2016
Modified Files:
src/lib/libedit: el.h keymacro.c read.c
Log Message:
>From Ingo Schwarze:
Reduce obfuscation of errno handling. There is only one purpose
non-local errno handling is needed for: Ins
Module Name:src
Committed By: christos
Date: Sun May 22 23:54:20 UTC 2016
Modified Files:
src/lib/libedit: editline.3 editrc.5
Log Message:
documentation improvements (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.91 -r1.92 src/lib/libedit/editline.3
Module Name:src
Committed By: christos
Date: Sun May 22 19:44:26 UTC 2016
Modified Files:
src/lib/libedit: chared.c chared.h common.c el.c read.c read.h
Log Message:
Stop the read module from poking the el_chared.c_macro data structure
currently belonging to the chared mod
Module Name:src
Committed By: christos
Date: Sat May 21 17:06:45 UTC 2016
Modified Files:
src/lib/libedit: editline.3
Log Message:
Fix the prototype used by EL_GETCFN, mention the associated typedef
name, document the return values, expand the list of affected
functions, w
Module Name:src
Committed By: christos
Date: Fri May 13 15:55:59 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
>From Bastian Maerkisch, via Igno Schwarze:
Even though section "2.3.3 Information About the History List"
of the history(3) info(1) manual o
Module Name:src
Committed By: christos
Date: Mon May 9 21:46:56 UTC 2016
Modified Files:
src/lib/libedit: chared.c chared.h chartype.c chartype.h common.c el.c
el.h emacs.c hist.c hist.h keymacro.c keymacro.h makelist map.c
map.h parse.c parse.h pro
Module Name:src
Committed By: christos
Date: Mon May 9 21:38:27 UTC 2016
Modified Files:
src/lib/libedit: Makefile sys.h
Removed Files:
src/lib/libedit: editline.c
Log Message:
Instead of compiling all the source files together in one big file, use
protected visib
Module Name:src
Committed By: christos
Date: Mon May 9 21:37:34 UTC 2016
Modified Files:
src/lib/libedit: eln.c
Log Message:
Elide gcc warning about intermediate const casts caused by visibility change.
To generate a diff of this commit:
cvs rdiff -u -r1.33 -r1.34 src/l
Module Name:src
Committed By: christos
Date: Mon May 9 21:27:55 UTC 2016
Modified Files:
src/lib/libedit: editline.3 editline.7 readline.c
Log Message:
GNU readline(3) regards history chronologically, that is, from the
perspective of the dawn of time, so "next" means "new
Module Name:src
Committed By: christos
Date: Mon May 9 21:25:11 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
The libedit implementation of history_get() also differs from the GNU
implementation: libedit goes to the entry with the given number
stored
Module Name:src
Committed By: christos
Date: Sun May 8 20:15:00 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
In stiffle_history(), trim excessive entries from the history and advance
history_base like the GNU implementation does. (from Bastian Maerkis
Module Name:src
Committed By: christos
Date: Fri May 6 21:01:19 UTC 2016
Modified Files:
src/lib/libedit: readline.c
Log Message:
fix logic (Ingo Schwarze)
To generate a diff of this commit:
cvs rdiff -u -r1.128 -r1.129 src/lib/libedit/readline.c
Please note that diffs
Module Name:src
Committed By: christos
Date: Mon May 2 16:48:34 UTC 2016
Modified Files:
src/lib/libedit: chartype.c chartype.h el.c el.h terminal.c
Log Message:
eliminate static buffer with custom resizing code.
To generate a diff of this commit:
cvs rdiff -u -r1.28 -r
Module Name:src
Committed By: christos
Date: Mon May 2 16:35:18 UTC 2016
Modified Files:
src/lib/libedit: chartype.h refresh.c
Log Message:
fix typos from Pedro Giffuni @FreeBSD
To generate a diff of this commit:
cvs rdiff -u -r1.31 -r1.32 src/lib/libedit/chartype.h
cvs
1 - 100 of 332 matches
Mail list logo