GNU bug report logs -
#19012
25.0.50; `help-window-select'
Previous Next
Reported by: Drew Adams <drew.adams <at> oracle.com>
Date: Mon, 10 Nov 2014 16:43:03 UTC
Severity: minor
Found in version 25.0.50
Done: martin rudalics <rudalics <at> gmx.at>
Bug is archived. No further changes may be made.
Full log
Message #68 received at 19012 <at> debbugs.gnu.org (full text, mbox):
>> What is "*this* bug"? You attribute a behavior you observe to a
>> variable that does not and cannot control that behavior.
>
> Bug 19012.
Then give us a recipe so we can reproduce that "bug". Sections 51.3
"Understanding Bug Reporting" and 51.4 "Checklist for Bug Reports" of
the Emacs manual will give you further guidance. Here with emacs -Q
and evaluating
(setq pop-up-frames t)
(setq w32-grab-focus-on-raise nil)
(setq help-window-select t)
(defun 1on1-display-*Help*-frame (buf &optional args)
"Display *Help* buffer in its own frame.
`special-display-function' is used to do the actual displaying.
BUF and ARGS are the arguments to `special-display-function'."
(let ((old-ptr-shape (and (boundp 'x-pointer-shape) x-pointer-shape))
return-window)
(when (boundp 'x-pointer-xterm)
(setq x-pointer-shape x-pointer-xterm))
(setq return-window (select-window
(funcall special-display-function buf args)))
(raise-frame)
(setq x-pointer-shape old-ptr-shape)
return-window))
(add-to-list
'special-display-buffer-names
(list "*Help*" '1on1-display-*Help*-frame
(list '(height . 40))))
both C-h f and C-h v select the window showing *Help*.
martin
This bug report was last modified 10 years and 155 days ago.
Previous Next
GNU bug tracking system
Copyright (C) 1999 Darren O. Benham,
1997,2003 nCipher Corporation Ltd,
1994-97 Ian Jackson.