~ubuntu-branches/ubuntu/karmic/emacs-snapshot/karmic

« back to all changes in this revision

Viewing changes to doc/emacs/entering.texi

  • Committer: Bazaar Package Importer
  • Author(s): Reinhard Tartler
  • Date: 2009-04-05 09:14:30 UTC
  • mto: This revision was merged to the branch mainline in revision 34.
  • Revision ID: james.westby@ubuntu.com-20090405091430-nw07lynn2arotjbe
Tags: upstream-20090320
ImportĀ upstreamĀ versionĀ 20090320

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
1
@c This is part of the Emacs manual.
2
2
@c Copyright (C) 1985, 1986, 1987, 1993, 1994, 1995, 2001, 2002, 2003,
3
 
@c   2004, 2005, 2006, 2007, 2008  Free Software Foundation, Inc.
 
3
@c   2004, 2005, 2006, 2007, 2008, 2009  Free Software Foundation, Inc.
4
4
@c See file emacs.texi for copying conditions.
5
5
@iftex
6
6
@chapter Entering and Exiting Emacs
25
25
 
26
26
@cindex startup screen
27
27
  When Emacs starts up, the initial frame displays a special buffer
28
 
named @samp{*GNU Emacs*}.  This buffer contains @dfn{links} to common
29
 
tasks that might be useful to beginning users.  For instance,
30
 
activating the @samp{Emacs Tutorial} link opens the Emacs tutorial;
31
 
this does the same thing as the command @kbd{C-h t}
32
 
(@code{help-with-tutorial}).  To activate a link, either move point
33
 
onto it and type @kbd{@key{RET}}, or click on it with @kbd{mouse-1}
34
 
(the left mouse button).
 
28
named @samp{*GNU Emacs*}.  This buffer contains some information about
 
29
Emacs, and includes @dfn{links} to common tasks that might be useful
 
30
to beginning users.  For instance, activating the @samp{Emacs
 
31
Tutorial} link opens the Emacs tutorial; this does the same thing as
 
32
the command @kbd{C-h t} (@code{help-with-tutorial}).  To activate a
 
33
link, either move point onto it and type @kbd{@key{RET}}, or click on
 
34
it with @kbd{mouse-1} (the left mouse button).
35
35
 
36
36
  Using a command line argument, you can tell Emacs to visit one or
37
37
more specific files as soon as it starts up.  For example,
63
63
certain Lisp files, call certain functions, and so forth.  These
64
64
features exist mainly for advanced users.  @xref{Emacs Invocation}.
65
65
 
 
66
@vindex inhibit-startup-screen
 
67
  If the value of the variable @code{inhibit-startup-screen} is
 
68
non-@code{nil}, Emacs does not display the startup screen.  In that
 
69
case, if one or more files were specified on the command line, Emacs
 
70
simply displays those files; otherwise, it displays a buffer named
 
71
@samp{*scratch*}, which can be used to evaluate Emacs Lisp expressions
 
72
interactively (@pxref{Lisp Interaction}).  You can set the variable
 
73
@code{inhibit-startup-screen} by using the Customize facility
 
74
(@pxref{Easy Customization}), or by editing your initialization file
 
75
(@pxref{Init File}).@footnote{Note that setting
 
76
@code{inhibit-startup-screen} in @file{site-start.el} doesn't work,
 
77
because the startup screen is set up before reading
 
78
@file{site-start.el}.  @xref{Init File}, for information about
 
79
@file{site-start.el}.}
 
80
 
66
81
@node Exiting, Basic, Entering Emacs, Top
67
82
@section Exiting Emacs
68
83
@cindex exiting
74
89
@item C-x C-c
75
90
Kill Emacs (@code{save-buffers-kill-terminal}).
76
91
@item C-z
77
 
Suspend Emacs (@code{suspend-emacs}) or iconify a frame
 
92
On a text terminal, suspend Emacs (@code{suspend-emacs}); on a
 
93
graphical display, iconify (or ``minimize'') the selected frame
78
94
(@code{iconify-or-deiconify-frame}).
79
95
@end table
80
96