diff options
Diffstat (limited to 'src/data.c')
| -rw-r--r-- | src/data.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/data.c b/src/data.c index defcd06a2ed..4449977dbe0 100644 --- a/src/data.c +++ b/src/data.c | |||
| @@ -1500,7 +1500,7 @@ The function `default-value' gets the default value and `set-default' sets it. | |||
| 1500 | { | 1500 | { |
| 1501 | struct Lisp_Symbol *sym; | 1501 | struct Lisp_Symbol *sym; |
| 1502 | struct Lisp_Buffer_Local_Value *blv = NULL; | 1502 | struct Lisp_Buffer_Local_Value *blv = NULL; |
| 1503 | union Lisp_Val_Fwd valcontents IF_LINT (= {0}); | 1503 | union Lisp_Val_Fwd valcontents IF_LINT (= {LISP_INITIALLY_ZERO}); |
| 1504 | int forwarded IF_LINT (= 0); | 1504 | int forwarded IF_LINT (= 0); |
| 1505 | 1505 | ||
| 1506 | CHECK_SYMBOL (variable); | 1506 | CHECK_SYMBOL (variable); |
| @@ -1577,7 +1577,7 @@ Instead, use `add-hook' and specify t for the LOCAL argument. */) | |||
| 1577 | { | 1577 | { |
| 1578 | register Lisp_Object tem; | 1578 | register Lisp_Object tem; |
| 1579 | int forwarded IF_LINT (= 0); | 1579 | int forwarded IF_LINT (= 0); |
| 1580 | union Lisp_Val_Fwd valcontents IF_LINT (= {0}); | 1580 | union Lisp_Val_Fwd valcontents IF_LINT (= {LISP_INITIALLY_ZERO}); |
| 1581 | struct Lisp_Symbol *sym; | 1581 | struct Lisp_Symbol *sym; |
| 1582 | struct Lisp_Buffer_Local_Value *blv = NULL; | 1582 | struct Lisp_Buffer_Local_Value *blv = NULL; |
| 1583 | 1583 | ||