]> git.eshelyaron.com Git - emacs.git/commitdiff
(m2-execute-monitor-command): Renamed from execute-monitor-command.
authorRichard M. Stallman <rms@gnu.org>
Sun, 27 Aug 1995 17:15:57 +0000 (17:15 +0000)
committerRichard M. Stallman <rms@gnu.org>
Sun, 27 Aug 1995 17:15:57 +0000 (17:15 +0000)
lisp/progmodes/modula2.el

index ada150732c39437a52a9d39cd20f60992d03c023..c80fbab844b010bb9090c158f400f4d2975b1ae0 100644 (file)
@@ -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\\) *$")