From mboxrd@z Thu Jan 1 00:00:00 1970 Return-Path: Received: from lists.gentoo.org (pigeon.gentoo.org [208.92.234.80]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (No client certificate requested) by finch.gentoo.org (Postfix) with ESMTPS id 33A6C138350 for ; Sat, 8 Feb 2020 16:02:57 +0000 (UTC) Received: from pigeon.gentoo.org (localhost [127.0.0.1]) by pigeon.gentoo.org (Postfix) with SMTP id 5DBA7E081E; Sat, 8 Feb 2020 16:02:56 +0000 (UTC) Received: from smtp.gentoo.org (smtp.gentoo.org [140.211.166.183]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by pigeon.gentoo.org (Postfix) with ESMTPS id 44C46E081E for ; Sat, 8 Feb 2020 16:02:56 +0000 (UTC) Received: from oystercatcher.gentoo.org (oystercatcher.gentoo.org [148.251.78.52]) (using TLSv1.2 with cipher ECDHE-RSA-AES128-GCM-SHA256 (128/128 bits)) (No client certificate requested) by smtp.gentoo.org (Postfix) with ESMTPS id DEF3134E610 for ; Sat, 8 Feb 2020 16:02:54 +0000 (UTC) Received: from localhost.localdomain (localhost [IPv6:::1]) by oystercatcher.gentoo.org (Postfix) with ESMTP id 67B2CB0 for ; Sat, 8 Feb 2020 16:02:52 +0000 (UTC) From: "Ulrich Müller" To: gentoo-commits@lists.gentoo.org Content-Transfer-Encoding: 8bit Content-type: text/plain; charset=UTF-8 Reply-To: gentoo-dev@lists.gentoo.org, "Ulrich Müller" Message-ID: <1581177753.a55213125b72f602b27a90e06fb39bb7b1b55cbc.ulm@gentoo> Subject: [gentoo-commits] repo/proj/emacs:master commit in: app-emacs/ebuild-mode/files/ X-VCS-Repository: repo/proj/emacs X-VCS-Files: app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el X-VCS-Directories: app-emacs/ebuild-mode/files/ X-VCS-Committer: ulm X-VCS-Committer-Name: Ulrich Müller X-VCS-Revision: a55213125b72f602b27a90e06fb39bb7b1b55cbc X-VCS-Branch: master Date: Sat, 8 Feb 2020 16:02:52 +0000 (UTC) Precedence: bulk List-Post: List-Help: List-Unsubscribe: List-Subscribe: List-Id: Gentoo Linux mail X-BeenThere: gentoo-commits@lists.gentoo.org X-Auto-Response-Suppress: DR, RN, NRN, OOF, AutoReply X-Archives-Salt: ca2ab8e5-861b-4ab7-8001-db0c5a7744f6 X-Archives-Hash: 6c5d43958cf884847d41bb2d155a83f3 commit: a55213125b72f602b27a90e06fb39bb7b1b55cbc Author: Ulrich Müller gentoo org> AuthorDate: Sat Feb 8 16:02:33 2020 +0000 Commit: Ulrich Müller gentoo org> CommitDate: Sat Feb 8 16:02:33 2020 +0000 URL: https://gitweb.gentoo.org/repo/proj/emacs.git/commit/?id=a5521312 app-emacs/ebuild-mode: Autoload devbook-mode in site-init file. Package-Manager: Portage-2.3.87, Repoman-2.3.20 Signed-off-by: Ulrich Müller gentoo.org> app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el b/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el index 8683a65..630ad49 100644 --- a/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el +++ b/app-emacs/ebuild-mode/files/50ebuild-mode-gentoo.el @@ -1,12 +1,15 @@ (add-to-list 'load-path "@SITELISP@") (autoload 'ebuild-mode "ebuild-mode" "Major mode for Portage .ebuild and .eclass files." t) +(autoload 'devbook-mode "devbook-mode" + "Major mode for editing the Gentoo Devmanual." t) (autoload 'gentoo-newsitem-mode "gentoo-newsitem-mode" "Major mode for Gentoo GLEP 42 news items." t) (autoload 'glep-mode "glep-mode" "Major mode for Gentoo Linux Enhancement Proposals." t) (add-to-list 'auto-mode-alist '("\\.\\(ebuild\\|eclass\\)\\'" . ebuild-mode)) +(add-to-list 'auto-mode-alist '("/devmanual.*\\.xml\\'" . devbook-mode)) (add-to-list 'auto-mode-alist '("/[0-9]\\{4\\}-[01][0-9]-[0-3][0-9]-.+\\.[a-z]\\{2\\}\\.txt\\'" . gentoo-newsitem-mode))