[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex 8a36595 12/80: Fix handling of function entries
From: |
Tassilo Horn |
Subject: |
[elpa] externals/auctex 8a36595 12/80: Fix handling of function entries in `TeX-complete-list' |
Date: |
Wed, 16 Oct 2019 11:07:07 -0400 (EDT) |
branch: externals/auctex
commit 8a36595fb116cd3c6e3f429c9be2101b211c49af
Author: Arash Esbati <address@hidden>
Commit: Arash Esbati <address@hidden>
Fix handling of function entries in `TeX-complete-list'
* tex.el (TeX-complete-symbol): Check if the fourth argument of
entry in `TeX-complete-list' is a list and eval it. (Bug#35074)
---
tex.el | 6 +++++-
1 file changed, 5 insertions(+), 1 deletion(-)
diff --git a/tex.el b/tex.el
index 3c3f176..6cf2e48 100644
--- a/tex.el
+++ b/tex.el
@@ -3109,7 +3109,11 @@ Or alternatively:
(when entry
(if (numberp (nth 1 entry))
(let* ((sub (nth 1 entry))
- (close (nth 3 entry))
+ (close (if (and (nth 3 entry)
+ (listp (nth 3 entry))
+ (symbolp (car (nth 3 entry))))
+ (eval (nth 3 entry))
+ (nth 3 entry)))
(begin (match-beginning sub))
(end (match-end sub))
(pattern (TeX-match-buffer 0))
- [elpa] externals/auctex updated (0c8d670 -> c5e47f8), Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 5b97c38 01/80: Add dependencies file auctex-pkg.el, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex c8177fd 05/80: * style/listings.el: Require tex.el., Tassilo Horn, 2019/10/16
- [elpa] externals/auctex c531148 04/80: ; Improve previous change in auctex.el.in, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 3543e45 06/80: New styles for beamerarticle & beamerswitch triggering beamer, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 78c0f09 07/80: Fix fontification of simple macros, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 083964b 02/80: Delete auctex-pkg.el which is not needed for ELPA releases, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex b82ab0c 08/80: Support up to 12 command arguments., Tassilo Horn, 2019/10/16
- [elpa] externals/auctex cd39966 14/80: ; Fix typos, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 686a8ed 13/80: Elaborate LaTeX math insertion command, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 8a36595 12/80: Fix handling of function entries in `TeX-complete-list',
Tassilo Horn <=
- [elpa] externals/auctex fcaef6b 11/80: Improve fontification of \href macro, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 23b3405 23/80: ; Fix typos, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 3b3c224 26/80: Remove compatibility code for xemacs, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 2a642a4 19/80: Add support for ChangeLog entries for LaTeX files, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex a8bbd1f 31/80: ; Fix document, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex ab57cb0 21/80: Add new function `LaTeX-extract-key-value-label', Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 4776fd0 25/80: ; Remove compatibility code for older emacsen, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 92c090d 30/80: Fix treatment of class and package options, Tassilo Horn, 2019/10/16
- [elpa] externals/auctex a30db7c 24/80: Allow the user to customize which TeX commands are available in each mode., Tassilo Horn, 2019/10/16
- [elpa] externals/auctex 4d0cf0f 10/80: ; Silence the compiler, Tassilo Horn, 2019/10/16