Bind forgotten local variable.

This commit is contained in:
Carsten Dominik 2008-11-20 17:51:51 +01:00
parent f0e16e86e9
commit 998acc2985
1 changed files with 3 additions and 1 deletions

View File

@ -699,7 +699,9 @@ Also, fix the indentation."
(defun org-shift-item-indentation (delta)
"Shift the indentation in current item by DELTA."
(save-excursion
(let ((beg (point-at-bol)) (end (progn (org-end-of-item) (point))))
(let ((beg (point-at-bol))
(end (progn (org-end-of-item) (point)))
i)
(goto-char end)
(beginning-of-line 0)
(while (> (point) beg)