]> git.eshelyaron.com Git - emacs.git/commitdiff
(calc-other-window): Use an extra argument instead of `interactive-p'.
authorJay Belanger <jay.p.belanger@gmail.com>
Tue, 26 Oct 2004 19:06:24 +0000 (19:06 +0000)
committerJay Belanger <jay.p.belanger@gmail.com>
Tue, 26 Oct 2004 19:06:24 +0000 (19:06 +0000)
lisp/calc/calc-misc.el

index c01d37e6848474e22869f9430b66c1790f5c574d..159b1ee3178e6a0a06305947baab821697aff92c 100644 (file)
@@ -130,9 +130,9 @@ Calc user interface as before (either M-# C or M-# K; initially M-# C)."
                 "Now using full screen for Calc"
               "Now using partial screen for Calc"))))
 
-(defun calc-other-window ()
+(defun calc-other-window (&optional interactive)
   "Invoke the Calculator in another window."
-  (interactive)
+  (interactive "p")
   (if (memq major-mode '(calc-mode calc-trail-mode))
       (progn
        (other-window 1)
@@ -141,7 +141,7 @@ Calc user interface as before (either M-# C or M-# K; initially M-# C)."
     (if (get-buffer-window "*Calculator*")
        (calc-quit)
       (let ((win (selected-window)))
-       (calc nil win (interactive-p))))))
+       (calc nil win interactive)))))
 
 (defun another-calc ()
   "Create another, independent Calculator buffer."