Function: hif-is-in-comment

hif-is-in-comment is a byte-compiled function defined in hideif.el.gz.

Signature

(hif-is-in-comment)

Documentation

Check if we're currently within a C(++) comment.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/hideif.el.gz
(defun hif-is-in-comment ()
  "Check if we're currently within a C(++) comment."
  (or (nth 4 (syntax-ppss))
      (looking-at "/[/*]")))