summaryrefslogtreecommitdiff
path: root/lisp/vmsproc.el
diff options
context:
space:
mode:
Diffstat (limited to 'lisp/vmsproc.el')
-rw-r--r--lisp/vmsproc.el98
1 files changed, 36 insertions, 62 deletions
diff --git a/lisp/vmsproc.el b/lisp/vmsproc.el
index b4451a40ad0..c974f88248e 100644
--- a/lisp/vmsproc.el
+++ b/lisp/vmsproc.el
@@ -35,63 +35,37 @@
(define-key command-mode-map "\C-u" 'command-kill-line))
(defun subprocess-input (name str)
- "Handles input from a subprocess. Called by Emacs."
- (if display-subprocess-window
+ "Handles input from a subprocess. Called by Emacs."
+ (if display-subprocess-window
(display-buffer subprocess-buf))
- (let ((old-buffer (current-buffer)))
- (set-buffer subprocess-buf)
- (goto-char (point-max))
- (insert str)
- (insert ?\n)
- (set-buffer old-buffer)))
+ (let ((old-buffer (current-buffer)))
+ (set-buffer subprocess-buf)
+ (goto-char (point-max))
+ (insert str)
+ (insert ?\n)
+ (set-buffer old-buffer)))
(defun subprocess-exit (name)
- "Called by Emacs upon subprocess exit."
- (setq subprocess-running nil))
+ "Called by Emacs upon subprocess exit."
+ (setq subprocess-running nil))
(defun start-subprocess ()
- "Spawns an asynchronous subprocess with output redirected to
+ "Spawns an asynchronous subprocess with output redirected to
the buffer *COMMAND*. Within this buffer, use C-m to send
the last line to the subprocess or to bring another line to
the end."
- (if subprocess-running
- (return t))
- (setq subprocess-buf (get-buffer-create "*COMMAND*"))
- (save-excursion
- (set-buffer subprocess-buf)
- (use-local-map command-mode-map))
- (setq subprocess-running (spawn-subprocess 1 'subprocess-input
- 'subprocess-exit))
- ;; Initialize subprocess so it doesn't panic and die upon
- ;; encountering the first error.
- (and subprocess-running
- (send-command-to-subprocess 1 "ON SEVERE_ERROR THEN CONTINUE")))
-
-(defun subprocess-command-to-buffer (command buffer)
- "Execute COMMAND and redirect output into BUFFER."
- (let (cmd args)
- (setq cmd (substring command 0 (string-match " " command)))
- (setq args (substring command (string-match " " command)))
- (call-process cmd nil buffer nil "*dcl*" args)))
-;BUGS: only the output up to the end of the first image activation is trapped.
-; (if (not subprocess-running)
-; (start-subprocess))
-; (save-excursion
-; (set-buffer buffer)
-; (let ((output-filename (concat "SYS$SCRATCH:OUTPUT-FOR-"
-; (getenv "USER") ".LISTING")))
-; (while (file-exists-p output-filename)
-; (delete-file output-filename))
-; (define-logical-name "SYS$OUTPUT" (concat output-filename "-NEW"))
-; (send-command-to-subprocess 1 command)
-; (send-command-to-subprocess 1 (concat
-; "RENAME " output-filename
-; "-NEW " output-filename))
-; (while (not (file-exists-p output-filename))
-; (sleep-for 1))
-; (define-logical-name "SYS$OUTPUT" nil)
-; (insert-file output-filename)
-; (delete-file output-filename))))
+ (if subprocess-running
+ (return t))
+ (setq subprocess-buf (get-buffer-create "*COMMAND*"))
+ (save-excursion
+ (set-buffer subprocess-buf)
+ (use-local-map command-mode-map))
+ (setq subprocess-running (spawn-subprocess 1 'subprocess-input
+ 'subprocess-exit))
+ ;; Initialize subprocess so it doesn't panic and die upon
+ ;; encountering the first error.
+ (and subprocess-running
+ (send-command-to-subprocess 1 "ON SEVERE_ERROR THEN CONTINUE")))
(defun subprocess-command ()
"Starts asynchronous subprocess if not running and switches to its window."
@@ -99,7 +73,7 @@ the end."
(if (not subprocess-running)
(start-subprocess))
(and subprocess-running
- (progn (pop-to-buffer subprocess-buf) (goto-char (point-max)))))
+ (progn (pop-to-buffer subprocess-buf) (goto-char (point-max)))))
(defun command-send-input ()
"If at last line of buffer, sends the current line to
@@ -110,24 +84,24 @@ line to the last line for resubmission."
(let ((current-line (buffer-substring (point)
(progn (end-of-line) (point)))))
(if (eobp)
- (progn
- (if (not subprocess-running)
- (start-subprocess))
- (if subprocess-running
- (progn
- (beginning-of-line)
- (send-command-to-subprocess 1 current-line)
- (if command-prefix-string
- (progn (beginning-of-line) (insert command-prefix-string)))
- (next-line 1))))
+ (progn
+ (if (not subprocess-running)
+ (start-subprocess))
+ (if subprocess-running
+ (progn
+ (beginning-of-line)
+ (send-command-to-subprocess 1 current-line)
+ (if command-prefix-string
+ (progn (beginning-of-line) (insert command-prefix-string)))
+ (next-line 1))))
;; else -- if not at last line in buffer
(end-of-buffer)
(backward-char)
(next-line 1)
(if (string-equal command-prefix-string
- (substring current-line 0 (length command-prefix-string)))
+ (substring current-line 0 (length command-prefix-string)))
(insert (substring current-line (length command-prefix-string)))
- (insert current-line)))))
+ (insert current-line)))))
(defun command-kill-line()
"Kills the current line. Used in command mode."