Function: markdown-ts--table-tick-stale-p

markdown-ts--table-tick-stale-p is a byte-compiled function defined in markdown-ts-mode.el.gz.

Signature

(markdown-ts--table-tick-stale-p POS)

Documentation

Return non-nil if the table at POS might have changed.

It is up to this function's callers to call markdown-ts--table-tick-update.

Source Code

;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--table-tick-stale-p (pos)
  "Return non-nil if the table at POS might have changed.
It is up to this function's callers to call
`markdown-ts--table-tick-update'."
  (when-let* ((ov (markdown-ts--in-table-mode-get-ov pos)))
    (not (eq (overlay-get ov 'markdown-ts-in-table-tick)
             (buffer-chars-modified-tick)))))