Function: ispell-looking-at
ispell-looking-at is a byte-compiled function defined in ispell.el.gz.
Signature
(ispell-looking-at STRING)
Source Code
;; Defined in /usr/src/emacs/lisp/textmodes/ispell.el.gz
(defun ispell-looking-at (string)
(let ((coding (ispell-get-coding-system))
(len (length string)))
(and (<= (+ (point) len) (point-max))
(equal (encode-coding-string string coding)
(encode-coding-string (buffer-substring-no-properties
(point) (+ (point) len))
coding)))))