aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--doc/lispref/os.texi4
-rw-r--r--lisp/startup.el5
2 files changed, 3 insertions, 6 deletions
diff --git a/doc/lispref/os.texi b/doc/lispref/os.texi
index 553bb4a0068..178822b311e 100644
--- a/doc/lispref/os.texi
+++ b/doc/lispref/os.texi
@@ -940,9 +940,7 @@ string.
940If this variable is non-@code{nil}, it is used instead of 940If this variable is non-@code{nil}, it is used instead of
941@code{system-name} for purposes of generating email addresses. For 941@code{system-name} for purposes of generating email addresses. For
942example, it is used when constructing the default value of 942example, it is used when constructing the default value of
943@code{user-mail-address}. @xref{User Identification}. (Since this is 943@code{user-mail-address}. @xref{User Identification}.
944done when Emacs starts up, the value actually used is the one saved when
945Emacs was dumped. @xref{Building Emacs}.)
946@c FIXME sounds like should probably give this a :set-after and some 944@c FIXME sounds like should probably give this a :set-after and some
947@c custom-initialize-delay voodoo. 945@c custom-initialize-delay voodoo.
948@end defopt 946@end defopt
diff --git a/lisp/startup.el b/lisp/startup.el
index 91e7e36dd65..4272708ce9a 100644
--- a/lisp/startup.el
+++ b/lisp/startup.el
@@ -376,9 +376,8 @@ this variable usefully is to set it while building and dumping Emacs."
376(make-obsolete-variable 'system-name "use (system-name) instead" "25.1") 376(make-obsolete-variable 'system-name "use (system-name) instead" "25.1")
377 377
378(defcustom mail-host-address nil 378(defcustom mail-host-address nil
379 "Name of this machine, for purposes of naming users. 379 "The name of this machine, for use in constructing email addresses.
380If non-nil, Emacs uses this instead of `system-name' when constructing 380If this is nil, Emacs uses `system-name'."
381email addresses."
382 :type '(choice (const nil) string) 381 :type '(choice (const nil) string)
383 :group 'mail) 382 :group 'mail)
384 383