From 998acc298514d87e3a10c616b73c50ae6f7a288c Mon Sep 17 00:00:00 2001 From: Carsten Dominik Date: Thu, 20 Nov 2008 17:51:51 +0100 Subject: [PATCH] Bind forgotten local variable. --- lisp/org-list.el | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/lisp/org-list.el b/lisp/org-list.el index 24ef64411..95fc56e2b 100644 --- a/lisp/org-list.el +++ b/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)