diff options
| author | Stephen Berman | 2013-06-21 20:37:42 +0200 |
|---|---|---|
| committer | Stephen Berman | 2013-06-21 20:37:42 +0200 |
| commit | 716b665eb3a134a5d1ccefd5d4c735e7e7ef62d5 (patch) | |
| tree | ede9da164267b968f3c05e0340ba12e06b8d3516 /src/bytecode.c | |
| parent | ebc83885b750d46eb290192ae25f6b9a92bdd15f (diff) | |
| parent | cad5d1cb5af7210154814b60825576d14740158f (diff) | |
| download | emacs-716b665eb3a134a5d1ccefd5d4c735e7e7ef62d5.tar.gz emacs-716b665eb3a134a5d1ccefd5d4c735e7e7ef62d5.zip | |
Merge from trunk.
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 4940fd5c182..d95c53bf055 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -1636,7 +1636,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, | |||
| 1636 | c = XFASTINT (TOP); | 1636 | c = XFASTINT (TOP); |
| 1637 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) | 1637 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) |
| 1638 | MAKE_CHAR_MULTIBYTE (c); | 1638 | MAKE_CHAR_MULTIBYTE (c); |
| 1639 | XSETFASTINT (TOP, syntax_code_spec[(int) SYNTAX (c)]); | 1639 | XSETFASTINT (TOP, syntax_code_spec[SYNTAX (c)]); |
| 1640 | } | 1640 | } |
| 1641 | NEXT; | 1641 | NEXT; |
| 1642 | 1642 | ||