2011-03-24 15:31:56 +00:00
;;; startup.el --- process Emacs shell arguments -*- lexical-binding: t -*-
1992-05-30 21:11:25 +00:00
2013-09-17 07:39:54 +00:00
;; Copyright (C) 1985-1986, 1992, 1994-2013 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
2010-08-29 16:17:13 +00:00
;; Package: emacs
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
2012-12-24 17:49:19 +00:00
startup screen. If the value is a string, switch to a buffer
visiting the file or directory specified by that string. If the
value is a function, switch to the buffer returned by that
function. If t , open the ` *scratch* ' buffer.
2012-09-30 09:18:38 +00:00
A string value also causes emacsclient to open the specified file
or directory when no target file is specified. "
2007-08-15 23:24:17 +00:00
: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 " ~/ " )
2008-11-22 20:45:09 +00:00
( file :tag " File " :value " ~/.emacs " )
2013-06-30 22:29:23 +00:00
( const :tag " Notes buffer " remember-notes )
( function :tag " Function " )
2011-07-14 12:57:06 +00:00
( const :tag " Lisp scratch buffer " t ) )
2012-12-24 17:49:19 +00:00
:version " 24.4 "
2007-08-15 23:24:17 +00:00
: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.
2008-10-28 11:17:05 +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
2012-03-26 00:37:04 +00:00
;; FIXME? Why does this get such weirdly extreme treatment, when the
;; more important inhibit-startup-screen does not.
1997-06-18 07:07:57 +00:00
( defcustom inhibit-startup-echo-area-message nil
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
2008-10-25 00:46:25 +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
2012-09-17 05:41:04 +00:00
or if your init file contains a line of this form:
1994-03-01 04:54:43 +00:00
( setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\" )
2012-09-17 05:41:04 +00:00
If your init file is byte-compiled, use the following form
instead:
1994-06-14 00:21:40 +00:00
( eval ' ( setq inhibit-startup-echo-area-message \"YOUR-USER-NAME\" ) )
2012-09-17 05:41:04 +00:00
Thus, someone else using a copy of your init file will see the
startup message unless he personally acts to inhibit it. "
1997-06-18 07:07:57 +00:00
: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
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
2008-10-25 00:46:25 +00:00
" Non-nil inhibits loading the `default' library. "
1997-06-18 07:07:57 +00:00
: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
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
2008-10-25 00:46:25 +00:00
" Non-nil inhibits display of buffer list when more than 2 files are loaded. "
2001-10-05 09:24:51 +00:00
: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. " )
2012-06-08 13:18:26 +00:00
( internal-make-var-non-special 'argv )
2007-09-30 20:43:14 +00:00
2012-06-08 13:18:26 +00:00
( defvar argi nil
" Current command-line argument. " )
( internal-make-var-non-special 'argi )
2011-08-12 20:45:45 +00:00
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. " )
Further GV/CL cleanups.
* lisp/emacs-lisp/gv.el (gv-get): Autoload functions to find their
gv-expander.
(gv--defun-declaration): New function.
(defun-declarations-alist): Use it.
(gv-define-modify-macro, gv-pushnew!, gv-inc!, gv-dec!): Remove.
(gv-place): Autoload.
* lisp/emacs-lisp/cl.el (cl--dotimes, cl--dolist): Remember subr.el's
original definition of dotimes and dolist.
* lisp/emacs-lisp/cl-macs.el (cl-expr-access-order): Remove unused.
(cl-dolist, cl-dotimes): Use `dolist' and `dotimes'.
* lisp/emacs-lisp/cl-lib.el: Move gv handlers from cl-macs to here.
(cl-fifth, cl-sixth, cl-seventh, cl-eighth)
(cl-ninth, cl-tenth): Move gv handler to the function's definition.
* lisp/emacs-lisp/cl-extra.el (cl-subseq, cl-get, cl-getf): Move gv handler
to the function's definition.
* lisp/Makefile.in (COMPILE_FIRST): Re-order to speed it up by about 50%.
* lisp/window.el:
* lisp/files.el:
* lisp/faces.el:
* lisp/env.el: Don't use CL.
2012-06-22 21:24:54 +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 )
2009-07-01 14:02:27 +00:00
( " -mm " 0 x-handle-initial-switch fullscreen maximized )
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 )
2009-07-01 14:02:27 +00:00
( " --maximized " 0 x-handle-initial-switch fullscreen maximized )
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)
2010-10-26 03:58:19 +00:00
( " -name " 1 x-handle-name-switch )
( " -title " 1 x-handle-switch title )
( " -T " 1 x-handle-switch title )
( " -r " 0 x-handle-switch reverse t )
( " -rv " 0 x-handle-switch reverse t )
( " -reverse " 0 x-handle-switch reverse t )
( " -fn " 1 x-handle-switch font )
( " -font " 1 x-handle-switch font )
( " -ib " 1 x-handle-numeric-switch internal-border-width )
2012-09-19 06:47:01 +00:00
( " -g " 1 x-handle-geometry )
( " -geometry " 1 x-handle-geometry )
2010-10-26 03:58:19 +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)
( " -itype " 0 x-handle-switch icon-type t )
( " -i " 0 x-handle-switch icon-type t )
( " -iconic " 0 x-handle-iconic icon-type t )
2008-07-15 18:15:18 +00:00
;;("-xrm" . x-handle-xrm-switch)
2010-10-26 03:58:19 +00:00
( " -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)
2008-07-15 18:15:18 +00:00
;; ("--display" 1 ns-handle-display)
2010-10-26 03:58:19 +00:00
( " --name " 1 x-handle-name-switch )
( " --title " 1 x-handle-switch title )
( " --reverse-video " 0 x-handle-switch reverse t )
( " --font " 1 x-handle-switch font )
( " --internal-border " 1 x-handle-numeric-switch internal-border-width )
2008-07-15 18:15:18 +00:00
;; ("--geometry" 1 ns-handle-geometry)
2010-10-26 03:58:19 +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 )
( " --icon-type " 0 x-handle-switch icon-type t )
( " --iconic " 0 x-handle-iconic )
2008-07-15 18:15:18 +00:00
;; ("--xrm" 1 ns-handle-xrm-switch)
2010-10-26 03:58:19 +00:00
( " --cursor-color " 1 x-handle-switch cursor-color )
( " --vertical-scroll-bars " 0 x-handle-switch vertical-scroll-bars t )
( " --border-color " 1 x-handle-switch border-width ) )
2008-07-15 18:15:18 +00:00
" 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
2012-09-17 05:41:04 +00:00
" Normal hook run after initializing the Emacs session.
It is run after Emacs loads the init file, ` default ' library, the
abbrevs file, and additional Lisp packages ( if any ) , and setting
the value of ` after-init-time '.
There is no ` condition-case ' around the running of this hook ;
therefore, if ` debug-on-error ' is non-nil, an error in one of
these functions will invoke the debugger. " )
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
2012-09-17 05:41:04 +00:00
" Identity of user whose init 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 \"/\" ) '
2012-09-17 05:41:04 +00:00
evaluates to the name of the directory where the init 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
* textmodes/tex-mode.el (tex-alt-dvi-print-command)
(tex-dvi-print-command, tex-bibtex-command, tex-start-commands)
(tex-start-options, slitex-run-command, latex-run-command)
(tex-run-command, tex-directory):
* textmodes/ispell.el (ispell-html-skip-alists)
(ispell-tex-skip-alists, ispell-tex-skip-alists):
* textmodes/fill.el (adaptive-fill-first-line-regexp):
(adaptive-fill-regexp):
* textmodes/dns-mode.el (auto-mode-alist):
* progmodes/python.el (interpreter-mode-alist):
* progmodes/etags.el (tags-compression-info-list):
* progmodes/etags.el (tags-file-name):
* net/browse-url.el (browse-url-galeon-program)
(browse-url-firefox-program):
* mail/sendmail.el (mail-signature-file)
(mail-citation-prefix-regexp):
* international/mule-conf.el (eight-bit):
* international/latexenc.el (latex-inputenc-coding-alist):
* international/fontset.el (x-pixel-size-width-font-regexp):
* emacs-lisp/warnings.el (warning-type-format):
* emacs-lisp/trace.el (trace-buffer):
* emacs-lisp/lisp-mode.el (lisp-interaction-mode-map)
(emacs-lisp-mode-map):
* calendar/holidays.el (holiday-solar-holidays)
(holiday-bahai-holidays, holiday-islamic-holidays)
(holiday-christian-holidays, holiday-hebrew-holidays)
(hebrew-holidays-4, hebrew-holidays-3, hebrew-holidays-2)
(hebrew-holidays-1, holiday-oriental-holidays)
(holiday-general-holidays):
* x-dnd.el (x-dnd-known-types):
* tool-bar.el (tool-bar):
* startup.el (site-run-file):
* shell.el (shell-dumb-shell-regexp):
* rfn-eshadow.el (file-name-shadow-tty-properties)
(file-name-shadow-properties):
* paths.el (remote-shell-program, news-directory):
* mouse.el ([C-down-mouse-3]):
* menu-bar.el (menu-bar-tools-menu):
* jka-cmpr-hook.el (jka-compr-load-suffixes)
(jka-compr-mode-alist-additions, jka-compr-compression-info-list)
(jka-compr-compression-info-list):
* isearch.el (search-whitespace-regexp):
* image-file.el (image-file-name-extensions):
* find-dired.el (find-ls-option):
* files.el (directory-listing-before-filename-regexp)
(directory-free-space-args, insert-directory-program)
(list-directory-brief-switches, magic-fallback-mode-alist)
(magic-fallback-mode-alist, auto-mode-interpreter-regexp)
(automount-dir-prefix):
* faces.el (face-x-resources, x-font-regexp, x-font-regexp-head)
(x-font-regexp-slant, x-font-regexp-weight, face-x-resources)
(face-font-registry-alternatives, face-font-registry-alternatives)
(face-font-family-alternatives):
* facemenu.el (facemenu-add-new-face, facemenu-background-menu)
(facemenu-foreground-menu, facemenu-face-menu):
* epa-hook.el (epa-file-name-regexp):
* dnd.el (dnd-protocol-alist):
* textmodes/rst.el (auto-mode-alist):
* button.el (default-button): Purecopy strings.
2009-11-06 05:16:23 +00:00
( defcustom site-run-file ( purecopy " 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
2011-03-24 15:31:56 +00:00
:set ( lambda ( _variable _value )
2004-12-28 15:30:39 +00:00
( 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
2012-03-27 06:45:12 +00:00
" Name of this machine, for purposes of naming users.
If non-nil, Emacs uses this instead of ` system-name ' when constructing
email addresses. "
1997-06-18 07:07:57 +00:00
: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".
" " )
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
2008-10-25 00:46:25 +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
2008-10-28 11:17:05 +00:00
fallback, using ` mail-host-address '. This is done after your
2006-07-22 10:37:52 +00:00
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
2008-10-24 22:50:13 +00:00
( concat user-emacs-directory " auto-save.list/_s " ) )
2000-04-24 18:43:25 +00:00
( t
2008-10-24 22:50:13 +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' .
2012-09-17 05:41:04 +00:00
This is used after reading your init file to initialize
1995-12-21 18:10:03 +00:00
` 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
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 )
2003-06-30 10:36:35 +00:00
( defvar pure-space-overflow nil
" Non-nil if building Emacs overflowed pure space. " )
2009-10-30 02:00:11 +00:00
( defvar pure-space-overflow-message ( purecopy " \
2007-09-10 22:07:27 +00:00
Warning Warning!!! Pure space overflow !!!Warning Warning
2009-10-30 02:00:11 +00:00
\(See the node Pure Storage in the Lisp manual for details. ) \n " ))
2007-09-10 22:07:27 +00:00
2009-09-12 03:55:46 +00:00
( defcustom tutorial-directory
( file-name-as-directory ( expand-file-name " tutorials " data-directory ) )
" Directory containing the Emacs TUTORIAL files. "
:group 'installation
:type 'directory
:initialize 'custom-initialize-delay )
2007-08-24 02:57:53 +00:00
2013-06-15 15:36:11 +00:00
( defvar package--builtin-versions
;; Mostly populated by loaddefs.el via autoload-builtin-package-versions.
( purecopy ` ( ( emacs . , ( version-to-list emacs-version ) ) ) )
" Alist giving the version of each versioned builtin package.
I.e. each element of the list is of the form ( NAME . VERSION ) where
NAME is the package name as a symbol, and VERSION is its version
as a list. " )
2011-03-19 18:27:55 +00:00
2013-06-14 03:20:18 +00:00
( defun package--description-file ( dir )
( concat ( let ( ( subdir ( file-name-nondirectory
( directory-file-name dir ) ) ) )
2013-06-15 15:36:11 +00:00
( if ( string-match " \\ ([^.].*? \\ )- \\ ([0-9]+ \\ (?:[.][0-9]+ \\ | \\ (?:pre \\ |beta \\ |alpha \\ )[0-9]+ \\ )* \\ ) " subdir )
2013-06-14 03:20:18 +00:00
( match-string 1 subdir ) subdir ) )
" -pkg.el " ) )
1998-03-23 00:15:20 +00:00
( defun normal-top-level-add-subdirs-to-load-path ( )
2011-08-20 19:30:53 +00:00
" Add all subdirectories of `default-directory' to `load-path' .
1998-05-11 01:17:48 +00:00
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 ) ) ) )
2010-12-03 03:06:11 +00:00
;; The Windows version doesn't report meaningful inode numbers, so
;; use the canonicalized absolute file name of the directory instead.
2001-07-22 10:53:30 +00:00
( 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 )
2010-12-03 03:06:11 +00:00
( and ( string-match " \\ ` [[:alnum:]] " file )
;; The lower-case variants of RCS and CVS are for DOS/Windows.
( not ( member file ' ( " RCS " " CVS " " rcs " " cvs " ) ) )
;; Avoid doing a `stat' when it isn't necessary because
;; that can cause trouble when an NFS server is down.
( not ( string-match " \\ .elc? \\ ' " file ) )
( file-directory-p file )
( let ( ( expanded ( expand-file-name file ) ) )
( or ( file-exists-p ( expand-file-name " .nosearch " expanded ) )
( 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
1994-10-11 08:22:38 +00:00
( defun normal-top-level-add-to-load-path ( dirs )
2010-12-03 03:06:11 +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. "
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 ( )
2012-03-26 00:37:04 +00:00
" Emacs calls this function when it first starts up.
It sets ` command-line-processed ', processes the command-line,
reads the initialization files, etc.
It is the default value of the variable ` top-level '. "
1991-07-11 23:17:40 +00:00
( 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* "
2013-09-17 07:39:54 +00:00
( messages-buffer-mode )
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 ) ) )
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.
2012-04-09 06:58:41 +00:00
( let ( ( tail load-path )
( lispdir ( expand-file-name " ../lisp " data-directory ) )
;; For out-of-tree builds, leim-list is generated in the build dir.
;;; (leimdir (expand-file-name "../leim" doc-directory))
dir )
2005-05-25 14:18:45 +00:00
( while tail
( setq dir ( car tail ) )
( let ( ( default-directory dir ) )
( load ( expand-file-name " subdirs.el " ) t t t ) )
2012-04-09 06:58:41 +00:00
;; Do not scan standard directories that won't contain a leim-list.el.
;; http://lists.gnu.org/archive/html/emacs-devel/2009-10/msg00502.html
( or ( string-match ( concat " \\ ` " lispdir ) dir )
( let ( ( default-directory dir ) )
( load ( expand-file-name " leim-list.el " ) t t t ) ) )
2005-05-25 14:18:45 +00:00
;; 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 ) )
2009-09-10 18:19:03 +00:00
( let ( ( old-face-font-rescale-alist face-font-rescale-alist ) )
1994-05-07 00:21:24 +00:00
( 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 ) ) ) ) )
2009-04-25 14:25:06 +00:00
;; FIXME: The user's init file may change
;; face-font-rescale-alist. However, the default face
;; already has an assigned font object, which does not take
;; face-font-rescale-alist into account. For such
;; situations, we ought to have a way to find all font
;; objects and regenerate them; currently we do not. As a
;; workaround, we specifically reset te default face's :font
;; attribute here. See bug#1785.
( unless ( eq face-font-rescale-alist
old-face-font-rescale-alist )
( set-face-attribute 'default nil :font ( font-spec ) ) )
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
2009-09-10 18:19:03 +00:00
( run-hooks 'window-setup-hook ) ) ) )
2007-08-31 06:57:25 +00:00
;; 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.
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
2008-10-28 11:17:05 +00:00
" Height in pixels of images in the tool-bar. " )
2001-01-24 15:38:36 +00:00
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
2000-10-28 17:18:59 +00:00
( defun tty-handle-args ( args )
2010-12-03 03:06:11 +00:00
" Handle the X-like command-line arguments \" -fg \" , \" -bg \" , \" -name \" , etc. "
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 ) ) ) ) )
2013-06-13 17:59:10 +00:00
( nconc ( nreverse rest ) args ) ) )
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 ) )
2008-10-12 16:59:01 +00:00
( declare-function tool-bar-setup " tool-bar " )
2008-06-12 03:56:20 +00:00
2008-10-27 07:02:30 +00:00
( defvar server-name )
2008-12-16 21:23:03 +00:00
( defvar server-process )
2008-10-27 07:02:30 +00:00
1991-07-11 23:17:40 +00:00
( defun command-line ( )
2012-03-26 00:37:04 +00:00
" A subroutine of `normal-top-level' .
Amongst another things, it parses the command-line arguments. "
2008-02-16 22:20:12 +00:00
( setq before-init-time ( current-time )
2008-10-06 16:16:30 +00:00
after-init-time nil
2008-02-11 00:24:16 +00:00
command-line-default-directory default-directory )
1994-04-22 18:28:22 +00:00
2009-08-29 19:22:38 +00:00
;; Force recomputation, in case it was computed during the dump.
( setq abbreviated-home-dir nil )
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
2009-08-22 21:59:40 +00:00
( ( memq system-type ' ( ms-dos windows-nt ) )
2003-02-26 10:59:58 +00:00
( setq eol-mnemonic-unix " (Unix) "
eol-mnemonic-mac " (Mac) " ) )
( 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
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.
2013-02-06 02:03:35 +00:00
;; Although in most usage we are going to cryptically abort a moment
;; later anyway, due to missing required bidi data files (eg bug#13430).
2007-02-24 13:58:35 +00:00
( if ( null simple-file-name )
2013-02-06 02:03:35 +00:00
( let ( ( standard-output 'external-debugging-output )
( lispdir ( expand-file-name " ../lisp " data-directory ) ) )
( princ " Warning: Could not find simple.el or simple.elc " )
( terpri )
( when ( getenv " EMACSLOADPATH " )
( princ " The EMACSLOADPATH environment variable is set, \
please check its value " )
( terpri ) )
( unless ( file-readable-p lispdir )
( princ ( format " Lisp directory %s not readable? " lispdir ) )
( terpri ) ) )
2007-02-24 13:58:35 +00:00
( 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 )
2010-01-16 19:28:59 +00:00
( args ( cdr command-line-args ) )
display-arg )
1991-07-13 09:35:06 +00:00
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.
2009-02-20 14:24:55 +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 ) ) )
2009-02-20 14:24:55 +00:00
( when ( string-match " \\ ` --. " orig-argi )
2002-05-26 20:49:28 +00:00
( let ( ( completion ( try-completion argi longopts ) ) )
2010-08-22 21:15:20 +00:00
( cond ( ( eq completion t )
( setq argi ( substring argi 1 ) ) )
( ( stringp completion )
( let ( ( elt ( assoc completion longopts ) ) )
( unless elt
( error " Option `%s' is ambiguous " argi ) )
( setq argi ( substring ( car elt ) 1 ) ) ) )
( t
( setq argval nil
argi orig-argi ) ) ) ) )
1991-07-11 23:17:40 +00:00
( cond
2010-01-16 19:28:59 +00:00
;; The --display arg is handled partly in C, partly in Lisp.
;; When it shows up here, we just put it back to be handled
;; by `command-line-1'.
( ( member argi ' ( " -d " " -display " ) )
( setq display-arg ( list argi ( pop args ) ) ) )
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
2009-09-17 23:04:41 +00:00
inhibit-x-resources t ) )
2005-04-10 23:36:22 +00:00
( ( 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 ) )
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 ) ) ) )
2010-01-16 19:28:59 +00:00
;; Re-attach the --display arg.
( and display-arg ( setq args ( append display-arg args ) ) )
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
2009-09-16 17:54:13 +00:00
;; Make sure window system's init file was loaded in loadup.el if
;; using a window system.
;; Initialize the window-system only after processing the command-line
;; args so that -Q can influence this initialization.
( condition-case error
( unless noninteractive
( if ( and initial-window-system
( not ( featurep
( intern
( concat ( symbol-name initial-window-system ) " -win " ) ) ) ) )
( error " Unsupported window system `%s' " initial-window-system ) )
;; Process window-system specific command line parameters.
( setq command-line-args
( funcall
( or ( cdr ( assq initial-window-system handle-args-function-alist ) )
( error " Unsupported window system `%s' " initial-window-system ) )
command-line-args ) )
;; Initialize the window system. (Open connection, etc.)
( funcall
( or ( cdr ( assq initial-window-system window-system-initialization-alist ) )
2012-09-17 11:55:05 +00:00
( error " Unsupported window system `%s' " initial-window-system ) ) )
( put initial-window-system 'window-system-initialized t ) )
2009-09-16 17:54:13 +00:00
;; If there was an error, print the error message and exit.
( error
( princ
( if ( eq ( car error ) 'error )
( apply 'concat ( cdr error ) )
( if ( memq 'file-error ( get ( car error ) 'error-conditions ) )
( format " %s: %s "
( nth 1 error )
( mapconcat ( lambda ( obj ) ( prin1-to-string obj t ) )
( cdr ( cdr error ) ) " , " ) )
( format " %s: %s "
( get ( car error ) 'error-message )
( mapconcat ( lambda ( obj ) ( prin1-to-string obj t ) )
( cdr error ) " , " ) ) ) )
'external-debugging-output )
( terpri 'external-debugging-output )
( setq initial-window-system nil )
( kill-emacs ) ) )
2005-10-28 15:43:15 +00:00
( run-hooks 'before-init-hook )
2012-04-27 05:40:46 +00:00
;; Under X, create the X frame and delete the terminal frame.
2008-09-28 09:37:09 +00:00
( unless ( daemonp )
2012-04-27 05:40:46 +00:00
( if ( or noninteractive emacs-basic-display )
( setq menu-bar-mode nil
tool-bar-mode nil
no-blinking-cursor t ) )
2008-09-21 23:32:49 +00:00
( frame-initialize ) )
2001-01-30 15:09:25 +00:00
2010-06-30 22:58:19 +00:00
( when ( fboundp 'x-create-frame )
;; Set up the tool-bar (even in tty frames, since Emacs might open a
;; graphical frame later).
( unless noninteractive
( tool-bar-setup ) ) )
2010-06-27 00:30:52 +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 " )
2012-01-14 16:09:55 +00:00
' ( " no " " off " " false " " 0 " ) ) ) ) )
2005-04-12 19:59:54 +00:00
( setq no-blinking-cursor t ) )
2009-09-11 21:25:44 +00:00
;; Re-evaluate predefined variables whose initial value depends on
;; the runtime context.
( mapc 'custom-reevaluate-setting
;; Initialize them in the same order they were loaded, in case there
;; are dependencies between them.
( prog1 ( nreverse custom-delayed-init-variables )
( setq custom-delayed-init-variables nil ) ) )
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
2011-11-20 07:30:16 +00:00
;; terminal init file. We do this regardless of whether the terminal
2005-11-07 14:56:19 +00:00
;; 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-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
2008-11-08 13:16:17 +00:00
;; We don't support ~USER on MS-Windows
;; and MS-DOS 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 ( memq system-type ' ( windows-nt ms-dos ) )
2006-05-05 11:36:34 +00:00
" ~ "
( concat " ~ " init-file-user ) ) ) )
2005-10-28 15:43:15 +00:00
nil
( display-warning 'initialization
( format " User %s has no home directory "
2012-07-23 17:27:41 +00:00
( if ( equal init-file-user " " )
( user-real-login-name )
init-file-user ) )
2005-10-28 15:43:15 +00:00
: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 ) )
2009-09-03 06:54:57 +00:00
( orig-enable-multibyte ( default-value 'enable-multibyte-characters ) ) )
2001-05-11 15:12:08 +00:00
( 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
2011-03-16 02:13:31 +00:00
( ( eq system-type 'ms-dos )
( concat " ~ " init-file-user " /_emacs " ) )
( ( not ( eq system-type 'windows-nt ) )
( concat " ~ " init-file-user " /.emacs " ) )
;; Else deal with the Windows situation
( ( directory-files " ~ " nil " ^ \\ .emacs \\ ( \\ .elc? \\ )?$ " )
;; Prefer .emacs on Windows.
" ~/.emacs " )
( ( directory-files " ~ " nil " ^_emacs \\ ( \\ .elc? \\ )?$ " )
;; Also support _emacs for compatibility, but warn about it.
2011-04-28 22:58:40 +00:00
( push ' ( initialization
" `_emacs' init file is deprecated, please use `.emacs' " )
delayed-warnings-list )
2011-03-16 02:13:31 +00:00
" ~/_emacs " )
( t ;; But default to .emacs if _emacs does not exist.
" ~/.emacs " ) ) ) )
2001-05-11 15:12:08 +00:00
;; 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
2008-10-07 19:47:49 +00:00
( display-warning
'initialization
( format " An error occurred while loading `%s' : \n \n %s%s%s \n \n \
To ensure normal operation, you should investigate and remove the
cause of the error in your initialization file. Start Emacs with
the ` --debug-init ' option to view a complete error backtrace. "
user-init-file
( get ( car error ) 'error-message )
( if ( cdr error ) " : " " " )
2011-03-30 03:27:56 +00:00
( mapconcat ( lambda ( s ) ( prin1-to-string s t ) )
( cdr error ) " , " ) )
2008-10-07 19:47:49 +00:00
:warning )
( setq init-file-had-error t ) ) ) )
( if ( and deactivate-mark transient-mark-mode )
2005-12-12 05:14:51 +00:00
( 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 ) )
2009-09-03 06:54:57 +00:00
( unless ( or ( default-value 'enable-multibyte-characters )
( eq orig-enable-multibyte ( default-value
'enable-multibyte-characters ) ) )
2001-05-11 15:12:08 +00:00
;; Init file changed to unibyte. Reset existing multibyte
2011-11-14 06:27:12 +00:00
;; buffers (probably *scratch*, *Messages*, *Minibuf-0*).
2001-05-11 15:12:08 +00:00
;; 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
;; 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 face-ignored-fonts old-face-ignored-fonts ) )
( clear-face-cache ) ) )
2003-02-04 12:29:42 +00:00
2010-10-31 00:06:18 +00:00
;; If any package directory exists, initialize the package system.
( and user-init-file
package-enable-at-startup
( catch 'package-dir-found
( let ( dirs )
( if ( boundp 'package-directory-list )
( setq dirs package-directory-list )
( dolist ( f load-path )
( and ( stringp f )
( equal ( file-name-nondirectory f ) " site-lisp " )
( push ( expand-file-name " elpa " f ) dirs ) ) ) )
( push ( if ( boundp 'package-user-dir )
package-user-dir
( locate-user-emacs-file " elpa " ) )
dirs )
( dolist ( dir dirs )
( when ( file-directory-p dir )
( dolist ( subdir ( directory-files dir ) )
2013-06-14 03:20:18 +00:00
( when ( let ( ( subdir ( expand-file-name subdir dir ) ) )
( and ( file-directory-p subdir )
( file-exists-p
2013-06-17 15:33:52 +00:00
( expand-file-name
( package--description-file subdir )
subdir ) ) ) )
2010-10-31 00:06:18 +00:00
( throw 'package-dir-found t ) ) ) ) ) ) )
( package-initialize ) )
2010-06-17 02:08:10 +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.
2009-09-03 06:54:57 +00:00
( if ( and ( default-value 'enable-multibyte-characters ) locale-coding-system )
2004-11-29 07:17:56 +00:00
( 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 ) )
2008-09-28 09:37:09 +00:00
;; In daemon mode, start the server to allow clients to connect.
;; This is done after loading the user's init file and after
;; processing all command line arguments to allow e.g. `server-name'
;; to be changed before the server starts.
2008-10-27 07:02:30 +00:00
( let ( ( dn ( daemonp ) ) )
( when dn
( when ( stringp dn ) ( setq server-name dn ) )
( server-start )
2008-12-16 21:23:03 +00:00
( if server-process
( daemon-initialized )
2008-12-18 08:48:26 +00:00
( if ( stringp dn )
( message
" Unable to start daemon: Emacs server named %S already running "
server-name )
( message " Unable to start the daemon. \n Another instance of Emacs is running the server, either as daemon or interactively. \n You can use emacsclient to connect to that Emacs process. " ) )
2008-12-16 21:23:03 +00:00
( kill-emacs 1 ) ) ) )
2008-09-28 09:37:09 +00:00
2002-03-10 16:29:34 +00:00
;; 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
2012-04-27 05:40:46 +00:00
( defun x-apply-session-resources ( )
" Apply X resources which specify initial values for Emacs variables.
This is called from a window-system initialization function, such
as ` x-initialize-window-system ' for X, either at startup ( prior
to reading the init file ) , or afterwards when the user first
opens a graphical frame.
This can set the values of ` menu-bar-mode ', ` tool-bar-mode ', and
` no-blinking-cursor ', as well as the ` cursor ' face. Changed
settings will be marked as \"CHANGED outside of Customize\". "
( let ( ( no-vals ' ( " no " " off " " false " " 0 " ) )
( settings ' ( ( " menuBar " " MenuBar " menu-bar-mode nil )
( " toolBar " " ToolBar " tool-bar-mode nil )
( " cursorBlink " " CursorBlink " no-blinking-cursor t ) ) ) )
( dolist ( x settings )
( if ( member ( x-get-resource ( nth 0 x ) ( nth 1 x ) ) no-vals )
( set ( nth 2 x ) ( nth 3 x ) ) ) ) )
( let ( ( color ( x-get-resource " cursorColor " " Foreground " ) ) )
( when color
( put 'cursor 'theme-face
` ( ( changed ( ( t :background , color ) ) ) ) )
( put 'cursor 'face-modified t ) ) ) )
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
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
2009-10-26 06:43:36 +00:00
( defconst fancy-startup-text
2011-07-10 02:04:45 +00:00
` ( ( :face ( variable-pitch font-lock-comment-face )
2007-09-10 22:07:27 +00:00
" Welcome to "
2007-09-22 22:14:51 +00:00
:link ( " GNU Emacs "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button ) ( browse-url " http://www.gnu.org/software/emacs/ " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/software/emacs/ " )
2007-09-10 22:07:27 +00:00
" , one component of the "
:link
2011-03-30 03:27:56 +00:00
, ( lambda ( )
2007-09-10 22:07:27 +00:00
( if ( eq system-type 'gnu/linux )
2011-03-30 03:27:56 +00:00
` ( " GNU/Linux "
, ( lambda ( _button ) ( browse-url " http://www.gnu.org/gnu/linux-and-gnu.html " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/gnu/linux-and-gnu.html " )
2011-03-30 03:27:56 +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 "
2008-11-16 06:53:06 +00:00
:face variable-pitch
2011-03-30 03:27:56 +00:00
:link ( " Emacs Tutorial " , ( lambda ( _button ) ( help-with-tutorial ) ) )
2007-09-10 22:07:27 +00:00
" \t Learn basic keystroke commands "
2011-03-30 03:27:56 +00:00
, ( lambda ( )
2007-09-05 19:59:01 +00:00
( 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 )
2012-07-20 10:29:32 +00:00
;; We used to read only the first 256 bytes of
;; the tutorial, but that prevents the coding:
;; setting, if any, in file-local variables
;; section to be seen by insert-file-contents,
;; and results in gibberish when the language
;; environment's preferred encoding is
;; different from what the file-local variable
;; says. One case in point is Hebrew.
nil )
2007-09-05 19:59:01 +00:00
( 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 "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button )
( browse-url " http://www.gnu.org/software/emacs/tour/ " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/software/emacs/tour/ " )
2008-07-19 23:55:02 +00:00
" \t Overview of Emacs features at gnu.org \n "
2011-03-30 03:27:56 +00:00
:link ( " View Emacs Manual " , ( lambda ( _button ) ( info-emacs-manual ) ) )
2007-09-09 12:10:33 +00:00
" \t View the Emacs manual using Info \n "
2011-03-30 03:27:56 +00:00
:link ( " Absence of Warranty " , ( lambda ( _button ) ( describe-no-warranty ) ) )
2007-09-05 19:59:01 +00:00
" \t GNU 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
2011-03-30 03:27:56 +00:00
:link ( " Copying Conditions " , ( lambda ( _button ) ( describe-copying ) ) )
2007-09-05 19:59:01 +00:00
" \t Conditions for redistributing and changing Emacs \n "
2011-03-30 03:27:56 +00:00
:link ( " Ordering Manuals " , ( lambda ( _button ) ( view-order-manuals ) ) )
2007-09-10 22:07:27 +00:00
" \t Purchasing 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. " )
2009-10-26 06:43:36 +00:00
( defconst fancy-about-text
2011-07-10 02:06:09 +00:00
` ( ( :face ( variable-pitch font-lock-comment-face )
2007-09-10 22:07:27 +00:00
" This is "
2007-09-22 22:14:51 +00:00
:link ( " GNU Emacs "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button ) ( browse-url " http://www.gnu.org/software/emacs/ " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/software/emacs/ " )
2007-09-10 22:07:27 +00:00
" , one component of the "
:link
2011-03-30 03:27:56 +00:00
, ( lambda ( )
2007-09-10 22:07:27 +00:00
( if ( eq system-type 'gnu/linux )
2011-03-30 03:27:56 +00:00
` ( " GNU/Linux "
, ( lambda ( _button )
( browse-url " http://www.gnu.org/gnu/linux-and-gnu.html " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/gnu/linux-and-gnu.html " )
2011-03-30 03:27:56 +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 "
2011-07-10 02:04:45 +00:00
:face ( variable-pitch font-lock-builtin-face )
2007-09-10 22:07:27 +00:00
" \n "
2011-03-30 03:27:56 +00:00
, ( lambda ( ) ( emacs-version ) )
2007-09-10 22:07:27 +00:00
" \n "
2008-06-21 19:52:27 +00:00
:face ( variable-pitch ( :height 0.8 ) )
2011-03-30 03:27:56 +00:00
, ( lambda ( ) emacs-copyright )
2007-09-10 22:07:27 +00:00
" \n \n "
:face variable-pitch
2007-09-09 12:10:33 +00:00
:link ( " Authors "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button )
2007-09-09 12:10:33 +00:00
( view-file ( expand-file-name " AUTHORS " data-directory ) )
( goto-char ( point-min ) ) ) )
" \t Many people have contributed code included in GNU Emacs \n "
:link ( " Contributing "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button )
2007-09-09 12:10:33 +00:00
( view-file ( expand-file-name " CONTRIBUTE " data-directory ) )
( goto-char ( point-min ) ) ) )
" \t How to contribute improvements to Emacs \n "
" \n "
2011-03-30 03:27:56 +00:00
:link ( " GNU and Freedom " , ( lambda ( _button ) ( describe-gnu-project ) ) )
2007-09-05 19:59:01 +00:00
" \t Why we developed GNU Emacs, and the GNU operating system \n "
2011-03-30 03:27:56 +00:00
:link ( " Absence of Warranty " , ( lambda ( _button ) ( describe-no-warranty ) ) )
2007-09-05 19:59:01 +00:00
" \t GNU 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
2011-03-30 03:27:56 +00:00
:link ( " Copying Conditions " , ( lambda ( _button ) ( describe-copying ) ) )
2007-09-05 19:59:01 +00:00
" \t Conditions for redistributing and changing Emacs \n "
2011-03-30 03:27:56 +00:00
:link ( " Getting New Versions " , ( lambda ( _button ) ( describe-distribution ) ) )
2007-09-05 19:59:01 +00:00
" \t How to obtain the latest version of Emacs \n "
2011-03-30 03:27:56 +00:00
:link ( " Ordering Manuals " , ( lambda ( _button ) ( view-order-manuals ) ) )
(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
" \t Buying printed manuals from the FSF \n "
2007-09-05 19:59:01 +00:00
" \n "
2011-03-30 03:27:56 +00:00
:link ( " Emacs Tutorial " , ( lambda ( _button ) ( help-with-tutorial ) ) )
2007-09-05 19:59:01 +00:00
" \t Learn basic Emacs keystroke commands "
2011-03-30 03:27:56 +00:00
, ( lambda ( )
2007-09-05 19:59:01 +00:00
( 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 "
2011-03-30 03:27:56 +00:00
, ( lambda ( _button )
( browse-url " http://www.gnu.org/software/emacs/tour/ " ) )
2007-09-22 22:14:51 +00:00
" Browse http://www.gnu.org/software/emacs/tour/ " )
2011-07-10 02:04:45 +00:00
" \t See an overview of Emacs features at gnu.org " ) )
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
* completion.el (add-completion-to-head, add-completion): Doc fixes.
(completion-search-next, add-completions-from-file):
Fix typos in docstrings.
* filesets.el (filesets-menu-ensure-use-cached)
(filesets-ingroup-patterns, filesets-filetype-property):
* tutorial.el (get-lang-string):
* play/gamegrid.el (gamegrid-score-file-length, gamegrid-add-score):
Fix typos in docstrings.
* image-dired.el (image-dired-dired-after-readin-hook): Doc fix.
(image-dired-line-up-method, image-dired-thumb-size)
(image-dired-cmd-write-exif-data-options, image-dired-write-tags)
(image-dired-track-original-file, image-dired-track-thumbnail)
(image-dired-dired-next-line, image-dired-dired-previous-line)
(image-dired-write-comments): Reflow docstrings.
(image-dired-show-all-from-dir-max-files)
(image-dired-format-properties-string, image-dired-create-thumbs)
(image-dired-mark-tagged-files, image-dired-gallery-generate):
Fix typos in docstrings.
* savehist.el (savehist-save-minibuffer-history, savehist-file)
(savehist-additional-variables, savehist-ignored-variables)
(savehist-file-modes, savehist-autosave-interval):
* startup.el (inhibit-startup-echo-area-message, inhibit-default-init)
(inhibit-startup-buffer-menu, mail-host-address, user-mail-address)
(fancy-splash-image):
* thumbs.el (thumbs-thumbsdir, thumbs-geometry, thumbs-relief)
(thumbs-conversion-program, thumbs-margin):
Remove spurious * in docstrings.
2008-10-25 00:46:25 +00:00
" 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 )
2011-10-01 20:32:01 +00:00
( define-key map " \C -? " 'scroll-down-command )
2013-02-12 04:46:18 +00:00
( define-key map [ ?\S -\ ] 'scroll-down-command )
2011-10-01 20:32:01 +00:00
( define-key map " " 'scroll-up-command )
2007-08-19 14:43:35 +00:00
( 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 " ) )
2012-06-11 15:55:32 +00:00
( ( or ( image-type-available-p 'svg )
( image-type-available-p 'imagemagick ) )
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 ) ) ) )
Do not call to `selected-window' where it is assumed by default.
Affected functions are `window-minibuffer-p', `window-dedicated-p',
`window-hscroll', `window-width', `window-height', `window-buffer',
`window-frame', `window-start', `window-point', `next-window'
and `window-display-table'.
* abbrev.el (abbrev--default-expand):
* bs.el (bs--show-with-configuration):
* buff-menu.el (Buffer-menu-mouse-select):
* calc/calc.el (calc):
* calendar/calendar.el (calendar-generate-window):
* calendar/diary-lib.el (diary-simple-display, diary-show-all-entries)
(diary-make-entry):
* comint.el (send-invisible, comint-dynamic-complete-filename)
(comint-dynamic-simple-complete, comint-dynamic-list-completions):
* completion.el (complete):
* dabbrev.el (dabbrev-expand, dabbrev--make-friend-buffer-list):
* disp-table.el (describe-current-display-table):
* doc-view.el (doc-view-insert-image):
* ebuff-menu.el (Electric-buffer-menu-mouse-select):
* ehelp.el (with-electric-help):
* emacs-lisp/easy-mmode.el (easy-mmode-define-navigation):
* emacs-lisp/edebug.el (edebug-two-window-p, edebug-pop-to-buffer):
* emacs-lisp/helper.el (Helper-help-scroller):
* emulation/cua-base.el (cua--post-command-handler-1):
* eshell/esh-mode.el (eshell-output-filter):
* ffap.el (ffap-gnus-wrapper):
* help-macro.el (make-help-screen):
* hilit-chg.el (highlight-compare-buffers):
* hippie-exp.el (hippie-expand, try-expand-dabbrev-visible):
* hl-line.el (global-hl-line-highlight):
* icomplete.el (icomplete-simple-completing-p):
* isearch.el (isearch-done):
* jit-lock.el (jit-lock-stealth-fontify):
* mail/rmailsum.el (rmail-summary-scroll-msg-up):
* lisp/mouse-drag.el (mouse-drag-should-do-col-scrolling):
* mpc.el (mpc-tagbrowser, mpc):
* net/rcirc.el (rcirc-any-buffer):
* play/gomoku.el (gomoku-max-width, gomoku-max-height):
* play/landmark.el (landmark-max-width, landmark-max-height):
* play/zone.el (zone):
* progmodes/compile.el (compilation-goto-locus):
* progmodes/ebrowse.el (ebrowse-view/find-file-and-search-pattern):
* progmodes/etags.el (find-tag-other-window):
* progmodes/fortran.el (fortran-column-ruler):
* progmodes/gdb-mi.el (gdb-mouse-toggle-breakpoint-fringe):
* progmodes/verilog-mode.el (verilog-point-text):
* reposition.el (reposition-window):
* rot13.el (toggle-rot13-mode):
* server.el (server-switch-buffer):
* shell.el (shell-dynamic-complete-command)
(shell-dynamic-complete-environment-variable):
* simple.el (insert-buffer, set-selective-display)
(delete-completion-window):
* speedbar.el (speedbar-timer-fn, speedbar-center-buffer-smartly)
(speedbar-recenter):
* startup.el (fancy-splash-head):
* textmodes/ispell.el (ispell-command-loop):
* textmodes/makeinfo.el (makeinfo-compilation-sentinel-region):
* tutorial.el (help-with-tutorial):
* vc/add-log.el (add-change-log-entry):
* vc/compare-w.el (compare-windows):
* vc/ediff-help.el (ediff-indent-help-message):
* vc/ediff-util.el (ediff-setup-control-buffer, ediff-position-region):
* vc/ediff-wind.el (ediff-skip-unsuitable-frames)
(ediff-setup-control-frame):
* vc/emerge.el (emerge-position-region):
* vc/pcvs-util.el (cvs-bury-buffer):
* window.el (walk-windows, mouse-autoselect-window-select):
* winner.el (winner-set-conf, winner-undo): Related users changed.
2013-08-05 14:26:57 +00:00
( window-width ( window-width ) ) )
2000-09-19 13:28:27 +00:00
( 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/ "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( browse-url " http://www.gnu.org/ " ) )
2007-08-19 14:43:35 +00:00
'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. "
2011-07-10 02:04:45 +00:00
( unless concise
2008-07-19 23:55:02 +00:00
( fancy-splash-insert
2011-07-10 02:04:45 +00:00
:face 'variable-pitch
" \n To start... "
:link ` ( " Open a File "
, ( lambda ( _button ) ( call-interactively 'find-file ) )
" Specify a new file's name, to edit the file " )
" "
:link ` ( " Open Home Directory "
, ( lambda ( _button ) ( dired " ~ " ) )
" Open your home directory, to operate on its files " )
" "
:link ` ( " Customize Startup "
, ( lambda ( _button ) ( customize-group 'initialization ) )
" Change initialization settings including this screen " )
" \n " ) )
( fancy-splash-insert
:face 'variable-pitch " To quit a partially entered command, type "
:face 'default " Control-g "
:face 'variable-pitch " . \n " )
( fancy-splash-insert :face ` ( variable-pitch font-lock-builtin-face )
" \n This is "
( emacs-version )
" \n "
:face ' ( variable-pitch ( :height 0.8 ) )
emacs-copyright
" \n " )
2012-12-01 01:49:29 +00:00
( when auto-save-list-file-prefix
( let ( ( dir ( file-name-directory auto-save-list-file-prefix ) )
( name ( file-name-nondirectory auto-save-list-file-prefix ) )
files )
;; Don't warn if the directory for auto-save-list files does not
;; yet exist.
( and ( file-directory-p dir )
( setq files ( directory-files dir nil ( concat " \\ ` " name ) t ) )
( fancy-splash-insert :face ' ( variable-pitch font-lock-comment-face )
( if ( = ( length files ) 1 )
" \n An auto-save file list was found. "
" \n Auto-save file lists were found. " )
" If an Emacs session crashed recently, \n type "
2012-12-01 02:08:30 +00:00
:link ` ( " M-x recover-session RET "
, ( lambda ( _button )
( call-interactively
'recover-session ) ) )
2012-12-01 01:49:29 +00:00
" to recover the files you were editing. " ) ) ) )
2011-07-10 02:04:45 +00:00
( when concise
( fancy-splash-insert
:face 'variable-pitch " \n "
: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* " ) ) )
" " )
( when ( or user-init-file custom-file )
( let ( ( checked ( create-image " checked.xpm "
nil nil :ascent 'center ) )
( unchecked ( create-image " unchecked.xpm "
nil nil :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 ) ) ) ) )
( fancy-splash-insert :face ' ( variable-pitch ( :height 0.9 ) )
" 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* " )
2011-05-28 17:47:45 +00:00
( setq buffer-undo-list t )
2007-09-10 22:07:27 +00:00
( 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 )
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 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 \n If an Emacs session crashed recently, "
" type Meta-x recover-session RET \n to 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 " \n Important Help menu items: \n " )
( insert-button " Emacs Tutorial "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( help-with-tutorial ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t Learn basic Emacs keystroke commands \n " )
( insert-button " Read the Emacs Manual "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( info-emacs-manual ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t View the Emacs manual using Info \n " )
( insert-button " \( Non)Warranty "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-no-warranty ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t GNU Emacs comes with ABSOLUTELY NO WARRANTY \n " )
( insert-button " Copying Conditions "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-copying ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t Conditions for redistributing and changing Emacs \n " )
( insert-button " More Manuals / Ordering Manuals "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( view-order-manuals ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " How to order printed manuals from the FSF \n " )
( insert " \n Useful tasks: \n " )
( insert-button " Visit New File "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( call-interactively 'find-file ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t Specify a new file's name, to edit the file \n " )
( insert-button " Open Home Directory "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( dired " ~ " ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t Open your home directory, to operate on its files \n " )
( insert-button " Customize Startup "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( customize-group 'initialization ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t Change initialization settings including this screen \n " )
( insert " \n " ( emacs-version )
" \n " emacs-copyright ) )
( defun normal-no-mouse-startup-screen ( )
2013-04-23 21:51:40 +00:00
" Show a splash screen suitable for displays without mouse support. "
2009-08-29 19:22:38 +00:00
( let* ( ( c-h-accessible
;; If normal-erase-is-backspace is used on a tty, there's
;; no way to invoke C-h and you have to use F1 instead.
( or ( not ( char-table-p keyboard-translate-table ) )
( eq ( aref keyboard-translate-table ?\C -h ) ?\C -h ) ) )
( minor-mode-overriding-map-alist
( cons ( cons ( not c-h-accessible )
;; If C-h can't be invoked, temporarily disable its
;; binding, so where-is uses alternative bindings.
( let ( ( map ( make-sparse-keymap ) ) )
( define-key map [ ?\C -h ] 'undefined )
map ) )
minor-mode-overriding-map-alist ) ) )
( insert ( format " \n Get help \t %s \n "
( let ( ( where ( where-is-internal 'help-command nil t ) ) )
( cond
( ( equal where [ ?\C -h ] )
" C-h (Hold down CTRL and press h) " )
( where ( key-description where ) )
( t " M-x help " ) ) ) ) )
( insert-button " Emacs manual "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( info-emacs-manual ) )
2009-08-29 19:22:38 +00:00
'follow-link t )
( insert ( substitute-command-keys " \t \\ [info-emacs-manual] \t " ) )
( insert-button " Browse manuals "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( Info-directory ) )
2009-08-29 19:22:38 +00:00
'follow-link t )
( insert ( substitute-command-keys " \t \\ [info] \n " ) )
( insert-button " Emacs tutorial "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( help-with-tutorial ) )
2009-08-29 19:22:38 +00:00
'follow-link t )
( insert ( substitute-command-keys
2009-09-11 00:58:59 +00:00
" \t \\ [help-with-tutorial] \t Undo changes \t \\ [undo] \n " ) )
2009-08-29 19:22:38 +00:00
( insert-button " Buy manuals "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( view-order-manuals ) )
2009-08-29 19:22:38 +00:00
'follow-link t )
( insert ( substitute-command-keys
" \t \\ [view-order-manuals] \t Exit Emacs \t \\ [save-buffers-kill-terminal] " ) ) )
2007-09-05 19:59:01 +00:00
;; Say how to use the menu bar with the keyboard.
( insert " \n " )
( insert-button " Activate menubar "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( tmm-menubar ) )
2007-09-05 19:59:01 +00:00
'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 " \n Useful tasks: \n " )
( insert-button " Visit New File "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( call-interactively 'find-file ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t \t " )
( insert-button " Open Home Directory "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( dired " ~ " ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \n " )
( insert-button " Customize Startup "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( customize-group 'initialization ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t " )
( insert-button " Open *scratch* buffer "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( switch-to-buffer
( get-buffer-create " *scratch* " ) ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \n " )
( insert " \n " ( emacs-version ) " \n " emacs-copyright " \n " )
2013-04-23 21:51:40 +00:00
( insert ( substitute-command-keys
"
2007-08-19 16:04:55 +00:00
GNU Emacs comes with ABSOLUTELY NO WARRANTY ; type \\[describe-no-warranty] for "))
2013-04-23 21:51:40 +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 "))
2013-04-23 21:51:40 +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 " ))
2013-04-23 21:51:40 +00:00
( insert-button " getting the latest version "
'action ( lambda ( _button ) ( describe-distribution ) )
'follow-link t )
( insert " . " ) )
2007-09-05 19:59:01 +00:00
( 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
2011-03-24 15:31:56 +00:00
( lambda ( _button )
2007-09-09 12:10:33 +00:00
( view-file ( expand-file-name " AUTHORS " data-directory ) )
( goto-char ( point-min ) ) )
'follow-link t )
( insert " \t \t Many people have contributed code included in GNU Emacs \n " )
( insert-button " Contributing "
'action
2011-03-24 15:31:56 +00:00
( lambda ( _button )
2007-09-09 12:10:33 +00:00
( view-file ( expand-file-name " CONTRIBUTE " data-directory ) )
( goto-char ( point-min ) ) )
'follow-link t )
( insert " \t How to contribute improvements to Emacs \n \n " )
2007-09-05 19:59:01 +00:00
( insert-button " GNU and Freedom "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-gnu-project ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t \t Why we developed GNU Emacs and the GNU system \n " )
( insert-button " Absence of Warranty "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-no-warranty ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t GNU Emacs comes with ABSOLUTELY NO WARRANTY \n " )
( insert-button " Copying Conditions "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-copying ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t Conditions for redistributing and changing Emacs \n " )
( insert-button " Getting New Versions "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( describe-distribution ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t How to get the latest version of GNU Emacs \n " )
( insert-button " More Manuals / Ordering Manuals "
2011-03-24 15:31:56 +00:00
'action ( lambda ( _button ) ( view-order-manuals ) )
2007-09-05 19:59:01 +00:00
'follow-link t )
( insert " \t Buying printed manuals from the FSF \n " ) )
2002-01-29 13:54:39 +00:00
2012-10-29 10:14:50 +00:00
( defun startup-echo-area-message ( )
2013-04-23 21:51:40 +00:00
( if ( daemonp )
" Starting Emacs daemon. "
( substitute-command-keys
" 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 ) )
2011-01-20 22:36:12 +00:00
( or noninteractive ;(input-pending-p) init-file-had-error
2006-03-21 22:32:30 +00:00
;; 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.
2011-01-20 22:36:12 +00:00
( condition-case nil
( with-temp-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 ) ) ) )
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
2011-03-24 15:31:56 +00:00
( defun command-line-1 ( args-left )
2012-03-26 00:37:04 +00:00
" A subroutine of `command-line' . "
2006-03-21 22:32:30 +00:00
( display-startup-echo-area-message )
2006-04-27 13:51:57 +00:00
( when ( and pure-space-overflow
( not noninteractive ) )
( display-warning
'initialization
2008-10-07 19:47:49 +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 )
2011-03-24 15:31:56 +00:00
( command-line-args-left args-left )
2007-09-10 22:07:27 +00:00
first-file-buffer )
( when command-line-args-left
;; We have command args; process them.
2011-03-24 15:31:56 +00:00
( let ( ( dir command-line-default-directory )
tem
2007-09-10 22:07:27 +00:00
;; 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
2009-08-29 19:22:38 +00:00
( append ' ( " --funcall " " --load " " --insert " " --kill "
" --directory " " --eval " " --execute " " --no-splash "
" --find-file " " --visit " " --file " " --no-desktop " )
( mapcar ( lambda ( elt ) ( concat " - " ( car elt ) ) )
2007-09-10 22:07:27 +00:00
command-switch-alist ) ) )
2011-03-24 15:31:56 +00:00
( line 0 )
( column 0 ) )
2007-09-10 22:07:27 +00:00
;; Add the long X options to longopts.
2009-09-15 07:09:17 +00:00
( dolist ( tem command-line-x-option-alist )
( if ( string-match " ^-- " ( car tem ) )
( push ( car tem ) longopts ) ) )
2007-09-10 22:07:27 +00:00
2008-07-16 23:24:46 +00:00
;; Add the long NS options to longopts.
2009-09-15 07:09:17 +00:00
( 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.
2009-02-20 14:24:55 +00:00
( when ( string-match " \\ ` \\ (--[^=]* \\ )= " argi )
2007-09-10 22:07:27 +00:00
( setq argval ( substring argi ( match-end 0 ) )
argi ( match-string 1 argi ) ) )
2010-02-05 04:49:36 +00:00
( when ( string-match " \\ ` --?[^-] " orig-argi )
2009-02-20 14:24:55 +00:00
( setq completion ( try-completion argi longopts ) )
( if ( eq completion t )
( setq argi ( substring argi 1 ) )
( if ( stringp completion )
2009-08-29 19:22:38 +00:00
( let ( ( elt ( member completion longopts ) ) )
2009-02-20 14:24:55 +00:00
( or elt
( error " Option `%s' is ambiguous " argi ) )
( setq argi ( substring ( car elt ) 1 ) ) )
( setq argval nil
argi orig-argi ) ) ) ) )
2007-09-10 22:07:27 +00:00
;; Execute the option.
2011-03-24 15:31:56 +00:00
( cond ( ( setq tem ( assoc argi command-switch-alist ) )
2007-09-10 22:07:27 +00:00
( if argval
( let ( ( command-line-args-left
( cons argval command-line-args-left ) ) )
2011-03-24 15:31:56 +00:00
( funcall ( cdr tem ) argi ) )
( funcall ( cdr tem ) argi ) ) )
2007-09-10 22:07:27 +00:00
( ( 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 )
2011-03-24 15:31:56 +00:00
( setq tem ( intern ( or argval ( pop command-line-args-left ) ) ) )
( if ( commandp tem )
( command-execute tem )
( funcall tem ) ) )
2007-09-10 22:07:27 +00:00
( ( 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 " ) )
2011-03-24 15:31:56 +00:00
( setq tem ( expand-file-name
2007-09-10 22:07:27 +00:00
( command-line-normalize-file-name
( or argval ( pop command-line-args-left ) ) ) ) )
2011-03-24 15:31:56 +00:00
( cond ( splice ( setcdr splice ( cons tem ( cdr splice ) ) )
2007-09-10 22:07:27 +00:00
( setq splice ( cdr splice ) ) )
2011-03-24 15:31:56 +00:00
( t ( setq load-path ( cons tem load-path )
2007-09-10 22:07:27 +00:00
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 )
2011-03-24 15:31:56 +00:00
( setq tem ( or argval ( pop command-line-args-left ) ) )
( or ( stringp tem )
2007-09-10 22:07:27 +00:00
( error " File name omitted from `-insert' option " ) )
2011-03-24 15:31:56 +00:00
( insert-file-contents ( command-line-normalize-file-name tem ) ) )
2007-09-10 22:07:27 +00:00
( ( 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 )
2011-03-24 15:31:56 +00:00
( setq line ( string-to-number argi ) ) )
2007-09-10 22:07:27 +00:00
( ( string-match " ^ \\ + \\ ([0-9]+ \\ ): \\ ([0-9]+ \\ ) \\ ' " argi )
2011-03-24 15:31:56 +00:00
( setq line ( string-to-number ( match-string 1 argi ) )
column ( string-to-number ( match-string 2 argi ) ) ) )
2007-09-10 22:07:27 +00:00
2011-03-24 15:31:56 +00:00
( ( setq tem ( assoc orig-argi command-line-x-option-alist ) )
2007-09-10 22:07:27 +00:00
;; Ignore X-windows options and their args if not using X.
( setq command-line-args-left
2011-03-24 15:31:56 +00:00
( nthcdr ( nth 1 tem ) command-line-args-left ) ) )
2007-09-10 22:07:27 +00:00
2011-03-24 15:31:56 +00:00
( ( setq tem ( assoc orig-argi command-line-ns-option-alist ) )
2008-07-21 17:23:14 +00:00
;; Ignore NS-windows options and their args if not using NS.
( setq command-line-args-left
2011-03-24 15:31:56 +00:00
( 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.
2011-03-24 15:31:56 +00:00
( setq tem ( or argval ( pop command-line-args-left ) ) )
( unless ( stringp tem )
2007-09-10 22:07:27 +00:00
( error " File name omitted from `%s' option " argi ) )
( setq file-count ( 1+ file-count ) )
( let ( ( file ( expand-file-name
2011-03-24 15:31:56 +00:00
( command-line-normalize-file-name tem )
dir ) ) )
2007-09-10 22:07:27 +00:00
( if ( = file-count 1 )
( setq first-file-buffer ( find-file file ) )
( find-file-other-window file ) ) )
2011-03-24 15:31:56 +00:00
( unless ( zerop line )
2009-08-22 19:29:18 +00:00
( goto-char ( point-min ) )
2011-03-24 15:31:56 +00:00
( forward-line ( 1- line ) ) )
( setq line 0 )
( unless ( < column 1 )
( move-to-column ( 1- column ) ) )
( setq column 0 ) )
2007-09-10 22:07:27 +00:00
2010-08-22 21:15:20 +00:00
;; These command lines now have no effect.
( ( string-match " \\ ` --? \\ (no- \\ )? \\ (uni \\ |multi \\ )byte$ " argi )
( display-warning 'initialization
( format " Ignoring obsolete arg %s " argi ) ) )
2007-09-10 22:07:27 +00:00
( ( 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 )
2011-03-24 15:31:56 +00:00
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 ) ) ) )
2011-03-24 15:31:56 +00:00
( unless ( zerop line )
2009-08-22 19:29:18 +00:00
( goto-char ( point-min ) )
2011-03-24 15:31:56 +00:00
( forward-line ( 1- line ) ) )
( setq line 0 )
( unless ( < column 1 )
( move-to-column ( 1- column ) ) )
( setq column 0 ) ) ) ) ) )
2007-09-10 22:07:27 +00:00
;; 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 ) ) ) ) ) )
2011-09-30 13:21:29 +00:00
( when ( eq initial-buffer-choice t )
;; When initial-buffer-choice equals t make sure that *scratch*
;; exists.
( get-buffer-create " *scratch* " ) )
2007-09-10 22:07:27 +00:00
2008-02-28 22:50:26 +00:00
;; If *scratch* exists and is empty, insert initial-scratch-message.
2011-09-30 13:21:29 +00:00
;; Do this before switching to *scratch* below to handle bug#9605.
2008-02-28 22:50:26 +00:00
( and initial-scratch-message
( get-buffer " *scratch* " )
( with-current-buffer " *scratch* "
( when ( zerop ( buffer-size ) )
2011-09-30 13:21:29 +00:00
( insert initial-scratch-message )
2008-02-28 22:50:26 +00:00
( set-buffer-modified-p nil ) ) ) )
2011-09-30 13:21:29 +00:00
( when initial-buffer-choice
2012-12-24 17:49:19 +00:00
( let ( ( buf
( cond ( ( stringp initial-buffer-choice )
( find-file-noselect initial-buffer-choice ) )
( ( functionp initial-buffer-choice )
( funcall initial-buffer-choice ) ) ) ) )
( switch-to-buffer
( if ( buffer-live-p buf ) buf ( get-buffer-create " *scratch* " ) )
'norecord ) ) )
2011-09-30 13:21:29 +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 ( or inhibit-startup-screen
2007-09-10 22:07:27 +00:00
initial-buffer-choice
noninteractive
2012-04-10 17:53:31 +00:00
( daemonp )
2009-09-17 23:04:41 +00:00
inhibit-x-resources )
2007-09-10 22:07:27 +00:00
;; 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
2012-04-10 17:53:31 +00:00
( display-startup-screen ( > file-count 0 ) ) ) ) )
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 //.
2013-03-16 08:20:36 +00:00
( if ( string-match
( if ( memq system-type ' ( ms-dos windows-nt ) )
" ^ \\ ([ \\ /][ \\ /][ \\ /] \\ )+ "
" ^///+ " )
file )
1996-03-01 20:13:01 +00:00
( setq file ( replace-match " / " t t file ) ) )
2013-03-16 08:20:36 +00:00
( if ( memq system-type ' ( ms-dos windows-nt ) )
( while ( string-match " \\ ([ \\ /][ \\ /] \\ )+ " file 1 )
( setq file ( replace-match " / " t t file ) ) )
( while ( string-match " //+ " file 1 )
( setq file ( replace-match " / " t t file ) ) ) )
1996-03-01 20:13:01 +00:00
file ) )
1996-01-27 00:14:59 +00:00
1992-05-30 21:11:25 +00:00
;;; startup.el ends here