From b82bce12f5eb88ab1e3389d9ce9995bae559e752 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Sun, 13 Jul 2025 21:39:54 -0700 Subject: [PATCH] ; Fix indentation. (cherry picked from commit a8b65860a5e28ee0867e8506a17d74d4a9b7783a) --- src/fileio.c | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/fileio.c b/src/fileio.c index 8e1ac42723d..12f3aede018 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -4893,7 +4893,8 @@ by calling `format-decode', which see. */) part of the buffer until all the reading is done, so a C-g here doesn't do any harm. */ { - this = emacs_fd_read (fd, buf, bufsize); if (this < 0) + this = emacs_fd_read (fd, buf, bufsize); + if (this < 0) this = -errno; } -- 2.39.5