Function: meta-indent-in-string-p

meta-indent-in-string-p is a byte-compiled function defined in meta-mode.el.gz.

Signature

(meta-indent-in-string-p)

Documentation

Tell if the point is in a string.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-indent-in-string-p ()
  "Tell if the point is in a string."
  (or (nth 3 (syntax-ppss))
      (eq (get-text-property (point) 'face) font-lock-string-face)))