aboutsummaryrefslogtreecommitdiffstats
path: root/src/bytecode.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/bytecode.c')
-rw-r--r--src/bytecode.c8
1 files changed, 1 insertions, 7 deletions
diff --git a/src/bytecode.c b/src/bytecode.c
index 472992be180..b7e65d05aef 100644
--- a/src/bytecode.c
+++ b/src/bytecode.c
@@ -1167,13 +1167,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth,
1167 NEXT; 1167 NEXT;
1168 1168
1169 CASE (Bchar_syntax): 1169 CASE (Bchar_syntax):
1170 { 1170 TOP = Fchar_syntax (TOP);
1171 CHECK_CHARACTER (TOP);
1172 int c = XFIXNAT (TOP);
1173 if (NILP (BVAR (current_buffer, enable_multibyte_characters)))
1174 c = make_char_multibyte (c);
1175 XSETFASTINT (TOP, syntax_code_spec[SYNTAX (c)]);
1176 }
1177 NEXT; 1171 NEXT;
1178 1172
1179 CASE (Bbuffer_substring): 1173 CASE (Bbuffer_substring):