[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Emacs-diffs] /srv/bzr/emacs/trunk r108061: Fixes: debbugs:11380
From: |
Andreas Schwab |
Subject: |
[Emacs-diffs] /srv/bzr/emacs/trunk r108061: Fixes: debbugs:11380 |
Date: |
Sun, 29 Apr 2012 22:05:44 +0200 |
User-agent: |
Bazaar (2.3.1) |
------------------------------------------------------------
revno: 108061
committer: Andreas Schwab <address@hidden>
branch nick: emacs
timestamp: Sun 2012-04-29 22:05:44 +0200
message:
Fixes: debbugs:11380
* make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and
byte-code forms.
modified:
lib-src/ChangeLog
lib-src/make-docfile.c
=== modified file 'lib-src/ChangeLog'
--- a/lib-src/ChangeLog 2012-04-20 10:37:57 +0000
+++ b/lib-src/ChangeLog 2012-04-29 20:05:44 +0000
@@ -1,3 +1,8 @@
+2012-04-29 Andreas Schwab <address@hidden>
+
+ * make-docfile.c (scan_lisp_file) [DEBUG]: Also skip if and
+ byte-code forms. (Bug#11380)
+
2012-04-20 Chong Yidong <address@hidden>
* emacsclient.c (decode_options): Move -t -n corner case handling
=== modified file 'lib-src/make-docfile.c'
--- a/lib-src/make-docfile.c 2012-01-19 07:21:25 +0000
+++ b/lib-src/make-docfile.c 2012-04-29 20:05:44 +0000
@@ -1361,7 +1361,7 @@
#ifdef DEBUG
else if (! strcmp (buffer, "if")
|| ! strcmp (buffer, "byte-code"))
- ;
+ continue;
#endif
else
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [Emacs-diffs] /srv/bzr/emacs/trunk r108061: Fixes: debbugs:11380,
Andreas Schwab <=