• Home
  • History
  • Annotate
  • Raw
  • Download
  • only in /macosx-10.10.1/emacs-93/emacs/lisp/textmodes/

Lines Matching +defs:text +defs:properties +defs:at

14 ;; the Free Software Foundation; either version 2, or (at your option)
35 ;; To enable Flyspell in text representing computer programs, type
37 ;; In that mode only text inside comments is checked.
105 (defcustom flyspell-highlight-properties t
194 inside the texmathp.el Emacs package. That package may be found at:
306 (looking-at "^Subject:"))
313 (not (looking-at "[>}|]\\|To:")))))))
321 (not (looking-at "@"))))
368 (defvar flyspell-prog-text-faces
370 "Faces corresponding to text in programming-mode buffers.")
374 (let ((f (get-text-property (point) 'face)))
375 (memq f flyspell-prog-text-faces)))
393 (autoload 'overlays-at "overlay" "Overlay compatibility kit." t)
476 Consider using the `ispell-parser' to check your text. For instance
500 (custom-add-option 'text-mode-hook 'turn-on-flyspell)
532 ;; However, it only happens at startup (fix by Albert L. Ting).
660 ;;* post command hook, we will check, if the word at this position */
745 ;;* the post command hook, we will check, if the word at this */
782 "Return t when the word at `point' has to be checked.
793 (and (looking-at (flyspell-get-not-casechars))
795 (not (looking-at "-"))))))
858 (and (and (looking-at (flyspell-get-not-casechars)) 1)
860 (not (looking-at "\\-"))) 2))))))
873 (and (looking-at (flyspell-get-not-casechars))
875 (not (looking-at "\\-"))))))))
1044 (flyspell-unhighlight-at start)
1046 (flyspell-unhighlight-at (- end 1)))
1080 (flyspell-unhighlight-at start)
1082 (flyspell-unhighlight-at (- end 1)))
1087 (flyspell-unhighlight-at start)
1089 (flyspell-unhighlight-at (- end 1)))
1093 (flyspell-unhighlight-at start)
1095 (flyspell-unhighlight-at (- end 1)))
1183 (looking-at flyspell-tex-command-regexp)
1275 (if (not (looking-at flyspell-casechars))
1282 (looking-at ispell-otherchars))
1283 (and extra-otherchars (looking-at extra-otherchars)))
1288 (if (and extra-otherchars (looking-at extra-otherchars))
1291 (if (looking-at flyspell-casechars)
1296 (if (looking-at flyspell-casechars)
1305 word (buffer-substring-no-properties start end))
1312 "Flyspell text between BEG and END."
1419 (if (looking-at "[\\]" )
1460 (setq string (buffer-substring-no-properties (match-beginning 1)
1549 ;;* text region, a new `ispell -l' process is spawned. The */
1555 "Flyspell text between BEG and END."
1605 (let ((ovs (overlays-at pos))
1642 ;;* flyspell-unhighlight-at ... */
1644 (defun flyspell-unhighlight-at (pos)
1645 "Remove the flyspell overlay that are located at POS."
1647 (let ((overlays (overlays-at pos)))
1656 ;;* flyspell-properties-at-p ... */
1658 ;;* Is there an highlight properties at position pos? */
1660 (defun flyspell-properties-at-p (pos)
1661 "Return t if there is a text property at POS, not counting `local-map'.
1662 If variable `flyspell-highlight-properties' is set to nil,
1663 text with properties are not checked. This function is used to discover
1664 if the character at POS has any other property."
1665 (let ((prop (text-properties-at pos))
1679 FACE and MOUSE-FACE specify the `face' and `mouse-face' properties
1686 (overlay-put overlay 'help-echo "mouse-2: correct word at point")
1709 (if (or flyspell-highlight-properties
1710 (not (flyspell-properties-at-p beg)))
1713 ;; beginning at the word start position
1720 ;; we cleanup current overlay at the same position
1721 (flyspell-unhighlight-at beg)
1739 (if (or flyspell-highlight-properties
1740 (not (flyspell-properties-at-p beg)))
1742 ;; we cleanup current overlay at the same position
1743 (flyspell-unhighlight-at beg)
1781 (setq ovs (overlays-at (1- pos)))
1807 (put-text-property num
1845 ;; we have already been using the function at the same location
1848 (flyspell-unhighlight-at start)
1918 (flyspell-unhighlight-at start)
1999 (let ((ispell-following-word t)) ;; point is at start
2012 The word checked is the word at the mouse position."
2084 (flyspell-unhighlight-at cursor-location)
2088 (flyspell-unhighlight-at cursor-location)
2098 (flyspell-unhighlight-at cursor-location)
2257 If the text between BEG and END is equal to a correction suggested by
2258 Ispell, after transposing two adjacent characters, correct the text,
2287 If the text between BEG and END is equal to a correction suggested by
2288 Ispell, after removing a pair of doubled characters, correct the text,