Mercurial > hg > xemacs-beta
comparison src/eval.c @ 546:666d73d6ac56
[xemacs-hg @ 2001-05-20 01:17:07 by ben]
fixes so MinGW compiles.
console-msw.h, scrollbar-msw.c, event-msw.c: we might receive scrollbar events on windows without scrollbars
(e.g. holding down and moving the wheel button).
dired.c: win9x support.
eval.c: doc comment about gcpro'ing in record_unwind_protect.
frame-msw.c: typo.
frame.c: avoid problems with errors during init_frame_3.
process-nt.c: remove unused mswindows-quote-process-args. rec for 21.4.
unexcw.c: use do/while.
autoload.el: Oops, off by one argument.
mouse.el: Add an argument to mouse-track so that hooks can be overridden.
(let-binding doesn't work when the hooks have been made local.)
modify mouse-track-run-hook accordingly, and fix mouse-track-default
and mouse-track-insert to use the new functionality.
printer.el: Oops, off by one paren.
author | ben |
---|---|
date | Sun, 20 May 2001 01:17:16 +0000 |
parents | c33ae14dd6d0 |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
545:9a775fb11bb7 | 546:666d73d6ac56 |
---|---|
4924 specpdl_depth_counter++; | 4924 specpdl_depth_counter++; |
4925 | 4925 |
4926 Fset (symbol, value); | 4926 Fset (symbol, value); |
4927 } | 4927 } |
4928 | 4928 |
4929 /* Note: As long as the unwind-protect exists, its arg is automatically | |
4930 GCPRO'd. */ | |
4931 | |
4929 void | 4932 void |
4930 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg), | 4933 record_unwind_protect (Lisp_Object (*function) (Lisp_Object arg), |
4931 Lisp_Object arg) | 4934 Lisp_Object arg) |
4932 { | 4935 { |
4933 SPECPDL_RESERVE (1); | 4936 SPECPDL_RESERVE (1); |