From 0e37a291cae26e91e761868570be713fbe1c1c1a Mon Sep 17 00:00:00 2001 From: "F. Jason Park" Date: Sun, 10 Sep 2023 20:44:49 -0700 Subject: [PATCH] ; * lisp/erc/erc.el (erc-check-text-conversion): Try fboundp. --- lisp/erc/erc.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/erc/erc.el b/lisp/erc/erc.el index 0a67cf83ca8..07ba32d1cca 100644 --- a/lisp/erc/erc.el +++ b/lisp/erc/erc.el @@ -8040,7 +8040,7 @@ prompt or `nil' otherwise, set it to such a value, so as to guarantee that the input method functions properly for the purpose of typing within the ERC prompt." (when (and (eq major-mode 'erc-mode) - (boundp 'text-conversion-style)) + (fboundp 'set-text-conversion-style)) (if (>= (point) (erc-beg-of-input-line)) (unless (eq text-conversion-style 'action) (set-text-conversion-style 'action)) -- 2.39.5