]> git.eshelyaron.com Git - emacs.git/commitdiff
; * nt/inc/ms-w32.h: Fix comments (bug#73444).
authorEli Zaretskii <eliz@gnu.org>
Mon, 30 Sep 2024 15:45:25 +0000 (18:45 +0300)
committerEshel Yaron <me@eshelyaron.com>
Mon, 30 Sep 2024 20:38:28 +0000 (22:38 +0200)
(cherry picked from commit 84261bd2b702605da58c6e12660ffd076a898766)

nt/inc/ms-w32.h

index 4d721244afeb7205f9de58837b279d1ddd2323a9..d2217ced9a71a05b1fc6ee7b38b6e26c5e953896 100644 (file)
@@ -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);