Function: time-stamp-toggle-active

time-stamp-toggle-active is an autoloaded, interactive and byte-compiled function defined in time-stamp.el.gz.

Signature

(time-stamp-toggle-active &optional ARG)

Documentation

Toggle time-stamp-active, setting whether M-x time-stamp (time-stamp) updates a buffer.

With ARG, turn time stamping on if and only if ARG is positive.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/time-stamp.el.gz
;;;###autoload
(defun time-stamp-toggle-active (&optional arg)
  "Toggle `time-stamp-active', setting whether \\[time-stamp] updates a buffer.
With ARG, turn time stamping on if and only if ARG is positive."
  (interactive "P")
  (setq time-stamp-active
	(if (null arg)
	    (not time-stamp-active)
	  (> (prefix-numeric-value arg) 0)))
  (message "time-stamp is now %s." (if time-stamp-active "active" "off")))