Function: lisp--el-non-funcall-position-p
lisp--el-non-funcall-position-p is a byte-compiled function defined in
lisp-mode.el.gz.
This function is obsolete since 28.1; use
lisp--el-funcall-position-p instead.
Signature
(lisp--el-non-funcall-position-p POS)
Documentation
Heuristically determine whether POS is an evaluated position.
Source Code
;; Defined in /usr/src/emacs/lisp/emacs-lisp/lisp-mode.el.gz
(defun lisp--el-non-funcall-position-p (pos)
"Heuristically determine whether POS is an evaluated position."
(declare (obsolete lisp--el-funcall-position-p "28.1"))
(not (lisp--el-funcall-position-p pos)))