Function: js--fill-c-advice

js--fill-c-advice is a byte-compiled function defined in js.el.gz.

Signature

(js--fill-c-advice JS-FUN)

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/js.el.gz
;; FIXME: Such redefinitions are bad style.  We should try and use some other
;; way to get the same result.
(defun js--fill-c-advice (js-fun)
  (lambda (orig-fun &rest args)
    (if js--filling-paragraph
        (funcall js-fun (car args))
      (apply orig-fun args))))