diff options
-rw-r--r-- | Src/utils.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/Src/utils.c b/Src/utils.c index eb6edf719..787f775b7 100644 --- a/Src/utils.c +++ b/Src/utils.c @@ -3578,6 +3578,7 @@ getkeystring(char *s, int *len, int fromwhere, int *misc) *t++ = '\\', s--; continue; } + /* FALL THROUGH */ case 'e': *t++ = '\033'; break; @@ -3611,6 +3612,7 @@ getkeystring(char *s, int *len, int fromwhere, int *misc) *misc = 1; break; } + goto def; case 'u': case 'U': wval = 0; |