diff options
Diffstat (limited to 'lib/eos')
| -rw-r--r-- | lib/eos/jao-minibuffer.el | 7 | 
1 files changed, 4 insertions, 3 deletions
diff --git a/lib/eos/jao-minibuffer.el b/lib/eos/jao-minibuffer.el index 1d60ed2..3614455 100644 --- a/lib/eos/jao-minibuffer.el +++ b/lib/eos/jao-minibuffer.el @@ -95,9 +95,10 @@                "   " msg))))  (defun jao-minibuffer--set-message (msg) -  (if (and msg -           (not (string-blank-p msg)) -           (bound-and-true-p current-minibuffer-command)) +  (if (or (not jao-minibuffer-enabled-p) +          (and msg +               (not (string-blank-p msg)) +               (bound-and-true-p current-minibuffer-command)))        msg      (jao-minibuffer--format-msg msg)))  | 
