summaryrefslogtreecommitdiffstats
path: root/sys/ddb
diff options
context:
space:
mode:
authoryokota <yokota@FreeBSD.org>1999-07-14 10:53:41 +0000
committeryokota <yokota@FreeBSD.org>1999-07-14 10:53:41 +0000
commit78fb7c3b79a8150fa92518ded2ce085f810bfdd2 (patch)
tree5fc0a0c30ef3df278f7c7d1a719aad790ee52a31 /sys/ddb
parent564861ba7c78bd06e527c27022b1d2a0790c2f2c (diff)
downloadFreeBSD-src-78fb7c3b79a8150fa92518ded2ce085f810bfdd2.zip
FreeBSD-src-78fb7c3b79a8150fa92518ded2ce085f810bfdd2.tar.gz
The following patch will remove a hack introduced in
/sys/ddb/db_input.c rev 1.19 to recognize syscons's cursor keycodes. It is unnecessary now that scgetc() in syscons returns the escape sequence for the cursor keys rather than their raw, internal key codes.
Diffstat (limited to 'sys/ddb')
-rw-r--r--sys/ddb/db_input.c14
1 files changed, 1 insertions, 13 deletions
diff --git a/sys/ddb/db_input.c b/sys/ddb/db_input.c
index 857afd6..a9797d2 100644
--- a/sys/ddb/db_input.c
+++ b/sys/ddb/db_input.c
@@ -23,7 +23,7 @@
* any improvements or extensions that they make and grant Carnegie the
* rights to redistribute these changes.
*
- * $Id: db_input.c,v 1.22 1997/11/20 16:53:23 bde Exp $
+ * $Id: db_input.c,v 1.23 1997/12/05 05:36:58 dyson Exp $
*/
/*
@@ -157,9 +157,6 @@ db_inputchar(c)
case CTRL('['):
escstate = 1;
break;
-#if __i386__ && __FreeBSD__
- case 591: /* syscons's idea of left arrow key */
-#endif
case CTRL('b'):
/* back up one character */
if (db_lc > db_lbuf_start) {
@@ -167,9 +164,6 @@ db_inputchar(c)
db_lc--;
}
break;
-#if __i386__ && __FreeBSD__
- case 593: /* syscons's idea of right arrow key */
-#endif
case CTRL('f'):
/* forward one character */
if (db_lc < db_le) {
@@ -227,9 +221,6 @@ db_inputchar(c)
db_putnchars(BACKUP, db_le - db_lc);
}
break;
-#if __i386__ && __FreeBSD__
- case 588: /* syscons's idea of up arrow key */
-#endif
case CTRL('p'):
/* Make previous history line the active one. */
if (db_lhistcur >= 0) {
@@ -239,9 +230,6 @@ db_inputchar(c)
goto hist_redraw;
}
break;
-#if __i386__ && __FreeBSD__
- case 596: /* syscons's idea of down arrow key */
-#endif
case CTRL('n'):
/* Make next history line the active one. */
if (db_lhistcur < db_lhistidx - 1) {
OpenPOWER on IntegriCloud