diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-03-08 07:12:41 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-03-08 07:12:41 +0000 |
commit | e7d94351b89ee9b1991582e0c15315c251c65594 (patch) | |
tree | a83e291ba9331dedc8c8cbd74a0cd0e7bdf83eeb /sci-mathematics | |
parent | stable x86; bug 169872 (diff) | |
download | gentoo-2-e7d94351b89ee9b1991582e0c15315c251c65594.tar.gz gentoo-2-e7d94351b89ee9b1991582e0c15315c251c65594.tar.bz2 gentoo-2-e7d94351b89ee9b1991582e0c15315c251c65594.zip |
add load path correctly, fixes bug 169588, reported by Ulrich Mueller <ulm@kph.uni-mainz.de>
(Portage version: 2.1.2-r9)
Diffstat (limited to 'sci-mathematics')
-rw-r--r-- | sci-mathematics/maxima/ChangeLog | 7 | ||||
-rw-r--r-- | sci-mathematics/maxima/files/50maxima-gentoo.el | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/sci-mathematics/maxima/ChangeLog b/sci-mathematics/maxima/ChangeLog index 78f4af2cfa33..d070a49d0641 100644 --- a/sci-mathematics/maxima/ChangeLog +++ b/sci-mathematics/maxima/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for sci-mathematics/maxima # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.24 2007/02/22 01:27:34 jokey Exp $ +# $Header: /var/cvsroot/gentoo-x86/sci-mathematics/maxima/ChangeLog,v 1.25 2007/03/08 07:12:41 opfer Exp $ + + 08 Mar 2007; Christian Faulhammer <opfer@gentoo.org> + files/50maxima-gentoo.el: + add load path correctly, fixes bug 169588, reported by Ulrich Mueller + <ulm@kph.uni-mainz.de> 22 Feb 2007; Markus Ullmann <jokey@gentoo.org> ChangeLog: Redigest for Manifest2 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)) |