comparison lisp/startup.el @ 68140:4baa8cfc2485

(init-file-user): defcustom -> defvar.
author Luc Teirlinck <teirllm@auburn.edu>
date Thu, 12 Jan 2006 02:27:00 +0000
parents ec8a77d4aadf
children 667bc6386741 de425e4eb0bc 7beb78bc1f8e
comparison
equal deleted inserted replaced
68139:058a6e577709 68140:4baa8cfc2485
195 (defcustom initial-major-mode 'lisp-interaction-mode 195 (defcustom initial-major-mode 'lisp-interaction-mode
196 "Major mode command symbol to use for the initial *scratch* buffer." 196 "Major mode command symbol to use for the initial *scratch* buffer."
197 :type 'function 197 :type 'function
198 :group 'initialization) 198 :group 'initialization)
199 199
200 (defcustom init-file-user nil 200 (defvar init-file-user nil
201 "Identity of user whose `.emacs' file is or was read. 201 "Identity of user whose `.emacs' file is or was read.
202 The value is nil if `-q' or `--no-init-file' was specified, 202 The value is nil if `-q' or `--no-init-file' was specified,
203 meaning do not load any init file. 203 meaning do not load any init file.
204 204
205 Otherwise, the value may be an empty string, meaning 205 Otherwise, the value may be an empty string, meaning
210 In either of the latter cases, `(concat \"~\" init-file-user \"/\")' 210 In either of the latter cases, `(concat \"~\" init-file-user \"/\")'
211 evaluates to the name of the directory where the `.emacs' file was 211 evaluates to the name of the directory where the `.emacs' file was
212 looked for. 212 looked for.
213 213
214 Setting `init-file-user' does not prevent Emacs from loading 214 Setting `init-file-user' does not prevent Emacs from loading
215 `site-start.el'. The only way to do that is to use `--no-site-file'." 215 `site-start.el'. The only way to do that is to use `--no-site-file'.")
216 :type '(choice (const :tag "none" nil) string)
217 :group 'initialization)
218 216
219 (defcustom site-run-file "site-start" 217 (defcustom site-run-file "site-start"
220 "File containing site-wide run-time initializations. 218 "File containing site-wide run-time initializations.
221 This file is loaded at run-time before `~/.emacs'. It contains inits 219 This file is loaded at run-time before `~/.emacs'. It contains inits
222 that need to be in place for the entire site, but which, due to their 220 that need to be in place for the entire site, but which, due to their