aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorJay Belanger2004-11-24 21:43:36 +0000
committerJay Belanger2004-11-24 21:43:36 +0000
commit7893af2d79aabda34ca36427a9751bac6bc552a5 (patch)
treef55469de69da3bc331c026b5b2a71e46f98529f5
parent25cad79bf5a1a731f5349a99e2ef74752173afb3 (diff)
downloademacs-7893af2d79aabda34ca36427a9751bac6bc552a5.tar.gz
emacs-7893af2d79aabda34ca36427a9751bac6bc552a5.zip
(calc-embedded-active): Removed unnecessary declaration.
(calc-show-banner): Removed redundant declaration.
-rw-r--r--lisp/calc/calc.el6
1 files changed, 2 insertions, 4 deletions
diff --git a/lisp/calc/calc.el b/lisp/calc/calc.el
index 89329e89f5c..d2b75a2a24a 100644
--- a/lisp/calc/calc.el
+++ b/lisp/calc/calc.el
@@ -249,9 +249,6 @@ if nil, only DEL itself is mapped to calc-pop.")
249 "Calculator stack. 249 "Calculator stack.
250Entries are 3-lists: Formula, Height (in lines), Selection (or nil).") 250Entries are 3-lists: Formula, Height (in lines), Selection (or nil).")
251 251
252(defvar calc-show-banner t
253 "*If non-nil, show a friendly greeting above the stack.")
254
255(defvar calc-stack-top 1 252(defvar calc-stack-top 1
256 "Index into `calc-stack' of \"top\" of stack. 253 "Index into `calc-stack' of \"top\" of stack.
257This is 1 unless `calc-truncate-stack' has been used.") 254This is 1 unless `calc-truncate-stack' has been used.")
@@ -589,7 +586,8 @@ If nil, selections displayed but ignored.")
589 586
590 (calc-invocation-macro nil) 587 (calc-invocation-macro nil)
591 588
592 (calc-show-banner t)) 589 (calc-show-banner t
590 "*If non-nil, show a friendly greeting above the stack."))
593 "List of variables (and default values) used in customizing GNU Calc.") 591 "List of variables (and default values) used in customizing GNU Calc.")
594 592
595(mapcar (function (lambda (v) 593(mapcar (function (lambda (v)