update packages
This commit is contained in:
@@ -1,13 +1,13 @@
|
||||
;; -*- no-byte-compile: t; lexical-binding: nil -*-
|
||||
(define-package "magit-section" "20250610.1522"
|
||||
(define-package "magit-section" "20250704.2300"
|
||||
"Sections for read-only buffers."
|
||||
'((emacs "27.1")
|
||||
(compat "30.1")
|
||||
(llama "0.6.3")
|
||||
(llama "1.0.0")
|
||||
(seq "2.24"))
|
||||
:url "https://github.com/magit/magit"
|
||||
:commit "0daafe08149b406ca0bf200a1ed0a8e4b1c1054a"
|
||||
:revdesc "0daafe08149b"
|
||||
:commit "5b820a1d1e94649e0f218362286d520d9f29ac2c"
|
||||
:revdesc "5b820a1d1e94"
|
||||
:keywords '("tools")
|
||||
:authors '(("Jonas Bernoulli" . "emacs.magit@jonas.bernoulli.dev"))
|
||||
:maintainers '(("Jonas Bernoulli" . "emacs.magit@jonas.bernoulli.dev")))
|
||||
|
||||
@@ -8,12 +8,12 @@
|
||||
;; Homepage: https://github.com/magit/magit
|
||||
;; Keywords: tools
|
||||
|
||||
;; Package-Version: 20250610.1522
|
||||
;; Package-Revision: 0daafe08149b
|
||||
;; Package-Version: 20250704.2300
|
||||
;; Package-Revision: 5b820a1d1e94
|
||||
;; Package-Requires: (
|
||||
;; (emacs "27.1")
|
||||
;; (compat "30.1")
|
||||
;; (llama "0.6.3")
|
||||
;; (llama "1.0.0")
|
||||
;; (seq "2.24"))
|
||||
|
||||
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||
@@ -307,6 +307,7 @@ no effect. This also has no effect for Emacs >= 28, where
|
||||
|
||||
(defvar-local magit-section-pre-command-region-p nil)
|
||||
(defvar-local magit-section-pre-command-section nil)
|
||||
|
||||
(defvar-local magit-section-highlight-force-update nil)
|
||||
(defvar-local magit-section-highlight-overlays nil)
|
||||
(defvar-local magit-section-selection-overlays nil)
|
||||
@@ -547,6 +548,11 @@ The return value has the form ((TYPE . VALUE)...)."
|
||||
(and-let* ((parent (oref section parent)))
|
||||
(magit-section-ident parent))))
|
||||
|
||||
(defun magit-section-equal (a b)
|
||||
"Return t if A an B are the same section."
|
||||
(and a b (equal (magit-section-ident a)
|
||||
(magit-section-ident b))))
|
||||
|
||||
(cl-defgeneric magit-section-ident-value (object)
|
||||
"Return OBJECT's value, making it constant and unique if necessary.
|
||||
|
||||
|
||||
@@ -34,7 +34,7 @@ packages that have nothing to do with Magit or Git.
|
||||
and user options see *note (magit)Sections::. This manual documents how
|
||||
you can use sections in your own packages.
|
||||
|
||||
This manual is for Magit-Section version 4.3.6.
|
||||
This manual is for Magit-Section version 4.3.8.
|
||||
|
||||
Copyright (C) 2015-2025 Jonas Bernoulli
|
||||
<emacs.magit@jonas.bernoulli.dev>
|
||||
|
||||
Reference in New Issue
Block a user