Function: opascal-looking-at-string
opascal-looking-at-string is a byte-compiled function defined in
opascal.el.gz.
Signature
(opascal-looking-at-string P S)
Source Code
;; Defined in /usr/src/emacs/lisp/progmodes/opascal.el.gz
(defun opascal-looking-at-string (p s)
;; True if point p marks the start of string s. s is not a regular
;; expression.
(let ((limit (+ p (length s))))
(and (<= limit (point-max))
(string= s (opascal-string-of p limit)))))