[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
master b302fdce: Add missing argument for `TeX-argument-prompt'
From: |
Arash Esbati |
Subject: |
master b302fdce: Add missing argument for `TeX-argument-prompt' |
Date: |
Mon, 10 Oct 2022 07:09:34 -0400 (EDT) |
branch: master
commit b302fdce1d87ad1abd74de630d45e4eb561c50b8
Author: Arash Esbati <arash@gnu.org>
Commit: Arash Esbati <arash@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 59ba9cbf..9e5cff3d 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))
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- master b302fdce: Add missing argument for `TeX-argument-prompt',
Arash Esbati <=