mirror of
git://git.sv.gnu.org/emacs.git
synced 2026-06-14 12:31:25 +00:00
Update to Transient v0.13.1-10-gc168d396
This commit is contained in:
parent
d80c9e534d
commit
6583cc4fdf
2 changed files with 8 additions and 8 deletions
|
|
@ -31,7 +31,7 @@ General Public License for more details.
|
|||
@finalout
|
||||
@titlepage
|
||||
@title Transient User and Developer Manual
|
||||
@subtitle for version 0.13.0
|
||||
@subtitle for version 0.13.1
|
||||
@author Jonas Bernoulli
|
||||
@page
|
||||
@vskip 0pt plus 1filll
|
||||
|
|
@ -53,7 +53,7 @@ resource to get over that hurdle is Psionic K's interactive tutorial,
|
|||
available at @uref{https://github.com/positron-solutions/transient-showcase}.
|
||||
|
||||
@noindent
|
||||
This manual is for Transient version 0.13.0.
|
||||
This manual is for Transient version 0.13.1.
|
||||
|
||||
@insertcopying
|
||||
@end ifnottex
|
||||
|
|
|
|||
|
|
@ -5,7 +5,7 @@
|
|||
;; Author: Jonas Bernoulli <jonas@bernoul.li>
|
||||
;; URL: https://github.com/magit/transient
|
||||
;; Keywords: extensions
|
||||
;; Version: 0.13.0
|
||||
;; Version: 0.13.1
|
||||
|
||||
;; SPDX-License-Identifier: GPL-3.0-or-later
|
||||
|
||||
|
|
@ -39,7 +39,7 @@
|
|||
;;; Code:
|
||||
;;;; Frontmatter
|
||||
|
||||
(defconst transient-version "v0.13.0-10-g5b2ff26f-builtin")
|
||||
(defconst transient-version "v0.13.1-10-gc168d396-builtin")
|
||||
|
||||
(require 'cl-lib)
|
||||
(require 'eieio)
|
||||
|
|
@ -5523,11 +5523,11 @@ search instead."
|
|||
2)
|
||||
lisp-imenu-generic-expression :test #'equal)
|
||||
|
||||
(defvar overriding-text-conversion-style)
|
||||
|
||||
(defun transient--suspend-text-conversion-style ()
|
||||
(when (and text-conversion-style
|
||||
(bound-and-true-p overriding-text-conversion-style))
|
||||
(when (and (bound-and-true-p text-conversion-style)
|
||||
(bound-and-true-p overriding-text-conversion-style)
|
||||
;; Somehow the above does not silence the compiler.
|
||||
(boundp 'overriding-text-conversion-style))
|
||||
(letrec ((suspended overriding-text-conversion-style)
|
||||
(fn (lambda ()
|
||||
(setq overriding-text-conversion-style nil)
|
||||
|
|
|
|||
Loading…
Reference in a new issue