Variable: time-stamp-start

time-stamp-start is a variable defined in time-stamp.el.gz.

Value

"Time-stamp:[   ]+\\\\?[\"<]+"

Documentation

Regexp after which the time stamp is written by M-x time-stamp (time-stamp).

It may be more convenient to use time-stamp-pattern if you set more than one of time-stamp-line-limit, time-stamp-start, time-stamp-end, or time-stamp-format.

These variables are best changed with file-local variables. If you were to change time-stamp-line-limit, time-stamp-start, time-stamp-end, or time-stamp-pattern in your init file, you would be incompatible with other people's files.

Probably introduced at or before Emacs version 19.16.

Source Code

;; Defined in /usr/src/emacs/lisp/time-stamp.el.gz
;;;###autoload(put 'time-stamp-line-limit 'safe-local-variable #'integerp)


(defvar time-stamp-start "Time-stamp:[ \t]+\\\\?[\"<]+"    ;Do not change!
  "Regexp after which the time stamp is written by \\[time-stamp].

It may be more convenient to use `time-stamp-pattern' if you set more
than one of `time-stamp-line-limit', `time-stamp-start', `time-stamp-end',
or `time-stamp-format'.

These variables are best changed with file-local variables.
If you were to change `time-stamp-line-limit', `time-stamp-start',
`time-stamp-end', or `time-stamp-pattern' in your init file, you
would be incompatible with other people's files.")