]> git.eshelyaron.com Git - emacs.git/commitdiff
Add a "Redo" entry to the menu
authorCaio Henrique <caiohcs0@gmail.com>
Thu, 10 Sep 2020 20:57:48 +0000 (22:57 +0200)
committerLars Ingebrigtsen <larsi@gnus.org>
Thu, 10 Sep 2020 20:57:48 +0000 (22:57 +0200)
* lisp/menu-bar.el (menu-bar-edit-menu): Add "Redo" under "Undo"
in the Edit menu (bug#43315).

Copyright-paperwork-exempt: yes

lisp/menu-bar.el

index bc094c9050da870faa72d412d84f9095dc369d46..30d86c7f17a03dbc79ffecbd20b03ce02f2526c5 100644 (file)
     (if (featurep 'ns)
         (bindings--define-key menu [separator-undo] menu-bar-separator))
 
+    (bindings--define-key menu [undo-redo]
+      '(menu-item "Redo" undo-redo
+                  :enable (and (not buffer-read-only)
+                           (undo--last-change-was-undo-p buffer-undo-list))
+                  :help "Undo last undo"))
+
     (bindings--define-key menu [undo]
       '(menu-item "Undo" undo
                   :enable (and (not buffer-read-only)