Update the description of startup in ELisp manual
* doc/lispref/os.texi (Startup Summary): Remove stale reference to window-system-initialization-alist. Reported by Zhang Haijun <ccsmile2008@outlook.com>.
This commit is contained in:
parent
18b42c6b4b
commit
91c4c46fd5
1 changed files with 15 additions and 10 deletions
|
@ -96,24 +96,29 @@ if requested by environment variables such as @env{LANG}.
|
||||||
It does some basic parsing of the command-line arguments.
|
It does some basic parsing of the command-line arguments.
|
||||||
|
|
||||||
@vindex initial-window-system@r{, and startup}
|
@vindex initial-window-system@r{, and startup}
|
||||||
@vindex window-system-initialization-alist
|
@findex window-system-initialization
|
||||||
@item
|
@item
|
||||||
If not running in batch mode, it initializes the window system that
|
If not running in batch mode, it initializes the window system that
|
||||||
the variable @code{initial-window-system} specifies (@pxref{Window
|
the variable @code{initial-window-system} specifies (@pxref{Window
|
||||||
Systems, initial-window-system}). The initialization function for
|
Systems, initial-window-system}). The initialization function,
|
||||||
each supported window system is specified by
|
@code{window-system-initialization}, is a @dfn{generic function}
|
||||||
@code{window-system-initialization-alist}. If the value
|
(@pxref{Generic Functions}) whose actual implementation is different
|
||||||
of @code{initial-window-system} is @var{windowsystem}, then the
|
for each supported window system. If the value of
|
||||||
appropriate initialization function is defined in the file
|
@code{initial-window-system} is @var{windowsystem}, then the
|
||||||
@file{term/@var{windowsystem}-win.el}. This file should have been
|
appropriate implementation of the initialization function is defined
|
||||||
compiled into the Emacs executable when it was built.
|
in the file @file{term/@var{windowsystem}-win.el}. This file should
|
||||||
|
have been compiled into the Emacs executable when it was built.
|
||||||
|
|
||||||
@item
|
@item
|
||||||
It runs the normal hook @code{before-init-hook}.
|
It runs the normal hook @code{before-init-hook}.
|
||||||
|
|
||||||
@item
|
@item
|
||||||
If appropriate, it creates a graphical frame. This is not done in
|
If appropriate, it creates a graphical frame. As part of creating the
|
||||||
batch (noninteractive) or daemon mode.
|
graphical frame, it initializes the window system specified by
|
||||||
|
@code{initial-frame-alist} and @code{default-frame-alist}
|
||||||
|
(@pxref{Initial Parameters}) for the graphical frame, by calling the
|
||||||
|
@code{window-system-initialization} function for that window system.
|
||||||
|
This is not done in batch (noninteractive) or daemon mode.
|
||||||
|
|
||||||
@item
|
@item
|
||||||
It initializes the initial frame's faces, and sets up the menu bar
|
It initializes the initial frame's faces, and sets up the menu bar
|
||||||
|
|
Loading…
Add table
Reference in a new issue