emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

feature/android 6bdbb4cbfc2 1/2: Update Android port


From: Po Lu
Subject: feature/android 6bdbb4cbfc2 1/2: Update Android port
Date: Tue, 4 Apr 2023 06:41:49 -0400 (EDT)

branch: feature/android
commit 6bdbb4cbfc2deb7d3a02e1428768e101f3dbd265
Author: Po Lu <luangruo@yahoo.com>
Commit: Po Lu <luangruo@yahoo.com>

    Update Android port
    
    * lisp/subr.el (read-char-from-minibuffer): Don't use undefined
    variable.  Reported by Robert Pluim.
---
 lisp/subr.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/lisp/subr.el b/lisp/subr.el
index 45953f07f13..819aba631fa 100644
--- a/lisp/subr.el
+++ b/lisp/subr.el
@@ -3471,8 +3471,8 @@ There is no need to explicitly add `help-char' to CHARS;
 
   ;; If text conversion is enabled in this buffer, then it will only
   ;; be disabled the next time `force-mode-line-update' happens.
-  (when (and overriding-text-conversion-style
-             text-conversion-style)
+  (when (and (bound-and-true-p 'overriding-text-conversion-style)
+             (bound-and-true-p 'text-conversion-style))
     (force-mode-line-update))
 
   (let* ((overriding-text-conversion-style nil)



reply via email to

[Prev in Thread] Current Thread [Next in Thread]