diff options
author | Bastien Guerry <bastien1@free.fr> | 2012-04-03 14:02:21 +0200 |
---|---|---|
committer | Bastien Guerry <bastien1@free.fr> | 2012-04-03 14:02:21 +0200 |
commit | 372d7b21b2835543c8d97c1dff4929be5270a2a7 (patch) | |
tree | b5cac3b444c54b00a4153109299a397d74eb03fc /lisp/org/ob.el | |
parent | 5c7ac47249bc16f6efc3085bc72a2d519ae1d834 (diff) | |
download | emacs-372d7b21b2835543c8d97c1dff4929be5270a2a7.tar.gz emacs-372d7b21b2835543c8d97c1dff4929be5270a2a7.tar.bz2 emacs-372d7b21b2835543c8d97c1dff4929be5270a2a7.zip |
Add :version tag to new Org options in Emacs 24.1
Diffstat (limited to 'lisp/org/ob.el')
-rw-r--r-- | lisp/org/ob.el | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/lisp/org/ob.el b/lisp/org/ob.el index 79ffe732e2b..ac6de9f1bbf 100644 --- a/lisp/org/ob.el +++ b/lisp/org/ob.el @@ -105,6 +105,7 @@ against accidental code block evaluation. The `org-babel-no-eval-on-ctrl-c-ctrl-c' variable can be used to remove code block execution from the C-c C-c keybinding." :group 'org-babel + :version "24.1" :type '(choice boolean function)) ;; don't allow this variable to be changed through file settings (put 'org-confirm-babel-evaluate 'safe-local-variable (lambda (x) (eq x t))) @@ -112,6 +113,7 @@ remove code block execution from the C-c C-c keybinding." (defcustom org-babel-no-eval-on-ctrl-c-ctrl-c nil "Remove code block evaluation from the C-c C-c key binding." :group 'org-babel + :version "24.1" :type 'boolean) (defcustom org-babel-results-keyword "RESULTS" |