From: Jay Belanger Date: Tue, 26 Oct 2004 19:06:24 +0000 (+0000) Subject: (calc-other-window): Use an extra argument instead of `interactive-p'. X-Git-Tag: ttn-vms-21-2-B4~4390 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=1f5a0f5d5d3e2513ece677c07257dc24d6c54bb1;p=emacs.git (calc-other-window): Use an extra argument instead of `interactive-p'. --- diff --git a/lisp/calc/calc-misc.el b/lisp/calc/calc-misc.el index c01d37e6848..159b1ee3178 100644 --- a/lisp/calc/calc-misc.el +++ b/lisp/calc/calc-misc.el @@ -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."