Function: c-debug-parse-state-double-cons

c-debug-parse-state-double-cons is a byte-compiled function defined in cc-engine.el.gz.

Signature

(c-debug-parse-state-double-cons STATE)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-engine.el.gz
(defun c-debug-parse-state-double-cons (state)
  (let (state-car conses-not-ok)
    (while state
      (setq state-car (car state)
	    state (cdr state))
      (if (and (consp state-car)
	       (consp (car state)))
	  (setq conses-not-ok t)))
    conses-not-ok))