X-Git-Url: http://git.hcoop.net/bpt/emacs.git/blobdiff_plain/34035df32674d5a6a4eb4112dfa5ea69b4dec64f..8e6208c5d2c91d70f2338d1c3d788e194c6c9d52:/src/fileio.c diff --git a/src/fileio.c b/src/fileio.c index 921ccf9650..6faf156395 100644 --- a/src/fileio.c +++ b/src/fileio.c @@ -2936,7 +2936,7 @@ and (2) it puts less data in the undo list.") && FETCH_CHAR (same_at_start) == buffer[bufpos]) same_at_start++, bufpos++; /* If we found a discrepancy, stop the scan. - Otherwise loop around and scan the next bufferfull. */ + Otherwise loop around and scan the next bufferful. */ if (bufpos != nread) break; } @@ -2979,7 +2979,7 @@ and (2) it puts less data in the undo list.") XSTRING (filename)->data, strerror (errno)); total_read += nread; } - /* Scan this bufferfull from the end, comparing with + /* Scan this bufferful from the end, comparing with the Emacs buffer. */ bufpos = total_read; /* Compare with same_at_start to avoid counting some buffer text @@ -2988,7 +2988,7 @@ and (2) it puts less data in the undo list.") && FETCH_CHAR (same_at_end - 1) == buffer[bufpos - 1]) same_at_end--, bufpos--; /* If we found a discrepancy, stop the scan. - Otherwise loop around and scan the preceding bufferfull. */ + Otherwise loop around and scan the preceding bufferful. */ if (bufpos != 0) break; /* If display current starts at beginning of line,