From 2c8d5749a4cd61c22040d8e141f9a5c6f4ee1d21 Mon Sep 17 00:00:00 2001 From: "Richard M. Stallman" Date: Mon, 10 Aug 1998 21:13:58 +0000 Subject: [PATCH] (time-stamp-string-preprocess): Add %U code. --- lisp/time-stamp.el | 3 +++ 1 file changed, 3 insertions(+) diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el index fd41a345ab6..b7a85400d72 100644 --- a/lisp/time-stamp.el +++ b/lisp/time-stamp.el @@ -69,6 +69,7 @@ Non-date items: %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 @@ With arg, turn time stamping on if and only if arg is positive." (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)) )) -- 2.39.5