aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calc/calc.el
diff options
context:
space:
mode:
authorJay Belanger <[email protected]>2009-04-27 23:12:20 +0000
committerJay Belanger <[email protected]>2009-04-27 23:12:20 +0000
commit7048562d01cc38bed3e2bcae52eeb0afe749ab0e (patch)
treed22d2d5c98024f53aedda8b875b065ccfac19a73 /lisp/calc/calc.el
parent2c55aacfb632acd9f0c34b18f818ef5af44aa6d3 (diff)
(calc-mode): Replace `copy-list' with `copy-sequence'.
Diffstat (limited to 'lisp/calc/calc.el')
-rw-r--r--lisp/calc/calc.el2
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 00a33f5937..78513c891f 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -1335,7 +1335,7 @@ Notations: 3.14e6 3.14 * 10^6
(calc-refresh t)
(calc-set-mode-line)
(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))
(defvar calc-check-defines 'calc-check-defines) ; suitable for run-hooks