diff options
author | Ulrich Müller <ulm@gentoo.org> | 2009-09-18 16:21:47 +0000 |
---|---|---|
committer | Ulrich Müller <ulm@gentoo.org> | 2009-09-18 16:21:47 +0000 |
commit | 6aaa7afd757e381a18a34c63819b23e153b89fd4 (patch) | |
tree | 97e1ce994946cf9157cee19f052dcfd66e703ec2 /app-emacs | |
parent | Fix typo: s/RDPEND/RDEPEND/ (diff) | |
download | gentoo-2-6aaa7afd757e381a18a34c63819b23e153b89fd4.tar.gz gentoo-2-6aaa7afd757e381a18a34c63819b23e153b89fd4.tar.bz2 gentoo-2-6aaa7afd757e381a18a34c63819b23e153b89fd4.zip |
Recognise eblit files.
(Portage version: 2.2_rc40/cvs/Linux i686)
Diffstat (limited to 'app-emacs')
-rw-r--r-- | app-emacs/gentoo-syntax/ChangeLog | 6 | ||||
-rw-r--r-- | app-emacs/gentoo-syntax/files/50gentoo-syntax-gentoo.el | 3 |
2 files changed, 7 insertions, 2 deletions
diff --git a/app-emacs/gentoo-syntax/ChangeLog b/app-emacs/gentoo-syntax/ChangeLog index c584450c1962..472054e4e095 100644 --- a/app-emacs/gentoo-syntax/ChangeLog +++ b/app-emacs/gentoo-syntax/ChangeLog @@ -1,6 +1,10 @@ # ChangeLog for app-emacs/gentoo-syntax # Copyright 1999-2009 Gentoo Foundation; Distributed under the GPL v2 -# $Header: /var/cvsroot/gentoo-x86/app-emacs/gentoo-syntax/ChangeLog,v 1.48 2009/08/31 18:12:29 fauli Exp $ +# $Header: /var/cvsroot/gentoo-x86/app-emacs/gentoo-syntax/ChangeLog,v 1.49 2009/09/18 16:21:47 ulm Exp $ + + 18 Sep 2009; Ulrich Mueller <ulm@gentoo.org> + files/50gentoo-syntax-gentoo.el: + Recognise eblit files. 31 Aug 2009; Christian Faulhammer <fauli@gentoo.org> -files/51gentoo-syntax-gentoo.el, -gentoo-syntax-1.11.ebuild: diff --git a/app-emacs/gentoo-syntax/files/50gentoo-syntax-gentoo.el b/app-emacs/gentoo-syntax/files/50gentoo-syntax-gentoo.el index 80ce285a9bde..f9ef9628b1b5 100644 --- a/app-emacs/gentoo-syntax/files/50gentoo-syntax-gentoo.el +++ b/app-emacs/gentoo-syntax/files/50gentoo-syntax-gentoo.el @@ -3,7 +3,8 @@ "Major mode for Portage .ebuild and .eclass files." t) (autoload 'eselect-mode "gentoo-syntax" "Major mode for .eselect files." t) -(add-to-list 'auto-mode-alist '("\\.\\(ebuild\\|eclass\\)\\'" . ebuild-mode)) +(add-to-list 'auto-mode-alist + '("\\.\\(ebuild\\|eclass\\|eblit\\)\\'" . ebuild-mode)) (add-to-list 'auto-mode-alist '("\\.eselect\\'" . eselect-mode)) (add-to-list 'interpreter-mode-alist '("runscript" . sh-mode)) (modify-coding-system-alist 'file "\\.\\(ebuild\\|eclass\\)\\'" 'utf-8) |