[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[elpa] externals/auctex f107ca1 02/48: Make compatible with emacs 24
From: |
Tassilo Horn |
Subject: |
[elpa] externals/auctex f107ca1 02/48: Make compatible with emacs 24 |
Date: |
Sun, 16 Sep 2018 01:47:19 -0400 (EDT) |
branch: externals/auctex
commit f107ca1d55ff6d5058274c3a31bd83ea55d6d3fc
Author: Ikumi Keita <address@hidden>
Commit: Ikumi Keita <address@hidden>
Make compatible with emacs 24
* latex.el (TeX-read-label): Use `format' instead of `format-message'
if the latter is not available.
---
latex.el | 5 ++++-
1 file changed, 4 insertions(+), 1 deletion(-)
diff --git a/latex.el b/latex.el
index 9df3d52..bf96729 100644
--- a/latex.el
+++ b/latex.el
@@ -1932,7 +1932,10 @@ defined and ask user for confirmation before proceeding."
(assoc label (LaTeX-label-list)))
(ding)
(when (y-or-n-p
- (format-message "Label `%s' exists. Use anyway? " label))
+ ;; Emacs 24 compatibility
+ (if (fboundp 'format-message)
+ (format-message "Label `%s' exists. Use anyway? " label)
+ (format "Label `%s' exists. Use anyway? " label)))
(setq valid t)))
(t
(setq valid t))))
- [elpa] externals/auctex updated (0e878e9 -> f761ab4), Tassilo Horn, 2018/09/16
- [elpa] externals/auctex f107ca1 02/48: Make compatible with emacs 24,
Tassilo Horn <=
- [elpa] externals/auctex cff0781 01/48: Fix incorrect FSF address, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex e783b97 04/48: Fix TeX-dwim-master, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 6112351 12/48: ; * style/geometry.el (LaTeX-geometry-preamble-key-val-options): Add luatex key., Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 3b758bf 06/48: Use `TeX-search-files-by-type' to assist input \includegraphics, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex a16a510 22/48: Replace another cl function with cl-lib, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 1a7b2bf 18/48: Adjust coding system for Japanese pTeX engine on w32, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 52d6a54 03/48: Make `TeX-clean' to work in ams-tex-mode, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 15d3d97 08/48: Quote %b expansion string for SumatraPDF, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 68095a3 15/48: Fix previous removal of xemacs compatibility code, Tassilo Horn, 2018/09/16
- [elpa] externals/auctex 59fa964 05/48: Resolve conflict of argument spec between regexp and literal, Tassilo Horn, 2018/09/16