diff options
author | Phillip Lord <phillip.lord@russet.org.uk> | 2016-03-12 22:26:20 +0000 |
---|---|---|
committer | Phillip Lord <phillip.lord@russet.org.uk> | 2016-03-12 22:26:20 +0000 |
commit | d457fd9dc782465e1547f74021390c9d5951d6af (patch) | |
tree | b969f475a2434c3080d0f756bdfc237995ca5c2a /lisp/startup.el | |
parent | 983448dfa062e3e8512e79edf08dcf16ad56b8bd (diff) | |
download | emacs-d457fd9dc782465e1547f74021390c9d5951d6af.tar.gz |
Simplify "Visit New File" to "New File"
* doc/emacs/files.texi,lisp/menu-bar.el (menu-bar-file-menu),
lisp/startup.el(normal-mouse-start-screen,
normal-no-mouse-startup-screen): Change label "Visit New File" to "New
File".
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 15a79f6f5bf..a411891d1f6 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -1998,7 +1998,7 @@ To quit a partially entered command, type Control-g.\n") (insert " How to order printed manuals from the FSF\n") (insert "\nUseful tasks:\n") - (insert-button "Visit New File" + (insert-button "New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert (substitute-command-keys @@ -2075,7 +2075,7 @@ If you have no Meta key, you may instead type ESC followed by the character.)")) ;; Insert links to useful tasks (insert "\nUseful tasks:\n") - (insert-button "Visit New File" + (insert-button "New File" 'action (lambda (_button) (call-interactively 'find-file)) 'follow-link t) (insert "\t\t\t") |