(define-global-minor-mode): Use `after-change-major-mode-hook' instead
of `find-file-hook'.
This commit is contained in:
parent
5f90d77ec8
commit
7fb8093523
1 changed files with 3 additions and 3 deletions
|
@ -172,7 +172,7 @@ For example, you could write
|
|||
(setq group
|
||||
`(:group ',(intern (replace-regexp-in-string
|
||||
"-mode\\'" "" mode-name)))))
|
||||
|
||||
|
||||
`(progn
|
||||
;; Define the variable to enable or disable the mode.
|
||||
,(if (not globalp)
|
||||
|
@ -306,9 +306,9 @@ in which `%s' turns it on."
|
|||
;; Setup hook to handle future mode changes and new buffers.
|
||||
(if ,global-mode
|
||||
(progn
|
||||
(add-hook 'find-file-hook ',buffers)
|
||||
(add-hook 'after-change-major-mode-hook ',buffers)
|
||||
(add-hook 'change-major-mode-hook ',cmmh))
|
||||
(remove-hook 'find-file-hook ',buffers)
|
||||
(remove-hook 'after-change-major-mode-hook ',buffers)
|
||||
(remove-hook 'change-major-mode-hook ',cmmh))
|
||||
|
||||
;; Go through existing buffers.
|
||||
|
|
Loading…
Add table
Add a link
Reference in a new issue