From ac2498ad1c25088f4b9561898d39948f33c57124 Mon Sep 17 00:00:00 2001 From: "dick r. chiang" <dick.r.chiang@gmail.com> Date: Sun, 12 Sep 2021 14:11:16 +0200 Subject: [PATCH] Fix read-no-blanks-input history argument * lisp/minibuffer.el (read-no-blanks-input): Use the `minibuffer-history' symbol, not the value (bug#50535). --- lisp/minibuffer.el | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lisp/minibuffer.el b/lisp/minibuffer.el index 68e4fa17fce..8a0122ae5f6 100644 --- a/lisp/minibuffer.el +++ b/lisp/minibuffer.el @@ -2688,7 +2688,7 @@ the current input method and the setting of`enable-multibyte-characters'. If `inhibit-interaction' is non-nil, this function will signal an `inhibited-interaction' error." (read-from-minibuffer prompt initial minibuffer-local-ns-map - nil minibuffer-history nil inherit-input-method)) + nil 'minibuffer-history nil inherit-input-method)) ;;; Major modes for the minibuffer -- 2.39.5