summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorNicolas Goaziou <n.goaziou@gmail.com>2012-11-28 14:05:39 +0100
committerNicolas Goaziou <n.goaziou@gmail.com>2012-11-28 14:05:39 +0100
commit6859b352a45b248ca6d73ef630a9ba8ac38fbad5 (patch)
treec60050205744d5d176630239c0760597a18625e0
parentdbdbf53cd69c2bcbab1cbef8c84ed5196de95885 (diff)
parent97508e72dda9b26a0412c4339bc6b32709e58add (diff)
downloadorg-mode-6859b352a45b248ca6d73ef630a9ba8ac38fbad5.tar.gz
Merge branch 'maint'
-rw-r--r--testing/lisp/test-org.el6
1 files changed, 3 insertions, 3 deletions
diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el
index 2dd6e81..aa4bae9 100644
--- a/testing/lisp/test-org.el
+++ b/testing/lisp/test-org.el
@@ -511,20 +511,20 @@ http://article.gmane.org/gmane.emacs.orgmode/21459/"
(eolp))))
;; At an headline with special movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e t))
(and (progn (org-end-of-line) (looking-at " :tag:"))
(progn (org-end-of-line) (eolp))
(progn (org-end-of-line) (looking-at " :tag:"))))))
;; At an headline without special movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e nil))
(and (progn (org-end-of-line) (eolp))
(progn (org-end-of-line) (eolp))))))
;; At an headline, with reversed movement.
(should
- (org-test-with-temp-text "* Headline :tag:"
+ (org-test-with-temp-text "* Headline :tag:\n"
(let ((org-special-ctrl-a/e 'reversed)
(this-command last-command))
(and (progn (org-end-of-line) (eolp))