diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:54:46 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:54:46 +0000 |
commit | 0018e5442a7221628f7d7debaa64da3c4043c00c (patch) | |
tree | c218ef88f401719f955fe4badc0d89e3bfe626be /app-emacs/highline | |
parent | add load path correctly, fixes bug 169588, reported by Ulrich Mueller <ulm@kp... (diff) | |
download | gentoo-2-0018e5442a7221628f7d7debaa64da3c4043c00c.tar.gz gentoo-2-0018e5442a7221628f7d7debaa64da3c4043c00c.tar.bz2 gentoo-2-0018e5442a7221628f7d7debaa64da3c4043c00c.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/highline')
-rw-r--r-- | app-emacs/highline/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/highline/files/50highline-gentoo.el | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app-emacs/highline/ChangeLog b/app-emacs/highline/ChangeLog index cfb9dd2be63d..a2641197b4c2 100644 --- a/app-emacs/highline/ChangeLog +++ b/app-emacs/highline/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/highline # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/highline/ChangeLog,v 1.12 2007/01/28 04:19:06 genone Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/highline/ChangeLog,v 1.13 2007/03/07 09:54:46 opfer Exp $ + + 07 Mar 2007; Christian Faulhammer <opfer@gentoo.org> + files/50highline-gentoo.el: + add load path correctly, fixes bug 169588, reported by Ulrich Mueller + <ulm@kph.uni-mainz.de> 28 Jan 2007; Marius Mauch <genone@gentoo.org> highline-4.2.ebuild: Replacing einfo with elog diff --git a/app-emacs/highline/files/50highline-gentoo.el b/app-emacs/highline/files/50highline-gentoo.el index 802534573f59..062430816d84 100644 --- a/app-emacs/highline/files/50highline-gentoo.el +++ b/app-emacs/highline/files/50highline-gentoo.el @@ -1,7 +1,7 @@ ;;; highline site-lisp configuration -(setq load-path (cons "@SITELISP@" load-path)) +(add-to-list 'load-path "@SITELISP@") (require 'highline) ;; (global-set-key "\C-c\C-a" 'highline-on) ;; (global-set-key "\C-c\C-b" 'highline-off) |