GNU bug report logs -
#6040
globalized minor modes - priority over mode hook?
Previous Next
Full log
View this message in rfc822 format
[Message part 1 (text/plain, inline)]
Your message dated Thu, 06 Oct 2011 15:34:07 -0400
with message-id <2jd3e952z4.fsf <at> fencepost.gnu.org>
and subject line Re: bug#6040: globalized minor modes - priority over mode hook?
has caused the debbugs.gnu.org bug report #6040,
regarding globalized minor modes - priority over mode hook?
to be marked as done.
(If you believe you have received this mail in error, please contact
help-debbugs <at> gnu.org.)
--
6040: http://debbugs.gnu.org/cgi/bugreport.cgi?bug=6040
GNU Bug Tracking System
Contact help-debbugs <at> gnu.org with problems
[Message part 2 (message/rfc822, inline)]
On Apr 26, 2010, at 10:30 AM, Stefan Monnier wrote:
>> `run-mode-hooks' runs the mode hooks first, then
>> after-change-major-mode-hooks.
>
> That would be a bug. Do you have a recipe to reproduce it?
Yes, below.
Looking at the code of `after-find-file', I think file-local variables will similarly be overruled by the global minor mode.
I ended up implementing what I wanted below by setting defaults for `auto-fill-function', but that's more low-level than intended, obviously.
I'm bcc'ing the bug DB.
---
Emacs -Q
(add-hook 'text-mode-hook 'turn-on-word-wrap) ; turns OFF auto-fill
(defvaralias 'auto-fill-mode 'auto-fill-function) ; kludge
(define-globalized-minor-mode global-auto-fill-mode auto-fill-mode turn-on-auto-fill)
(defun turn-on-word-wrap ()
"Turn on Word Wrap mode in current buffer."
(turn-off-auto-fill)
(turn-on-visual-line-mode))
;; demo
(global-auto-fill-mode 1) ; set default
(text-mode)
;; result: auto-fill-mode is on, even though it is intended to be off
[Message part 3 (message/rfc822, inline)]
Version: 24.1
David Reitter wrote:
> Emacs -Q
>
> (add-hook 'text-mode-hook 'turn-on-word-wrap) ; turns OFF auto-fill
>
> (defvaralias 'auto-fill-mode 'auto-fill-function) ; kludge
> (define-globalized-minor-mode global-auto-fill-mode auto-fill-mode turn-on-auto-fill)
>
> (defun turn-on-word-wrap ()
> "Turn on Word Wrap mode in current buffer."
> (turn-off-auto-fill)
> (turn-on-visual-line-mode))
>
> ;; demo
>
> (global-auto-fill-mode 1) ; set default
> (text-mode)
>
> ;; result: auto-fill-mode is on, even though it is intended to be off
I see this in 23.3 but not the current trunk, so it looks like this was
fixed.
This bug report was last modified 13 years and 309 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.