Skip to content
Snippets Groups Projects
Commit c817edaa authored by wlott's avatar wlott
Browse files

Fixed call_cmd to work when given a function pointer directly.

parent 7e901eda
No related branches found
No related tags found
No related merge requests found
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.1 1992/07/28 20:15:06 wlott Exp $ */
/* $Header: /Volumes/share2/src/cmucl/cvs2git/cvsroot/src/lisp/monitor.c,v 1.2 1992/12/17 13:20:45 wlott Exp $ */
#include <stdio.h>
#include <sys/types.h>
......@@ -249,6 +249,8 @@ static void call_cmd(char **ptr)
thing);
return;
}
else
function = thing;
numargs = 0;
while (more_p(ptr)) {
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment