From 6583cc4fdfc43a59059ace281dcb24b70280c4f2 Mon Sep 17 00:00:00 2001 From: Jonas Bernoulli Date: Fri, 1 May 2026 16:00:26 +0200 Subject: [PATCH] Update to Transient v0.13.1-10-gc168d396 --- doc/misc/transient.texi | 4 ++-- lisp/transient.el | 12 ++++++------ 2 files changed, 8 insertions(+), 8 deletions(-) diff --git a/doc/misc/transient.texi b/doc/misc/transient.texi index b0eebec3071..35544b2917c 100644 --- a/doc/misc/transient.texi +++ b/doc/misc/transient.texi @@ -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 diff --git a/lisp/transient.el b/lisp/transient.el index e04437dd914..ae49a38579d 100644 --- a/lisp/transient.el +++ b/lisp/transient.el @@ -5,7 +5,7 @@ ;; Author: Jonas Bernoulli ;; 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)