From: Jay Belanger Date: Thu, 20 Jul 2006 20:23:58 +0000 (+0000) Subject: (calc-get-operator-history): New variable. X-Git-Tag: emacs-pretest-22.0.90~1315 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=a5ff30757f1d5a8225ad3b3eae3cfda547415518;p=emacs.git (calc-get-operator-history): New variable. (calc-get-operator): Use calc-get-operator-history. --- diff --git a/lisp/calc/calc-map.el b/lisp/calc/calc-map.el index 63e45538c32..c9c71b3ebf1 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"))