diff options
author | Karl Heuer <kwzh@gnu.org> | 1994-10-04 12:14:16 +0000 |
---|---|---|
committer | Karl Heuer <kwzh@gnu.org> | 1994-10-04 12:14:16 +0000 |
commit | bff4ec1f9c4b2718849ad41a9404e5cfc68694a9 (patch) | |
tree | ba4bc7bc53206d165f51bda07afc20045536712d /src/keymap.c | |
parent | 18cd2eebb213f405727e5c715bf71cb9a6835c86 (diff) | |
download | emacs-bff4ec1f9c4b2718849ad41a9404e5cfc68694a9.tar.gz |
(synkey, Fdescribe_bindings, describe_command): Use new accessor macros
instead of calling XSET directly.
Diffstat (limited to 'src/keymap.c')
-rw-r--r-- | src/keymap.c | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/src/keymap.c b/src/keymap.c index 13b8b262237..a750972575c 100644 --- a/src/keymap.c +++ b/src/keymap.c @@ -163,7 +163,7 @@ synkey (frommap, fromchar, tomap, tochar) int fromchar, tochar; { Lisp_Object v, c; - XSET (v, Lisp_Vector, tomap); + XSETVECTOR (v, tomap); XFASTINT (c) = tochar; frommap->contents[fromchar] = Fcons (v, c); } @@ -1820,7 +1820,7 @@ then we display only bindings that start with that prefix.") Lisp_Object prefix; { register Lisp_Object thisbuf; - XSET (thisbuf, Lisp_Buffer, current_buffer); + XSETBUFFER (thisbuf, current_buffer); internal_with_output_to_temp_buffer ("*Help*", describe_buffer_bindings, Fcons (thisbuf, prefix)); @@ -2071,7 +2071,7 @@ describe_command (definition) if (SYMBOLP (definition)) { - XSET (tem1, Lisp_String, XSYMBOL (definition)->name); + XSETSTRING (tem1, XSYMBOL (definition)->name); insert1 (tem1); insert_string ("\n"); } |