From 97508e72dda9b26a0412c4339bc6b32709e58add Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 28 Nov 2012 14:04:21 +0100 Subject: [PATCH] test-org: Attempt to fix failing test on 24.3 pre-release --- testing/lisp/test-org.el | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/testing/lisp/test-org.el b/testing/lisp/test-org.el index 3e3888669..50a000b50 100644 --- a/testing/lisp/test-org.el +++ b/testing/lisp/test-org.el @@ -458,20 +458,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)) -- 2.11.4.GIT