diff options
| author | John Wiegley | 2016-02-03 23:54:45 -0800 |
|---|---|---|
| committer | John Wiegley | 2016-02-03 23:54:45 -0800 |
| commit | 1829a1fc85b040912dc194806c64670096ddcf43 (patch) | |
| tree | e2ea31dde9caa974a251a5e943e8eb0588801dd9 /src | |
| parent | 535e2bef6dd7b9abe2567f865c8b24a06a555178 (diff) | |
| parent | ae26c8a7a46ffa6266a4efce592827cf47e85170 (diff) | |
| download | emacs-1829a1fc85b040912dc194806c64670096ddcf43.tar.gz emacs-1829a1fc85b040912dc194806c64670096ddcf43.zip | |
Merge from origin/emacs-25
ea26c8a * lisp/net/browse-url.el (browse-url-default-browser): Lower
priority of non-free Chrome.
0fac75f Improve the custom type of some user options.
2df0e04 Highlight CSS variables with variable name face
3cf5e81 * lisp/gnus/gnus-kill.el (gnus-winconf-kill-file): Not
user-serviceable.
2a5233c Mark some user options that can get evalled as risky.
39b166f Disable DebPrint in sys_read on MS-Windows
9fd0189 ;Fix ChangeLog entry
4bb7233 Fix typos in Introduction to Emacs Lisp manual
Diffstat (limited to 'src')
| -rw-r--r-- | src/w32.c | 12 |
1 files changed, 11 insertions, 1 deletions
| @@ -8369,7 +8369,17 @@ sys_read (int fd, char * buffer, unsigned int count) | |||
| 8369 | 8369 | ||
| 8370 | case STATUS_READ_READY: | 8370 | case STATUS_READ_READY: |
| 8371 | case STATUS_READ_IN_PROGRESS: | 8371 | case STATUS_READ_IN_PROGRESS: |
| 8372 | DebPrint (("sys_read called when read is in progress\n")); | 8372 | #if 0 |
| 8373 | /* This happens all the time during GnuTLS handshake | ||
| 8374 | with the remote, evidently because GnuTLS waits for | ||
| 8375 | the read to complete by retrying the read operation | ||
| 8376 | upon EAGAIN. So I'm disabling the DebPrint to avoid | ||
| 8377 | wasting cycles on something that is not a real | ||
| 8378 | problem. Enable if you need to debug something that | ||
| 8379 | bumps into this. */ | ||
| 8380 | DebPrint (("sys_read called when read is in progress %d\n", | ||
| 8381 | current_status)); | ||
| 8382 | #endif | ||
| 8373 | errno = EWOULDBLOCK; | 8383 | errno = EWOULDBLOCK; |
| 8374 | return -1; | 8384 | return -1; |
| 8375 | 8385 | ||