diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:59:29 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:59:29 +0000 |
commit | 83d923d07864d17cb55fa86e99fe88cb65fa81e3 (patch) | |
tree | c166b48cdd6a0a9d98697bab3cea238932d7e91b /app-emacs/ilisp | |
parent | add load path correctly, fixes bug 169588, reported by Ulrich Mueller <ulm@kp... (diff) | |
download | gentoo-2-83d923d07864d17cb55fa86e99fe88cb65fa81e3.tar.gz gentoo-2-83d923d07864d17cb55fa86e99fe88cb65fa81e3.tar.bz2 gentoo-2-83d923d07864d17cb55fa86e99fe88cb65fa81e3.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 'app-emacs/ilisp')
-rw-r--r-- | app-emacs/ilisp/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/ilisp/files/50ilisp-gentoo.el | 4 | ||||
-rw-r--r-- | app-emacs/ilisp/files/50ilispclc-gentoo.el | 4 |
3 files changed, 10 insertions, 5 deletions
diff --git a/app-emacs/ilisp/ChangeLog b/app-emacs/ilisp/ChangeLog index 09fe8fafcebb..5c3987792623 100644 --- a/app-emacs/ilisp/ChangeLog +++ b/app-emacs/ilisp/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/ilisp # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/ilisp/ChangeLog,v 1.15 2007/02/21 21:33:01 peper Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/ilisp/ChangeLog,v 1.16 2007/03/07 09:59:29 opfer Exp $ + + 07 Mar 2007; Christian Faulhammer <opfer@gentoo.org> + files/50ilisp-gentoo.el, files/50ilispclc-gentoo.el: + add load path correctly, fixes bug 169588, reported by Ulrich Mueller + <ulm@kph.uni-mainz.de> 21 Feb 2007; Piotr Jaroszyński <peper@gentoo.org> ChangeLog: Transition to Manifest2. diff --git a/app-emacs/ilisp/files/50ilisp-gentoo.el b/app-emacs/ilisp/files/50ilisp-gentoo.el index 3e0f069f20b1..1b338cc01598 100644 --- a/app-emacs/ilisp/files/50ilisp-gentoo.el +++ b/app-emacs/ilisp/files/50ilisp-gentoo.el @@ -2,8 +2,8 @@ ;;; ilisp site-lisp configuration (most of this was shamelessly yanked ;;; from the ilisp.emacs file distributed with ilisp) -(setq load-path (cons "@SITELISP@" load-path)) -(setq load-path (cons "@SITELISP@/extra" load-path)) +(add-to-list 'load-path "@SITELISP@") +(add-to-list 'load-path "@SITELISP@/extra") (autoload 'common-lisp "ilisp" "Inferior generic Common Lisp." t) ; (autoload 'allegro "ilisp" "Inferior Allegro Common Lisp." t) diff --git a/app-emacs/ilisp/files/50ilispclc-gentoo.el b/app-emacs/ilisp/files/50ilispclc-gentoo.el index f5e152f59e0a..cf42f500460e 100644 --- a/app-emacs/ilisp/files/50ilispclc-gentoo.el +++ b/app-emacs/ilisp/files/50ilispclc-gentoo.el @@ -1,8 +1,8 @@ ;;; ilisp site-lisp configuration -(setq load-path (cons "@SITELISP@" load-path)) -(setq load-path (cons "@SITELISP@/extra" load-path)) +(add-to-list 'load-path "@SITELISP@") +(add-to-list 'load-path "@SITELISP@/extra") (load "/etc/ilisp/ilisp.el") (add-hook 'ilisp-load-hook |