aboutsummaryrefslogtreecommitdiffstats
path: root/lisp/calc/calc-map.el
diff options
context:
space:
mode:
authorJay Belanger <[email protected]>2006-07-20 20:23:58 +0000
committerJay Belanger <[email protected]>2006-07-20 20:23:58 +0000
commita5ff30757f1d5a8225ad3b3eae3cfda547415518 (patch)
tree949724732a78c44b3c9d6c003d585aa7a1ead331 /lisp/calc/calc-map.el
parent56e8410bf772770a073cae976903d3440bf54bc1 (diff)
(calc-get-operator-history): New variable.
(calc-get-operator): Use calc-get-operator-history.
Diffstat (limited to 'lisp/calc/calc-map.el')
-rw-r--r--lisp/calc/calc-map.el6
1 files changed, 5 insertions, 1 deletions
diff --git a/lisp/calc/calc-map.el b/lisp/calc/calc-map.el
index 63e45538c3..c9c71b3ebf 100644
--- a/lisp/calc/calc-map.el
+++ b/lisp/calc/calc-map.el
@@ -498,6 +498,9 @@
;;; Return a list of the form (nargs func name)
+(defvar calc-get-operator-history nil
+ "History for calc-get-operator.")
+
(defun calc-get-operator (msg &optional nargs)
(setq calc-aborted-prefix nil)
(let ((inv nil) (hyp nil) (prefix nil) (forcenargs nil)
@@ -583,7 +586,8 @@
(let* ((calc-dollar-values calc-arg-values)
(calc-dollar-used 0)
(calc-hashes-used 0)
- (func (calc-do-alg-entry "" "Function: ")))
+ (func (calc-do-alg-entry "" "Function: " nil
+ 'calc-get-operator-history)))
(setq record-entry t)
(or (= (length func) 1)
(error "Bad format"))