Browse Source

org-babel: allow aliases for #+lob

This introduces #+call as an alias for #+lob.
Dan Davison 15 years ago
parent
commit
bf6089d8de
1 changed files with 12 additions and 2 deletions
  1. 12 2
      contrib/babel/lisp/org-babel-lob.el

+ 12 - 2
contrib/babel/lisp/org-babel-lob.el

@@ -54,9 +54,19 @@ add files to this list use the `org-babel-lob-ingest' command."
               (cons (cons source-name info)
                     (assq-delete-all source-name org-babel-library-of-babel)))))))
 
-;; functions for executing lob one-liners
+(defconst org-babel-lob-call-aliases '("lob" "call")
+  "These can be used interchangeably to call a source block
+  function. If you change the value of this variable then your
+  files may become unusable by other org-babel users, and vice
+  versa.")
+  
+(defconst org-babel-lob-one-liner-regexp
+  (concat "^[ \t]*#\\+\\(?:"
+	  (mapconcat #'regexp-quote org-babel-lob-call-aliases "\\|")
+	  "\\):[ \t]+\\([^\(\)\n]+\\)\(\\([^\n]*\\)\)[ \t]*\\([^\n]*\\)")
+  "Regexp to match calls to predefined source block functions")
 
-(defvar org-babel-lob-one-liner-regexp "^[ \t]*#\\+lob:[ \t]+\\([^\(\)\n]+\\)\(\\([^\n]*\\)\)[ \t]*\\([^\n]*\\)")
+;; functions for executing lob one-liners
 
 (defun org-babel-lob-execute-maybe ()
   "Detect if this is context for a org-babel Library Of Babel