Function: cape-wrap-inside-comment

cape-wrap-inside-comment is an autoloaded and byte-compiled function defined in cape.el.

Signature

(cape-wrap-inside-comment CAPF)

Documentation

Call CAPF only if inside comment.

This function can be used as an advice around an existing Capf.

Source Code

;; Defined in ~/.emacs.d/elpa/cape-20260804.2303/cape.el
;;;###autoload
(defun cape-wrap-inside-comment (capf)
  "Call CAPF only if inside comment.
This function can be used as an advice around an existing Capf."
  (and (nth 4 (syntax-ppss)) (funcall capf)))