CVS commit: src/lib/libedit

2021-08-15 Thread Roland Illig
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

CVS commit: src/lib/libedit

2021-08-15 Thread Roland Illig
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

CVS commit: src/lib/libedit

2021-08-15 Thread Thomas Klausner
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

CVS commit: src/lib/libedit

2021-08-15 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2021-08-15 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2021-07-14 Thread Christos Zoulas
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:

CVS commit: src/lib/libedit

2021-05-05 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2021-03-28 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2021-03-28 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2021-03-28 Thread Christos Zoulas
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)

CVS commit: src/lib/libedit

2021-03-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2020-07-10 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2020-05-31 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2020-03-30 Thread Ryo Shimizu
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

CVS commit: src/lib/libedit

2020-03-30 Thread Ryo Shimizu
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

CVS commit: src/lib/libedit

2020-01-04 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2020-01-04 Thread Tom Ivar Helbekkmo
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 '

CVS commit: src/lib/libedit

2019-12-10 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-04-26 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-04-20 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2019-04-12 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-04-12 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-03-30 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2019-03-24 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2019-02-15 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-02-14 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-01-10 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2019-01-03 Thread Valeriy E. Ushakov
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

CVS commit: src/lib/libedit

2018-12-02 Thread Christos Zoulas
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 commit: src/lib/libedit

2018-11-28 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-11-25 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-11-25 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-11-24 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-11-18 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-11-18 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-10-23 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-09-13 Thread Robert Elz
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

CVS commit: src/lib/libedit

2018-09-12 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-09-12 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-06-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-05-04 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-05-04 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2018-05-02 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2018-02-26 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2018-01-01 Thread Christos Zoulas
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)

CVS commit: src/lib/libedit

2017-12-23 Thread Valeriy E. Ushakov
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

CVS commit: src/lib/libedit

2017-12-08 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-10-27 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit/TEST

2017-10-15 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-10-15 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-10-11 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-09-17 Thread Robert Elz
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

CVS commit: src/lib/libedit

2017-09-16 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-09-05 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-09-02 Thread Thomas Klausner
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

CVS commit: src/lib/libedit

2017-09-01 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-30 Thread Robert Elz
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"

CVS commit: src/lib/libedit

2017-06-28 Thread Robert Elz
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-27 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-06-26 Thread Robert Elz
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

CVS commit: src/lib/libedit

2017-06-26 Thread Robert Elz
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

CVS commit: src/lib/libedit

2017-05-22 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-04-20 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-04-10 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit

2017-03-05 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-03-05 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2017-01-08 Thread Christos Zoulas
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 commit: src/lib/libedit

2017-01-08 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-12-11 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-11-07 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-10-31 Thread Abhinav Upadhyay
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

CVS commit: src/lib/libedit/readline

2016-10-28 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-10-28 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-09-01 Thread Marc Balmer
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

CVS commit: src/lib/libedit

2016-08-24 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-06-02 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-06-02 Thread Christos Zoulas
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,

CVS commit: src/lib/libedit

2016-05-31 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-25 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-24 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-24 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-24 Thread Christos Zoulas
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:

CVS commit: src/lib/libedit

2016-05-22 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-22 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-21 Thread Christos Zoulas
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,

CVS commit: src/lib/libedit

2016-05-13 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-09 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-08 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-06 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-02 Thread Christos Zoulas
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

CVS commit: src/lib/libedit

2016-05-02 Thread Christos Zoulas
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

  1   2   3   4   >