[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[AUCTeX-diffs] GNU AUCTeX branch, lexical-binding-attempt-1, updated. 13
From: |
Tassilo Horn |
Subject: |
[AUCTeX-diffs] GNU AUCTeX branch, lexical-binding-attempt-1, updated. 13207c40dd16eb8628c91cad6db106c1469653e1 |
Date: |
Fri, 4 Sep 2020 12:43:14 -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, lexical-binding-attempt-1 has been updated
via 13207c40dd16eb8628c91cad6db106c1469653e1 (commit)
from 491be534a227128fff9fb4f9bf7f4f7c9e654cce (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 13207c40dd16eb8628c91cad6db106c1469653e1
Author: Tassilo Horn <tsdh@gnu.org>
Date: Fri Sep 4 18:43:01 2020 +0200
Enable lexical-binding for context.el and squash a warning
diff --git a/context.el b/context.el
index caea30b..a2e9314 100644
--- a/context.el
+++ b/context.el
@@ -1,4 +1,4 @@
-;;; context.el --- Support for ConTeXt documents.
+;;; context.el --- Support for ConTeXt documents. -*- lexical-binding: t; -*-
;; Copyright (C) 2003-2006, 2008, 2010, 2012, 2014-2020
;; Free Software Foundation, Inc.
@@ -1142,7 +1142,8 @@ An optional fourth (or sixth) element means always
replace if t."
(defun ConTeXt-imenu-create-index-function ()
"Imenu support function for ConTeXt."
(TeX-update-style)
- (let (entries level (regexp (ConTeXt-outline-regexp)))
+ (let (entries
+ (regexp (ConTeXt-outline-regexp)))
(goto-char (point-max))
(while (re-search-backward regexp nil t)
(let* ((name (ConTeXt-outline-name))
-----------------------------------------------------------------------
Summary of changes:
context.el | 5 +++--
1 file changed, 3 insertions(+), 2 deletions(-)
hooks/post-receive
--
GNU AUCTeX
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [AUCTeX-diffs] GNU AUCTeX branch, lexical-binding-attempt-1, updated. 13207c40dd16eb8628c91cad6db106c1469653e1,
Tassilo Horn <=