]> git.wh0rd.org Git - nano.git/commitdiff
in parse_escape_seq_kbinput(), Don't ignore escape sequences anymore;
authorDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Jul 2006 19:23:35 +0000 (19:23 +0000)
committerDavid Lawrence Ramsey <pooka109@gmail.com>
Tue, 25 Jul 2006 19:23:35 +0000 (19:23 +0000)
instead, return the corresponding key so that parse_kbinput() can
translate it

git-svn-id: svn://svn.savannah.gnu.org/nano/trunk/nano@3814 35c25a1d-7b9e-4130-9fde-d3aeb78583b8

ChangeLog
src/proto.h
src/winio.c

index 113d029e266a7f6023a31ed6cb11e68b023ecb09..5a5b729965035731c06c7c5440164843098bc6bd 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -149,6 +149,9 @@ CVS code -
   parse_escape_seq_kbinput()
        - Handle unknown and unignored escape sequences once here
          instead of twice in parse_kbinput(). (DLR)
+       - Don't ignore escape sequences anymore.  Instead, return the
+         corresponding key so that parse_kbinput() can translate it.
+         (DLR)
   display_string()
        - Properly handle buf[start_index]'s being a null terminator.
          (DLR)
index 382a3d155f3461e6aedbd4526e7f98c3206ce785..b9bb4079e6db32e31b38227203ae6507fb9bfa0e 100644 (file)
@@ -732,8 +732,7 @@ void unget_kbinput(int kbinput, bool meta_key, bool func_key);
 int *get_input(WINDOW *win, size_t input_len);
 int get_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
 int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key);
-int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
-       *ignore_seq);
+int get_escape_seq_kbinput(const int *seq, size_t seq_len);
 int get_escape_seq_abcd(int kbinput);
 int parse_escape_seq_kbinput(WINDOW *win, int kbinput);
 int get_byte_kbinput(int kbinput);
index 409ebf0aa6d69f9b80dfa3771cd9edbef4dc2368..64820e79f297ede2fb83aa0a951b67fb1ec31bb5 100644 (file)
@@ -669,18 +669,12 @@ int parse_kbinput(WINDOW *win, bool *meta_key, bool *func_key)
 
 /* Translate escape sequences, most of which correspond to extended
  * keypad values, into their corresponding key values.  These sequences
- * are generated when the keypad doesn't support the needed keys.  If
- * the escape sequence is recognized but we want to ignore it, return
- * ERR and set ignore_seq to TRUE; if it's unrecognized, return ERR and
- * set ignore_seq to FALSE.  Assume that Escape has already been read
- * in. */
-int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
-       *ignore_seq)
+ * are generated when the keypad doesn't support the needed keys.
+ * Assume that Escape has already been read in. */
+int get_escape_seq_kbinput(const int *seq, size_t seq_len)
 {
     int retval = ERR;
 
-    *ignore_seq = FALSE;
-
     if (seq_len > 1) {
        switch (seq[0]) {
            case 'O':
@@ -718,7 +712,7 @@ int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
                        break;
                    case 'E': /* Esc O E == Center (5) on numeric keypad
                               * with NumLock off on xterm. */
-                       *ignore_seq = TRUE;
+                       retval = KEY_B2;
                        break;
                    case 'F': /* Esc O F == End on xterm. */
                        retval = NANO_END_KEY;
@@ -829,7 +823,7 @@ int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
                    case 'u': /* Esc O u == Center (5) on numeric keypad
                               * with NumLock off on VT100/VT220/VT320/
                               * rxvt/Eterm. */
-                       *ignore_seq = TRUE;
+                       retval = KEY_B2;
                        break;
                    case 'v': /* Esc O v == Right (6) on numeric keypad
                               * with NumLock off on VT100/VT220/VT320/
@@ -1045,7 +1039,7 @@ int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
                        break;
                    case 'E': /* Esc [ E == Center (5) on numeric keypad
                               * with NumLock off on FreeBSD console. */
-                       *ignore_seq = TRUE;
+                       retval = KEY_B2;
                        break;
                    case 'F': /* Esc [ F == End on FreeBSD
                               * console/Eterm. */
@@ -1169,7 +1163,7 @@ int get_escape_seq_kbinput(const int *seq, size_t seq_len, bool
     }
 
 #ifdef DEBUG
-    fprintf(stderr, "get_escape_seq_kbinput(): retval = %d, ignore_seq = %s\n", retval, *ignore_seq ? "TRUE" : "FALSE");
+    fprintf(stderr, "get_escape_seq_kbinput(): retval = %d\n", retval);
 #endif
 
     return retval;
@@ -1201,7 +1195,6 @@ int parse_escape_seq_kbinput(WINDOW *win, int kbinput)
 {
     int retval, *seq;
     size_t seq_len;
-    bool ignore_seq;
 
     /* Put back the non-escape character, get the complete escape
      * sequence, translate the sequence into its corresponding key
@@ -1209,13 +1202,12 @@ int parse_escape_seq_kbinput(WINDOW *win, int kbinput)
     unget_input(&kbinput, 1);
     seq_len = get_key_buffer_len();
     seq = get_input(NULL, seq_len);
-    retval = get_escape_seq_kbinput(seq, seq_len, &ignore_seq);
+    retval = get_escape_seq_kbinput(seq, seq_len);
 
     free(seq);
 
-    /* If we got an unrecognized escape sequence, and it's not ignored,
-     * throw it out. */
-    if (retval == ERR && !ignore_seq) {
+    /* If we got an unrecognized escape sequence, throw it out. */
+    if (retval == ERR) {
        if (win == edit) {
            statusbar(_("Unknown Command"));
            beep();
@@ -1223,7 +1215,7 @@ int parse_escape_seq_kbinput(WINDOW *win, int kbinput)
     }
 
 #ifdef DEBUG
-    fprintf(stderr, "parse_escape_seq_kbinput(): kbinput = %d, ignore_seq = %s, seq_len = %lu, retval = %d\n", kbinput, ignore_seq ? "TRUE" : "FALSE", (unsigned long)seq_len, retval);
+    fprintf(stderr, "parse_escape_seq_kbinput(): kbinput = %d, seq_len = %lu, retval = %d\n", kbinput, (unsigned long)seq_len, retval);
 #endif
 
     return retval;