Function: c-state-lit-beg

c-state-lit-beg is a byte-compiled function defined in cc-engine.el.gz.

Signature

(c-state-lit-beg POS)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defsubst c-state-lit-beg (pos)
  ;; Return the start of the literal containing POS, or POS itself.
  (or (car (c-state-literal-at pos))
      pos))