diff options
| author | Markus Rost | 2002-10-02 16:33:06 +0000 |
|---|---|---|
| committer | Markus Rost | 2002-10-02 16:33:06 +0000 |
| commit | 9715399e582f026868841a0a2b017112843cf60d (patch) | |
| tree | 9ee07efdb393bf7389eb46bdb79f52cb5ab30490 | |
| parent | 3ee5ce58f637f2c5d652c663170216d0f6470bb5 (diff) | |
| download | emacs-9715399e582f026868841a0a2b017112843cf60d.tar.gz emacs-9715399e582f026868841a0a2b017112843cf60d.zip | |
(normal-top-level): Reset standard-value of `user-full-name' here.
| -rw-r--r-- | lisp/ChangeLog | 8 | ||||
| -rw-r--r-- | lisp/startup.el | 3 |
2 files changed, 11 insertions, 0 deletions
diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 0e25346fa93..59fbd6b6bab 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog | |||
| @@ -1,3 +1,11 @@ | |||
| 1 | 2002-10-02 Markus Rost <rost@math.ohio-state.edu> | ||
| 2 | |||
| 3 | * progmodes/sh-script.el (sh-alias-alist): Use append instead of | ||
| 4 | nconc. | ||
| 5 | |||
| 6 | * startup.el (normal-top-level): Reset standard-value property of | ||
| 7 | `user-full-name' here. | ||
| 8 | |||
| 1 | 2002-10-01 Bill Wohler <wohler@newt.com> | 9 | 2002-10-01 Bill Wohler <wohler@newt.com> |
| 2 | 10 | ||
| 3 | * mail/mh-comp.el, mail/mh-e.el, mail/mh-funcs.el, | 11 | * mail/mh-comp.el, mail/mh-e.el, mail/mh-funcs.el, |
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'." | |||
| 429 | (save-excursion | 429 | (save-excursion |
| 430 | (set-buffer (get-buffer "*Messages*")) | 430 | (set-buffer (get-buffer "*Messages*")) |
| 431 | (setq default-directory dir))) | 431 | (setq default-directory dir))) |
| 432 | ;; `user-full-name' is now known; reset its standard-value here. | ||
| 433 | (put 'user-full-name 'standard-value | ||
| 434 | (list (default-value 'user-full-name))) | ||
| 432 | ;; For root, preserve owner and group when editing files. | 435 | ;; For root, preserve owner and group when editing files. |
| 433 | (if (equal (user-uid) 0) | 436 | (if (equal (user-uid) 0) |
| 434 | (setq backup-by-copying-when-mismatch t)) | 437 | (setq backup-by-copying-when-mismatch t)) |