diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/macros.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/macros.c b/src/macros.c index 2b50a491ca4..1b23f4b3c8c 100644 --- a/src/macros.c +++ b/src/macros.c | |||
| @@ -119,8 +119,8 @@ macro before appending to it. */) | |||
| 119 | { | 119 | { |
| 120 | Lisp_Object c; | 120 | Lisp_Object c; |
| 121 | c = Faref (current_kboard->Vlast_kbd_macro, make_number (i)); | 121 | c = Faref (current_kboard->Vlast_kbd_macro, make_number (i)); |
| 122 | if (cvt && INTEGERP (c) && (XINT (c) & 0x80)) | 122 | if (cvt && NATNUMP (c) && (XFASTINT (c) & 0x80)) |
| 123 | c = XSETFASTINT (c, CHAR_META | (XINT (c) & ~0x80)); | 123 | XSETFASTINT (c, CHAR_META | (XFASTINT (c) & ~0x80)); |
| 124 | current_kboard->kbd_macro_buffer[i] = c; | 124 | current_kboard->kbd_macro_buffer[i] = c; |
| 125 | } | 125 | } |
| 126 | 126 | ||