diff options
Diffstat (limited to 'src/ChangeLog')
| -rw-r--r-- | src/ChangeLog | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/src/ChangeLog b/src/ChangeLog index 7b286ccb8bf..b503a40640f 100644 --- a/src/ChangeLog +++ b/src/ChangeLog | |||
| @@ -1,3 +1,29 @@ | |||
| 1 | 2015-01-04 Paul Eggert <eggert@cs.ucla.edu> | ||
| 2 | |||
| 3 | Less 'make' chatter for lisp dir | ||
| 4 | * Makefile.in (%.elc): Adjust to compile-onefile change in | ||
| 5 | ../lisp/Makefile.in. | ||
| 6 | |||
| 7 | batch write-region no longer says "Wrote FOO" | ||
| 8 | This cuts down on 'make' chatter a bit. | ||
| 9 | * fileio.c (Fwrite_region): | ||
| 10 | Don't output "Wrote /whatever/foo.elc" if noninteractive. | ||
| 11 | |||
| 12 | 2015-01-03 Paul Eggert <eggert@cs.ucla.edu> | ||
| 13 | |||
| 14 | Revert previous change to produce_composite_glyph | ||
| 15 | * term.c (produce_composite_glyph): Revert previous change (Bug#19496). | ||
| 16 | |||
| 17 | Pacify gcc -Wparentheses | ||
| 18 | * frame.c (x_set_frame_parameters): Add parens (Bug#19428). | ||
| 19 | |||
| 20 | 2015-01-03 Martin Rudalics <rudalics@gmx.at> | ||
| 21 | |||
| 22 | * frame.c (x_set_frame_parameters): Call Fset_frame_size only if | ||
| 23 | f->can_x_set_window_size is true. | ||
| 24 | * xterm.c (x_set_window_size_1): Call change_frame_size with | ||
| 25 | text sizes instead of pixel sizes (Bug#19428). | ||
| 26 | |||
| 1 | 2015-01-01 Eli Zaretskii <eliz@gnu.org> | 27 | 2015-01-01 Eli Zaretskii <eliz@gnu.org> |
| 2 | 28 | ||
| 3 | * xdisp.c (pos_visible_p): Fix up the X coordinate for | 29 | * xdisp.c (pos_visible_p): Fix up the X coordinate for |
| @@ -21,6 +47,24 @@ | |||
| 21 | * sysdep.c [WINDOWSNT]: Include sys/socket.h, without which this | 47 | * sysdep.c [WINDOWSNT]: Include sys/socket.h, without which this |
| 22 | file doesn't compile on MS-Windows. | 48 | file doesn't compile on MS-Windows. |
| 23 | 49 | ||
| 50 | 2014-12-29 Paul Eggert <eggert@cs.ucla.edu> | ||
| 51 | |||
| 52 | Allow return value of system-name to vary. (Bug#19438) | ||
| 53 | * filelock.c (current_lock_owner): | ||
| 54 | * xrdb.c (get_environ_db): | ||
| 55 | * xterm.c (same_x_server): | ||
| 56 | * xterm.c (x_term_init): | ||
| 57 | Prefer (system-name) to system-name, and avoid naming | ||
| 58 | locals 'system-name'. | ||
| 59 | * editfns.c (cached_system_name): New static var. | ||
| 60 | (init_and_cache_system_name): New function. | ||
| 61 | (init_editfns, Fsystem_name): Use it. | ||
| 62 | (syms_of_editfns): Initialize it and Vsystem_name to the same value. | ||
| 63 | * sysdep.c [HAVE_SOCKETS]: Don't include <sys/socket.h>, <netdb.h>. | ||
| 64 | (h_errno) [TRY_AGAIN && !HAVE_H_ERRNO]: Remove decl. | ||
| 65 | (init_system_name) [HAVE_SOCKETS]: Don't canonicalize the name. | ||
| 66 | Don't create a new string if the current value is already correct. | ||
| 67 | |||
| 24 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> | 68 | 2014-12-28 Paul Eggert <eggert@cs.ucla.edu> |
| 25 | 69 | ||
| 26 | Fix produce_composite_width typo | 70 | Fix produce_composite_width typo |