Commit 61d8c55e by Richard Stallman

(parse_escape): Delete case for '^'.

From-SVN: r3550
parent 42396e97
...@@ -767,13 +767,6 @@ parse_escape (string_ptr) ...@@ -767,13 +767,6 @@ parse_escape (string_ptr)
case 0: case 0:
(*string_ptr)--; (*string_ptr)--;
return 0; return 0;
case '^':
c = *(*string_ptr)++;
if (c == '\\')
c = parse_escape (string_ptr);
if (c == '?')
return 0177;
return (c & 0200) | (c & 037);
case '0': case '0':
case '1': case '1':
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment