aboutsummaryrefslogtreecommitdiffstats
path: root/src/data.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/data.c')
-rw-r--r--src/data.c12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/data.c b/src/data.c
index 2574cbbd764..71da916ae74 100644
--- a/src/data.c
+++ b/src/data.c
@@ -1614,8 +1614,8 @@ The function `default-value' gets the default value and `set-default' sets it.
1614{ 1614{
1615 struct Lisp_Symbol *sym; 1615 struct Lisp_Symbol *sym;
1616 struct Lisp_Buffer_Local_Value *blv = NULL; 1616 struct Lisp_Buffer_Local_Value *blv = NULL;
1617 union Lisp_Val_Fwd valcontents IF_LINT (= {LISP_INITIALLY_ZERO}); 1617 union Lisp_Val_Fwd valcontents;
1618 bool forwarded IF_LINT (= 0); 1618 bool forwarded;
1619 1619
1620 CHECK_SYMBOL (variable); 1620 CHECK_SYMBOL (variable);
1621 sym = XSYMBOL (variable); 1621 sym = XSYMBOL (variable);
@@ -1692,8 +1692,8 @@ Instead, use `add-hook' and specify t for the LOCAL argument. */)
1692 (Lisp_Object variable) 1692 (Lisp_Object variable)
1693{ 1693{
1694 Lisp_Object tem; 1694 Lisp_Object tem;
1695 bool forwarded IF_LINT (= 0); 1695 bool forwarded;
1696 union Lisp_Val_Fwd valcontents IF_LINT (= {LISP_INITIALLY_ZERO}); 1696 union Lisp_Val_Fwd valcontents;
1697 struct Lisp_Symbol *sym; 1697 struct Lisp_Symbol *sym;
1698 struct Lisp_Buffer_Local_Value *blv = NULL; 1698 struct Lisp_Buffer_Local_Value *blv = NULL;
1699 1699
@@ -2458,7 +2458,7 @@ uintmax_t
2458cons_to_unsigned (Lisp_Object c, uintmax_t max) 2458cons_to_unsigned (Lisp_Object c, uintmax_t max)
2459{ 2459{
2460 bool valid = 0; 2460 bool valid = 0;
2461 uintmax_t val IF_LINT (= 0); 2461 uintmax_t val;
2462 if (INTEGERP (c)) 2462 if (INTEGERP (c))
2463 { 2463 {
2464 valid = 0 <= XINT (c); 2464 valid = 0 <= XINT (c);
@@ -2511,7 +2511,7 @@ intmax_t
2511cons_to_signed (Lisp_Object c, intmax_t min, intmax_t max) 2511cons_to_signed (Lisp_Object c, intmax_t min, intmax_t max)
2512{ 2512{
2513 bool valid = 0; 2513 bool valid = 0;
2514 intmax_t val IF_LINT (= 0); 2514 intmax_t val;
2515 if (INTEGERP (c)) 2515 if (INTEGERP (c))
2516 { 2516 {
2517 val = XINT (c); 2517 val = XINT (c);