0
0
Fork 1
mirror of https://git.savannah.gnu.org/git/emacs/org-mode.git synced 2024-09-29 18:36:26 +00:00

org.el: Backwards compatibility

* org.el (org-cdlatex-environment-indent): Remove cl-prefixes for
  compatibility.
This commit is contained in:
Rasmus 2015-02-20 01:35:34 +01:00
parent 507d2aae0f
commit 1616e08448

View file

@ -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))