]> git.eshelyaron.com Git - emacs.git/commitdiff
; Revert parts of "Use string-search instead of string-match[-p]"
authorJonas Bernoulli <jonas@bernoul.li>
Mon, 25 Oct 2021 18:15:28 +0000 (20:15 +0200)
committerJonas Bernoulli <jonas@bernoul.li>
Mon, 25 Oct 2021 18:17:39 +0000 (20:17 +0200)
"transient.el" is also distributed as a separate package, which
supports Emacs versions as old as 25.1 (see "Package-Requires").

lisp/transient.el

index 77bf41deba834d184d89296a47243ab86f19d811..2adb4c573ee1a10b4add4b26a5645af50432c0ff 100644 (file)
@@ -3073,7 +3073,7 @@ Optional support for popup buttons is also implemented here."
               ;; the definition, then we want to drop the space that
               ;; is reinserted above.  False-positives are possible
               ;; for silly bindings like "-C-c C-c".
-              (unless (string-search " " key)
+              (unless (string-match-p " " key)
                 (setq pre (string-replace " " "" pre))
                 (setq suf (string-replace " " "" suf)))
               (concat (propertize pre 'face 'default)