diff options
author | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:57:56 +0000 |
---|---|---|
committer | Christian Faulhammer <opfer@gentoo.org> | 2007-03-07 09:57:56 +0000 |
commit | 3c8c7678c2a7ff6afd92b84466799880489af39d (patch) | |
tree | ee3d066a2f5ee849716cb9e6c0532121004048c7 /app-emacs/igrep | |
parent | Version bump(s). (diff) | |
download | gentoo-2-3c8c7678c2a7ff6afd92b84466799880489af39d.tar.gz gentoo-2-3c8c7678c2a7ff6afd92b84466799880489af39d.tar.bz2 gentoo-2-3c8c7678c2a7ff6afd92b84466799880489af39d.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/igrep')
-rw-r--r-- | app-emacs/igrep/ChangeLog | 7 | ||||
-rw-r--r-- | app-emacs/igrep/files/50igrep-gentoo.el | 2 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app-emacs/igrep/ChangeLog b/app-emacs/igrep/ChangeLog index bf6388cddf9d..0aca3fa66c10 100644 --- a/app-emacs/igrep/ChangeLog +++ b/app-emacs/igrep/ChangeLog @@ -1,6 +1,11 @@ # ChangeLog for app-emacs/igrep # Copyright 2002-2007 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/igrep/ChangeLog,v 1.7 2007/02/06 13:32:48 flameeyes Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/igrep/ChangeLog,v 1.8 2007/03/07 09:57:56 opfer Exp $ + + 07 Mar 2007; Christian Faulhammer <opfer@gentoo.org> + files/50igrep-gentoo.el: + add load path correctly, fixes bug 169588, reported by Ulrich Mueller + <ulm@kph.uni-mainz.de> 06 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog: Regenerate digest in Manifest2 format. diff --git a/app-emacs/igrep/files/50igrep-gentoo.el b/app-emacs/igrep/files/50igrep-gentoo.el index 6ff5f597ce76..39d58c953d05 100644 --- a/app-emacs/igrep/files/50igrep-gentoo.el +++ b/app-emacs/igrep/files/50igrep-gentoo.el @@ -1,7 +1,7 @@ ;;; igrep site-lisp configuration -(setq load-path (cons "@SITELISP@" load-path)) +(add-to-list 'load-path "@SITELISP@") (autoload 'igrep "igrep" "*Run `grep` PROGRAM to match EXPRESSION in FILES..." t) |