aboutsummaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorEli Zaretskii2014-09-03 21:13:45 +0300
committerEli Zaretskii2014-09-03 21:13:45 +0300
commitf8c4cd6e058ea981011545fc656c42df8cb85087 (patch)
tree5d6c210c422dd601df7f9be71921f511d3fcba9f /src
parentc11b0a7885eaa2e6719d8ff6af200668eb55da5f (diff)
downloademacs-f8c4cd6e058ea981011545fc656c42df8cb85087.tar.gz
emacs-f8c4cd6e058ea981011545fc656c42df8cb85087.zip
src/sysdep.c (emacs_full_write): Fix a typo in a comment.
Diffstat (limited to 'src')
-rw-r--r--src/sysdep.c2
1 files changed, 1 insertions, 1 deletions
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,
2300 { 2300 {
2301 if (errno == EINTR) 2301 if (errno == EINTR)
2302 { 2302 {
2303 /* I originally used `QUIT' but that might causes files to 2303 /* I originally used `QUIT' but that might cause files to
2304 be truncated if you hit C-g in the middle of it. --Stef */ 2304 be truncated if you hit C-g in the middle of it. --Stef */
2305 if (process_signals && pending_signals) 2305 if (process_signals && pending_signals)
2306 process_pending_signals (); 2306 process_pending_signals ();