diff options
author | Noam Postavsky <npostavs@gmail.com> | 2017-05-20 19:11:51 -0400 |
---|---|---|
committer | Noam Postavsky <npostavs@gmail.com> | 2017-05-20 19:13:57 -0400 |
commit | abd098200bfba2577dfff800f27d5474f13cc1f3 (patch) | |
tree | 9a00e1708b879c68abaafdaba8df2c6234d1ee09 /lisp/follow.el | |
parent | 7e5a8cdceb408077df78b1ea810b1f5d4657303d (diff) | |
download | emacs-abd098200bfba2577dfff800f27d5474f13cc1f3.tar.gz emacs-abd098200bfba2577dfff800f27d5474f13cc1f3.tar.bz2 emacs-abd098200bfba2577dfff800f27d5474f13cc1f3.zip |
Don't end non-hook variable with "-hook" (Bug#26623)
* lisp/follow.el (follow-inside-post-command-hook-call): Renamed from
follow-inside-post-command-hook, update uses.
Diffstat (limited to 'lisp/follow.el')
-rw-r--r-- | lisp/follow.el | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/lisp/follow.el b/lisp/follow.el index db3b2821a56..5dd74f37a18 100644 --- a/lisp/follow.el +++ b/lisp/follow.el @@ -340,7 +340,7 @@ property `follow-mode-use-cache' to non-nil.") (defvar follow-inactive-menu nil "The menu visible when Follow mode is inactive.") -(defvar follow-inside-post-command-hook nil +(defvar follow-inside-post-command-hook-call nil "Non-nil when inside Follow modes `post-command-hook'. Used by `follow-window-size-change'.") @@ -1277,7 +1277,7 @@ non-first windows in Follow mode." (defun follow-post-command-hook () "Ensure that the windows in Follow mode are adjacent after each command." (unless (input-pending-p) - (let ((follow-inside-post-command-hook t) + (let ((follow-inside-post-command-hook-call t) (win (selected-window))) ;; Work in the selected window, not in the current buffer. (with-current-buffer (window-buffer win) @@ -1519,14 +1519,14 @@ non-first windows in Follow mode." ;; Since `follow-window-size-change' can be called indirectly from ;; `follow-post-command-hook' we have a potential infinite loop. To ;; avoid this, we simply do not do anything in this situation. The -;; variable `follow-inside-post-command-hook' contains information -;; about whether the execution actually is inside the +;; variable `follow-inside-post-command-hook-call' contains +;; information about whether the execution actually is inside the ;; post-command-hook or not. (defun follow-window-size-change (frame) "Redraw all windows in FRAME, when in Follow mode." ;; Below, we call `post-command-hook'. Avoid an infloop. - (unless follow-inside-post-command-hook + (unless follow-inside-post-command-hook-call (save-current-buffer (let ((orig-frame (selected-frame))) (select-frame frame) |