]> git.eshelyaron.com Git - emacs.git/commitdiff
Don't clobber match data in 'y-or-n-p'
authorEli Zaretskii <eliz@gnu.org>
Sat, 4 Feb 2023 08:15:18 +0000 (10:15 +0200)
committerEli Zaretskii <eliz@gnu.org>
Sat, 4 Feb 2023 08:15:18 +0000 (10:15 +0200)
* lisp/subr.el (y-or-n-p): Avoid clobbering caller's match data.
(Bug#61091)

lisp/subr.el

index 0f754fcd31ffd0c183932a444e1ef0d7df9836c0..32c997425cff8a8b8c23eb109e23b5c20a9ad143 100644 (file)
@@ -3573,12 +3573,14 @@ like) while `y-or-n-p' is running)."
                            (if (or (zerop l) (eq ?\s (aref prompt (1- l))))
                                "" " ")
                            (if dialog ""
-                              (substitute-command-keys
-                               (if help-form
-                                   (format "(\\`y', \\`n' or \\`%s') "
-                                           (key-description
-                                            (vector help-char)))
-                                 "(\\`y' or \\`n') ")))))))
+                              ;; Don't clobber caller's match data.
+                              (save-match-data
+                                (substitute-command-keys
+                                 (if help-form
+                                     (format "(\\`y', \\`n' or \\`%s') "
+                                             (key-description
+                                              (vector help-char)))
+                                   "(\\`y' or \\`n') "))))))))
         ;; Preserve the actual command that eventually called
         ;; `y-or-n-p' (otherwise `repeat' will be repeating
         ;; `exit-minibuffer').