Function: opascal-literal-stop-pattern
opascal-literal-stop-pattern is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-literal-stop-pattern LITERAL-KIND)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-literal-stop-pattern (literal-kind)
;; Returns the pattern that delimits end of the search for the literal kind.
;; These are regular expressions.
(cdr (assoc literal-kind
'((comment-single-line . "\n")
(comment-multi-line-1 . "}")
(comment-multi-line-2 . "\\*)")
;; Strings cannot span lines.
(string . "['\n]")
(double-quoted-string . "[\"\n]")))))