GNU bug report logs -
#32832
[PATCH] Fix 'provided-mode-derived-p' when the parent is an alias
Previous Next
Reported by: andrew <at> schwartzmeyer.com
Date: Tue, 25 Sep 2018 04:11:01 UTC
Severity: normal
Tags: patch
Done: Noam Postavsky <npostavs <at> gmail.com>
Bug is archived. No further changes may be made.
To add a comment to this bug, you must first unarchive it, by sending
a message to control AT debbugs.gnu.org, with unarchive 32832 in the body.
You can then email your comments to 32832 AT debbugs.gnu.org in the normal way.
Toggle the display of automated, internal messages from the tracker.
Report forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#32832
; Package
emacs
.
(Tue, 25 Sep 2018 04:11:01 GMT)
Full text and
rfc822 format available.
Acknowledgement sent
to
andrew <at> schwartzmeyer.com
:
New bug report received and forwarded. Copy sent to
bug-gnu-emacs <at> gnu.org
.
(Tue, 25 Sep 2018 04:11:02 GMT)
Full text and
rfc822 format available.
Message #5 received at submit <at> debbugs.gnu.org (full text, mbox):
From: Andrew Schwartzmeyer <andrew <at> schwartzmeyer.com>
Authors of Emacs packages often derive from an alias of a mode instead
of the mode directly. This is especially the case when deriving from
'prog-mode' as it is relatively new. Unfortunately, using
'derived-mode-p' to check if some mode is derived from an alias of
'prog-mode' does not work as expected. The bug is that
'provided-mode-derived-p' should not only return non-nil when MODE is
one of MODES, but also when MODE is an alias of one of MODES.
* lisp/subr.el (provided-mode-derived-p):
Return non-nil when MODE is an alias of any of MODES (Bug#32795).
* test/lisp/subr-tests.el: Add tests for the above.
---
lisp/subr.el | 9 +++++++--
test/lisp/subr-tests.el | 12 ++++++++++++
2 files changed, 19 insertions(+), 2 deletions(-)
diff --git a/lisp/subr.el b/lisp/subr.el
index 7582b6cdb..6c625b40d 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -1919,9 +1919,14 @@ delay-mode-hooks
(defun provided-mode-derived-p (mode &rest modes)
"Non-nil if MODE is derived from one of MODES.
Uses the `derived-mode-parent' property of the symbol to trace backwards.
+Non-nil even if MODE is derived from an alias of any of MODES.
If you just want to check `major-mode', use `derived-mode-p'."
- (while (and (not (memq mode modes))
- (setq mode (get mode 'derived-mode-parent))))
+ (while
+ (and
+ (not (memq mode modes))
+ (let* ((parent (get mode 'derived-mode-parent))
+ (parentfn (symbol-function parent)))
+ (setq mode (if (and parentfn (symbolp parentfn)) parentfn parent)))))
mode)
(defun derived-mode-p (&rest modes)
diff --git a/test/lisp/subr-tests.el b/test/lisp/subr-tests.el
index 430d71903..a9f72c26d 100644
--- a/test/lisp/subr-tests.el
+++ b/test/lisp/subr-tests.el
@@ -62,6 +62,18 @@
(quote
(0 font-lock-keyword-face))))))))
+(ert-deftest provided-mode-derived-p ()
+ ;; base case: `derived-mode' directly derives `prog-mode'
+ (should (progn
+ (define-derived-mode derived-mode prog-mode "test")
+ (provided-mode-derived-p 'derived-mode 'prog-mode)))
+ ;; edge case: `derived-mode' derives an alias of `prog-mode'
+ (should (progn
+ (defalias 'parent-mode
+ (if (fboundp 'prog-mode) 'prog-mode 'fundamental-mode))
+ (define-derived-mode derived-mode parent-mode "test")
+ (provided-mode-derived-p 'derived-mode 'prog-mode))))
+
(ert-deftest number-sequence-test ()
(should (= (length
(number-sequence (1- most-positive-fixnum) most-positive-fixnum))
--
2.19.0
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#32832
; Package
emacs
.
(Wed, 26 Sep 2018 05:11:01 GMT)
Full text and
rfc822 format available.
Message #8 received at 32832 <at> debbugs.gnu.org (full text, mbox):
I'm sorry, this patch was meant for #32795, but I accidentally created a
new bug. The patch has been successfully attached to the correct bug;
that bug can be classified as "Patch Available" and this bug closed.
Thanks!
Information forwarded
to
bug-gnu-emacs <at> gnu.org
:
bug#32832
; Package
emacs
.
(Wed, 26 Sep 2018 12:19:01 GMT)
Full text and
rfc822 format available.
Message #11 received at 32832 <at> debbugs.gnu.org (full text, mbox):
close 32832
tags 32795 + patch
quit
Andrew Schwartzmeyer <andrew <at> schwartzmeyer.com> writes:
> I'm sorry, this patch was meant for #32795, but I accidentally created
> a new bug. The patch has been successfully attached to the correct
> bug; that bug can be classified as "Patch Available" and this bug
> closed.
Done.
bug closed, send any further explanations to
32832 <at> debbugs.gnu.org and andrew <at> schwartzmeyer.com
Request was from
Noam Postavsky <npostavs <at> gmail.com>
to
control <at> debbugs.gnu.org
.
(Wed, 26 Sep 2018 12:19:02 GMT)
Full text and
rfc822 format available.
bug archived.
Request was from
Debbugs Internal Request <help-debbugs <at> gnu.org>
to
internal_control <at> debbugs.gnu.org
.
(Thu, 25 Oct 2018 11:24:05 GMT)
Full text and
rfc822 format available.
This bug report was last modified 6 years and 236 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.