summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorChristian Faulhammer <opfer@gentoo.org>2007-03-08 07:48:45 +0000
committerChristian Faulhammer <opfer@gentoo.org>2007-03-08 07:48:45 +0000
commitc6fc520996af9fbd99913ef1a72d0510a6943ce4 (patch)
treee5db347e6bed899f0305c766d5dd0018d64d687c /app-emacs
parentstable x86; bug 165319 (diff)
downloadgentoo-2-c6fc520996af9fbd99913ef1a72d0510a6943ce4.tar.gz
gentoo-2-c6fc520996af9fbd99913ef1a72d0510a6943ce4.tar.bz2
gentoo-2-c6fc520996af9fbd99913ef1a72d0510a6943ce4.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')
-rw-r--r--app-emacs/ocaml-mode/ChangeLog7
-rw-r--r--app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el2
2 files changed, 7 insertions, 2 deletions
diff --git a/app-emacs/ocaml-mode/ChangeLog b/app-emacs/ocaml-mode/ChangeLog
index 57846db0a256..dc9fa503d0ee 100644
--- a/app-emacs/ocaml-mode/ChangeLog
+++ b/app-emacs/ocaml-mode/ChangeLog
@@ -1,6 +1,11 @@
# ChangeLog for app-emacs/ocaml-mode
# Copyright 2000-2007 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/ChangeLog,v 1.7 2007/02/09 07:12:28 flameeyes Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-emacs/ocaml-mode/ChangeLog,v 1.8 2007/03/08 07:48:45 opfer Exp $
+
+ 08 Mar 2007; Christian Faulhammer <opfer@gentoo.org>
+ files/50ocaml-mode-gentoo.el:
+ add load path correctly, fixes bug 169588, reported by Ulrich Mueller
+ <ulm@kph.uni-mainz.de>
09 Feb 2007; Diego Pettenò <flameeyes@gentoo.org> ChangeLog:
Regenerate digest in Manifest2 format.
diff --git a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el
index 6c54f8faa8da..38b9f1a5821f 100644
--- a/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el
+++ b/app-emacs/ocaml-mode/files/50ocaml-mode-gentoo.el
@@ -1,7 +1,7 @@
;;; ocaml-mode site-lisp configuration
-(setq load-path (cons "@SITELISP@" load-path))
+(add-to-list 'load-path "@SITELISP@")
(setq auto-mode-alist
(cons '("\\.ml[iylp]?$" . caml-mode) auto-mode-alist))
(autoload 'caml-mode "caml" "Major mode for editing Caml code." t)