auctex-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[AUCTeX-diffs] GNU AUCTeX branch, master, updated. c43d21326dadb00cc3343


From: Ikumi Keita
Subject: [AUCTeX-diffs] GNU AUCTeX branch, master, updated. c43d21326dadb00cc3343cf8436af8dd9593f706
Date: Sun, 27 Mar 2022 06:56:21 -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  c43d21326dadb00cc3343cf8436af8dd9593f706 (commit)
      from  fce8b94ca82332073f0236945fd57e9e3e414523 (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 c43d21326dadb00cc3343cf8436af8dd9593f706
Author: Ikumi Keita <ikumi@ikumi.que.jp>
Date:   Sat Mar 26 19:49:04 2022 +0900

    Follow similar update of latex.el in context.el
    
    * context.el (ConTeXt-mode-common-initialization): Set
    `beginning-of-defun-function' and `end-of-defun-function'.
    (ConTeXt-mode-map): Don't bind C-M-a and C-M-e explicitly.
    (): Update copyright year.

diff --git a/context.el b/context.el
index dfcb6649..19217ec6 100644
--- a/context.el
+++ b/context.el
@@ -1,6 +1,6 @@
 ;;; context.el --- Support for ConTeXt documents.  -*- lexical-binding: t; -*-
 
-;; Copyright (C) 2003-2021  Free Software Foundation, Inc.
+;; Copyright (C) 2003-2022  Free Software Foundation, Inc.
 
 ;; Maintainer: Berend de Boer <berend@pobox.com>
 ;; Keywords: tex
@@ -1318,8 +1318,10 @@ else.  There might be text before point."
   (let ((map (make-sparse-keymap)))
     (set-keymap-parent map TeX-mode-map)
 
-    (define-key map "\e\C-a"  #'ConTeXt-find-matching-start)
-    (define-key map "\e\C-e"  #'ConTeXt-find-matching-stop)
+    ;; We now set `beginning-of-defun-function' and
+    ;; `end-of-defun-function' instead.
+    ;; (define-key map "\e\C-a"  #'ConTeXt-find-matching-start)
+    ;; (define-key map "\e\C-e"  #'ConTeXt-find-matching-stop)
     ;; likely to change in the future
     (define-key map "\C-c!"    #'ConTeXt-work-on-environment)
     (define-key map "\C-c\C-e" #'ConTeXt-environment)
@@ -1776,6 +1778,9 @@ that is, you do _not_ have to cater for this yourself by 
adding \\\\' or $."
 
   (add-hook 'activate-menubar-hook #'ConTeXt-menu-update nil t)
 
+  (setq-local beginning-of-defun-function #'ConTeXt-find-matching-start
+              end-of-defun-function       #'ConTeXt-find-matching-stop)
+
   ;; Outline support
   (require 'outline)
   (set (make-local-variable 'outline-level) 'ConTeXt-outline-level)

-----------------------------------------------------------------------

Summary of changes:
 context.el | 11 ++++++++---
 1 file changed, 8 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
GNU AUCTeX



reply via email to

[Prev in Thread] Current Thread [Next in Thread]