Mercurial > hg > xemacs-beta
comparison src/dired.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 | 0493e9f3c27f |
children | 183866b06e0b |
comparison
equal
deleted
inserted
replaced
545:9a775fb11bb7 | 546:666d73d6ac56 |
---|---|
698 } | 698 } |
699 xNetApiBufferFree (bufptr); | 699 xNetApiBufferFree (bufptr); |
700 } | 700 } |
701 while (entriesread != totalentries); | 701 while (entriesread != totalentries); |
702 } | 702 } |
703 else /* Win 9x */ | |
704 { | |
705 Extbyte name[2 * (UNLEN + 1)]; | |
706 DWORD length = sizeof (name); | |
707 | |
708 if (GetUserName (name, &length)) | |
709 { | |
710 DO_REALLOC (user_cache.user_names, user_cache.size, | |
711 user_cache.length + 1, struct user_name); | |
712 TO_INTERNAL_FORMAT (C_STRING, name, | |
713 MALLOC, | |
714 (user_cache. | |
715 user_names[user_cache.length].ptr, | |
716 user_cache. | |
717 user_names[user_cache.length].len), | |
718 Qmswindows_tstr); | |
719 user_cache.length++; | |
720 } | |
721 } | |
703 #endif | 722 #endif |
704 | 723 |
705 XCAR (cache_incomplete_p) = Qnil; | 724 XCAR (cache_incomplete_p) = Qnil; |
706 unbind_to (speccount, Qnil); | 725 unbind_to (speccount, Qnil); |
707 | 726 |