Mercurial > emacs
changeset 9016:160a90eaa7d8
(time-stamp-mail-host-name): Use mail-host-address.
(time-stamp-mail-host): Variable deleted.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Fri, 23 Sep 1994 05:44:28 +0000 |
parents | 1452c72d18db |
children | de17ae9463e3 |
files | lisp/time-stamp.el |
diffstat | 1 files changed, 8 insertions(+), 9 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/time-stamp.el Fri Sep 23 05:42:40 1994 +0000 +++ b/lisp/time-stamp.el Fri Sep 23 05:44:28 1994 +0000 @@ -2,7 +2,7 @@ ;;; Copyright 1989, 1993, 1994 Free Software Foundation, Inc. ;; Maintainer: Stephen Gildea <gildea@lcs.mit.edu> -;; Time-stamp: <94/02/14 15:02:07 gildea> +;; Time-stamp: <94/09/22 15:34:12 gildea> ;; Keywords: tools ;; This file is free software; you can redistribute it and/or modify @@ -175,10 +175,6 @@ ["(zero)" "January" "February" "March" "April" "May" "June" "July" "August" "September" "October" "November" "December"]) -(defvar time-stamp-mail-host nil - "*Name of the host where the user receives mail. -See the function `time-stamp-mail-host-name'.") - ;;; Some useful functions to use in time-stamp-format ;;; Could generate most of a message-id with @@ -186,10 +182,14 @@ (defun time-stamp-mail-host-name () "Return the name of the host where the user receives mail. -This is the value of `time-stamp-mail-host' if bound and a string, -otherwise the value of the function system-name. +This is the value of `mail-host-address' if bound and a string, +otherwise the value of `time-stamp-mail-host' (for versions of Emacs +before 19.28) otherwise the value of the function system-name. This function may be usefully referenced by `time-stamp-format'." - (or (and (boundp 'time-stamp-mail-host) + (or (and (boundp 'mail-host-address) + (stringp mail-host-address) + mail-host-address) + (and (boundp 'time-stamp-mail-host) (stringp time-stamp-mail-host) time-stamp-mail-host) (system-name))) @@ -277,4 +277,3 @@ (provide 'time-stamp) ;;; time-stamp.el ends here -