From mboxrd@z Thu Jan 1 00:00:00 1970 From: "Feng Shu" Subject: [PATCH] Fix type error in `org-preview-latex-process-alist' doc Date: Tue, 24 May 2016 21:29:01 +0800 Message-ID: <87posbpote.fsf@163.com> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="=-=-=" Return-path: Received: from eggs.gnu.org ([2001:4830:134:3::10]:45047) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5CcJ-0008VK-1u for emacs-orgmode@gnu.org; Tue, 24 May 2016 09:43:28 -0400 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1b5CcF-0003rj-Aq for emacs-orgmode@gnu.org; Tue, 24 May 2016 09:43:25 -0400 Received: from m12-12.163.com ([220.181.12.12]:57806) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1b5CcE-0003rC-Gi for emacs-orgmode@gnu.org; Tue, 24 May 2016 09:43:23 -0400 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: orgmode-devel Cc: Feng Shu --=-=-= Content-Type: text/x-diff Content-Disposition: inline; filename=0001-Fix-type-error-in-org-preview-latex-process-alist-do.patch >From 3e5f7bf6e80d8e662b428f622de498047aa02790 Mon Sep 17 00:00:00 2001 From: Feng Shu Date: Tue, 24 May 2016 21:26:31 +0800 Subject: [PATCH] Fix type error in `org-preview-latex-process-alist' doc * org.el (org-preview-latex-process-alist): Fix type error in `org-preview-latex-process-alist' doc --- lisp/org.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/org.el b/lisp/org.el index 83ac51c..691fa57 100644 --- a/lisp/org.el +++ b/lisp/org.el @@ -4008,7 +4008,7 @@ All available processes and theirs documents can be found in '((dvipng :programs ("latex" "dvipng" "gs") :description "dvi > png" - :message "you need to install programs: latex, dvipng and ghostscript." + :message "you need to install the programs: latex, dvipng and ghostscript." :image-input-type "dvi" :image-output-type "png" :image-size-adjust (1.0 . 1.0) @@ -4017,7 +4017,7 @@ All available processes and theirs documents can be found in (dvisvgm :programs ("latex" "dvisvgm" "gs") :description "dvi > svg" - :message "you need to install programs: latex, dvisvgm and ghostscript." + :message "you need to install the programs: latex, dvisvgm and ghostscript." :use-xcolor t :image-input-type "dvi" :image-output-type "svg" @@ -4028,7 +4028,7 @@ All available processes and theirs documents can be found in :programs ("latex" "convert" "gs") :description "pdf > png" :message - "you need to install programs: latex, imagemagick and ghostscript." + "you need to install the programs: latex, imagemagick and ghostscript." :use-xcolor t :image-input-type "pdf" :image-output-type "png" @@ -4078,7 +4078,7 @@ PROPERTIES accepts the following attributes: Place-holders used by `:image-converter' and `:latex-compiler': - %i input file name. + %f input file name. %b base name of input file. %o base directory of input file. -- 2.1.4 --=-=-= Content-Type: text/plain -- --=-=-=--