diff options
| author | Eli Zaretskii | 2012-10-14 10:03:16 +0200 |
|---|---|---|
| committer | Eli Zaretskii | 2012-10-14 10:03:16 +0200 |
| commit | dd8c2f5adeba029790a007ec829e18442a4ade36 (patch) | |
| tree | ea6045c78021c965e34bbfafa4ca36e8b8533c84 /src/ChangeLog | |
| parent | 4f0800ec2ffdfee7b56062aeac263e5071cf8868 (diff) | |
| parent | 8111f5e6f05228e36496f3bdccad711f569acb9b (diff) | |
| download | emacs-dd8c2f5adeba029790a007ec829e18442a4ade36.tar.gz emacs-dd8c2f5adeba029790a007ec829e18442a4ade36.zip | |
Merge from trunk.
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 67 |
1 files changed, 67 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 34e730183de..b573f8c1476 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,70 @@ | |||
| 1 | 2012-10-13 Jan Djärv <jan.h.d@swipnet.se> | ||
| 2 | |||
| 3 | * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612). | ||
| 4 | |||
| 5 | 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change) | ||
| 6 | |||
| 7 | * coding.c (detect_coding): Set coding->id before calling | ||
| 8 | this->detector. | ||
| 9 | |||
| 10 | 2012-10-13 Andreas Schwab <schwab@linux-m68k.org> | ||
| 11 | |||
| 12 | * fileio.c: Formatting fixes. | ||
| 13 | |||
| 14 | 2012-10-13 Paul Eggert <eggert@cs.ucla.edu> | ||
| 15 | |||
| 16 | Fix some stat-related races. | ||
| 17 | * fileio.c (Fwrite_region): Avoid race condition if a file is | ||
| 18 | removed or renamed by some other process immediately after Emacs | ||
| 19 | writes it but before Emacs stats it. Do not assume that stat (or | ||
| 20 | fstat) succeeds. | ||
| 21 | * image.c (slurp_file): Resolve the file name with fopen + fstat | ||
| 22 | rather than stat + fopen. | ||
| 23 | (pbm_read_file) [0]: Remove unused code with stat race. | ||
| 24 | * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]: | ||
| 25 | Remove ineffective code with stat race. | ||
| 26 | |||
| 27 | 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca> | ||
| 28 | |||
| 29 | * doc.c (get_doc_string): Don't signal an error if the file is missing. | ||
| 30 | |||
| 31 | 2012-10-12 Jan Djärv <jan.h.d@swipnet.se> | ||
| 32 | |||
| 33 | * nsterm.m (hold_event_q): New static variable. | ||
| 34 | (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if | ||
| 35 | ! q_event_ptr. | ||
| 36 | (hold_event): New function. | ||
| 37 | (ns_read_socket): If hold_event_q have events, store them and | ||
| 38 | return (Bug#12384). | ||
| 39 | (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr | ||
| 40 | is zero (Bug#12384). | ||
| 41 | |||
| 42 | 2012-10-12 Juanma Barranquero <lekktu@gmail.com> | ||
| 43 | |||
| 44 | * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies. | ||
| 45 | |||
| 46 | 2012-10-12 Eli Zaretskii <eliz@gnu.org> | ||
| 47 | |||
| 48 | * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h. | ||
| 49 | |||
| 50 | * fileio.c (check_existing): New function. | ||
| 51 | (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it | ||
| 52 | instead of calling 'stat', when what's needed is to check whether | ||
| 53 | a file exists. This avoids expensive system calls on MS-Windows. | ||
| 54 | (Bug#12587) | ||
| 55 | |||
| 56 | * w32.c (init_environment): Call 'check_existing' instead of | ||
| 57 | 'stat'. | ||
| 58 | |||
| 59 | * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to | ||
| 60 | determine whether a file exists and is not a directory. | ||
| 61 | |||
| 62 | * lisp.h (check_existing): Add prototype. | ||
| 63 | |||
| 64 | 2012-10-12 Jan Djärv <jan.h.d@swipnet.se> | ||
| 65 | |||
| 66 | * nsfont.m (nsfont_open): Remove font cache, it is not GC correct. | ||
| 67 | |||
| 1 | 2012-10-12 Glenn Morris <rgm@gnu.org> | 68 | 2012-10-12 Glenn Morris <rgm@gnu.org> |
| 2 | 69 | ||
| 3 | * buffer.c (Fset_buffer): Doc fix. (Bug#12624) | 70 | * buffer.c (Fset_buffer): Doc fix. (Bug#12624) |