diff options
| author | Po Lu | 2023-04-04 18:34:44 +0800 |
|---|---|---|
| committer | Po Lu | 2023-04-04 18:34:44 +0800 |
| commit | 6bdbb4cbfc2deb7d3a02e1428768e101f3dbd265 (patch) | |
| tree | 34f67b7186a0cbee7e7318807f83c6f7479a7a47 | |
| parent | 76a8347e43b6c57f032469cc14764aebd02e6ff3 (diff) | |
| download | emacs-6bdbb4cbfc2deb7d3a02e1428768e101f3dbd265.tar.gz emacs-6bdbb4cbfc2deb7d3a02e1428768e101f3dbd265.zip | |
Update Android port
* lisp/subr.el (read-char-from-minibuffer): Don't use undefined
variable. Reported by Robert Pluim.
| -rw-r--r-- | lisp/subr.el | 4 |
1 files 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; | |||
| 3471 | 3471 | ||
| 3472 | ;; If text conversion is enabled in this buffer, then it will only | 3472 | ;; If text conversion is enabled in this buffer, then it will only |
| 3473 | ;; be disabled the next time `force-mode-line-update' happens. | 3473 | ;; be disabled the next time `force-mode-line-update' happens. |
| 3474 | (when (and overriding-text-conversion-style | 3474 | (when (and (bound-and-true-p 'overriding-text-conversion-style) |
| 3475 | text-conversion-style) | 3475 | (bound-and-true-p 'text-conversion-style)) |
| 3476 | (force-mode-line-update)) | 3476 | (force-mode-line-update)) |
| 3477 | 3477 | ||
| 3478 | (let* ((overriding-text-conversion-style nil) | 3478 | (let* ((overriding-text-conversion-style nil) |