* nxml/nxml-util.el (nxml-debug-clear-inside): Use cl-loop rather than loop.
This commit is contained in:
parent
f21407b2d5
commit
8201a87ea9
2 changed files with 4 additions and 1 deletions
|
@ -1,5 +1,8 @@
|
|||
2013-08-29 Glenn Morris <rgm@gnu.org>
|
||||
|
||||
* nxml/nxml-util.el (nxml-debug-clear-inside):
|
||||
Use cl-loop rather than loop.
|
||||
|
||||
* net/eww.el (eww-mode-map): Lower-case menu bar entries look bad.
|
||||
|
||||
* progmodes/sh-script.el (sh-builtins) <bash>: Add some bash4-isms.
|
||||
|
|
|
@ -45,7 +45,7 @@
|
|||
|
||||
(defmacro nxml-debug-clear-inside (start end)
|
||||
(when nxml-debug
|
||||
`(loop for overlay in (overlays-in ,start ,end)
|
||||
`(cl-loop for overlay in (overlays-in ,start ,end)
|
||||
if (overlay-get overlay 'nxml-inside-debug)
|
||||
do (delete-overlay overlay)
|
||||
finally (nxml-debug-change "nxml-clear-inside" ,start ,end))))
|
||||
|
|
Loading…
Add table
Reference in a new issue