diff options
Diffstat (limited to 'src/bytecode.c')
| -rw-r--r-- | src/bytecode.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/bytecode.c b/src/bytecode.c index 4624379756d..3c90544f3f2 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -1172,7 +1172,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, | |||
| 1172 | CHECK_CHARACTER (TOP); | 1172 | CHECK_CHARACTER (TOP); |
| 1173 | int c = XFIXNAT (TOP); | 1173 | int c = XFIXNAT (TOP); |
| 1174 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) | 1174 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) |
| 1175 | MAKE_CHAR_MULTIBYTE (c); | 1175 | c = make_char_multibyte (c); |
| 1176 | XSETFASTINT (TOP, syntax_code_spec[SYNTAX (c)]); | 1176 | XSETFASTINT (TOP, syntax_code_spec[SYNTAX (c)]); |
| 1177 | } | 1177 | } |
| 1178 | NEXT; | 1178 | NEXT; |