Home | History | Annotate | Download | only in libedit
History log of /src/lib/libedit/makelist
RevisionDateAuthorComments
 1.29  09-May-2016  christos s/protected/libedit_private/g
 1.28  18-Apr-2016  christos From Ingo Schwarze:
* Replace fcns.c by a shorter and simpler func.h
and include it only in the one file needing it, map.c.
* Combine help.h and help.c into a simplified help.h
and include it only in the one file needing it, map.c.
* Check the very simple, static files editline.c, historyn.c, and
tokenizern.c into CVS rather than needlessly generating them.
* So we no longer autogenerate any C files. :-)
* Shorten and simplify makelist by deleting the options -n, -e, -bc,
and -m; the latter was unused and useless in the first place.
* Move the declaration of el_func_t from fcns.h to the header
actually needing it, map.h. Since that header is already
included by el.h for unrelated reasons, that makes el_func_t
just as globally available as before.
* No longer include the simplified fcns.h into el.h,
include it directly into the *.c files needing it.
 1.27  11-Apr-2016  christos Get rid of private/public; keep protected (Ingo Schwarze)
 1.26  11-Apr-2016  christos more macro WIDECHAR undoing from Ingo Schwarze.
 1.25  23-Mar-2016  christos Start removing the WIDECHAR ifdefs; building without it has stopped working
anyway. (Ingo Schwarze)
 1.24  17-Feb-2016  christos whitespace and header sorting changes (Ingo Schwarze). No functional changes.
 1.23  16-Feb-2016  christos more include file cleanup (Ingo Schwarze)
 1.22  16-Feb-2016  christos From Ingo Scharze:
Let "el.h" include everything needed for struct editline,
and don't include that stuff multiple times. That also improves
consistency, also avoids circular inclusions, and also makes it
easier to follow what is going on, even though not quite as nice.
But it seems like the best we can do...
 1.21  16-Feb-2016  christos cleanup chartype.h includes (Ingo Schwarze)
 1.20  16-Feb-2016  christos cleanup inclusion of histedit.h (Ingo Schwarze)
 1.19  14-Feb-2016  christos From Ingo Schwarze:

As we have seen before, "histedit.h" can never get rid of including
the <wchar.h> header because using the data types defined there is
deeply ingrained in the public interfaces of libedit.

Now POSIX unconditionally requires that <wchar.h> defines the type
wint_t. Consequently, it can be used unconditionally, no matter
whether WIDECHAR is active or not. Consequently, the #define Int
is pointless.

Note that removing it is not gratuitious churn. Auditing for
integer signedness problems is already hard when only fundamental
types like "int" and "unsigned" are involved. It gets very hard
when types come into the picture that have platform-dependent
signedness, like "char" and "wint_t". Adding yet another layer
on top, changing both the signedness and the width in a platform-
dependent way, makes auditing yet harder, which IMHO is really
dangerous. Note that while removing the #define, i already found
one bug caused by this excessive complication - in the function
re_putc() in refresh.c. If WIDECHAR was defined, it printed an
Int = wint_t value with %c. Fortunately, that bug only affects
debugging, not production. The fix is contained in the patch.

With WIDECHAR, this doesn't change anything. For the case without
WIDECHAR, i checked that none of the places wants to store values
that might not fit in wint_t.

This only changes internal interfaces; public ones remain unchanged.
 1.18  21-Mar-2012  matt Use C89 functions definitions.
 1.17  28-Jul-2011  christos branches: 1.17.2;
include config.h for all c files.
 1.16  18-Apr-2010  christos shame on solaris that is the last OS not supporting $()
 1.15  15-Apr-2010  christos From Jess Thrysoee
- Fix wint_t to Int confusion
 1.14  30-Dec-2009  christos Fix wide build, test it, but don't turn it on yet.
 1.13  30-Dec-2009  christos Wide character support (UTF-8) from Johny Mattsson; currently disabled.
 1.12  12-Feb-2009  sketch More fixes for existing portability stuff.
 1.11  22-Oct-2005  christos branches: 1.11.28;
change tr '[a-z]' '[A-Z]' to tr '[:lower:]' '[:upper:]' so that POSIX systems
work properly regardless of environment variable settings.
 1.10  08-Aug-2005  christos Don't add an extra { NULL, 0, NULL } element to the help array. Instead keep
it always the same size as the function array for consistency. Reported in
FreeBSD PR 82381, but fixed differently.
 1.9  16-May-2005  lukem Remove clause 3 from the UCB license.
 1.8  10-Mar-2003  christos don't use the path for awk
 1.7  09-Jan-2001  jdolecek make array of functions and help array const
 1.6  04-Sep-2000  lukem - generate ansi prototypes instead of using __P(). noted by christos
- fix a couple of comments
 1.5  21-Jun-2000  lukem * 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'
 1.4  02-Jul-1999  simonb branches: 1.4.8;
More trailing white space.
 1.3  11-Jan-1997  lukem RCSid police
editline first appeared in 4.4BSD not NetBSD1.0
 1.2  07-Jun-1995  cgd be a bit more careful when splitting pathnames
 1.1  06-May-1994  cgd branches: 1.1.1;
Initial revision
 1.1.1.1  06-May-1994  cgd libedit!
 1.4.8.1  23-Jun-2000  lukem 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
 1.11.28.1  13-May-2009  jym Sync with HEAD.

Third (and last) commit. See http://mail-index.netbsd.org/source-changes/2009/05/13/msg221222.html
 1.17.2.1  17-Apr-2012  yamt sync with head

RSS XML Feed