summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBastien Guerry <bzg@altern.org>2013-03-04 07:38:04 +0100
committerBastien Guerry <bzg@altern.org>2013-03-04 07:38:04 +0100
commit6ca7953db56908dac33e337ea09f6f7c940d1c11 (patch)
tree04e30446539a7458a0714e8913ee8f8efbd69def
parent952100a8a1f2d25fd2f3ed5cf517b8cf9c3e28a5 (diff)
downloadorg-mode-6ca7953db56908dac33e337ea09f6f7c940d1c11.tar.gz
org.el (org-show-context): Don't try to fix ellipsis when showing a subtree in agenda
* org.el (org-show-context): Don't try to fix ellipsis when showing a subtree in agenda. Thanks to James Harkins for reporting this.
-rw-r--r--lisp/org.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/org.el b/lisp/org.el
index 07fe834..9cb1fa3 100644
--- a/lisp/org.el
+++ b/lisp/org.el
@@ -13290,7 +13290,7 @@ How much context is shown depends upon the variables
(not (bobp)))
(org-flag-heading nil)
(when siblings-p (org-show-siblings)))))
- (org-fix-ellipsis-at-bol)))
+ (unless (eq key 'agenda) (org-fix-ellipsis-at-bol))))
(defvar org-reveal-start-hook nil
"Hook run before revealing a location.")