Function: idlwave-shell-window

idlwave-shell-window is an interactive and byte-compiled function defined in idlw-shell.el.gz.

Signature

(idlwave-shell-window N)

Documentation

Issue a window,N command to IDL, with special window size.

The size is given by idlwave-shell-graphics-window-size.

Key Bindings

Source Code

;; Defined in /usr/src/emacs/lisp/obsolete/idlw-shell.el.gz
(defun idlwave-shell-window (n)
  "Issue a `window,N' command to IDL, with special window size.
The size is given by `idlwave-shell-graphics-window-size'."
  (interactive "P")
  (let ((n (if n (prefix-numeric-value n) 0)))
    (idlwave-shell-send-command
     (apply #'format "window,%d,xs=%d,ys=%d"
	    n idlwave-shell-graphics-window-size)
     nil (idlwave-shell-hide-p 'misc) nil t)))