diff options
Diffstat (limited to 'lisp/progmodes/executable.el')
| -rw-r--r-- | lisp/progmodes/executable.el | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/lisp/progmodes/executable.el b/lisp/progmodes/executable.el index bae2bb66403..cc7280921ad 100644 --- a/lisp/progmodes/executable.el +++ b/lisp/progmodes/executable.el | |||
| @@ -197,7 +197,7 @@ command to find the next error. The buffer is also in `comint-mode' and | |||
| 197 | buffer-file-name)))) | 197 | buffer-file-name)))) |
| 198 | (require 'compile) | 198 | (require 'compile) |
| 199 | (save-some-buffers (not compilation-ask-about-save)) | 199 | (save-some-buffers (not compilation-ask-about-save)) |
| 200 | (set (make-local-variable 'executable-command) command) | 200 | (setq-local executable-command command) |
| 201 | (let ((compilation-error-regexp-alist executable-error-regexp-alist)) | 201 | (let ((compilation-error-regexp-alist executable-error-regexp-alist)) |
| 202 | (compilation-start command t (lambda (_x) "*interpretation*")))) | 202 | (compilation-start command t (lambda (_x) "*interpretation*")))) |
| 203 | 203 | ||