Browse Source

Implementing library functions as a new (pseudo) interpreter called
'babel'. Added a speculative function which creates a hash table
containing parsed versions of all source blocks in a buffer -- I was
wondering whether we should 'load' the library-of-babel into memory in
this fashion, rather than searching for code blocks in buffers /
files.

Dan Davison 16 years ago
parent
commit
da82dae939
1 changed files with 1 additions and 1 deletions
  1. 1 1
      lisp/org-babel-init.el

+ 1 - 1
lisp/org-babel-init.el

@@ -37,7 +37,7 @@
 (require 'org-babel-exp)
 (require 'org-babel-table)
 (require 'org-babel-comint)
-
+(require 'org-babel-lob)
 ;; language specific files
 (add-to-list 'load-path (expand-file-name "langs" (file-name-directory (or load-file-name buffer-file-name))))
 (require 'org-babel-ruby)