Variable: time-stamp-count
time-stamp-count is a variable defined in time-stamp.el.gz.
Value
1
Documentation
How many templates M-x time-stamp (time-stamp) will look for in a buffer.
If the value is greater than 1, the same time stamp will be written in
each case. If you want to insert different text on different lines,
then instead of changing this variable, include a newline (written as
"\\n") in time-stamp-format or the format part of time-stamp-pattern.
time-stamp-count is best changed with a file-local variable.
If you were to change it in your init file, you would be incompatible
with other people's files.
Probably introduced at or before Emacs version 21.1.
Source Code
;; Defined in /usr/src/emacs/lisp/time-stamp.el.gz
;;;###autoload(put 'time-stamp-inserts-lines 'safe-local-variable #'booleanp)
(defvar time-stamp-count 1 ;Do not change!
"How many templates \\[time-stamp] will look for in a buffer.
If the value is greater than 1, the same time stamp will be written in
each case. If you want to insert different text on different lines,
then instead of changing this variable, include a newline (written as
\"\\n\") in `time-stamp-format' or the format part of `time-stamp-pattern'.
`time-stamp-count' is best changed with a file-local variable.
If you were to change it in your init file, you would be incompatible
with other people's files.")