aboutsummaryrefslogtreecommitdiffstats
path: root/lib-src
diff options
context:
space:
mode:
authorPaul Eggert2013-05-05 20:32:19 -0700
committerPaul Eggert2013-05-05 20:32:19 -0700
commit8c13f3d62856ced64f25fbeedba5c121457d5e76 (patch)
tree870f4c684771623c7cd59b3847ff3d607032be7a /lib-src
parent1e2c18dfbdb60f603393287a487c36c511864463 (diff)
downloademacs-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/ChangeLog5
-rw-r--r--lib-src/make-docfile.c3
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 @@
12013-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
12013-03-26 Eli Zaretskii <eliz@gnu.org> 62013-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);