From fab31ec395c7988f08c3a83303832b708a88077b Mon Sep 17 00:00:00 2001 From: Stefan Monnier Date: Fri, 3 Jun 2005 15:03:02 +0000 Subject: [PATCH] (flyspell-check-word-p): Simplify silly compatibility code. --- lisp/ChangeLog | 3 +++ lisp/textmodes/flyspell.el | 4 +--- 2 files changed, 4 insertions(+), 3 deletions(-) diff --git a/lisp/ChangeLog b/lisp/ChangeLog index 5ba4f212472..fb5212c7fdb 100644 --- a/lisp/ChangeLog +++ b/lisp/ChangeLog @@ -1,5 +1,8 @@ 2005-06-03 Stefan Monnier + * textmodes/flyspell.el (flyspell-check-word-p): Simplify silly + compatibility code. + * international/latexenc.el (latexenc-find-file-coding-system): Don't inherit the EOL part of the coding-system from the tex-main buffer. Fit within 80 columns. diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 0b65993df3c..500c9c4e113 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -830,9 +830,7 @@ Mostly we check word delimiters." ((get this-command 'flyspell-delayed) ;; the current command is not delayed, that ;; is that we must check the word now - (if (fboundp 'about-xemacs) - (sit-for flyspell-delay nil) - (sit-for flyspell-delay 0 nil))) + (sit-for flyspell-delay)) (t t))) (t t))) -- 2.39.5