GNU bug report logs -
#10773
define-derived-mode/define-minor-mode to declare hook variables
Previous Next
Reported by: Juri Linkov <juri <at> jurta.org>
Date: Thu, 9 Feb 2012 09:50:02 UTC
Severity: wishlist
Tags: fixed
Found in version 24.0.93
Fixed in version 28.1
Done: Lars Ingebrigtsen <larsi <at> gnus.org>
Bug is archived. No further changes may be made.
Full log
Message #50 received at 10773 <at> debbugs.gnu.org (full text, mbox):
> There's still the question of using allowing these variables to be
> customized, and that still doesn't work:
>
> (customize-variable 'flyspell-mode-hook)
> -> "NO CUSTOMIZATION DATA; not intended to be customized."
>
> But... why not?
I don't have a strong opinion either way.
> So I've now added the patch below to Emacs 28.
>
> diff --git a/lisp/emacs-lisp/easy-mmode.el b/lisp/emacs-lisp/easy-mmode.el
> index e3eb9294ed..fdc1233540 100644
> --- a/lisp/emacs-lisp/easy-mmode.el
> +++ b/lisp/emacs-lisp/easy-mmode.el
> @@ -335,6 +335,9 @@ define-minor-mode
> No problems result if this variable is not bound.
> `add-hook' automatically binds it. (This is true for all hook variables.)"
> modefun)))
> + ;; Allow using using `M-x customize-variable' on the hook.
> + (put ',hook 'custom-type 'hook)
> + (put ',hook 'standard-value (list nil))
>
> ;; Define the minor-mode keymap.
> ,(unless (symbolp keymap) ;nil is also a symbol.
Shouldn't we be using `defcustom` instead of hard-coding Custom's
"internal" properties?
Stefan
This bug report was last modified 4 years and 326 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.