summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2011-05-28 17:22:48 +0200
committerNicolas Goaziou <n.goaziou@gmail.com>2011-05-28 17:22:48 +0200
commit6c2737ddbd8a8dcbe70ed1589e25cc1bdf1135f6 (patch)
tree265dfd5aca105d91dd25b868657b481e8e0fc7d0
parentddc24673877da5f7d82375fb10b8cc238e2ff6a7 (diff)
downloadorg-mode-6c2737ddbd8a8dcbe70ed1589e25cc1bdf1135f6.tar.gz
Fix code typo
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index a91b63d..9a57ff3 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -17815,7 +17815,7 @@ argument ARG, change each line in region into an item."
(if (org-region-active-p)
(setq beg (funcall skip-blanks (region-beginning))
end (copy-marker (region-end)))
- (setq beg (funcall skip-blank (point-at-bol))
+ (setq beg (funcall skip-blanks (point-at-bol))
end (copy-marker (point-at-eol))))
;; Depending on the starting line, choose an action on the text
;; between BEG and END.