aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorRichard M. Stallman1993-11-20 00:42:55 +0000
committerRichard M. Stallman1993-11-20 00:42:55 +0000
commit75ee4bfef0f2c27c8a6315d8a8f2b75df1d60d3a (patch)
tree045bc10cf090ccb9cdc7c2cfa7c8900aa93ece75
parent4eeddc6608a33963d4e50e0fcaf2d5e6ab5e2b1a (diff)
downloademacs-75ee4bfef0f2c27c8a6315d8a8f2b75df1d60d3a.tar.gz
emacs-75ee4bfef0f2c27c8a6315d8a8f2b75df1d60d3a.zip
Comment changes.
-rw-r--r--lisp/time-stamp.el10
1 files changed, 7 insertions, 3 deletions
diff --git a/lisp/time-stamp.el b/lisp/time-stamp.el
index aa3968a4bf2..744b3ea4910 100644
--- a/lisp/time-stamp.el
+++ b/lisp/time-stamp.el
@@ -2,7 +2,7 @@
2;;; Copyright 1989, 1993 Free Software Foundation, Inc. 2;;; Copyright 1989, 1993 Free Software Foundation, Inc.
3 3
4;; Maintainer: Stephen Gildea <gildea@lcs.mit.edu> 4;; Maintainer: Stephen Gildea <gildea@lcs.mit.edu>
5;; Time-stamp: <93/06/20 17:36:04 gildea> 5;; Time-stamp: <93/09/24 16:02:25 gildea>
6;; Keywords: tools 6;; Keywords: tools
7 7
8;; This file is free software; you can redistribute it and/or modify 8;; This file is free software; you can redistribute it and/or modify
@@ -33,10 +33,12 @@
33 33
34;;; To activate automatic time stamping, add this code to your .emacs file: 34;;; To activate automatic time stamping, add this code to your .emacs file:
35;;; 35;;;
36;;; (autoload 'time-stamp "time-stamp" "Update the time stamp in a buffer." t)
37;;; (if (not (memq 'time-stamp write-file-hooks)) 36;;; (if (not (memq 'time-stamp write-file-hooks))
38;;; (setq write-file-hooks 37;;; (setq write-file-hooks
39;;; (cons 'time-stamp write-file-hooks))) 38;;; (cons 'time-stamp write-file-hooks)))
39;;;
40;;; In Emacs 18 you will also need
41;;; (autoload 'time-stamp "time-stamp" "Update the time stamp in a buffer." t)
40 42
41;;; Change Log: 43;;; Change Log:
42 44
@@ -162,7 +164,7 @@ See the function time-stamp-mail-host-name.")
162;;; Some useful functions to use in time-stamp-format 164;;; Some useful functions to use in time-stamp-format
163 165
164;;; Could generate most of a message-id with 166;;; Could generate most of a message-id with
165;;; '(yymmdd "" hhmm "@" mail-host-name) 167;;; '(time-stamp-yymmdd "" time-stamp-hhmm "@" mail-host-name)
166 168
167(defun time-stamp-mail-host-name () 169(defun time-stamp-mail-host-name ()
168 "Return the name of the host where the user receives mail. 170 "Return the name of the host where the user receives mail.
@@ -270,3 +272,5 @@ The first character of dd is Space if the value is less than 10."
270(provide 'time-stamp) 272(provide 'time-stamp)
271 273
272;;; time-stamp.el ends here 274;;; time-stamp.el ends here
275
276