From 1755b53625a86215bb80d498ada68d1a228cbf87 Mon Sep 17 00:00:00 2001 From: Bastien Guerry Date: Tue, 3 Apr 2012 13:14:06 +0200 Subject: [PATCH] Add :version to ob-tangle.el options. --- lisp/ob-tangle.el | 7 +++++++ 1 file changed, 7 insertions(+) diff --git a/lisp/ob-tangle.el b/lisp/ob-tangle.el index 5e498ab6c..db4721b70 100644 --- a/lisp/ob-tangle.el +++ b/lisp/ob-tangle.el @@ -47,6 +47,7 @@ be inserted as the extension commonly used to identify files written in this language. If no entry is found in this list, then the name of the language is used." :group 'org-babel-tangle + :version "24.1" :type '(repeat (cons (string "Language name") @@ -55,16 +56,19 @@ then the name of the language is used." (defcustom org-babel-post-tangle-hook nil "Hook run in code files tangled by `org-babel-tangle'." :group 'org-babel + :version "24.1" :type 'hook) (defcustom org-babel-pre-tangle-hook '(save-buffer) "Hook run at the beginning of `org-babel-tangle'." :group 'org-babel + :version "24.1" :type 'hook) (defcustom org-babel-tangle-body-hook nil "Hook run over the contents of each code block body." :group 'org-babel + :version "24.1" :type 'hook) (defcustom org-babel-tangle-comment-format-beg "[[%link][%source-name]]" @@ -79,6 +83,7 @@ information into the output using `org-fill-template'. Whether or not comments are inserted during tangling is controlled by the :comments header argument." :group 'org-babel + :version "24.1" :type 'string) (defcustom org-babel-tangle-comment-format-end "%source-name ends here" @@ -93,6 +98,7 @@ information into the output using `org-fill-template'. Whether or not comments are inserted during tangling is controlled by the :comments header argument." :group 'org-babel + :version "24.1" :type 'string) (defcustom org-babel-process-comment-text #'org-babel-trim @@ -101,6 +107,7 @@ inserted as comments in tangled source-code files. The function should take a single string argument and return a string result. The default value is `org-babel-trim'." :group 'org-babel + :version "24.1" :type 'function) (defun org-babel-find-file-noselect-refresh (file)