The NetBSD Project

CVS log for src/lib/libedit/editrc.5

[BACK] Up to [cvs.NetBSD.org] / src / lib / libedit

Request diff between arbitrary revisions


Default branch: MAIN


Revision 1.34 / (download) - annotate - [select for diffs], Tue Dec 6 00:59:20 2022 UTC (15 months, 3 weeks ago) by uwe
Branch: MAIN
CVS Tags: netbsd-10-base, netbsd-10-0-RC6, netbsd-10-0-RC5, netbsd-10-0-RC4, netbsd-10-0-RC3, netbsd-10-0-RC2, netbsd-10-0-RC1, netbsd-10, HEAD
Changes since 1.33: +46 -45 lines
Diff to previous 1.33 (colored) to selected 1.8 (colored)

editrc(5): Markup fixes

Revision 1.32.8.1 / (download) - annotate - [select for diffs], Sun Jul 23 14:41:26 2017 UTC (6 years, 8 months ago) by snj
Branch: netbsd-8
CVS Tags: netbsd-8-2-RELEASE, netbsd-8-1-RELEASE, netbsd-8-1-RC1, netbsd-8-0-RELEASE, netbsd-8-0-RC2, netbsd-8-0-RC1, matt-nb8-mediatek-base, matt-nb8-mediatek
Changes since 1.32: +10 -2 lines
Diff to previous 1.32 (colored) next main 1.33 (colored) to selected 1.8 (colored)

Pull up following revision(s) (requested by kre in ticket #102):
	lib/libedit/Makefile: 1.64-1.65
	lib/libedit/editline.3: 1.94-1.96
	lib/libedit/editrc.5: 1.33
	lib/libedit/el.c: 1.93-1.94
	lib/libedit/el.h: 1.42
	lib/libedit/literal.c: 1.1-1.3
	lib/libedit/literal.h: 1.1-1.2
	lib/libedit/prompt.c: 1.27
	lib/libedit/read.c: 1.103
	lib/libedit/refresh.c: 1.52-1.54
	lib/libedit/refresh.h: 1.11
	lib/libedit/terminal.c: 1.33
Make the default editrc file be $EDITRC (from env) if set, falling back
to $HOME/.editrc otherwise.    Better support for this in sh coming.
--
Include EDITRC in doc.
--
mention the limitation of the literal sequence delimiter.
--
- handle literal escape sequence printing.
- factor out common code in allocation and freeing of the display.
--
- add literal sequence handling.
--
remove unused variable
--
add literal escape sequence support, patterned after the tcsh ones.
--
fix comment
--
Fix an obvious, but almost invisible typo (avoid some core dumps).
--
Allow wide characters (properly encoded as byte strings according to LC_CTYPE)
to be (perhaps part of) the "invisible" characters in a prompt, or the
required prompt character which follows the literal sequence (this character
must be one with a printing column width >= 1).  The literal indicator
character (which is just a marker, and not printed anywhere) (the PSlit
parameter in sh(1)) can also be a wide char (passed to libedit as a wchar_t,
encoded as that by sh(1) or other applications that support this.)
Note: this has currently only been tested with everything ascii (C locale).
--
Remove workaround for ancient HTML generation code.

Revision 1.33 / (download) - annotate - [select for diffs], Tue Jun 27 01:22:58 2017 UTC (6 years, 9 months ago) by kre
Branch: MAIN
CVS Tags: phil-wifi-base, phil-wifi-20200421, phil-wifi-20200411, phil-wifi-20200406, phil-wifi-20191119, phil-wifi-20190609, phil-wifi, pgoyette-compat-merge-20190127, pgoyette-compat-base, pgoyette-compat-20190127, pgoyette-compat-20190118, pgoyette-compat-1226, pgoyette-compat-1126, pgoyette-compat-1020, pgoyette-compat-0930, pgoyette-compat-0906, pgoyette-compat-0728, pgoyette-compat-0625, pgoyette-compat-0521, pgoyette-compat-0502, pgoyette-compat-0422, pgoyette-compat-0415, pgoyette-compat-0407, pgoyette-compat-0330, pgoyette-compat-0322, pgoyette-compat-0315, pgoyette-compat, perseant-stdc-iso10646-base, perseant-stdc-iso10646, netbsd-9-base, netbsd-9-3-RELEASE, netbsd-9-2-RELEASE, netbsd-9-1-RELEASE, netbsd-9-0-RELEASE, netbsd-9-0-RC2, netbsd-9-0-RC1, netbsd-9, is-mlppp-base, is-mlppp, cjep_sun2x-base1, cjep_sun2x-base, cjep_sun2x, cjep_staticlib_x-base1, cjep_staticlib_x-base, cjep_staticlib_x
Changes since 1.32: +10 -2 lines
Diff to previous 1.32 (colored) to selected 1.8 (colored)


Include EDITRC in doc.

Revision 1.32 / (download) - annotate - [select for diffs], Sun May 22 23:54:20 2016 UTC (7 years, 10 months ago) by christos
Branch: MAIN
CVS Tags: prg-localcount2-base3, prg-localcount2-base2, prg-localcount2-base1, prg-localcount2-base, prg-localcount2, pgoyette-localcount-base, pgoyette-localcount-20170426, pgoyette-localcount-20170320, pgoyette-localcount-20170107, pgoyette-localcount-20161104, pgoyette-localcount-20160806, pgoyette-localcount-20160726, pgoyette-localcount, netbsd-8-base, localcount-20160914, bouyer-socketcan-base1, bouyer-socketcan-base, bouyer-socketcan
Branch point for: netbsd-8
Changes since 1.31: +19 -19 lines
Diff to previous 1.31 (colored) to selected 1.8 (colored)

documentation improvements (Ingo Schwarze)

Revision 1.31 / (download) - annotate - [select for diffs], Thu Apr 28 15:50:34 2016 UTC (7 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.30: +6 -201 lines
Diff to previous 1.30 (colored) to selected 1.8 (colored)

new man page from Ingo Schwarze.

Revision 1.30 / (download) - annotate - [select for diffs], Sun Apr 17 18:39:14 2016 UTC (7 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.29: +3 -15 lines
Diff to previous 1.29 (colored) to selected 1.8 (colored)

Remove empty callbacks (Ingo Schwartze)

Revision 1.27.8.1 / (download) - annotate - [select for diffs], Wed May 13 13:33:55 2015 UTC (8 years, 10 months ago) by martin
Branch: netbsd-7
CVS Tags: netbsd-7-nhusb-base-20170116, netbsd-7-nhusb-base, netbsd-7-nhusb, netbsd-7-2-RELEASE, netbsd-7-1-RELEASE, netbsd-7-1-RC2, netbsd-7-1-RC1, netbsd-7-1-2-RELEASE, netbsd-7-1-1-RELEASE, netbsd-7-1, netbsd-7-0-RELEASE, netbsd-7-0-RC3, netbsd-7-0-RC2, netbsd-7-0-RC1, netbsd-7-0-2-RELEASE, netbsd-7-0-1-RELEASE, netbsd-7-0
Changes since 1.27: +46 -20 lines
Diff to previous 1.27 (colored) next main 1.28 (colored) to selected 1.8 (colored)

Sync lib/libedit with head, requested by christos in #753:

	lib/libedit/Makefile 1.53
	lib/libedit/chartype.h 1.13
	lib/libedit/editline.3 1.83-1.84
	lib/libedit/editrc.5 1.28-1.29
	lib/libedit/eln.c 1.18
	lib/libedit/filecomplete.c 1.33-1.34
	lib/libedit/readline.c 1.112-1.115

Man page improvements, fix overlapping strcpy, improve readline
compatibility, clang build fix.

Revision 1.29 / (download) - annotate - [select for diffs], Thu Dec 25 13:39:41 2014 UTC (9 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.28: +2 -2 lines
Diff to previous 1.28 (colored) to selected 1.8 (colored)

Bump date for previous.

Revision 1.28 / (download) - annotate - [select for diffs], Thu Dec 25 13:39:05 2014 UTC (9 years, 3 months ago) by wiz
Branch: MAIN
Changes since 1.27: +45 -19 lines
Diff to previous 1.27 (colored) to selected 1.8 (colored)

From Ingo Schwarze, based on changes from Kaspars Bankovskis:
 * Document error handling of el_init(), el_set(), el_source(),
   and history_init().
 * Fix a typo an improve punctuation below H_SETUNIQUE.
 * The ellipsis already implies "optional", no need for [].
 * Sort options in editrc(5).
 * Prevent e.g. rom being misconstrued as the end of a sentence.
 * Drop a useless duplicate .Ar macro.
 * Put telltc in its proper place in the alphabetical order.
 * A few typos in vi editor command names.
 * Some missing vi editor command names.
 * Some missing author macros.

Revision 1.26.2.1 / (download) - annotate - [select for diffs], Mon Feb 25 00:27:56 2013 UTC (11 years, 1 month ago) by tls
Branch: tls-maxphys
Changes since 1.26: +9 -2 lines
Diff to previous 1.26 (colored) next main 1.27 (colored) to selected 1.8 (colored)

resync with head

Revision 1.25.4.2 / (download) - annotate - [select for diffs], Wed Jan 23 00:05:24 2013 UTC (11 years, 2 months ago) by yamt
Branch: yamt-pagecache
CVS Tags: yamt-pagecache-tag8
Changes since 1.25.4.1: +9 -2 lines
Diff to previous 1.25.4.1 (colored) to branchpoint 1.25 (colored) next main 1.26 (colored) to selected 1.8 (colored)

sync with head

Revision 1.27 / (download) - annotate - [select for diffs], Thu Jan 10 16:03:42 2013 UTC (11 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: yamt-pagecache-base9, yamt-pagecache-base8, tls-maxphys-base, tls-earlyentropy-base, tls-earlyentropy, riastradh-xf86-video-intel-2-7-1-pre-2-21-15, riastradh-drm2-base3, riastradh-drm2-base2, riastradh-drm2-base1, riastradh-drm2-base, riastradh-drm2, netbsd-7-base, agc-symver-base, agc-symver
Branch point for: netbsd-7
Changes since 1.26: +9 -2 lines
Diff to previous 1.26 (colored) to selected 1.8 (colored)

Add FILES section.
From jmc@OpenBSD.

Revision 1.25.4.1 / (download) - annotate - [select for diffs], Tue Oct 30 18:59:09 2012 UTC (11 years, 4 months ago) by yamt
Branch: yamt-pagecache
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.8 (colored)

sync with head

Revision 1.26 / (download) - annotate - [select for diffs], Sat Jun 2 14:19:20 2012 UTC (11 years, 9 months ago) by njoly
Branch: MAIN
CVS Tags: yamt-pagecache-base7, yamt-pagecache-base6
Branch point for: tls-maxphys
Changes since 1.25: +2 -2 lines
Diff to previous 1.25 (colored) to selected 1.8 (colored)

Switch from Op to Oo/Oc for nested block.

Revision 1.25 / (download) - annotate - [select for diffs], Mon Apr 25 22:47:27 2011 UTC (12 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: yamt-pagecache-base5, yamt-pagecache-base4, yamt-pagecache-base3, yamt-pagecache-base2, yamt-pagecache-base, netbsd-6-base, netbsd-6-1-RELEASE, netbsd-6-1-RC4, netbsd-6-1-RC3, netbsd-6-1-RC2, netbsd-6-1-RC1, netbsd-6-1-5-RELEASE, netbsd-6-1-4-RELEASE, netbsd-6-1-3-RELEASE, netbsd-6-1-2-RELEASE, netbsd-6-1-1-RELEASE, netbsd-6-1, netbsd-6-0-RELEASE, netbsd-6-0-RC2, netbsd-6-0-RC1, netbsd-6-0-6-RELEASE, netbsd-6-0-5-RELEASE, netbsd-6-0-4-RELEASE, netbsd-6-0-3-RELEASE, netbsd-6-0-2-RELEASE, netbsd-6-0-1-RELEASE, netbsd-6-0, netbsd-6, matt-nb6-plus-nbase, matt-nb6-plus-base, matt-nb6-plus, cherry-xenmp-base, cherry-xenmp
Branch point for: yamt-pagecache
Changes since 1.24: +3 -2 lines
Diff to previous 1.24 (colored) to selected 1.8 (colored)

Markup consistency, from YOMURA Masanori. Add serial comma.

Revision 1.21.8.1 / (download) - annotate - [select for diffs], Wed May 13 19:18:29 2009 UTC (14 years, 10 months ago) by jym
Branch: jym-xensuspend
Changes since 1.21: +8 -28 lines
Diff to previous 1.21 (colored) next main 1.22 (colored) to selected 1.8 (colored)

Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html

Revision 1.24 / (download) - annotate - [select for diffs], Sat Apr 11 22:17:52 2009 UTC (14 years, 11 months ago) by wiz
Branch: MAIN
CVS Tags: matt-premerge-20091211, matt-mips64-premerge-20101231, jym-xensuspend-nbase, jym-xensuspend-base, bouyer-quota2-nbase, bouyer-quota2-base, bouyer-quota2
Changes since 1.23: +2 -2 lines
Diff to previous 1.23 (colored) to selected 1.8 (colored)

Drop trailing whitespace.

Revision 1.23 / (download) - annotate - [select for diffs], Sat Apr 11 20:53:15 2009 UTC (14 years, 11 months ago) by joerg
Branch: MAIN
Changes since 1.22: +6 -26 lines
Diff to previous 1.22 (colored) to selected 1.8 (colored)

Don't use .Xo/.Xc to work around ancient macro argument limit in groff.

Revision 1.22 / (download) - annotate - [select for diffs], Mon Mar 9 19:24:27 2009 UTC (15 years ago) by joerg
Branch: MAIN
Changes since 1.21: +2 -2 lines
Diff to previous 1.21 (colored) to selected 1.8 (colored)

Fix preamble to match order set out by mdoc(7). Discussed with wiz.

Revision 1.20.16.1 / (download) - annotate - [select for diffs], Sun May 18 12:30:35 2008 UTC (15 years, 10 months ago) by yamt
Branch: yamt-pf42
Changes since 1.20: +1 -4 lines
Diff to previous 1.20 (colored) next main 1.21 (colored) to selected 1.8 (colored)

sync with head.

Revision 1.21 / (download) - annotate - [select for diffs], Wed Apr 30 13:10:51 2008 UTC (15 years, 11 months ago) by martin
Branch: MAIN
CVS Tags: yamt-pf42-base4, yamt-pf42-base3, yamt-pf42-base2, wrstuden-revivesa-base-3, wrstuden-revivesa-base-2, wrstuden-revivesa-base-1, wrstuden-revivesa-base, wrstuden-revivesa, netbsd-5-base, netbsd-5-2-RELEASE, netbsd-5-2-RC1, netbsd-5-2-3-RELEASE, netbsd-5-2-2-RELEASE, netbsd-5-2-1-RELEASE, netbsd-5-2, netbsd-5-1-RELEASE, netbsd-5-1-RC4, netbsd-5-1-RC3, netbsd-5-1-RC2, netbsd-5-1-RC1, netbsd-5-1-5-RELEASE, netbsd-5-1-4-RELEASE, netbsd-5-1-3-RELEASE, netbsd-5-1-2-RELEASE, netbsd-5-1-1-RELEASE, netbsd-5-1, netbsd-5-0-RELEASE, netbsd-5-0-RC4, netbsd-5-0-RC3, netbsd-5-0-RC2, netbsd-5-0-RC1, netbsd-5-0-2-RELEASE, netbsd-5-0-1-RELEASE, netbsd-5-0, netbsd-5, matt-nb5-pq3-base, matt-nb5-pq3, matt-nb5-mips64-u2-k2-k4-k7-k8-k9, matt-nb5-mips64-u1-k1-k5, matt-nb5-mips64-premerge-20101231, matt-nb5-mips64-premerge-20091211, matt-nb5-mips64-k15, matt-nb5-mips64, matt-nb4-mips64-k7-u2a-k9b, matt-mips64-base2, hpcarm-cleanup-nbase
Branch point for: jym-xensuspend
Changes since 1.20: +1 -4 lines
Diff to previous 1.20 (colored) to selected 1.8 (colored)

Convert TNF licenses to new 2 clause variant

Revision 1.20 / (download) - annotate - [select for diffs], Mon Aug 21 12:45:30 2006 UTC (17 years, 7 months ago) by christos
Branch: MAIN
CVS Tags: yamt-pf42-baseX, yamt-pf42-base, wrstuden-fixsa-newbase, wrstuden-fixsa-base-1, wrstuden-fixsa-base, wrstuden-fixsa, netbsd-4-base, netbsd-4-0-RELEASE, netbsd-4-0-RC5, netbsd-4-0-RC4, netbsd-4-0-RC3, netbsd-4-0-RC2, netbsd-4-0-RC1, netbsd-4-0-1-RELEASE, netbsd-4-0, netbsd-4, matt-mips64-base, matt-mips64, matt-armv6-prevmlocking, matt-armv6-nbase, matt-armv6-base, matt-armv6, keiichi-mipv6-base, keiichi-mipv6, hpcarm-cleanup-base, hpcarm-cleanup, cube-autoconf-base, cube-autoconf
Branch point for: yamt-pf42
Changes since 1.19: +2 -6 lines
Diff to previous 1.19 (colored) to selected 1.8 (colored)

Change to a 3 clause copyright after permission of the holders.

Revision 1.19 / (download) - annotate - [select for diffs], Sat Nov 1 23:35:33 2003 UTC (20 years, 5 months ago) by christos
Branch: MAIN
CVS Tags: netbsd-3-base, netbsd-3-1-RELEASE, netbsd-3-1-RC4, netbsd-3-1-RC3, netbsd-3-1-RC2, netbsd-3-1-RC1, netbsd-3-1-1-RELEASE, netbsd-3-1, netbsd-3-0-RELEASE, netbsd-3-0-RC6, netbsd-3-0-RC5, netbsd-3-0-RC4, netbsd-3-0-RC3, netbsd-3-0-RC2, netbsd-3-0-RC1, netbsd-3-0-3-RELEASE, netbsd-3-0-2-RELEASE, netbsd-3-0-1-RELEASE, netbsd-3-0, netbsd-3, netbsd-2-base, netbsd-2-1-RELEASE, netbsd-2-1-RC6, netbsd-2-1-RC5, netbsd-2-1-RC4, netbsd-2-1-RC3, netbsd-2-1-RC2, netbsd-2-1-RC1, netbsd-2-1, netbsd-2-0-base, netbsd-2-0-RELEASE, netbsd-2-0-RC5, netbsd-2-0-RC4, netbsd-2-0-RC3, netbsd-2-0-RC2, netbsd-2-0-RC1, netbsd-2-0-3-RELEASE, netbsd-2-0-2-RELEASE, netbsd-2-0-1-RELEASE, netbsd-2-0, netbsd-2, abandoned-netbsd-4-base, abandoned-netbsd-4
Changes since 1.18: +19 -3 lines
Diff to previous 1.18 (colored) to selected 1.8 (colored)

Document history builtin commands.

Revision 1.18 / (download) - annotate - [select for diffs], Sun Oct 19 01:26:11 2003 UTC (20 years, 5 months ago) by wiz
Branch: MAIN
Changes since 1.17: +2 -2 lines
Diff to previous 1.17 (colored) to selected 1.8 (colored)

Bump date for previous.

Revision 1.17 / (download) - annotate - [select for diffs], Sat Oct 18 22:24:34 2003 UTC (20 years, 5 months ago) by christos
Branch: MAIN
Changes since 1.16: +11 -1 lines
Diff to previous 1.16 (colored) to selected 1.8 (colored)

Allow setty to set chars using char=value

Revision 1.16 / (download) - annotate - [select for diffs], Fri Jun 27 18:57:09 2003 UTC (20 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.15: +2 -2 lines
Diff to previous 1.15 (colored) to selected 1.8 (colored)

Add Ns.

Revision 1.15 / (download) - annotate - [select for diffs], Wed May 14 07:24:21 2003 UTC (20 years, 10 months ago) by wiz
Branch: MAIN
Changes since 1.14: +2 -2 lines
Diff to previous 1.14 (colored) to selected 1.8 (colored)

setup -> set up, from jmc@openbsd.

Revision 1.14 / (download) - annotate - [select for diffs], Mon Mar 31 16:52:42 2003 UTC (21 years ago) by perry
Branch: MAIN
Changes since 1.13: +2 -2 lines
Diff to previous 1.13 (colored) to selected 1.8 (colored)

em-gosmacs-traspose->em-gosmacs-transpose (Igor Sobrado, PR misc/19909)

Revision 1.13 / (download) - annotate - [select for diffs], Wed Oct 2 11:06:11 2002 UTC (21 years, 6 months ago) by wiz
Branch: MAIN
CVS Tags: fvdl_fs64_base
Changes since 1.12: +2 -2 lines
Diff to previous 1.12 (colored) to selected 1.8 (colored)

empty, not emptry. By Adrian Mrva.

Revision 1.12 / (download) - annotate - [select for diffs], Tue Jan 15 02:46:44 2002 UTC (22 years, 2 months ago) by wiz
Branch: MAIN
CVS Tags: netbsd-1-6-base, netbsd-1-6-RELEASE, netbsd-1-6-RC3, netbsd-1-6-RC2, netbsd-1-6-RC1, netbsd-1-6-PATCH002-RELEASE, netbsd-1-6-PATCH002-RC4, netbsd-1-6-PATCH002-RC3, netbsd-1-6-PATCH002-RC2, netbsd-1-6-PATCH002-RC1, netbsd-1-6-PATCH002, netbsd-1-6-PATCH001-RELEASE, netbsd-1-6-PATCH001-RC3, netbsd-1-6-PATCH001-RC2, netbsd-1-6-PATCH001-RC1, netbsd-1-6-PATCH001, netbsd-1-6
Changes since 1.11: +2 -2 lines
Diff to previous 1.11 (colored) to selected 1.8 (colored)

Punctuation nits.

Revision 1.11 / (download) - annotate - [select for diffs], Tue Jun 19 13:42:09 2001 UTC (22 years, 9 months ago) by wiz
Branch: MAIN
Changes since 1.10: +2 -2 lines
Diff to previous 1.10 (colored) to selected 1.8 (colored)

`existent', not `existant'

Revision 1.10 / (download) - annotate - [select for diffs], Wed Nov 8 00:09:38 2000 UTC (23 years, 4 months ago) by lukem
Branch: MAIN
Changes since 1.9: +10 -6 lines
Diff to previous 1.9 (colored) to selected 1.8 (colored)

improve description of line syntax

Revision 1.8.8.1 / (download) - annotate - [select for diffs], Fri Jun 23 15:41:40 2000 UTC (23 years, 9 months ago) by lukem
Branch: netbsd-1-5
CVS Tags: netbsd-1-5-RELEASE, netbsd-1-5-PATCH003, netbsd-1-5-PATCH002, netbsd-1-5-PATCH001, netbsd-1-5-BETA2, netbsd-1-5-BETA, netbsd-1-5-ALPHA2
Changes since 1.8: +194 -3 lines
Diff to previous 1.8 (colored) next main 1.9 (colored)

Pull up editrc.5 revision 1.9
Pull up makelist revision 1.5
    * add -m option to makelist, which generates an mdoc table with the key
      bindings and their descriptions
    * manually add the output of 'sh ./makelist -m vi.c ed.c common.c' to
      a new section in editrc(5) called `EDITOR COMMANDS'
requested/approved by thorpej

Revision 1.9 / (download) - annotate - [select for diffs], Wed Jun 21 03:21:28 2000 UTC (23 years, 9 months ago) by lukem
Branch: MAIN
Changes since 1.8: +194 -3 lines
Diff to previous 1.8 (colored)

* add -m option to makelist, which generates an mdoc table with the key
  bindings and their descriptions
* manually add the output of 'sh ./makelist -m vi.c ed.c common.c' to
  a new section in editrc(5) called `EDITOR COMMANDS'

Revision 1.8 / (download) - annotate - [selected], Fri Jul 2 15:21:23 1999 UTC (24 years, 9 months ago) by simonb
Branch: MAIN
CVS Tags: wrstuden-devbsize-base, wrstuden-devbsize-19991221, wrstuden-devbsize, netbsd-1-5-base, minoura-xpg4dl-base, minoura-xpg4dl, comdex-fall-1999-base, comdex-fall-1999
Branch point for: netbsd-1-5
Changes since 1.7: +5 -5 lines
Diff to previous 1.7 (colored)

More trailing white space.

Revision 1.7 / (download) - annotate - [select for diffs], Mon Mar 22 19:45:15 1999 UTC (25 years ago) by garbled
Branch: MAIN
CVS Tags: netbsd-1-4-base, netbsd-1-4-RELEASE, netbsd-1-4-PATCH003, netbsd-1-4-PATCH002, netbsd-1-4-PATCH001, netbsd-1-4
Changes since 1.6: +2 -2 lines
Diff to previous 1.6 (colored) to selected 1.8 (colored)

Last of the .Os cleanups.  .Os is defined in the tmac.doc-common file,
so we shouldn't override it with versions in the manpages.  Wheee!

Revision 1.6 / (download) - annotate - [select for diffs], Wed Jul 29 02:26:00 1998 UTC (25 years, 8 months ago) by lukem
Branch: MAIN
Changes since 1.5: +5 -1 lines
Diff to previous 1.5 (colored) to selected 1.8 (colored)

* add more checks for NULL pointers in passed arguments
* implement el_get(EditLine *, int op, void *result), which does the
  inverse of el_set()
* add EL_EDITMODE operation to el_set and el_get; if non zero editing
  is enabled (the default).
* add "edit  on | off" editrc command, which modifies EL_EDITMODE.
  users can now add '*:edit off' in ~/.editrc as an advisory to
  disable editing.

NOTE: at this time EL_EDITMODE is just an indication of the
state of the 'edit' command. It's up to the application to check
this after el_source() or el_parse() to determine if editing is still
required.

Revision 1.5 / (download) - annotate - [select for diffs], Wed Jul 30 23:57:39 1997 UTC (26 years, 8 months ago) by jtc
Branch: MAIN
CVS Tags: netbsd-1-3-base, netbsd-1-3-RELEASE, netbsd-1-3-PATCH003-CANDIDATE2, netbsd-1-3-PATCH003-CANDIDATE1, netbsd-1-3-PATCH003-CANDIDATE0, netbsd-1-3-PATCH003, netbsd-1-3-PATCH002, netbsd-1-3-PATCH001, netbsd-1-3-BETA, netbsd-1-3
Changes since 1.4: +3 -3 lines
Diff to previous 1.4 (colored) to selected 1.8 (colored)

Fix files using old TNF copyright notice

Revision 1.4 / (download) - annotate - [select for diffs], Thu Apr 24 20:20:31 1997 UTC (26 years, 11 months ago) by christos
Branch: MAIN
Changes since 1.3: +2 -2 lines
Diff to previous 1.3 (colored) to selected 1.8 (colored)

editrc -> editline

Revision 1.3 / (download) - annotate - [select for diffs], Sat Jan 11 09:57:06 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.2: +46 -2 lines
Diff to previous 1.2 (colored) to selected 1.8 (colored)

* document ^char and \ escape sequences
* when parsing ^char control chars, check the correct char when determining
  validity (previously, ^char was a NOP interpreted as the literal string
  because of this bug)

Revision 1.2 / (download) - annotate - [select for diffs], Sat Jan 11 06:47:52 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Changes since 1.1: +3 -3 lines
Diff to previous 1.1 (colored) to selected 1.8 (colored)

RCSid police
editline first appeared in 4.4BSD not NetBSD1.0

Revision 1.1 / (download) - annotate - [select for diffs], Thu Jan 9 13:12:16 1997 UTC (27 years, 2 months ago) by lukem
Branch: MAIN
Diff to selected 1.8 (colored)

* add a man page for the editline routines
* add a man page describing editrc
* fix bugs in el_parse():
	* didn't execute command when program name matched (test reversed)
	* was checking against empty string instead of program name
	* after checks, command to run also pointed to empty string

[christos - the author of libedit - ok-ed the man pages in general (which I
 wrote from scratch by RTFS) as well as the bugfix]

This form allows you to request diff's between any two revisions of a file. You may select a symbolic revision name using the selection box or you may type in a numeric name using the type-in text box.




CVSweb <webmaster@jp.NetBSD.org>