emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] /srv/bzr/emacs/emacs-24 r108061: Fixes: debbugs:11380


From: Andreas Schwab
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108061: Fixes: debbugs:11380
Date: Fri, 02 Nov 2012 01:47:39 -0000
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
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


reply via email to

[Prev in Thread] Current Thread [Next in Thread]