Browse Source

org.el: Backwards compatibility

* org.el (org-cdlatex-environment-indent): Remove cl-prefixes for
  compatibility.
Rasmus 10 years ago
parent
commit
1616e08448
1 changed files with 2 additions and 2 deletions
  1. 2 2
      lisp/org.el

+ 2 - 2
lisp/org.el

@@ -18665,10 +18665,10 @@ environment remains unintended."
 	 ;; environment has been inserted.
 	 (lines (when inserted
 		  (save-excursion
-		    (- (cl-loop while (< beg (point))
+		    (- (loop while (< beg (point))
 				with x = 0
 				do (forward-line -1)
-				(cl-incf x)
+				(incf x)
 				finally return x)
 		       (if (progn (goto-char beg)
 				  (and (progn (skip-chars-forward " \t") (eolp))