diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/data.c b/src/data.c index 761159ec066..c9ece8d142c 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -606,7 +606,7 @@ Return SYMBOL. */) | |||
| 606 | register Lisp_Object symbol; | 606 | register Lisp_Object symbol; |
| 607 | { | 607 | { |
| 608 | CHECK_SYMBOL (symbol); | 608 | CHECK_SYMBOL (symbol); |
| 609 | if (XSYMBOL (symbol)->constant) | 609 | if (SYMBOL_CONSTANT_P (symbol)) |
| 610 | xsignal1 (Qsetting_constant, symbol); | 610 | xsignal1 (Qsetting_constant, symbol); |
| 611 | Fset (symbol, Qunbound); | 611 | Fset (symbol, Qunbound); |
| 612 | return symbol; | 612 | return symbol; |