From c71813ef45d30805f173ea8ff46ac02800cc8ef1 Mon Sep 17 00:00:00 2001 From: Wayne Davison Date: Sun, 24 Jul 2005 04:54:54 +0000 Subject: Added missing "goto" in handling of 'c' escape (fix from Thorsten Dahlheimer). --- Src/utils.c | 2 ++ 1 file changed, 2 insertions(+) (limited to 'Src/utils.c') 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; -- cgit 1.4.1