diff options
author | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-10-10 07:38:19 +0000 |
---|---|---|
committer | Nicholas Marriott <nicm@cvs.openbsd.org> | 2015-10-10 07:38:19 +0000 |
commit | 22a9c3fda8e903aa6a876b2de338eeb5e6362354 (patch) | |
tree | 110320e64555347542125c81850a56fe7f3786ea /bin/ksh | |
parent | 6b25e8791c1469a6c3b03df68a378d5a64cef801 (diff) |
Unused macros; from Michael McConville.
Diffstat (limited to 'bin/ksh')
-rw-r--r-- | bin/ksh/emacs.c | 5 |
1 files changed, 1 insertions, 4 deletions
diff --git a/bin/ksh/emacs.c b/bin/ksh/emacs.c index af067c84553..cb69da035f6 100644 --- a/bin/ksh/emacs.c +++ b/bin/ksh/emacs.c @@ -1,4 +1,4 @@ -/* $OpenBSD: emacs.c,v 1.54 2015/10/09 19:36:27 tedu Exp $ */ +/* $OpenBSD: emacs.c,v 1.55 2015/10/10 07:38:18 nicm Exp $ */ /* * Emacs-like command line editing and history @@ -26,9 +26,6 @@ static Area aedit; #define CTRL(x) ((x) == '?' ? 0x7F : (x) & 0x1F) /* ASCII */ #define UNCTRL(x) ((x) == 0x7F ? '?' : (x) | 0x40) /* ASCII */ -#define META(x) ((x) & 0x7f) -#define ISMETA(x) (Flag(FEMACSUSEMETA) && ((x) & 0x80)) - /* values returned by keyboard functions */ #define KSTD 0 |