babel: some final compiler tweaks -- no more compiler warnings
This commit is contained in:
parent
32c985ffd9
commit
4482058c0c
3
Makefile
3
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
|
||||
|
|
|
@ -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)
|
||||
|
|
Loading…
Reference in New Issue