* lisp/progmodes/hideif.el (hif-compress-define-list): Fix typo. (tiny change)
Fixes: debbugs:11951
This commit is contained in:
parent
d30aca1b7a
commit
ffe6eaf17d
2 changed files with 6 additions and 1 deletions
|
@ -1,3 +1,8 @@
|
|||
2012-08-22 Jeremy Moore <jmoore@ieee.org> (tiny change)
|
||||
|
||||
* progmodes/hideif.el (hif-compress-define-list):
|
||||
Fix typo. (Bug#11951)
|
||||
|
||||
2012-08-20 Dan Nicolaescu <dann@gnu.org>
|
||||
|
||||
* progmodes/hideshow.el (hs-block-end-regexp): Restore lost
|
||||
|
|
|
@ -1003,7 +1003,7 @@ Return as (TOP . BOTTOM) the extent of ifdef block."
|
|||
"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'."
|
||||
|
|
Loading…
Add table
Reference in a new issue