aboutsummaryrefslogtreecommitdiffstats
path: root/src/syntax.c
diff options
context:
space:
mode:
Diffstat (limited to 'src/syntax.c')
-rw-r--r--src/syntax.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/syntax.c b/src/syntax.c
index 1a615d735e4..c1442c396c1 100644
--- a/src/syntax.c
+++ b/src/syntax.c
@@ -513,7 +513,7 @@ back_comment (EMACS_INT from, EMACS_INT from_byte, EMACS_INT stop, int comnested
513 EMACS_INT comment_end = from; 513 EMACS_INT comment_end = from;
514 EMACS_INT comment_end_byte = from_byte; 514 EMACS_INT comment_end_byte = from_byte;
515 EMACS_INT comstart_pos = 0; 515 EMACS_INT comstart_pos = 0;
516 EMACS_INT comstart_byte; 516 EMACS_INT comstart_byte IF_LINT (= 0);
517 /* Place where the containing defun starts, 517 /* Place where the containing defun starts,
518 or 0 if we didn't come across it yet. */ 518 or 0 if we didn't come across it yet. */
519 EMACS_INT defun_start = 0; 519 EMACS_INT defun_start = 0;
@@ -1421,7 +1421,7 @@ skip_chars (int forwardp, Lisp_Object string, Lisp_Object lim, int handle_iso_cl
1421 register unsigned int c; 1421 register unsigned int c;
1422 unsigned char fastmap[0400]; 1422 unsigned char fastmap[0400];
1423 /* Store the ranges of non-ASCII characters. */ 1423 /* Store the ranges of non-ASCII characters. */
1424 int *char_ranges; 1424 int *char_ranges IF_LINT (= NULL);
1425 int n_char_ranges = 0; 1425 int n_char_ranges = 0;
1426 int negate = 0; 1426 int negate = 0;
1427 register EMACS_INT i, i_byte; 1427 register EMACS_INT i, i_byte;