* lisp/simple.el (undo-make-selective-list): Obey undo-no-redo.

This commit is contained in:
Stefan Monnier 2014-05-13 16:34:12 -04:00
parent d3e5c0ea8f
commit 27a69ff0e8
2 changed files with 7 additions and 0 deletions

View file

@ -1,3 +1,7 @@
2014-05-13 Stefan Monnier <monnier@iro.umontreal.ca>
* simple.el (undo-make-selective-list): Obey undo-no-redo.
2014-05-12 Sam Steingold <sds@gnu.org>
* calendar/time-date.el (seconds-to-string): New function to

View file

@ -2437,6 +2437,9 @@ list can be applied to the current buffer."
undo-deltas
undo-elt)
(while ulist
(when undo-no-redo
(while (gethash ulist undo-equiv-table)
(setq ulist (gethash ulist undo-equiv-table))))
(setq undo-elt (car ulist))
(cond
((null undo-elt)