summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorEric Schulte <schulte.eric@gmail.com>2010-06-16 17:15:10 -0700
committerEric Schulte <schulte.eric@gmail.com>2010-06-17 18:15:35 -0700
commit4482058c0cb953e9737c65324094a954e9189088 (patch)
tree5a5bb0b519e255bd735e0386baac23b0a16f9051
parent32c985ffd919dee618779239b09942766ef9119f (diff)
downloadorg-mode-4482058c0cb953e9737c65324094a954e9189088.tar.gz
babel: some final compiler tweaks -- no more compiler warnings
-rw-r--r--Makefile3
-rw-r--r--lisp/babel/ob-init.el13
2 files changed, 8 insertions, 8 deletions
diff --git a/Makefile b/Makefile
index 25a0770..436ed6a 100644
--- a/Makefile
+++ b/Makefile
@@ -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
diff --git a/lisp/babel/ob-init.el b/lisp/babel/ob-init.el
index 64cd197..a229dea 100644
--- a/lisp/babel/ob-init.el
+++ b/lisp/babel/ob-init.el
@@ -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)