# HG changeset patch # User Richard M. Stallman # Date 809543757 0 # Node ID e0db27f18a430d7e50448ec2fbabe74465d2fe8c # Parent 0ad88e6d8ef1f7f04290d0231e777c85247a69ed (m2-execute-monitor-command): Renamed from execute-monitor-command. diff -r 0ad88e6d8ef1 -r e0db27f18a43 lisp/progmodes/modula2.el --- a/lisp/progmodes/modula2.el Sun Aug 27 07:20:19 1995 +0000 +++ b/lisp/progmodes/modula2.el Sun Aug 27 17:15:57 1995 +0000 @@ -398,7 +398,7 @@ (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 @@ (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\\) *$")