diff options
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/src/syntax.c b/src/syntax.c index 14bec9a9c2f..f0e30803dea 100644 --- a/src/syntax.c +++ b/src/syntax.c | |||
| @@ -1152,7 +1152,7 @@ DEFUN ("internal-describe-syntax-value", Finternal_describe_syntax_value, | |||
| 1152 | 1152 | ||
| 1153 | insert_string ("\twhich means: "); | 1153 | insert_string ("\twhich means: "); |
| 1154 | 1154 | ||
| 1155 | switch (SWITCH_ENUM_CAST (code)) | 1155 | switch (code) |
| 1156 | { | 1156 | { |
| 1157 | case Swhitespace: | 1157 | case Swhitespace: |
| 1158 | insert_string ("whitespace"); break; | 1158 | insert_string ("whitespace"); break; |
| @@ -2525,7 +2525,7 @@ scan_lists (register EMACS_INT from, EMACS_INT count, EMACS_INT depth, int sexpf | |||
| 2525 | if (prefix) | 2525 | if (prefix) |
| 2526 | continue; | 2526 | continue; |
| 2527 | 2527 | ||
| 2528 | switch (SWITCH_ENUM_CAST (code)) | 2528 | switch (code) |
| 2529 | { | 2529 | { |
| 2530 | case Sescape: | 2530 | case Sescape: |
| 2531 | case Scharquote: | 2531 | case Scharquote: |
| @@ -2702,7 +2702,7 @@ scan_lists (register EMACS_INT from, EMACS_INT count, EMACS_INT depth, int sexpf | |||
| 2702 | else if (SYNTAX_FLAGS_PREFIX (syntax)) | 2702 | else if (SYNTAX_FLAGS_PREFIX (syntax)) |
| 2703 | continue; | 2703 | continue; |
| 2704 | 2704 | ||
| 2705 | switch (SWITCH_ENUM_CAST (code)) | 2705 | switch (code) |
| 2706 | { | 2706 | { |
| 2707 | case Sword: | 2707 | case Sword: |
| 2708 | case Ssymbol: | 2708 | case Ssymbol: |
| @@ -3123,7 +3123,7 @@ do { prev_from = from; \ | |||
| 3123 | 3123 | ||
| 3124 | if (SYNTAX_FLAGS_PREFIX (prev_from_syntax)) | 3124 | if (SYNTAX_FLAGS_PREFIX (prev_from_syntax)) |
| 3125 | continue; | 3125 | continue; |
| 3126 | switch (SWITCH_ENUM_CAST (code)) | 3126 | switch (code) |
| 3127 | { | 3127 | { |
| 3128 | case Sescape: | 3128 | case Sescape: |
| 3129 | case Scharquote: | 3129 | case Scharquote: |