diff options
| author | Joakim Verona | 2013-07-02 22:46:17 +0200 |
|---|---|---|
| committer | Joakim Verona | 2013-07-02 22:46:17 +0200 |
| commit | 3718127221fbbc31f8ebd027ab7c95403dbe9118 (patch) | |
| tree | ef422898f3344c8f94f6ecf63eb583122bbf2bd8 /src/bytecode.c | |
| parent | 1ce45b902c67b8a0dda8d71bd2812de29a9988a6 (diff) | |
| parent | a3b49114c186d84404226af75ae7905bd1cd018f (diff) | |
| download | emacs-3718127221fbbc31f8ebd027ab7c95403dbe9118.tar.gz emacs-3718127221fbbc31f8ebd027ab7c95403dbe9118.zip | |
Merge branch 'trunk' into xwidget
Conflicts:
src/window.c
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 | ||