mirror of
https://git.savannah.gnu.org/git/emacs.git
synced 2024-11-26 07:33:47 +00:00
Fix some interactions of make-help-screen and other Help forms (Bug#13190).
* help-macro.el (make-help-screen): Instead of switch-to-buffer use pop-to-buffer with NORECORD argument t. As buffer name use *Metahelp* with a leading space (Bug#13190).
This commit is contained in:
parent
17fdfc1530
commit
6ae57a6758
@ -1,3 +1,9 @@
|
||||
2012-12-17 Kelly Dean <kellydeanch@yahoo.com> (tiny change)
|
||||
|
||||
* help-macro.el (make-help-screen): Instead of switch-to-buffer
|
||||
use pop-to-buffer with NORECORD argument t. As buffer name use
|
||||
*Metahelp* with a leading space (Bug#13190).
|
||||
|
||||
2012-12-16 Romain Francoise <romain@orebokech.com>
|
||||
|
||||
* files.el (file-extended-attributes)
|
||||
|
@ -134,7 +134,7 @@ and then returns."
|
||||
(when (or (eq char ??) (eq char help-char)
|
||||
(memq char help-event-list))
|
||||
(setq config (current-window-configuration))
|
||||
(switch-to-buffer-other-window "*Help*")
|
||||
(pop-to-buffer " *Metahelp*" nil t)
|
||||
(and (fboundp 'make-frame)
|
||||
(not (eq (window-frame (selected-window))
|
||||
prev-frame))
|
||||
|
Loading…
Reference in New Issue
Block a user