From mboxrd@z Thu Jan 1 00:00:00 1970 From: Jason Furtney Subject: [PATCH] org.el: Fix typo in `org-previous-visible-heading' documentation string Date: Sat, 20 Feb 2016 20:29:46 -0600 Message-ID: Mime-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:48243) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXJmO-0003Ii-A4 for emacs-orgmode@gnu.org; Sat, 20 Feb 2016 21:29:49 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1aXJmN-0000Mu-Hl for emacs-orgmode@gnu.org; Sat, 20 Feb 2016 21:29:48 -0500 Received: from mail-vk0-x22e.google.com ([2607:f8b0:400c:c05::22e]:35780) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1aXJmN-0000Mb-Bt for emacs-orgmode@gnu.org; Sat, 20 Feb 2016 21:29:47 -0500 Received: by mail-vk0-x22e.google.com with SMTP id e6so104279173vkh.2 for ; Sat, 20 Feb 2016 18:29:47 -0800 (PST) List-Id: "General discussions about Org-mode." List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , Errors-To: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org Sender: emacs-orgmode-bounces+geo-emacs-orgmode=m.gmane.org@gnu.org To: emacs-orgmode@gnu.org Hi, Here is a small patch to fix a typo. Thanks. >From d931a64e0482cddcef9ba5490994f24ab886e4f1 Mon Sep 17 00:00:00 2001 From: Jason Furtney Date: Sat, 20 Feb 2016 20:14:22 -0600 Subject: [PATCH] org.el: Fix typo in `org-previous-visible-heading' documentation string * lisp/org.el (org-previous-visible-heading): change next to previous. TINYCHANGE --- lisp/org.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org.el b/lisp/org.el index 6cb13a8..3c98ece 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -24345,7 +24345,7 @@ respect customization of `org-odd-levels-only'." (outline-next-visible-heading arg))) (defun org-previous-visible-heading (arg) - "Move to the next visible heading. + "Move to the previous visible heading. This function wraps `outline-previous-visible-heading' with `org-with-limited-levels' in order to skip over inline tasks and -- 1.9.5.msysgit.1