Function: c-sc-parse-partial-sexp

c-sc-parse-partial-sexp is a macro defined in cc-defs.el.gz.

Signature

(c-sc-parse-partial-sexp FROM TO &optional TARGETDEPTH STOPBEFORE OLDSTATE)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/cc-defs.el.gz
(defmacro c-sc-parse-partial-sexp (from to &optional targetdepth stopbefore
					oldstate)
  (declare (debug t))
  (if (eval-when-compile c-use-category)
      `(parse-partial-sexp ,from ,to ,targetdepth ,stopbefore ,oldstate)
    `(c-sc-parse-partial-sexp-no-category ,from ,to ,targetdepth ,stopbefore
					  ,oldstate)))