]> git.eshelyaron.com Git - emacs.git/commitdiff
(idlwave-shell-send-char): Don't use interactive-p.
authorRichard M. Stallman <rms@gnu.org>
Mon, 1 Nov 2004 07:41:08 +0000 (07:41 +0000)
committerRichard M. Stallman <rms@gnu.org>
Mon, 1 Nov 2004 07:41:08 +0000 (07:41 +0000)
lisp/progmodes/idlw-shell.el

index ae0c43c27304921180776d4cdaf2998c0ce551f4..692fce0234e9949d363cd52557b2489be31b612f 100644 (file)
@@ -1137,10 +1137,10 @@ prompt is present and if `idlwave-shell-ready' is non-nil."
        (goto-char save-point))
       (set-buffer save-buffer))))
 
-(defun idlwave-shell-send-char (c &optional no-error)
+(defun idlwave-shell-send-char (c &optional error)
   "Send one character to the shell, without a newline."
-  (interactive "cChar to send to IDL: ")
-  (let ((errf (if (interactive-p) 'error 'message))
+  (interactive "cChar to send to IDL: \np")
+  (let ((errf (if error 'error 'message))
        buf proc)
     (if (or (not (setq buf (get-buffer (idlwave-shell-buffer))))
            (not (setq proc (get-buffer-process buf))))