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

    Add missing argument for `TeX-argument-prompt'
    
    * latex.el (TeX-read-completing-read)
    (TeX-read-completing-read-multiple): Fix the value of third
    argument of `TeX-argument-prompt'.
---
 latex.el | 6 ++++--
 1 file changed, 4 insertions(+), 2 deletions(-)

diff --git a/latex.el b/latex.el
index 59ba9cbfc6..9e5cff3d9d 100644
--- a/latex.el
+++ b/latex.el
@@ -3278,7 +3278,8 @@ INHERIT-INPUT-METHOD are passed to `completing-read', 
which see."
                                (concat prompt " (cr)"))
                               ((and prompt complete)
                                prompt)
-                              (t "Option (cr)"))
+                              (t nil))
+                        "Option (cr)"
                         complete)
    (cond ((and (symbolp collection)
                (boundp collection))
@@ -3340,7 +3341,8 @@ INHERIT-INPUT-METHOD are passed to
                                (concat prompt " (crm)"))
                               ((and prompt complete)
                                prompt)
-                              (t "Options (crm)"))
+                              (t nil))
+                        "Options (crm)"
                         complete)
    (cond ((and (symbolp table)
                (boundp table))


Reply via email to