|
| From: | Ken Brown |
| Subject: | C-h, F1, Backspace, and splash screen |
| Date: | Thu, 28 May 2009 12:26:27 -0400 |
| User-agent: | Thunderbird 2.0.0.21 (Windows/20090302) |
It seems that the problem is in startup.el:
;; If keys have their default meanings,
;; use precomputed string to save lots of time.
(if (and (eq (key-binding "\C-h") 'help-command)
(eq (key-binding "\C-xu") 'advertised-undo)
(eq (key-binding "\C-x\C-c") 'save-buffers-kill-terminal)
(eq (key-binding "\C-ht") 'help-with-tutorial)
(eq (key-binding "\C-hi") 'info)
(eq (key-binding "\C-hr") 'info-emacs-manual)
(eq (key-binding "\C-h\C-n") 'view-emacs-news))
(progn
(insert "
Get help\t C-h (Hold down CTRL and press h)
")
Given that C-h has been translated to DEL by
normal-erase-is-backspace-mode, shouldn't the startup code detect this
and tell the user that F1 is the help key? Or am I misunderstanding
something?
Ken
| [Prev in Thread] | Current Thread | [Next in Thread] |