diff options
| author | Luc Teirlinck | 2006-01-12 02:27:00 +0000 |
|---|---|---|
| committer | Luc Teirlinck | 2006-01-12 02:27:00 +0000 |
| commit | ecbff27324701a9304fffa1090c5874dcef8b871 (patch) | |
| tree | b6c17fc7c0e3b2d7eca0481fd4821357f0c458e1 | |
| parent | 70482877f532d75f7fc038e5299ad66de7da3378 (diff) | |
| download | emacs-ecbff27324701a9304fffa1090c5874dcef8b871.tar.gz emacs-ecbff27324701a9304fffa1090c5874dcef8b871.zip | |
(init-file-user): defcustom -> defvar.
| -rw-r--r-- | lisp/startup.el | 6 |
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index 6ae35e39bbc..bc00dc36ba6 100644 --- a/lisp/startup.el +++ b/lisp/startup.el | |||
| @@ -197,7 +197,7 @@ the user's init file.") | |||
| 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. |
| @@ -212,9 +212,7 @@ 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. |