diff options
| author | Tom Tromey | 2013-07-06 23:18:58 -0600 |
|---|---|---|
| committer | Tom Tromey | 2013-07-06 23:18:58 -0600 |
| commit | 6dacdad5fcb278e5a16b38bb81786aac9ca27be4 (patch) | |
| tree | f5f331ea361ba0f99e0f9b638d183ad492a7da31 /src/bytecode.c | |
| parent | 0a6f2ff0c8ceb29703e76cddd46ea3f176dd873a (diff) | |
| parent | 219afb88d9d484393418820d1c08dc93299110ec (diff) | |
| download | emacs-6dacdad5fcb278e5a16b38bb81786aac9ca27be4.tar.gz emacs-6dacdad5fcb278e5a16b38bb81786aac9ca27be4.zip | |
merge from trunk
this merges frmo trunk and fixes various build issues.
this needed a few ugly tweaks.
this hangs in "make check" now
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 9e5f4d1434f..a22be984b44 100644 --- a/src/bytecode.c +++ b/src/bytecode.c | |||
| @@ -1633,7 +1633,7 @@ exec_byte_code (Lisp_Object bytestr, Lisp_Object vector, Lisp_Object maxdepth, | |||
| 1633 | c = XFASTINT (TOP); | 1633 | c = XFASTINT (TOP); |
| 1634 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) | 1634 | if (NILP (BVAR (current_buffer, enable_multibyte_characters))) |
| 1635 | MAKE_CHAR_MULTIBYTE (c); | 1635 | MAKE_CHAR_MULTIBYTE (c); |
| 1636 | XSETFASTINT (TOP, syntax_code_spec[(int) SYNTAX (c)]); | 1636 | XSETFASTINT (TOP, syntax_code_spec[SYNTAX (c)]); |
| 1637 | } | 1637 | } |
| 1638 | NEXT; | 1638 | NEXT; |
| 1639 | 1639 | ||