diff options
| author | Karl Heuer | 1994-10-04 15:28:15 +0000 |
|---|---|---|
| committer | Karl Heuer | 1994-10-04 15:28:15 +0000 |
| commit | 2a43e2bcc4d1826eed333e5507d2d8fef03dfae5 (patch) | |
| tree | 5faa14251b47a4f8bb75c0bc3f936f9ade58b41e | |
| parent | 69abbfff399e657e90e67759549d1990b7d2d416 (diff) | |
| download | emacs-2a43e2bcc4d1826eed333e5507d2d8fef03dfae5.tar.gz emacs-2a43e2bcc4d1826eed333e5507d2d8fef03dfae5.zip | |
(Fexpand_abbrev): Don't use XFASTINT as an lvalue.
| -rw-r--r-- | src/abbrev.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/abbrev.c b/src/abbrev.c index ea7b619254a..244d530c464 100644 --- a/src/abbrev.c +++ b/src/abbrev.c | |||
| @@ -271,7 +271,7 @@ Returns t if expansion took place.") | |||
| 271 | if (VECTORP (current_buffer->abbrev_table)) | 271 | if (VECTORP (current_buffer->abbrev_table)) |
| 272 | sym = oblookup (current_buffer->abbrev_table, buffer, p - buffer); | 272 | sym = oblookup (current_buffer->abbrev_table, buffer, p - buffer); |
| 273 | else | 273 | else |
| 274 | XFASTINT (sym) = 0; | 274 | XSETFASTINT (sym, 0); |
| 275 | if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value)) | 275 | if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value)) |
| 276 | sym = oblookup (Vglobal_abbrev_table, buffer, p - buffer); | 276 | sym = oblookup (Vglobal_abbrev_table, buffer, p - buffer); |
| 277 | if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value)) | 277 | if (INTEGERP (sym) || NILP (XSYMBOL (sym)->value)) |