History log of /netbsd/bin/ksh/edit.c (Results 1 – 25 of 36)
Revision Date Author Comments
# 822c36bb 03-Jun-2018 kamil <kamil@NetBSD.org>

ksh: Remove symbol clash with libc

Rename local function twalk() to ksh_twak().
This is needed for installing interceptors in sanitizers.

Sponsored by <The NetBSD Foundation>


# 59ca3945 01-Jul-2017 joerg <joerg@NetBSD.org>

Kill enough K&R cruft to build with clang again.


# 92dcc34a 30-Jun-2017 kamil <kamil@NetBSD.org>

ksh: Eliminate dead function x_complete_word()


# 13351aa1 30-Jun-2017 kamil <kamil@NetBSD.org>

ksh: Upgrade to C99 <stdbool.h>

This shell already used C99 functions.


# 1fe37413 30-Jun-2017 kamil <kamil@NetBSD.org>

ksh: Drop support for systems without <sys/stat.h>

In future the order of includes will be normalized with KNF.

No functional change intended.


# 79a55b5f 22-Jun-2017 kamil <kamil@NetBSD.org>

Reapply removal of code from 90ties for OS/2 Cygwin AIX HPUX SCOUnix

Added missing #endif terminator in emacs.c


# b8542049 22-Jun-2017 kamil <kamil@NetBSD.org>

Temporarily revert previous.

emacs.* gets wrong code in generation


# a6be7f69 22-Jun-2017 kamil <kamil@NetBSD.org>

Remove sco unix 3.2v4.1 support (from 1992) from ksh(1)

OK by <kre>


# 7f4c58ac 22-Jun-2017 kamil <kamil@NetBSD.org>

Remove os2 support in ksh(1)

OK by <kre>


# ae4595e7 22-Jun-2017 kamil <kamil@NetBSD.org>

Remove ancient cygwin support in ksh(1)

OK by <kre>


# 6d83722e 05-Jun-2010 sjg <sjg@NetBSD.org>

PR: 39604
Reviewed by:

add_glob:
Do not stop scanning if we see '$' as it does more harm than good.
For $HOME/tm we should return $HOME/tm*


# 73d0ac94 02-Apr-2010 plunky <plunky@NetBSD.org>

- int putbuf_func ARGS((const char *s, size_t len));
+ int (*putbuf_func) ARGS((const char *, size_t));

for pcc
- did not recognise pointer to function
- argument names shadowed other arguments


# b0a8c7de 24-Nov-2009 seanb <seanb@NetBSD.org>

Back out fix for PR 22846 as it has issues. See PR 22846 for details.


# 7ca13b8b 25-Apr-2009 lukem <lukem@NetBSD.org>

Fix most of the -Wsign-compare issues.


# 26a246a0 28-Jan-2007 cbiere <cbiere@NetBSD.org>

* Escape '?', '[', ']' like other meta characters.
* Partial fix for completion when '[' is in the way.
* Addresses PR bin/22846.


# 62faec26 14-May-2006 christos <christos@NetBSD.org>

Don't free random memory; thanks gcc-4.


# ec2162bd 27-Apr-2006 christos <christos@NetBSD.org>

Avoid double free.


# f2ec0dc9 24-Apr-2006 christos <christos@NetBSD.org>

Coverity CID 2995: Fix memory leak.


# a74ea5fc 11-Sep-2005 christos <christos@NetBSD.org>

Process window size changes after xread(). [change window size]
echo $COLUMS $LINES; will now print the new sizes immediately, instead
of after the second echo. From otto@OpenBSD


# a397ec1f 26-Jun-2005 christos <christos@NetBSD.org>

warns=3
- remove param names from function decls
- sprinkle const
- rename shadowed variables
- XXX: there is a lot of fishy __UNCONST going on.


# 42627098 23-May-2005 rillig <rillig@NetBSD.org>

Fixed wrong use of the <ctype.h> functions by adding (unsigned char) casts.


# f662a744 07-Jul-2004 mycroft <mycroft@NetBSD.org>

Cleanup of ksh memory handling from OpenBSD, via Stefan Krueger in PR 24962.
Should also fix:
PR 8153
PR 13301
PR 15256
PR 25084


# e3d9d710 11-Sep-2003 jmmv <jmmv@NetBSD.org>

Add ':' to the list of characters to be escaped. Fixes completion problems
when the filename includes this character.


# ad30231f 26-Aug-2003 wiz <wiz@NetBSD.org>

From OpenBSD:
revision 1.18
date: 2003/08/22 18:17:10; author: fgsch; state: Exp; lines: +2 -2
in word location, fix forward scanning so it correctly account for any
escaped char and not only spac

From OpenBSD:
revision 1.18
date: 2003/08/22 18:17:10; author: fgsch; state: Exp; lines: +2 -2
in word location, fix forward scanning so it correctly account for any
escaped char and not only spaces.
for "foo (bar.a)" and "foo (bar a)", cd foo\ \(bar.<tab> will correctly
expand to foo\ \(bar.a\).
otto@ and pval@ ok.

show more ...


# 6377cac7 23-Jun-2003 agc <agc@NetBSD.org>

Add NetBSD RCS Ids.


12