comparison lisp/textmodes/flyspell.el @ 68424:6c8eee5f9e6e

(flyspell-incorrect, flyspell-duplicate): Doc fix.
author Eli Zaretskii <eliz@gnu.org>
date Fri, 27 Jan 2006 19:43:06 +0000
parents e5fac4fecc67
children 877f109009ca 7432ca837c8d
comparison
equal deleted inserted replaced
68423:927f1c4f43d8 68424:6c8eee5f9e6e
425 ;;* Highlighting */ 425 ;;* Highlighting */
426 ;;*---------------------------------------------------------------------*/ 426 ;;*---------------------------------------------------------------------*/
427 (defface flyspell-incorrect 427 (defface flyspell-incorrect
428 '((((class color)) (:foreground "OrangeRed" :bold t :underline t)) 428 '((((class color)) (:foreground "OrangeRed" :bold t :underline t))
429 (t (:bold t))) 429 (t (:bold t)))
430 "Face used for marking a misspelled word in Flyspell." 430 "Face used to display a misspelled word in Flyspell."
431 :group 'flyspell) 431 :group 'flyspell)
432 ;; backward-compatibility alias 432 ;; backward-compatibility alias
433 (put 'flyspell-incorrect-face 'face-alias 'flyspell-incorrect) 433 (put 'flyspell-incorrect-face 'face-alias 'flyspell-incorrect)
434 434
435 (defface flyspell-duplicate 435 (defface flyspell-duplicate
436 '((((class color)) (:foreground "Gold3" :bold t :underline t)) 436 '((((class color)) (:foreground "Gold3" :bold t :underline t))
437 (t (:bold t))) 437 (t (:bold t)))
438 "Face used for marking a misspelled word that appears twice in the buffer. 438 "Face used to display subsequent occurrences of a misspelled word.
439 See also `flyspell-duplicate-distance'." 439 See also `flyspell-duplicate-distance'."
440 :group 'flyspell) 440 :group 'flyspell)
441 ;; backward-compatibility alias 441 ;; backward-compatibility alias
442 (put 'flyspell-duplicate-face 'face-alias 'flyspell-duplicate) 442 (put 'flyspell-duplicate-face 'face-alias 'flyspell-duplicate)
443 443