1
Fork 0
mirror of git://git.sv.gnu.org/emacs.git synced 2025-12-29 08:31:35 -08:00

(calc-mode): Replace copy-list' with copy-sequence'.

This commit is contained in:
Jay Belanger 2009-04-27 23:12:20 +00:00
parent 2c55aacfb6
commit 7048562d01
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2009-04-27 Jay Belanger <jay.p.belanger@gmail.com>
* calc/calc.el (calc-mode): Replace `copy-list' with `copy-sequence'.
2009-04-26 Jay Belanger <jay.p.belanger@gmail.com> 2009-04-26 Jay Belanger <jay.p.belanger@gmail.com>
* calc/calc.el (calc-set-mode-line): Check to make sure that the * calc/calc.el (calc-set-mode-line): Check to make sure that the

View file

@ -1335,7 +1335,7 @@ Notations: 3.14e6 3.14 * 10^6
(calc-refresh t) (calc-refresh t)
(calc-set-mode-line) (calc-set-mode-line)
(calc-check-defines) (calc-check-defines)
(if calc-buffer-list (setq calc-stack (copy-list calc-stack))) (if calc-buffer-list (setq calc-stack (copy-sequence calc-stack)))
(add-to-list 'calc-buffer-list (current-buffer) t)) (add-to-list 'calc-buffer-list (current-buffer) t))
(defvar calc-check-defines 'calc-check-defines) ; suitable for run-hooks (defvar calc-check-defines 'calc-check-defines) ; suitable for run-hooks