Mercurial > emacs
changeset 20392:19ffabe93a2d
Fix comment (avoid spurious "unterminated comment" warning)
author | Karl Heuer <kwzh@gnu.org> |
---|---|
date | Thu, 04 Dec 1997 03:36:09 +0000 |
parents | d6605eeb5bd5 |
children | 6f1b751fc31d |
files | src/mocklisp.c |
diffstat | 1 files changed, 22 insertions(+), 21 deletions(-) [+] |
line wrap: on
line diff
--- a/src/mocklisp.c Thu Dec 04 03:30:03 1997 +0000 +++ b/src/mocklisp.c Thu Dec 04 03:36:09 1997 +0000 @@ -67,27 +67,28 @@ return val; } -/* Now converted to regular "while" by hairier conversion code. -* DEFUN ("ml-while", Fml_while, Sml_while, 1, UNEVALLED, 0, "while for mocklisp programs") -* (args) -* Lisp_Object args; -* { -* Lisp_Object test, body, tem; -* struct gcpro gcpro1, gcpro2; -* -* GCPRO2 (test, body); -* -* test = Fcar (args); -* body = Fcdr (args); -* while (tem = Feval (test), XINT (tem)) -* { -* QUIT; -* Fprogn (body); -* } -* -* UNGCPRO; -* return Qnil; -*} +#if 0 /* Now converted to regular "while" by hairier conversion code. */ +/**/DEFUN ("ml-while", Fml_while, Sml_while, 1, UNEVALLED, 0, "while for mocklisp programs") + (args) + Lisp_Object args; +{ + Lisp_Object test, body, tem; + struct gcpro gcpro1, gcpro2; + + GCPRO2 (test, body); + + test = Fcar (args); + body = Fcdr (args); + while (tem = Feval (test), XINT (tem)) + { + QUIT; + Fprogn (body); + } + + UNGCPRO; + return Qnil; +} +#endif /* This is the main entry point to mocklisp execution. When eval sees a mocklisp function being called, it calls here