[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 237f4099512549694bd5e
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. 237f4099512549694bd5efd87158bc29c6b5f6d0 |
Date: |
Sat, 24 Oct 2020 16:39:52 -0400 (EDT) |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "GNU AUCTeX".
The branch, master has been updated
via 237f4099512549694bd5efd87158bc29c6b5f6d0 (commit)
from feaddc3e0d653c0882bb4a45ccc60bbfd010ed18 (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
commit 237f4099512549694bd5efd87158bc29c6b5f6d0
Author: Tassilo Horn <tsdh@gnu.org>
Date: Sat Oct 24 22:39:33 2020 +0200
; Suppress warning about obsolete inactivate-input-method
diff --git a/tex.el b/tex.el
index 681a8a3..43cc8d1 100644
--- a/tex.el
+++ b/tex.el
@@ -5992,7 +5992,8 @@ sign. With optional ARG, insert that many dollar signs."
;; inactivate-input-method is obsolete since emacs 24.3.
(if (fboundp 'deactivate-input-method)
(deactivate-input-method)
- (inactivate-input-method))))
+ (with-suppressed-warnings ((obsolete inactivate-input-method))
+ (inactivate-input-method)))))
;;; Simple Commands
-----------------------------------------------------------------------
Summary of changes:
tex.el | 3 ++-
1 file changed, 2 insertions(+), 1 deletion(-)
hooks/post-receive
--
GNU AUCTeX
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] GNU AUCTeX branch, master, updated. 237f4099512549694bd5efd87158bc29c6b5f6d0,
Tassilo Horn <=