diff options
author | Christian Faulhammer <fauli@gentoo.org> | 2007-03-08 07:12:41 +0000 |
---|---|---|
committer | Christian Faulhammer <fauli@gentoo.org> | 2007-03-08 07:12:41 +0000 |
commit | 5a89ca5bab141f79745e8b5683e7c80dd11bf767 (patch) | |
tree | 6e0e1415a3f887408c8188bc70a61bd8fde749d7 /sci-mathematics/maxima/files | |
parent | stable x86; bug 169872 (diff) | |
download | historical-5a89ca5bab141f79745e8b5683e7c80dd11bf767.tar.gz historical-5a89ca5bab141f79745e8b5683e7c80dd11bf767.tar.bz2 historical-5a89ca5bab141f79745e8b5683e7c80dd11bf767.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 'sci-mathematics/maxima/files')
-rw-r--r-- | sci-mathematics/maxima/files/50maxima-gentoo.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/sci-mathematics/maxima/files/50maxima-gentoo.el b/sci-mathematics/maxima/files/50maxima-gentoo.el index 9b7151b17850..7ec9767413a8 100644 --- a/sci-mathematics/maxima/files/50maxima-gentoo.el +++ b/sci-mathematics/maxima/files/50maxima-gentoo.el @@ -1,5 +1,5 @@ ;; maxima mode -(setq load-path (cons "/usr/share/maxima/PV/emacs" load-path)) +(add-to-list 'load-path "/usr/share/maxima/PV/emacs") (autoload 'maxima-mode "maxima" "Maxima mode" t) (autoload 'maxima "maxima" "Maxima interactive" t) (setq auto-mode-alist (cons '("\\.max" . maxima-mode) auto-mode-alist)) |