diff options
| author | Ken Raeburn | 2002-05-20 08:04:58 +0000 |
|---|---|---|
| committer | Ken Raeburn | 2002-05-20 08:04:58 +0000 |
| commit | 5b784cc92ca5fb5f44a9c9e33c3202fd1bf7f263 (patch) | |
| tree | 2cad7147a487687a27187ed10763e9aeaf5ded80 /src/buffer.c | |
| parent | 8fe5665d5a21b8b3b43db38ca5aced02e14940cf (diff) | |
| download | emacs-5b784cc92ca5fb5f44a9c9e33c3202fd1bf7f263.tar.gz emacs-5b784cc92ca5fb5f44a9c9e33c3202fd1bf7f263.zip | |
* buffer.c (buffer_slot_type_mismatch): Use XSTRING and
SYMBOL_NAME instead of XSYMBOL and name field.
Diffstat (limited to 'src/buffer.c')
| -rw-r--r-- | src/buffer.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/buffer.c b/src/buffer.c index 83957ca0ad5..27ad62366b9 100644 --- a/src/buffer.c +++ b/src/buffer.c | |||
| @@ -4279,7 +4279,7 @@ buffer_slot_type_mismatch (offset) | |||
| 4279 | 4279 | ||
| 4280 | sym = PER_BUFFER_SYMBOL (offset); | 4280 | sym = PER_BUFFER_SYMBOL (offset); |
| 4281 | error ("Only %s should be stored in the buffer-local variable %s", | 4281 | error ("Only %s should be stored in the buffer-local variable %s", |
| 4282 | type_name, XSYMBOL (sym)->name->data); | 4282 | type_name, XSTRING (SYMBOL_NAME (sym))->data); |
| 4283 | } | 4283 | } |
| 4284 | 4284 | ||
| 4285 | 4285 | ||