Function: lua-string-p

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

Signature

(lua-string-p &optional POS)

Documentation

Return non-nil if point or POS is in a string.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-string-p (&optional pos)
  "Return non-nil if point or POS is in a string."
  (save-excursion (elt (syntax-ppss pos) 3)))