Function: remove-pos-from-symbol

remove-pos-from-symbol is a function defined in data.c.

Signature

(remove-pos-from-symbol ARG)

Documentation

If ARG is a symbol with position, return it without the position.

Otherwise, return ARG unchanged. Compare with bare-symbol.

Source Code

// Defined in /usr/src/emacs/src/data.c
{
  if (SYMBOL_WITH_POS_P (arg))
    return (SYMBOL_WITH_POS_SYM (arg));
  return arg;
}