Mercurial > emacs
changeset 22993:f580b9694876
(time-stamp-string-preprocess): Add %U code.
author | Richard M. Stallman <rms@gnu.org> |
---|---|
date | Mon, 10 Aug 1998 21:13:58 +0000 |
parents | 9b39197e9ecd |
children | 85f64bf341c3 |
files | lisp/time-stamp.el |
diffstat | 1 files changed, 3 insertions(+), 0 deletions(-) [+] |
line wrap: on
line diff
--- a/lisp/time-stamp.el Mon Aug 10 15:34:32 1998 +0000 +++ b/lisp/time-stamp.el Mon Aug 10 21:13:58 1998 +0000 @@ -69,6 +69,7 @@ %f file name without directory %F gives absolute pathname %s system name %u user's login name +%U user's full name %h mail host name Decimal digits between the % and the type character specify the @@ -445,6 +446,8 @@ (system-name)) ((eq cur-char ?u) ;user name (user-login-name)) + ((eq cur-char ?U) ;user full name + (user-full-name)) ((eq cur-char ?h) ;mail host name (time-stamp-mail-host-name)) ))