diff options
| author | Eli Zaretskii | 2013-05-15 19:15:07 +0300 |
|---|---|---|
| committer | Eli Zaretskii | 2013-05-15 19:15:07 +0300 |
| commit | d14365f9411ab4b20db6c455aa9cf24ce6a0bcb1 (patch) | |
| tree | f547c3f203c903b118348061eb0fd2359c94d324 /lib-src | |
| parent | f94b5742a3e9bc7114c6e2cd85a2371381cba4d3 (diff) | |
| parent | e3772e9833f971a450562350dc233bf00be7c5eb (diff) | |
| download | emacs-d14365f9411ab4b20db6c455aa9cf24ce6a0bcb1.tar.gz emacs-d14365f9411ab4b20db6c455aa9cf24ce6a0bcb1.zip | |
Merge from trunk, configury not fixed yet.
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); |