From: "Ulrich Müller" <ulm@gentoo.org>
To: gentoo-commits@lists.gentoo.org
Subject: [gentoo-commits] proj/eselect:master commit in: /, misc/
Date: Sun, 1 May 2022 17:35:55 +0000 (UTC) [thread overview]
Message-ID: <1651425081.197e833501a270c0f828eb097eacb14679ae1ba2.ulm@gentoo> (raw)
commit: 197e833501a270c0f828eb097eacb14679ae1ba2
Author: Ulrich Müller <ulm <AT> gentoo <DOT> org>
AuthorDate: Sun May 1 17:11:21 2022 +0000
Commit: Ulrich Müller <ulm <AT> gentoo <DOT> org>
CommitDate: Sun May 1 17:11:21 2022 +0000
URL: https://gitweb.gentoo.org/proj/eselect.git/commit/?id=197e8335
Fix a byte-compile warning in eselect-mode
* misc/eselect-mode.el (eselect-mode): For GNU Emacs, use
write-contents-functions instead of obsolete write-contents-hooks.
Signed-off-by: Ulrich Müller <ulm <AT> gentoo.org>
ChangeLog | 5 +++++
misc/eselect-mode.el | 9 +++++----
2 files changed, 10 insertions(+), 4 deletions(-)
diff --git a/ChangeLog b/ChangeLog
index 8089935..83b0289 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2022-05-01 Ulrich Müller <ulm@gentoo.org>
+
+ * misc/eselect-mode.el (eselect-mode): For GNU Emacs, use
+ write-contents-functions instead of obsolete write-contents-hooks.
+
2022-01-08 Ulrich Müller <ulm@gentoo.org>
* configure.ac: Update version to 1.4.20.
diff --git a/misc/eselect-mode.el b/misc/eselect-mode.el
index 667411b..50e88d6 100644
--- a/misc/eselect-mode.el
+++ b/misc/eselect-mode.el
@@ -1,6 +1,6 @@
;;; eselect-mode.el --- edit eselect files
-;; Copyright 2006-2020 Gentoo Authors
+;; Copyright 2006-2022 Gentoo Authors
;; Author: Matthew Kennedy <mkennedy@gentoo.org>
;; Diego Pettenò <flameeyes@gentoo.org>
@@ -107,9 +107,10 @@
;;;###autoload
(define-derived-mode eselect-mode shell-script-mode "Eselect"
"Major mode for .eselect files."
- (if (featurep 'xemacs)
- (make-local-hook 'write-contents-hooks))
- (add-hook 'write-contents-hooks 'eselect-mode-before-save t t)
+ (if (not (featurep 'xemacs))
+ (add-hook 'write-contents-functions 'eselect-mode-before-save t t)
+ (make-local-hook 'write-contents-hooks)
+ (add-hook 'write-contents-hooks 'eselect-mode-before-save t t))
(sh-set-shell "bash")
(setq tab-width 4)
(setq indent-tabs-mode t))
next reply other threads:[~2022-05-01 17:35 UTC|newest]
Thread overview: 9+ messages / expand[flat|nested] mbox.gz Atom feed top
2022-05-01 17:35 Ulrich Müller [this message]
-- strict thread matches above, loose matches on Subject: below --
2024-11-13 20:26 [gentoo-commits] proj/eselect:master commit in: /, misc/ Ulrich Müller
2023-06-12 16:24 Ulrich Müller
2023-02-27 17:40 Ulrich Müller
2022-05-01 17:35 Ulrich Müller
2014-06-05 11:22 Ulrich Müller
2013-11-15 8:01 [gentoo-commits] proj/eselect:nolinewrap " Ulrich Müller
2013-11-15 6:21 ` [gentoo-commits] proj/eselect:master " Ulrich Müller
2013-09-18 7:10 Ulrich Mueller
2013-07-05 13:37 Ulrich Mueller
Reply instructions:
You may reply publicly to this message via plain-text email
using any one of the following methods:
* Save the following mbox file, import it into your mail client,
and reply-to-all from there: mbox
Avoid top-posting and favor interleaved quoting:
https://en.wikipedia.org/wiki/Posting_style#Interleaved_style
* Reply using the --to, --cc, and --in-reply-to
switches of git-send-email(1):
git send-email \
--in-reply-to=1651425081.197e833501a270c0f828eb097eacb14679ae1ba2.ulm@gentoo \
--to=ulm@gentoo.org \
--cc=gentoo-commits@lists.gentoo.org \
--cc=gentoo-dev@lists.gentoo.org \
/path/to/YOUR_REPLY
https://kernel.org/pub/software/scm/git/docs/git-send-email.html
* If your mail client supports setting the In-Reply-To header
via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line
before the message body.
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox