From: Stefan Kangas Date: Fri, 13 May 2022 20:21:35 +0000 (+0200) Subject: Remove some XEmacs compat code from flyspell.el X-Git-Tag: emacs-29.0.90~1910^2~717 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=bc50a957b1e3a20abe118e2c3365828d4e9e6ef9;p=emacs.git Remove some XEmacs compat code from flyspell.el * lisp/textmodes/flyspell.el (flyspell-display-next-corrections): Remove XEmacs compat code. --- diff --git a/lisp/textmodes/flyspell.el b/lisp/textmodes/flyspell.el index 5de04b12d46..2c5e30fecd8 100644 --- a/lisp/textmodes/flyspell.el +++ b/lisp/textmodes/flyspell.el @@ -1942,9 +1942,7 @@ before point that's highlighted as misspelled." 'face 'flyspell-incorrect string)) (setq pos (cdr pos))) - (if (fboundp 'display-message) - (display-message 'no-log string) - (message "%s" string)))) + (message "%s" string))) ;;*---------------------------------------------------------------------*/ ;;* flyspell-abbrev-table ... */