diff options
| author | Mattias EngdegÄrd | 2022-06-02 15:42:40 +0200 |
|---|---|---|
| committer | Mattias EngdegÄrd | 2022-06-02 16:57:02 +0200 |
| commit | 4bacd2a64575ccd55fd9ef8b4648f440243d597a (patch) | |
| tree | 2aafefa91cd4228487abe529ec34c04db7447d34 | |
| parent | ba7c564bfe0eec84c845d3c7eef7785187433f90 (diff) | |
| download | emacs-4bacd2a64575ccd55fd9ef8b4648f440243d597a.tar.gz emacs-4bacd2a64575ccd55fd9ef8b4648f440243d597a.zip | |
* src/lread.c (skip_lazy_string): Fix uninitialised variable.
| -rw-r--r-- | src/lread.c | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/lread.c b/src/lread.c index 158ac360423..52fc0fff307 100644 --- a/src/lread.c +++ b/src/lread.c | |||
| @@ -3480,7 +3480,7 @@ skip_lazy_string (Lisp_Object readcharfun) | |||
| 3480 | 3480 | ||
| 3481 | /* Copy that many bytes into saved_doc_string. */ | 3481 | /* Copy that many bytes into saved_doc_string. */ |
| 3482 | ptrdiff_t i = 0; | 3482 | ptrdiff_t i = 0; |
| 3483 | int c; | 3483 | int c = 0; |
| 3484 | for (int n = min (nskip, infile->lookahead); n > 0; n--) | 3484 | for (int n = min (nskip, infile->lookahead); n > 0; n--) |
| 3485 | saved_doc_string[i++] = c = infile->buf[--infile->lookahead]; | 3485 | saved_doc_string[i++] = c = infile->buf[--infile->lookahead]; |
| 3486 | block_input (); | 3486 | block_input (); |