# HG changeset patch # User Richard M. Stallman # Date 1023699002 0 # Node ID 12bd288850ef0f8e0444dd3c8335787503c89db8 # Parent ba93f9711e847afd1e3f7a428ae16526338105fc Undo previous change. diff -r ba93f9711e84 -r 12bd288850ef lisp/emulation/viper-cmd.el --- a/lisp/emulation/viper-cmd.el Mon Jun 10 08:33:32 2002 +0000 +++ b/lisp/emulation/viper-cmd.el Mon Jun 10 08:50:02 2002 +0000 @@ -1814,7 +1814,7 @@ (setq viper-intermediate-command 'repeating-display-destructive-command) ;; first search through command history--set temp ring - (setq viper-temp-command-ring (copy-sequence viper-command-ring))) + (setq viper-temp-command-ring (copy-list viper-command-ring))) (setq cmd (if next (viper-special-ring-rotate1 viper-temp-command-ring 1) (viper-special-ring-rotate1 viper-temp-command-ring -1))) @@ -1848,7 +1848,7 @@ (length viper-last-inserted-string-from-insertion-ring)))) ) ;;first search through insertion history - (setq viper-temp-insertion-ring (copy-sequence viper-insertion-ring))) + (setq viper-temp-insertion-ring (copy-list viper-insertion-ring))) (setq this-command 'viper-insert-from-insertion-ring) ;; so that things will be undone properly (setq buffer-undo-list (cons nil buffer-undo-list))