From mboxrd@z Thu Jan 1 00:00:00 1970 From: Chunyang Xu Subject: Re: [PATCH] org-info: Fix docstring Date: Thu, 15 Dec 2016 03:25:23 +0800 Message-ID: References: Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:36998) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1cHFBJ-0002NW-3s for emacs-orgmode@gnu.org; Wed, 14 Dec 2016 14:25:38 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1cHFBG-0005oz-0W for emacs-orgmode@gnu.org; Wed, 14 Dec 2016 14:25:37 -0500 Received: from smtpbg202.qq.com ([184.105.206.29]:50527) by eggs.gnu.org with esmtps (TLS1.0:DHE_RSA_AES_256_CBC_SHA1:32) (Exim 4.71) (envelope-from ) id 1cHFBF-0005oL-Jo for emacs-orgmode@gnu.org; Wed, 14 Dec 2016 14:25:33 -0500 Received: from Chunyangs-MacBook-Air.local (unknown [49.83.15.38]) by esmtp4.qq.com (ESMTP) with SMTP id 0 for ; Thu, 15 Dec 2016 03:25:23 +0800 (CST) In-reply-to: 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" To: emacs-orgmode@gnu.org --=-=-= Content-Type: text/plain Never mind. The first patch was incorrect. I have attached a new patch. --=-=-= Content-Type: text/x-patch Content-Disposition: attachment; filename=0001-org-info-Fix-docstring.patch >From 7c5ee47741f1a9cbdb6b2df8ddad99aa95cb01e5 Mon Sep 17 00:00:00 2001 From: Chunyang Xu Date: Thu, 15 Dec 2016 03:19:08 +0800 Subject: [PATCH] org-info: Fix docstring * lisp/org-info.el (org-info-map-html-url): Fix docstring, there is no `org-info-official-gnu-document' anymore. --- lisp/org-info.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/org-info.el b/lisp/org-info.el index d82168e..3b363f0 100644 --- a/lisp/org-info.el +++ b/lisp/org-info.el @@ -105,7 +105,7 @@ converted to use these URL's.") (defun org-info-map-html-url (filename) "Given info FILENAME, either return it (plus '.html' suffix added) or convert it to URL pointing to the official page on internet, e.g., use gnu.org for all -emacs related documents. See `org-info-official-gnu-document' and +emacs related documents. See `org-info-emacs-documents' and `org-info-other-documents' for details." (if (member filename org-info-emacs-documents) (format "http://www.gnu.org/software/emacs/manual/html_mono/%s.html" -- 2.10.2 --=-=-= Content-Type: text/plain Chunyang Xu writes: > User-agent: mu4e 0.9.18; emacs 25.1.1 > * lisp/org-info.el (org-info-map-html-url): Fix docstring, there is no > `org-info-official-gnu-document' anymore. > --- > lisp/org-info.el | 2 +- > 1 file changed, 1 insertion(+), 1 deletion(-) > > diff --git a/lisp/org-info.el b/lisp/org-info.el > index d82168e..a0d9e8a 100644 > --- a/lisp/org-info.el > +++ b/lisp/org-info.el > @@ -105,7 +105,7 @@ converted to use these URL's.") > (defun org-info-map-html-url (filename) > "Given info FILENAME, either return it (plus '.html' suffix added) or convert > it to URL pointing to the official page on internet, e.g., use gnu.org for all > -emacs related documents. See `org-info-official-gnu-document' and > +emacs related documents. See `org-info-other-documents' and > `org-info-other-documents' for details." > (if (member filename org-info-emacs-documents) > (format "http://www.gnu.org/software/emacs/manual/html_mono/%s.html" --=-=-=--