aboutsummaryrefslogtreecommitdiffstats
path: root/src/ChangeLog
diff options
context:
space:
mode:
authorStefan Monnier2012-12-17 14:17:06 -0500
committerStefan Monnier2012-12-17 14:17:06 -0500
commit1e101a4be420878653f42a9f5e105adfb6690229 (patch)
tree904b686c774de3aa50c8a415abba6819464d8a98 /src/ChangeLog
parent66447e07c1aa037730127d6fcdd2658f87f13dc0 (diff)
downloademacs-1e101a4be420878653f42a9f5e105adfb6690229.tar.gz
emacs-1e101a4be420878653f42a9f5e105adfb6690229.zip
* src/xdisp.c (select_frame_for_redisplay): Use select_window_1 to
propagate redisplay's scrolling (if any) to the right window. (redisplay_internal): Use ensure_selected_frame. (display_mode_lines): Complete last fix. * src/window.c (select_window_1): New func, extracted from select_window. (select_window): Use it. * src/window.h (select_window_1): Declare.
Diffstat (limited to 'src/ChangeLog')
-rw-r--r--src/ChangeLog32
1 files changed, 19 insertions, 13 deletions
diff --git a/src/ChangeLog b/src/ChangeLog
index acfd5c561b7..2eb301bd934 100644
--- a/src/ChangeLog
+++ b/src/ChangeLog
@@ -1,3 +1,13 @@
12012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
4 propagate redisplay's scrolling (if any) to the right window.
5 (redisplay_internal): Use ensure_selected_frame.
6 (display_mode_lines): Complete last fix.
7 * window.c (select_window_1): New func, extracted from select_window.
8 (select_window): Use it.
9 * window.h (select_window_1): Declare.
10
12012-12-17 Eli Zaretskii <eliz@gnu.org> 112012-12-17 Eli Zaretskii <eliz@gnu.org>
2 12
3 Emulate Posix ACL APIs on MS-Windows. 13 Emulate Posix ACL APIs on MS-Windows.
@@ -42,8 +52,7 @@
42 52
43 * fileio.c (Ffile_acl, Fset_file_acl): New functions. 53 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
44 (Fcopy_file): Change last arg to `preserve_extended_attributes' 54 (Fcopy_file): Change last arg to `preserve_extended_attributes'
45 and copy ACL entries of file in addition to SELinux context if 55 and copy ACL entries of file in addition to SELinux context if set.
46 set.
47 (syms_of_fileio): Add `file-acl' and `set-file-acl'. 56 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
48 57
49 * Makefile.in (LIBACL_LIBS): New macro. 58 * Makefile.in (LIBACL_LIBS): New macro.
@@ -166,7 +175,7 @@
166 175
1672012-12-12 Daniel Colascione <dancol@dancol.org> 1762012-12-12 Daniel Colascione <dancol@dancol.org>
168 177
169 * unexcw.c (fixup_executable): use posix_fallocate to ensure that 178 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
170 the dumped Emacs is not a sparse file, greatly improving Cygwin 179 the dumped Emacs is not a sparse file, greatly improving Cygwin
171 "make bootstrap" performance. 180 "make bootstrap" performance.
172 181
@@ -235,8 +244,7 @@
235 * w32fns.c (cache_system_info): Initialize the global hinst 244 * w32fns.c (cache_system_info): Initialize the global hinst
236 variable here so various initialization calls DTRT. 245 variable here so various initialization calls DTRT.
237 246
238 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused 247 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
239 variables.
240 (hinst): Remove unneeded extern declaration. 248 (hinst): Remove unneeded extern declaration.
241 (_start): Remove initialization of above variables; remove 249 (_start): Remove initialization of above variables; remove
242 initialization of hinst, as cache_system_info now does that. 250 initialization of hinst, as cache_system_info now does that.
@@ -308,8 +316,7 @@
308 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message 316 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
309 by posting it to the w32_read_socket queue. 317 by posting it to the w32_read_socket queue.
310 318
311 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support 319 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
312 FILE_NOTIFY_EVENT.
313 320
314 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O). 321 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
315 (GLOBAL_SOURCES): Add w32notify.c 322 (GLOBAL_SOURCES): Add w32notify.c
@@ -317,8 +324,8 @@
317 324
318 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype. 325 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
319 326
320 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]: Handle 327 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
321 FILE_NOTIFY_EVENT. 328 Handle FILE_NOTIFY_EVENT.
322 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol. 329 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
323 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to 330 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
324 w32notify-handle-event by default. 331 w32notify-handle-event by default.
@@ -329,8 +336,7 @@
3292012-12-10 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de> 3362012-12-10 RĂ¼diger Sonderfeld <ruediger@c-plusplus.de>
330 337
331 Support for filesystem notifications on GNU/Linux via inotify. 338 Support for filesystem notifications on GNU/Linux via inotify.
332 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add 339 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
333 FILE_NOTIFY_EVENT.
334 340
335 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype. 341 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
336 342
@@ -647,9 +653,9 @@
6472012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com> 6532012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
648 654
649 * w32fns.c: Remove prototype of atof. 655 * w32fns.c: Remove prototype of atof.
650 (syspage_mask): Declared DWORD_PTR, for compatibility with 64-bit 656 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
651 builds. 657 builds.
652 (file_dialog_callback): Declared UINT_PTR. 658 (file_dialog_callback): Make it UINT_PTR.
653 659
654 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility 660 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
655 with 64-bit builds. 661 with 64-bit builds.