diff options
| author | Paul Eggert | 2013-05-05 20:32:19 -0700 |
|---|---|---|
| committer | Paul Eggert | 2013-05-05 20:32:19 -0700 |
| commit | 8c13f3d62856ced64f25fbeedba5c121457d5e76 (patch) | |
| tree | 870f4c684771623c7cd59b3847ff3d607032be7a /lib-src | |
| parent | 1e2c18dfbdb60f603393287a487c36c511864463 (diff) | |
| download | emacs-8c13f3d62856ced64f25fbeedba5c121457d5e76.tar.gz emacs-8c13f3d62856ced64f25fbeedba5c121457d5e76.zip | |
* make-docfile.c (search_lisp_doc_at_eol) [DEBUG]: Fix typo,
by removing references to no-longer-existing locals.
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 3 |
2 files changed, 6 insertions, 2 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index 2089a50d47b..bd7618e0a82 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2013-05-06 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | * make-docfile.c (search_lisp_doc_at_eol) [DEBUG]: Fix typo, | ||
| 4 | by removing references to no-longer-existing locals. | ||
| 5 | |||
| 1 | 2013-03-26 Eli Zaretskii <eliz@gnu.org> | 6 | 2013-03-26 Eli Zaretskii <eliz@gnu.org> |
| 2 | 7 | ||
| 3 | Fix incompatibilities between MinGW.org and MinGW64 headers. | 8 | Fix incompatibilities between MinGW.org and MinGW64 headers. |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 68e5279fd15..8fa70dd430e 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -1090,8 +1090,7 @@ search_lisp_doc_at_eol (FILE *infile) | |||
| 1090 | if (c2 != '"' || c1 != '\\') | 1090 | if (c2 != '"' || c1 != '\\') |
| 1091 | { | 1091 | { |
| 1092 | #ifdef DEBUG | 1092 | #ifdef DEBUG |
| 1093 | fprintf (stderr, "## non-docstring in %s (%s)\n", | 1093 | fprintf (stderr, "## non-docstring found\n"); |
| 1094 | buffer, filename); | ||
| 1095 | #endif | 1094 | #endif |
| 1096 | if (c != EOF) | 1095 | if (c != EOF) |
| 1097 | ungetc (c, infile); | 1096 | ungetc (c, infile); |