Function: markdown-ts--table-tick-update
markdown-ts--table-tick-update is a byte-compiled function defined in
markdown-ts-mode.el.gz.
Signature
(markdown-ts--table-tick-update POS)
Documentation
Update the markdown-ts-in-table-mode(var)/markdown-ts-in-table-mode(fun) overlay tick at POS.
If the overlay is not found, do nothing.
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/markdown-ts-mode.el.gz
(defun markdown-ts--table-tick-update (pos)
"Update the `markdown-ts-in-table-mode' overlay tick at POS.
If the overlay is not found, do nothing."
(when-let* ((ov (markdown-ts--in-table-mode-get-ov pos)))
(overlay-put ov
'markdown-ts-in-table-tick
(buffer-chars-modified-tick))))