diff options
Diffstat (limited to 'lisp/window.el')
| -rw-r--r-- | lisp/window.el | 12 |
1 files changed, 6 insertions, 6 deletions
diff --git a/lisp/window.el b/lisp/window.el index ce0256f1fff..c57fef441f5 100644 --- a/lisp/window.el +++ b/lisp/window.el | |||
| @@ -7930,10 +7930,10 @@ overriding motion of point in order to display at this exact start." | |||
| 7930 | (funcall set-window-group-start-function window pos noforce) | 7930 | (funcall set-window-group-start-function window pos noforce) |
| 7931 | (set-window-start window pos noforce))) | 7931 | (set-window-start window pos noforce))) |
| 7932 | 7932 | ||
| 7933 | (defvar recenter-group-function nil) | 7933 | (defvar recenter-window-group-function nil) |
| 7934 | (make-variable-buffer-local 'recenter-group-function) | 7934 | (make-variable-buffer-local 'recenter-window-group-function) |
| 7935 | (put 'recenter-group-function 'permanent-local t) | 7935 | (put 'recenter-window-group-function 'permanent-local t) |
| 7936 | (defun recenter-group (&optional arg) | 7936 | (defun recenter-window-group (&optional arg) |
| 7937 | "Center point in the group of windows containing the selected window | 7937 | "Center point in the group of windows containing the selected window |
| 7938 | and maybe redisplay frame. When a grouping mode (such as Follow Mode) | 7938 | and maybe redisplay frame. When a grouping mode (such as Follow Mode) |
| 7939 | is not active, this function is identical to `recenter'. | 7939 | is not active, this function is identical to `recenter'. |
| @@ -7953,8 +7953,8 @@ are redrawn. | |||
| 7953 | 7953 | ||
| 7954 | Just C-u as prefix means put point in the center of the window | 7954 | Just C-u as prefix means put point in the center of the window |
| 7955 | and redisplay normally--don't erase and redraw the frame." | 7955 | and redisplay normally--don't erase and redraw the frame." |
| 7956 | (if (functionp recenter-group-function) | 7956 | (if (functionp recenter-window-group-function) |
| 7957 | (funcall recenter-group-function arg) | 7957 | (funcall recenter-window-group-function arg) |
| 7958 | (recenter arg))) | 7958 | (recenter arg))) |
| 7959 | 7959 | ||
| 7960 | (defvar pos-visible-in-window-group-p-function nil) | 7960 | (defvar pos-visible-in-window-group-p-function nil) |