emacs-elpa-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[elpa] externals/auctex 658340b188 32/39: Remove requiring a match durin


From: Tassilo Horn
Subject: [elpa] externals/auctex 658340b188 32/39: Remove requiring a match during `completing-read'
Date: Thu, 20 Jul 2023 04:21:51 -0400 (EDT)

branch: externals/auctex
commit 658340b188ef40a3bbe03c258185157b3bbe0727
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@gnu.org>

    Remove requiring a match during `completing-read'
    
    * latex.el (TeX-arg-corner, TeX-arg-lr, TeX-arg-tb): Don't pass a
    non-nil value for the REQUIRE-MATCH argument to `completing-read'.
---
 latex.el | 9 +++------
 1 file changed, 3 insertions(+), 6 deletions(-)

diff --git a/latex.el b/latex.el
index 3746c982fa..6c51a14654 100644
--- a/latex.el
+++ b/latex.el
@@ -2835,8 +2835,7 @@ argument, otherwise as a mandatory one.  Use PROMPT as 
the prompt
 string."
   (TeX-argument-insert
    (completing-read (TeX-argument-prompt optional prompt "Position")
-                    '("l" "r" "t" "b" "tl" "tr" "bl" "br")
-                    nil t)
+                    '("l" "r" "t" "b" "tl" "tr" "bl" "br"))
    optional))
 
 (defun TeX-arg-lr (optional &optional prompt)
@@ -2846,8 +2845,7 @@ argument, otherwise as a mandatory one.  Use PROMPT as 
the prompt
 string."
   (TeX-argument-insert
    (completing-read (TeX-argument-prompt optional prompt "Position")
-                    '("l" "r")
-                    nil t)
+                    '("l" "r"))
    optional))
 
 (defun TeX-arg-tb (optional &optional prompt poslist)
@@ -2867,8 +2865,7 @@ with the following completion list:
                           ((eq poslist 'stretch)
                            '("t" "b" "c" "s"))
                           (t
-                           '("t" "b")))
-                    nil t)
+                           '("t" "b"))))
    optional))
 
 (defcustom TeX-date-format "%Y/%m/%d"



reply via email to

[Prev in Thread] Current Thread [Next in Thread]