summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorUlrich Müller <ulm@gentoo.org>2009-03-28 10:17:13 +0000
committerUlrich Müller <ulm@gentoo.org>2009-03-28 10:17:13 +0000
commit54582b38cb0ef0fc6613808ef2c1ec532fd310a9 (patch)
tree0cee8d2dea2955466da5e391b16bbbe100aa3f57 /app-office/magicpoint
parentRegularise header comment in Emacs site-init file. (diff)
downloadgentoo-2-54582b38cb0ef0fc6613808ef2c1ec532fd310a9.tar.gz
gentoo-2-54582b38cb0ef0fc6613808ef2c1ec532fd310a9.tar.bz2
gentoo-2-54582b38cb0ef0fc6613808ef2c1ec532fd310a9.zip
Use add-to-list in Emacs site-init file. Remove unused file.
(Portage version: 2.2_rc27/cvs/Linux i686)
Diffstat (limited to 'app-office/magicpoint')
-rw-r--r--app-office/magicpoint/ChangeLog6
-rw-r--r--app-office/magicpoint/files/50magicpoint-gentoo.el3
-rw-r--r--app-office/magicpoint/files/50mgp-mode-gentoo.el4
3 files changed, 7 insertions, 6 deletions
diff --git a/app-office/magicpoint/ChangeLog b/app-office/magicpoint/ChangeLog
index b66ea703aeaa..7bcc3b3a3de7 100644
--- a/app-office/magicpoint/ChangeLog
+++ b/app-office/magicpoint/ChangeLog
@@ -1,6 +1,10 @@
# ChangeLog for app-office/magicpoint
# Copyright 2002-2009 Gentoo Foundation; Distributed under the GPL v2
-# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/ChangeLog,v 1.39 2009/01/04 20:24:18 ulm Exp $
+# $Header: /var/cvsroot/gentoo-x86/app-office/magicpoint/ChangeLog,v 1.40 2009/03/28 10:17:12 ulm Exp $
+
+ 28 Mar 2009; Ulrich Mueller <ulm@gentoo.org> files/50magicpoint-gentoo.el,
+ -files/50mgp-mode-gentoo.el:
+ Use add-to-list instead of cons in Emacs site-init file. Remove unused file.
04 Jan 2009; Ulrich Mueller <ulm@gentoo.org> magicpoint-1.12a-r1.ebuild,
magicpoint-1.13a.ebuild:
diff --git a/app-office/magicpoint/files/50magicpoint-gentoo.el b/app-office/magicpoint/files/50magicpoint-gentoo.el
index 27b88da7be9f..301fcb4d4bb6 100644
--- a/app-office/magicpoint/files/50magicpoint-gentoo.el
+++ b/app-office/magicpoint/files/50magicpoint-gentoo.el
@@ -1,5 +1,6 @@
+
;;; magicpoint site-lisp configuration
(add-to-list 'load-path "@SITELISP@")
(autoload 'mgp-mode "mgp-mode" "MagicPoint editor mode" t)
-(setq auto-mode-alist (cons '("\\.mgp$" . mgp-mode) auto-mode-alist))
+(add-to-list 'auto-mode-alist '("\\.mgp\\'" . mgp-mode))
diff --git a/app-office/magicpoint/files/50mgp-mode-gentoo.el b/app-office/magicpoint/files/50mgp-mode-gentoo.el
deleted file mode 100644
index 638c3c44aa85..000000000000
--- a/app-office/magicpoint/files/50mgp-mode-gentoo.el
+++ /dev/null
@@ -1,4 +0,0 @@
-;;; mgp-mode site-lisp configuration
-
-(autoload 'mgp-mode "mgp-mode" "MagicPoint editor mode" t)
-(setq auto-mode-alist (cons '("\\.mgp$" . mgp-mode) auto-mode-alist))