summaryrefslogtreecommitdiffstats
path: root/lib/libedit
Commit message (Collapse)AuthorAgeFilesLines
* Include fcntl.hbrian2000-10-021-0/+1
| | | | | PR: 21697 Submitted by: Barak Enat <barak_enat@yahoo.com>
* Teach library about Home/End keysache2000-07-282-5/+30
|
* Fully preserve original tty settings outside of line edition mode. Old variantache2000-07-281-44/+8
| | | | | | | preserve them only partially, so tty state becomes different after el_* functions used. PR: 20138
* Move terminal descriptor flush before stty to eliminate potential problemsache2000-07-271-1/+1
| | | | whith characters conversion changed like \n -> \r\n and so on.
* Fix temp. singnals blocking. Only one signal was blocked due to typo pastedache2000-07-261-3/+5
| | | | many times.
* <blush> I tested the real code changes, but neglected to test theimp2000-05-222-5/+5
| | | | | insertion of $FreeBSD$. I miffed it (pointy hat please). Hopefully no one will notice this short window where -current didn't compile.
* Do not read editrc file from '.'. This can be as unsafe as havingimp2000-05-222-12/+11
| | | | | | | | | | . first in root's path. While I'm here: o Add $FreeBSD$ o Get errno from <errno.h>, but extern int errno. Submitted by: Tim Vanderhoek
* Make comment match code forgotten in last commitimp2000-05-221-1/+1
|
* Add $FreeBSD$ so I can commit:imp2000-05-221-4/+6
| | | | | Remove extern int errno;. Instead include the ANSI <errno.h>. No functional changes, just a higher level of pedantry.
* Introduce .Lb macro to libedit manpagephantom2000-04-221-0/+2
|
* Fix style bugsmarcel1999-10-031-4/+2
| | | | Submitted by: bde
* sigset_t change (part 5 of 5)marcel1999-09-291-0/+5
| | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | | ----------------------------- Most of the userland changes are in libc. For both the alpha and the i386 setjmp has been changed to accomodate for the new sigset_t. Internally, libc is mostly rewritten to use the new syscalls. The exception is in compat-43/sigcompat.c The POSIX thread library has also been rewritten to use the new sigset_t. Except, that it currently only handles NSIG signals instead of the maximum _SIG_MAXSIG. This should not be a problem because current applications don't use any signals higher than NSIG. There are version bumps for the following libraries: libdialog libreadline libc libc_r libedit libftpio libss These libraries either a) have one of the modified structures visible in the interface, or b) use sigset_t internally and may cause breakage if new binaries are used against libraries that don't have the sigset_t change. This not an immediate issue, but will be as soon as applications start using the new range to its fullest. NOTE: libncurses already had an version bump and has not been given one now. NOTE: doscmd is a real casualty and has been disconnected for the moment. Reconnection will eventually happen after doscmd has been fixed. I'm aware that being the last one to touch it, I'm automaticly promoted to being maintainer. According to good taste this means that I will receive a badge which either will be glued or mechanically stapled, drilled or otherwise violently forced onto me :-) NOTE: pcvt/vttest cannot be compiled with -traditional. The change cause sys/types to be included along the way which contains the const and volatile modifiers. I don't consider this a solution, but more a workaround.
* $Id$ -> $FreeBSD$peter1999-08-282-2/+2
|
* Fix MLINKS.mdodd1999-08-201-3/+2
| | | | Noticed by: Norman C. Rice <nrice@emu.sourcee.com>
* Add 2 functions: el_data_set() and el_data_get() which do what youmdodd1999-08-204-2/+37
| | | | | | | | would expect. (Allow user data to be associated with an EditLine context). As this changes no existing interfaces and doesn't alter any structs visable to the user I've been told that its not necessary to bump the version of the library.
* Add $Id$, to make it simpler for members of the translation teams tonik1999-07-122-0/+4
| | | | | | | | | | | | | | | | | track. The $Id$ line is normally at the bottom of the main comment block in the man page, separated from the rest of the manpage by an empty comment, like so; .\" $Id$ .\" If the immediately preceding comment is a @(#) format ID marker than the the $Id$ will line up underneath it with no intervening blank lines. Otherwise, an additional blank line is inserted. Approved by: bde
* Switch to using ".So" as the extension for PIC object files ratherjdp1999-01-091-1/+1
| | | | | | | | than ".so". The old extension conflicted with well-established naming conventions for dynamically loadable modules. The "clean" targets continue to remove ".so" files too, to deal with old systems.
* On the alpha, sizeof(char*) != sizeof(int) which was assumed indfr1998-11-301-1/+1
| | | | | | term_init(). This is the cause of /usr/bin/ftp faulting on the alpha. Submitted by: Hidetoshi Shimokawa <simokawa@sat.t.u-tokyo.ac.jp>
* Replace memory leaking instances of realloc with non-leaking reallocf.imp1998-09-164-6/+8
| | | | | | | | | | | In some cases replace if (a == null) a = malloc(x); else a = realloc(a, x); with simple reallocf(a, x). Per ANSI-C, this is guaranteed to be the same thing. I've been running these on my system here w/o ill effects for some time. However, the CTM-express is at part 6 of 34 for the CAM changes, so I've not been able to do a build world with the CAM in the tree with these changes. Shouldn't impact anything, but...
* Fixed print format errors.bde1998-06-301-1/+1
|
* Fixes assorted problems with the history edit functions in libedit. Thisbrian1998-06-276-14/+49
| | | | | | | affects sh, ftp (and others?). Submitted by: Max Euston <meuston@jmrodgers.com> PR: 6516
* Spelling fixes.phk1998-06-101-1/+1
| | | | | | PR: 6903 Reviewed by: phk Submitted by: Josh Gilliam <josh@quick.net>
* Spelling corrections.jkoshy1998-06-061-1/+1
| | | | | PR: 6868 Submitted by: Josh Gilliam <josh@quick.net>
* Don't use absolute path.jkh1998-05-271-1/+1
| | | | Submitted by: jhay
* .Sh AUTHOR -> .Sh AUTHORS. Use .An/.Aqcharnier1998-03-192-4/+8
|
* Don't swap carriage return and new line in quoted mode (after ^V).helbig1998-01-221-2/+2
|
* Fixed wrong prototype for history().bde1998-01-161-3/+3
| | | | Don't (mis)use .Fd outside of the synopsis.
* Sort cross refereces in section SEE ALSO.wosch1997-09-291-2/+2
|
* Improve dependancy behaviour a little more.msmith1997-07-281-3/+4
| | | | | | This is still pretty disgusting. Submitted by: bde
* List help.h a a dependancy for editline.cmsmith1997-07-271-2/+2
| | | | | | | | Use 'beforedepend' instead of '.depend' to hang automatically-generated headers off. XXX the latter is bogus without a 'beforeall' target and explicit ordering of dependancy generation for targets.
* Reorder decomposition of the filename argument for the '-h' flag tomsmith1997-07-231-2/+3
| | | | | | | avoid misprocessing in the case where the filename argument contains more than one period. Submitted by: micke@dynas.se (Mikael Hybsch)
* Kill this file really dead. The default branch was cleared, evenjdp1997-07-151-52/+0
| | | | | | though the file was still on the vendor branch. I don't know why. It doesn't look like the cvs-add-on-a-branch bug that we already know about.
* Fix vi-mode searching broken with the NetBSD changes update.msmith1997-07-141-4/+2
| | | | | PR: bin/4064 Submitted by: Wolfgang Helbig <helbig@MX.BA-Stuttgart.De>
* Kill histedit.h again. Importing Lite2 brought it back for some reasonbde1997-07-031-172/+0
| | | | (although it hasn't changed).
* This commit was generated by cvs2svn to compensate for changes in r27180,bde1997-07-032-0/+224
|\ | | | | | | which included commits to RCS files with non-trunk default branches.
| * Import Lite2's src/lib, except for non-i386 machine-dependent directories,bde1997-07-033-1/+229
| | | | | | | | | | libc/db, libc/gen/crypt.* and libtelnet. All affected files except 3 unimportant ones have already left the vendor branch.
| * recording cvs-1.6 file deathpeter1995-12-302-224/+0
| |
* | ctype: portability, sign extension and cleanup fixesache1997-06-275-17/+16
| |
* | Move editrc.5 from MAN3 to MAN5ache1997-06-271-1/+2
| |
* | Pull histedit.h out, it lives in /usr/src/include, not here.msmith1997-06-251-5/+0
| |
* | Add extra test functionality.msmith1997-06-251-21/+49
| | | | | | | | Obtained from: NetBSD
* | Update libedit with changes from NetBSD. Includes history load/save,msmith1997-06-2517-112/+1053
| | | | | | | | | | | | | | some buffer overflow guards and some stylistic cleanups. Also adds manpages. Obtained from: NetBSD
* | Fix a minor buffer overflow.imp1997-03-231-3/+2
| | | | | | | | Obtained from: BSDi by way of Keith Bostic
* | Add missing DPADD, remove duplicate -ltermcappeter1996-08-301-1/+2
| |
* | 8bit cleaness (ctype) fixesache1996-08-116-16/+18
| |
* | General -Wall warning cleanup, part I.jkh1996-07-121-0/+1
| | | | | | | | Submitted-By: Kent Vander Velden <graphix@iastate.edu>
* | This commit was generated by cvs2svn to compensate for changes in r13122,peter1995-12-302-224/+0
| | | | | | | | which included commits to RCS files with non-trunk default branches.
* | Fix PR#858, /bin/sh corruption caused by non-zeroed malloc() in libeditpeter1995-12-021-0/+1
| | | | | | | | | | | | | | in particular circumstances. (malloc() does not zero memory, but usually does by coincidenct that sbrk() returns zeroed pages) Submitted-by: John Hood <cgull@smoke.marlboro.vt.us>
* | Update to 4.4lite2 (initialize arrow key data completely).bde1995-10-221-1/+5
| |
* | Change my parse fix from 'return argc' to 'return 0'.ache1995-08-301-1/+1
| | | | | | | | Pointed by: davidg
OpenPOWER on IntegriCloud