diff options
author | 2007-03-08 07:48:45 +0000 | |
---|---|---|
committer | 2007-03-08 07:48:45 +0000 | |
commit | 21b84c89d955f86439880ecb4eabd90a25f0602c (patch) | |
tree | 759854045a9e4c8cb8d10855764a8e4b8f87a21c /app-emacs/ocaml-mode/files | |
parent | stable x86; bug 165319 (diff) | |
download | historical-21b84c89d955f86439880ecb4eabd90a25f0602c.tar.gz historical-21b84c89d955f86439880ecb4eabd90a25f0602c.tar.bz2 historical-21b84c89d955f86439880ecb4eabd90a25f0602c.zip |
add load path correctly, fixes bug 169588, reported by Ulrich Mueller <ulm@kph.uni-mainz.de>
Package-Manager: portage-2.1.2-r9
Diffstat (limited to 'app-emacs/ocaml-mode/files')
-rw-r--r-- | app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el index 6c54f8faa8da..38b9f1a5821f 100644 --- a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el +++ b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el @@ -1,7 +1,7 @@ ;;; ocaml-mode site-lisp configuration -(setq load-path (cons "@SITELISP@" load-path)) +(add-to-list 'load-path "@SITELISP@") (setq auto-mode-alist (cons '("\\.ml[iylp]?$" . caml-mode) auto-mode-alist)) (autoload 'caml-mode "caml" "Major mode for editing Caml code." t) |