]> git.eshelyaron.com Git - emacs.git/commitdiff
* nxml/nxml-util.el (nxml-debug-clear-inside): Use cl-loop rather than loop.
authorGlenn Morris <rgm@gnu.org>
Thu, 29 Aug 2013 01:20:05 +0000 (21:20 -0400)
committerGlenn Morris <rgm@gnu.org>
Thu, 29 Aug 2013 01:20:05 +0000 (21:20 -0400)
lisp/ChangeLog
lisp/nxml/nxml-util.el

index 2778c32decc6894e90dcd75cf777b70be351b05d..e9fab7f77c2152b46917fc25695f82362de7ff4d 100644 (file)
@@ -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.
index 75479160cbb1b846af3da18c2ce882dfe8bfb657..c410aa12c8329f4f4b19ceace81c38f3b6b79381 100644 (file)
@@ -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))))