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

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

[elpa] externals/auctex a3282bbe06 12/24: Adjust entries for completion


From: Tassilo Horn
Subject: [elpa] externals/auctex a3282bbe06 12/24: Adjust entries for completion
Date: Mon, 21 Feb 2022 02:38:46 -0500 (EST)

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

    Adjust entries for completion
    
    (TeX-arg-corner, TeX-arg-lr): Remove empty strings and unlistify
    the elements in collection argument of `completing-read'.
---
 latex.el | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)

diff --git a/latex.el b/latex.el
index b0d920294c..0d55f269fd 100644
--- a/latex.el
+++ b/latex.el
@@ -2707,7 +2707,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"))
+                    '("l" "r" "t" "b" "tl" "tr" "bl" "br")
                     nil t)
    optional))
 
@@ -2718,7 +2718,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"))
+                    '("l" "r")
                     nil t)
    optional))
 



reply via email to

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