瀏覽代碼

Bind forgotten local variable.

Carsten Dominik 16 年之前
父節點
當前提交
998acc2985
共有 1 個文件被更改,包括 3 次插入1 次删除
  1. 3 1
      lisp/org-list.el

+ 3 - 1
lisp/org-list.el

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