diff options
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/src/lread.c b/src/lread.c index ac9592f20c3..c08e5fc8c1a 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -987,6 +987,8 @@ read_escape (readcharfun) | |||
| 987 | c = READCHAR; | 987 | c = READCHAR; |
| 988 | if (c == '\\') | 988 | if (c == '\\') |
| 989 | c = read_escape (readcharfun); | 989 | c = read_escape (readcharfun); |
| 990 | if ((c & 0xff) >= 'a' && (c & 0xff) <= 'z') | ||
| 991 | return c - ('a' - 'A'); | ||
| 990 | return c | shift_modifier; | 992 | return c | shift_modifier; |
| 991 | 993 | ||
| 992 | case 'H': | 994 | case 'H': |