babel: some final compiler tweaks -- no more compiler warnings

This commit is contained in:
Eric Schulte 2010-06-16 17:15:10 -07:00
parent 32c985ffd9
commit 4482058c0c
2 changed files with 8 additions and 8 deletions

View File

@ -124,8 +124,7 @@ LISPF = org.el \
babel/ob-tangle.el \
babel/ob-comint.el \
babel/ob-keys.el \
babel/langs/ob-emacs-lisp.el \
babel/langs/ob-sh.el
babel/langs/ob-emacs-lisp.el
LISPFILES0 = $(LISPF:%=lisp/%)
LISPFILES = $(LISPFILES0) lisp/org-install.el

View File

@ -1,9 +1,4 @@
;;; ob-init.el --- working with code blocks in org-mode
;; add the langs/ directory to the load path
(add-to-list 'load-path (expand-file-name
"langs"
(file-name-directory (or (buffer-file-name)
load-file-name))))
(require 'ob)
(require 'ob-table)
(require 'ob-lob)
@ -12,7 +7,13 @@
(require 'ob-tangle)
(require 'ob-comint)
(require 'ob-keys)
(require 'ob-sh)
;; add the langs/ directory to the load path
(add-to-list
'load-path (expand-file-name
"langs"
(file-name-directory (or (buffer-file-name)
load-file-name))))
(require 'ob-emacs-lisp)
(provide 'ob-init)