Changeset 4131 for trunk/lisp/calc/calc-sel.el
- Timestamp:
- 2006年07月29日 07時48分34秒 (2 years ago)
- Files:
-
- trunk/lisp/calc/calc-sel.el (modified) (4 diffs)
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
trunk/lisp/calc/calc-sel.el
r4037 r4131 634 634 (calc-delete-selection num)))) 635 635 636 (defvar calc-selection-history nil 637 "History for calc selections.") 638 636 639 (defun calc-enter-selection () 637 640 (interactive) … … 646 649 (let ((calc-dollar-values (list sel)) 647 650 (calc-dollar-used 0)) 648 (setq alg (calc-do-alg-entry "" "Replace selection with: ")) 651 (setq alg (calc-do-alg-entry "" "Replace selection with: " nil 652 'calc-selection-history)) 649 653 (and alg 650 654 (progn … … 766 770 (if divide 767 771 "Divide both sides by: " 768 "Multiply both sides by: "))))) 772 "Multiply both sides by: ") 773 nil 'calc-selection-history)))) 769 774 (and alg 770 775 (progn … … 831 836 (if subtract 832 837 "Subtract from both sides: " 833 "Add to both sides: "))))) 838 "Add to both sides: ") 839 nil 'calc-selection-history)))) 834 840 (and alg 835 841 (progn
