From: Eli Zaretskii Date: Wed, 3 Sep 2014 18:13:45 +0000 (+0300) Subject: src/sysdep.c (emacs_full_write): Fix a typo in a comment. X-Git-Tag: emacs-24.3.94~57 X-Git-Url: http://git.eshelyaron.com/gitweb/?a=commitdiff_plain;h=f8c4cd6e058ea981011545fc656c42df8cb85087;p=emacs.git src/sysdep.c (emacs_full_write): Fix a typo in a comment. --- diff --git a/src/sysdep.c b/src/sysdep.c index e1fd86f5f3b..3870b8d35ce 100644 --- a/src/sysdep.c +++ b/src/sysdep.c @@ -2300,7 +2300,7 @@ emacs_full_write (int fildes, char const *buf, ptrdiff_t nbyte, { if (errno == EINTR) { - /* I originally used `QUIT' but that might causes files to + /* I originally used `QUIT' but that might cause files to be truncated if you hit C-g in the middle of it. --Stef */ if (process_signals && pending_signals) process_pending_signals ();