aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1996-04-03 05:57:37 +0000
committerRichard M. Stallman1996-04-03 05:57:37 +0000
commit2e465cef3fea462e65d1aa88278787560770813d (patch)
treeec8423091993f5a4d3e4fde6e78b27bc7a168182
parentcf7e94a0dfbdb1e8b9bcb97e838a3f708f3cd0bb (diff)
downloademacs-2e465cef3fea462e65d1aa88278787560770813d.tar.gz
emacs-2e465cef3fea462e65d1aa88278787560770813d.zip
(command-line-1): Document the C- and M- conventions more completely.
-rw-r--r--lisp/startup.el14
1 files changed, 9 insertions, 5 deletions
diff --git a/lisp/startup.el b/lisp/startup.el
index 3b6b85570a5..1fd2b37de67 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -706,14 +706,14 @@ Copyright (C) 1996 Free Software Foundation, Inc.")
706 (eq (key-binding "\C-ht") 'help-with-tutorial) 706 (eq (key-binding "\C-ht") 'help-with-tutorial)
707 (eq (key-binding "\C-hi") 'info)) 707 (eq (key-binding "\C-hi") 'info))
708 (insert "\n 708 (insert "\n
709Type C-h for help; C-x u to undo changes. (`C-' means use CTRL key.) 709Type C-x C-c to exit Emacs.
710To kill the Emacs job, type C-x C-c. 710Type C-h for help; C-x u to undo changes.
711Type C-h t for a tutorial on using Emacs. 711Type C-h t for a tutorial on using Emacs.
712Type C-h i to enter Info, which you can use to read GNU documentation.") 712Type C-h i to enter Info, which you can use to read GNU documentation.")
713 (insert (substitute-command-keys 713 (insert (substitute-command-keys
714 (format "\n 714 (format "\n
715Type %s for help; \\[advertised-undo] to undo changes. (`C-' means use CTRL key.) 715Type \\[save-buffers-kill-emacs] to exit Emacs.
716To kill the Emacs job, type \\[save-buffers-kill-emacs]. 716Type %s for help; \\[advertised-undo] to undo changes.
717Type \\[help-with-tutorial] for a tutorial on using Emacs. 717Type \\[help-with-tutorial] for a tutorial on using Emacs.
718Type \\[info] to enter Info, which you can use to read GNU documentation." 718Type \\[info] to enter Info, which you can use to read GNU documentation."
719 (let ((where (where-is-internal 719 (let ((where (where-is-internal
@@ -721,11 +721,15 @@ Type \\[info] to enter Info, which you can use to read GNU documentation."
721 (if where 721 (if where
722 (key-description where) 722 (key-description where)
723 "M-x help")))))) 723 "M-x help"))))))
724 ;; Many users seem to have problems with these.
725 (insert "
726(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
727If you have no Meta key, you may instead type ESC followed by the character.)")
724 ;; Say how to use the menu bar 728 ;; Say how to use the menu bar
725 ;; if that is not with the mouse. 729 ;; if that is not with the mouse.
726 (if (not (assq 'display (frame-parameters))) 730 (if (not (assq 'display (frame-parameters)))
727 (if (eq (key-binding "\M-`") 'tmm-menubar) 731 (if (eq (key-binding "\M-`") 'tmm-menubar)
728 (insert "\n\nType F10, ESC ` or Meta-` to use the menu bar.") 732 (insert "\n\nType F10 or M-` to use the menu bar.")
729 (insert (substitute-command-keys 733 (insert (substitute-command-keys
730 "\n\nType \\[tmm-menubar] to use the menu bar.")))) 734 "\n\nType \\[tmm-menubar] to use the menu bar."))))
731 735