diff options
Diffstat (limited to 'src')
| -rw-r--r-- | src/abbrev.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/abbrev.c b/src/abbrev.c index 37e92acc5fa..ea7b619254a 100644 --- a/src/abbrev.c +++ b/src/abbrev.c | |||
| @@ -377,7 +377,7 @@ write_abbrev (sym, stream) | |||
| 377 | if (NILP (XSYMBOL (sym)->value)) | 377 | if (NILP (XSYMBOL (sym)->value)) |
| 378 | return; | 378 | return; |
| 379 | insert (" (", 5); | 379 | insert (" (", 5); |
| 380 | XSET (name, Lisp_String, XSYMBOL (sym)->name); | 380 | XSETSTRING (name, XSYMBOL (sym)->name); |
| 381 | Fprin1 (name, stream); | 381 | Fprin1 (name, stream); |
| 382 | insert (" ", 1); | 382 | insert (" ", 1); |
| 383 | Fprin1 (XSYMBOL (sym)->value, stream); | 383 | Fprin1 (XSYMBOL (sym)->value, stream); |
| @@ -429,7 +429,7 @@ define the abbrev table NAME exactly as it is currently defined.") | |||
| 429 | table = Fsymbol_value (name); | 429 | table = Fsymbol_value (name); |
| 430 | CHECK_VECTOR (table, 0); | 430 | CHECK_VECTOR (table, 0); |
| 431 | 431 | ||
| 432 | XSET (stream, Lisp_Buffer, current_buffer); | 432 | XSETBUFFER (stream, current_buffer); |
| 433 | 433 | ||
| 434 | if (!NILP (readable)) | 434 | if (!NILP (readable)) |
| 435 | { | 435 | { |