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 r108118: * lisp/progmodes/hideif.e


From: Glenn Morris
Subject: [Emacs-diffs] /srv/bzr/emacs/emacs-24 r108118: * lisp/progmodes/hideif.el (hif-compress-define-list): Fix typo. (tiny change)
Date: Wed, 22 Aug 2012 00:17:52 -0700
User-agent: Bazaar (2.5.0)

------------------------------------------------------------
revno: 108118
fixes bug: http://debbugs.gnu.org/11951
author: Jeremy Moore <address@hidden>
committer: Glenn Morris <address@hidden>
branch nick: emacs-24
timestamp: Wed 2012-08-22 00:17:52 -0700
message:
  * lisp/progmodes/hideif.el (hif-compress-define-list): Fix typo.  (tiny 
change)
modified:
  lisp/ChangeLog
  lisp/progmodes/hideif.el
=== modified file 'lisp/ChangeLog'
--- a/lisp/ChangeLog    2012-08-20 15:26:46 +0000
+++ b/lisp/ChangeLog    2012-08-22 07:17:52 +0000
@@ -1,3 +1,8 @@
+2012-08-22  Jeremy Moore  <address@hidden>  (tiny change)
+
+       * progmodes/hideif.el (hif-compress-define-list):
+       Fix typo.  (Bug#11951)
+
 2012-08-20  Dan Nicolaescu  <address@hidden>
 
        * progmodes/hideshow.el (hs-block-end-regexp): Restore lost

=== modified file 'lisp/progmodes/hideif.el'
--- a/lisp/progmodes/hideif.el  2012-01-19 07:21:25 +0000
+++ b/lisp/progmodes/hideif.el  2012-08-22 07:17:52 +0000
@@ -1003,7 +1003,7 @@
   "Compress the define list ENV into a list of defined symbols only."
   (let ((new-defs nil))
     (dolist (def env new-defs)
-      (if (hif-lookup (car def)) (push (car env) new-defs)))))
+      (if (hif-lookup (car def)) (push (car def) new-defs)))))
 
 (defun hide-ifdef-set-define-alist (name)
   "Set the association for NAME to `hide-ifdef-env'."


reply via email to

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