summaryrefslogtreecommitdiff
path: root/src/abbrev.c
diff options
context:
space:
mode:
authorKarl Heuer <kwzh@gnu.org>1994-10-04 11:39:56 +0000
committerKarl Heuer <kwzh@gnu.org>1994-10-04 11:39:56 +0000
commit3efa6942ab7f0dfec2927b16c1fbe97e98368f65 (patch)
tree032f240f50faa54d193bd0c2013af38b1d0b9af5 /src/abbrev.c
parentaa0d5551a52bc76643fdd201b30257d27a0328f7 (diff)
downloademacs-3efa6942ab7f0dfec2927b16c1fbe97e98368f65.tar.gz
(write_abbrev, Finsert_abbrev_table_description): Use new accessor macros
instead of calling XSET directly.
Diffstat (limited to 'src/abbrev.c')
-rw-r--r--src/abbrev.c4
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))
{