Function: c-langelem-sym

c-langelem-sym is a byte-compiled function defined in cc-defs.el.gz.

Signature

(c-langelem-sym LANGELEM)

Documentation

Return the syntactic symbol in LANGELEM.

LANGELEM is either a cons cell on the "old" form given as the first argument to lineup functions or a syntactic element on the "new" form as used in c-syntactic-element.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defsubst c-langelem-sym (langelem)
  "Return the syntactic symbol in LANGELEM.

LANGELEM is either a cons cell on the \"old\" form given as the first
argument to lineup functions or a syntactic element on the \"new\"
form as used in `c-syntactic-element'."
  (car langelem))