summaryrefslogtreecommitdiffstats
path: root/lib/libedit
Commit message (Collapse)AuthorAgeFilesLines
* Expand contractions.ru2005-02-131-2/+2
|
* Expand *n't contractions.ru2005-02-132-3/+3
|
* mdoc(7): Use the new feature of the .In macro.ru2003-09-081-1/+1
|
* style.Makefile(5)obrien2003-08-181-1/+1
|
* Stage 3 of dynamic root support. Make all the libraries needed to rungordon2003-08-171-0/+1
| | | | | | binaries in /bin and /sbin installed in /lib. Only the versioned files reside in /lib, the .so symlink continues to live /usr/lib so the toolchain doesn't need to be modified.
* LANG->LC_ALLache2003-08-041-1/+1
| | | | Pointed by: ru
* Fix problem differently, useache2003-08-041-1/+1
| | | | | LANG=C tr 'a-z' 'A-Z' for hypotetical case that script may generate non-ascii characters
* Fix double-wrong tr usage: tr '[a-z]' '[A-Z]'ache2003-08-041-1/+1
| | | | | | | | First of all, it should be written as: tr 'a-z' 'A-Z' ranges not encolosed in [] according to POSIX, so [] just included in the replacement. Second, it should be written: tr '[:lower:]' '[:upper:]' since a-z and A-Z may have different length in some locales.
* The .Fn functioncharnier2003-02-061-1/+2
|
* Correct typos, mostly s/ a / an / where appropriate. Some whitespace cleanup,schweikh2003-01-014-4/+4
| | | | especially in troff files.
* Fix typos, mostly s/ an / a / where appropriate and a few s/an/and/schweikh2002-12-301-2/+2
| | | | Add FreeBSD Id tag where missing.
* english(4) police.schweikh2002-12-271-1/+1
|
* Write the strvis()'d string out to the history file in history_save(),tjr2002-10-141-1/+1
| | | | | not the original string. Fixes the bug where every second line of a history file was empty.
* FreeBSD's libedit does not include NetBSD's readline emulation code.tjr2002-10-131-4/+3
| | | | Remove references to it from the Authors and History sections.
* Zap now-unused SHLIB_MINORpeter2002-09-281-1/+0
|
* Restore local bits lost in recent merge from NetBSD.mdodd2002-06-161-19/+24
|
* Usage style sweep: spell "usage" with a small 'u'.des2002-04-221-1/+1
| | | | | Also change one case of blatant __progname abuse (several more remain) This commit does not touch anything in src/{contrib,crypto,gnu}/.
* -ltermcap is spelled -lncurses nowadays.ru2002-04-091-2/+2
|
* Remove __P() usage.obrien2002-03-211-1/+1
|
* Fix problem where with PicoBSD the shell coredumps if it does not find anobrien2002-01-241-1/+1
| | | | | | entry for its terminal type in /etc/termcap. Submitted by: bde
* mdoc(7) police: markup nit in the actual rev. 1.13 changes.ru2001-11-211-1/+1
|
* mdoc(7) police: restore all FreeBSD fixes to this file that gotru2001-11-211-16/+14
| | | | clobbered by previous commit.
* Clean this up after the NetBSD syncing.obrien2001-10-011-25/+19
|
* Fix ID's after a total boch CVS merge due to multiple people makingobrien2001-10-0113-26/+0
| | | | | | | | commits to these files. As I sing to CVS: Have I told you lately that I hate your guts? Have I told you all SCM's are above you? You fill my heart with pain, take away all my merging joy, grow my troubles that's what you do."
* Our histedit.h lives in src/include.obrien2001-10-011-1/+0
|
* Re-applied some of rev. 1.11 and 1.13 fixes that were lost in the last commit.ru2001-10-011-11/+17
| | | | Fixed some more.
* + Sync with NetBSD, bringing in feature enhancements.obrien2001-10-0137-8660/+9754
| | | | | | | + Convert to ANSI-C function definitions + style(9) Submitted by: kris
* Add __FBSDID()s to libeditdillon2001-09-3018-12/+37
|
* mdoc(7) police: protect trailing full stops of abbreviationsru2001-08-101-1/+1
| | | | with a trailing zero-width space: `e.g.\&'.
* mdoc(7) police:ru2001-08-072-13/+5
| | | | | | | Avoid using parenthesis enclosure macros (.Pq and .Po/.Pc) with plain text. Not only this slows down the mdoc(7) processing significantly, but it also has an undesired (in this case) effect of disabling hyphenation within the entire enclosed block.
* Remove whitespace at EOL.dd2001-07-152-11/+11
|
* mdoc(7) police: removed HISTORY info from the .Os call.ru2001-07-102-2/+2
|
* Back out history.3 link removing - conflict fixed in libreadline insteadache2001-04-121-4/+1
|
* Comment out one of many editline.3 MLINKS conflicting with libreadlineache2001-04-121-1/+4
| | | | (history.3)
* MAN[1-9] -> MAN.ru2001-03-271-2/+1
|
* mdoc(7) police: split punctuation characters + misc fixes.ru2001-02-011-4/+3
|
* Prepare for mdoc(7)NG.ru2001-01-161-2/+2
|
* Constifykris2000-11-262-2/+4
|
* logru2000-11-222-0/+2
|
* 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
OpenPOWER on IntegriCloud