Hrvoje Niksic <hniksic(a)srce.hr> writes:
greg(a)alphatech.com (Greg Klanderman) writes:
> see:
>
> (defcustom minibuffer-history-minimum-string-length 3
> "*If this variable is non-nil, a string will not be added to the
> minibuffer history if its length is less than that value."
> :type '(choice (const :tag "Any" nil)
> integer)
> :group 'minibuffer)
Could we please default this to nil? The default is horrible and
violates the principle of least surprise. Such a "feature" does not
exist in GNU Emacs.
Agreed 100%. I was *most* surprised ;-)
---
lisp/minibuf.el.org Wed Apr 29 18:23:11 1998
+++ lisp/minibuf.el Wed Apr 29 18:23:17 1998
@@ -319,7 +319,7 @@
(defvar current-minibuffer-contents)
(defvar current-minibuffer-point)
-(defcustom minibuffer-history-minimum-string-length 3
+(defcustom minibuffer-history-minimum-string-length nil
"*If this variable is non-nil, a string will not be added to the
minibuffer history if its length is less than that value."
:type '(choice (const :tag "Any" nil)