Function: glc-is-filetime

glc-is-filetime is a byte-compiled function defined in goto-chg.el.

Signature

(glc-is-filetime E)

Documentation

Return t if E indicates a buffer became "modified", that is, it was previously saved or unchanged. Nil otherwise.

Source Code

;; Defined in ~/.emacs.d/elpa/goto-chg-20240407.1110/goto-chg.el
(defun glc-is-filetime (e)
  "Return t if E indicates a buffer became \"modified\",
that is, it was previously saved or unchanged. Nil otherwise."
  (and (listp e) (eq (car e) t)))