mirror of
git://git.sv.gnu.org/emacs.git
synced 2025-12-08 15:30:40 -08:00
Fixes: debbugs:11380
* make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and byte-code forms.
This commit is contained in:
parent
c93b886f95
commit
a706a3bca4
2 changed files with 6 additions and 1 deletions
|
|
@ -1,3 +1,8 @@
|
||||||
|
2012-04-29 Andreas Schwab <schwab@linux-m68k.org>
|
||||||
|
|
||||||
|
* make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and
|
||||||
|
byte-code forms. (Bug#11380)
|
||||||
|
|
||||||
2012-04-20 Chong Yidong <cyd@gnu.org>
|
2012-04-20 Chong Yidong <cyd@gnu.org>
|
||||||
|
|
||||||
* emacsclient.c (decode_options): Move -t -n corner case handling
|
* emacsclient.c (decode_options): Move -t -n corner case handling
|
||||||
|
|
|
||||||
|
|
@ -1361,7 +1361,7 @@ scan_lisp_file (const char *filename, const char *mode)
|
||||||
#ifdef DEBUG
|
#ifdef DEBUG
|
||||||
else if (! strcmp (buffer, "if")
|
else if (! strcmp (buffer, "if")
|
||||||
|| ! strcmp (buffer, "byte-code"))
|
|| ! strcmp (buffer, "byte-code"))
|
||||||
;
|
continue;
|
||||||
#endif
|
#endif
|
||||||
|
|
||||||
else
|
else
|
||||||
|
|
|
||||||
Loading…
Add table
Add a link
Reference in a new issue