From 9d3e48f6299b2a7b366bcf19813ab512c545b30f Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Mon, 30 Dec 2013 10:13:57 +0100 Subject: [PATCH] Add missing :type to a few options. * ox-texinfo.el (org-texinfo-def-table-markup): * org-inlinetask.el (org-inlinetask-show-first-star): * ob-maxima.el (org-babel-maxima-command): Add type. Thanks to Glenn Morris for reporting this. --- lisp/ob-maxima.el | 3 ++- lisp/org-inlinetask.el | 3 ++- lisp/ox-texinfo.el | 4 +++- 3 files changed, 7 insertions(+), 3 deletions(-) diff --git a/lisp/ob-maxima.el b/lisp/ob-maxima.el index 5be378ed6..505ae5743 100644 --- a/lisp/ob-maxima.el +++ b/lisp/ob-maxima.el @@ -43,7 +43,8 @@ (defcustom org-babel-maxima-command (if (boundp 'maxima-command) maxima-command "maxima") "Command used to call maxima on the shell." - :group 'org-babel) + :group 'org-babel + :type 'string) (defun org-babel-maxima-expand (body params) "Expand a block of Maxima code according to its header arguments." diff --git a/lisp/org-inlinetask.el b/lisp/org-inlinetask.el index ca7572bcc..52f5114cb 100644 --- a/lisp/org-inlinetask.el +++ b/lisp/org-inlinetask.el @@ -103,7 +103,8 @@ the value of this variable." "Non-nil means display the first star of an inline task as additional marker. When nil, the first star is not shown." :tag "Org Inline Tasks" - :group 'org-structure) + :group 'org-structure + :type 'boolean) (defvar org-odd-levels-only) (defvar org-keyword-time-regexp) diff --git a/lisp/ox-texinfo.el b/lisp/ox-texinfo.el index 43c1de215..1fceac0ea 100644 --- a/lisp/ox-texinfo.el +++ b/lisp/ox-texinfo.el @@ -288,7 +288,9 @@ When nil, no transformation is made." (const :tag "No formatting"))) (defcustom org-texinfo-def-table-markup "@samp" - "Default setting for @table environments.") + "Default setting for @table environments." + :group 'org-export-texinfo + :type 'string) ;;; Text markup -- 2.11.4.GIT