Mercurial > emacs
changeset 50774:cddacf81f5e7
(Funwind_protect): Use func = Fprogn rather symbol = Qnil.
author | Stefan Monnier <monnier@iro.umontreal.ca> |
---|---|
date | Thu, 01 May 2003 19:38:05 +0000 |
parents | b14367118d5a |
children | 828e021d2d93 |
files | src/eval.c |
diffstat | 1 files changed, 1 insertions(+), 1 deletions(-) [+] |
line wrap: on
line diff
--- a/src/eval.c Thu May 01 19:37:34 2003 +0000 +++ b/src/eval.c Thu May 01 19:38:05 2003 +0000 @@ -1187,7 +1187,7 @@ Lisp_Object val; int count = SPECPDL_INDEX (); - record_unwind_protect (0, Fcdr (args)); + record_unwind_protect (Fprogn, Fcdr (args)); val = Feval (Fcar (args)); return unbind_to (count, val); }