diff options
Diffstat (limited to 'lib-src')
| -rw-r--r-- | lib-src/ChangeLog | 5 | ||||
| -rw-r--r-- | lib-src/make-docfile.c | 2 |
2 files changed, 6 insertions, 1 deletions
diff --git a/lib-src/ChangeLog b/lib-src/ChangeLog index fc6d905cfb2..d225b77f156 100644 --- a/lib-src/ChangeLog +++ b/lib-src/ChangeLog | |||
| @@ -1,3 +1,8 @@ | |||
| 1 | 2012-04-29 Andreas Schwab <schwab@linux-m68k.org> | ||
| 2 | |||
| 3 | * make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and | ||
| 4 | byte-code forms. (Bug#11380) | ||
| 5 | |||
| 1 | 2012-04-20 Chong Yidong <cyd@gnu.org> | 6 | 2012-04-20 Chong Yidong <cyd@gnu.org> |
| 2 | 7 | ||
| 3 | * emacsclient.c (decode_options): Move -t -n corner case handling | 8 | * emacsclient.c (decode_options): Move -t -n corner case handling |
diff --git a/lib-src/make-docfile.c b/lib-src/make-docfile.c index 3e79cae4f41..b33b13f34ce 100644 --- a/lib-src/make-docfile.c +++ b/lib-src/make-docfile.c | |||
| @@ -1361,7 +1361,7 @@ scan_lisp_file (const char *filename, const char *mode) | |||
| 1361 | #ifdef DEBUG | 1361 | #ifdef DEBUG |
| 1362 | else if (! strcmp (buffer, "if") | 1362 | else if (! strcmp (buffer, "if") |
| 1363 | || ! strcmp (buffer, "byte-code")) | 1363 | || ! strcmp (buffer, "byte-code")) |
| 1364 | ; | 1364 | continue; |
| 1365 | #endif | 1365 | #endif |
| 1366 | 1366 | ||
| 1367 | else | 1367 | else |