Function: meta-indent-looking-at-code
meta-indent-looking-at-code is a byte-compiled function defined in
meta-mode.el.gz.
Signature
(meta-indent-looking-at-code REGEXP)
Documentation
Same as looking-at but checks that the point is not in a string.
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/meta-mode.el.gz
(defun meta-indent-looking-at-code (regexp)
"Same as `looking-at' but checks that the point is not in a string."
(unless (meta-indent-in-string-p)
(looking-at regexp)))