From cf77de2c3ada5ab1366e5c660c2cb7d09da8a686 Mon Sep 17 00:00:00 2001 From: Nicolas Goaziou Date: Wed, 21 Jan 2015 23:44:21 +0100 Subject: [PATCH] Fix docstrings * lisp/org.el (org-next-visible-heading, org-previous-visible-heading): Shorten summary. Fix typo. --- lisp/org.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index a92804725..249582bdc 100755 --- a/lisp/org.el +++ b/lisp/org.el @@ -24087,21 +24087,21 @@ Stop at the first and last subheadings of a superior heading." (org-forward-heading-same-level (if arg (- arg) -1) invisible-ok)) (defun org-next-visible-heading (arg) - "Move to the next visible heading, respecting Org mode-specific structures. + "Move to the next visible heading. This function wraps `outline-next-visible-heading' with `org-with-limited-levels' in order to skip over inline tasks and -resepct customization of `org-odd-levels-only'." +respect customization of `org-odd-levels-only'." (interactive "p") (org-with-limited-levels (outline-next-visible-heading arg))) (defun org-previous-visible-heading (arg) - "Move to the next visible heading, respecting Org mode-specific structures. + "Move to the next visible heading. This function wraps `outline-previous-visible-heading' with `org-with-limited-levels' in order to skip over inline tasks and -resepct customization of `org-odd-levels-only'." +respect customization of `org-odd-levels-only'." (interactive "p") (org-with-limited-levels (outline-previous-visible-heading arg))) -- 2.11.4.GIT