comparison lisp/startup.el @ 6980:ef1b2bd0b19e

(init-file-user): Doc fix.
author Karl Heuer <kwzh@gnu.org>
date Wed, 20 Apr 1994 06:13:43 +0000
parents 6062cabdbe74
children 5635564a3064
comparison
equal deleted inserted replaced
6979:3086be8e7683 6980:ef1b2bd0b19e
117 (defconst initial-major-mode 'lisp-interaction-mode 117 (defconst initial-major-mode 'lisp-interaction-mode
118 "Major mode command symbol to use for the initial *scratch* buffer.") 118 "Major mode command symbol to use for the initial *scratch* buffer.")
119 119
120 (defvar init-file-user nil 120 (defvar init-file-user nil
121 "Identity of user whose `.emacs' file is or was read. 121 "Identity of user whose `.emacs' file is or was read.
122 The value may be the null string or a string containing a user's name. 122 The value is nil if no init file is being used; otherwise, it may be either
123 If the value is a null string, it means that the init file was taken from 123 the null string, meaning that the init file was taken from the user that
124 the user that originally logged in. 124 originally logged in, or it may be a string containing a user's name.
125 125
126 In all cases, `(concat \"~\" init-file-user \"/\")' evaluates to the 126 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
127 directory name of the directory where the `.emacs' file was looked for.") 127 evaluates to the name of the directory where the `.emacs' file was
128 looked for.")
128 129
129 (defvar site-run-file "site-start" 130 (defvar site-run-file "site-start"
130 "File containing site-wide run-time initializations. 131 "File containing site-wide run-time initializations.
131 This file is loaded at run-time before `~/.emacs'. It contains inits 132 This file is loaded at run-time before `~/.emacs'. It contains inits
132 that need to be in place for the entire site, but which, due to their 133 that need to be in place for the entire site, but which, due to their