emacs-diffs
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

[Emacs-diffs] Changes to emacs/lisp/progmodes/executable.el


From: Daniel Pfeiffer
Subject: [Emacs-diffs] Changes to emacs/lisp/progmodes/executable.el
Date: Wed, 15 Dec 2004 16:30:25 -0500

Index: emacs/lisp/progmodes/executable.el
diff -c emacs/lisp/progmodes/executable.el:1.31 
emacs/lisp/progmodes/executable.el:1.32
*** emacs/lisp/progmodes/executable.el:1.31     Wed Feb 18 20:47:46 2004
--- emacs/lisp/progmodes/executable.el  Wed Dec 15 21:24:20 2004
***************
*** 199,218 ****
                                     (file-modes buffer-file-name)))))))
  
  
  (defun executable-interpret (command)
    "Run script with user-specified args, and collect output in a buffer.
! While script runs asynchronously, you can use the \\[next-error] command
! to find the next error."
    (interactive (list (read-string "Run script: "
                                  (or executable-command
                                      buffer-file-name))))
    (require 'compile)
    (save-some-buffers (not compilation-ask-about-save))
!   (make-local-variable 'executable-command)
!   (compile-internal (setq executable-command command)
!                   "No more errors." "Interpretation"
!                   ;; Give it a simpler regexp to match.
!                   nil executable-error-regexp-alist))
  
  
  
--- 199,218 ----
                                     (file-modes buffer-file-name)))))))
  
  
+ ;;;###autoload
  (defun executable-interpret (command)
    "Run script with user-specified args, and collect output in a buffer.
! While script runs asynchronously, you can use the \\[next-error]
! command to find the next error.  The buffer is also in `comint-mode' and
! `compilation-shell-minor-mode', so that you can answer any prompts."
    (interactive (list (read-string "Run script: "
                                  (or executable-command
                                      buffer-file-name))))
    (require 'compile)
    (save-some-buffers (not compilation-ask-about-save))
!   (set (make-local-variable 'executable-command) command)
!   (let ((compilation-error-regexp-alist executable-error-regexp-alist))
!     (compilation-start command t (lambda (x) "*interpretation*"))))
  
  
  




reply via email to

[Prev in Thread] Current Thread [Next in Thread]