summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--src/xdisp.c2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/xdisp.c b/src/xdisp.c
index 7649b16e974..aa75fcaf77c 100644
--- a/src/xdisp.c
+++ b/src/xdisp.c
@@ -20951,7 +20951,7 @@ should_produce_line_number (struct it *it)
property, disable line numbers for this row. For ZV, we need to
use a special algorithm that only supports empty overlays at that
point, because get-char-property always returns nil for ZV. */
- Lisp_Object val = Qnil;
+ Lisp_Object val;
if (IT_CHARPOS (*it) >= ZV)
val = disable_line_numbers_overlay_at_eob ();
else