Function: symbol-with-pos-p
symbol-with-pos-p is a function defined in data.c.
Signature
(symbol-with-pos-p OBJECT)
Documentation
Return t if OBJECT is a symbol together with position.
Ignore symbols-with-pos-enabled.
Source Code
// Defined in /usr/src/emacs/src/data.c
{
if (SYMBOL_WITH_POS_P (object))
return Qt;
return Qnil;
}