[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex dc40d6e812 05/37: Fix bug#64921
From: |
Tassilo Horn |
Subject: |
[elpa] externals/auctex dc40d6e812 05/37: Fix bug#64921 |
Date: |
Wed, 11 Oct 2023 03:41:54 -0400 (EDT) |
branch: externals/auctex
commit dc40d6e81266eb4e2d50564cf1d47af55beafb03
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Commit: Ikumi Keita <ikumi@ikumi.que.jp>
Fix bug#64921
* style/biblatex.el (LaTeX-arg-biblatex-cites): Don't loop when RefTeX
citation is done.
---
style/biblatex.el | 10 +++++++---
1 file changed, 7 insertions(+), 3 deletions(-)
diff --git a/style/biblatex.el b/style/biblatex.el
index 3254ce8566..52e9e2ec98 100644
--- a/style/biblatex.el
+++ b/style/biblatex.el
@@ -203,8 +203,8 @@ for citation keys."
(TeX-argument-insert
(TeX-read-string (TeX-argument-prompt t nil "Global postnote"))
(equal prenote ""))))
- (let ((items t) (noinsert nil))
- (while items
+ (let ((items t) (noinsert nil) (reftex--done nil))
+ (while (and items (not reftex--done))
;; Prompt for prenote and postnote of the current keys.
(and TeX-arg-cite-note-p (not current-prefix-arg)
(let ((TeX-arg-opening-brace "[")
@@ -221,7 +221,11 @@ for citation keys."
(fboundp 'reftex-plug-flag)
(reftex-plug-flag 3))
;; Use RefTeX when enabled.
- (reftex-citation t)
+ (prog1
+ (reftex-citation t)
+ ;; Don't loop when RefTeX citation is done.
+ ;; (bug#64921)
+ (setq reftex--done t))
;; Multiple citation keys in each argument are allowed.
(TeX-completing-read-multiple
(TeX-argument-prompt optional prompt "Key(s)")
- [elpa] externals/auctex updated (311d292163 -> 75702683d0), Tassilo Horn, 2023/10/11
- [elpa] externals/auctex dc40d6e812 05/37: Fix bug#64921,
Tassilo Horn <=
- [elpa] externals/auctex 65330be8e6 02/37: ; Trivial cleanups, Tassilo Horn, 2023/10/11
- [elpa] externals/auctex 66941e5aad 11/37: ; * doc/changes.texi: Fix typo., Tassilo Horn, 2023/10/11
- [elpa] externals/auctex d3d9dc089b 16/37: Disallow opening square brackets as verb delimiter, Tassilo Horn, 2023/10/11
- [elpa] externals/auctex c273efdeb2 18/37: Honor file local variable (bug#65750), Tassilo Horn, 2023/10/11
- [elpa] externals/auctex b18e98cbec 04/37: Follow-up fix for doc string (bug#65195), Tassilo Horn, 2023/10/11
- [elpa] externals/auctex 3c03ee089a 01/37: Add missing alternative for custom type, Tassilo Horn, 2023/10/11
- [elpa] externals/auctex 2151c3831f 17/37: Honor file local value for `LaTeX-section-list' (bug#65750), Tassilo Horn, 2023/10/11
- [elpa] externals/auctex 338c5d0a4b 30/37: * latex.el (LaTeX-auto-index-regexp-list): Save regexp groups., Tassilo Horn, 2023/10/11
- [elpa] externals/auctex d436191cef 31/37: * latex.el (LaTeX-auto-class-regexp-list): Save regexp groups., Tassilo Horn, 2023/10/11
- [elpa] externals/auctex cb0e671b0c 34/37: ; * tex-site.el.in (BibTeX-auto-store): Pacify the compiler., Tassilo Horn, 2023/10/11