[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. f127145cca3659063acad
From: |
Arash Esbati |
Subject: |
[AUCTeX-diffs] GNU AUCTeX branch, master, updated. f127145cca3659063acad102431cff7ec0999f1b |
Date: |
Wed, 21 Aug 2019 17:40:04 -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 f127145cca3659063acad102431cff7ec0999f1b (commit)
via 7cb6c194778f5f0f00000d21fc4ede2113852265 (commit)
from d56a596f415e3469a2a2a62cb1c46614cf041a27 (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 f127145cca3659063acad102431cff7ec0999f1b
Author: Arash Esbati <address@hidden>
Date: Wed Aug 21 22:55:10 2019 +0200
* context.el (ConTeXt-environment): Fix docstring.
diff --git a/context.el b/context.el
index db2f86f..87bcd38 100644
--- a/context.el
+++ b/context.el
@@ -619,7 +619,7 @@ inserted after the sectioning command."
;;; Environments
(defgroup ConTeXt-environment nil
- "Environments in AUCTeX."
+ "Environments in ConTeXt."
:group 'ConTeXt-macro)
;; TODO: interface awareness
commit 7cb6c194778f5f0f00000d21fc4ede2113852265
Author: Arash Esbati <address@hidden>
Date: Wed Aug 21 22:47:23 2019 +0200
Fix lisp example for `TeX-electric-math'
* doc/auctex.texi (Quotes): Use `make-local-variable' instead of
`make-variable-buffer-local' in lisp example for init file. (bug#37124)
diff --git a/doc/auctex.texi b/doc/auctex.texi
index 693fdf6..cb25757 100644
--- a/doc/auctex.texi
+++ b/doc/auctex.texi
@@ -459,10 +459,10 @@ and @samp{\(...\)} in @LaTeX{} files by pressing @kbd{$},
add the
following to your init file
@lisp
(add-hook 'plain-TeX-mode-hook
- (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
+ (lambda () (set (make-local-variable 'TeX-electric-math)
(cons "$" "$"))))
(add-hook 'LaTeX-mode-hook
- (lambda () (set (make-variable-buffer-local 'TeX-electric-math)
+ (lambda () (set (make-local-variable 'TeX-electric-math)
(cons "\\(" "\\)"))))
@end lisp
-----------------------------------------------------------------------
Summary of changes:
context.el | 2 +-
doc/auctex.texi | 4 ++--
2 files changed, 3 insertions(+), 3 deletions(-)
hooks/post-receive
--
GNU AUCTeX
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] GNU AUCTeX branch, master, updated. f127145cca3659063acad102431cff7ec0999f1b,
Arash Esbati <=