From 3b0c9b4e7861a66971bcd46a97e303cff43347c0 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 19 Mar 2013 10:01:42 +0100 Subject: [PATCH] ox-texinfo.el: Docstrings tiny fixes * ox-texinfo.el (org-texinfo-filename) (org-texinfo-info-process, org-texinfo-max-toc-depth) (org-texinfo--sanitize-menu): Docstrings tiny fixes. --- lisp/ox-texinfo.el | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index 27bde3e52..c05606975 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -144,7 +144,7 @@ ;;; Preamble (defcustom org-texinfo-filename nil - "Default filename for texinfo output." + "Default filename for Texinfo output." :group 'org-export-texinfo :type '(string :tag "Export Filename")) @@ -371,7 +371,7 @@ in order to mimic default behaviour: (defcustom org-texinfo-info-process '("makeinfo %f") - "Commands to process a texinfo file to an INFO file. + "Commands to process a Texinfo file to an INFO file. This is list of strings, each of them will be given to the shell as a command. %f in the command will be replaced by the full file name, %b by the file base name \(i.e without extension) and @@ -383,7 +383,7 @@ file name, %b by the file base name \(i.e without extension) and ;;; Constants (defconst org-texinfo-max-toc-depth 4 "Maximum depth for creation of detailed menu listings. Beyond - this depth texinfo will not recognize the nodes and will cause + this depth Texinfo will not recognize the nodes and will cause errors. Left as a constant in case this value ever changes.") @@ -485,7 +485,7 @@ retrieved." "Remove invalid characters from TITLE for use in menus and nodes. -Based on TEXINFO specifications, the following must be removed: +Based on Texinfo specifications, the following must be removed: @ { } ( ) : . ," (replace-regexp-in-string "[@{}():,.]" "" title)) -- 2.11.4.GIT