From: Ken Raeburn Date: Mon, 20 May 2002 08:05:26 +0000 (+0000) Subject: * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of X-Git-Tag: ttn-vms-21-2-B4~14974 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f6620ee2b00b7c6210517b8ddcb60a2f6e038c5b;p=emacs.git * editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of XSYMBOL and name field. --- diff --git a/src/editfns.c b/src/editfns.c index 86129c63698..a2e2aaf269e 100644 --- a/src/editfns.c +++ b/src/editfns.c @@ -3213,7 +3213,7 @@ usage: (format STRING &rest OBJECTS) */) { /* Use a temp var to avoid problems when ENABLE_CHECKING is turned on. */ - struct Lisp_String *t = XSYMBOL (args[n])->name; + struct Lisp_String *t = XSTRING (SYMBOL_NAME (args[n])); XSETSTRING (args[n], t); if (STRING_MULTIBYTE (args[n]) && ! multibyte) {