Function: lua-match-multiline-literal-bounds

lua-match-multiline-literal-bounds is a byte-compiled function defined in lua-mode.el.gz.

Signature

(lua-match-multiline-literal-bounds LIMIT)

Documentation

Move point to multi-line literal bound.

The argument LIMIT is a buffer position that bounds the search.

Source Code

;; Defined in /usr/src/emacs/lisp/progmodes/lua-mode.el.gz
(defun lua-match-multiline-literal-bounds (limit)
  "Move point to multi-line literal bound.
The argument LIMIT is a buffer position that bounds the search."
  ;; First, close any multiline literal spanning from previous block.
  ;; This will move the point accordingly so as to avoid double
  ;; traversal.
  (or (lua-try-match-multiline-end limit)
      (lua-try-match-multiline-begin limit)))