bug-gnu-emacs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

bug#12283: 24.1; M-x undo-only says "Redo!" instead of "Undo!"


From: Glenn Morris
Subject: bug#12283: 24.1; M-x undo-only says "Redo!" instead of "Undo!"
Date: Tue, 28 Aug 2012 03:32:12 -0400
User-agent: Gnus (www.gnus.org), GNU Emacs (www.gnu.org/software/emacs/)

If you just want it so say "Undo" instead, that seems easily fixed.
Or was there something else?


*** lisp/simple.el      2012-08-18 05:11:38 +0000
--- lisp/simple.el      2012-08-28 07:28:40 +0000
***************
*** 1887,1895 ****
      ;; so, ask the user whether she wants to skip the redo/undo pair.
      (let ((equiv (gethash pending-undo-list undo-equiv-table)))
        (or (eq (selected-window) (minibuffer-window))
!         (setq message (if undo-in-region
!                           (if equiv "Redo in region!" "Undo in region!")
!                         (if equiv "Redo!" "Undo!"))))
        (when (and (consp equiv) undo-no-redo)
        ;; The equiv entry might point to another redo record if we have done
        ;; undo-redo-undo-redo-... so skip to the very last equiv.
--- 1887,1896 ----
      ;; so, ask the user whether she wants to skip the redo/undo pair.
      (let ((equiv (gethash pending-undo-list undo-equiv-table)))
        (or (eq (selected-window) (minibuffer-window))
!         (setq message (format "%s%s!"
!                                 (if (or undo-no-redo (not equiv))
!                                     "Undo" "Redo")
!                                 (if undo-in-region " in region" ""))))
        (when (and (consp equiv) undo-no-redo)
        ;; The equiv entry might point to another redo record if we have done
        ;; undo-redo-undo-redo-... so skip to the very last equiv.






reply via email to

[Prev in Thread] Current Thread [Next in Thread]