diff options
author | Markus Rost <rost@math.uni-bielefeld.de> | 2002-10-02 16:33:06 +0000 |
---|---|---|
committer | Markus Rost <rost@math.uni-bielefeld.de> | 2002-10-02 16:33:06 +0000 |
commit | 9715399e582f026868841a0a2b017112843cf60d (patch) | |
tree | 9ee07efdb393bf7389eb46bdb79f52cb5ab30490 /lisp/startup.el | |
parent | 3ee5ce58f637f2c5d652c663170216d0f6470bb5 (diff) | |
download | emacs-9715399e582f026868841a0a2b017112843cf60d.tar.gz |
(normal-top-level): Reset standard-value of `user-full-name' here.
Diffstat (limited to 'lisp/startup.el')
-rw-r--r-- | lisp/startup.el | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/lisp/startup.el b/lisp/startup.el index eb8ce6e8418..99de8ff30d1 100644 --- a/lisp/startup.el +++ b/lisp/startup.el @@ -429,6 +429,9 @@ or `CVS', and any subdirectory that contains a file named `.nosearch'." (save-excursion (set-buffer (get-buffer "*Messages*")) (setq default-directory dir))) + ;; `user-full-name' is now known; reset its standard-value here. + (put 'user-full-name 'standard-value + (list (default-value 'user-full-name))) ;; For root, preserve owner and group when editing files. (if (equal (user-uid) 0) (setq backup-by-copying-when-mismatch t)) |