From: Eli Zaretskii Date: Mon, 30 Sep 2024 15:45:25 +0000 (+0300) Subject: ; * nt/inc/ms-w32.h: Fix comments (bug#73444). X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=87f8d35e96e2f72ccfbc30064016bcdbc09ca18c;p=emacs.git ; * nt/inc/ms-w32.h: Fix comments (bug#73444). (cherry picked from commit 84261bd2b702605da58c6e12660ffd076a898766) --- diff --git a/nt/inc/ms-w32.h b/nt/inc/ms-w32.h index 4d721244afe..d2217ced9a7 100644 --- a/nt/inc/ms-w32.h +++ b/nt/inc/ms-w32.h @@ -256,7 +256,7 @@ extern void w32_reset_stack_overflow_guard (void); #define fopen sys_fopen #define link sys_link #define localtime sys_localtime -/* we override read after including io.h, see #73444 */ +/* We redirect 'read' below, after including io.h, see bug#73444. */ #define rename sys_rename #define rmdir sys_rmdir #define select sys_select @@ -379,7 +379,7 @@ extern struct tm *localtime_r (time_t const * restrict, struct tm * restrict); #define fileno _fileno #endif -/* Here we override CRT read with our own, see #73444 */ +/* Here we redirect CRT's 'read' to our own implementation, see bug#73444. */ #undef read #define read sys_read int sys_read (int, char *, unsigned int);