]> git.eshelyaron.com Git - emacs.git/commitdiff
Make minibuffer-eldef-shorten-default obsolete
authorStefan Kangas <stefan@marxist.se>
Fri, 2 Sep 2022 12:51:27 +0000 (14:51 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Fri, 2 Sep 2022 12:51:27 +0000 (14:51 +0200)
* lisp/minibuf-eldef.el (minibuffer-eldef-shorten-default): Make
variable obsolete in favor of 'minibuffer-default-prompt-format'.
* doc/emacs/mini.texi (Basic Minibuffer): Delete above obsolete
variable (bug#50935).

doc/emacs/mini.texi
etc/NEWS
lisp/minibuf-eldef.el

index e71d653210adfbc6da10c026e9d2243ba1634148..90e50a41d536fefd306ed44e738a1505846dfb18 100644 (file)
@@ -58,12 +58,8 @@ the default argument is shown with the user option
 Emacs hides the default argument as soon as you modify the contents of
 the minibuffer (since typing @key{RET} would no longer submit that
 default).  If you ever bring back the original minibuffer text, the
-prompt again shows the default.  Furthermore, if you change the
-variable @code{minibuffer-eldef-shorten-default} to a non-@code{nil}
-value, the default argument is displayed as @samp{[@var{default-arg}]}
-instead of @samp{(default @var{default-arg})}, saving some screen
-space.  To enable this minor mode, type @kbd{M-x
-minibuffer-electric-default-mode}.
+prompt again shows the default.  To enable this minor mode, type
+@kbd{M-x minibuffer-electric-default-mode}.
 
   Since the minibuffer appears in the echo area, it can conflict with
 other uses of the echo area.  If an error message or an informative
index 1512d45fdc110f6479667986632d77f713d38c51..5feef9aa63fc6d8e2bea04f4e11f8276f6824179 100644 (file)
--- a/etc/NEWS
+++ b/etc/NEWS
@@ -109,6 +109,12 @@ files when the Emacs session which locked it crashes, or was otherwise
 interrupted, and didn't exit gracefully.  See the "(emacs) Saving
 Emacs Sessions" node in the Emacs manual for more details.
 
+** Miscellaneous
+
++++
+*** User option 'minibuffer-eldef-shorten-default' is now obsolete.
+Customize the user option 'minibuffer-default-prompt-format' instead.
+
 \f
 * Startup Changes in Emacs 29.1
 
index 3f04a3e9219f0b91a6f3232b61000c23485c4fb5..ba7e68eb81df74f0208f4749a851c4be554c8d11 100644 (file)
@@ -64,6 +64,8 @@
   :type 'boolean
   :group 'minibuffer
   :version "24.3")
+(make-obsolete-variable 'minibuffer-eldef-shorten-default
+                        'minibuffer-default-prompt-format "29.1")
 
 (defvar minibuffer-default-in-prompt-regexps
   (minibuffer-default--in-prompt-regexps)