diff options
| author | Paul Eggert | 2011-03-16 14:47:59 -0700 |
|---|---|---|
| committer | Paul Eggert | 2011-03-16 14:47:59 -0700 |
| commit | 4f63c6bb76e662fe8025969e0e16ab8906e0ba22 (patch) | |
| tree | 969ee5037a44fb4885a8b7bac78eb8b966871c90 /src/syntax.c | |
| parent | 01f44d5a68abccff781109300abf0616949b99c5 (diff) | |
| download | emacs-4f63c6bb76e662fe8025969e0e16ab8906e0ba22.tar.gz emacs-4f63c6bb76e662fe8025969e0e16ab8906e0ba22.zip | |
* syntax.c (back_comment, skip_chars): Mark vars as initialized.
Diffstat (limited to 'src/syntax.c')
| -rw-r--r-- | src/syntax.c | 4 |
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; |