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) if (NILP (XSYMBOL (sym)->value)) return; insert (" (", 5); - XSET (name, Lisp_String, XSYMBOL (sym)->name); + XSETSTRING (name, XSYMBOL (sym)->name); Fprin1 (name, stream); insert (" ", 1); Fprin1 (XSYMBOL (sym)->value, stream); @@ -429,7 +429,7 @@ define the abbrev table NAME exactly as it is currently defined.") table = Fsymbol_value (name); CHECK_VECTOR (table, 0); - XSET (stream, Lisp_Buffer, current_buffer); + XSETBUFFER (stream, current_buffer); if (!NILP (readable)) { |