1992-05-30 21:11:25 +00:00
|
|
|
|
;;; startup.el --- process Emacs shell arguments
|
|
|
|
|
|
2005-03-06 00:48:46 +00:00
|
|
|
|
;; Copyright (C) 1985, 1986, 1992, 1994, 1995, 1996, 1997, 1998, 1999, 2000,
|
2008-01-04 03:13:06 +00:00
|
|
|
|
;; 2001, 2002, 2003, 2004, 2005, 2006, 2007, 2008
|
|
|
|
|
;; Free Software Foundation, Inc.
|
1992-07-22 02:58:21 +00:00
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;; Maintainer: FSF
|
1992-07-17 20:24:00 +00:00
|
|
|
|
;; Keywords: internal
|
1992-07-15 21:31:44 +00:00
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
;; This file is part of GNU Emacs.
|
|
|
|
|
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; GNU Emacs is free software: you can redistribute it and/or modify
|
1991-07-11 23:17:40 +00:00
|
|
|
|
;; it under the terms of the GNU General Public License as published by
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; the Free Software Foundation, either version 3 of the License, or
|
|
|
|
|
;; (at your option) any later version.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
|
|
|
|
;; GNU Emacs is distributed in the hope that it will be useful,
|
|
|
|
|
;; but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
;; MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
|
|
|
|
|
;; GNU General Public License for more details.
|
|
|
|
|
|
|
|
|
|
;; You should have received a copy of the GNU General Public License
|
2008-05-06 08:06:51 +00:00
|
|
|
|
;; along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; Commentary:
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
;; This file parses the command line and gets Emacs running. Options
|
|
|
|
|
;; on the command line are handled in precedence order. For priorities
|
|
|
|
|
;; see the structure standard_args in the emacs.c file.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1992-07-15 21:31:44 +00:00
|
|
|
|
;;; Code:
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(setq top-level '(normal-top-level))
|
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defvar command-line-processed nil
|
2001-11-16 18:34:06 +00:00
|
|
|
|
"Non-nil once command line has been processed.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defgroup initialization nil
|
2005-07-04 02:30:31 +00:00
|
|
|
|
"Emacs start-up procedure."
|
2007-08-15 23:24:17 +00:00
|
|
|
|
:group 'environment)
|
|
|
|
|
|
|
|
|
|
(defcustom initial-buffer-choice nil
|
|
|
|
|
"Buffer to show after starting Emacs.
|
2007-09-09 12:10:33 +00:00
|
|
|
|
If the value is nil and `inhibit-startup-screen' is nil, show the
|
2007-08-15 23:24:17 +00:00
|
|
|
|
startup screen. If the value is string, visit the specified file or
|
|
|
|
|
directory using `find-file'. If t, open the `*scratch*' buffer."
|
|
|
|
|
:type '(choice
|
2007-09-09 12:10:33 +00:00
|
|
|
|
(const :tag "Startup screen" nil)
|
2007-08-15 23:24:17 +00:00
|
|
|
|
(directory :tag "Directory" :value "~/")
|
|
|
|
|
(file :tag "File" :value "~/file.txt")
|
|
|
|
|
(const :tag "Lisp scratch buffer" t))
|
|
|
|
|
:version "23.1"
|
|
|
|
|
:group 'initialization)
|
1997-06-18 07:07:57 +00:00
|
|
|
|
|
2007-09-09 12:10:33 +00:00
|
|
|
|
(defcustom inhibit-startup-screen nil
|
2006-01-22 23:14:25 +00:00
|
|
|
|
"Non-nil inhibits the startup screen.
|
|
|
|
|
|
2007-04-09 17:07:40 +00:00
|
|
|
|
This is for use in your personal init file (but NOT site-start.el), once
|
|
|
|
|
you are familiar with the contents of the startup screen."
|
1997-06-18 07:07:57 +00:00
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'initialization)
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2007-09-09 12:10:33 +00:00
|
|
|
|
(defvaralias 'inhibit-splash-screen 'inhibit-startup-screen)
|
|
|
|
|
(defvaralias 'inhibit-startup-message 'inhibit-startup-screen)
|
2002-05-26 20:49:28 +00:00
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(defvar startup-screen-inhibit-startup-screen nil)
|
2002-05-26 20:49:28 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom inhibit-startup-echo-area-message nil
|
1994-02-12 20:01:43 +00:00
|
|
|
|
"*Non-nil inhibits the initial startup echo area message.
|
1997-06-18 07:07:57 +00:00
|
|
|
|
Setting this variable takes effect
|
|
|
|
|
only if you do it with the customization buffer
|
1998-06-20 22:06:30 +00:00
|
|
|
|
or if your `.emacs' file contains a line of this form:
|
1994-03-01 04:54:43 +00:00
|
|
|
|
(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\")
|
1994-06-14 00:21:40 +00:00
|
|
|
|
If your `.emacs' file is byte-compiled, use the following form instead:
|
|
|
|
|
(eval '(setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\"))
|
1994-02-12 20:01:43 +00:00
|
|
|
|
Thus, someone else using a copy of your `.emacs' file will see
|
1997-06-18 07:07:57 +00:00
|
|
|
|
the startup message unless he personally acts to inhibit it."
|
|
|
|
|
:type '(choice (const :tag "Don't inhibit")
|
|
|
|
|
(string :tag "Enter your user name, to inhibit"))
|
|
|
|
|
:group 'initialization)
|
1994-02-12 20:01:43 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom inhibit-default-init nil
|
|
|
|
|
"*Non-nil inhibits loading the `default' library."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'initialization)
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2001-10-05 09:24:51 +00:00
|
|
|
|
(defcustom inhibit-startup-buffer-menu nil
|
|
|
|
|
"*Non-nil inhibits display of buffer list when more than 2 files are loaded."
|
|
|
|
|
:type 'boolean
|
|
|
|
|
:group 'initialization)
|
|
|
|
|
|
1996-12-16 01:33:02 +00:00
|
|
|
|
(defvar command-switch-alist nil
|
1991-07-11 23:17:40 +00:00
|
|
|
|
"Alist of command-line switches.
|
|
|
|
|
Elements look like (SWITCH-STRING . HANDLER-FUNCTION).
|
2004-04-16 12:51:06 +00:00
|
|
|
|
HANDLER-FUNCTION receives the switch string as its sole argument;
|
|
|
|
|
the remaining command-line args are in the variable `command-line-args-left'.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1994-07-25 21:45:36 +00:00
|
|
|
|
(defvar command-line-args-left nil
|
|
|
|
|
"List of command-line args not yet processed.")
|
|
|
|
|
|
2007-09-30 20:43:14 +00:00
|
|
|
|
(defvaralias 'argv 'command-line-args-left
|
|
|
|
|
"List of command-line args not yet processed.
|
|
|
|
|
This is a convenience alias, so that one can write \(pop argv\)
|
|
|
|
|
inside of --eval command line arguments in order to access
|
|
|
|
|
following arguments.")
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defvar command-line-functions nil ;; lrs 7/31/89
|
|
|
|
|
"List of functions to process unrecognized command-line arguments.
|
|
|
|
|
Each function should access the dynamically bound variables
|
1994-03-30 16:04:08 +00:00
|
|
|
|
`argi' (the current argument) and `command-line-args-left' (the remaining
|
1991-07-11 23:17:40 +00:00
|
|
|
|
arguments). The function should return non-nil only if it recognizes and
|
1994-03-30 16:04:08 +00:00
|
|
|
|
processes `argi'. If it does so, it may consume successive arguments by
|
|
|
|
|
altering `command-line-args-left' to remove them.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1994-04-22 18:28:22 +00:00
|
|
|
|
(defvar command-line-default-directory nil
|
|
|
|
|
"Default directory to use for command line arguments.
|
|
|
|
|
This is normally copied from `default-directory' when Emacs starts.")
|
|
|
|
|
|
1995-12-29 20:00:39 +00:00
|
|
|
|
;;; This is here, rather than in x-win.el, so that we can ignore these
|
|
|
|
|
;;; options when we are not using X.
|
2000-01-19 14:39:01 +00:00
|
|
|
|
(defconst command-line-x-option-alist
|
1995-12-29 20:00:39 +00:00
|
|
|
|
'(("-bw" 1 x-handle-numeric-switch border-width)
|
|
|
|
|
("-d" 1 x-handle-display)
|
|
|
|
|
("-display" 1 x-handle-display)
|
1996-06-28 07:58:29 +00:00
|
|
|
|
("-name" 1 x-handle-name-switch)
|
1996-04-11 05:23:19 +00:00
|
|
|
|
("-title" 1 x-handle-switch title)
|
|
|
|
|
("-T" 1 x-handle-switch title)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("-r" 0 x-handle-switch reverse t)
|
|
|
|
|
("-rv" 0 x-handle-switch reverse t)
|
|
|
|
|
("-reverse" 0 x-handle-switch reverse t)
|
|
|
|
|
("-reverse-video" 0 x-handle-switch reverse t)
|
|
|
|
|
("-fn" 1 x-handle-switch font)
|
|
|
|
|
("-font" 1 x-handle-switch font)
|
2002-01-13 11:47:08 +00:00
|
|
|
|
("-fs" 0 x-handle-initial-switch fullscreen fullboth)
|
|
|
|
|
("-fw" 0 x-handle-initial-switch fullscreen fullwidth)
|
|
|
|
|
("-fh" 0 x-handle-initial-switch fullscreen fullheight)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("-ib" 1 x-handle-numeric-switch internal-border-width)
|
1996-01-01 23:50:19 +00:00
|
|
|
|
("-g" 1 x-handle-geometry)
|
2000-04-24 14:00:07 +00:00
|
|
|
|
("-lsp" 1 x-handle-numeric-switch line-spacing)
|
1996-01-01 23:50:19 +00:00
|
|
|
|
("-geometry" 1 x-handle-geometry)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("-fg" 1 x-handle-switch foreground-color)
|
|
|
|
|
("-foreground" 1 x-handle-switch foreground-color)
|
|
|
|
|
("-bg" 1 x-handle-switch background-color)
|
|
|
|
|
("-background" 1 x-handle-switch background-color)
|
|
|
|
|
("-ms" 1 x-handle-switch mouse-color)
|
2005-10-12 14:22:36 +00:00
|
|
|
|
("-nbi" 0 x-handle-switch icon-type nil)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("-iconic" 0 x-handle-iconic)
|
|
|
|
|
("-xrm" 1 x-handle-xrm-switch)
|
|
|
|
|
("-cr" 1 x-handle-switch cursor-color)
|
|
|
|
|
("-vb" 0 x-handle-switch vertical-scroll-bars t)
|
|
|
|
|
("-hb" 0 x-handle-switch horizontal-scroll-bars t)
|
|
|
|
|
("-bd" 1 x-handle-switch)
|
|
|
|
|
("--border-width" 1 x-handle-numeric-switch border-width)
|
|
|
|
|
("--display" 1 x-handle-display)
|
1996-06-28 07:58:29 +00:00
|
|
|
|
("--name" 1 x-handle-name-switch)
|
1996-04-11 05:10:40 +00:00
|
|
|
|
("--title" 1 x-handle-switch title)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("--reverse-video" 0 x-handle-switch reverse t)
|
|
|
|
|
("--font" 1 x-handle-switch font)
|
2002-01-13 11:47:08 +00:00
|
|
|
|
("--fullscreen" 0 x-handle-initial-switch fullscreen fullboth)
|
|
|
|
|
("--fullwidth" 0 x-handle-initial-switch fullscreen fullwidth)
|
|
|
|
|
("--fullheight" 0 x-handle-initial-switch fullscreen fullheight)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("--internal-border" 1 x-handle-numeric-switch internal-border-width)
|
1996-01-01 23:50:19 +00:00
|
|
|
|
("--geometry" 1 x-handle-geometry)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("--foreground-color" 1 x-handle-switch foreground-color)
|
|
|
|
|
("--background-color" 1 x-handle-switch background-color)
|
|
|
|
|
("--mouse-color" 1 x-handle-switch mouse-color)
|
2007-07-22 12:13:11 +00:00
|
|
|
|
("--no-bitmap-icon" 0 x-handle-no-bitmap-icon)
|
1995-12-29 20:00:39 +00:00
|
|
|
|
("--iconic" 0 x-handle-iconic)
|
|
|
|
|
("--xrm" 1 x-handle-xrm-switch)
|
|
|
|
|
("--cursor-color" 1 x-handle-switch cursor-color)
|
|
|
|
|
("--vertical-scroll-bars" 0 x-handle-switch vertical-scroll-bars t)
|
2000-04-24 14:00:07 +00:00
|
|
|
|
("--line-spacing" 1 x-handle-numeric-switch line-spacing)
|
2003-03-05 16:31:44 +00:00
|
|
|
|
("--border-color" 1 x-handle-switch border-color)
|
2008-02-07 14:05:53 +00:00
|
|
|
|
("--smid" 1 x-handle-smid)
|
|
|
|
|
("--parent-id" 1 x-handle-parent-id))
|
1995-12-29 20:00:39 +00:00
|
|
|
|
"Alist of X Windows options.
|
|
|
|
|
Each element has the form
|
|
|
|
|
(NAME NUMARGS HANDLER FRAME-PARAM VALUE)
|
|
|
|
|
where NAME is the option name string, NUMARGS is the number of arguments
|
|
|
|
|
that the option accepts, HANDLER is a function to call to handle the option.
|
|
|
|
|
FRAME-PARAM (optional) is the frame parameter this option specifies,
|
|
|
|
|
and VALUE is the value which is given to that frame parameter
|
|
|
|
|
\(most options use the argument for this, so VALUE is not present).")
|
|
|
|
|
|
2008-07-15 18:15:18 +00:00
|
|
|
|
(defconst command-line-ns-option-alist
|
|
|
|
|
'(("-NSAutoLaunch" 1 ns-ignore-1-arg)
|
|
|
|
|
("-NXAutoLaunch" 1 ns-ignore-1-arg)
|
2008-08-07 03:10:08 +00:00
|
|
|
|
("-macosx" 0 ignore)
|
2008-07-15 18:15:18 +00:00
|
|
|
|
("-NSHost" 1 ns-ignore-1-arg)
|
|
|
|
|
("-_NSMachLaunch" 1 ns-ignore-1-arg)
|
|
|
|
|
("-MachLaunch" 1 ns-ignore-1-arg)
|
|
|
|
|
("-NXOpen" 1 ns-ignore-1-arg)
|
|
|
|
|
("-NSOpen" 1 ns-handle-nxopen)
|
|
|
|
|
("-NXOpenTemp" 1 ns-ignore-1-arg)
|
|
|
|
|
("-NSOpenTemp" 1 ns-handle-nxopentemp)
|
|
|
|
|
("-GSFilePath" 1 ns-handle-nxopen)
|
|
|
|
|
;;("-bw" . x-handle-numeric-switch)
|
|
|
|
|
;;("-d" . x-handle-display)
|
|
|
|
|
;;("-display" . x-handle-display)
|
|
|
|
|
("-name" 1 ns-handle-name-switch)
|
|
|
|
|
("-title" 1 ns-handle-switch title)
|
|
|
|
|
("-T" 1 ns-handle-switch title)
|
|
|
|
|
("-r" 0 ns-handle-switch reverse t)
|
|
|
|
|
("-rv" 0 ns-handle-switch reverse t)
|
|
|
|
|
("-reverse" 0 ns-handle-switch reverse t)
|
|
|
|
|
("-fn" 1 ns-handle-switch font)
|
|
|
|
|
("-font" 1 ns-handle-switch font)
|
|
|
|
|
("-ib" 1 ns-handle-numeric-switch internal-border-width)
|
|
|
|
|
;;("-g" . x-handle-geometry)
|
|
|
|
|
;;("-geometry" . x-handle-geometry)
|
|
|
|
|
("-fg" 1 ns-handle-switch foreground-color)
|
|
|
|
|
("-foreground" 1 ns-handle-switch foreground-color)
|
|
|
|
|
("-bg" 1 ns-handle-switch background-color)
|
|
|
|
|
("-background" 1 ns-handle-switch background-color)
|
|
|
|
|
; ("-ms" 1 ns-handle-switch mouse-color)
|
|
|
|
|
("-itype" 0 ns-handle-switch icon-type t)
|
|
|
|
|
("-i" 0 ns-handle-switch icon-type t)
|
|
|
|
|
("-iconic" 0 ns-handle-iconic icon-type t)
|
|
|
|
|
;;("-xrm" . x-handle-xrm-switch)
|
|
|
|
|
("-cr" 1 ns-handle-switch cursor-color)
|
|
|
|
|
("-vb" 0 ns-handle-switch vertical-scroll-bars t)
|
|
|
|
|
("-hb" 0 ns-handle-switch horizontal-scroll-bars t)
|
|
|
|
|
("-bd" 1 ns-handle-switch)
|
|
|
|
|
;; ("--border-width" 1 ns-handle-numeric-switch border-width)
|
|
|
|
|
;; ("--display" 1 ns-handle-display)
|
|
|
|
|
("--name" 1 ns-handle-name-switch)
|
|
|
|
|
("--title" 1 ns-handle-switch title)
|
|
|
|
|
("--reverse-video" 0 ns-handle-switch reverse t)
|
|
|
|
|
("--font" 1 ns-handle-switch font)
|
|
|
|
|
("--internal-border" 1 ns-handle-numeric-switch internal-border-width)
|
|
|
|
|
;; ("--geometry" 1 ns-handle-geometry)
|
|
|
|
|
("--foreground-color" 1 ns-handle-switch foreground-color)
|
|
|
|
|
("--background-color" 1 ns-handle-switch background-color)
|
|
|
|
|
("--mouse-color" 1 ns-handle-switch mouse-color)
|
|
|
|
|
("--icon-type" 0 ns-handle-switch icon-type t)
|
|
|
|
|
("--iconic" 0 ns-handle-iconic)
|
|
|
|
|
;; ("--xrm" 1 ns-handle-xrm-switch)
|
|
|
|
|
("--cursor-color" 1 ns-handle-switch cursor-color)
|
|
|
|
|
("--vertical-scroll-bars" 0 ns-handle-switch vertical-scroll-bars t)
|
|
|
|
|
("--border-color" 1 ns-handle-switch border-width))
|
|
|
|
|
"Alist of NS options.
|
|
|
|
|
Each element has the form
|
|
|
|
|
(NAME NUMARGS HANDLER FRAME-PARAM VALUE)
|
|
|
|
|
where NAME is the option name string, NUMARGS is the number of arguments
|
|
|
|
|
that the option accepts, HANDLER is a function to call to handle the option.
|
|
|
|
|
FRAME-PARAM (optional) is the frame parameter this option specifies,
|
|
|
|
|
and VALUE is the value which is given to that frame parameter
|
|
|
|
|
\(most options use the argument for this, so VALUE is not present).")
|
|
|
|
|
|
|
|
|
|
|
1992-06-04 19:58:44 +00:00
|
|
|
|
(defvar before-init-hook nil
|
1996-02-21 21:21:31 +00:00
|
|
|
|
"Normal hook run after handling urgent options but before loading init files.")
|
1991-08-01 18:50:36 +00:00
|
|
|
|
|
1992-06-04 19:58:44 +00:00
|
|
|
|
(defvar after-init-hook nil
|
1996-02-21 21:21:31 +00:00
|
|
|
|
"Normal hook run after loading the init files, `~/.emacs' and `default.el'.
|
|
|
|
|
There is no `condition-case' around the running of these functions;
|
|
|
|
|
therefore, if you set `debug-on-error' non-nil in `.emacs',
|
|
|
|
|
an error in one of these functions will invoke the debugger.")
|
|
|
|
|
|
2008-02-16 22:20:12 +00:00
|
|
|
|
(defvar before-init-time nil
|
|
|
|
|
"Value of `current-time' before Emacs begins initialization.")
|
2008-02-11 00:24:16 +00:00
|
|
|
|
|
2008-02-16 23:17:51 +00:00
|
|
|
|
(defvar after-init-time nil
|
|
|
|
|
"Value of `current-time' after loading the init files.")
|
|
|
|
|
|
1996-02-21 21:21:31 +00:00
|
|
|
|
(defvar emacs-startup-hook nil
|
|
|
|
|
"Normal hook run after loading init files and handling the command line.")
|
1992-06-04 19:58:44 +00:00
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defvar term-setup-hook nil
|
1996-02-21 21:21:31 +00:00
|
|
|
|
"Normal hook run after loading terminal-specific Lisp code.
|
|
|
|
|
It also follows `emacs-startup-hook'. This hook exists for users to set,
|
1991-07-11 23:17:40 +00:00
|
|
|
|
so as to override the definitions made by the terminal-specific file.
|
|
|
|
|
Emacs never sets this variable itself.")
|
|
|
|
|
|
2003-02-23 15:16:29 +00:00
|
|
|
|
(defvar inhibit-startup-hooks nil
|
|
|
|
|
"Non-nil means don't run `term-setup-hook' and `emacs-startup-hook'.
|
|
|
|
|
This is because we already did so.")
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defvar keyboard-type nil
|
1994-03-30 16:04:08 +00:00
|
|
|
|
"The brand of keyboard you are using.
|
2005-07-15 14:49:54 +00:00
|
|
|
|
This variable is used to define the proper function and keypad
|
|
|
|
|
keys for use under X. It is used in a fashion analogous to the
|
|
|
|
|
environment variable TERM.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
|
|
|
|
(defvar window-setup-hook nil
|
1994-03-30 16:04:08 +00:00
|
|
|
|
"Normal hook run to initialize window system display.
|
|
|
|
|
Emacs runs this hook after processing the command line arguments and loading
|
|
|
|
|
the user's init file.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom initial-major-mode 'lisp-interaction-mode
|
2007-03-19 05:37:58 +00:00
|
|
|
|
"Major mode command symbol to use for the initial `*scratch*' buffer."
|
1997-09-15 23:19:58 +00:00
|
|
|
|
:type 'function
|
1997-06-18 07:07:57 +00:00
|
|
|
|
:group 'initialization)
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2006-01-12 02:27:00 +00:00
|
|
|
|
(defvar init-file-user nil
|
1991-07-11 23:17:40 +00:00
|
|
|
|
"Identity of user whose `.emacs' file is or was read.
|
1996-12-16 01:33:02 +00:00
|
|
|
|
The value is nil if `-q' or `--no-init-file' was specified,
|
|
|
|
|
meaning do not load any init file.
|
|
|
|
|
|
2006-01-07 15:12:32 +00:00
|
|
|
|
Otherwise, the value may be an empty string, meaning
|
|
|
|
|
use the init file for the user who originally logged in,
|
|
|
|
|
or it may be a string containing a user's name meaning
|
|
|
|
|
use that person's init file.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1994-04-20 06:13:43 +00:00
|
|
|
|
In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
|
|
|
|
|
evaluates to the name of the directory where the `.emacs' file was
|
1995-03-22 04:50:15 +00:00
|
|
|
|
looked for.
|
|
|
|
|
|
|
|
|
|
Setting `init-file-user' does not prevent Emacs from loading
|
2006-01-12 02:27:00 +00:00
|
|
|
|
`site-start.el'. The only way to do that is to use `--no-site-file'.")
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom site-run-file "site-start"
|
1993-08-13 06:01:05 +00:00
|
|
|
|
"File containing site-wide run-time initializations.
|
|
|
|
|
This file is loaded at run-time before `~/.emacs'. It contains inits
|
|
|
|
|
that need to be in place for the entire site, but which, due to their
|
2004-08-20 22:40:34 +00:00
|
|
|
|
higher incidence of change, don't make sense to load into Emacs's
|
1993-08-13 06:01:05 +00:00
|
|
|
|
dumped image. Thus, the run-time load order is: 1. file described in
|
1995-03-22 04:50:15 +00:00
|
|
|
|
this variable, if non-nil; 2. `~/.emacs'; 3. `default.el'.
|
|
|
|
|
|
|
|
|
|
Don't use the `site-start.el' file for things some users may not like.
|
|
|
|
|
Put them in `default.el' instead, so that users can more easily
|
|
|
|
|
override them. Users can prevent loading `default.el' with the `-q'
|
|
|
|
|
option or by setting `inhibit-default-init' in their own init files,
|
|
|
|
|
but inhibiting `site-start.el' requires `--no-site-file', which
|
2004-12-28 15:30:39 +00:00
|
|
|
|
is less convenient.
|
|
|
|
|
|
|
|
|
|
This variable is defined for customization so as to make
|
|
|
|
|
it visible in the relevant context. However, actually customizing it
|
|
|
|
|
is not allowed, since it would not work anyway. The only way to set
|
2005-07-15 14:49:54 +00:00
|
|
|
|
this variable usefully is to set it while building and dumping Emacs."
|
1998-09-18 09:22:48 +00:00
|
|
|
|
:type '(choice (const :tag "none" nil) string)
|
2004-12-28 15:30:39 +00:00
|
|
|
|
:group 'initialization
|
|
|
|
|
:initialize 'custom-initialize-default
|
|
|
|
|
:set '(lambda (variable value)
|
|
|
|
|
(error "Customizing `site-run-file' does not work")))
|
1993-08-13 06:01:05 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom mail-host-address nil
|
|
|
|
|
"*Name of this machine, for purposes of naming users."
|
|
|
|
|
:type '(choice (const nil) string)
|
|
|
|
|
:group 'mail)
|
1994-09-22 04:56:49 +00:00
|
|
|
|
|
2002-09-29 17:53:58 +00:00
|
|
|
|
(defcustom user-mail-address (if command-line-processed
|
2006-07-22 10:37:52 +00:00
|
|
|
|
(or (getenv "EMAIL")
|
|
|
|
|
(concat (user-login-name) "@"
|
|
|
|
|
(or mail-host-address
|
|
|
|
|
(system-name))))
|
2002-09-29 17:53:58 +00:00
|
|
|
|
;; Empty string means "not set yet".
|
|
|
|
|
"")
|
1995-11-10 17:27:52 +00:00
|
|
|
|
"*Full mailing address of this user.
|
2006-07-22 10:37:52 +00:00
|
|
|
|
This is initialized with environment variable `EMAIL' or, as a
|
|
|
|
|
fallback, using `mail-host-address'. This is done after your
|
|
|
|
|
init file is read, in case it sets `mail-host-address'."
|
1997-06-18 07:07:57 +00:00
|
|
|
|
:type 'string
|
|
|
|
|
:group 'mail)
|
1994-06-25 00:34:11 +00:00
|
|
|
|
|
1997-06-18 07:07:57 +00:00
|
|
|
|
(defcustom auto-save-list-file-prefix
|
2000-04-24 18:43:25 +00:00
|
|
|
|
(cond ((eq system-type 'ms-dos)
|
|
|
|
|
;; MS-DOS cannot have initial dot, and allows only 8.3 names
|
2007-06-13 00:06:10 +00:00
|
|
|
|
(concat user-emacs-directory "auto-save.list/_s"))
|
2000-04-24 18:43:25 +00:00
|
|
|
|
(t
|
2007-06-13 00:06:10 +00:00
|
|
|
|
(concat user-emacs-directory "auto-save-list/.saves-")))
|
1995-12-21 18:10:03 +00:00
|
|
|
|
"Prefix for generating `auto-save-list-file-name'.
|
|
|
|
|
This is used after reading your `.emacs' file to initialize
|
|
|
|
|
`auto-save-list-file-name', by appending Emacs's pid and the system name,
|
|
|
|
|
if you have not already set `auto-save-list-file-name' yourself.
|
2000-04-24 18:43:25 +00:00
|
|
|
|
Directories in the prefix will be created if necessary.
|
1995-12-21 18:10:03 +00:00
|
|
|
|
Set this to nil if you want to prevent `auto-save-list-file-name'
|
1997-06-18 07:07:57 +00:00
|
|
|
|
from being initialized."
|
1997-10-15 23:55:45 +00:00
|
|
|
|
:type '(choice (const :tag "Don't record a session's auto save list" nil)
|
|
|
|
|
string)
|
1997-06-18 07:07:57 +00:00
|
|
|
|
:group 'auto-save)
|
1995-10-04 19:41:15 +00:00
|
|
|
|
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(defvar emacs-quick-startup nil)
|
|
|
|
|
|
2005-04-10 23:36:22 +00:00
|
|
|
|
(defvar emacs-basic-display nil)
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defvar init-file-debug nil)
|
|
|
|
|
|
2006-11-05 15:19:55 +00:00
|
|
|
|
(defvar init-file-had-error nil
|
|
|
|
|
"Non-nil if there was an error loading the user's init file.")
|
1993-11-22 06:35:37 +00:00
|
|
|
|
|
1999-01-26 22:10:15 +00:00
|
|
|
|
(defvar normal-top-level-add-subdirs-inode-list nil)
|
|
|
|
|
|
2005-03-05 04:31:59 +00:00
|
|
|
|
(defvar no-blinking-cursor nil)
|
|
|
|
|
|
2005-07-03 16:13:37 +00:00
|
|
|
|
(defvar default-frame-background-mode)
|
|
|
|
|
|
2003-06-30 10:36:35 +00:00
|
|
|
|
(defvar pure-space-overflow nil
|
|
|
|
|
"Non-nil if building Emacs overflowed pure space.")
|
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(defvar pure-space-overflow-message "\
|
|
|
|
|
Warning Warning!!! Pure space overflow !!!Warning Warning
|
|
|
|
|
\(See the node Pure Storage in the Lisp manual for details.)\n")
|
|
|
|
|
|
2007-08-24 02:57:53 +00:00
|
|
|
|
(defvar tutorial-directory nil
|
2007-08-22 07:41:58 +00:00
|
|
|
|
"Directory containing the Emacs TUTORIAL files.")
|
|
|
|
|
|
2007-08-24 02:57:53 +00:00
|
|
|
|
;; Get correct value in a dumped, installed Emacs.
|
|
|
|
|
(eval-at-startup
|
|
|
|
|
(setq tutorial-directory (file-name-as-directory
|
|
|
|
|
(expand-file-name "tutorials" data-directory))))
|
|
|
|
|
|
1998-03-23 00:15:20 +00:00
|
|
|
|
(defun normal-top-level-add-subdirs-to-load-path ()
|
1998-05-11 01:17:48 +00:00
|
|
|
|
"Add all subdirectories of current directory to `load-path'.
|
|
|
|
|
More precisely, this uses only the subdirectories whose names
|
1998-06-02 13:21:13 +00:00
|
|
|
|
start with letters or digits; it excludes any subdirectory named `RCS'
|
|
|
|
|
or `CVS', and any subdirectory that contains a file named `.nosearch'."
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(let (dirs
|
1999-01-26 22:10:15 +00:00
|
|
|
|
attrs
|
1998-03-23 00:15:20 +00:00
|
|
|
|
(pending (list default-directory)))
|
|
|
|
|
;; This loop does a breadth-first tree walk on DIR's subtree,
|
|
|
|
|
;; putting each subdir into DIRS as its contents are examined.
|
|
|
|
|
(while pending
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(push (pop pending) dirs)
|
2001-07-22 10:53:30 +00:00
|
|
|
|
(let* ((this-dir (car dirs))
|
|
|
|
|
(contents (directory-files this-dir))
|
|
|
|
|
(default-directory this-dir)
|
2004-08-20 22:40:34 +00:00
|
|
|
|
(canonicalized (if (fboundp 'untranslated-canonical-name)
|
|
|
|
|
(untranslated-canonical-name this-dir))))
|
2001-07-22 10:53:30 +00:00
|
|
|
|
;; The Windows version doesn't report meaningful inode
|
|
|
|
|
;; numbers, so use the canonicalized absolute file name of the
|
|
|
|
|
;; directory instead.
|
|
|
|
|
(setq attrs (or canonicalized
|
|
|
|
|
(nthcdr 10 (file-attributes this-dir))))
|
1999-01-26 22:10:15 +00:00
|
|
|
|
(unless (member attrs normal-top-level-add-subdirs-inode-list)
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(push attrs normal-top-level-add-subdirs-inode-list)
|
|
|
|
|
(dolist (file contents)
|
2000-12-07 15:01:59 +00:00
|
|
|
|
;; The lower-case variants of RCS and CVS are for DOS/Windows.
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(unless (member file '("." ".." "RCS" "CVS" "rcs" "cvs"))
|
|
|
|
|
(when (and (string-match "\\`[[:alnum:]]" file)
|
1999-07-05 16:00:07 +00:00
|
|
|
|
;; Avoid doing a `stat' when it isn't necessary
|
|
|
|
|
;; because that can cause trouble when an NFS server
|
|
|
|
|
;; is down.
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(not (string-match "\\.elc?\\'" file))
|
|
|
|
|
(file-directory-p file))
|
|
|
|
|
(let ((expanded (expand-file-name file)))
|
1999-01-26 22:10:15 +00:00
|
|
|
|
(unless (file-exists-p (expand-file-name ".nosearch"
|
|
|
|
|
expanded))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(setq pending (nconc pending (list expanded)))))))))))
|
1998-03-26 04:26:27 +00:00
|
|
|
|
(normal-top-level-add-to-load-path (cdr (nreverse dirs)))))
|
1998-03-23 00:15:20 +00:00
|
|
|
|
|
1998-05-21 20:32:09 +00:00
|
|
|
|
;; This function is called from a subdirs.el file.
|
|
|
|
|
;; It assumes that default-directory is the directory
|
|
|
|
|
;; in which the subdirs.el file exists,
|
|
|
|
|
;; and it adds to load-path the subdirs of that directory
|
|
|
|
|
;; as specified in DIRS. Normally the elements of DIRS are relative.
|
1994-10-11 08:22:38 +00:00
|
|
|
|
(defun normal-top-level-add-to-load-path (dirs)
|
1997-09-19 18:15:57 +00:00
|
|
|
|
(let ((tail load-path)
|
|
|
|
|
(thisdir (directory-file-name default-directory)))
|
|
|
|
|
(while (and tail
|
2000-04-26 17:34:37 +00:00
|
|
|
|
;;Don't go all the way to the nil terminator.
|
|
|
|
|
(cdr tail)
|
1997-09-19 18:15:57 +00:00
|
|
|
|
(not (equal thisdir (car tail)))
|
|
|
|
|
(not (and (memq system-type '(ms-dos windows-nt))
|
|
|
|
|
(equal (downcase thisdir) (downcase (car tail))))))
|
|
|
|
|
(setq tail (cdr tail)))
|
2000-04-26 17:34:37 +00:00
|
|
|
|
;;Splice the new section in.
|
|
|
|
|
(when tail
|
|
|
|
|
(setcdr tail (append (mapcar 'expand-file-name dirs) (cdr tail))))))
|
1994-10-11 08:22:38 +00:00
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defun normal-top-level ()
|
|
|
|
|
(if command-line-processed
|
|
|
|
|
(message "Back to top level.")
|
|
|
|
|
(setq command-line-processed t)
|
1995-04-08 05:05:32 +00:00
|
|
|
|
(let ((dir default-directory))
|
2004-08-20 22:40:34 +00:00
|
|
|
|
(with-current-buffer "*Messages*"
|
2008-06-10 16:08:48 +00:00
|
|
|
|
;; Make it easy to do like "tail -f".
|
|
|
|
|
(set (make-local-variable 'window-point-insertion-type) t)
|
|
|
|
|
;; Give *Messages* the same default-directory as *scratch*,
|
|
|
|
|
;; just to keep things predictable.
|
1995-04-08 05:05:32 +00:00
|
|
|
|
(setq default-directory dir)))
|
2002-10-02 16:33:06 +00:00
|
|
|
|
;; `user-full-name' is now known; reset its standard-value here.
|
|
|
|
|
(put 'user-full-name 'standard-value
|
|
|
|
|
(list (default-value 'user-full-name)))
|
1998-06-19 16:56:51 +00:00
|
|
|
|
;; For root, preserve owner and group when editing files.
|
|
|
|
|
(if (equal (user-uid) 0)
|
|
|
|
|
(setq backup-by-copying-when-mismatch t))
|
1994-10-11 08:22:38 +00:00
|
|
|
|
;; Look in each dir in load-path for a subdirs.el file.
|
|
|
|
|
;; If we find one, load it, which will add the appropriate subdirs
|
|
|
|
|
;; of that dir into load-path,
|
2000-08-17 01:08:11 +00:00
|
|
|
|
;; Look for a leim-list.el file too. Loading it will register
|
|
|
|
|
;; available input methods.
|
2005-05-25 14:18:45 +00:00
|
|
|
|
(let ((tail load-path) dir)
|
|
|
|
|
(while tail
|
|
|
|
|
(setq dir (car tail))
|
|
|
|
|
(let ((default-directory dir))
|
|
|
|
|
(load (expand-file-name "subdirs.el") t t t))
|
|
|
|
|
(let ((default-directory dir))
|
|
|
|
|
(load (expand-file-name "leim-list.el") t t t))
|
|
|
|
|
;; We don't use a dolist loop and we put this "setq-cdr" command at
|
|
|
|
|
;; the end, because the subdirs.el files may add elements to the end
|
|
|
|
|
;; of load-path and we want to take it into account.
|
|
|
|
|
(setq tail (cdr tail))))
|
2008-07-31 05:33:56 +00:00
|
|
|
|
;; If the PWD environment variable isn't accurate, delete it.
|
|
|
|
|
(let ((pwd (getenv "PWD")))
|
|
|
|
|
(and (stringp pwd)
|
|
|
|
|
;; Use FOO/., so that if FOO is a symlink, file-attributes
|
|
|
|
|
;; describes the directory linked to, not FOO itself.
|
|
|
|
|
(or (equal (file-attributes
|
|
|
|
|
(concat (file-name-as-directory pwd) "."))
|
|
|
|
|
(file-attributes
|
|
|
|
|
(concat (file-name-as-directory default-directory)
|
|
|
|
|
".")))
|
|
|
|
|
(setq process-environment
|
|
|
|
|
(delete (concat "PWD=" pwd)
|
|
|
|
|
process-environment)))))
|
1992-06-10 02:47:07 +00:00
|
|
|
|
(setq default-directory (abbreviate-file-name default-directory))
|
1994-05-07 00:21:24 +00:00
|
|
|
|
(let ((menubar-bindings-done nil))
|
|
|
|
|
(unwind-protect
|
|
|
|
|
(command-line)
|
|
|
|
|
;; Do this again, in case .emacs defined more abbreviations.
|
|
|
|
|
(setq default-directory (abbreviate-file-name default-directory))
|
1995-10-23 16:59:47 +00:00
|
|
|
|
;; Specify the file for recording all the auto save files of this session.
|
|
|
|
|
;; This is used by recover-session.
|
1995-12-21 18:10:03 +00:00
|
|
|
|
(or auto-save-list-file-name
|
|
|
|
|
(and auto-save-list-file-prefix
|
|
|
|
|
(setq auto-save-list-file-name
|
1996-01-01 23:50:19 +00:00
|
|
|
|
;; Under MS-DOS our PID is almost always reused between
|
|
|
|
|
;; Emacs invocations. We need something more unique.
|
2000-05-02 12:03:43 +00:00
|
|
|
|
(cond ((eq system-type 'ms-dos)
|
|
|
|
|
;; We are going to access the auto-save
|
|
|
|
|
;; directory, so make sure it exists.
|
|
|
|
|
(make-directory
|
|
|
|
|
(file-name-directory auto-save-list-file-prefix)
|
|
|
|
|
t)
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(concat
|
2000-05-02 12:03:43 +00:00
|
|
|
|
(make-temp-name
|
|
|
|
|
(expand-file-name
|
|
|
|
|
auto-save-list-file-prefix))
|
|
|
|
|
"~"))
|
|
|
|
|
(t
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(format "%s%d-%s~"
|
|
|
|
|
auto-save-list-file-prefix
|
|
|
|
|
(emacs-pid)
|
|
|
|
|
(system-name))))))))
|
2003-02-23 15:16:29 +00:00
|
|
|
|
(unless inhibit-startup-hooks
|
|
|
|
|
(run-hooks 'emacs-startup-hook)
|
|
|
|
|
(and term-setup-hook
|
|
|
|
|
(run-hooks 'term-setup-hook)))
|
2001-07-10 12:55:44 +00:00
|
|
|
|
|
|
|
|
|
;; Don't do this if we failed to create the initial frame,
|
|
|
|
|
;; for instance due to a dense colormap.
|
2001-10-25 13:32:29 +00:00
|
|
|
|
(when (or frame-initial-frame
|
|
|
|
|
;; If frame-initial-frame has no meaning, do this anyway.
|
2004-01-11 21:59:40 +00:00
|
|
|
|
(not (and initial-window-system
|
2001-10-25 13:32:29 +00:00
|
|
|
|
(not noninteractive)
|
2004-01-11 21:59:40 +00:00
|
|
|
|
(not (eq initial-window-system 'pc)))))
|
2001-07-10 12:55:44 +00:00
|
|
|
|
;; Modify the initial frame based on what .emacs puts into
|
|
|
|
|
;; ...-frame-alist.
|
|
|
|
|
(if (fboundp 'frame-notice-user-settings)
|
|
|
|
|
(frame-notice-user-settings))
|
2004-03-11 01:11:38 +00:00
|
|
|
|
;; Set the faces for the initial background mode even if
|
|
|
|
|
;; frame-notice-user-settings didn't (such as on a tty).
|
|
|
|
|
;; frame-set-background-mode is idempotent, so it won't
|
|
|
|
|
;; cause any harm if it's already been done.
|
2001-07-10 12:55:44 +00:00
|
|
|
|
(if (fboundp 'frame-set-background-mode)
|
2004-03-11 01:11:38 +00:00
|
|
|
|
(frame-set-background-mode (selected-frame))))
|
2000-10-19 09:04:26 +00:00
|
|
|
|
|
1994-05-07 00:21:24 +00:00
|
|
|
|
;; Now we know the user's default font, so add it to the menu.
|
|
|
|
|
(if (fboundp 'font-menu-add-default)
|
|
|
|
|
(font-menu-add-default))
|
|
|
|
|
(and window-setup-hook
|
|
|
|
|
(run-hooks 'window-setup-hook))
|
|
|
|
|
(or menubar-bindings-done
|
2000-10-12 22:36:37 +00:00
|
|
|
|
(if (display-popup-menus-p)
|
2007-08-31 06:57:25 +00:00
|
|
|
|
(precompute-menubar-bindings)))))
|
|
|
|
|
;; Subprocesses of Emacs do not have direct access to the terminal, so
|
|
|
|
|
;; unless told otherwise they should only assume a dumb terminal.
|
|
|
|
|
;; We are careful to do it late (after term-setup-hook), although the
|
|
|
|
|
;; new multi-tty code does not use $TERM any more there anyway.
|
2007-09-21 07:24:01 +00:00
|
|
|
|
(setenv "TERM" "dumb")
|
|
|
|
|
;; Remove DISPLAY from the process-environment as well. This allows
|
|
|
|
|
;; `callproc.c' to give it a useful adaptive default which is either
|
|
|
|
|
;; the value of the `display' frame-parameter or the DISPLAY value
|
|
|
|
|
;; from initial-environment.
|
|
|
|
|
(let ((display (frame-parameter nil 'display)))
|
|
|
|
|
;; Be careful which DISPLAY to remove from process-environment: follow
|
|
|
|
|
;; the logic of `callproc.c'.
|
|
|
|
|
(if (stringp display) (setq display (concat "DISPLAY=" display))
|
|
|
|
|
(dolist (varval initial-environment)
|
|
|
|
|
(if (string-match "\\`DISPLAY=" varval)
|
|
|
|
|
(setq display varval))))
|
|
|
|
|
(when display
|
|
|
|
|
(delete display process-environment)))))
|
1994-05-07 00:21:24 +00:00
|
|
|
|
|
|
|
|
|
;; Precompute the keyboard equivalents in the menu bar items.
|
|
|
|
|
(defun precompute-menubar-bindings ()
|
1995-06-17 23:53:53 +00:00
|
|
|
|
(let ((submap (lookup-key global-map [menu-bar])))
|
|
|
|
|
(while submap
|
|
|
|
|
(and (consp (car submap))
|
|
|
|
|
(symbolp (car (car submap)))
|
|
|
|
|
(stringp (car-safe (cdr (car submap))))
|
|
|
|
|
(keymapp (cdr (cdr (car submap))))
|
1995-06-21 18:32:45 +00:00
|
|
|
|
(progn
|
|
|
|
|
(x-popup-menu nil (cdr (cdr (car submap))))
|
|
|
|
|
(if purify-flag
|
|
|
|
|
(garbage-collect))))
|
1995-06-17 23:53:53 +00:00
|
|
|
|
(setq submap (cdr submap))))
|
2000-10-04 19:01:37 +00:00
|
|
|
|
(setq define-key-rebound-commands t))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2000-10-28 17:18:59 +00:00
|
|
|
|
;; Command-line options supported by tty's:
|
|
|
|
|
(defconst tty-long-option-alist
|
2002-01-14 13:49:32 +00:00
|
|
|
|
'(("--name" . "-name")
|
|
|
|
|
("--title" . "-T")
|
|
|
|
|
("--reverse-video" . "-reverse")
|
2000-10-28 17:18:59 +00:00
|
|
|
|
("--foreground-color" . "-fg")
|
2002-01-14 13:49:32 +00:00
|
|
|
|
("--background-color" . "-bg")
|
|
|
|
|
("--color" . "-color")))
|
2000-10-28 17:18:59 +00:00
|
|
|
|
|
2001-01-24 15:38:36 +00:00
|
|
|
|
(defconst tool-bar-images-pixel-height 24
|
|
|
|
|
"Height in pixels of images in the tool bar.")
|
|
|
|
|
|
2001-02-23 10:26:22 +00:00
|
|
|
|
(defvar tool-bar-originally-present nil
|
|
|
|
|
"Non-nil if tool-bars are present before user and site init files are read.")
|
|
|
|
|
|
2004-01-22 02:36:55 +00:00
|
|
|
|
(defvar handle-args-function-alist '((nil . tty-handle-args))
|
|
|
|
|
"Functions for processing window-system dependent command-line arguments.
|
|
|
|
|
Window system startup files should add their own function to this
|
|
|
|
|
alist, which should parse the command line arguments. Those
|
|
|
|
|
pertaining to the window system should be processed and removed
|
|
|
|
|
from the returned command line.")
|
|
|
|
|
|
|
|
|
|
(defvar window-system-initialization-alist '((nil . ignore))
|
|
|
|
|
"Alist of window-system initialization functions.
|
|
|
|
|
Window-system startup files should add their own initialization
|
|
|
|
|
function to this list. The function should take no arguments,
|
|
|
|
|
and initialize the window system environment to prepare for
|
2005-06-26 03:19:45 +00:00
|
|
|
|
opening the first frame (e.g. open a connection to an X server).")
|
2004-01-22 02:36:55 +00:00
|
|
|
|
|
2003-02-26 10:59:58 +00:00
|
|
|
|
;; Handle the X-like command-line arguments "-fg", "-bg", "-name", etc.
|
2000-10-28 17:18:59 +00:00
|
|
|
|
(defun tty-handle-args (args)
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(let (rest)
|
2007-04-10 11:40:50 +00:00
|
|
|
|
(message "%S" args)
|
2000-10-28 17:18:59 +00:00
|
|
|
|
(while (and args
|
|
|
|
|
(not (equal (car args) "--")))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(let* ((argi (pop args))
|
|
|
|
|
(orig-argi argi)
|
|
|
|
|
argval completion)
|
2000-10-28 17:18:59 +00:00
|
|
|
|
;; Check for long options with attached arguments
|
|
|
|
|
;; and separate out the attached option argument into argval.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(when (string-match "^\\(--[^=]*\\)=" argi)
|
|
|
|
|
(setq argval (substring argi (match-end 0))
|
|
|
|
|
argi (match-string 1 argi)))
|
|
|
|
|
(when (string-match "^--" argi)
|
|
|
|
|
(setq completion (try-completion argi tty-long-option-alist))
|
2000-10-28 17:18:59 +00:00
|
|
|
|
(if (eq completion t)
|
|
|
|
|
;; Exact match for long option.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(setq argi (cdr (assoc argi tty-long-option-alist)))
|
2000-10-28 17:18:59 +00:00
|
|
|
|
(if (stringp completion)
|
|
|
|
|
(let ((elt (assoc completion tty-long-option-alist)))
|
|
|
|
|
;; Check for abbreviated long option.
|
|
|
|
|
(or elt
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(error "Option `%s' is ambiguous" argi))
|
|
|
|
|
(setq argi (cdr elt)))
|
2000-10-28 17:18:59 +00:00
|
|
|
|
;; Check for a short option.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(setq argval nil
|
|
|
|
|
argi orig-argi))))
|
|
|
|
|
(cond ((member argi '("-fg" "-foreground"))
|
|
|
|
|
(push (cons 'foreground-color (or argval (pop args)))
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
((member argi '("-bg" "-background"))
|
|
|
|
|
(push (cons 'background-color (or argval (pop args)))
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
((member argi '("-T" "-name"))
|
|
|
|
|
(unless argval (setq argval (pop args)))
|
|
|
|
|
(push (cons 'title
|
|
|
|
|
(if (stringp argval)
|
|
|
|
|
argval
|
|
|
|
|
(let ((case-fold-search t)
|
|
|
|
|
i)
|
|
|
|
|
(setq argval (invocation-name))
|
|
|
|
|
|
|
|
|
|
;; Change any . or * characters in name to
|
|
|
|
|
;; hyphens, so as to emulate behavior on X.
|
|
|
|
|
(while
|
|
|
|
|
(setq i (string-match "[.*]" argval))
|
|
|
|
|
(aset argval i ?-))
|
|
|
|
|
argval)))
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
((member argi '("-r" "-rv" "-reverse"))
|
|
|
|
|
(push '(reverse . t)
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
((equal argi "-color")
|
|
|
|
|
(unless argval (setq argval 8)) ; default --color means 8 ANSI colors
|
|
|
|
|
(push (cons 'tty-color-mode
|
|
|
|
|
(cond
|
|
|
|
|
((numberp argval) argval)
|
|
|
|
|
((string-match "-?[0-9]+" argval)
|
|
|
|
|
(string-to-number argval))
|
|
|
|
|
(t (intern argval))))
|
|
|
|
|
default-frame-alist))
|
|
|
|
|
(t
|
|
|
|
|
(push argi rest)))))
|
|
|
|
|
(nreverse rest)))
|
2000-10-28 17:18:59 +00:00
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function x-get-resource "frame.c"
|
|
|
|
|
(attribute class &optional component subclass))
|
|
|
|
|
(declare-function tool-bar-mode "tool-bar" (&optional arg))
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defun command-line ()
|
2008-02-16 22:20:12 +00:00
|
|
|
|
(setq before-init-time (current-time)
|
2008-02-11 00:24:16 +00:00
|
|
|
|
command-line-default-directory default-directory)
|
1994-04-22 18:28:22 +00:00
|
|
|
|
|
1998-06-10 20:59:16 +00:00
|
|
|
|
;; Choose a reasonable location for temporary files.
|
2005-03-06 00:48:46 +00:00
|
|
|
|
(custom-reevaluate-setting 'temporary-file-directory)
|
2005-07-25 14:21:04 +00:00
|
|
|
|
(custom-reevaluate-setting 'small-temporary-file-directory)
|
2005-03-06 00:48:46 +00:00
|
|
|
|
(custom-reevaluate-setting 'auto-save-file-name-transforms)
|
1998-06-10 20:59:16 +00:00
|
|
|
|
|
1992-07-20 22:30:14 +00:00
|
|
|
|
;; See if we should import version-control from the environment variable.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(let ((vc (getenv "VERSION_CONTROL")))
|
|
|
|
|
(cond ((eq vc nil)) ;don't do anything if not set
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((member vc '("t" "numbered"))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(setq version-control t))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((member vc '("nil" "existing"))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(setq version-control nil))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((member vc '("never" "simple"))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(setq version-control 'never))))
|
|
|
|
|
|
1992-07-10 01:16:40 +00:00
|
|
|
|
;;! This has been commented out; I currently find the behavior when
|
|
|
|
|
;;! split-window-keep-point is nil disturbing, but if I can get used
|
|
|
|
|
;;! to it, then it would be better to eliminate the option.
|
|
|
|
|
;;! ;; Choose a good default value for split-window-keep-point.
|
|
|
|
|
;;! (setq split-window-keep-point (> baud-rate 2400))
|
1991-08-12 13:15:12 +00:00
|
|
|
|
|
1999-01-27 10:12:43 +00:00
|
|
|
|
;; Set the default strings to display in mode line for
|
|
|
|
|
;; end-of-line formats that aren't native to this platform.
|
|
|
|
|
(cond
|
|
|
|
|
((memq system-type '(ms-dos windows-nt emx))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(setq eol-mnemonic-unix "(Unix)"
|
|
|
|
|
eol-mnemonic-mac "(Mac)"))
|
2002-01-16 19:43:30 +00:00
|
|
|
|
;; Both Mac and Unix EOLs are now "native" on Mac OS so keep the
|
|
|
|
|
;; abbreviated strings `/' and `:' set in coding.c for them.
|
|
|
|
|
((eq system-type 'macos)
|
|
|
|
|
(setq eol-mnemonic-dos "(DOS)"))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(t ; this is for Unix/GNU/Linux systems
|
|
|
|
|
(setq eol-mnemonic-dos "(DOS)"
|
|
|
|
|
eol-mnemonic-mac "(Mac)")))
|
1999-01-27 10:12:43 +00:00
|
|
|
|
|
2008-08-23 16:59:19 +00:00
|
|
|
|
;; Make sure window system's init file was loaded in loadup.el if
|
|
|
|
|
;; using a window system.
|
1994-09-15 02:35:45 +00:00
|
|
|
|
(condition-case error
|
2004-01-22 02:36:55 +00:00
|
|
|
|
(unless noninteractive
|
|
|
|
|
(if (and initial-window-system
|
|
|
|
|
(not (featurep
|
2008-08-23 16:59:19 +00:00
|
|
|
|
(intern
|
|
|
|
|
(concat (symbol-name initial-window-system) "-win")))))
|
2004-01-22 02:36:55 +00:00
|
|
|
|
(error "Unsupported window system `%s'" initial-window-system))
|
|
|
|
|
;; Process window-system specific command line parameters.
|
|
|
|
|
(setq command-line-args
|
2008-08-23 16:59:19 +00:00
|
|
|
|
(funcall
|
|
|
|
|
(or (cdr (assq initial-window-system handle-args-function-alist))
|
|
|
|
|
(error "Unsupported window system `%s'" initial-window-system))
|
|
|
|
|
command-line-args))
|
2004-01-22 02:36:55 +00:00
|
|
|
|
;; Initialize the window system. (Open connection, etc.)
|
2008-08-23 16:59:19 +00:00
|
|
|
|
(funcall
|
|
|
|
|
(or (cdr (assq initial-window-system window-system-initialization-alist))
|
|
|
|
|
(error "Unsupported window system `%s'" initial-window-system))))
|
2004-01-22 02:36:55 +00:00
|
|
|
|
;; If there was an error, print the error message and exit.
|
1994-09-15 02:35:45 +00:00
|
|
|
|
(error
|
1994-09-15 03:07:47 +00:00
|
|
|
|
(princ
|
|
|
|
|
(if (eq (car error) 'error)
|
|
|
|
|
(apply 'concat (cdr error))
|
|
|
|
|
(if (memq 'file-error (get (car error) 'error-conditions))
|
|
|
|
|
(format "%s: %s"
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(nth 1 error)
|
|
|
|
|
(mapconcat (lambda (obj) (prin1-to-string obj t))
|
|
|
|
|
(cdr (cdr error)) ", "))
|
1994-09-15 03:07:47 +00:00
|
|
|
|
(format "%s: %s"
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(get (car error) 'error-message)
|
|
|
|
|
(mapconcat (lambda (obj) (prin1-to-string obj t))
|
|
|
|
|
(cdr error) ", "))))
|
1994-09-15 03:07:47 +00:00
|
|
|
|
'external-debugging-output)
|
2001-04-11 14:28:56 +00:00
|
|
|
|
(terpri 'external-debugging-output)
|
2004-01-11 21:59:40 +00:00
|
|
|
|
(setq initial-window-system nil)
|
1994-09-15 02:35:45 +00:00
|
|
|
|
(kill-emacs)))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2000-11-25 16:24:43 +00:00
|
|
|
|
(set-locale-environment nil)
|
|
|
|
|
|
2007-02-24 13:58:35 +00:00
|
|
|
|
;; Convert preloaded file names in load-history to absolute.
|
|
|
|
|
(let ((simple-file-name
|
2007-02-25 21:16:11 +00:00
|
|
|
|
;; Look for simple.el or simple.elc and use their directory
|
|
|
|
|
;; as the place where all Lisp files live.
|
2007-02-24 13:58:35 +00:00
|
|
|
|
(locate-file "simple" load-path (get-load-suffixes)))
|
|
|
|
|
lisp-dir)
|
|
|
|
|
;; Don't abort if simple.el cannot be found, but print a warning.
|
|
|
|
|
(if (null simple-file-name)
|
|
|
|
|
(progn
|
|
|
|
|
(princ "Warning: Could not find simple.el nor simple.elc"
|
|
|
|
|
'external-debugging-output)
|
|
|
|
|
(terpri 'external-debugging-output))
|
|
|
|
|
(setq lisp-dir (file-truename (file-name-directory simple-file-name)))
|
|
|
|
|
(setq load-history
|
|
|
|
|
(mapcar (lambda (elt)
|
|
|
|
|
(if (and (stringp (car elt))
|
|
|
|
|
(not (file-name-absolute-p (car elt))))
|
|
|
|
|
(cons (concat lisp-dir
|
|
|
|
|
(car elt))
|
|
|
|
|
(cdr elt))
|
|
|
|
|
elt))
|
|
|
|
|
load-history))))
|
2005-10-21 17:20:45 +00:00
|
|
|
|
|
2001-12-25 17:15:14 +00:00
|
|
|
|
;; Convert the arguments to Emacs internal representation.
|
|
|
|
|
(let ((args (cdr command-line-args)))
|
|
|
|
|
(while args
|
|
|
|
|
(setcar args
|
|
|
|
|
(decode-coding-string (car args) locale-coding-system t))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(pop args)))
|
2001-12-25 17:15:14 +00:00
|
|
|
|
|
1991-07-13 09:35:06 +00:00
|
|
|
|
(let ((done nil)
|
|
|
|
|
(args (cdr command-line-args)))
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
;; Figure out which user's init file to load,
|
|
|
|
|
;; either from the environment or from the options.
|
|
|
|
|
(setq init-file-user (if noninteractive nil (user-login-name)))
|
|
|
|
|
;; If user has not done su, use current $HOME to find .emacs.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(and init-file-user
|
|
|
|
|
(equal init-file-user (user-real-login-name))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(setq init-file-user ""))
|
1991-07-13 09:35:06 +00:00
|
|
|
|
|
|
|
|
|
;; Process the command-line args, and delete the arguments
|
|
|
|
|
;; processed. This is consistent with the way main in emacs.c
|
|
|
|
|
;; does things.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(while (and (not done) args)
|
2005-07-15 14:49:54 +00:00
|
|
|
|
(let* ((longopts '(("--no-init-file") ("--no-site-file") ("--debug-init")
|
|
|
|
|
("--user") ("--iconic") ("--icon-type") ("--quick")
|
|
|
|
|
("--no-blinking-cursor") ("--basic-display")))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(argi (pop args))
|
|
|
|
|
(orig-argi argi)
|
|
|
|
|
argval)
|
1995-11-10 17:27:52 +00:00
|
|
|
|
;; Handle --OPTION=VALUE format.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(when (string-match "^\\(--[^=]*\\)=" argi)
|
2002-05-26 20:49:28 +00:00
|
|
|
|
(setq argval (substring argi (match-end 0))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
argi (match-string 1 argi)))
|
2002-05-26 20:49:28 +00:00
|
|
|
|
(unless (equal argi "--")
|
|
|
|
|
(let ((completion (try-completion argi longopts)))
|
|
|
|
|
(if (eq completion t)
|
|
|
|
|
(setq argi (substring argi 1))
|
|
|
|
|
(if (stringp completion)
|
|
|
|
|
(let ((elt (assoc completion longopts)))
|
|
|
|
|
(or elt
|
|
|
|
|
(error "Option `%s' is ambiguous" argi))
|
|
|
|
|
(setq argi (substring (car elt) 1)))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(setq argval nil
|
|
|
|
|
argi orig-argi)))))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(cond
|
2005-04-10 23:36:22 +00:00
|
|
|
|
((member argi '("-Q" "-quick"))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(setq init-file-user nil
|
|
|
|
|
site-run-file nil
|
2005-04-10 23:36:22 +00:00
|
|
|
|
emacs-quick-startup t))
|
|
|
|
|
((member argi '("-D" "-basic-display"))
|
|
|
|
|
(setq no-blinking-cursor t
|
|
|
|
|
emacs-basic-display t)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(push '(vertical-scroll-bars . nil) initial-frame-alist))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
((member argi '("-q" "-no-init-file"))
|
|
|
|
|
(setq init-file-user nil))
|
|
|
|
|
((member argi '("-u" "-user"))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(setq init-file-user (or argval (pop args))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
argval nil))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((equal argi "-no-site-file")
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(setq site-run-file nil))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((equal argi "-debug-init")
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(setq init-file-debug t))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((equal argi "-iconic")
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(push '(visibility . icon) initial-frame-alist))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
((member argi '("-icon-type" "-i" "-itype"))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(push '(icon-type . t) default-frame-alist))
|
2005-03-05 04:31:59 +00:00
|
|
|
|
((member argi '("-nbc" "-no-blinking-cursor"))
|
|
|
|
|
(setq no-blinking-cursor t))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
;; Push the popped arg back on the list of arguments.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(t
|
|
|
|
|
(push argi args)
|
|
|
|
|
(setq done t)))
|
1994-09-28 22:15:38 +00:00
|
|
|
|
;; Was argval set but not used?
|
|
|
|
|
(and argval
|
|
|
|
|
(error "Option `%s' doesn't allow an argument" argi))))
|
|
|
|
|
|
1991-07-13 09:35:06 +00:00
|
|
|
|
;; Re-attach the program name to the front of the arg list.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(and command-line-args
|
|
|
|
|
(setcdr command-line-args args)))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2005-10-28 15:43:15 +00:00
|
|
|
|
(run-hooks 'before-init-hook)
|
|
|
|
|
|
2008-09-21 23:31:40 +00:00
|
|
|
|
(if (daemonp)
|
|
|
|
|
;; Just start the server here, no need to run
|
|
|
|
|
;; `frame-initialize', it deals with creating a frame and
|
|
|
|
|
;; setting the parameters for the initial frame, we don't need
|
|
|
|
|
;; any oxof those.
|
|
|
|
|
(server-start)
|
|
|
|
|
;; Under X Window, this creates the X frame and deletes the terminal frame.
|
2008-09-21 23:32:49 +00:00
|
|
|
|
(frame-initialize))
|
2001-01-30 15:09:25 +00:00
|
|
|
|
|
2005-04-12 19:59:54 +00:00
|
|
|
|
;; Turn off blinking cursor if so specified in X resources. This is here
|
2005-04-14 04:48:08 +00:00
|
|
|
|
;; only because all other settings of no-blinking-cursor are here.
|
2005-04-12 19:59:54 +00:00
|
|
|
|
(unless (or noninteractive
|
|
|
|
|
emacs-basic-display
|
2008-07-27 18:24:48 +00:00
|
|
|
|
(and (memq window-system '(x w32 ns))
|
2005-04-12 19:59:54 +00:00
|
|
|
|
(not (member (x-get-resource "cursorBlink" "CursorBlink")
|
|
|
|
|
'("off" "false")))))
|
|
|
|
|
(setq no-blinking-cursor t))
|
|
|
|
|
|
2008-09-26 17:42:20 +00:00
|
|
|
|
;; If we run as a daemon, or frame was created with a menu bar, set
|
|
|
|
|
;; menu-bar-mode on.
|
|
|
|
|
(when (or (daemonp)
|
|
|
|
|
(not (or noninteractive
|
|
|
|
|
emacs-basic-display
|
|
|
|
|
(and (memq initial-window-system '(x w32))
|
|
|
|
|
(<= (frame-parameter nil 'menu-bar-lines) 0)))))
|
2003-03-01 15:55:04 +00:00
|
|
|
|
(menu-bar-mode 1))
|
1993-05-13 03:14:39 +00:00
|
|
|
|
|
2008-09-26 17:42:20 +00:00
|
|
|
|
;; If we run as a daemon or frame was created with a tool bar,
|
|
|
|
|
;; switch tool-bar-mode on.
|
|
|
|
|
(when (or (daemonp)
|
|
|
|
|
(not (or noninteractive
|
|
|
|
|
emacs-basic-display
|
|
|
|
|
(not (display-graphic-p))
|
|
|
|
|
(<= (frame-parameter nil 'tool-bar-lines) 0))))
|
|
|
|
|
(tool-bar-mode 1))
|
2000-09-21 18:38:53 +00:00
|
|
|
|
|
2005-02-12 18:00:53 +00:00
|
|
|
|
;; Can't do this init in defcustom because the relevant variables
|
2005-03-06 00:48:46 +00:00
|
|
|
|
;; are not set.
|
|
|
|
|
(custom-reevaluate-setting 'blink-cursor-mode)
|
2005-07-14 00:57:45 +00:00
|
|
|
|
(custom-reevaluate-setting 'tooltip-mode)
|
2005-11-05 23:11:38 +00:00
|
|
|
|
(custom-reevaluate-setting 'global-font-lock-mode)
|
2005-11-04 02:16:14 +00:00
|
|
|
|
(custom-reevaluate-setting 'mouse-wheel-down-event)
|
|
|
|
|
(custom-reevaluate-setting 'mouse-wheel-up-event)
|
2005-11-16 02:30:58 +00:00
|
|
|
|
(custom-reevaluate-setting 'file-name-shadow-mode)
|
2005-12-28 16:39:52 +00:00
|
|
|
|
(custom-reevaluate-setting 'send-mail-function)
|
2006-09-23 09:17:00 +00:00
|
|
|
|
(custom-reevaluate-setting 'focus-follows-mouse)
|
2006-02-21 11:47:02 +00:00
|
|
|
|
(custom-reevaluate-setting 'global-auto-composition-mode)
|
2008-02-17 16:57:44 +00:00
|
|
|
|
(custom-reevaluate-setting 'transient-mark-mode)
|
2008-05-01 07:17:08 +00:00
|
|
|
|
(custom-reevaluate-setting 'auto-encryption-mode)
|
2000-11-09 23:47:28 +00:00
|
|
|
|
|
2005-10-23 22:11:22 +00:00
|
|
|
|
(normal-erase-is-backspace-setup-frame)
|
|
|
|
|
|
2000-10-17 12:59:41 +00:00
|
|
|
|
;; Register default TTY colors for the case the terminal hasn't a
|
2005-11-07 14:56:19 +00:00
|
|
|
|
;; terminal init file. We do this regardles of whether the terminal
|
|
|
|
|
;; supports colors or not and regardless the current display type,
|
|
|
|
|
;; since users can connect to color-capable terminals and also
|
|
|
|
|
;; switch color support on or off in mid-session by setting the
|
|
|
|
|
;; tty-color-mode frame parameter.
|
2008-08-23 16:59:19 +00:00
|
|
|
|
;; Exception: the `pc' ``window system'' has only 16 fixed colors,
|
|
|
|
|
;; and they are already set at this point by a suitable function in
|
|
|
|
|
;; window-system-initialization-alist.
|
|
|
|
|
(or (eq initial-window-system 'pc)
|
|
|
|
|
(tty-register-default-colors))
|
2000-10-17 12:59:41 +00:00
|
|
|
|
|
2001-02-23 10:26:22 +00:00
|
|
|
|
;; Record whether the tool-bar is present before the user and site
|
|
|
|
|
;; init files are processed. frame-notice-user-settings uses this
|
|
|
|
|
;; to determine if the tool-bar has been disabled by the init files,
|
|
|
|
|
;; and the frame needs to be resized.
|
|
|
|
|
(when (fboundp 'frame-notice-user-settings)
|
|
|
|
|
(let ((tool-bar-lines (or (assq 'tool-bar-lines initial-frame-alist)
|
|
|
|
|
(assq 'tool-bar-lines default-frame-alist))))
|
|
|
|
|
(setq tool-bar-originally-present
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(and tool-bar-lines
|
|
|
|
|
(cdr tool-bar-lines)
|
|
|
|
|
(not (eq 0 (cdr tool-bar-lines)))))))
|
2001-02-23 10:26:22 +00:00
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(let ((old-scalable-fonts-allowed scalable-fonts-allowed)
|
|
|
|
|
(old-font-list-limit font-list-limit)
|
|
|
|
|
(old-face-ignored-fonts face-ignored-fonts))
|
|
|
|
|
|
|
|
|
|
;; Run the site-start library if it exists. The point of this file is
|
|
|
|
|
;; that it is run before .emacs. There is no point in doing this after
|
|
|
|
|
;; .emacs; that is useless.
|
2007-10-12 02:50:38 +00:00
|
|
|
|
;; Note that user-init-file is nil at this point. Code that might
|
|
|
|
|
;; be loaded from site-run-file and wants to test if -q was given
|
|
|
|
|
;; should check init-file-user instead, since that is already set.
|
|
|
|
|
;; See cus-edit.el for an example.
|
2003-02-04 12:29:42 +00:00
|
|
|
|
(if site-run-file
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(load site-run-file t t))
|
|
|
|
|
|
|
|
|
|
;; Sites should not disable this. Only individuals should disable
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
;; the startup screen.
|
|
|
|
|
(setq inhibit-startup-screen nil)
|
2001-05-11 15:12:08 +00:00
|
|
|
|
|
2005-06-17 15:34:39 +00:00
|
|
|
|
;; Warn for invalid user name.
|
2005-10-28 15:43:15 +00:00
|
|
|
|
(when init-file-user
|
|
|
|
|
(if (string-match "[~/:\n]" init-file-user)
|
|
|
|
|
(display-warning 'initialization
|
|
|
|
|
(format "Invalid user name %s"
|
|
|
|
|
init-file-user)
|
|
|
|
|
:error)
|
2006-05-05 11:36:34 +00:00
|
|
|
|
(if (file-directory-p (expand-file-name
|
|
|
|
|
;; We don't support ~USER on MS-Windows except
|
|
|
|
|
;; for the current user, and always load .emacs
|
|
|
|
|
;; from the current user's home directory (see
|
|
|
|
|
;; below). So always check "~", even if invoked
|
|
|
|
|
;; with "-u USER", or if $USER or $LOGNAME are
|
|
|
|
|
;; set to something different.
|
|
|
|
|
(if (eq system-type 'windows-nt)
|
|
|
|
|
"~"
|
|
|
|
|
(concat "~" init-file-user))))
|
2005-10-28 15:43:15 +00:00
|
|
|
|
nil
|
|
|
|
|
(display-warning 'initialization
|
|
|
|
|
(format "User %s has no home directory"
|
|
|
|
|
init-file-user)
|
|
|
|
|
:error))))
|
2005-06-17 15:34:39 +00:00
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; Load that user's init file, or the default one, or none.
|
|
|
|
|
(let (debug-on-error-from-init-file
|
|
|
|
|
debug-on-error-should-be-set
|
|
|
|
|
(debug-on-error-initial
|
|
|
|
|
(if (eq init-file-debug t) 'startup init-file-debug))
|
|
|
|
|
(orig-enable-multibyte default-enable-multibyte-characters))
|
|
|
|
|
(let ((debug-on-error debug-on-error-initial)
|
|
|
|
|
;; This function actually reads the init files.
|
|
|
|
|
(inner
|
|
|
|
|
(function
|
|
|
|
|
(lambda ()
|
|
|
|
|
(if init-file-user
|
|
|
|
|
(let ((user-init-file-1
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(cond
|
2001-05-11 15:12:08 +00:00
|
|
|
|
((eq system-type 'ms-dos)
|
|
|
|
|
(concat "~" init-file-user "/_emacs"))
|
|
|
|
|
((eq system-type 'windows-nt)
|
2004-09-20 20:10:00 +00:00
|
|
|
|
;; Prefer .emacs on Windows.
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(if (directory-files "~" nil "^\\.emacs\\(\\.elc?\\)?$")
|
|
|
|
|
"~/.emacs"
|
2004-09-20 20:10:00 +00:00
|
|
|
|
;; Also support _emacs for compatibility.
|
|
|
|
|
(if (directory-files "~" nil "^_emacs\\(\\.elc?\\)?$")
|
|
|
|
|
"~/_emacs"
|
|
|
|
|
;; But default to .emacs if _emacs does not exist.
|
|
|
|
|
"~/.emacs")))
|
2001-11-17 00:08:20 +00:00
|
|
|
|
(t
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(concat "~" init-file-user "/.emacs")))))
|
|
|
|
|
;; This tells `load' to store the file name found
|
|
|
|
|
;; into user-init-file.
|
|
|
|
|
(setq user-init-file t)
|
|
|
|
|
(load user-init-file-1 t t)
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2002-10-26 22:41:33 +00:00
|
|
|
|
(when (eq user-init-file t)
|
|
|
|
|
;; If we did not find ~/.emacs, try
|
2005-10-30 03:57:39 +00:00
|
|
|
|
;; ~/.emacs.d/init.el.
|
2002-10-26 22:41:33 +00:00
|
|
|
|
(let ((otherfile
|
|
|
|
|
(expand-file-name
|
2005-10-30 03:57:39 +00:00
|
|
|
|
"init"
|
2002-10-26 22:41:33 +00:00
|
|
|
|
(file-name-as-directory
|
2005-10-30 03:57:39 +00:00
|
|
|
|
(concat "~" init-file-user "/.emacs.d")))))
|
2002-10-26 22:41:33 +00:00
|
|
|
|
(load otherfile t t)
|
|
|
|
|
|
|
|
|
|
;; If we did not find the user's init file,
|
|
|
|
|
;; set user-init-file conclusively.
|
|
|
|
|
;; Don't let it be set from default.el.
|
|
|
|
|
(when (eq user-init-file t)
|
|
|
|
|
(setq user-init-file user-init-file-1))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; If we loaded a compiled file, set
|
|
|
|
|
;; `user-init-file' to the source version if that
|
|
|
|
|
;; exists.
|
|
|
|
|
(when (and user-init-file
|
|
|
|
|
(equal (file-name-extension user-init-file)
|
|
|
|
|
"elc"))
|
|
|
|
|
(let* ((source (file-name-sans-extension user-init-file))
|
|
|
|
|
(alt (concat source ".el")))
|
|
|
|
|
(setq source (cond ((file-exists-p alt) alt)
|
|
|
|
|
((file-exists-p source) source)
|
|
|
|
|
(t nil)))
|
|
|
|
|
(when source
|
|
|
|
|
(when (file-newer-than-file-p source user-init-file)
|
|
|
|
|
(message "Warning: %s is newer than %s"
|
|
|
|
|
source user-init-file)
|
|
|
|
|
(sit-for 1))
|
|
|
|
|
(setq user-init-file source))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(unless inhibit-default-init
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(let ((inhibit-startup-screen nil))
|
2003-02-26 10:59:58 +00:00
|
|
|
|
;; Users are supposed to be told their rights.
|
|
|
|
|
;; (Plus how to get help and how to undo.)
|
|
|
|
|
;; Don't you dare turn this off for anyone
|
|
|
|
|
;; except yourself.
|
|
|
|
|
(load "default" t t)))))))))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(if init-file-debug
|
|
|
|
|
;; Do this without a condition-case if the user wants to debug.
|
|
|
|
|
(funcall inner)
|
|
|
|
|
(condition-case error
|
|
|
|
|
(progn
|
|
|
|
|
(funcall inner)
|
|
|
|
|
(setq init-file-had-error nil))
|
|
|
|
|
(error
|
|
|
|
|
(let ((message-log-max nil))
|
2008-06-10 16:08:48 +00:00
|
|
|
|
(with-current-buffer (get-buffer-create "*Messages*")
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(insert "\n\n"
|
|
|
|
|
(format "An error has occurred while loading `%s':\n\n"
|
|
|
|
|
user-init-file)
|
|
|
|
|
(format "%s%s%s"
|
|
|
|
|
(get (car error) 'error-message)
|
|
|
|
|
(if (cdr error) ": " "")
|
2003-02-21 12:43:31 +00:00
|
|
|
|
(mapconcat (lambda (s) (prin1-to-string s t)) (cdr error) ", "))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
"\n\n"
|
2003-02-21 12:43:31 +00:00
|
|
|
|
"To ensure normal operation, you should investigate and remove the\n"
|
|
|
|
|
"cause of the error in your initialization file. Start Emacs with\n"
|
|
|
|
|
"the `--debug-init' option to view a complete error backtrace.\n\n"))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(message "Error in init file: %s%s%s"
|
|
|
|
|
(get (car error) 'error-message)
|
|
|
|
|
(if (cdr error) ": " "")
|
|
|
|
|
(mapconcat 'prin1-to-string (cdr error) ", "))
|
2003-02-21 12:43:31 +00:00
|
|
|
|
(let ((pop-up-windows nil))
|
|
|
|
|
(pop-to-buffer "*Messages*"))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
(setq init-file-had-error t)))))
|
2001-11-11 01:53:31 +00:00
|
|
|
|
|
2005-12-12 05:14:51 +00:00
|
|
|
|
(if (and deactivate-mark transient-mark-mode)
|
|
|
|
|
(with-current-buffer (window-buffer)
|
|
|
|
|
(deactivate-mark)))
|
|
|
|
|
|
2007-10-12 06:28:54 +00:00
|
|
|
|
;; If the user has a file of abbrevs, read it (unless -batch).
|
|
|
|
|
(when (and (not noninteractive)
|
|
|
|
|
(file-exists-p abbrev-file-name)
|
2007-02-24 18:29:19 +00:00
|
|
|
|
(file-readable-p abbrev-file-name))
|
2001-11-11 01:53:31 +00:00
|
|
|
|
(quietly-read-abbrev-file abbrev-file-name))
|
|
|
|
|
|
2001-11-18 06:48:18 +00:00
|
|
|
|
;; If the abbrevs came entirely from the init file or the
|
|
|
|
|
;; abbrevs file, they do not need saving.
|
|
|
|
|
(setq abbrevs-changed nil)
|
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; If we can tell that the init file altered debug-on-error,
|
|
|
|
|
;; arrange to preserve the value that it set up.
|
|
|
|
|
(or (eq debug-on-error debug-on-error-initial)
|
|
|
|
|
(setq debug-on-error-should-be-set t
|
|
|
|
|
debug-on-error-from-init-file debug-on-error)))
|
|
|
|
|
(if debug-on-error-should-be-set
|
|
|
|
|
(setq debug-on-error debug-on-error-from-init-file))
|
|
|
|
|
(unless (or default-enable-multibyte-characters
|
|
|
|
|
(eq orig-enable-multibyte default-enable-multibyte-characters))
|
|
|
|
|
;; Init file changed to unibyte. Reset existing multibyte
|
|
|
|
|
;; buffers (probably *scratch*, *Messages*, *Minibuff-0*).
|
|
|
|
|
;; Arguably this should only be done if they're free of
|
|
|
|
|
;; multibyte characters.
|
2007-09-25 11:14:28 +00:00
|
|
|
|
(mapc (lambda (buffer)
|
|
|
|
|
(with-current-buffer buffer
|
|
|
|
|
(if enable-multibyte-characters
|
|
|
|
|
(set-buffer-multibyte nil))))
|
|
|
|
|
(buffer-list))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; Also re-set the language environment in case it was
|
|
|
|
|
;; originally done before unibyte was set and is sensitive to
|
|
|
|
|
;; unibyte (display table, terminal coding system &c).
|
|
|
|
|
(set-language-environment current-language-environment)))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; Do this here in case the init file sets mail-host-address.
|
2002-09-29 20:50:15 +00:00
|
|
|
|
(if (equal user-mail-address "")
|
2006-07-22 10:37:52 +00:00
|
|
|
|
(setq user-mail-address (or (getenv "EMAIL")
|
|
|
|
|
(concat (user-login-name) "@"
|
|
|
|
|
(or mail-host-address
|
|
|
|
|
(system-name))))))
|
2001-05-11 15:12:08 +00:00
|
|
|
|
|
2005-11-05 07:29:45 +00:00
|
|
|
|
;; Originally face attributes were specified via
|
|
|
|
|
;; `font-lock-face-attributes'. Users then changed the default
|
|
|
|
|
;; face attributes by setting that variable. However, we try and
|
|
|
|
|
;; be back-compatible and respect its value if set except for
|
|
|
|
|
;; faces where M-x customize has been used to save changes for the
|
|
|
|
|
;; face.
|
|
|
|
|
(when (boundp 'font-lock-face-attributes)
|
|
|
|
|
(let ((face-attributes font-lock-face-attributes))
|
|
|
|
|
(while face-attributes
|
|
|
|
|
(let* ((face-attribute (pop face-attributes))
|
|
|
|
|
(face (car face-attribute)))
|
|
|
|
|
;; Rustle up a `defface' SPEC from a
|
|
|
|
|
;; `font-lock-face-attributes' entry.
|
|
|
|
|
(unless (get face 'saved-face)
|
|
|
|
|
(let ((foreground (nth 1 face-attribute))
|
|
|
|
|
(background (nth 2 face-attribute))
|
|
|
|
|
(bold-p (nth 3 face-attribute))
|
|
|
|
|
(italic-p (nth 4 face-attribute))
|
|
|
|
|
(underline-p (nth 5 face-attribute))
|
|
|
|
|
face-spec)
|
|
|
|
|
(when foreground
|
|
|
|
|
(setq face-spec (cons ':foreground (cons foreground face-spec))))
|
|
|
|
|
(when background
|
|
|
|
|
(setq face-spec (cons ':background (cons background face-spec))))
|
|
|
|
|
(when bold-p
|
|
|
|
|
(setq face-spec (append '(:weight bold) face-spec)))
|
|
|
|
|
(when italic-p
|
|
|
|
|
(setq face-spec (append '(:slant italic) face-spec)))
|
|
|
|
|
(when underline-p
|
|
|
|
|
(setq face-spec (append '(:underline t) face-spec)))
|
|
|
|
|
(face-spec-set face (list (list t face-spec)) nil)))))))
|
|
|
|
|
|
2001-05-11 15:12:08 +00:00
|
|
|
|
;; If parameter have been changed in the init file which influence
|
|
|
|
|
;; face realization, clear the face cache so that new faces will
|
|
|
|
|
;; be realized.
|
|
|
|
|
(unless (and (eq scalable-fonts-allowed old-scalable-fonts-allowed)
|
|
|
|
|
(eq font-list-limit old-font-list-limit)
|
|
|
|
|
(eq face-ignored-fonts old-face-ignored-fonts))
|
|
|
|
|
(clear-face-cache)))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
2008-02-16 23:17:51 +00:00
|
|
|
|
(setq after-init-time (current-time))
|
1992-06-04 19:58:44 +00:00
|
|
|
|
(run-hooks 'after-init-hook)
|
|
|
|
|
|
2004-11-30 07:20:19 +00:00
|
|
|
|
;; Decode all default-directory.
|
2004-11-29 07:17:56 +00:00
|
|
|
|
(if (and default-enable-multibyte-characters locale-coding-system)
|
|
|
|
|
(save-excursion
|
|
|
|
|
(dolist (elt (buffer-list))
|
|
|
|
|
(set-buffer elt)
|
|
|
|
|
(if default-directory
|
|
|
|
|
(setq default-directory
|
|
|
|
|
(decode-coding-string default-directory
|
|
|
|
|
locale-coding-system t))))
|
|
|
|
|
(setq command-line-default-directory
|
|
|
|
|
(decode-coding-string command-line-default-directory
|
|
|
|
|
locale-coding-system t))))
|
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
;; If *scratch* exists and init file didn't change its mode, initialize it.
|
|
|
|
|
(if (get-buffer "*scratch*")
|
2002-08-14 21:46:21 +00:00
|
|
|
|
(with-current-buffer "*scratch*"
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(if (eq major-mode 'fundamental-mode)
|
2007-08-15 23:24:17 +00:00
|
|
|
|
(funcall initial-major-mode))))
|
2003-02-04 12:29:42 +00:00
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
;; Load library for our terminal type.
|
|
|
|
|
;; User init file can set term-file-prefix to nil to prevent this.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(unless (or noninteractive
|
2005-09-07 02:29:18 +00:00
|
|
|
|
initial-window-system)
|
|
|
|
|
(tty-run-terminal-initialization (selected-frame)))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2002-07-12 23:21:48 +00:00
|
|
|
|
;; Update the out-of-memory error message based on user's key bindings
|
|
|
|
|
;; for save-some-buffers.
|
|
|
|
|
(setq memory-signal-data
|
|
|
|
|
(list 'error
|
|
|
|
|
(substitute-command-keys "Memory exhausted--use \\[save-some-buffers] then exit and restart Emacs")))
|
|
|
|
|
|
1991-07-13 09:35:06 +00:00
|
|
|
|
;; Process the remaining args.
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(command-line-1 (cdr command-line-args))
|
|
|
|
|
|
|
|
|
|
;; If -batch, terminate after processing the command options.
|
2002-03-10 16:29:34 +00:00
|
|
|
|
(if noninteractive (kill-emacs t))
|
|
|
|
|
|
|
|
|
|
;; Run emacs-session-restore (session management) if started by
|
|
|
|
|
;; the session manager and we have a session manager connection.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(if (and (boundp 'x-session-previous-id)
|
|
|
|
|
(stringp x-session-previous-id))
|
2005-04-23 16:39:54 +00:00
|
|
|
|
(with-no-warnings
|
|
|
|
|
(emacs-session-restore x-session-previous-id))))
|
1991-07-11 23:17:40 +00:00
|
|
|
|
|
2000-01-19 14:39:01 +00:00
|
|
|
|
(defcustom initial-scratch-message (purecopy "\
|
1999-11-11 11:54:07 +00:00
|
|
|
|
;; This buffer is for notes you don't want to save, and for Lisp evaluation.
|
|
|
|
|
;; If you want to create a file, visit that file with C-x C-f,
|
|
|
|
|
;; then enter the text in that file's own buffer.
|
1997-09-14 17:27:48 +00:00
|
|
|
|
|
2000-01-19 14:39:01 +00:00
|
|
|
|
")
|
1997-09-14 17:27:48 +00:00
|
|
|
|
"Initial message displayed in *scratch* buffer at startup.
|
2008-03-12 21:54:36 +00:00
|
|
|
|
If this is nil, no message will be displayed."
|
2002-01-11 21:35:14 +00:00
|
|
|
|
:type '(choice (text :tag "Message")
|
|
|
|
|
(const :tag "none" nil))
|
|
|
|
|
:group 'initialization)
|
1997-09-14 17:27:48 +00:00
|
|
|
|
|
2000-09-19 13:28:27 +00:00
|
|
|
|
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
;;; Fancy splash screen
|
|
|
|
|
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
|
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(defvar fancy-startup-text
|
2007-12-29 19:04:53 +00:00
|
|
|
|
'((:face (variable-pitch (:foreground "red"))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"Welcome to "
|
2007-09-22 22:14:51 +00:00
|
|
|
|
:link ("GNU Emacs"
|
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
|
|
|
|
|
"Browse http://www.gnu.org/software/emacs/")
|
2007-09-10 22:07:27 +00:00
|
|
|
|
", one component of the "
|
|
|
|
|
:link
|
|
|
|
|
(lambda ()
|
|
|
|
|
(if (eq system-type 'gnu/linux)
|
2007-09-22 22:14:51 +00:00
|
|
|
|
'("GNU/Linux"
|
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
|
|
|
|
|
"Browse http://www.gnu.org/gnu/linux-and-gnu.html")
|
2008-02-29 23:42:52 +00:00
|
|
|
|
'("GNU" (lambda (button) (describe-gnu-project))
|
2007-09-22 22:14:51 +00:00
|
|
|
|
"Display info on the GNU project")))
|
2008-07-19 23:55:02 +00:00
|
|
|
|
" operating system.\n\n"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
:link ("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"\tLearn basic keystroke commands"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(lambda ()
|
|
|
|
|
(let* ((en "TUTORIAL")
|
|
|
|
|
(tut (or (get-language-info current-language-environment
|
|
|
|
|
'tutorial)
|
|
|
|
|
en))
|
|
|
|
|
(title (with-temp-buffer
|
|
|
|
|
(insert-file-contents
|
|
|
|
|
(expand-file-name tut tutorial-directory)
|
|
|
|
|
nil 0 256)
|
|
|
|
|
(search-forward ".")
|
|
|
|
|
(buffer-substring (point-min) (1- (point))))))
|
|
|
|
|
;; If there is a specific tutorial for the current language
|
|
|
|
|
;; environment and it is not English, append its title.
|
|
|
|
|
(if (string= en tut)
|
|
|
|
|
""
|
|
|
|
|
(concat " (" title ")"))))
|
|
|
|
|
"\n"
|
|
|
|
|
:face variable-pitch
|
|
|
|
|
:link ("Emacs Guided Tour"
|
2007-09-22 22:14:51 +00:00
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
|
|
|
|
|
"Browse http://www.gnu.org/software/emacs/tour/")
|
2008-07-19 23:55:02 +00:00
|
|
|
|
"\tOverview of Emacs features at gnu.org\n"
|
2007-09-09 12:10:33 +00:00
|
|
|
|
:link ("View Emacs Manual" (lambda (button) (info-emacs-manual)))
|
|
|
|
|
"\tView the Emacs manual using Info\n"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
:link ("Absence of Warranty" (lambda (button) (describe-no-warranty)))
|
|
|
|
|
"\tGNU Emacs comes with "
|
2007-12-29 19:04:53 +00:00
|
|
|
|
:face (variable-pitch (:slant oblique))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"ABSOLUTELY NO WARRANTY\n"
|
|
|
|
|
:face variable-pitch
|
|
|
|
|
:link ("Copying Conditions" (lambda (button) (describe-copying)))
|
|
|
|
|
"\tConditions for redistributing and changing Emacs\n"
|
2007-09-10 22:07:27 +00:00
|
|
|
|
:link ("Ordering Manuals" (lambda (button) (view-order-manuals)))
|
|
|
|
|
"\tPurchasing printed copies of manuals\n"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"\n"))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
"A list of texts to show in the middle part of splash screens.
|
|
|
|
|
Each element in the list should be a list of strings or pairs
|
|
|
|
|
`:face FACE', like `fancy-splash-insert' accepts them.")
|
|
|
|
|
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(defvar fancy-about-text
|
2007-12-29 19:04:53 +00:00
|
|
|
|
'((:face (variable-pitch (:foreground "red"))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"This is "
|
2007-09-22 22:14:51 +00:00
|
|
|
|
:link ("GNU Emacs"
|
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/software/emacs/"))
|
|
|
|
|
"Browse http://www.gnu.org/software/emacs/")
|
2007-09-10 22:07:27 +00:00
|
|
|
|
", one component of the "
|
|
|
|
|
:link
|
|
|
|
|
(lambda ()
|
|
|
|
|
(if (eq system-type 'gnu/linux)
|
2007-09-22 22:14:51 +00:00
|
|
|
|
'("GNU/Linux"
|
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/gnu/linux-and-gnu.html"))
|
|
|
|
|
"Browse http://www.gnu.org/gnu/linux-and-gnu.html")
|
2008-02-29 23:42:52 +00:00
|
|
|
|
'("GNU" (lambda (button) (describe-gnu-project))
|
2007-09-22 22:14:51 +00:00
|
|
|
|
"Display info on the GNU project.")))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
" operating system.\n"
|
2007-09-14 08:10:15 +00:00
|
|
|
|
:face (lambda ()
|
2007-12-29 19:04:53 +00:00
|
|
|
|
(list 'variable-pitch
|
|
|
|
|
(list :foreground
|
|
|
|
|
(if (eq (frame-parameter nil 'background-mode) 'dark)
|
|
|
|
|
"cyan" "darkblue"))))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"\n"
|
|
|
|
|
(lambda () (emacs-version))
|
|
|
|
|
"\n"
|
2008-06-21 19:52:27 +00:00
|
|
|
|
:face (variable-pitch (:height 0.8))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(lambda () emacs-copyright)
|
|
|
|
|
"\n\n"
|
|
|
|
|
:face variable-pitch
|
2007-09-09 12:10:33 +00:00
|
|
|
|
:link ("Authors"
|
|
|
|
|
(lambda (button)
|
|
|
|
|
(view-file (expand-file-name "AUTHORS" data-directory))
|
|
|
|
|
(goto-char (point-min))))
|
|
|
|
|
"\tMany people have contributed code included in GNU Emacs\n"
|
|
|
|
|
:link ("Contributing"
|
|
|
|
|
(lambda (button)
|
|
|
|
|
(view-file (expand-file-name "CONTRIBUTE" data-directory))
|
|
|
|
|
(goto-char (point-min))))
|
|
|
|
|
"\tHow to contribute improvements to Emacs\n"
|
|
|
|
|
"\n"
|
2008-02-29 23:42:52 +00:00
|
|
|
|
:link ("GNU and Freedom" (lambda (button) (describe-gnu-project)))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"\tWhy we developed GNU Emacs, and the GNU operating system\n"
|
|
|
|
|
:link ("Absence of Warranty" (lambda (button) (describe-no-warranty)))
|
|
|
|
|
"\tGNU Emacs comes with "
|
2007-12-29 19:04:53 +00:00
|
|
|
|
:face (variable-pitch (:slant oblique))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"ABSOLUTELY NO WARRANTY\n"
|
|
|
|
|
:face variable-pitch
|
|
|
|
|
:link ("Copying Conditions" (lambda (button) (describe-copying)))
|
|
|
|
|
"\tConditions for redistributing and changing Emacs\n"
|
|
|
|
|
:link ("Getting New Versions" (lambda (button) (describe-distribution)))
|
|
|
|
|
"\tHow to obtain the latest version of Emacs\n"
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
:link ("Ordering Manuals" (lambda (button) (view-order-manuals)))
|
|
|
|
|
"\tBuying printed manuals from the FSF\n"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"\n"
|
|
|
|
|
:link ("Emacs Tutorial" (lambda (button) (help-with-tutorial)))
|
|
|
|
|
"\tLearn basic Emacs keystroke commands"
|
|
|
|
|
(lambda ()
|
|
|
|
|
(let* ((en "TUTORIAL")
|
|
|
|
|
(tut (or (get-language-info current-language-environment
|
|
|
|
|
'tutorial)
|
|
|
|
|
en))
|
|
|
|
|
(title (with-temp-buffer
|
|
|
|
|
(insert-file-contents
|
|
|
|
|
(expand-file-name tut tutorial-directory)
|
|
|
|
|
nil 0 256)
|
|
|
|
|
(search-forward ".")
|
|
|
|
|
(buffer-substring (point-min) (1- (point))))))
|
|
|
|
|
;; If there is a specific tutorial for the current language
|
|
|
|
|
;; environment and it is not English, append its title.
|
|
|
|
|
(if (string= en tut)
|
|
|
|
|
""
|
|
|
|
|
(concat " (" title ")"))))
|
|
|
|
|
"\n"
|
|
|
|
|
:link ("Emacs Guided Tour"
|
2007-09-22 22:14:51 +00:00
|
|
|
|
(lambda (button) (browse-url "http://www.gnu.org/software/emacs/tour/"))
|
|
|
|
|
"Browse http://www.gnu.org/software/emacs/tour/")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
"\tSee an overview of the many facilities of GNU Emacs"
|
|
|
|
|
))
|
2007-09-04 22:52:31 +00:00
|
|
|
|
"A list of texts to show in the middle part of the About screen.
|
|
|
|
|
Each element in the list should be a list of strings or pairs
|
|
|
|
|
`:face FACE', like `fancy-splash-insert' accepts them.")
|
|
|
|
|
|
2000-09-19 13:28:27 +00:00
|
|
|
|
|
2000-09-19 17:05:18 +00:00
|
|
|
|
(defgroup fancy-splash-screen ()
|
2000-09-19 15:00:29 +00:00
|
|
|
|
"Fancy splash screen when Emacs starts."
|
2000-09-19 17:05:18 +00:00
|
|
|
|
:version "21.1"
|
2000-09-19 15:00:29 +00:00
|
|
|
|
:group 'initialization)
|
|
|
|
|
|
2000-09-20 14:06:56 +00:00
|
|
|
|
(defcustom fancy-splash-image nil
|
|
|
|
|
"*The image to show in the splash screens, or nil for defaults."
|
2000-09-19 15:00:29 +00:00
|
|
|
|
:group 'fancy-splash-screen
|
2000-09-20 14:06:56 +00:00
|
|
|
|
:type '(choice (const :tag "Default" nil)
|
|
|
|
|
(file :tag "File")))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
|
|
|
|
|
|
2007-08-19 14:43:35 +00:00
|
|
|
|
(defvar splash-screen-keymap
|
2007-08-15 23:24:17 +00:00
|
|
|
|
(let ((map (make-sparse-keymap)))
|
|
|
|
|
(suppress-keymap map)
|
|
|
|
|
(set-keymap-parent map button-buffer-map)
|
2007-08-19 14:43:35 +00:00
|
|
|
|
(define-key map "\C-?" 'scroll-down)
|
|
|
|
|
(define-key map " " 'scroll-up)
|
|
|
|
|
(define-key map "q" 'exit-splash-screen)
|
2007-08-15 23:24:17 +00:00
|
|
|
|
map)
|
|
|
|
|
"Keymap for splash screen buffer.")
|
|
|
|
|
|
2000-09-29 19:12:14 +00:00
|
|
|
|
;; These are temporary storage areas for the splash screen display.
|
|
|
|
|
|
2000-09-19 13:28:27 +00:00
|
|
|
|
(defun fancy-splash-insert (&rest args)
|
|
|
|
|
"Insert text into the current buffer, with faces.
|
2007-09-10 22:07:27 +00:00
|
|
|
|
Arguments from ARGS should be either strings; functions called
|
|
|
|
|
with no args that return a string; pairs `:face FACE', where FACE
|
|
|
|
|
is a face specification usable with `put-text-property'; or pairs
|
|
|
|
|
`:link LINK' where LINK is a list of arguments to pass to
|
2007-09-22 22:14:51 +00:00
|
|
|
|
`insert-button', of the form (LABEL ACTION [HELP-ECHO]), which
|
|
|
|
|
specifies the button's label, `action' property and help-echo string.
|
|
|
|
|
FACE and LINK can also be functions, which are evaluated to obtain
|
|
|
|
|
a face or button specification."
|
2000-09-19 13:28:27 +00:00
|
|
|
|
(let ((current-face nil))
|
|
|
|
|
(while args
|
2007-08-15 23:24:17 +00:00
|
|
|
|
(cond ((eq (car args) :face)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(setq args (cdr args) current-face (car args))
|
|
|
|
|
(if (functionp current-face)
|
|
|
|
|
(setq current-face (funcall current-face))))
|
2007-08-15 23:24:17 +00:00
|
|
|
|
((eq (car args) :link)
|
|
|
|
|
(setq args (cdr args))
|
|
|
|
|
(let ((spec (car args)))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(if (functionp spec)
|
|
|
|
|
(setq spec (funcall spec)))
|
2007-08-15 23:24:17 +00:00
|
|
|
|
(insert-button (car spec)
|
|
|
|
|
'face (list 'link current-face)
|
|
|
|
|
'action (cadr spec)
|
2007-09-22 22:14:51 +00:00
|
|
|
|
'help-echo (concat "mouse-2, RET: "
|
|
|
|
|
(or (nth 2 spec)
|
|
|
|
|
"Follow this link"))
|
2007-08-15 23:24:17 +00:00
|
|
|
|
'follow-link t)))
|
|
|
|
|
(t (insert (propertize (let ((it (car args)))
|
|
|
|
|
(if (functionp it)
|
|
|
|
|
(funcall it)
|
|
|
|
|
it))
|
|
|
|
|
'face current-face
|
2007-12-15 22:33:43 +00:00
|
|
|
|
'help-echo (startup-echo-area-message)))))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
(setq args (cdr args)))))
|
|
|
|
|
|
2008-06-12 03:56:20 +00:00
|
|
|
|
(declare-function image-size "image.c" (spec &optional pixels frame))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
|
|
|
|
|
(defun fancy-splash-head ()
|
|
|
|
|
"Insert the head part of the splash screen into the current buffer."
|
2001-04-03 13:51:41 +00:00
|
|
|
|
(let* ((image-file (cond ((stringp fancy-splash-image)
|
|
|
|
|
fancy-splash-image)
|
2008-07-02 01:49:03 +00:00
|
|
|
|
((display-color-p)
|
2008-07-18 14:22:24 +00:00
|
|
|
|
(cond ((<= (display-planes) 8)
|
|
|
|
|
(if (image-type-available-p 'xpm)
|
|
|
|
|
"splash.xpm"
|
|
|
|
|
"splash.pbm"))
|
|
|
|
|
((image-type-available-p 'svg)
|
2008-07-02 01:49:03 +00:00
|
|
|
|
"splash.svg")
|
|
|
|
|
((image-type-available-p 'png)
|
|
|
|
|
"splash.png")
|
|
|
|
|
((image-type-available-p 'xpm)
|
2008-07-18 14:22:24 +00:00
|
|
|
|
"splash.xpm")
|
|
|
|
|
(t "splash.pbm")))
|
2008-07-02 01:49:03 +00:00
|
|
|
|
(t "splash.pbm")))
|
2001-04-03 13:51:41 +00:00
|
|
|
|
(img (create-image image-file))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
(image-width (and img (car (image-size img))))
|
|
|
|
|
(window-width (window-width (selected-window))))
|
|
|
|
|
(when img
|
|
|
|
|
(when (> window-width image-width)
|
2000-09-29 19:12:14 +00:00
|
|
|
|
;; Center the image in the window.
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(insert (propertize " " 'display
|
|
|
|
|
`(space :align-to (+ center (-0.5 . ,img)))))
|
2000-09-29 19:12:14 +00:00
|
|
|
|
|
2001-11-03 18:09:33 +00:00
|
|
|
|
;; Change the color of the XPM version of the splash image
|
|
|
|
|
;; so that it is visible with a dark frame background.
|
|
|
|
|
(when (and (memq 'xpm img)
|
|
|
|
|
(eq (frame-parameter nil 'background-mode) 'dark))
|
|
|
|
|
(setq img (append img '(:color-symbols (("#000000" . "gray30"))))))
|
|
|
|
|
|
2007-08-19 14:43:35 +00:00
|
|
|
|
;; Insert the image with a help-echo and a link.
|
|
|
|
|
(make-button (prog1 (point) (insert-image img)) (point)
|
|
|
|
|
'face 'default
|
2007-09-22 22:14:51 +00:00
|
|
|
|
'help-echo "mouse-2, RET: Browse http://www.gnu.org/"
|
2007-08-19 14:43:35 +00:00
|
|
|
|
'action (lambda (button) (browse-url "http://www.gnu.org/"))
|
|
|
|
|
'follow-link t)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(insert "\n\n")))))
|
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(defun fancy-startup-tail (&optional concise)
|
2000-09-19 13:28:27 +00:00
|
|
|
|
"Insert the tail part of the splash screen into the current buffer."
|
2000-09-21 09:07:11 +00:00
|
|
|
|
(let ((fg (if (eq (frame-parameter nil 'background-mode) 'dark)
|
|
|
|
|
"cyan" "darkblue")))
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(unless concise
|
|
|
|
|
(fancy-splash-insert
|
|
|
|
|
:face 'variable-pitch
|
|
|
|
|
"\nTo start... "
|
|
|
|
|
:link '("Open a File"
|
2007-09-22 22:14:51 +00:00
|
|
|
|
(lambda (button) (call-interactively 'find-file))
|
|
|
|
|
"Specify a new file's name, to edit the file")
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
" "
|
|
|
|
|
:link '("Open Home Directory"
|
2007-09-22 22:14:51 +00:00
|
|
|
|
(lambda (button) (dired "~"))
|
|
|
|
|
"Open your home directory, to operate on its files")
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
" "
|
|
|
|
|
:link '("Customize Startup"
|
2007-09-22 22:14:51 +00:00
|
|
|
|
(lambda (button) (customize-group 'initialization))
|
|
|
|
|
"Change initialization settings including this screen")
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
"\n"))
|
2008-07-19 23:55:02 +00:00
|
|
|
|
(fancy-splash-insert
|
|
|
|
|
:face 'variable-pitch "To quit a partially entered command, type "
|
|
|
|
|
:face 'default "Control-g"
|
|
|
|
|
:face 'variable-pitch ".\n")
|
2007-12-29 19:04:53 +00:00
|
|
|
|
(fancy-splash-insert :face `(variable-pitch (:foreground ,fg))
|
2000-09-21 09:07:11 +00:00
|
|
|
|
"\nThis is "
|
|
|
|
|
(emacs-version)
|
|
|
|
|
"\n"
|
2008-06-21 19:52:27 +00:00
|
|
|
|
:face '(variable-pitch (:height 0.8))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
emacs-copyright
|
|
|
|
|
"\n")
|
2001-11-03 16:15:43 +00:00
|
|
|
|
(and auto-save-list-file-prefix
|
|
|
|
|
;; Don't signal an error if the
|
|
|
|
|
;; directory for auto-save-list files
|
|
|
|
|
;; does not yet exist.
|
|
|
|
|
(file-directory-p (file-name-directory
|
|
|
|
|
auto-save-list-file-prefix))
|
|
|
|
|
(directory-files
|
|
|
|
|
(file-name-directory auto-save-list-file-prefix)
|
|
|
|
|
nil
|
|
|
|
|
(concat "\\`"
|
|
|
|
|
(regexp-quote (file-name-nondirectory
|
|
|
|
|
auto-save-list-file-prefix)))
|
|
|
|
|
t)
|
2007-12-29 19:04:53 +00:00
|
|
|
|
(fancy-splash-insert :face '(variable-pitch (:foreground "red"))
|
2007-09-04 22:52:31 +00:00
|
|
|
|
"\nIf an Emacs session crashed recently, "
|
2006-11-05 15:19:55 +00:00
|
|
|
|
"type "
|
|
|
|
|
:face '(fixed-pitch :foreground "red")
|
|
|
|
|
"Meta-x recover-session RET"
|
2007-12-29 19:04:53 +00:00
|
|
|
|
:face '(variable-pitch (:foreground "red"))
|
2006-11-05 15:19:55 +00:00
|
|
|
|
"\nto recover"
|
2007-09-10 22:07:27 +00:00
|
|
|
|
" the files you were editing."))
|
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(when concise
|
|
|
|
|
(fancy-splash-insert
|
2007-10-12 18:56:00 +00:00
|
|
|
|
:face 'variable-pitch "\n"
|
2007-10-14 20:42:05 +00:00
|
|
|
|
:link '("Dismiss this startup screen"
|
|
|
|
|
(lambda (button)
|
|
|
|
|
(when startup-screen-inhibit-startup-screen
|
|
|
|
|
(customize-set-variable 'inhibit-startup-screen t)
|
|
|
|
|
(customize-mark-to-save 'inhibit-startup-screen)
|
|
|
|
|
(custom-save-all))
|
|
|
|
|
(let ((w (get-buffer-window "*GNU Emacs*")))
|
|
|
|
|
(and w (not (one-window-p)) (delete-window w)))
|
|
|
|
|
(kill-buffer "*GNU Emacs*")))
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
" ")
|
|
|
|
|
(when (or user-init-file custom-file)
|
|
|
|
|
(let ((checked (create-image "\300\300\141\143\067\076\034\030"
|
2007-09-10 22:07:27 +00:00
|
|
|
|
'xbm t :width 8 :height 8 :background "grey75"
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
:foreground "black" :relief -2 :ascent 'center))
|
|
|
|
|
(unchecked (create-image (make-string 8 0)
|
|
|
|
|
'xbm t :width 8 :height 8 :background "grey75"
|
|
|
|
|
:foreground "black" :relief -2 :ascent 'center)))
|
|
|
|
|
(insert-button
|
|
|
|
|
" " :on-glyph checked :off-glyph unchecked 'checked nil
|
|
|
|
|
'display unchecked 'follow-link t
|
|
|
|
|
'action (lambda (button)
|
|
|
|
|
(if (overlay-get button 'checked)
|
|
|
|
|
(progn (overlay-put button 'checked nil)
|
|
|
|
|
(overlay-put button 'display (overlay-get button :off-glyph))
|
|
|
|
|
(setq startup-screen-inhibit-startup-screen nil))
|
|
|
|
|
(overlay-put button 'checked t)
|
|
|
|
|
(overlay-put button 'display (overlay-get button :on-glyph))
|
|
|
|
|
(setq startup-screen-inhibit-startup-screen t)))))
|
2007-12-29 19:04:53 +00:00
|
|
|
|
(fancy-splash-insert :face '(variable-pitch (:height 0.9))
|
2007-10-14 20:42:05 +00:00
|
|
|
|
" Never show it again.")))))
|
2000-09-29 19:12:14 +00:00
|
|
|
|
|
2007-08-19 14:43:35 +00:00
|
|
|
|
(defun exit-splash-screen ()
|
2007-08-15 23:24:17 +00:00
|
|
|
|
"Stop displaying the splash screen buffer."
|
2000-09-29 19:12:14 +00:00
|
|
|
|
(interactive)
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(quit-window t))
|
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(defun fancy-startup-screen (&optional concise)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"Display fancy startup screen.
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
If CONCISE is non-nil, display a concise version of the
|
|
|
|
|
splash screen in another window."
|
2007-10-12 18:56:00 +00:00
|
|
|
|
(let ((splash-buffer (get-buffer-create "*GNU Emacs*")))
|
2007-10-14 20:42:05 +00:00
|
|
|
|
(with-current-buffer splash-buffer
|
2007-10-12 18:56:00 +00:00
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(erase-buffer)
|
2008-02-12 23:41:08 +00:00
|
|
|
|
(setq default-directory command-line-default-directory)
|
2007-10-12 18:56:00 +00:00
|
|
|
|
(make-local-variable 'startup-screen-inhibit-startup-screen)
|
|
|
|
|
(if pure-space-overflow
|
|
|
|
|
(insert pure-space-overflow-message))
|
|
|
|
|
(unless concise
|
|
|
|
|
(fancy-splash-head))
|
|
|
|
|
(dolist (text fancy-startup-text)
|
|
|
|
|
(apply #'fancy-splash-insert text)
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(skip-chars-backward "\n")
|
|
|
|
|
(delete-region (point) (point-max))
|
|
|
|
|
(insert "\n")
|
|
|
|
|
(fancy-startup-tail concise))
|
|
|
|
|
(use-local-map splash-screen-keymap)
|
|
|
|
|
(setq tab-width 22
|
|
|
|
|
buffer-read-only t)
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(if (and view-read-only (not view-mode))
|
|
|
|
|
(view-mode-enter nil 'kill-buffer))
|
2007-10-14 20:42:05 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line (if concise 2 4)))
|
2007-10-12 18:56:00 +00:00
|
|
|
|
(if concise
|
|
|
|
|
(progn
|
|
|
|
|
(display-buffer splash-buffer)
|
|
|
|
|
;; If the splash screen is in a split window, fit it.
|
|
|
|
|
(let ((window (get-buffer-window splash-buffer t)))
|
|
|
|
|
(or (null window)
|
|
|
|
|
(eq window (selected-window))
|
|
|
|
|
(eq window (next-window window))
|
|
|
|
|
(fit-window-to-buffer window))))
|
|
|
|
|
(switch-to-buffer splash-buffer))))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
|
|
|
|
|
(defun fancy-about-screen ()
|
|
|
|
|
"Display fancy About screen."
|
|
|
|
|
(let ((frame (fancy-splash-frame)))
|
|
|
|
|
(save-selected-window
|
|
|
|
|
(select-frame frame)
|
|
|
|
|
(switch-to-buffer "*About GNU Emacs*")
|
|
|
|
|
(setq buffer-undo-list t
|
|
|
|
|
mode-line-format (propertize "---- %b %-"
|
|
|
|
|
'face 'mode-line-buffer-id))
|
|
|
|
|
(let ((inhibit-read-only t))
|
|
|
|
|
(erase-buffer)
|
|
|
|
|
(if pure-space-overflow
|
|
|
|
|
(insert pure-space-overflow-message))
|
|
|
|
|
(fancy-splash-head)
|
|
|
|
|
(dolist (text fancy-about-text)
|
|
|
|
|
(apply #'fancy-splash-insert text)
|
|
|
|
|
(insert "\n"))
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(force-mode-line-update))
|
2007-08-19 14:43:35 +00:00
|
|
|
|
(use-local-map splash-screen-keymap)
|
2007-08-20 23:28:16 +00:00
|
|
|
|
(setq tab-width 22)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(message "%s" (startup-echo-area-message))
|
2006-08-29 16:11:26 +00:00
|
|
|
|
(setq buffer-read-only t)
|
2007-10-14 20:42:05 +00:00
|
|
|
|
(goto-char (point-min))
|
|
|
|
|
(forward-line 3))))
|
2002-07-02 18:23:26 +00:00
|
|
|
|
|
|
|
|
|
(defun fancy-splash-frame ()
|
|
|
|
|
"Return the frame to use for the fancy splash screen.
|
|
|
|
|
Returning non-nil does not mean we should necessarily
|
|
|
|
|
use the fancy splash screen, but if we do use it,
|
|
|
|
|
we put it on this frame."
|
|
|
|
|
(let (chosen-frame)
|
2002-08-04 16:18:54 +00:00
|
|
|
|
(dolist (frame (append (frame-list) (list (selected-frame))))
|
2002-07-02 18:23:26 +00:00
|
|
|
|
(if (and (frame-visible-p frame)
|
|
|
|
|
(not (window-minibuffer-p (frame-selected-window frame))))
|
|
|
|
|
(setq chosen-frame frame)))
|
|
|
|
|
chosen-frame))
|
2000-09-29 19:12:14 +00:00
|
|
|
|
|
2000-12-02 20:19:39 +00:00
|
|
|
|
(defun use-fancy-splash-screens-p ()
|
|
|
|
|
"Return t if fancy splash screens should be used."
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(when (and (display-graphic-p)
|
|
|
|
|
(or (and (display-color-p)
|
2000-12-02 20:19:39 +00:00
|
|
|
|
(image-type-available-p 'xpm))
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(image-type-available-p 'pbm)))
|
2002-09-05 00:19:49 +00:00
|
|
|
|
(let ((frame (fancy-splash-frame)))
|
|
|
|
|
(when frame
|
|
|
|
|
(let* ((img (create-image (or fancy-splash-image
|
|
|
|
|
(if (and (display-color-p)
|
|
|
|
|
(image-type-available-p 'xpm))
|
|
|
|
|
"splash.xpm" "splash.pbm"))))
|
2006-12-14 15:16:52 +00:00
|
|
|
|
(image-height (and img (cdr (image-size img nil frame))))
|
|
|
|
|
;; We test frame-height so that, if the frame is split
|
|
|
|
|
;; by displaying a warning, that doesn't cause the normal
|
|
|
|
|
;; splash screen to be used.
|
|
|
|
|
(frame-height (1- (frame-height frame))))
|
|
|
|
|
(> frame-height (+ image-height 19)))))))
|
2000-12-02 20:19:39 +00:00
|
|
|
|
|
|
|
|
|
|
2008-02-28 23:32:11 +00:00
|
|
|
|
(defun normal-splash-screen (&optional startup concise)
|
2007-09-04 22:52:31 +00:00
|
|
|
|
"Display non-graphic splash screen.
|
|
|
|
|
If optional argument STARTUP is non-nil, display the startup screen
|
2008-02-28 23:32:11 +00:00
|
|
|
|
after Emacs starts. If STARTUP is nil, display the About screen.
|
|
|
|
|
If CONCISE is non-nil, display a concise version of the
|
|
|
|
|
splash screen in another window."
|
|
|
|
|
(let ((splash-buffer (get-buffer-create "*About GNU Emacs*")))
|
|
|
|
|
(with-current-buffer splash-buffer
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(setq buffer-read-only nil)
|
|
|
|
|
(erase-buffer)
|
2008-02-12 23:41:08 +00:00
|
|
|
|
(setq default-directory command-line-default-directory)
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(set (make-local-variable 'tab-width) 8)
|
|
|
|
|
(if (not startup)
|
|
|
|
|
(set (make-local-variable 'mode-line-format)
|
|
|
|
|
(propertize "---- %b %-" 'face 'mode-line-buffer-id)))
|
|
|
|
|
|
|
|
|
|
(if pure-space-overflow
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(insert pure-space-overflow-message))
|
2006-04-03 22:16:05 +00:00
|
|
|
|
|
2007-09-04 22:52:31 +00:00
|
|
|
|
;; The convention for this piece of code is that
|
|
|
|
|
;; each piece of output starts with one or two newlines
|
|
|
|
|
;; and does not end with any newlines.
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(insert (if startup "Welcome to GNU Emacs" "This is GNU Emacs"))
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(insert
|
|
|
|
|
(if (eq system-type 'gnu/linux)
|
|
|
|
|
", one component of the GNU/Linux operating system.\n"
|
|
|
|
|
", a part of the GNU operating system.\n"))
|
|
|
|
|
|
|
|
|
|
(if startup
|
|
|
|
|
(if (display-mouse-p)
|
|
|
|
|
;; The user can use the mouse to activate menus
|
|
|
|
|
;; so give help in terms of menu items.
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(normal-mouse-startup-screen)
|
2002-01-29 13:54:39 +00:00
|
|
|
|
|
2006-04-10 14:52:24 +00:00
|
|
|
|
;; No mouse menus, so give help using kbd commands.
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(normal-no-mouse-startup-screen))
|
2006-04-10 14:52:24 +00:00
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(normal-about-screen))
|
2007-09-04 22:52:31 +00:00
|
|
|
|
|
|
|
|
|
;; The rest of the startup screen is the same on all
|
|
|
|
|
;; kinds of terminals.
|
|
|
|
|
|
|
|
|
|
;; Give information on recovering, if there was a crash.
|
|
|
|
|
(and startup
|
|
|
|
|
auto-save-list-file-prefix
|
|
|
|
|
;; Don't signal an error if the
|
|
|
|
|
;; directory for auto-save-list files
|
|
|
|
|
;; does not yet exist.
|
|
|
|
|
(file-directory-p (file-name-directory
|
|
|
|
|
auto-save-list-file-prefix))
|
|
|
|
|
(directory-files
|
|
|
|
|
(file-name-directory auto-save-list-file-prefix)
|
|
|
|
|
nil
|
|
|
|
|
(concat "\\`"
|
|
|
|
|
(regexp-quote (file-name-nondirectory
|
|
|
|
|
auto-save-list-file-prefix)))
|
|
|
|
|
t)
|
|
|
|
|
(insert "\n\nIf an Emacs session crashed recently, "
|
|
|
|
|
"type Meta-x recover-session RET\nto recover"
|
|
|
|
|
" the files you were editing.\n"))
|
2007-08-15 23:24:17 +00:00
|
|
|
|
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(use-local-map splash-screen-keymap)
|
2006-04-10 14:52:24 +00:00
|
|
|
|
|
2007-09-04 22:52:31 +00:00
|
|
|
|
;; Display the input that we set up in the buffer.
|
|
|
|
|
(set-buffer-modified-p nil)
|
|
|
|
|
(setq buffer-read-only t)
|
|
|
|
|
(if (and view-read-only (not view-mode))
|
|
|
|
|
(view-mode-enter nil 'kill-buffer))
|
|
|
|
|
(if startup (rename-buffer "*GNU Emacs*" t))
|
2008-02-28 23:32:11 +00:00
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
(if concise
|
|
|
|
|
(display-buffer splash-buffer)
|
|
|
|
|
(switch-to-buffer splash-buffer))))
|
2002-08-24 14:26:06 +00:00
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(defun normal-mouse-startup-screen ()
|
|
|
|
|
;; The user can use the mouse to activate menus
|
|
|
|
|
;; so give help in terms of menu items.
|
|
|
|
|
(insert "\
|
2007-10-14 20:42:05 +00:00
|
|
|
|
To follow a link, click Mouse-1 on it, or move to it and type RET.
|
2007-08-15 23:24:17 +00:00
|
|
|
|
To quit a partially entered command, type Control-g.\n")
|
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert "\nImportant Help menu items:\n")
|
|
|
|
|
(insert-button "Emacs Tutorial"
|
|
|
|
|
'action (lambda (button) (help-with-tutorial))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\tLearn basic Emacs keystroke commands\n")
|
|
|
|
|
(insert-button "Read the Emacs Manual"
|
|
|
|
|
'action (lambda (button) (info-emacs-manual))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tView the Emacs manual using Info\n")
|
|
|
|
|
(insert-button "\(Non)Warranty"
|
|
|
|
|
'action (lambda (button) (describe-no-warranty))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
|
|
|
|
|
(insert-button "Copying Conditions"
|
|
|
|
|
'action (lambda (button) (describe-copying))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tConditions for redistributing and changing Emacs\n")
|
|
|
|
|
(insert-button "More Manuals / Ordering Manuals"
|
|
|
|
|
'action (lambda (button) (view-order-manuals))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert " How to order printed manuals from the FSF\n")
|
|
|
|
|
|
|
|
|
|
(insert "\nUseful tasks:\n")
|
|
|
|
|
(insert-button "Visit New File"
|
|
|
|
|
'action (lambda (button) (call-interactively 'find-file))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\tSpecify a new file's name, to edit the file\n")
|
|
|
|
|
(insert-button "Open Home Directory"
|
|
|
|
|
'action (lambda (button) (dired "~"))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tOpen your home directory, to operate on its files\n")
|
|
|
|
|
(insert-button "Customize Startup"
|
|
|
|
|
'action (lambda (button) (customize-group 'initialization))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tChange initialization settings including this screen\n")
|
|
|
|
|
|
|
|
|
|
(insert "\n" (emacs-version)
|
|
|
|
|
"\n" emacs-copyright))
|
|
|
|
|
|
|
|
|
|
;; No mouse menus, so give help using kbd commands.
|
|
|
|
|
(defun normal-no-mouse-startup-screen ()
|
|
|
|
|
|
|
|
|
|
;; 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)
|
2007-08-19 16:04:55 +00:00
|
|
|
|
")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "Emacs manual"
|
|
|
|
|
'action (lambda (button) (info-emacs-manual))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert " C-h r\t")
|
|
|
|
|
(insert-button "Browse manuals"
|
|
|
|
|
'action (lambda (button) (Info-directory))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t C-h i
|
2007-08-19 16:04:55 +00:00
|
|
|
|
")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "Emacs tutorial"
|
|
|
|
|
'action (lambda (button) (help-with-tutorial))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert " C-h t\tUndo changes\t C-x u
|
2007-08-19 16:04:55 +00:00
|
|
|
|
")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "Buy manuals"
|
|
|
|
|
'action (lambda (button) (view-order-manuals))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t C-h C-m\tExit Emacs\t C-x C-c"))
|
2002-07-12 23:21:48 +00:00
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert (format "
|
|
|
|
|
Get help\t %s
|
2007-08-19 16:04:55 +00:00
|
|
|
|
"
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(let ((where (where-is-internal
|
|
|
|
|
'help-command nil t)))
|
|
|
|
|
(if where
|
|
|
|
|
(key-description where)
|
|
|
|
|
"M-x help"))))
|
|
|
|
|
(insert-button "Emacs manual"
|
|
|
|
|
'action (lambda (button) (info-emacs-manual))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys"\t \\[info-emacs-manual]\t"))
|
|
|
|
|
(insert-button "Browse manuals"
|
|
|
|
|
'action (lambda (button) (Info-directory))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys "\t \\[info]
|
2007-08-19 16:04:55 +00:00
|
|
|
|
"))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "Emacs tutorial"
|
|
|
|
|
'action (lambda (button) (help-with-tutorial))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys
|
|
|
|
|
"\t \\[help-with-tutorial]\tUndo changes\t \\[advertised-undo]
|
2007-08-19 16:04:55 +00:00
|
|
|
|
"))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "Buy manuals"
|
|
|
|
|
'action (lambda (button) (view-order-manuals))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys
|
|
|
|
|
"\t \\[view-order-manuals]\tExit Emacs\t \\[save-buffers-kill-terminal]")))
|
|
|
|
|
|
|
|
|
|
;; Say how to use the menu bar with the keyboard.
|
|
|
|
|
(insert "\n")
|
|
|
|
|
(insert-button "Activate menubar"
|
|
|
|
|
'action (lambda (button) (tmm-menubar))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(if (and (eq (key-binding "\M-`") 'tmm-menubar)
|
|
|
|
|
(eq (key-binding [f10]) 'tmm-menubar))
|
|
|
|
|
(insert " F10 or ESC ` or M-`")
|
|
|
|
|
(insert (substitute-command-keys " \\[tmm-menubar]")))
|
|
|
|
|
|
|
|
|
|
;; Many users seem to have problems with these.
|
|
|
|
|
(insert "
|
2002-01-29 13:54:39 +00:00
|
|
|
|
\(`C-' means use the CTRL key. `M-' means use the Meta (or Alt) key.
|
|
|
|
|
If you have no Meta key, you may instead type ESC followed by the character.)")
|
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
;; Insert links to useful tasks
|
|
|
|
|
(insert "\nUseful tasks:\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Visit New File"
|
|
|
|
|
'action (lambda (button) (call-interactively 'find-file))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\t\t")
|
|
|
|
|
(insert-button "Open Home Directory"
|
|
|
|
|
'action (lambda (button) (dired "~"))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Customize Startup"
|
|
|
|
|
'action (lambda (button) (customize-group 'initialization))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\t")
|
|
|
|
|
(insert-button "Open *scratch* buffer"
|
|
|
|
|
'action (lambda (button) (switch-to-buffer
|
|
|
|
|
(get-buffer-create "*scratch*")))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\n")
|
|
|
|
|
(insert "\n" (emacs-version) "\n" emacs-copyright "\n")
|
|
|
|
|
|
|
|
|
|
(if (and (eq (key-binding "\C-h\C-c") 'describe-copying)
|
|
|
|
|
(eq (key-binding "\C-h\C-d") 'describe-distribution)
|
|
|
|
|
(eq (key-binding "\C-h\C-w") 'describe-no-warranty))
|
|
|
|
|
(progn
|
|
|
|
|
(insert
|
2007-09-09 12:10:33 +00:00
|
|
|
|
"
|
2007-08-19 16:04:55 +00:00
|
|
|
|
GNU Emacs comes with ABSOLUTELY NO WARRANTY; type C-h C-w for ")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "full details"
|
|
|
|
|
'action (lambda (button) (describe-no-warranty))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert ".
|
2002-01-29 13:54:39 +00:00
|
|
|
|
Emacs is Free Software--Free as in Freedom--so you can redistribute copies
|
2007-08-19 16:04:55 +00:00
|
|
|
|
of Emacs and modify it; type C-h C-c to see ")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "the conditions"
|
|
|
|
|
'action (lambda (button) (describe-copying))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert ".
|
2007-08-19 16:04:55 +00:00
|
|
|
|
Type C-h C-d for information on ")
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "getting the latest version"
|
|
|
|
|
'action (lambda (button) (describe-distribution))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "."))
|
|
|
|
|
(insert (substitute-command-keys
|
2007-09-09 12:10:33 +00:00
|
|
|
|
"
|
2007-08-19 16:04:55 +00:00
|
|
|
|
GNU Emacs comes with ABSOLUTELY NO WARRANTY; type \\[describe-no-warranty] for "))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "full details"
|
|
|
|
|
'action (lambda (button) (describe-no-warranty))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys ".
|
2002-01-29 13:54:39 +00:00
|
|
|
|
Emacs is Free Software--Free as in Freedom--so you can redistribute copies
|
2007-08-19 16:04:55 +00:00
|
|
|
|
of Emacs and modify it; type \\[describe-copying] to see "))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "the conditions"
|
|
|
|
|
'action (lambda (button) (describe-copying))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert (substitute-command-keys".
|
2007-08-19 16:04:55 +00:00
|
|
|
|
Type \\[describe-distribution] for information on "))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "getting the latest version"
|
|
|
|
|
'action (lambda (button) (describe-distribution))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert ".")))
|
|
|
|
|
|
|
|
|
|
(defun normal-about-screen ()
|
|
|
|
|
(insert "\n" (emacs-version) "\n" emacs-copyright "\n\n")
|
|
|
|
|
|
|
|
|
|
(insert "To follow a link, click Mouse-1 on it, or move to it and type RET.\n\n")
|
|
|
|
|
|
2007-09-09 12:10:33 +00:00
|
|
|
|
(insert-button "Authors"
|
|
|
|
|
'action
|
|
|
|
|
(lambda (button)
|
|
|
|
|
(view-file (expand-file-name "AUTHORS" data-directory))
|
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\tMany people have contributed code included in GNU Emacs\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Contributing"
|
|
|
|
|
'action
|
|
|
|
|
(lambda (button)
|
|
|
|
|
(view-file (expand-file-name "CONTRIBUTE" data-directory))
|
|
|
|
|
(goto-char (point-min)))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tHow to contribute improvements to Emacs\n\n")
|
|
|
|
|
|
2007-09-05 19:59:01 +00:00
|
|
|
|
(insert-button "GNU and Freedom"
|
2008-02-29 23:42:52 +00:00
|
|
|
|
'action (lambda (button) (describe-gnu-project))
|
2007-09-05 19:59:01 +00:00
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\t\tWhy we developed GNU Emacs and the GNU system\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Absence of Warranty"
|
|
|
|
|
'action (lambda (button) (describe-no-warranty))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tGNU Emacs comes with ABSOLUTELY NO WARRANTY\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Copying Conditions"
|
|
|
|
|
'action (lambda (button) (describe-copying))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tConditions for redistributing and changing Emacs\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "Getting New Versions"
|
|
|
|
|
'action (lambda (button) (describe-distribution))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tHow to get the latest version of GNU Emacs\n")
|
|
|
|
|
|
|
|
|
|
(insert-button "More Manuals / Ordering Manuals"
|
|
|
|
|
'action (lambda (button) (view-order-manuals))
|
|
|
|
|
'follow-link t)
|
|
|
|
|
(insert "\tBuying printed manuals from the FSF\n"))
|
2002-01-29 13:54:39 +00:00
|
|
|
|
|
2000-09-29 19:12:14 +00:00
|
|
|
|
(defun startup-echo-area-message ()
|
2008-02-28 22:59:12 +00:00
|
|
|
|
(if (eq (key-binding "\C-h\C-a") 'about-emacs)
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
"For information about GNU Emacs and the GNU system, type C-h C-a."
|
2000-09-29 19:12:14 +00:00
|
|
|
|
(substitute-command-keys
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
"For information about GNU Emacs and the GNU system, type \
|
|
|
|
|
\\[about-emacs].")))
|
2000-09-19 13:28:27 +00:00
|
|
|
|
|
|
|
|
|
|
2000-09-20 10:56:02 +00:00
|
|
|
|
(defun display-startup-echo-area-message ()
|
2001-01-26 11:38:23 +00:00
|
|
|
|
(let ((resize-mini-windows t))
|
2006-03-21 22:32:30 +00:00
|
|
|
|
(or noninteractive ;(input-pending-p) init-file-had-error
|
|
|
|
|
;; t if the init file says to inhibit the echo area startup message.
|
|
|
|
|
(and inhibit-startup-echo-area-message
|
|
|
|
|
user-init-file
|
|
|
|
|
(or (and (get 'inhibit-startup-echo-area-message 'saved-value)
|
|
|
|
|
(equal inhibit-startup-echo-area-message
|
|
|
|
|
(if (equal init-file-user "")
|
|
|
|
|
(user-login-name)
|
|
|
|
|
init-file-user)))
|
|
|
|
|
;; Wasn't set with custom; see if .emacs has a setq.
|
|
|
|
|
(let ((buffer (get-buffer-create " *temp*")))
|
|
|
|
|
(prog1
|
|
|
|
|
(condition-case nil
|
|
|
|
|
(save-excursion
|
|
|
|
|
(set-buffer buffer)
|
|
|
|
|
(insert-file-contents user-init-file)
|
|
|
|
|
(re-search-forward
|
|
|
|
|
(concat
|
|
|
|
|
"([ \t\n]*setq[ \t\n]+"
|
|
|
|
|
"inhibit-startup-echo-area-message[ \t\n]+"
|
|
|
|
|
(regexp-quote
|
|
|
|
|
(prin1-to-string
|
|
|
|
|
(if (equal init-file-user "")
|
|
|
|
|
(user-login-name)
|
|
|
|
|
init-file-user)))
|
|
|
|
|
"[ \t\n]*)")
|
|
|
|
|
nil t))
|
|
|
|
|
(error nil))
|
|
|
|
|
(kill-buffer buffer)))))
|
2007-09-04 22:52:31 +00:00
|
|
|
|
(message "%s" (startup-echo-area-message)))))
|
2000-09-29 19:12:14 +00:00
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(defun display-startup-screen (&optional concise)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
"Display startup screen according to display.
|
|
|
|
|
A fancy display is used on graphic displays, normal otherwise.
|
2000-09-20 10:56:02 +00:00
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
If CONCISE is non-nil, display a concise version of the startup
|
|
|
|
|
screen."
|
2005-12-30 05:30:57 +00:00
|
|
|
|
;; Prevent recursive calls from server-process-filter.
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(if (not (get-buffer "*GNU Emacs*"))
|
2005-12-30 05:30:57 +00:00
|
|
|
|
(if (use-fancy-splash-screens-p)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(fancy-startup-screen concise)
|
2008-02-28 23:32:11 +00:00
|
|
|
|
(normal-splash-screen t concise))))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
|
|
|
|
|
(defun display-about-screen ()
|
|
|
|
|
"Display the *About GNU Emacs* buffer.
|
|
|
|
|
A fancy display is used on graphic displays, normal otherwise."
|
|
|
|
|
(interactive)
|
2004-04-16 12:51:06 +00:00
|
|
|
|
(if (use-fancy-splash-screens-p)
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(fancy-about-screen)
|
|
|
|
|
(normal-splash-screen nil)))
|
2002-01-29 13:54:39 +00:00
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(defalias 'about-emacs 'display-about-screen)
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(defalias 'display-splash-screen 'display-startup-screen)
|
2002-01-29 13:54:39 +00:00
|
|
|
|
|
1991-07-11 23:17:40 +00:00
|
|
|
|
(defun command-line-1 (command-line-args-left)
|
2006-03-21 22:32:30 +00:00
|
|
|
|
(display-startup-echo-area-message)
|
2001-11-03 16:15:43 +00:00
|
|
|
|
|
|
|
|
|
;; Delay 2 seconds after an init file error message
|
|
|
|
|
;; was displayed, so user can read it.
|
2003-02-26 10:59:58 +00:00
|
|
|
|
(when init-file-had-error
|
|
|
|
|
(sit-for 2))
|
|
|
|
|
|
2006-04-27 13:51:57 +00:00
|
|
|
|
(when (and pure-space-overflow
|
|
|
|
|
(not noninteractive))
|
|
|
|
|
(display-warning
|
|
|
|
|
'initialization
|
2006-05-05 14:05:54 +00:00
|
|
|
|
"Building Emacs overflowed pure space. (See the node Pure Storage in the Lisp manual for details.)"
|
2006-04-27 13:51:57 +00:00
|
|
|
|
:warning))
|
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(let ((file-count 0)
|
|
|
|
|
first-file-buffer)
|
|
|
|
|
(when command-line-args-left
|
|
|
|
|
;; We have command args; process them.
|
|
|
|
|
(let ((dir command-line-default-directory)
|
|
|
|
|
tem
|
|
|
|
|
;; This approach loses for "-batch -L DIR --eval "(require foo)",
|
|
|
|
|
;; if foo is intended to be found in DIR.
|
|
|
|
|
;;
|
|
|
|
|
;; ;; The directories listed in --directory/-L options will *appear*
|
|
|
|
|
;; ;; at the front of `load-path' in the order they appear on the
|
|
|
|
|
;; ;; command-line. We cannot do this by *placing* them at the front
|
|
|
|
|
;; ;; in the order they appear, so we need this variable to hold them,
|
|
|
|
|
;; ;; temporarily.
|
|
|
|
|
;; extra-load-path
|
|
|
|
|
;;
|
|
|
|
|
;; To DTRT we keep track of the splice point and modify `load-path'
|
|
|
|
|
;; straight away upon any --directory/-L option.
|
|
|
|
|
splice
|
|
|
|
|
just-files ;; t if this follows the magic -- option.
|
|
|
|
|
;; This includes our standard options' long versions
|
|
|
|
|
;; and long versions of what's on command-switch-alist.
|
|
|
|
|
(longopts
|
|
|
|
|
(append '(("--funcall") ("--load") ("--insert") ("--kill")
|
|
|
|
|
("--directory") ("--eval") ("--execute") ("--no-splash")
|
|
|
|
|
("--find-file") ("--visit") ("--file") ("--no-desktop"))
|
|
|
|
|
(mapcar (lambda (elt)
|
|
|
|
|
(list (concat "-" (car elt))))
|
|
|
|
|
command-switch-alist)))
|
|
|
|
|
(line 0)
|
|
|
|
|
(column 0))
|
|
|
|
|
|
|
|
|
|
;; Add the long X options to longopts.
|
|
|
|
|
(dolist (tem command-line-x-option-alist)
|
|
|
|
|
(if (string-match "^--" (car tem))
|
|
|
|
|
(push (list (car tem)) longopts)))
|
|
|
|
|
|
2008-07-16 23:24:46 +00:00
|
|
|
|
;; Add the long NS options to longopts.
|
|
|
|
|
(dolist (tem command-line-ns-option-alist)
|
|
|
|
|
(if (string-match "^--" (car tem))
|
|
|
|
|
(push (list (car tem)) longopts)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
;; Loop, processing options.
|
|
|
|
|
(while command-line-args-left
|
|
|
|
|
(let* ((argi (car command-line-args-left))
|
|
|
|
|
(orig-argi argi)
|
|
|
|
|
argval completion)
|
|
|
|
|
(setq command-line-args-left (cdr command-line-args-left))
|
|
|
|
|
|
|
|
|
|
;; Do preliminary decoding of the option.
|
|
|
|
|
(if just-files
|
|
|
|
|
;; After --, don't look for options; treat all args as files.
|
|
|
|
|
(setq argi "")
|
|
|
|
|
;; Convert long options to ordinary options
|
|
|
|
|
;; and separate out an attached option argument into argval.
|
|
|
|
|
(when (string-match "^\\(--[^=]*\\)=" argi)
|
|
|
|
|
(setq argval (substring argi (match-end 0))
|
|
|
|
|
argi (match-string 1 argi)))
|
|
|
|
|
(if (equal argi "--")
|
|
|
|
|
(setq completion nil)
|
|
|
|
|
(setq completion (try-completion argi longopts)))
|
|
|
|
|
(if (eq completion t)
|
|
|
|
|
(setq argi (substring argi 1))
|
|
|
|
|
(if (stringp completion)
|
|
|
|
|
(let ((elt (assoc completion longopts)))
|
|
|
|
|
(or elt
|
|
|
|
|
(error "Option `%s' is ambiguous" argi))
|
|
|
|
|
(setq argi (substring (car elt) 1)))
|
|
|
|
|
(setq argval nil
|
|
|
|
|
argi orig-argi))))
|
|
|
|
|
|
|
|
|
|
;; Execute the option.
|
|
|
|
|
(cond ((setq tem (assoc argi command-switch-alist))
|
|
|
|
|
(if argval
|
|
|
|
|
(let ((command-line-args-left
|
|
|
|
|
(cons argval command-line-args-left)))
|
|
|
|
|
(funcall (cdr tem) argi))
|
|
|
|
|
(funcall (cdr tem) argi)))
|
|
|
|
|
|
|
|
|
|
((equal argi "-no-splash")
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(setq inhibit-startup-screen t))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
|
|
|
|
|
((member argi '("-f" ; what the manual claims
|
|
|
|
|
"-funcall"
|
|
|
|
|
"-e")) ; what the source used to say
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(setq inhibit-startup-screen t)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(setq tem (intern (or argval (pop command-line-args-left))))
|
|
|
|
|
(if (commandp tem)
|
|
|
|
|
(command-execute tem)
|
|
|
|
|
(funcall tem)))
|
|
|
|
|
|
|
|
|
|
((member argi '("-eval" "-execute"))
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(setq inhibit-startup-screen t)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(eval (read (or argval (pop command-line-args-left)))))
|
|
|
|
|
|
|
|
|
|
((member argi '("-L" "-directory"))
|
|
|
|
|
(setq tem (expand-file-name
|
|
|
|
|
(command-line-normalize-file-name
|
|
|
|
|
(or argval (pop command-line-args-left)))))
|
|
|
|
|
(cond (splice (setcdr splice (cons tem (cdr splice)))
|
|
|
|
|
(setq splice (cdr splice)))
|
|
|
|
|
(t (setq load-path (cons tem load-path)
|
|
|
|
|
splice load-path))))
|
|
|
|
|
|
|
|
|
|
((member argi '("-l" "-load"))
|
|
|
|
|
(let* ((file (command-line-normalize-file-name
|
|
|
|
|
(or argval (pop command-line-args-left))))
|
|
|
|
|
;; Take file from default dir if it exists there;
|
|
|
|
|
;; otherwise let `load' search for it.
|
|
|
|
|
(file-ex (expand-file-name file)))
|
|
|
|
|
(when (file-exists-p file-ex)
|
|
|
|
|
(setq file file-ex))
|
|
|
|
|
(load file nil t)))
|
|
|
|
|
|
|
|
|
|
;; This is used to handle -script. It's not clear
|
2008-03-13 03:04:51 +00:00
|
|
|
|
;; we need to document it (it is totally internal).
|
2008-03-14 02:38:45 +00:00
|
|
|
|
((member argi '("-scriptload"))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(let* ((file (command-line-normalize-file-name
|
|
|
|
|
(or argval (pop command-line-args-left))))
|
|
|
|
|
;; Take file from default dir.
|
|
|
|
|
(file-ex (expand-file-name file)))
|
|
|
|
|
(load file-ex nil t t)))
|
|
|
|
|
|
|
|
|
|
((equal argi "-insert")
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(setq inhibit-startup-screen t)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(setq tem (or argval (pop command-line-args-left)))
|
|
|
|
|
(or (stringp tem)
|
|
|
|
|
(error "File name omitted from `-insert' option"))
|
|
|
|
|
(insert-file-contents (command-line-normalize-file-name tem)))
|
|
|
|
|
|
|
|
|
|
((equal argi "-kill")
|
|
|
|
|
(kill-emacs t))
|
|
|
|
|
|
|
|
|
|
;; This is for when they use --no-desktop with -q, or
|
|
|
|
|
;; don't load Desktop in their .emacs. If desktop.el
|
|
|
|
|
;; _is_ loaded, it will handle this switch, and we
|
|
|
|
|
;; won't see it by the time we get here.
|
|
|
|
|
((equal argi "-no-desktop")
|
|
|
|
|
(message "\"--no-desktop\" ignored because the Desktop package is not loaded"))
|
|
|
|
|
|
|
|
|
|
((string-match "^\\+[0-9]+\\'" argi)
|
|
|
|
|
(setq line (string-to-number argi)))
|
|
|
|
|
|
|
|
|
|
((string-match "^\\+\\([0-9]+\\):\\([0-9]+\\)\\'" argi)
|
|
|
|
|
(setq line (string-to-number (match-string 1 argi))
|
|
|
|
|
column (string-to-number (match-string 2 argi))))
|
|
|
|
|
|
|
|
|
|
((setq tem (assoc argi command-line-x-option-alist))
|
|
|
|
|
;; Ignore X-windows options and their args if not using X.
|
|
|
|
|
(setq command-line-args-left
|
|
|
|
|
(nthcdr (nth 1 tem) command-line-args-left)))
|
|
|
|
|
|
2008-07-21 17:23:14 +00:00
|
|
|
|
((setq tem (assoc argi command-line-ns-option-alist))
|
|
|
|
|
;; Ignore NS-windows options and their args if not using NS.
|
|
|
|
|
(setq command-line-args-left
|
|
|
|
|
(nthcdr (nth 1 tem) command-line-args-left)))
|
2008-07-15 18:15:18 +00:00
|
|
|
|
|
2007-09-10 22:07:27 +00:00
|
|
|
|
((member argi '("-find-file" "-file" "-visit"))
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(setq inhibit-startup-screen t)
|
2007-09-10 22:07:27 +00:00
|
|
|
|
;; An explicit option to specify visiting a file.
|
|
|
|
|
(setq tem (or argval (pop command-line-args-left)))
|
|
|
|
|
(unless (stringp tem)
|
|
|
|
|
(error "File name omitted from `%s' option" argi))
|
|
|
|
|
(setq file-count (1+ file-count))
|
|
|
|
|
(let ((file (expand-file-name
|
|
|
|
|
(command-line-normalize-file-name tem) dir)))
|
|
|
|
|
(if (= file-count 1)
|
|
|
|
|
(setq first-file-buffer (find-file file))
|
|
|
|
|
(find-file-other-window file)))
|
|
|
|
|
(or (zerop line)
|
|
|
|
|
(goto-line line))
|
|
|
|
|
(setq line 0)
|
|
|
|
|
(unless (< column 1)
|
|
|
|
|
(move-to-column (1- column)))
|
|
|
|
|
(setq column 0))
|
|
|
|
|
|
|
|
|
|
((equal argi "--")
|
|
|
|
|
(setq just-files t))
|
|
|
|
|
(t
|
|
|
|
|
;; We have almost exhausted our options. See if the
|
|
|
|
|
;; user has made any other command-line options available
|
|
|
|
|
(let ((hooks command-line-functions)
|
|
|
|
|
(did-hook nil))
|
|
|
|
|
(while (and hooks
|
|
|
|
|
(not (setq did-hook (funcall (car hooks)))))
|
|
|
|
|
(setq hooks (cdr hooks)))
|
|
|
|
|
(if (not did-hook)
|
|
|
|
|
;; Presume that the argument is a file name.
|
|
|
|
|
(progn
|
|
|
|
|
(if (string-match "\\`-" argi)
|
|
|
|
|
(error "Unknown option `%s'" argi))
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(unless initial-window-system
|
|
|
|
|
(setq inhibit-startup-screen t))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(setq file-count (1+ file-count))
|
|
|
|
|
(let ((file
|
|
|
|
|
(expand-file-name
|
|
|
|
|
(command-line-normalize-file-name orig-argi)
|
|
|
|
|
dir)))
|
2007-10-12 18:56:00 +00:00
|
|
|
|
(cond ((= file-count 1)
|
|
|
|
|
(setq first-file-buffer (find-file file)))
|
|
|
|
|
(inhibit-startup-screen
|
|
|
|
|
(find-file-other-window file))
|
|
|
|
|
(t (find-file file))))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
(or (zerop line)
|
|
|
|
|
(goto-line line))
|
|
|
|
|
(setq line 0)
|
|
|
|
|
(unless (< column 1)
|
|
|
|
|
(move-to-column (1- column)))
|
|
|
|
|
(setq column 0))))))
|
|
|
|
|
;; In unusual circumstances, the execution of Lisp code due
|
|
|
|
|
;; to command-line options can cause the last visible frame
|
|
|
|
|
;; to be deleted. In this case, kill emacs to avoid an
|
|
|
|
|
;; abort later.
|
|
|
|
|
(unless (frame-live-p (selected-frame)) (kill-emacs nil))))))
|
|
|
|
|
|
|
|
|
|
(when initial-buffer-choice
|
|
|
|
|
(cond ((eq initial-buffer-choice t)
|
|
|
|
|
(switch-to-buffer (get-buffer-create "*scratch*")))
|
|
|
|
|
((stringp initial-buffer-choice)
|
|
|
|
|
(find-file initial-buffer-choice))))
|
|
|
|
|
|
2008-02-28 22:50:26 +00:00
|
|
|
|
;; If *scratch* exists and is empty, insert initial-scratch-message.
|
|
|
|
|
(and initial-scratch-message
|
|
|
|
|
(get-buffer "*scratch*")
|
|
|
|
|
(with-current-buffer "*scratch*"
|
|
|
|
|
(when (zerop (buffer-size))
|
|
|
|
|
(insert initial-scratch-message)
|
|
|
|
|
(set-buffer-modified-p nil))))
|
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(if (or inhibit-startup-screen
|
2007-09-10 22:07:27 +00:00
|
|
|
|
initial-buffer-choice
|
|
|
|
|
noninteractive
|
|
|
|
|
emacs-quick-startup)
|
|
|
|
|
|
|
|
|
|
;; Not displaying a startup screen. If 3 or more files
|
|
|
|
|
;; visited, and not all visible, show user what they all are.
|
|
|
|
|
(and (> file-count 2)
|
|
|
|
|
(not noninteractive)
|
|
|
|
|
(not inhibit-startup-buffer-menu)
|
|
|
|
|
(or (get-buffer-window first-file-buffer)
|
|
|
|
|
(list-buffers)))
|
|
|
|
|
|
|
|
|
|
;; Display a startup screen, after some preparations.
|
|
|
|
|
|
|
|
|
|
;; If there are no switches to process, we might as well
|
|
|
|
|
;; run this hook now, and there may be some need to do it
|
|
|
|
|
;; before doing any output.
|
|
|
|
|
(run-hooks 'emacs-startup-hook)
|
|
|
|
|
(and term-setup-hook
|
|
|
|
|
(run-hooks 'term-setup-hook))
|
|
|
|
|
(setq inhibit-startup-hooks t)
|
|
|
|
|
|
|
|
|
|
;; It's important to notice the user settings before we
|
|
|
|
|
;; display the startup message; otherwise, the settings
|
|
|
|
|
;; won't take effect until the user gives the first
|
|
|
|
|
;; keystroke, and that's distracting.
|
|
|
|
|
(when (fboundp 'frame-notice-user-settings)
|
|
|
|
|
(frame-notice-user-settings))
|
|
|
|
|
|
|
|
|
|
;; If there are no switches to process, we might as well
|
|
|
|
|
;; run this hook now, and there may be some need to do it
|
|
|
|
|
;; before doing any output.
|
|
|
|
|
(when window-setup-hook
|
|
|
|
|
(run-hooks 'window-setup-hook)
|
|
|
|
|
;; Don't let the hook be run twice.
|
|
|
|
|
(setq window-setup-hook nil))
|
|
|
|
|
|
2007-10-12 19:00:30 +00:00
|
|
|
|
;; ;; Do this now to avoid an annoying delay if the user
|
|
|
|
|
;; ;; clicks the menu bar during the sit-for.
|
|
|
|
|
;; (when (display-popup-menus-p)
|
|
|
|
|
;; (precompute-menubar-bindings))
|
|
|
|
|
;; (with-no-warnings
|
|
|
|
|
;; (setq menubar-bindings-done t))
|
2007-09-10 22:07:27 +00:00
|
|
|
|
|
(command-line): Rename `inhibit-startup-message' to
`inhibit-startup-screen'.
(fancy-about-text): Use shorter label for "Ordering Manuals".
(fancy-startup-tail): Add optional arg `concise'. When `concise'
is nil, display a line with "To start..." and 3 links to useful
tasks. Display the "Dismiss" button and "Don't show this message
again" only when concise is non-nil.
(fancy-startup-screen): Call `fancy-startup-tail' with optional
arg `concise'. If CONCISE is non-nil, display a concise version
of the splash screen in another window. Otherwise, switch to the
startup buffer in the same window.
(startup-echo-area-message): Change displayed binding from
C-h C-p (describe-project) to C-h C-a (about-emacs), and change
text "about the GNU system and GNU/Linux" to "about GNU Emacs and
the GNU system".
(display-startup-screen): Fix buffer name from "*About GNU Emacs*"
to "*GNU Emacs*".
(display-about-screen): Don't check the existence of the buffer
"*About GNU Emacs*".
(display-splash-screen): Make alias to `display-startup-screen'.
(command-line-1): Rename `inhibit-startup-message' to
`inhibit-startup-screen'. Inhibit startup screen when Emacs is
started with command line options "-f", "-funcall", "-e", "-eval",
"-execute", "-insert", "-find-file", "-file", "-visit".
Inhibit startup screen when Emacs is started with a file name only
on tty (i.e. don't inhibit it when started with a file name like
"emacs FILE..." on a window system).
(command-line-1): Simplify logic of displaying the startup screen:
if file-count > 0, then display the concise version in another
window, otherwise display full version in the same window.
2007-09-22 14:02:38 +00:00
|
|
|
|
(if (> file-count 0)
|
|
|
|
|
(display-startup-screen t)
|
|
|
|
|
(display-startup-screen nil)))))
|
2000-09-20 10:56:02 +00:00
|
|
|
|
|
1996-01-27 00:14:59 +00:00
|
|
|
|
(defun command-line-normalize-file-name (file)
|
|
|
|
|
"Collapse multiple slashes to one, to handle non-Emacs file names."
|
1996-03-01 20:13:01 +00:00
|
|
|
|
(save-match-data
|
|
|
|
|
;; Use arg 1 so that we don't collapse // at the start of the file name.
|
|
|
|
|
;; That is significant on some systems.
|
|
|
|
|
;; However, /// at the beginning is supposed to mean just /, not //.
|
|
|
|
|
(if (string-match "^///+" file)
|
|
|
|
|
(setq file (replace-match "/" t t file)))
|
|
|
|
|
(while (string-match "//+" file 1)
|
|
|
|
|
(setq file (replace-match "/" t t file)))
|
|
|
|
|
file))
|
1996-01-27 00:14:59 +00:00
|
|
|
|
|
2005-03-06 00:48:46 +00:00
|
|
|
|
;; arch-tag: 7e294698-244d-4758-984b-4047f887a5db
|
1992-05-30 21:11:25 +00:00
|
|
|
|
;;; startup.el ends here
|