diff options
author | Richard M. Stallman <rms@gnu.org> | 1995-08-27 17:15:57 +0000 |
---|---|---|
committer | Richard M. Stallman <rms@gnu.org> | 1995-08-27 17:15:57 +0000 |
commit | a4eecfc9a36e30db3f07c7f0deddc94244ae80a2 (patch) | |
tree | 2cfee11a21642b6b37b09bcc43a7050908b95ab8 /lisp | |
parent | f1f20cec38b42ee5c8c2aef19a6cb41c840f9b1a (diff) | |
download | emacs-a4eecfc9a36e30db3f07c7f0deddc94244ae80a2.tar.gz |
(m2-execute-monitor-command): Renamed from execute-monitor-command.
Diffstat (limited to 'lisp')
-rw-r--r-- | lisp/progmodes/modula2.el | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/lisp/progmodes/modula2.el b/lisp/progmodes/modula2.el index ada150732c3..c80fbab844b 100644 --- a/lisp/progmodes/modula2.el +++ b/lisp/progmodes/modula2.el @@ -398,7 +398,7 @@ FROM SysStreams IMPORT sysIn, sysOut, sysErr; (setq m2-link-name (read-string "Name of executable: " modulename)))))) -(defun execute-monitor-command (command) +(defun m2-execute-monitor-command (command) (let* ((shell shell-file-name) (csh (equal (file-name-nondirectory shell) "csh"))) (call-process shell nil t t "-cf" (concat "exec " command)))) @@ -412,7 +412,7 @@ FROM SysStreams IMPORT sysIn, sysOut, sysErr; (setq modulename (read-string "Module name: ")) (switch-to-buffer "*Command Execution*") - (execute-monitor-command (concat "m2whereis " modulename)) + (m2-execute-monitor-command (concat "m2whereis " modulename)) (goto-char (point-min)) (condition-case () (progn (re-search-forward "\\(.*\\.def\\) *$") |