History log of /netbsd/bin/ksh/emacs.c (Results 1 – 25 of 38)
Revision Date Author Comments
# ce8041bd 08-May-2018 kamil <kamil@NetBSD.org>

Stop using the register keyword in ksh(1)

ksh also does some strange things with it, like put it in argument lists.

No functional change intended.

PR bin/53237 ksh: remove register keyword by Nia

Stop using the register keyword in ksh(1)

ksh also does some strange things with it, like put it in argument lists.

No functional change intended.

PR bin/53237 ksh: remove register keyword by Nia Alarie

show more ...


# 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


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

Remove os2 support in ksh(1)

OK by <kre>


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

Fix most of the -Wsign-compare issues.


# c5d3cabf 13-May-2006 christos <christos@NetBSD.org>

Coverity CID 3365: Fix inverted logic!


# 0ad47671 01-Apr-2006 christos <christos@NetBSD.org>

Coverity CID 1829: Fix memory leak.


# 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.


# 3cebd932 11-Feb-2005 simonb <simonb@NetBSD.org>

White space nit- don't put a space before/after increment/decrement
operators.


# 7f5b5f6c 28-Oct-2004 dsl <dsl@NetBSD.org>

Add (unsigned char) casts to tolower/toupper and iscntrl calls.
Fixes PR 27593


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

Truncate the prompt if too long. Fixes PR 24674, but not with the patch from
there.


# 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


# 47b5291b 26-Feb-2004 jdolecek <jdolecek@NetBSD.org>

rename variable 'history' to 'histlist' to avoid clash with libedit
history() when this program is crunched into /rescue tools

fixes PR bin/24556 by Kouichirou Hiratsuka


# 5526319b 28-Aug-2003 wiz <wiz@NetBSD.org>

In emacs mode, when expanding file names containing characters that should
get quoted with <ESC>*, _do_ quote them.
Patch from Federico Schwindt fgsch@openbsd -- thanks!
[rev 1.25 in OpenBSD version

In emacs mode, when expanding file names containing characters that should
get quoted with <ESC>*, _do_ quote them.
Patch from Federico Schwindt fgsch@openbsd -- thanks!
[rev 1.25 in OpenBSD version of this file]

show more ...


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

Push (into yank buffer) words only if force_push is TRUE;
set force_push to TRUE in x_del_bword and x_del_fword.
Fixes behaviour where <meta-y> would put the previously yanked word in the yank buffer

Push (into yank buffer) words only if force_push is TRUE;
set force_push to TRUE in x_del_bword and x_del_fword.
Fixes behaviour where <meta-y> would put the previously yanked word in the yank buffer another time.

show more ...


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

From OpenBSD:
revision 1.21
date: 2003/08/02 19:26:15; author: fgsch; state: Exp; lines: +4 -2
On ESC-y ESC-y (yank-pop), also check that there is something to
insert (some text has been killed be

From OpenBSD:
revision 1.21
date: 2003/08/02 19:26:15; author: fgsch; state: Exp; lines: +4 -2
On ESC-y ESC-y (yank-pop), also check that there is something to
insert (some text has been killed before). from otto@, fix bug report 3384.

On yank-pop error (no yank before), reset the index to killstack so
another yank-pop does not mangle the prompt if nothing was yanked, and
to avoid replacing a text when it shouldn't
(yank <something> yank-pop yank-pop).
otto@ ok.

show more ...


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

Allow single letters to be yanked, not only words of two or more letters.


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

Add 'return' statement (and whitespace) to sync with OpenBSD version
of the patch committed in v1.12.


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

From OpenBSD:
revision 1.23
date: 2003/08/23 02:30:59; author: fgsch; state: Exp; lines: +2 -2
under emacs mode, fix the case when the globbed file and the longest
prefix lenghts are equal ("a .b"

From OpenBSD:
revision 1.23
date: 2003/08/23 02:30:59; author: fgsch; state: Exp; lines: +2 -2
under emacs mode, fix the case when the globbed file and the longest
prefix lenghts are equal ("a .b" and "a ab" by instance).
found and tested by otto@.

show more ...


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

Add NetBSD RCS Ids.


# c603c2b2 10-Oct-2002 provos <provos@NetBSD.org>

enable meta key in emacs mode for 7-bit locales. approved thorpej.


# 0d78fff1 27-Sep-2002 provos <provos@NetBSD.org>

complete file names including a ~ correctly.


12