Function: kmacro-menu--assert-row
kmacro-menu--assert-row is a byte-compiled function defined in
kmacro.el.gz.
Signature
(kmacro-menu--assert-row &optional ID)
Documentation
Signal an error if point is not on a table row.
ID is the tabulated list id of the supposed entry at point.
Source Code
;; Defined in /usr/src/emacs/lisp/kmacro.el.gz
(defun kmacro-menu--assert-row (&optional id)
"Signal an error if point is not on a table row.
ID is the tabulated list id of the supposed entry at point."
(unless (or id (tabulated-list-get-id))
(user-error "Not on a table row")))