diff options
| author | Ken Raeburn | 2002-05-20 08:05:26 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-05-20 08:05:26 +0000 |
| commit | f6620ee2b00b7c6210517b8ddcb60a2f6e038c5b (patch) | |
| tree | 3bbd9049578c9028ba59582f93059aac5bf34bd9 /src | |
| parent | 84023177dc31e8d028f30439204ad804cac24cb3 (diff) | |
| download | emacs-f6620ee2b00b7c6210517b8ddcb60a2f6e038c5b.tar.gz emacs-f6620ee2b00b7c6210517b8ddcb60a2f6e038c5b.zip | |
* editfns.c (Fformat): Use SYMBOL_NAME and XSTRING instead of
XSYMBOL and name field.
Diffstat (limited to 'src')
| -rw-r--r-- | src/editfns.c | 2 |
1 files changed, 1 insertions, 1 deletions
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) */) | |||
| 3213 | { | 3213 | { |
| 3214 | /* Use a temp var to avoid problems when ENABLE_CHECKING | 3214 | /* Use a temp var to avoid problems when ENABLE_CHECKING |
| 3215 | is turned on. */ | 3215 | is turned on. */ |
| 3216 | struct Lisp_String *t = XSYMBOL (args[n])->name; | 3216 | struct Lisp_String *t = XSTRING (SYMBOL_NAME (args[n])); |
| 3217 | XSETSTRING (args[n], t); | 3217 | XSETSTRING (args[n], t); |
| 3218 | if (STRING_MULTIBYTE (args[n]) && ! multibyte) | 3218 | if (STRING_MULTIBYTE (args[n]) && ! multibyte) |
| 3219 | { | 3219 | { |