summaryrefslogtreecommitdiff
path: root/contrib/lisp/org-toc.el
diff options
context:
space:
mode:
authorSébastien Delafond <sdelafond@gmail.com>2015-08-25 12:27:35 +0200
committerSébastien Delafond <sdelafond@gmail.com>2015-08-25 14:22:00 +0200
commit97c50971465ff7f49ef2f57b3c09060939778727 (patch)
tree3da0aef5dd29bbe67a6e85b5a9a76b9b60b75d13 /contrib/lisp/org-toc.el
parenta3a85ee67f2216f1d3c91e84474ba492ae9e1046 (diff)
Imported Upstream version 8.3.1
Diffstat (limited to 'contrib/lisp/org-toc.el')
-rw-r--r--contrib/lisp/org-toc.el4
1 files changed, 2 insertions, 2 deletions
diff --git a/contrib/lisp/org-toc.el b/contrib/lisp/org-toc.el
index 255b79e..622cc02 100644
--- a/contrib/lisp/org-toc.el
+++ b/contrib/lisp/org-toc.el
@@ -338,7 +338,7 @@ If DELETE is non-nil, delete other windows when in the Org buffer."
(interactive)
(condition-case nil
(outline-forward-same-level 1)
- (error (message "No next headline at this level.")))
+ (error (message "No next headline at this level")))
(if org-toc-info-mode (org-toc-info))
(if org-toc-follow-mode (org-toc-goto)))
@@ -347,7 +347,7 @@ If DELETE is non-nil, delete other windows when in the Org buffer."
(interactive)
(condition-case nil
(outline-backward-same-level 1)
- (error (message "No previous headline at this level.")))
+ (error (message "No previous headline at this level")))
(if org-toc-info-mode (org-toc-info))
(if org-toc-follow-mode (org-toc-goto)))