* src/window.c (select_window): Don't record_buffer while the invariant is
[bpt/emacs.git] / src / ChangeLog
1 2013-04-08 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * window.c (select_window): Don't record_buffer while the invariant is
4 temporarily broken (bug#14161).
5
6 * fns.c (Fdelq): Don't assume !NILP => CONSP.
7
8 2013-04-07 Eli Zaretskii <eliz@gnu.org>
9
10 * fileio.c (ACL_NOT_WELL_SUPPORTED): Define macro for WINDOWSNT.
11
12 2013-04-07 Romain Francoise <romain@orebokech.com>
13
14 Ignore additional platform-specific ACL errors (Bug#13702).
15 * fileio.c (ACL_NOT_WELL_SUPPORTED): New macro copied from gnulib.
16 (Fcopy_file, Fset_file_acl) [HAVE_POSIX_ACL]: Use it.
17
18 2013-03-31 Jan Djärv <jan.h.d@swipnet.se>
19
20 * nsterm.m (ns_mouse_position): Use NS_FRAME_P instead of checking
21 f->output_data.ns.
22
23 2013-04-07 Paul Eggert <eggert@cs.ucla.edu>
24
25 Fix --enable-profiling bug introduced by 2013-02-25 change (Bug#13783).
26 This bug was introduced by my 2013-02-25 change that simplified
27 data_start configuration. Without this change, on GNU/Linux
28 an Emacs configured with --enable-profiling fails immediately
29 due to a profiler signal.
30 * Makefile.in: Compile with $(PROFILING_CFLAGS), but do not link
31 with these flags. On platforms where special flags are needed
32 when linking temacs, the flags are now in LD_SWITCH_SYSTEM_TEMACS.
33 (ALL_CFLAGS): Remove $(PROFILING_CFLAGS).
34 (.c.o, .m.o): Compile with $(PROFILING_CFLAGS).
35
36 2013-04-07 Dmitry Antipov <dmantipov@yandex.ru>
37
38 Get rid of some platform-specific functions examining window
39 system and its capabilities. This is a partial rework of the
40 2013-04-05 change.
41 * lisp.h (have_menus_p): Remove prototype. This function is
42 replaced with platform-independent window_system_available.
43 (check_window_system): Move to...
44 * frame.h (decode_window_system_frame, window_system_available):
45 ...here, add new prototypes.
46 * frame.c (window_system_available, decode_window_system_frame):
47 New functions.
48 (check_window_system): Platform-independent now.
49 * xterm.h (x_in_use): Remove declaration.
50 (check_x_frame):
51 * w32term.h (check_x_frame):
52 * nsterm.h (check_x_frame): Remove prototypes. This function
53 is replaced with platform-independent decode_window_system_frame.
54 * msdos.c (have_menus_p): Remove.
55 * nsfns.m (check_window_system, have_menus_p, check_ns_frame):
56 Remove platform-specific functions. Use check_window_system,
57 decode_window_system_frame and check_ns_display_info where
58 appropriate. Minor style and comment tweaks.
59 * w32fns.c (w32_in_use, check_window_system, have_menus_p)
60 (check_x_frame): Likewise.
61 * xfns.c (x_in_use, check_window_system, have_menus_p, check_x_frame):
62 Likewise.
63 * fileio.c, fns.c, font.c, fontset.c, image.c, menu.c, nsmenu.m:
64 * nsselect.m, nsterm.m, w32font.c, w32menu.c, xfaces.c, xgselect.c:
65 * xmenu.c, xselect.c: All related users changed.
66
67 2013-04-03 Kenichi Handa <handa@gnu.org>
68
69 The following changes is to optimize the code for reading UTF-8
70 files.
71
72 * coding.c (check_ascii): Renamed from detect_ascii. Return value
73 changed. Check EOL format. Do not call adjust_coding_eol_type
74 here.
75 (check_utf_8): New function.
76 (adjust_coding_eol_type): Do nothing if already adjusted.
77 (detect_coding): Compare the return value of check_ascii with
78 coding->src_bytes. Call adjust_coding_eol_type if necessary.
79 (decode_coding_gap): Optimize for valid UTF-8.
80
81 2013-03-21 Kenichi Handa <handa@gnu.org>
82
83 * coding.c (syms_of_coding): Cancel previous change.
84
85 * insdel.c (insert_from_gap): Fix previous change.
86
87 2013-04-05 Dmitry Antipov <dmantipov@yandex.ru>
88
89 Consistently use platform-specific function to detect window system.
90 * lisp.h (check_window_system): New prototype. This function is
91 going to replace check_x, check_w32 and check_ns.
92 (have_menus_p): Mention msdos.c in comment.
93 * fontset.c (check_window_system_func): Remove. Adjust all users.
94 * fontset.h (check_window_system_func): Remove prototype.
95 * nsterm.h (check_ns):
96 * xterm.h (check_x):
97 * w32term.h (check_w32): Likewise.
98 * menu.c (Fx_popup_menu): Use check_window_system.
99 * msdos.c (check_window_system): Define for MS-DOS.
100 * nsfns.m (check_window_system): Define for NS. Adjust all users.
101 * w32fns.c (check_window_system): Likewise for MS-Windows.
102 * xfns.c (check_window_system): Likewise for X.
103 * font.c, frame.c, nsmenu.m, nsselect.m, nsterm.m, w32menu.c:
104 * xfaces.c, xmenu.c: Use check_window_system where appropriate.
105
106 2013-04-02 Paul Eggert <eggert@cs.ucla.edu>
107
108 Prefer < to > in range checks such as 0 <= i && i < N.
109 This makes it easier to visualize quantities on a number line.
110 This patch doesn't apply to all such range checks,
111 only to the range checks affected by the 2013-03-24 change.
112 This patch reverts most of the 2013-03-24 change.
113 * alloc.c (xpalloc, Fgarbage_collect):
114 * ccl.c (ccl_driver, resolve_symbol_ccl_program):
115 * character.c (string_escape_byte8):
116 * charset.c (read_hex):
117 * data.c (cons_to_unsigned):
118 * dispnew.c (update_frame_1):
119 * doc.c (Fsubstitute_command_keys):
120 * doprnt.c (doprnt):
121 * editfns.c (hi_time, decode_time_components):
122 * fileio.c (file_offset):
123 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
124 * font.c (font_intern_prop):
125 * frame.c (x_set_alpha):
126 * gtkutil.c (get_utf8_string):
127 * indent.c (check_display_width):
128 * keymap.c (Fkey_description):
129 * lisp.h (FIXNUM_OVERFLOW_P, vcopy):
130 * lread.c (read1):
131 * minibuf.c (read_minibuf_noninteractive):
132 * process.c (wait_reading_process_output):
133 * search.c (Freplace_match):
134 * window.c (get_phys_cursor_glyph):
135 * xdisp.c (redisplay_internal):
136 * xsmfns.c (smc_save_yourself_CB):
137 Prefer < to > for range checks.
138 * dispnew.c (sit_for): Don't mishandle NaNs.
139 This fixes a bug introduced in the 2013-03-24 change.
140 * editfns.c (decode_time_components): Don't hoist comparison.
141 This fixes another bug introduced in the 2013-03-24 change.
142
143 2013-03-31 Dmitry Antipov <dmantipov@yandex.ru>
144
145 * frame.h (struct frame): Drop scroll_bottom_vpos
146 member becaue all real users are dead long ago.
147 (FRAME_SCROLL_BOTTOM_VPOS): Remove.
148 * xdisp.c (redisplay_internal): Adjust user.
149
150 2013-03-30 Darren Ho <darren.hoo@gmail.com> (tiny change)
151
152 * nsmenu.m (showAtX:Y:for:): setLevel to
153 NSPopUpMenuWindowLevel (Bug#13998).
154
155 2013-03-30 Jan Djärv <jan.h.d@swipnet.se>
156
157 * nsterm.h (ns_get_pending_menu_title, ns_check_menu_open)
158 (ns_check_pending_open_menu): Declare.
159
160 * nsmenu.m (ns_update_menubar): Correct NSTRACE.
161 (x_activate_menubar): Update the menu with title that matches
162 ns_get_pending_menu_title, and call
163 ns_check_pending_openmenu (Bug#12698).
164 (menuWillOpen:): New method.
165 (menuNeedsUpdate:): Add check for ! COCOA || OSX < 10.5 (Bug#12698).
166
167 * nsterm.m (menu_will_open_state, menu_mouse_point)
168 (menu_pending_title): New varaibles.
169 (ns_get_pending_menu_title, ns_check_menu_open)
170 (ns_check_pending_open_menu): New functions.
171
172 2013-03-29 Dmitry Antipov <dmantipov@yandex.ru>
173
174 * indent.c (current_column_bol_cache): Remove leftover which is not
175 used in Fmove_to_column any more.
176 (current_column, scan_for_column): Adjust users.
177 * keyboard.c (last_point_position_buffer, last_point_position_window):
178 Remove leftovers which are not used for recording undo any more.
179 (command_loop_1, syms_of_keyboard): Adjust users.
180 * xdisp.c (last_max_ascent): Remove leftover which is not used in
181 redisplay_window any more.
182 (move_it_to): Adjust user.
183
184 2013-03-29 Juanma Barranquero <lekktu@gmail.com>
185
186 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/filelock.$(O)):
187 Update dependencies.
188
189 2013-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
190
191 * lisp.h (save_type, XSAVE_POINTER, set_save_pointer, XSAVE_INTEGER)
192 (set_save_integer, XSAVE_OBJECT, XSAVE_VALUE): Move to avoid
193 forward references.
194
195 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
196
197 * window.h (struct window): Replace hchild, vchild and buffer slots
198 with the only contents slot. This is possible because each valid
199 window may have either the child window (in vertical or horizontal
200 combination) or buffer to display (for the leaf window). Using that,
201 a lof of operations to traverse and/or change window hierarchies may
202 be simplified. New member horizontal is used to distinguish between
203 horizontal and vertical combinations of internal windows.
204 (WINDOW_LEAF_P, WINDOW_HORIZONTAL_COMBINATION_P)
205 (WINDOW_VERTICAL_COMBINATION_P): New macros.
206 (WINDOW_VALID_P, WINDOW_LIVE_P): Adjust to match struct window changes.
207 * window.c (wset_hchild, wset_vchild): Remove. Adjust all users.
208 Use contents slot, not buffer, where appropriate.
209 (wset_combination): New function.
210 (wset_buffer): Add eassert.
211 (Fframe_first_window): Simplify the loop reaching first window.
212 (Fwindow_buffer): Use WINDOW_LEAF_P.
213 (Fwindow_top_child): Use WINDOW_VERTICAL_COMBINATION_P.
214 (Fwindow_left_child): Use WINDOW_HORIZONTAL_COMBINATION_P.
215 (unshow_buffer): Convert initial debugging check to eassert.
216 (replace_window, recombine_windows, Fdelete_other_windows_internal)
217 (make_parent_window, window_resize_check, window_resize_apply)
218 (resize_frame_windows, Fsplit_window_internal, Fdelete_window_internal)
219 (Fset_window_configuration, delete_all_child_windows, save_window_save):
220 Adjust to match struct window changes.
221 (window_loop): Check for broken markers in CHECK_ALL_WINDOWS.
222 (mark_window_cursors_off, count_windows, get_leaf_windows)
223 (foreach_window_1): Simplify the loop.
224 * alloc.c (mark_object): Do not check for the leaf window because
225 internal windows has no glyph matrices anyway.
226 * dispnew.c (clear_window_matrices, showing_window_margins_p)
227 (allocate_matrices_for_window_redisplay, fake_current_matrices)
228 (allocate_matrices_for_frame_redisplay, free_window_matrices)
229 (build_frame_matrix_from_window_tree, mirror_make_current)
230 (frame_row_to_window, mirror_line_dance, check_window_matrix_pointers)
231 (update_window_tree, set_window_update_flags): Simplify the loop.
232 (sync_window_with_frame_matrix_rows): Enforce live window.
233 Use contents slot, not buffer, where appropriate.
234 * frame.c (set_menu_bar_lines_1): Use WINDOW_VERTICAL_COMBINATION_P
235 and WINDOW_HORIZONTAL_COMBINATION_P.
236 (make_frame_visible_1): Simplify the loop.
237 Use contents slot, not buffer, where appropriate.
238 * xdisp.c (hscroll_window_tree, mark_window_display_accurate)
239 (redisplay_windows, redisplay_mode_lines, update_cursor_in_window_tree)
240 (expose_window_tree): Likewise.
241 Use contents slot, not buffer, where appropriate.
242 * textprop.c (get_char_property_and_overlay): Add CHECK_LIVE_WINDOW
243 to avoid deleted windows. Use contents slot instead of buffer.
244 * buffer.c, dispextern.h, editfns.c, fileio.c, font.c, fringe.c:
245 * indent.c, insdel.c, keyboard.c, keymap.c, minibuf.c, msdos.c:
246 * nsfns.m, nsmenu.m, nsterm.m, print.c, w32fns.c, w32menu.c, xfaces.c:
247 * xfns.c, xmenu.c: Use contents slot, not buffer, where appropriate.
248
249 2013-03-28 Eli Zaretskii <eliz@gnu.org>
250
251 * w32fns.c (w32_wnd_proc) [ENABLE_CHECKING]: Add code to help
252 identify the reasons for assertion violations in bug#14062 and
253 similar ones.
254 (Fx_show_tip): Fix compilation error under
255 "--enable-check-lisp-object-type". (Bug#14073)
256
257 * image.c (g_error_free) [WINDOWSNT]: Add DEF_IMGLIB_FN.
258 Reported by <rzl24ozi@gmail.com>.
259
260 2013-03-28 Dmitry Antipov <dmantipov@yandex.ru>
261
262 * xdisp.c (with_echo_area_buffer_unwind_data): Save window
263 start marker...
264 (unwind_with_echo_area_buffer): ...to restore it here. This
265 is needed to ensure that...
266 (redisplay_window): ...both window markers are valid here,
267 which is verified by eassert.
268 * editfns.c (save_excursion_save): Do not assume that
269 selected_window always displays the buffer.
270 * buffer.c (Fbuffer_swap_text): Adjust window start markers.
271 Fix comment.
272
273 2013-03-27 Stefan Monnier <monnier@iro.umontreal.ca>
274
275 * casetab.c (init_casetab_once): Don't abuse the ascii eqv table for
276 the upcase table.
277
278 2013-03-27 rzl24ozi <rzl24ozi@gmail.com> (tiny changes)
279
280 * image.c [WINDOWSNT]: Fix calls to DEF_IMGLIB_FN for SVG function.
281
282 2013-03-27 Eli Zaretskii <eliz@gnu.org>
283
284 * w32proc.c (IsValidLocale) [__GNUC__]: Don't declare prototype,
285 since MinGW's w32api headers do. This avoids compiler warnings.
286
287 * w32.c (FSCTL_GET_REPARSE_POINT) [_MSC_VER || _W64]: Don't define
288 if already defined.
289
290 2013-03-26 Eli Zaretskii <eliz@gnu.org>
291
292 * w32.c (_REPARSE_DATA_BUFFER): Condition by _MSVC and _W64.
293
294 2013-03-26 Jan Djärv <jan.h.d@swipnet.se>
295
296 * gtkutil.c (style_changed_cb): Check if frame is live and an
297 X frame (Bug#14038).
298
299 2013-03-26 Eli Zaretskii <eliz@gnu.org>
300
301 * w32.c (_PROCESS_MEMORY_COUNTERS_EX) [_WIN32_WINNT < 0x0500]:
302 Define only for _WIN32_WINNT less than 0x0500.
303 (_ANONYMOUS_UNION, _ANONYMOUS_STRUCT) [!_W64]: Don't define for
304 MinGW64.
305 Move inclusion of time.h before sys/time.h, so that MinGW64 could
306 see its own definitions of 'struct timeval' and 'struct timezone'.
307
308 Fix incompatibilities between MinGW.org and MinGW64 headers.
309 * w32term.c (WCRANGE, GLYPHSET): Don't define if _W64 is defined.
310
311 * w32.c (REPARSE_DATA_BUFFER): Guard with
312 MAXIMUM_REPARSE_DATA_BUFFER_SIZE being defined.
313
314 2013-03-25 Jan Djärv <jan.h.d@swipnet.se>
315
316 * xterm.c: Include X11/XKBlib.h
317 (XTring_bell): Use XkbBell if HAVE_XKB (Bug#14041).
318
319 2013-03-24 Andreas Schwab <schwab@linux-m68k.org>
320
321 * alloc.c (xpalloc, Fgarbage_collect): Reorder conditions that are
322 written backwards.
323 * blockinput.h (input_blocked_p): Likewise.
324 * bytecode.c (exec_byte_code): Likewise.
325 * callproc.c (call_process_kill, call_process_cleanup)
326 (Fcall_process): Likewise.
327 * ccl.c (ccl_driver, resolve_symbol_ccl_program)
328 (Fccl_execute_on_string): Likewise.
329 * character.c (string_escape_byte8): Likewise.
330 * charset.c (read_hex): Likewise.
331 * cm.c (calccost): Likewise.
332 * data.c (cons_to_unsigned): Likewise.
333 * dired.c (directory_files_internal, file_name_completion):
334 Likewise.
335 * dispnew.c (scrolling_window, update_frame_1, Fsleep_for)
336 (sit_for): Likewise.
337 * doc.c (Fsubstitute_command_keys): Likewise.
338 * doprnt.c (doprnt): Likewise.
339 * editfns.c (hi_time, decode_time_components, Fformat): Likewise.
340 * emacsgtkfixed.c: Likewise.
341 * fileio.c (file_offset, Fwrite_region): Likewise.
342 * floatfns.c (Fexpt, fmod_float): Likewise.
343 * fns.c (larger_vector, make_hash_table, Fmake_hash_table):
344 Likewise.
345 * font.c (font_intern_prop): Likewise.
346 * frame.c (x_set_alpha): Likewise.
347 * gtkutil.c (get_utf8_string): Likewise.
348 * indent.c (check_display_width): Likewise.
349 * intervals.c (create_root_interval, rotate_right, rotate_left)
350 (split_interval_right, split_interval_left)
351 (adjust_intervals_for_insertion, delete_node)
352 (interval_deletion_adjustment, adjust_intervals_for_deletion)
353 (merge_interval_right, merge_interval_left, copy_intervals)
354 (set_intervals_multibyte_1): Likewise.
355 * keyboard.c (gobble_input, append_tool_bar_item): Likewise.
356 * keymap.c (Fkey_description): Likewise.
357 * lisp.h (FIXNUM_OVERFLOW_P, vcopy): Likewise.
358 * lread.c (openp, read_integer, read1, string_to_number):
359 Likewise.
360 * menu.c (ensure_menu_items): Likewise.
361 * minibuf.c (read_minibuf_noninteractive): Likewise.
362 * print.c (printchar, strout): Likewise.
363 * process.c (create_process, Faccept_process_output)
364 (wait_reading_process_output, read_process_output, send_process)
365 (wait_reading_process_output): Likewise.
366 * profiler.c (make_log, handle_profiler_signal): Likewise.
367 * regex.c (re_exec): Likewise.
368 * regex.h: Likewise.
369 * search.c (looking_at_1, Freplace_match): Likewise.
370 * sysdep.c (get_child_status, procfs_ttyname)
371 (procfs_get_total_memory): Likewise.
372 * systime.h (EMACS_TIME_VALID_P): Likewise.
373 * term.c (dissociate_if_controlling_tty): Likewise.
374 * window.c (get_phys_cursor_glyph): Likewise.
375 * xdisp.c (init_iterator, redisplay_internal, redisplay_window)
376 (try_window_reusing_current_matrix, try_window_id, pint2hrstr):
377 Likewise.
378 * xfns.c (Fx_window_property): Likewise.
379 * xmenu.c (set_frame_menubar): Likewise.
380 * xselect.c (x_get_window_property, x_handle_dnd_message):
381 Likewise.
382 * xsmfns.c (smc_save_yourself_CB): Likewise.
383 * xterm.c (x_scroll_bar_set_handle): Likewise.
384
385 2013-03-24 Dmitry Antipov <dmantipov@yandex.ru>
386
387 * xfaces.c (Finternal_face_x_get_resource): Allow 3rd (frame) argument
388 to be optional or nil. Adjust comment and convert it to docstring.
389 * xselect.c (Fx_send_client_event): Rename to Fx_send_client_message.
390 * frame.c (display_x_get_resource, Fx_get_resource): Break long line.
391
392 2013-03-24 Paul Eggert <eggert@cs.ucla.edu>
393
394 Static checking by GCC 4.8-20130319.
395 * image.c (gif_load): Assume pass < 3 to pacify GCC.
396 * process.c (Fset_process_datagram_address)
397 (Fmake_network_process): Check get_lisp_to_sockaddr_size return value.
398 * xdisp.c (get_char_face_and_encoding):
399 (get_glyph_face_and_encoding): Ensure that *CHAR2B is initialized.
400 (get_glyph_face_and_encoding): Prepare face before possibly using it.
401 (get_per_char_metric): Don't use CHAR2B if it might not be initialized.
402
403 2013-03-24 Ken Brown <kbrown@cornell.edu>
404
405 * w32fns.c (emacs_abort) [CYGWIN]: Define `_open' as a macro to
406 fix compilation on 64-bit Cygwin, where underscores are not
407 automatically prepended.
408
409 * w32term.c (w32_initialize): Silence compiler warning.
410
411 2013-03-23 Eli Zaretskii <eliz@gnu.org>
412
413 * w32term.c (w32fullscreen_hook): Use FRAME_NORMAL_WIDTH,
414 FRAME_NORMAL_HEIGHT, and FRAME_PREV_FSMODE, instead of static
415 variables, to save and restore frame dimensions. Use
416 FRAME_NORMAL_LEFT and FRAME_NORMAL_TOP to restore frame position
417 after returning from a 'fullscreen' configuration. use
418 SendMessage instead of PostMessage to send the SC_RESTORE message,
419 to avoid races between the main thread and the input thread.
420
421 * w32term.h (struct w32_output): New members normal_width,
422 normal_height, normal_top, normal_left, and prev_fsmode.
423 (FRAME_NORMAL_WIDTH, FRAME_NORMAL_HEIGHT, FRAME_NORMAL_TOP)
424 (FRAME_NORMAL_LEFT, FRAME_PREV_FSMODE): New macros to access these
425 members of a frame.
426
427 * w32term.c (w32fullscreen_hook): Record last value of the frame's
428 'fullscreen' parameter. Always record previous width and height
429 of the frame, except when switching out of maximized modes, so
430 that they could be restored correctly, instead of resetting to the
431 default frame dimensions. Send SC_RESTORE command to the frame,
432 unless we are going to send SC_MAXIMIZE, to restore the frame
433 resize hints in the mouse pointer shown by the window manager.
434 (Bug#14032)
435
436 * frame.c (get_frame_param): Now extern for WINDOWSNT as well.
437
438 * lisp.h (get_frame_param): Adjust conditions for prototype
439 declaration.
440
441 2013-03-22 Ken Brown <kbrown@cornell.edu>
442
443 * unexcw.c: Drop unneeded inclusion of w32common.h.
444 (report_sheap_usage): Declare.
445 (read_exe_header): Add magic numbers for x86_64.
446 (fixup_executable): Fix printf format specifier for unsigned long
447 argument.
448
449 2013-03-22 Dmitry Antipov <dmantipov@yandex.ru>
450
451 * frame.h (struct frame): Put menu_bar_window under #ifdef
452 because this member is not needed when X toolkit is in use.
453 (fset_menu_bar_window):
454 * dispnew.c (clear_current_matrices, clear_desired_matrices)
455 (free_glyphs, update_frame):
456 * xdisp.c (expose_frame): Likewise.
457 (display_menu_bar): Likewise. Remove redundant eassert.
458 * window.h (WINDOW_MENU_BAR_P): Always define to 0 if X
459 toolkit is in use.
460
461 2013-03-21 Paul Eggert <eggert@cs.ucla.edu>
462
463 Use functions and constants to manipulate Lisp_Save_Value objects.
464 This replaces code that used macros and strings and token-pasting.
465 The change makes the C source a bit easier to follow,
466 and shrinks the Emacs executable a bit.
467 * alloc.c: Verify some properties of Lisp_Save_Value's representation.
468 (make_save_value): Change 1st arg from string to enum. All callers
469 changed.
470 (INTX): Remove.
471 (mark_object): Use if, not #if, for GC_MARK_STACK.
472 * lisp.h (SAVE_VALUEP, XSAVE_VALUE, XSAVE_POINTER, XSAVE_INTEGER)
473 (XSAVE_OBJECT): Now functions, not macros.
474 (STRING_BYTES_BOUND): Now just a macro, not a constant too;
475 the constant was never used.
476 (SAVE_SLOT_BITS, SAVE_VALUE_SLOTS, SAVE_TYPE_BITS, SAVE_TYPE_INT_INT)
477 (SAVE_TYPE_INT_INT_INT, SAVE_TYPE_OBJ_OBJ, SAVE_TYPE_OBJ_OBJ_OBJ)
478 (SAVE_TYPE_OBJ_OBJ_OBJ_OBJ, SAVE_TYPE_PTR_INT, SAVE_TYPE_PTR_OBJ)
479 (SAVE_TYPE_PTR_PTR, SAVE_TYPE_PTR_PTR_OBJ, SAVE_TYPE_MEMORY):
480 New constants.
481 (struct Lisp_Save_Value): Replace members area, type0, type1, type2,
482 type3 with a single member save_type. All uses changed.
483 (save_type, set_save_pointer, set_save_integer): New functions.
484 * print.c (PRINTX): Remove.
485
486 * alloc.c: Remove redundant static declarations.
487
488 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
489
490 * window.h (struct window): Convert left_col, top_line, total_lines
491 and total_cols from Lisp_Objects to integers. Adjust comments.
492 (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
493 Remove.
494 (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
495 (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
496 * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
497 Adjust users where appropriate.
498
499 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
500
501 * frame.h (struct frame): Drop resx and resy because the same data is
502 available from window system-specific output context. Adjust users.
503 (default_pixels_per_inch_x, default_pixels_per_inch_y): New
504 functions to provide defaults when no window system available.
505 (FRAME_RES_X, FRAME_RES_Y): New macros.
506 (NUMVAL): Moved from xdisp.c.
507 * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
508 (Ffont_face_attributes, Fopen_font):
509 * image.c (gs_load):
510 * w32font.c (fill_in_logfont):
511 * xdisp.c (calc_pixel_width_or_height):
512 * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
513 * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
514
515 2013-03-20 Kenichi Handa <handa@gnu.org>
516
517 * coding.c (syms_of_coding): Initialize disable_ascii_optimization
518 to 1 (temporary workaround until a bug related to ASCII
519 optimization is fixed).
520
521 2013-03-19 Dmitry Antipov <dmantipov@yandex.ru>
522
523 * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
524 Signal error if window is not internal. Adjust docstring.
525 (delete_all_child_windows): Use combination_limit to save the buffer.
526 (Fset_window_configuration): Adjust accordingly.
527 * print.c (syms_of_print): Initialize debugging output not here...
528 (init_print_once): ...but in a new function here.
529 * lisp.h (init_print_once): Add prototype.
530 * emacs.c (main): Add call to init_print_once. Adjust comments.
531
532 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru>
533
534 * window.c (window_resize_check, window_resize_apply)
535 (window_from_coordinates, recombine_windows, set_window_buffer)
536 (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
537 (Fsplit_window_internal, Fdelete_window_internal)
538 (freeze_window_starts): Use bool for booleans.
539 * window.h (window_frame_coordinates, resize_frame_windows)
540 (freeze_window_starts, set_window_buffer): Adjust prototypes.
541
542 2013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * dispnew.c (bitch_at_user): Use `user-error'.
545
546 2013-03-17 Ken Brown <kbrown@cornell.edu>
547
548 * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c. Use it
549 as return type of image_background. (Bug#13981)
550 * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
551
552 2013-03-16 Jan Djärv <jan.h.d@swipnet.se>
553
554 * nsterm.m (updateFrameSize:): Change resize increments if needed.
555 (ns_select): Don't return with result uninitialized.
556
557 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
558 and getDirectory.
559
560 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
561 New functions.
562 (Fns_read_file_name): ret is BOOL. If ! dir_only_p, don't choose
563 directories. If filename is nil, get directory name (Bug#13932).
564 Use getFilename and getDirectory.
565 (getFilename, getDirectory): New methods for EmacsSavePanel and
566 EmacsOpenPanel.
567 (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
568
569 2013-03-15 Paul Eggert <eggert@cs.ucla.edu>
570
571 * coding.c (decode_coding_gap): Fix typo caught by static checking.
572
573 2013-03-15 Kenichi Handa <handa@gnu.org>
574
575 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
576 (adjust_after_replace): Make it back to static. Delete the third
577 arg text_at_gap_tail. Cancel the code for handling it.
578
579 * coding.h (struct coding_system): New member eol_seen.
580
581 * coding.c (detect_ascii): New function.
582 (detect_coding): Set coding->head_ascii and coding->eol_seen only
583 when the source bytes are actually scanned. On detecting for
584 coding_category_utf_8_auto, call detect_ascii instead of scanning
585 source bytes directly.
586 (produce_chars): Call insert_from_gap with the new arg 0.
587 (encode_coding): Likewise.
588 (decode_coding_gap): Control ASCII optimization by the variable
589 disable_ascii_optimization instead of #ifndef .. #endif.
590 Deccode EOL format according to coding->eol_seen.
591 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
592 variable.
593
594 * lisp.h (adjust_after_replace): Cancel externing it.
595 (insert_from_gap): Adjust prototype.
596
597 2013-03-15 Eli Zaretskii <eliz@gnu.org>
598
599 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
600 FULLSCREEN_MAXIMIZED. (Bug#13935)
601
602 2013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
603
604 * region-cache.c (find_cache_boundary, move_cache_gap)
605 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
606 Simplify debugging check and convert to eassert. Adjust comment.
607 (pp_cache): Put under ENABLE_CHECKING.
608
609 2013-03-14 Eli Zaretskii <eliz@gnu.org>
610
611 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
612 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
613 and WM_ACTIVATEAPP.
614 (w32fullscreen_hook): If the frame is visible, reset
615 f->want_fullscreen flag after changing the frame size. If the
616 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
617 (Bug#13953)
618
619 2013-03-13 Daniel Colascione <dancol@dancol.org>
620
621 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
622 too so that these builds can use Cygwin's file conversion
623 functions. (We've been building and linking cygw32.o all along
624 and just not using it.)
625
626 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
627
628 File synchronization fixes (Bug#13944).
629 * Makefile.in (LIB_FDATASYNC): New macro.
630 (LIBES): Use it.
631 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
632 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
633 Don't worry about HAVE_FSYNC, since a substitute fsync is
634 available if the system lacks one.
635 (Fwrite_regin): Retry fsync if interrupted.
636
637 2013-03-13 Eli Zaretskii <eliz@gnu.org>
638
639 * w32term.c (w32_read_socket): If the Emacs frame is being
640 activated, call w32fullscreen_hook, to make sure the new frame
641 dimensions are in effect. (Bug#13937)
642
643 2013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
644
645 * xdisp.c (init_iterator): Simplify because both character and byte
646 positions are either specified or -1. Add eassert. Adjust comment.
647 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
648 character and byte positions can be obtained from marker.
649
650 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
651
652 Static checking by Sun C 5.12.
653 * alloc.c (buffer_memory_full) [REL_ALLOC]:
654 * bytecode.c (exec_byte_code):
655 * dispnew.c (init_display):
656 * eval.c (error):
657 * fileio.c (Fsubstitute_in_file_name):
658 * keyboard.c (Fevent_convert_list):
659 * keymap.c (Fsingle_key_description):
660 * term.c (maybe_fatal, fatal):
661 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
662 * xsmfns.c (Fhandle_save_session):
663 Omit unreachable code.
664 * keymap.c (map_keymap_char_table_item): Cast void * to
665 a function pointer type; the C Standard requires this.
666
667 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
668 Include <sys/param.h> unconditionally, as that works elsewhere and
669 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
670 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
671 and FreeBSD now.
672
673 2013-03-11 Paul Eggert <eggert@cs.ucla.edu>
674
675 * insdel.c (adjust_after_replace): Use bool for boolean.
676
677 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
678
679 * keyboard.c: Move keyboard decoding to read_key_sequence.
680 (decode_keyboard_code): Remove.
681 (tty_read_avail_input): Don't try to decode input.
682 (read_decoded_char): New function.
683 (read_key_sequence): Use it.
684
685 2013-03-10 Daniel Colascione <dancol@dancol.org>
686
687 * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
688 (GUI_SDATA, guichar_t): Macros to abstract out differences between
689 NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
690 w32fns.c.
691
692 * w32term.c (construct_drag_n_drop): Use the above macros to make
693 drag-and-drop work for non-ASCII filenames in cygw32 builds.
694
695 * w32fns.c (x_set_name, x_set_title): Use the above macros to
696 properly display non-ASCII frame titles in cygw32 builds.
697
698 * w32fns.c (Fw32_shell_execute): Use the above macros to properly
699 call ShellExecute in cygw32 builds.
700
701 * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
702 common file dialog code.
703
704 * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
705 can just use du like other systems.
706
707 * coding.c (from_unicode_buffer): Declare.
708 * coding.c (from_unicode_buffer): Implement.
709
710 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
711
712 * lread.c: Minor cleanup.
713 (FROM_FILE_P): New macro.
714 (skip_dyn_bytes, unreadchar, read1): Use it.
715 (read_list): Consolidate duplicated code.
716
717 * bytecode.c (struct byte_stack): Remove `constants' when unused.
718
719 2013-03-10 Eli Zaretskii <eliz@gnu.org>
720
721 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
722 (redisplay_internal, set_cursor_from_row, try_window)
723 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
724 (display_line, notice_overwritten_cursor)
725 (mouse_face_from_buffer_pos, note_mouse_highlight):
726 Use MATRIX_ROW_DISPLAYS_TEXT_P.
727 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
728 (mouse_face_from_string_pos, fast_find_string_pos):
729 Use MATRIX_ROW_VPOS.
730
731 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
732
733 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
734
735 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
736 MATRIX_MODE_LINE_ROW.
737
738 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
739
740 2013-03-10 handa <handa@gnu.org>
741
742 * lisp.h (adjust_after_replace): Extern it.
743
744 * coding.c (detect_coding): Cound the heading ASCII bytes in the
745 case of detection for coding_category_utf_8_auto.
746 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
747 Skip decoding if all bytes are ASCII.
748
749 * insdel.c (adjust_after_replace): Make it public. New arg
750 text_at_gap_tail.
751 (adjust_after_insert): Call adjust_after_replace with the new arg
752 value 0.
753
754 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
755
756 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
757 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
758 from Elisp via unread-command-events.
759
760 * keyboard.c (access_keymap_keyremap): Accept nil return value from
761 functions to mean "no change".
762
763 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
764
765 region-cache.c, scroll.c, search.c: Use bool for booleans.
766 * lisp.h (compile_pattern):
767 * scroll.c (do_scrolling, do_direct_scrolling):
768 * search.c (struct regexp_cache, compile_pattern_1)
769 (compile_pattern, string_match_1, search_command)
770 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
771 (search_regs_saved, Fregexp_quote):
772 Use bool for boolean.
773 * region-cache.c (region_cache_forward, region_cache_backward):
774 Fix comments to match code: these functions return int, not boolean.
775
776 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
777
778 * search.c (find_newline): Accept start and end byte positions
779 as arguments and allow -1 if not known.
780 (find_newline_no_quit): Likewise for start position.
781 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
782 * bidi.c (bidi_find_paragraph_start): Pass byte position to
783 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
784 * editfns.c (Fconstrain_to_field): Break long line.
785 Adjust call to find_newline.
786 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
787 Use DEC_BOTH to start next search from the previous buffer
788 position, where appropriate.
789 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
790 (get_visually_first_element, move_it_vertically_backward): Likewise.
791 Obtain byte position from the display iterator, where appropriate.
792
793 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
794
795 print.c, process.c: Use bool for booleans.
796 * lisp.h (wait_reading_process_output):
797 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
798 (strout, debug_output_compilation_hack, float_to_string, print)
799 (print_object):
800 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
801 (decode_status, status_message, create_process, create_pty)
802 (Fmake_network_process, Fnetwork_interface_info)
803 (wait_reading_process_output, read_process_output)
804 (write_queue_push, write_queue_pop, process_send_signal)
805 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
806 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
807 Use bool for booleans.
808 * process.c (Fnetwork_interface_list): Remove unused local.
809 (connect_counter): Now EMACS_INT, not int.
810
811 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
812
813 * bidi.c (bidi_fetch_char): Swap first and second arguments
814 to match other functions accepting character and byte positions.
815 Adjust comment.
816 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
817 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
818 when you need just to move to the previous buffer position.
819 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
820
821 2013-03-07 Eli Zaretskii <eliz@gnu.org>
822
823 * .gdbinit (prowlims): Display the enabled_p flag of the row.
824
825 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
826
827 Avoid character to byte conversions in motion subroutines.
828 * indent.h (compute_motion, vmotion): Add byte position argument.
829 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
830 Add eassert.
831 (Fcompute_motion): Break long line. Adjust call to compute_motion.
832 Use list5 for return value.
833 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
834 Adjust comments, style and calls to compute_motion.
835 (Fvertical_motion): Adjust call to vmotion.
836 * window.c (Fdelete_other_windows_internal): Record window start
837 byte position and adjust call to vmotion.
838 (window_scroll_line_based): Likewise with call to compute_motion.
839 Use SET_PT_BOTH.
840 (Frecenter): Adjust calls to vmotion.
841
842 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
843
844 * lisp.h (list2i, list3i): New functions.
845 (list4i): Move from window.c and make LISP_INLINE.
846 * editfns.c (make_lisp_time):
847 * fns.c (Flocale_info):
848 * keyboard.c (parse_modifiers):
849 * xterm.c (x_ewmh_activate_frame): Use list2i.
850 * instel.c (signal_after_change):
851 * nsfns.m (Fx_server_version, Fxw_color_values):
852 * w32fns.c (Fxw_color_values, Fx_server_version):
853 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
854 * fileio.c (Fvisited_file_modtime):
855 * nsfns.m (Fns_display_usable_bounds):
856 * w32.c (ltime): Use list4i.
857
858 2013-03-06 Eli Zaretskii <eliz@gnu.org>
859
860 * search.c (find_newline_no_quit): Rename from find_next_newline.
861 Add commentary.
862
863 * lisp.h (find_newline_no_quit): Rename prototype.
864
865 * xdisp.c (back_to_previous_line_start)
866 (forward_to_next_line_start, get_visually_first_element)
867 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
868 * indent.c (vmotion): Callers of find_newline_no_quit changed.
869 * bidi.c (bidi_find_paragraph_start): Callers of
870 find_newline_no_quit changed.
871
872 * msdos.c: Change encoding to cp850. (Bug#13879)
873 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
874
875 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
876
877 Coding system support cleanup and minor refactoring.
878 * coding.h (enum coding_result_code): Remove
879 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
880 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
881 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
882 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
883 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
884 (decode_coding_region, encode_coding_region, decode_coding_string):
885 Remove unused compatibility macros.
886 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
887 (record_conversion_result): Adjust user.
888 (syms_of_coding): Likewise.
889 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
890 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
891 (decode_coding_object): Simplify since xrealloc never returns NULL.
892 Add eassert.
893
894 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
895
896 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
897 * sysdep.c (list_system_processes)
898 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
899 Make it a stub in this case; otherwise the build might fail,
900 and this code hasn't been tested on such hosts anyway.
901 Problem reported by Nelson H. F. Beebe in
902 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
903 and analyzed by Jérémie Courrèges-Anglas in
904 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
905
906 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
907
908 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
909 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
910 (get_visually_first_element, move_it_vertically_backward): Ajust users.
911 * bidi.c (bidi_find_paragraph_start): Likewise.
912 * indent.c (vmotion): Likewise.
913
914 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
915
916 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
917 * filelock.c: Include <c-ctype.h>.
918 (MAX_LFINFO): New top-level constant.
919 (lock_info_type): Remove members pid, boot_time. Add members at,
920 dot, colon. Change user member to be the entire buffer, not a
921 pointer. This allows us to handle the case where a foreign
922 pid or boot time exceeds the local range. All uses changed.
923 (LINKS_MIGHT_NOT_WORK): New constant.
924 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
925 (defined_WINDOWSNT): Remove.
926 (MAKE_LOCK_NAME, file_in_lock_file_name):
927 Always use .#FILE (not .#-FILE) for the file lock,
928 even if it is a regular file.
929 (rename_lock_file): New function.
930 (create_lock_file): Use it.
931 (create_lock_file, read_lock_data):
932 Prefer a symbolic link for the lock file, falling back on a
933 regular file if symlinks don't work. Do not try to create
934 symlinks on MS-Windows, due to security hassles. Stick with
935 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
936 link, rename, unlink, mkstemp) when creating locks, as a GNUish
937 host may be using a Windowsish file system, and cannot use
938 MS-Windows-only system calls. Fall back on mktemp if mkstemp
939 doesn't work. Don't fail merely because of a symlink-contents
940 length limit in the current file system; fall back on regular
941 files. Increase the symlink contents length limit to 8 KiB, this
942 should be big enough for any real use and doesn't crunch the
943 stack.
944 (create_lock_file, lock_file_1, read_lock_data):
945 Simplify allocation of lock file buffers now that they fit in 8 KiB.
946 (lock_file_1): Return error number, not bool. All callers changed.
947 (ELOOP): New macro, if not already defined.
948 (read_lock_data): Return size of lock file contents, not Lisp object.
949 All callers changed. Handle a race condition if some other process
950 replaces a regular-file lock with a symlink lock or vice versa,
951 while we're trying to read the lock.
952 (current_lock_owner): Parse contents more carefully, to help avoid
953 confusing a regular-file lock with some other application's use
954 of the file. Check for lock file contents being too long, or
955 not parsing correctly.
956 (current_lock_owner, lock_file):
957 Allow foreign pid and boot times that exceed the local range.
958 (current_lock_owner, lock_if_free, lock_file):
959 Simplify allocation of lock file contents.
960 * w32.c (sys_rename_replace): New function, containing most of
961 the contents of the old sys_rename.
962 (sys_rename): Use it.
963 (fchmod): New dummy function.
964 * w32.h (sys_rename_replace, fchmod): New decls.
965
966 2013-03-05 Eli Zaretskii <eliz@gnu.org>
967
968 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
969 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
970 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
971 <dmantipov@yandex.ru>.
972
973 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
974
975 * composite.c (get_composition_id, fill_gstring_header):
976 Use make_uninit_vector where appropriate.
977 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
978 * xselect.c (clean_local_selection_data): Likewise.
979
980 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
981
982 Fix misuse of ImageMagick that caused core dump (Bug#13846).
983 * image.c (imagemagick_load_image): Calculate height and width
984 after flattening the image, not before.
985
986 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
987
988 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
989 * ftfont.c (ftfont_shape_by_flt): Likewise.
990 * w32uniscribe.c (uniscribe_shape): Likewise.
991
992 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
993
994 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
995 The old approach, which fell back on DIR/.#FILE.0 through
996 DIR/.#FILE.9, had race conditions that could not be easily fixed.
997 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
998 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
999 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
1000 because the locking mechanism was never reliable in that case).
1001 This patch fixes this and other bugs discovered by a code
1002 inspection that was prompted by
1003 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
1004 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
1005 to avoid interoperability problems between the MS-Windows and
1006 non-MS-Windows implementations. MS-Windows and non-MS-Windows
1007 instances of Emacs now ignore each others' locks.
1008 * filelock.c (defined_WINDOWSNT): New constant.
1009 (MAKE_LOCK_NAME, fill_in_lock_file_name):
1010 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
1011 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
1012 regular files on MS-Windows hosts.
1013 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
1014 Use SAFE_ALLOCA to avoid problems with long file names.
1015 (MAX_LFINFO): Now a local constant, not a global macro.
1016 (IS_LOCK_FILE): Remove.
1017 (lock_file_1): Don't inspect errno if symlink call succeeds;
1018 that's not portable.
1019 (lock_file): Document that this function can return if lock
1020 creation fails.
1021 (lock_file): Don't access freed storage.
1022
1023 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
1024
1025 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
1026
1027 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
1028
1029 * textprop.c: Use bool for booleans.
1030 (validate_interval_range, Fadd_text_properties)
1031 (Fremove_text_properties): Prefer bool to int when either works.
1032
1033 2013-03-02 Eli Zaretskii <eliz@gnu.org>
1034
1035 * textprop.c (Fadd_text_properties, Fremove_text_properties):
1036 If the interval tree changes as a side effect of calling
1037 modify_region, re-do processing starting from the call to
1038 validate_interval_range. (Bug#13743)
1039
1040 2013-02-28 Eli Zaretskii <eliz@gnu.org>
1041
1042 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
1043 (Bug#13546).
1044
1045 2013-02-27 Eli Zaretskii <eliz@gnu.org>
1046
1047 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
1048 _SH_DENYRW flag, instead of emacs_open, to deny any other process
1049 access to the lock file until it is written and closed.
1050 (Bug#13807)
1051
1052 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
1053
1054 * callint.c (Qcall_interactively):
1055 * macros.c (Qexecute_kbd_macro):
1056 Now static.
1057
1058 2013-02-26 Bastien Guerry <bzg@gnu.org>
1059
1060 * window.c (Frecenter): Tiny docstring enhancement.
1061
1062 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
1063
1064 Minor textprop integer cleanup.
1065 * intervals.h, textprop.c (add_text_properties_from_list):
1066 Return void, not int, since nobody uses the return value.
1067 * textprop.c (validate_plist, add_properties, remove_properties)
1068 (Fadd_text_properties):
1069 Don't assume list length fits in int.
1070 (interval_has_all_properties, interval_has_some_properties)
1071 (interval_has_some_properties_list, add_properties, remove_properties)
1072 (Fadd_text_properties, Fremove_text_properties)
1073 (Fremove_list_of_text_properties, text_property_stickiness):
1074 Use bool for booleans.
1075 (Fadd_text_properties, Fremove_text_properties):
1076 (Fremove_list_of_text_properties):
1077 Reindent do-while as per GNU style.
1078
1079 2013-02-25 Eli Zaretskii <eliz@gnu.org>
1080
1081 Implement CLASH_DETECTION for MS-Windows.
1082
1083 * filelock.c [WINDOWSNT]: Include w32.h.
1084 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
1085 function of that name. Up-case the macro arguments.
1086 (IS_LOCK_FILE): New macro.
1087 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
1088 (create_lock_file): New function, with body extracted from
1089 lock_file_1.
1090 [WINDOWSNT]: Implement lock files by writing a regular file with
1091 the lock information as its contents.
1092 (read_lock_data): New function, on Posix platforms just calls
1093 emacs_readlinkat.
1094 [WINDOWSNT]: Read the lock info from the file.
1095 (current_lock_owner): Call read_lock_data instead of calling
1096 emacs_readlinkat directly.
1097 (lock_file) [WINDOWSNT]: Run the file name through
1098 dostounix_filename.
1099
1100 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
1101 just check if the process by that PID exists.
1102
1103 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
1104 also present, as doing so will fail to error out if the file
1105 already exists.
1106
1107 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
1108
1109 * textprop.c (Fadd_text_properties, Fremove_text_properties)
1110 (Fremove_list_of_text_properties): Skip all of the intervals in
1111 the region between START and END that already have resp. don't
1112 have the requested properties, not just the first one.
1113 Add assertions that the loop afterwards always modifies the
1114 properties. (Bug#13743)
1115
1116 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
1117
1118 * callint.c (Fcall_interactively): Use the right lexical environment
1119 for `interactive' specs (bug#13811).
1120 * eval.c (Feval): Accept a lexical environment.
1121
1122 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
1123
1124 Simplify data_start configuration (Bug#13783).
1125 This is a followon simplification to the fix for Bug#13650.
1126 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
1127 (START_FILES): Remove. All uses removed.
1128 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
1129 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
1130 (buildobj.h): Use it.
1131 ($(ALLOBJS)): Depend on globals.h.
1132 (temacs$(EXEEXT)): Use $(ALLOBJS).
1133 * autodeps.mk (ALLOBJS): Move to Makefile.in.
1134 * deps.mk (vm-limit.o):
1135 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
1136 Do not depend on mem-limits.h.
1137 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
1138 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
1139 [__GNUC__ && !ORDINARY_LINK]: Remove.
1140 * mem-limits.h, pre-crt0.c: Remove.
1141 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
1142 * unexcoff.c (etext): New decl.
1143 (make_hdr): Use DATA_START instead of start_of_data.
1144 * vm-limit.c: Move most of mem-limits.h's contents here.
1145 (data_start): New decl. It's OK if this is approximate,
1146 so simplify-away some unnecessary exactness.
1147 (POINTER): Remove; all uses removed.
1148 (data_space_start): Now char *, to avoid casts.
1149 (exceeds_lisp_ptr): New function, replacing the old
1150 EXCEEDS_LISP_PTR macro. All uses changed.
1151 (check_memory_limits): Simplify and remove casts.
1152 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
1153 (memory_warnings): Use data_start instead of start_of_data.
1154
1155 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
1156
1157 * xdisp.c (set_message): Only check for debug-on-message if STRING
1158 is a string. (Bug#13797)
1159
1160 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
1161
1162 Fix regression introduced by July 10 filelock.c patch.
1163 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
1164 2012-07-10 patch to this file. Reported by Eli Zaretskii in
1165 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
1166 and diagnosed by Andreas Schwab in
1167 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
1168
1169 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
1170
1171 Assume C89 or better.
1172 * ralloc.c (SIZE, POINTER, NIL):
1173 * vm-limit.c (POINTER):
1174 Remove, replacing all uses with C89 equivalents. These old
1175 symbols were present only for porting to pre-C89 platforms.
1176
1177 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
1178
1179 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
1180 This avoids warning messages reported as part of Bug#13546.
1181
1182 2013-02-21 Ken Brown <kbrown@cornell.edu>
1183
1184 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
1185
1186 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
1187
1188 * sheap.c (report_sheap_usage): Prefer message1_nolog.
1189
1190 * keyboard.c (Qcommand_execute): New var.
1191 (command_loop_1, read_char): Use it.
1192 (Fcommand_execute): Remove, replace by an Elisp implementation.
1193 (syms_of_keyboard): Adjust accordingly.
1194
1195 2013-02-19 Daniel Colascione <dancol@dancol.org>
1196
1197 * sheap.c (report_sheap_usage): Use message, not message1, so
1198 that we don't try to create a buffer while we're in the middle
1199 of dumping Emacs. Explain why.
1200
1201 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
1202
1203 * search.c (find_newline): Return byte position in bytepos.
1204 Adjust comment.
1205 (find_next_newline_no_quit, find_before_next_newline):
1206 Add bytepos argument.
1207 * lisp.h (find_newline, find_next_newline_no_quit)
1208 (find_before_next_newline): Adjust prototypes.
1209 * bidi.c (bidi_find_paragraph_start):
1210 * editfns.c (Fconstrain_to_field, Fline_end_position):
1211 * indent.c (compute_motion, vmotion):
1212 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
1213 (get_visually_first_element, move_it_vertically_backward):
1214 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
1215
1216 2013-02-19 Eli Zaretskii <eliz@gnu.org>
1217
1218 * w32proc.c (new_child): Avoid leaking handles if the subprocess
1219 resources were not orderly released.
1220
1221 2013-02-17 Eli Zaretskii <eliz@gnu.org>
1222
1223 * xdisp.c (x_draw_vertical_border): For a window that is neither
1224 the leftmost nor the rightmost, redraw both the left and the right
1225 vertical borders. (Bug#13723)
1226
1227 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
1228
1229 * xml.c (init_libxml2_functions):
1230 * sound.c (sound_warning):
1231 * sheap.c (report_sheap_usage):
1232 * process.c (wait_reading_process_output):
1233 * msdos.c (XMenuActivate):
1234 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
1235 * keyboard.c (top_level_1):
1236 * editfns.c (Fmessage, Fmessage_box):
1237 * callint.c (Fcall_interactively):
1238 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
1239
1240 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
1241
1242 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
1243 * frame.c (syms_of_frame): ... to here.
1244
1245 2013-02-16 Eli Zaretskii <eliz@gnu.org>
1246
1247 * w32.c (sys_chown): Remove unused function.
1248
1249 * w32term.c <input_signal_count>: Declare 'volatile'
1250 unconditionally. (Bug#9066)
1251
1252 * w32.c (set_errno): Reset h_errno and don't set it to any other
1253 value. Set errno instead.
1254 (check_errno): Reset h_errno.
1255 (sys_socket, socket_to_fd, sys_bind, sys_connect)
1256 (sys_gethostname, sys_getservbyname, sys_getpeername)
1257 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
1258 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
1259 h_errno.
1260 (sys_gethostbyname): Set h_errno only errors detected.
1261
1262 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
1263
1264 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
1265
1266 2013-02-15 Eli Zaretskii <eliz@gnu.org>
1267
1268 * keyboard.c (read_char): Fix calculation of auto-save time out
1269 when auto-save-timeout is less than 4. (Bug#13720)
1270
1271 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
1272 time. Improve diagnostics in DebPrint. (Bug#13546)
1273
1274 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
1275 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
1276 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
1277 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
1278 make sure errno is set to an appropriate value. (Bug#13546)
1279 (socket_to_fd): Add assertion against indexing fd_info[] with a
1280 value that is out of bounds.
1281 (sys_accept): If fd is negative, do not set up the child_process
1282 structure for reading.
1283
1284 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
1285
1286 * composite.c (fill_gstring_header): Remove useless prototype.
1287 Break long line.
1288 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
1289 * print.c (PRINTDECLARE, print_object):
1290 * search.c (compile_pattern, fast_looking_at, search_buffer):
1291 (simple_search, boyer_moore, Freplace_match):
1292 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
1293 (get_overlay_arrow_glyph_row, display_mode_element):
1294 (decode_mode_spec_coding, message3):
1295 * xfaces.c (face_at_string_position): Use bool for booleans.
1296 Adjust comments.
1297
1298 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
1299
1300 Fix AIX port (Bug#13650).
1301 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
1302 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
1303 was #undeffed earlier, so it cannot be used as a macro here.
1304 Use the constant and not the macro.
1305
1306 2013-02-15 Eli Zaretskii <eliz@gnu.org>
1307
1308 * w32proc.c (new_child): If no vacant slots are found in
1309 child_procs[], make another pass looking for slots whose process
1310 has exited or died. (Bug#13546)
1311
1312 * w32.c (sys_pipe): When failing due to file descriptors above
1313 MAXDESC, set errno to EMFILE.
1314 (_sys_read_ahead): Update cp->status when failing to read serial
1315 communications input, so that the status doesn't stay at
1316 STATUS_READ_IN_PROGRESS. (Bug#13546)
1317
1318 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
1319
1320 * gtkutil.c (tb_size_cb): New function.
1321 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
1322
1323 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
1324
1325 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
1326 an event.
1327
1328 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
1329
1330 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
1331
1332 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
1333
1334 * font.c (font_range): Add pos_byte argument. Adjust comment
1335 and break long line.
1336 * font.h (font_range): Adjust prototype.
1337 * composite.c (autocmp_chars): Pass byte position to font_range.
1338 Break long line. Remove useless prototype and format comment.
1339
1340 2013-02-13 Glenn Morris <rgm@gnu.org>
1341
1342 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
1343
1344 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
1345
1346 Improve AIX port some more (Bug#13650).
1347 With this, it should be as good as it was in 23.3, though it's
1348 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
1349 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
1350 * unexaix.c (start_of_text): Remove.
1351 (_data, _text): Declare as char[], not int, as AIX manual suggests.
1352 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
1353 (orig_load_scnptr, orig_data_scnptr):
1354 Now off_t, not long, since they are file offsets.
1355 (make_hdr): Use _data, not start_of_data ().
1356 This is the key part of the fix.
1357 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
1358 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
1359
1360 * pre-crt0.c (data_start): Initialize to 1.
1361 This ports to compilers that optimize the external declaration
1362 'int x = 0;' as if it were 'int x;' to shrink the executable.
1363
1364 Improve AIX port (Bug#13650).
1365 This doesn't fix the bug, but it makes progress: Emacs builds now.
1366 * unexaix.c: Include inttypes.h, stdarg.h.
1367 (report_error, report_error_1): Mark as _Noreturn.
1368 (report_error): Don't report the wrong errno.
1369 (report_error_1): Now varargs. All callers changed.
1370 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
1371 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
1372 (write_ptr): Use %p to print address rather than %lx and a cast
1373 to unsigned long. Grow buffer a bit, to be safer.
1374
1375 2013-02-13 Eli Zaretskii <eliz@gnu.org>
1376
1377 * bidi.c (bidi_resolve_neutral): After finding the next
1378 non-neutral character, accept NEUTRAL_ON type as well, because
1379 directional control characters, such as LRE and RLE, have their
1380 type converted to that by bidi_resolve_weak. This avoids aborts
1381 when LRE/RLE follows a run of neutrals.
1382 (bidi_move_to_visually_next): Assert that return value of
1383 bidi_peek_at_next_level is non-negative. Negative values will
1384 cause an infloop.
1385
1386 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
1387
1388 Minor getenv-related fixes.
1389 * callproc.c (Fcall_process_region) [!DOS_NT]:
1390 Avoid unnecessary duplicate call to getenv.
1391 * callproc.c (init_callproc):
1392 * dispnew.c (init_display):
1393 * sysdep.c (sys_subshell):
1394 Omit unnecessary cast of getenv or egetenv.
1395
1396 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
1397
1398 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
1399 Update dependencies.
1400
1401 2013-02-12 Eli Zaretskii <eliz@gnu.org>
1402
1403 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
1404 marker's position.
1405 (display_line): Set w->region_showing to the value of
1406 it->region_beg_charpos, not to -1. This fixes redisplay
1407 optimization when cursor is moved up after M->. (Bug#13623)
1408 (Bug#13626)
1409 (try_scrolling): Scroll text up more if point is too close to ZV
1410 and inside the scroll margin. This makes sure point is moved
1411 outside the scroll margin in these cases.
1412
1413 * window.h (struct window): region_showing can no longer be
1414 negative.
1415
1416 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
1417
1418 Tune by using memchr and memrchr.
1419 * doc.c (Fsnarf_documentation):
1420 * fileio.c (Fsubstitute_in_file_name):
1421 * search.c (find_newline, scan_newline):
1422 * xdisp.c (pos_visible_p, display_count_lines):
1423 Use memchr and memrchr rather than scanning byte-by-byte.
1424 * search.c (find_newline): Rename from scan_buffer.
1425 Omit first arg TARGET, as it's always '\n'. All callers changed.
1426
1427 Clean up read_key_sequence a tiny bit more.
1428 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
1429 (read_key_sequence): Remove unused locals.
1430
1431 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
1432
1433 Clean up read_key_sequence a bit; reread active keymaps after first event.
1434 * keyboard.c (read_char, read_char_x_menu_prompt)
1435 (read_char_minibuf_menu_prompt):
1436 Replace nmaps+maps with a single `map' arg.
1437 (follow_key): Operate on a single map.
1438 (active_maps): New function.
1439 (test_undefined): Also return true for nil bindings.
1440 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
1441 a single (composed) keymap. Remember `first_event' to choose the right
1442 set of active keymaps. Recompute the set of keymaps after receiving
1443 the first event. Remove GOBBLE_FIRST_EVENT.
1444 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
1445 * keyboard.h (read_char): Update declaration.
1446 * lread.c (read_filtered_event): Adjust call to read_char.
1447
1448 2013-02-11 Eli Zaretskii <eliz@gnu.org>
1449
1450 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
1451 Don't use the limitation on backwards movement when lines are truncated
1452 in the window. (Bug#13675)
1453
1454 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
1455
1456 * marker.c (set_marker_internal): If desired position is passed
1457 as a marker, avoid call to buf_charpos_to_bytepos.
1458 * window.c (Fset_window_point): Omit redundant type checking.
1459 (Fset_window_start): Likewise. Format comment.
1460 (window_scroll_pixel_based): Use set_marker_restricted_both
1461 with character and byte positions obtained from an iterator.
1462 (Fset_window_configuration): Use set_marker_restricted_both.
1463 * xdisp.c (message_dolog): Likewise.
1464
1465 2013-02-10 Eli Zaretskii <eliz@gnu.org>
1466
1467 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
1468 When text lines are longer than window's screen lines, don't move back
1469 too far. This speeds up some redisplay operations. (Bug#13675)
1470
1471 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
1472
1473 * syntax.c (scan_sexps_forward): Fix byte position calculation
1474 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
1475
1476 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
1477
1478 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
1479 that was not needed.
1480
1481 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
1482
1483 Minor hashing refactoring.
1484 * fns.c (SXHASH_REDUCE): Move to lisp.h.
1485 (sxhash_float): Return EMACS_UINT, for consistency with the other
1486 hash functions.
1487 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
1488 non-static inline function and therefore can't use static vars.
1489 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
1490 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
1491 with the other hash functions.
1492
1493 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1494
1495 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
1496 XXXXXX part of the temporary file pattern is not downcased even
1497 when w32-downcase-file-names is non-nil. (Bug#13661)
1498
1499 * xdisp.c (decode_mode_spec): Remove handling of %t.
1500
1501 * msdos.c (careadlinkatcwd): Remove.
1502
1503 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1504
1505 * lread.c (skip_dyn_bytes): New function (bug#12598).
1506 (read1): Use it. Use getc instead of READCHAR to read bytes.
1507 (load_each_byte): Remove. Update users.
1508
1509 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1510
1511 * search.c (scan_buffer): Calculate end byte position just once.
1512 (scan_newline): Do not recalculate start_byte.
1513 (search_command): Use eassert.
1514 * syntax.c (struct lisp_parse_state): New member location_byte.
1515 (scan_sexps_forward): Record from_byte and avoid redundant
1516 character to byte position calculation ...
1517 (Fparse_partial_sexp): ... here. Break too long line.
1518
1519 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1520
1521 * lisp.h (make_uninit_vector): New function.
1522 * alloc.c (Fvector, Fmake_byte_code):
1523 * ccl.c (Fregister_ccl_program):
1524 * charset.c (Fdefine_charset_internal, define_charset_internal):
1525 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
1526 * composite.c (syms_of_composite):
1527 * font.c (Fquery_font, Ffont_info, syms_of_font):
1528 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
1529 * ftfont.c (ftfont_shape_by_flt):
1530 * indent.c (recompute_width_table):
1531 * nsselect.m (clean_local_selection_data):
1532 * syntax.c (init_syntax_once):
1533 * w32unsubscribe.c (uniscribe_shape):
1534 * window.c (Fcurrent_window_configuration):
1535 * xfaces.c (Fx_family_fonts):
1536 * xselect.c (selection_data_to_lisp_data): Use it.
1537
1538 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
1539
1540 * coding.c (Fdefine_coding_system_internal): Use AREF where
1541 argument is known to be a vector.
1542 * fns.c (Flocale_info): Likewise for ASET.
1543 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
1544 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
1545
1546 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1547
1548 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
1549 height.
1550
1551 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
1552 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
1553 updateCollectionBehaviour.
1554
1555 * nsterm.m (NEW_STYLE_FS): Remove.
1556 (ns_last_use_native_fullscreen): New variable.
1557 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
1558 (x_set_window_size): Do not take title bar and tool bar into account
1559 if isFullscreen returns YES.
1560 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
1561 (check_native_fs): New function.
1562 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
1563 (ns_term_init): Remove NEW_STYLE_FS.
1564 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
1565 and tool bar if isFullscreen returns NO.
1566 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
1567 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
1568 with HAVE_NATIVE_FS.
1569 (window:willUseFullScreenPresentationOptions:): New method.
1570 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
1571 Hide toolbar if not enabled (Bug#13444).
1572 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
1573 Restore tool bar if enabled, hide it otherwise (Bug#13444).
1574 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
1575 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
1576 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
1577 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
1578 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
1579 (syms_of_nsterm): Add ns-use-native-fullscreen.
1580
1581 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
1582
1583 * fileio.c (Qchoose_write_coding_system): Now static.
1584
1585 2013-02-04 Eli Zaretskii <eliz@gnu.org>
1586
1587 * xdisp.c (window_buffer_changed): region_showing can be negative,
1588 which still means region is being displayed.
1589 (redisplay_internal): Resurrect code that forced redisplay of the
1590 whole window when showing region and the mark has changed.
1591 Record the new mark position to allow redisplay optimizations.
1592 (display_line): If it->region_beg_charpos is non-zero, set the
1593 window's region_showing member to -1. (Bug#13623) (Bug#13626)
1594
1595 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
1596 not bitfield of 1 bit.
1597
1598 2013-02-03 Daniel Colascione <dancol@dancol.org>
1599
1600 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
1601 daemon mode works on cygw32 when Emacs is installed and not just
1602 during development.
1603
1604 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
1605
1606 Avoid file time stamp bug on MS-Windows (Bug#13149).
1607 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
1608 as FAT32 doesn't update time stamps when truncating them.
1609 Also, check that a file time stamp is not a multiple of 100 ns;
1610 this should catch all instances of the problem on MS-Windows,
1611 as its native file system resolution is 100 ns or worse, and
1612 checking for a non-multiple of 100 ns should impose only a small
1613 overhead on systems with ns resolution.
1614
1615 2013-02-02 Eli Zaretskii <eliz@gnu.org>
1616
1617 Avoid encoding file names on MS-Windows when they need to be run
1618 through dostounix_filename.
1619 * w32.c (normalize_filename): Accept an additional argument
1620 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
1621 downcase it even if w32-downcase-file-names is non-nil.
1622 (dostounix_filename): Accept an additional argument MULTIBYTE and
1623 pass it to normalize_filename.
1624 (emacs_root_dir): Adjust.
1625
1626 * msdos.h (dostounix_filename): Adjust prototype.
1627
1628 * w32.h (dostounix_filename): Adjust prototype.
1629
1630 * msdos.c (dostounix_filename): Accept an additional argument and
1631 ignore it.
1632 (init_environment): Adjust callers of dostounix_filename.
1633
1634 * fileio.c (Ffile_name_directory, file_name_as_directory)
1635 (directory_file_name, Fexpand_file_name)
1636 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
1637 dostounix_filename.
1638 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
1639 non-nil.
1640 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
1641 variables, as egetenv is case-insensitive for DOS_NT.
1642
1643 * dired.c (file_name_completion): Don't call Fdirectory_file_name
1644 with an encoded file name.
1645
1646 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
1647 Adjust calls to dostounix_filename.
1648
1649 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
1650
1651 * unexw32.c (unexec): Adjust call to dostounix_filename.
1652
1653 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
1654
1655 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
1656 dostounix_filename.
1657
1658 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
1659 dostounix_filename.
1660
1661 * callproc.c (Fcall_process): Make sure program name in PATH and
1662 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
1663 is passed to exec/spawnve, which fails unless the file-name
1664 encoding is UTF-8.
1665
1666 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
1667 even if w32-quote-process-args is nil.
1668
1669 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1670
1671 Fix timestamp bug when write-region appends nothing (Bug#13149).
1672 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
1673 the file's time stamp doesn't change if Emacs happens to write nothing
1674 to the file, and on a buggy file system this could cause Emacs to
1675 incorrectly infer that the file system doesn't have the bug.
1676 Avoid this problem by inhibiting the inference in this case.
1677
1678 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
1679
1680 * window.h (struct window): Convert base_line_number, base_line_pos
1681 and column_number_displayed members from Lisp_Object to ptrdiff_t.
1682 Convert region_showing member from Lisp_Object to bitfield.
1683 Remove sequence_number member. Adjust comments.
1684 * window.c (sequence_number): Remove.
1685 (make_window): Initialize column_number_displayed.
1686 * print.c (print_object): Follow the printed representation of
1687 frames and print window pointer to distinguish between windows.
1688 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
1689 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1690 (wset_column_number_displayed, wset_region_showing): Remove.
1691 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
1692 (try_scrolling, try_cursor_movement, redisplay_window)
1693 (try_window_reusing_current_matrix, try_window_id, display_line)
1694 (display_mode_lines, decode_mode_spec): Adjust users.
1695 * .gdbinit (pwinx): Do not print sequence_number.
1696
1697 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1698
1699 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
1700 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
1701 * dired.c: Include <fcntl.h>.
1702 (open_directory): New function, which uses open and fdopendir
1703 rather than opendir. DOS_NT platforms still use opendir, though.
1704 (directory_files_internal, file_name_completion): Use it.
1705 (file_attributes): New function, with most of the old Ffile_attributes.
1706 (directory_files_internal, Ffile_attributes): Use it.
1707 (file_attributes, file_name_completion_stat): First arg is now fd,
1708 not dir name. All uses changed. Use fstatat rather than lstat +
1709 stat.
1710 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
1711 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
1712 (emacs_readlinkat): New function, with much of the old
1713 Ffile_symlink_p, but with an fd argument for speed.
1714 It uses readlinkat rather than careadlinkatcwd, so that it
1715 need not assume the working directory.
1716 (Ffile_symlink_p): Use it.
1717 * filelock.c (current_lock_owner): Use emacs_readlinkat
1718 rather than emacs_readlink.
1719 * lisp.h (emacs_readlinkat): New decl.
1720 (READLINK_BUFSIZE, emacs_readlink): Remove.
1721 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
1722 (emacs_norealloc_allocator, emacs_readlink): Remove.
1723 This stuff is moved to fileio.c.
1724 * w32.c (fstatat, readlinkat): New functions.
1725 (careadlinkat): Don't check that fd == AT_FDCWD.
1726 (careadlinkatcwd): Remove; no longer needed.
1727
1728 2013-01-31 Glenn Morris <rgm@gnu.org>
1729
1730 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
1731 (Fwrite_region): Update for new choose_write_coding_system args.
1732 Move the last piece of choose_write_coding_system here. (Bug#13522)
1733 (syms_of_fileio): Add choose-write-coding-system.
1734
1735 2013-01-30 Eli Zaretskii <eliz@gnu.org>
1736
1737 * w32.c (sys_open): Zero out the flags for the new file descriptor.
1738 (sys_close): Zero out the flags for the file descriptor before
1739 closing it. (Bug#13546)
1740
1741 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
1742 (logon_network_drive, stat_worker, symlink, chase_symlinks):
1743 Use CharNextExA and CharPrevExA to iterate over file names encoded in
1744 DBCS. (Bug#13553)
1745
1746 * w32.c (w32_get_long_filename, init_environment, readlink):
1747 Support file names encoded in DBCS codepages.
1748 (readlink): Use the current file-name-coding-system, not the ANSI
1749 codepage, to decode and handle targets of symlinks.
1750
1751 2013-01-28 Eli Zaretskii <eliz@gnu.org>
1752
1753 * w32.c (opendir): Now accepts a 'const char *'.
1754
1755 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
1756
1757 Remove obsolete redisplay code. See the discussion at
1758 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
1759 * dispnew.c (preemption_period, preemption_next_check): Remove.
1760 (Vredisplay_preemption_period): Likewise.
1761 (update_frame, update_single_window, update_window, update_frame_1):
1762 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
1763 used, following the 2012-06-22 change.
1764
1765 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1766
1767 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
1768
1769 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1770
1771 * font.c (num_fonts): Remove the leftover from old
1772 debugging code. Adjust comment style here and there.
1773 * insdel.c (insert_1): Remove.
1774 * lisp.h (insert_1): Remove prototype.
1775 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
1776
1777 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1778
1779 * w32.c (max_filename_mbslen): New function.
1780 (normalize_filename, readdir): Use it to detect locales where ANSI
1781 encoding of file names uses a double-byte character set (DBCS).
1782 If a DBCS encoding is used, advance by characters using
1783 CharNextExA, instead of incrementing a 'char *' pointer.
1784 Use _mbslwr instead of _strlwr. (Bug#13515)
1785
1786 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
1787 request of memory reservation to 1.7GB. (Bug#13065)
1788
1789 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
1790
1791 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
1792 at check_extra_latin label. (Bug#13505)
1793
1794 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1795
1796 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
1797 Avoid redundant calls to strlen.
1798
1799 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1800
1801 Drop async_visible and async_iconified fields of struct frame.
1802 This is possible because async input is gone; for details, see
1803 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
1804 * frame.h (struct frame): Remove async_visible and async_iconified
1805 members, convert garbaged to unsigned bitfield. Adjust comments.
1806 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
1807 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
1808 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
1809 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
1810 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
1811 * w32term.c: Ditto.
1812 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
1813 properly. Likewise for obscured.
1814 * xterm.c: Ditto.
1815 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
1816 properly.
1817 * nsterm.m: Ditto.
1818 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
1819
1820 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1821
1822 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
1823 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
1824
1825 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1826
1827 * xdisp.c (message2, message2_nolog): Remove functions.
1828 (message3, message3_nolog): Extract nbytes and multibyteness directly
1829 from the string. Change all callers.
1830 (message3_nolog): Don't set message_enable_multibyte since set_message
1831 will reset it anyway.
1832 (message1, message1_nolog): Use message3.
1833 (vmessage): Use a stack allocated buffer rather than f->message_buf.
1834 (with_echo_area_buffer): Remove last two arguments. Update all callers.
1835 (set_message): Drop all but the second arg, which has to be a string.
1836 (set_message_1): Simplify now that we know that a1 is NULL and the
1837 second arg is a string.
1838 * frame.h (struct frame): Remove `message_buf' field.
1839 Use glyphs_initialized_p instead.
1840 (FRAME_MESSAGE_BUF): Remove macro.
1841 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
1842 * lisp.h (message2, message2_nolog): Remove declarations.
1843 (message3, message3_nolog): Update declarations.
1844 * keyboard.c (read_char_minibuf_menu_text)
1845 (read_char_minibuf_menu_width): Remove vars.
1846 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
1847 to correctly handle multibyte strings.
1848 * frame.c (delete_frame): Don't free message_buf any more.
1849 * editfns.c (message_text, message_length): Remove vars.
1850 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
1851 * fileio.c (auto_save_error): Use message3 instead of message2.
1852 * dispnew.c (adjust_frame_message_buffer): Remove function.
1853
1854 2013-01-23 Eli Zaretskii <eliz@gnu.org>
1855
1856 * w32term.c (w32fullscreen_hook): Account correctly for the screen
1857 real estate used for the tool bar and the menu bar.
1858
1859 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1860
1861 * insdel.c (prepare_to_modify_buffer): Force redisplay if
1862 hidden buffer is prepared to modification (Bug#13164).
1863
1864 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1865
1866 * window.h (struct window): Change window_end_valid member from
1867 Lisp_Object to a bitfield. Adjust comments.
1868 (wset_window_end_valid): Remove.
1869 * window.c (adjust_window_count): Clear window_end_valid.
1870 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
1871 (Fwindow_line_height, set_window_buffer, Frecenter)
1872 (Fsplit_window_internal, Fdelete_other_windows_internal)
1873 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
1874 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
1875 * xdisp.c (check_window_end, reconsider_clip_changes)
1876 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
1877 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
1878 (find_first_unchanged_at_end_row, try_window_id): Likewise.
1879
1880 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1881
1882 * xdisp.c (mark_window_display_accurate): Simplify the loop
1883 assuming that the only one of vchild, hchild or buffer window
1884 slots is non-nil. Call mark_window_display_accurate_1 for
1885 the leaf windows only.
1886 (mark_window_display_accurate_1): Always assume leaf window.
1887 Adjust comment.
1888
1889 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1890
1891 * emacs.c (Qkill_emacs_hook): Now static.
1892
1893 * fileio.c (Finsert_file_contents): Simplify.
1894 Remove unnecessary assignments and tests.
1895
1896 2013-01-21 Eli Zaretskii <eliz@gnu.org>
1897
1898 * w32.c (acl_set_file): Don't test for errors unless
1899 set_file_security returns FALSE. Avoids spurious errors when
1900 saving files.
1901
1902 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1903
1904 * fileio.c (Finsert_file_contents): Revert code introduced at
1905 2013-01-18 in favor of the simpler and generally better fix.
1906 Save stack space by removing 'buffer' and reusing 'read_buf'
1907 where appropriate.
1908
1909 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1910
1911 * lisp.h (eabs): Define unconditionally (Bug#13419).
1912 The old "#if !defined (eabs)" was an unnecessary revenant of back
1913 when this macro was called "abs". Document 'eabs' better.
1914
1915 2013-01-19 Glenn Morris <rgm@gnu.org>
1916
1917 * fns.c (Frandom): Doc fix.
1918
1919 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1920
1921 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1922 segfault when there are lots of overlays.
1923
1924 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1925 when there are lots of overlays.
1926 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1927 for the details and a way to reproduce.
1928
1929 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1930
1931 * fileio.c: Use O_APPEND to append.
1932 This corresponds better to the natural interpretation of "append",
1933 and avoids the need to open the output file twice, or to invoke
1934 lseek when APPEND is neither nil nor a number.
1935 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1936 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1937 file possibly twice, and lseeking to its end; this avoids the
1938 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1939 at the same time: the combination is never needed and apparently
1940 it doesn't work with DOS_NT.
1941
1942 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1943 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1944
1945 Allow floating-point file offsets.
1946 Problem reported by Vitalie Spinu in
1947 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1948 * fileio.c (emacs_lseek): Remove.
1949 (file_offset): New function.
1950 (Finsert_file_contents, Fwrite_region): Use it.
1951
1952 2013-01-19 Chong Yidong <cyd@gnu.org>
1953
1954 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1955 aborting on Fsignal (Bug#13289).
1956
1957 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1958
1959 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1960 set_file_security as failure due to insufficient privileges.
1961 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1962 (fstat): Return owner and group like 'stat' and 'lstat' do.
1963
1964 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1965
1966 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1967 The bug was observed on Ubuntu operating inside a virtual machine,
1968 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1969 The workaround introduces a race condition on non-buggy hosts,
1970 but it's an unlikely race and anyway there's a nearly identical
1971 nearby race that can't be fixed.
1972 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1973 New static vars.
1974 (Fwrite_region): Test for file system time stamp bug.
1975 (init_fileio): New function.
1976 * lisp.h (init_fileio): Declare it.
1977 * emacs.c (main): Call it.
1978
1979 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1980 and make it more consistent with other stat-failure diagnostics.
1981
1982 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1983
1984 Fix crash when inserting data from non-regular files.
1985 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1986 for the error description produced by valgrind.
1987 * fileio.c (read_non_regular): Rename to read_contents.
1988 Free Lisp_Save_Value object used to pass parameters.
1989 (read_non_regular_quit): Rename to read_contents_quit.
1990 (Finsert_file_contents): Redesign internal file reading loop to adjust
1991 gap and end positions after each read and so help make_gap to work
1992 properly. Do not signal an I/O error too early and so do not leave
1993 not yet decoded characters in a buffer, which was the reason of
1994 redisplay crash. Use list2 to build return value. Adjust comments.
1995
1996 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1997
1998 Close a race when statting and reading files (Bug#13149).
1999 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
2000 This avoids a race if the file is renamed between stat and open.
2001 This race is not the problem originally noted in Bug#13149;
2002 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
2003
2004 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2005
2006 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
2007 objects, related functions and macros.
2008 (make_save_value): Adjust prototype.
2009 (make_save_pointer): New prototype.
2010 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
2011 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
2012 * alloc.c (format_save_value): Rename to make_save_value.
2013 (make_save_pointer): New function.
2014 (record_xmalloc): Use make_save_pointer.
2015 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
2016 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
2017 Change users of make_save_value to make_save_pointer.
2018 Likewise for format_save_value and make_save_value.
2019
2020 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
2021
2022 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
2023 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
2024 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
2025 debugging stubs.
2026
2027 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
2028
2029 * alloc.c (free_save_value): Now static.
2030
2031 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2032
2033 * keymap.c (map_keymap_internal): Use format_save_value.
2034 (map_keymap_char_table_item): Adjust accordingly.
2035 * fileio.c (non_regular_fd, non_regular_inserted)
2036 (non_regular_nbytes): Remove.
2037 (Finsert_file_contents): Convert trytry to ptrdiff_t.
2038 Use format_save_value to pass parameters to read_non_regular.
2039 (read_non_regular): Use XSAVE_ macros to extract parameters.
2040 Adjust comment.
2041 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
2042 format_save_value.
2043 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
2044
2045 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2046
2047 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
2048 extraction from any Lisp_Save_Value slot. Add type checking.
2049 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
2050 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
2051 * xselect.c: All users changed.
2052
2053 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
2054
2055 Some convenient bits to deal with Lisp_Save_Values.
2056 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
2057 (allocate_misc): Remove prototype.
2058 (format_save_value): New prototype.
2059 * alloc.c (allocate_misc): Revert back to static.
2060 (format_save_value): New function to build Lisp_Save_Value
2061 object with the specified internal structure.
2062 (make_save_value): Reimplement using format_save_value.
2063 * editfns.c (save_excursion_save): Use format_save_value.
2064 (save_excursion_restore): Use XSAVE_OBJECT.
2065
2066 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
2067
2068 Avoid needless casts with XSAVE_POINTER.
2069 * alloc.c (mark_object) [GC_MARK_STACK]:
2070 * dired.c (directory_files_internal_unwind):
2071 * fileio.c (do_auto_save_unwind):
2072 * gtkutil.c (pop_down_dialog):
2073 * keymap.c (map_keymap_char_table_item):
2074 * lread.c (load_unwind):
2075 * nsmenu.m (pop_down_menu):
2076 * print.c (print_object) [GC_MARK_STACK]:
2077 * xfns.c (clean_up_file_dialog):
2078 * xmenu.c (cleanup_widget_value_tree):
2079 Omit casts between XSAVE_POINTER and a pointer type.
2080
2081 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
2082
2083 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
2084 * eval.c (eval_sub): Protect `form' from being GCed before its
2085 car and cdr becomes protected with the backtrace entry.
2086
2087 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
2088
2089 Make Lisp_Save_Value more versatile storage for up to four objects.
2090 * lisp.h (toplevel): Enumeration to describe types of saved objects.
2091 (struct Lisp_Save_Value): New layout. Adjust comments.
2092 (XSAVE_POINTER): New macro.
2093 (XSAVE_INTEGER): Likewise.
2094 (allocate_misc): Add prototype.
2095 (free_misc): Likewise.
2096 * alloc.c (allocate_misc): Now global.
2097 (free_misc): Likewise. Adjust comment.
2098 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
2099 (free_save_value): Likewise.
2100 (mark_object): Likewise.
2101 * editfns.c (save_excursion_save): Pack everything within
2102 Lisp_Save_Value and so avoid xmalloc.
2103 (save_excursion_restore): Adjust to match new layout. Use free_misc
2104 because we do not allocate extra memory any more. Add eassert.
2105 * print.c (print_object): New code to print Lisp_Save_Value. Do not
2106 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
2107 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
2108 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
2109 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
2110
2111 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
2112
2113 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
2114 (nsfont_draw): Remove disabling of LCD smoothing.
2115 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
2116 Bug#11484 with LCD smoothing on.
2117
2118 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
2119
2120 Fix SIGDANGER handlers, for AIX (Bug#13408).
2121 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
2122 Move handlers here from emacs.c; they were out of place.
2123
2124 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
2125
2126 * xterm.c (syms_of_xterm): Adjust documentation for
2127 scroll-bar-adjust-thumb-portion.
2128
2129 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
2130
2131 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
2132 determine whether scroll bar thumb size should be adjusted or
2133 not. Use variable for MOTIF.
2134
2135 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
2136 GTK.
2137
2138 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
2139
2140 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
2141 event is generated.
2142 (doCommandBySelector:): Set processingCompose to NO.
2143
2144 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
2145 Remove check for fkeys count > zero, block/unblock fixes the real bug.
2146 (nsfont_list_family): Add block/unblock_input calls.
2147 (nsfont_open): Move block_input earlier. Add unblock_input before early
2148 return.
2149 (nsfont_draw): Add block/unblock_input calls.
2150
2151 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
2152
2153 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
2154 for old_charpos and old_bytepos.
2155
2156 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
2157
2158 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
2159 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
2160 Clear tzvalbuf_in_environ if this workaround is in effect.
2161 Problem and fix reported by Kazuhiro Ito.
2162
2163 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
2164
2165 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
2166 Fix ambiguous doc string cross-reference(s).
2167
2168 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
2169 doc string cross-reference(s).
2170
2171 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
2172 string cross-reference(s).
2173
2174 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
2175
2176 Avoid unnecessary byte position calculation for the gap movement.
2177 Since all users of move_gap do CHAR_TO_BYTE for other purposes
2178 anyway, all of them should use move_gap_both instead.
2179 * lisp.h (move_gap): Remove prototype.
2180 * insdel.c (move_gap): Remove.
2181 (move_gap_both): Add eassert.
2182 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
2183 * xml.c (parse_region): Likewise.
2184
2185 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
2186
2187 emacsclient -t should not suspend Emacs server (Bug#13387)
2188 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
2189 New functions.
2190 * term.c (init_tty): Use them instead of rolling our own code.
2191 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
2192 switches from 'signal' to 'pthread_sigmask', which is safer in
2193 multithreaded applications.
2194 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
2195 which has already arranged for that.
2196 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
2197 This is the main part of the bug fix.
2198
2199 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
2200
2201 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
2202 x_last_font_name (Bug#13403).
2203
2204 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
2205
2206 Omit buffer_slot_type_mismatch and use generic predicates to enforce
2207 the type of per-buffer values where appropriate.
2208 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
2209 predicate, which is how it's really used now. Adjust comment.
2210 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
2211 * buffer.c (buffer_slot_type_mismatch): Remove.
2212 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
2213 predicate. Adjust comment.
2214 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
2215 fill-column, left-margin, tab-width, buffer-saved-size,
2216 left-margin-width, right-margin-width, left-fringe-width,
2217 right-fringe-width, scroll-bar-width and buffer-display-count.
2218 Use Qstringp for default-directory, buffer-file-name,
2219 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
2220 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
2221 line-spacing.
2222 * data.c (store_symval_forwarding): Adjust to call the predicate.
2223
2224 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
2225
2226 * w32.c (get_name_and_id, acl_set_file):
2227 * w32term.c (w32fullscreen_hook): Remove unused local variables.
2228
2229 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
2230
2231 * lisp.h (make_gap_1): New prototype.
2232 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
2233 gap size values.
2234 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
2235 naming convention.
2236 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
2237 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
2238 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
2239 (make_gap_1): New function to adjust the gap of any buffer.
2240 * coding.c (coding_alloc_by_making_gap): Use it.
2241 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
2242 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
2243
2244 2013-01-08 Juri Linkov <juri@jurta.org>
2245
2246 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
2247 of (supports :underline (:style wave)). (Bug#13000)
2248
2249 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
2250
2251 * undo.c (Fprimitive_undo): Move to simple.el.
2252 (syms_of_undo): Remove declarations for Sprimitive_undo.
2253
2254 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
2255
2256 * keyboard.c (echo_add_key): Rename from echo_add_char.
2257
2258 2013-01-06 Chong Yidong <cyd@gnu.org>
2259
2260 * keyboard.c (echo_add_char): New function, factored out from
2261 echo_char. Don't add a space if the previous echo string was
2262 empty (Bug#13255).
2263 (echo_char): Use it.
2264 (read_key_sequence): When echoing mock input, ensure that the
2265 trailing dash is properly added.
2266
2267 2013-01-05 Eli Zaretskii <eliz@gnu.org>
2268
2269 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
2270 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
2271 digits for buffer positions, before misalignment starts.
2272 Display "0" for integer "object" field.
2273 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
2274 Display the newline glyph more unambiguously.
2275
2276 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2277
2278 * nsterm.m (ns_draw_underwave):
2279 * w32term.c (w32_draw_underwave):
2280 * xterm.c (x_draw_underwave): Make underwave look more triangular
2281 and also degrade gracefully for small fonts. (Bug#13000)
2282
2283 * nsterm.m (ns_draw_text_decoration):
2284 * w32term.c (x_draw_glyph_string):
2285 * xterm.c (x_draw_glyph_string): Don't use previous underline
2286 thickness and position if previous underline type is underwave.
2287
2288 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
2289
2290 * fileio.c (Ffile_acl): Undocument return format.
2291
2292 2013-01-02 Glenn Morris <rgm@gnu.org>
2293
2294 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
2295
2296 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
2297
2298 Simplify via eabs.
2299 * dired.c (file_name_completion):
2300 * doc.c (get_doc_string):
2301 * floatfns.c (round2):
2302 * font.c (font_score, font_delete_unmatched):
2303 * fringe.c (compute_fringe_widths):
2304 * lread.c (read_list):
2305 * minibuf.c (Ftry_completion):
2306 * term.c (tty_ins_del_lines):
2307 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
2308 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
2309
2310 2012-12-31 Eli Zaretskii <eliz@gnu.org>
2311
2312 * w32.c (unsetenv): Set up the string passed to _putenv
2313 correctly.
2314 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
2315 for the bug this caused.
2316
2317 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
2318
2319 * coding.c (Qmac): Now static.
2320
2321 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
2322
2323 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
2324 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
2325 handlebox_widget. Set toolbar_in_hbox to false/true, set
2326 toolbar_is_packed to true.
2327 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
2328 (update_frame_tool_bar): Check toolbar_is_packed for packing.
2329 Show all on TOOLBAR_TOP_WIDGET.
2330 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
2331 by TOOLBAR_TOP_WIDGET.
2332 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
2333 Check toolbar_is_packed.
2334 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
2335 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2336 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
2337 false.
2338 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2339 (xg_update_menubar): Update title only if
2340 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2341 (xg_update_submenu): Skip tearoff only if
2342 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2343 (xg_initialize): Initialize xg_detached_menus only if
2344 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
2345
2346 * xterm.h (struct x_output): Surround handlebox_widget with
2347 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
2348 toolbar_in_hbox is bool.
2349
2350 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
2351
2352 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
2353 (LIBS_GNUSTEP): Define.
2354 (LIBES): Add $(LIBS_GNUSTEP).
2355 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
2356
2357 2012-12-30 Eli Zaretskii <eliz@gnu.org>
2358
2359 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
2360 continuation glyph on a TTY with an indication of an empty line.
2361 (Bug#13277)
2362
2363 2012-12-29 Eli Zaretskii <eliz@gnu.org>
2364
2365 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
2366 file's SELinux context or ACLs successfully set, nil otherwise.
2367 (Bug#13298)
2368 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
2369
2370 * w32proc.c (reader_thread): Avoid passing NULL handles to
2371 SetEvent and WaitForSingleObject.
2372
2373 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
2374
2375 Port EXTERNALLY_VISIBLE to Clang 3.2.
2376 * conf_post.h (__has_attribute): New macro.
2377 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
2378
2379 2012-12-27 Glenn Morris <rgm@gnu.org>
2380
2381 * cygw32.c (Fcygwin_convert_file_name_to_windows)
2382 (Fcygwin_convert_file_name_from_windows): Doc fixes.
2383
2384 2012-12-27 Eli Zaretskii <eliz@gnu.org>
2385
2386 * fileio.c (file_name_as_directory, directory_file_name):
2387 Accept an additional argument MULTIBYTE to indicate whether the input C
2388 came from a multibyte or a unibyte Lisp string; all callers
2389 adjusted. Don't assume the input string is always multibyte.
2390 (Bug#13262)
2391 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
2392 don't ENCODE_FILE them, and return a unibyte string if the input
2393 was unibyte.
2394 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
2395 don't assume the input strings will always be multibyte. If the
2396 input strings are multibyte, decode strings obtained from C
2397 library functions.
2398
2399 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
2400
2401 * lisp.h (toplevel): Add two notices to the comment about
2402 defining a new Lisp data type.
2403 * print.c (print_object): If Lisp_Save_Value object's pointer
2404 is the address of a memory area containing Lisp_Objects, try
2405 to print them.
2406 * alloc.c (valid_lisp_object_p): Adjust comment.
2407
2408 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
2409
2410 * keyboard.c (record_asynch_buffer_change): Initialize an event
2411 only if it's really needed.
2412 * frame.h (enum output_method): Remove output_mac member since
2413 it's a leftover from the deleted code.
2414 * frame.c (Fframep): Adjust user here ...
2415 * terminal.c (Fterminal_live_p): ... and here.
2416 * coding.c (Qmac): Now here because it's only used to denote
2417 end-of-line encoding type.
2418 (syms_of_coding): DEFSYM it.
2419 * frame.h (Qmac): Remove duplicated declaration.
2420
2421 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
2422
2423 * window.c (select_window_1): Now static, since it's used only here.
2424
2425 2012-12-25 Eli Zaretskii <eliz@gnu.org>
2426
2427 * window.c (window_body_cols): Subtract display margins from the
2428 window body width on TTYs as well. See
2429 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
2430 for the original report.
2431
2432 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
2433
2434 * xdisp.c (redisplay_window): Remove inner local variable
2435 because the outer shadowed one has the same meaning.
2436 * xterm.h (struct x_output): Remove toolbar_detached member since it's
2437 set but never used.
2438 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
2439 (xg_create_tool_bar): Adjust users.
2440
2441 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
2442
2443 * buffer.h (BUF_COMPACT): New macro to follow the common style.
2444 * buffer.c (Fget_buffer_create): Use it to set compact field of
2445 struct buffer_text to avoid accessing an uninitialized value
2446 when compact_buffer is called for the first time.
2447 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
2448 (Fset_buffer_modified_p): Use buffer_window_count to check
2449 whether the buffer is displayed in some window.
2450 * xdisp.c (message_dolog): Likewise.
2451
2452 2012-12-23 Eli Zaretskii <eliz@gnu.org>
2453
2454 * w32.c (acl_set_file): If setting the file security descriptor
2455 fails, and the new DACL is identical to the existing one, silently
2456 return success. This fixes problems for users backing up their
2457 own files without having the necessary privileges for setting
2458 security descriptors.
2459
2460 * w32proc.c (reader_thread): Do not index fd_info[] with negative
2461 values.
2462 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
2463 after WaitForSingleObject returns normally. This expedites reader
2464 thread shutdown when delete_child triggers it.
2465 (reap_subprocess): More accurate commentary for why we call
2466 delete_child only when cp->fd is negative.
2467
2468 * w32.c (sys_close): Do not call delete_child on a subprocess
2469 whose handle is not yet closed. Instead, set its file descriptor
2470 to a negative value, so that reap_subprocess will call
2471 delete_child on that subprocess when its SIGCHLD arrives.
2472 This avoids closing handles used for communications between sys_select
2473 and reader_thread, which doesn't give sys_select a chance to
2474 notice that the process exited and invoke the SIGCHLD handler for
2475 it.
2476
2477 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
2478
2479 * nsfns.m (Fns_do_applescript): Run event loop until script has
2480 been executed (Bug#12969).
2481 (ns_run_ascript): Chech as_script for nil, set to nil after
2482 executing script.
2483
2484 2012-12-22 Martin Rudalics <rudalics@gmx.at>
2485
2486 * window.c (Fselect_window): Reword doc-string (Bug#13248).
2487
2488 2012-12-22 Eli Zaretskii <eliz@gnu.org>
2489
2490 * w32term.c (w32fullscreen_hook): New function.
2491 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
2492
2493 2012-12-21 Eli Zaretskii <eliz@gnu.org>
2494
2495 * fileio.c (Finsert_file_contents): Doc fix.
2496
2497 * w32proc.c (new_child, delete_child, find_child_pid): For a
2498 subprocess, consider its slot being in use as long as its process
2499 handle (procinfo.hProcess) is not NULL. This avoids reusing the
2500 slot when a new process is started immediately after killing
2501 another one, without waiting enough time for the first process to
2502 be reaped and resources allocated for it be orderly freed.
2503 (Bug#13086)
2504 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2505
2506 2012-12-21 Chong Yidong <cyd@gnu.org>
2507
2508 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
2509
2510 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
2511
2512 2012-12-21 Eli Zaretskii <eliz@gnu.org>
2513
2514 * w32.c (get_name_and_id): Always pass NULL as the first argument
2515 of lookup_account_sid. Avoids crashes with UNC file names that
2516 refer to DFS domains, not to specific machine names. (Bug#12621)
2517 Remove now unused argument FNAME; all callers changed.
2518 (get_file_owner_and_group): Remove now unused argument FNAME; all
2519 callers changed.
2520
2521 2012-12-21 Chong Yidong <cyd@gnu.org>
2522
2523 * editfns.c (Finsert_char): Since read-char-by-name now signals an
2524 error for invalid chars, don't check for a nil return value.
2525
2526 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2527
2528 Avoid calls to CHAR_TO_BYTE if byte position is known.
2529 * editfns.c (make_buffer_string_both): Use move_gap_both.
2530 (Fbuffer_string): Use make_buffer_string_both.
2531 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
2532 Adjust comment.
2533 (buf_bytepos_to_charpos): Likewise.
2534 (charpos_to_bytepos): Remove.
2535 * fileio.c (Finsert_file_contents): Use move_gap_both.
2536 * search.c (Freplace_match): Likewise.
2537 * process.c (process_send_region): Likewise. Use convenient
2538 names for byte positions.
2539 * lisp.h (charpos_to_bytepos): Remove prototype.
2540 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
2541 * insdel.c (move_gap): Likewise.
2542
2543 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
2544
2545 * xdisp.c (redisplay_internal): Remove now-unused local.
2546
2547 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
2548
2549 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
2550 (redisplay_internal): Don't bother selecting the frame to get the
2551 proper value of frame-local variables (bug#13225).
2552
2553 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2554
2555 * textprop.c (set_text_properties_1): Do not allow NULL interval.
2556 Rename 4th argument since it may be buffer or string. Adjust comment.
2557 * intervals.c (graft_intervals_info_buffer): Find an interval here.
2558
2559 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
2560
2561 * coding.c (Fdetect_coding_region): Do not check start and end with
2562 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
2563 (code_convert_region): Likewise.
2564
2565 2012-12-18 Eli Zaretskii <eliz@gnu.org>
2566
2567 * w32.c (acl_get_file, acl_set_file): Run the file name through
2568 map_w32_filename, and resolve any symlinks in the file name, like
2569 Posix platforms do.
2570 (acl_set_file): Call revert_to_self, if any privileges were
2571 enabled.
2572
2573 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
2574
2575 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
2576 ($(BLD)/w32.$(O)): Update dependencies.
2577
2578 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2579
2580 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
2581 propagate redisplay's scrolling (if any) to the right window.
2582 (redisplay_internal): Use ensure_selected_frame.
2583 (display_mode_lines): Complete last fix.
2584 * window.c (select_window_1): New func, extracted from select_window.
2585 (select_window): Use it.
2586 * window.h (select_window_1): Declare.
2587
2588 2012-12-17 Eli Zaretskii <eliz@gnu.org>
2589
2590 Emulate Posix ACL APIs on MS-Windows.
2591 * w32.c: Include sddl.h and sys/acl.h.
2592 (SDDL_REVISION_1): Define if not already defined.
2593 (g_b_init_get_security_descriptor_dacl)
2594 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
2595 (g_b_init_is_valid_security_descriptor)
2596 (g_b_init_set_file_security): New static flags.
2597 (globals_of_w32): Initialize them to zero.
2598 (SetFileSecurity_Name): New string constant.
2599 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
2600 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
2601 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
2602 (IsValidSecurityDescriptor_Proc): New typedefs.
2603 (get_file_security, get_security_descriptor_owner)
2604 (get_security_descriptor_group): Set errno to ENOTSUP.
2605 (set_file_security, get_security_descriptor_dacl)
2606 (is_valid_security_descriptor, convert_sd_to_sddl)
2607 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
2608 (acl_free, acl_get_file, acl_set_file): New functions.
2609
2610 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
2611
2612 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
2613
2614 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
2615 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
2616 for some of that bug's symptoms can now cause Emacs to abort.
2617 Remove the workaround.
2618 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
2619 The bug that caused SIGCHLD to get lost has been fixed, and the
2620 workaround for it can now cause Emacs to abort.
2621
2622 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
2623
2624 * sysdep.c (emacs_abort): Bump backtrace size to 40.
2625 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
2626 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2627
2628 2012-12-16 Romain Francoise <romain@orebokech.com>
2629
2630 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
2631 (Fcopy_file): Change last arg to `preserve_extended_attributes'
2632 and copy ACL entries of file in addition to SELinux context if set.
2633 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
2634
2635 * Makefile.in (LIBACL_LIBS): New macro.
2636 (LIBES): Use it.
2637
2638 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
2639
2640 * fileio.c (internal_delete_file): Use bool for boolean.
2641
2642 2012-12-15 Eli Zaretskii <eliz@gnu.org>
2643
2644 Fix bug #13079 on MS-Windows with temp files not being deleted.
2645 * w32.h (_child_process): New members input_file and
2646 pending_deletion.
2647 (register_child): First argument is now pid_t.
2648 (record_infile, record_pending_deletion): New prototypes.
2649
2650 * w32proc.c (new_child): Initialize input_file and
2651 pending_deletion members of the child.
2652 (delete_child): Delete the child's temporary input file, if any,
2653 that is pending deletion.
2654 (register_child): First argument is now pid_t.
2655 (record_infile, record_pending_deletion): New functions.
2656 (reap_subprocess): Fix a typo in DebPrint string.
2657 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
2658
2659 * fileio.c (internal_delete_file): Return an int again: non-zero
2660 if delete-file succeeds, zero otherwise.
2661
2662 * lisp.h (internal_delete_file): Adjust prototype.
2663
2664 * callproc.c (Fcall_process): Don't overwrite infile with result
2665 of DECODE_FILE.
2666 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
2667 asynchronous subprocess, record the name of the input file name,
2668 if any.
2669 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
2670 delete the file, record it as pending deletion when the subprocess
2671 exits.
2672
2673 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2674
2675 * editfns.c [HAVE_PWD_H]: Include grp.h.
2676
2677 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
2678
2679 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2680
2681 Fix permissions bugs with setgid directories etc. (Bug#13125)
2682 * dired.c (Ffile_attributes): Return t as the 9th attribute,
2683 to mark it as a placeholder. The old value was often wrong.
2684 The only user of this attribute has been changed to use
2685 file-ownership-preserved-p instead, with its new group arg.
2686 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
2687
2688 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2689
2690 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
2691 Keep selected_window and selected_frame in sync.
2692
2693 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2694
2695 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
2696 try to get accurate owner and group information from NT file
2697 security APIs. This is to make most callers of 'stat' and
2698 'lstat', which don't need that information, much faster.
2699
2700 * dired.c (Ffile_attributes) [WINDOWSNT]:
2701 Set w32_stat_get_owner_group to a non-zero value, to request accurate
2702 owner and group information from 'lstat'.
2703
2704 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2705
2706 * fileio.c (Finsert_file_contents): Don't put tail into head area,
2707 as that confuses set-auto-coding, so insist on the head-read
2708 returning the full 1024 bytes. Let lseek compute the tail offset;
2709 less work for us. Do not ignore I/O errors when reading the tail.
2710
2711 * xdisp.c: Minor style fixes.
2712 (init_iterator): Hoist assignment out of if-expression.
2713 (markpos_of_region): Callers now test for sign, not for -1.
2714
2715 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
2716
2717 Minor redisplay optimization when the region length is zero.
2718 * xdisp.c (markpos_of_region): New function.
2719 (init_iterator): Do not highlight the region of zero length.
2720 (redisplay_window): Check whether the region is of non-zero length.
2721 (try_cursor_movement): Allow if the region length is zero.
2722 (try_window_reusing_current_matrix, try_window_id): Likewise.
2723
2724 2012-12-13 Eli Zaretskii <eliz@gnu.org>
2725
2726 * search.c (search_buffer): Check the inverse translations of each
2727 character in pattern when the buffer being searched is unibyte.
2728 (Bug#13084)
2729
2730 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2731
2732 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2733 files, fixing a regression from 24.2.
2734 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
2735
2736 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2737
2738 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
2739 fstat shouldn't fail, and if it does fail copy-file should not proceed.
2740 Remove unnecessary S_ISLNK test, as (contra the comments) this
2741 function can't copy symlinks. Improve quality of error message
2742 when attempting to copy files that are neither regular files nor
2743 directories.
2744
2745 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
2746
2747 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
2748 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
2749 * window.c (Frecenter):
2750 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
2751 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
2752
2753 2012-12-12 Daniel Colascione <dancol@dancol.org>
2754
2755 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
2756 the dumped Emacs is not a sparse file, greatly improving Cygwin
2757 "make bootstrap" performance.
2758
2759 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
2760
2761 * inotify.c (inotify_callback): Generate an Emacs event for every
2762 incoming inotify event.
2763
2764 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2765
2766 * xdisp.c (handle_face_prop): Fix logic of computing
2767 it->start_of_box_run_p.
2768 (append_space_for_newline): If the glyph row is R2L, reset the
2769 iterator's end_of_box_run_p flag before prepending the space glyph.
2770 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
2771 iterator's start_of_box_run_p flag before prepending the stretch.
2772 (append_glyph, produce_image_glyph, append_composite_glyph)
2773 (append_stretch_glyph, append_glyphless_glyph): Reverse the
2774 left_box_line_p and right_box_line_p flags of the glyph for R2L
2775 glyph rows. (Bug#13011)
2776
2777 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2778
2779 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
2780 if changed buffer is not shown in a window.
2781 * insdel.c (prepare_to_modify_buffer): Likewise.
2782 * window.c (replace_buffer_in_windows_safely): Do nothing
2783 if buffer is not shown in a window.
2784 (Fforce_window_update): Likewise if string or buffer argument
2785 is passed.
2786
2787 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2788
2789 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
2790 encoded_file_name, which is what it is.
2791
2792 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2793
2794 Consistently use marker_position and marker_byte_position.
2795 * fringe.c (Ffringe_bitmaps_at_pos):
2796 * indent.c (Fvertical_motion):
2797 * insdel.c (prepare_to_modify_buffer):
2798 * keyboard.c (make_lispy_position):
2799 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
2800 (window_scroll_pixel_based, displayed_window_lines)
2801 (Fset_window_configuration):
2802 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
2803 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
2804 Replace direct access to marker fields with calls
2805 to marker_position and/or marker_byte_position.
2806
2807 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
2808
2809 * makefile.w32-in (SIG2STR_H): New macro.
2810 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
2811 ($(BLD)/w32notify.$(O)): Update dependencies.
2812
2813 2012-12-10 Daniel Colascione <dancol@dancol.org>
2814
2815 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
2816 Windows file notification functionality unless WINDOWSNT.
2817
2818 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
2819 declarations.
2820
2821 * w32fns.c (cache_system_info): Initialize the global hinst
2822 variable here so various initialization calls DTRT.
2823
2824 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
2825 (hinst): Remove unneeded extern declaration.
2826 (_start): Remove initialization of above variables; remove
2827 initialization of hinst, as cache_system_info now does that.
2828
2829 * emacs.c (main): Call cache_system_info early in startup; we
2830 previously weren't calling it in Cygwin builds.
2831
2832 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
2833 Teach the autoconf build system how to compile a Windows resource file
2834 and link it to Emacs.
2835
2836 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
2837
2838 Per-buffer window counters.
2839 * buffer.h (struct buffer): New member window_count.
2840 (buffer_window_count): New function.
2841 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
2842 Initialize window_count.
2843 (Fkill_buffer): Verify window_count for the buffer being killed.
2844 (modify_overlay): Do not force redisplay if buffer is not shown
2845 in any window.
2846 (init_buffer_once): Initialize window_count for buffer_defaults
2847 and buffer_local_symbols.
2848 * window.h (buffer_shared): Remove declaration.
2849 (wset_buffer): Convert from inline ...
2850 * window.c (wset_buffer): ... to an ordinary function.
2851 (adjust_window_count): New function.
2852 (make_parent_window): Use it.
2853 * xdisp.c (buffer_shared): Remove.
2854 (redisplay_internal, redisplay_window): Adjust users.
2855 (buffer_shared_and_changed): Use per-buffer window counter.
2856
2857 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2858
2859 Support for filesystem notifications on MS-Windows.
2860 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
2861 and this is a TTY frame, signal the caller that keyboard input is
2862 available.
2863
2864 * w32xfns.c (drain_message_queue): Now returns an int: an
2865 indication whether any WM_EMACS_FILENOTIFY messages were found in
2866 the queue.
2867
2868 * w32inevt.c (handle_file_notifications): New function.
2869 (w32_console_read_socket): Call it to process file notifications.
2870
2871 * w32console.c (initialize_w32_display): Record the main thread ID
2872 in dwMainThreadId.
2873
2874 * deps.mk (inotify.o): New dependency list.
2875
2876 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
2877
2878 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
2879 (WM_EMACS_END): Bump value by 1.
2880 (notification_buffer_in_use, file_notifications)
2881 (notifications_size, notifications_desc): Declare.
2882 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
2883 Add prototypes.
2884
2885 * w32term.c (lispy_file_action, queue_notifications): New functions.
2886 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
2887 <Qrenamed_to>: New symbols.
2888 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
2889
2890 * w32notify.c: New file, implements file event notifications for
2891 MS-Windows.
2892
2893 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
2894 by posting it to the w32_read_socket queue.
2895
2896 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2897
2898 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
2899 (GLOBAL_SOURCES): Add w32notify.c
2900 ($(BLD)/w32notify.$(O)): New set of dependencies.
2901
2902 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2903
2904 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2905 Handle FILE_NOTIFY_EVENT.
2906 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2907 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2908 w32notify-handle-event by default.
2909
2910 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2911 syms_of_w32notify.
2912
2913 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2914
2915 Support for filesystem notifications on GNU/Linux via inotify.
2916 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2917
2918 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2919
2920 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2921 (syms_of_keyboard): DEFSYM it.
2922 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2923 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2924 Qfile_inotify events.
2925 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2926 special-event-map to inotify-handle-event.
2927
2928 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2929
2930 * Makefile.in (base_obj): Add inotify.o.
2931
2932 * inotify.c: New file.
2933
2934 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2935
2936 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2937
2938 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2939
2940 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2941 DWORD_PTR, for compatibility with 64-bit builds.
2942
2943 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2944 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2945 (system_process_attributes): Use SIZE_T rather than DWORD, for
2946 compatibility with 64-bit builds.
2947
2948 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2949
2950 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2951
2952 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2953
2954 * indent.c (Fvertical_motion): If a display string will be
2955 displayed on the left or the right margin, don't consider it as a
2956 factor in cursor positioning. (Bug#13108)
2957
2958 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2959
2960 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2961
2962 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2963
2964 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2965 for string length.
2966
2967 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2968
2969 * w32.c (unsetenv): Return 0 if the input string is too long.
2970
2971 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2972
2973 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2974 * alloc.c (xputenv): New function.
2975 * dbusbind.c (Fdbus_init_bus):
2976 * emacs.c (main):
2977 * xterm.c (x_term_init):
2978 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2979 * editfns.c (initial_tz): Move static var decl up.
2980 (tzvalbuf_in_environ): New static var.
2981 (init_editfns): Initialize these two static vars.
2982 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2983 Save old TZ value on stack, if it's small.
2984 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2985 instead, use xputenv+unsetenv to set and restore TZ.
2986 (environbuf): Remove static var. All uses removed.
2987 (Fset_time_zone_rule): Do not save TZ and environ;
2988 no longer needed here.
2989 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2990 Move to inside set_time_zone_rule; they don't need file scope any more.
2991 (set_time_zone_rule): Maintain the TZ=value string separately.
2992 (syms_of_editfns): Don't initialize initial_tz;
2993 init_editfns now does it.
2994 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2995 * lisp.h (xputenv): New decl.
2996
2997 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2998
2999 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
3000
3001 2012-12-08 Eli Zaretskii <eliz@gnu.org>
3002
3003 * w32.c (unsetenv, sys_putenv): New functions.
3004
3005 2012-12-08 Chong Yidong <cyd@gnu.org>
3006
3007 * editfns.c (Finsert_char): Make the error message more
3008 informative (Bug#12992).
3009
3010 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
3011
3012 Simplify get_lim_data.
3013 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
3014 Remove USG and vlimit methods; no longer used these days.
3015 Add #error catchall just in case.
3016
3017 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
3018 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
3019 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
3020 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
3021 (deleted_pid_list, Fdelete_process, create_process)
3022 (record_child_status_change, handle_child_signal, deliver_child_signal)
3023 (init_process_emacs, syms_of_process):
3024 Assume SIGCHLD is defined.
3025 (parse_signal): Remove. All uses removed.
3026 (abbr_to_signal): New static function.
3027 (Fsignal_process): Use it to convert signal names to ints.
3028 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
3029 kill (getpgrp (), ...).
3030 (emacs_sigaction_init): Assume SIGCHLD is defined.
3031 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
3032 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
3033 * syssignal.h (EMACS_KILLPG): Remove.
3034 All uses replaced by 'kill' with a negative pid.
3035 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
3036 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
3037
3038 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
3039
3040 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
3041 This will cause a production Emacs to dump core instead of
3042 infinite-looping.
3043
3044 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
3045
3046 * frame.c (make_frame): Do not set window's buffer to t.
3047 * window.c (Fsplit_window_internal): Likewise. Previously it was
3048 used to indicate that the window is being set up. Now we use
3049 set_window_buffer for all new windows, so the condition in ...
3050 (Fset_window_buffer): ... is always true and can be removed.
3051
3052 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
3053
3054 Convenient macro to check whether the buffer is hidden.
3055 * buffer.h (BUFFER_HIDDEN_P): New macro.
3056 * frame.c (make_frame): Use it. Adjust comment.
3057 * buffer.c (candidate_buffer): New function.
3058 (Fother_buffer, other_buffer_safely): Use it.
3059
3060 2012-12-06 Eli Zaretskii <eliz@gnu.org>
3061
3062 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
3063 if the child process is still running. Instead, exit the wait
3064 loop and return zero. (Bug#13086)
3065
3066 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
3067
3068 * frame.h (x_char_width, x_char_height): Remove prototypes.
3069 * w32term.h (x_char_width, x_char_height): Likewise.
3070 * xfns.c (x_char_width, x_char_height): Remove.
3071 * w32fns.c (x_char_width, x_char_height): Likewise.
3072 * nsfns.c (x_char_width, x_char_height): Likewise.
3073 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
3074 all window frames.
3075 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
3076 * keyboard.c (command_loop_1): Remove prototype.
3077 (command_loop_2, top_level_1): Add static to match prototype.
3078
3079 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
3080
3081 Fix a recently-introduced delete-process race condition.
3082 * callproc.c, process.h (record_kill_process):
3083 New function, containing part of the old call_process_kill.
3084 (call_process_kill): Use it.
3085 This does not change call_process_kill's behavior.
3086 * process.c (Fdelete_process): Use record_kill_process to fix a
3087 race condition that could cause Emacs to lose track of a child.
3088
3089 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
3090
3091 Avoid code duplication between prev_frame and next_frame.
3092 * frame.c (candidate_frame): New function. Add comment.
3093 (prev_frame, next_frame): Use it. Adjust comment.
3094
3095 2012-12-06 Eli Zaretskii <eliz@gnu.org>
3096
3097 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
3098 fails, signal an error instead of continuing with an empty
3099 string. (Bug#13079)
3100 Encode expanded temp file pattern before passing it to mkstemp or
3101 mktemp.
3102
3103 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
3104 Encode the file name before passing it to dostounix_filename, in
3105 case it will downcase it (under w32-downcase-file-names).
3106 (Bug#12933)
3107
3108 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
3109
3110 Minor call-process cleanups.
3111 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
3112 at the same time as other platforms, to simplify analysis.
3113 No need for fd0_volatile since we have synch_process_fd.
3114 Avoid needless emacs_close; arg is always negative.
3115
3116 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
3117
3118 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
3119 processes.
3120
3121 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
3122
3123 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
3124 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
3125 and mouse_face_hidden members to a bitfields.
3126 * frame.h (struct frame): Remove set-but-not-used space_width member.
3127 (FRAME_SPACE_WIDTH): Remove.
3128 * nsterm.m, w32term.c, xterm.c: Adjust users.
3129 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
3130 member. Adjust users. Convert term_initted, delete_in_insert_mode,
3131 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
3132 members to a bitfields.
3133
3134 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
3135
3136 Don't let call-process be a zombie factory (Bug#12980).
3137 Fixing this bug required some cleanup of the signal-handling code.
3138 As a side effect, this change also fixes a longstanding rare race
3139 condition whereby Emacs could mistakenly kill unrelated processes,
3140 and it fixes a bug where a second C-g does not kill a recalcitrant
3141 synchronous process in GNU/Linux and similar platforms.
3142 The patch should also fix the last vestiges of Bug#9488,
3143 a bug which has mostly been fixed on the trunk by other changes.
3144 * callproc.c, process.h (synch_process_alive, synch_process_death)
3145 (synch_process_termsig, sync_process_retcode):
3146 Remove. All uses removed, to simplify analysis and so that
3147 less consing is done inside critical sections.
3148 * callproc.c (call_process_exited): Remove. All uses replaced
3149 with !synch_process_pid.
3150 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
3151 These take the role of what used to be in unwind-protect arg.
3152 All uses changed.
3153 (block_child_signal, unblock_child_signal):
3154 New functions, to avoid races that could kill innocent-victim processes.
3155 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
3156 (call_process_kill): Record killed processes as deleted, so that
3157 zombies do not clutter up the system. Do this inside a critical
3158 section, to avoid a race that would allow the clutter.
3159 (call_process_cleanup): Fix code so that the second C-g works again
3160 on common platforms such as GNU/Linux.
3161 (Fcall_process): Create the child process in a critical section,
3162 to fix a race condition. If creating an asynchronous process,
3163 record it as deleted so that zombies do not clutter up the system.
3164 Do unwind-protect for WINDOWSNT too, as that's simpler in the
3165 light of these changes. Omit unnecessary call to emacs_close
3166 before failure, as the unwind-protect code does that.
3167 * callproc.c (call_process_cleanup):
3168 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
3169 * process.c (record_deleted_pid): New function, containing
3170 code refactored out of Fdelete_process.
3171 (Fdelete_process): Use it.
3172 (process_status_retrieved): Remove. All callers changed to use
3173 child_status_change.
3174 (record_child_status_change): Remove, folding its contents into ...
3175 (handle_child_signal): ... this signal handler. Now, this
3176 function is purely a handler for SIGCHLD, and is not called after
3177 a synchronous waitpid returns; the synchronous code is moved to
3178 wait_for_termination. There is no need to worry about reaping
3179 more than one child now.
3180 * sysdep.c (get_child_status, child_status_changed): New functions.
3181 (wait_for_termination): Now takes int * status and bool
3182 interruptible arguments, too. Do not record child status change;
3183 that's now the caller's responsibility. All callers changed.
3184 Reimplement in terms of get_child_status.
3185 (wait_for_termination_1, interruptible_wait_for_termination):
3186 Remove. All callers changed to use wait_for_termination.
3187 * syswait.h: Include <stdbool.h>, for bool.
3188 (record_child_status_change, interruptible_wait_for_termination):
3189 Remove decls.
3190 (record_deleted_pid, child_status_changed): New decls.
3191 (wait_for_termination): Adjust to API changes noted above.
3192
3193 * bytecode.c, lisp.h (Qbytecode): Remove.
3194 No longer needed after 2012-11-20 interactive-p changes.
3195
3196 2012-12-03 Eli Zaretskii <eliz@gnu.org>
3197
3198 * xdisp.c (redisplay_window): If the cursor is visible, but inside
3199 the scroll margin, move point outside the margin. (Bug#13055)
3200
3201 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
3202
3203 * gtkutil.c (my_log_handler): New function.
3204 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
3205
3206 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
3207
3208 * lisp.h (modify_region): Rename to...
3209 (modify_region_1): ...new prototype.
3210 * textprop.c (modify_region): Now static. Adjust users.
3211 * insdel.c (modify_region): Rename to...
3212 (modify_region_1): ...new function to work with current buffer.
3213 Adjust comment and users. Use true and false for booleans.
3214
3215 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
3216
3217 * alloc.c (free_save_value): New function.
3218 (safe_alloca_unwind): Use it.
3219 * lisp.h (free_save_value): New prototype.
3220 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
3221 Add comment.
3222 (save_excursion_restore): Adjust to match saved data structure.
3223 Use free_save_value to offload some work from GC. Drop obsolete
3224 #if 0 code.
3225
3226 2012-12-03 Chong Yidong <cyd@gnu.org>
3227
3228 * fileio.c (Vauto_save_list_file_name): Doc fix.
3229
3230 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
3231
3232 * w32fns.c: Remove prototype of atof.
3233 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
3234 builds.
3235 (file_dialog_callback): Make it UINT_PTR.
3236
3237 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
3238 with 64-bit builds.
3239
3240 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
3241 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
3242 defined.
3243
3244 2012-12-03 Glenn Morris <rgm@gnu.org>
3245
3246 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
3247
3248 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
3249
3250 Fix xpalloc confusion after memory is exhausted.
3251 * alloc.c (xpalloc): Comment fix.
3252 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
3253 and signals an error, do not clear charset_table_size, as
3254 charset_table is still valid.
3255 * doprnt.c (evxprintf): Clear *BUF after freeing it.
3256
3257 Use execve to avoid need to munge environ (Bug#13054).
3258 * callproc.c (Fcall_process):
3259 * process.c (create_process):
3260 Don't save and restore environ; no longer needed.
3261 * callproc.c (child_setup):
3262 Use execve, not execvp, to preserve environ.
3263
3264 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
3265
3266 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
3267
3268 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3269
3270 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
3271 display for sliced images (Bug#10500).
3272
3273 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
3274
3275 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
3276
3277 * doc.c (Fdocumentation): Re-add handling of function-documentation,
3278 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
3279
3280 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
3281
3282 * xdisp.c (window_outdated): Remove eassert since it hits
3283 some suspicious corner cases (see Bug#13007 and Bug#13012).
3284 (mode_line_update_needed): New function.
3285 (redisplay_internal, redisplay_window): Use it.
3286 (ensure_selected_frame): New function.
3287 (redisplay_internal, unwind_redisplay): Use it.
3288 (redisplay_internal): Move comment about buffer_shared...
3289 (buffer_shared_and_changed): ...near to its real use.
3290
3291 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
3292
3293 * callproc.c (Fcall_process): Don't misreport vfork failure.
3294
3295 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
3296
3297 * callproc.c (Fcall_process): Fix vfork portability problems.
3298 Do not assume that fd[0], count, filefd, and save_environ survive
3299 vfork. Fix bug whereby wrong errno value could be reported for
3300 pipe failure. Some minor cleanups, too, as follows. Move buf and
3301 bufsize to the context where they're needed. Change new_argv to
3302 be of type char **, as this is more convenient and avoids casts.
3303 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
3304 Now local constants, not macros.
3305
3306 2012-11-18 Kenichi Handa <handa@gnu.org>
3307
3308 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
3309 for the variable "f".
3310
3311 2012-11-13 Kenichi Handa <handa@gnu.org>
3312
3313 * font.c (font_unparse_xlfd): Exclude special characters from the
3314 generating XLFD name.
3315
3316 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
3317
3318 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
3319 * dired.c (stat_uname, stat_gname):
3320 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
3321
3322 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
3323 * dired.c (directory_files_internal, file_name_completion):
3324 Assume EAGAIN and EINTR are defined.
3325
3326 * fileio.c (Fcopy_file): Assume EISDIR is defined.
3327 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
3328 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
3329 * lread.c (readbyte_from_file): Assume EINTR is defined.
3330 * process.c (wait_reading_process_output, send_process) [subprocesses]:
3331 Assume EIO and EAGAIN are defined.
3332 * unexcoff.c (write_segment): Assume EFAULT is defined.
3333
3334 2012-11-27 Eli Zaretskii <eliz@gnu.org>
3335
3336 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
3337 (Bug#11964)
3338
3339 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
3340 highlighting on the frame was cleared. Prevents assertion
3341 violations when repeatedly clicking on the "Top" link of the
3342 "bread-crumbs" in Info buffers.
3343
3344 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
3345
3346 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
3347
3348 2012-11-24 Ken Brown <kbrown@cornell.edu>
3349
3350 * keyboard.c (HAVE_MOUSE):
3351 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
3352 were always defined.
3353
3354 2012-11-24 Eli Zaretskii <eliz@gnu.org>
3355
3356 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
3357 between bpos_covered and bpos_max. This fixes cursor display when
3358 several display strings follow each other.
3359
3360 * .gdbinit (pgx): If the glyph's object is a string, display the
3361 pointer to string data, rather than the value of the string object
3362 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
3363
3364 * indent.c (Fvertical_motion): If the starting position is covered
3365 by a display string, return to one position before that, to avoid
3366 overshooting it inside move_it_to. (Bug#12930)
3367
3368 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
3369
3370 * frame.h (struct frame): Remove display_preempted member
3371 since all users are dead long ago.
3372 * nsterm.h (struct x_output): Use the only dummy member.
3373 * w32menu.c (pending_menu_activation): Remove since not
3374 really used.
3375 (set_frame_menubar): Adjust user.
3376 * w32term.h (struct x_output): Drop outdated #if 0 code.
3377 (struct w32_output): Use bitfields for explicit_parent,
3378 asked_for_visible and menubar_active members.
3379 Drop unused pending_menu_activation member.
3380 * xterm.h (struct x_output): Drop outdated #if 0 code.
3381 Use bitfields for explicit_parent, asked_for_visible,
3382 has_been_visible and net_wm_state_hidden_seen members.
3383
3384 2012-11-23 Eli Zaretskii <eliz@gnu.org>
3385
3386 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
3387 of a literal "/". (Bug#12955)
3388 (gl-stamp): Invoke fc.exe directly, not through cmd.
3389
3390 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
3391
3392 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
3393 * dired.c: Assume HAVE_DIRENT_H.
3394 (NAMLEN): Remove, replacing with ...
3395 (dirent_namelen): New function. All uses changed. Use the GNU macro
3396 _D_EXACT_NAMELEN if available, as it's faster than strlen.
3397 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
3398 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
3399 * makefile.w32-in (DIR_H): Remove. All uses replaced with
3400 $(NT_INC)/dirent.h.
3401 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
3402 * ndir.h: Rename to ../nt/inc/dirent.h.
3403 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
3404 Do not include <dirent.h>; no longer needed.
3405 * w32.c: Include <dirent.h> rather than "ndir.h".
3406
3407 2012-11-23 Chong Yidong <cyd@gnu.org>
3408
3409 * xftfont.c (xftfont_open): Remove duplicate assignment.
3410
3411 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
3412
3413 * alloc.c (Fgarbage_collect): Unblock input after clearing
3414 gc_in_progress to avoid note_mouse_highlight glitch with GC.
3415 * frame.h (FRAME_MOUSE_UPDATE): New macro.
3416 * msdos.c (IT_frame_up_to_date): Use it here...
3417 * w32term.c (w32_frame_up_to_date): ...here...
3418 * xterm.c (XTframe_up_to_date): ...and here...
3419 * nsterm.m (ns_frame_up_to_date): ...but not here.
3420 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
3421 Adjust users.
3422 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
3423 Do not check whether GC is in progress.
3424
3425 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
3426
3427 * xdisp.c (window_buffer_changed): New function.
3428 (update_menu_bar, update_tool_bar): Use it to
3429 simplify large 'if' statements.
3430 (redisplay_internal): Generalize commonly used
3431 'tail' and 'frame' local variables.
3432
3433 2012-11-22 Eli Zaretskii <eliz@gnu.org>
3434
3435 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
3436 with Windows system header.
3437
3438 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
3439
3440 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
3441 * alloc.c: Assume unistd.h exists.
3442 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
3443 * sysdep.c (get_current_dir_name): Assume getcwd exists.
3444 (getwd) [USG]: Remove; no longer needed.
3445 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
3446 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
3447 * w32.h (getcwd): Remove decl.
3448
3449 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
3450
3451 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
3452 Make it set selected_window as well.
3453 (update_tool_bar): Use it.
3454
3455 2012-11-21 Ken Brown <kbrown@cornell.edu>
3456
3457 * emacs.c (main): Set the G_SLICE environment variable for all
3458 Cygwin builds, not just GTK builds. See
3459 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
3460
3461 2012-11-21 Eli Zaretskii <eliz@gnu.org>
3462
3463 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
3464 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
3465 Define for the MSVC compiler.
3466
3467 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
3468
3469 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
3470 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
3471 dostounix_filename. Prevents crashes down the road, because
3472 dostounix_filename assumes it gets a unibyte string.
3473 Reported by Michel de Ruiter <michel@sentient.nl>, see
3474 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
3475
3476 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3477
3478 Conflate Qnil and Qunbound for `symbol-function'.
3479 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
3480 * lread.c (init_obarray): Set `function' fields to Qnil.
3481 * eval.c (Fcommandp): Ignore Qunbound.
3482 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
3483 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
3484 Test NILP rather than Qunbound.
3485 (Ffmakunbound): Set to Qnil.
3486 (Fsymbol_function): Never signal an error.
3487 (Finteractive_form): Ignore Qunbound.
3488
3489 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
3490
3491 * eval.c (interactive_p): Remove no-longer-used decl.
3492
3493 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
3494
3495 * xdisp.c (buffer_shared): Adjust comment.
3496 (buffer_shared_and_changed): New function.
3497 (prepare_menu_bars, redisplay_internal): Use it to
3498 decide whether all windows or frames should be updated.
3499 (window_outdated): New function.
3500 (text_outside_line_unchanged_p, redisplay_window): Use it.
3501 (redisplay_internal): Likewise. Fix indentation.
3502
3503 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3504
3505 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
3506 (syms_of_eval): Remove corresponding defsubr.
3507 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
3508
3509 2012-11-19 Daniel Colascione <dancol@dancol.org>
3510
3511 * w32fns.c (Fx_file_dialog):
3512 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
3513 cygwin_convert_file_name*.
3514
3515 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
3516 Rename cygwin_convert_path* to cygwin_convert_file_name*.
3517
3518 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
3519
3520 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
3521
3522 2012-11-18 Eli Zaretskii <eliz@gnu.org>
3523
3524 * w32select.c: Include w32common.h before w32term.h, so that
3525 windows.h gets included before w32term.h uses some of its
3526 features, see below.
3527
3528 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
3529 New typedefs.
3530 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
3531 New prototypes.
3532 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
3533
3534 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
3535
3536 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
3537 (ns_select): Return at once if events are held (Bug#12834).
3538
3539 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
3540
3541 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
3542 Needed following 2012-10-20 change. (Bug#12902)
3543
3544 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
3545
3546 * w32proc.c (waitpid): Remove unused label get_result.
3547
3548 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
3549
3550 * makefile.w32-in (SYSWAIT_H): New macro.
3551 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
3552 ($(BLD)/sysdep.$(O)): Update dependencies.
3553
3554 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3555
3556 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
3557 * callproc.c (relocate_fd): Assume F_DUPFD.
3558 * emacs.c, term.c (O_RDWR): Remove.
3559 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
3560 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
3561 * nsterm.m: Assume <fcntl.h> exists.
3562 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
3563 (create_pty, Fmake_network_process, server_accept_connection)
3564 (wait_reading_process_output, init_process_emacs):
3565 Assume O_NONBLOCK.
3566 (wait_reading_process_output): Put in a special case for WINDOWSNT
3567 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
3568 It's not clear this is needed, but it's a more-conservative change.
3569 (create_process): Assume FD_CLOEXEC.
3570 (create_process, create_pty): Assume O_NOCTTY.
3571 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
3572 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
3573 Omit if not DOS_NT, since F_GETFL is not defined there.
3574 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
3575 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
3576 (O_NOCTTY): Remove.
3577 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
3578 lack it, since gnulib guarantees this.
3579 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
3580
3581 2012-11-17 Eli Zaretskii <eliz@gnu.org>
3582
3583 * w32.c (faccessat): Pretend that directories have the execute bit
3584 set. Emacs expects that, e.g., in files.el:cd-absolute.
3585
3586 * w32proc.c (create_child): Don't clip the PID of the child
3587 process to fit into an Emacs integer, as this is no longer a
3588 restriction.
3589 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
3590 reaping only the process specified by PID argument, if that is
3591 positive. Use PID instead of dead_child to know which process to
3592 reap. Wait for the child to die only if WNOHANG is not in
3593 OPTIONS.
3594 (sys_select): Don't set dead_child.
3595
3596 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
3597 as it is no longer needed.
3598
3599 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
3600 no longer needed.
3601 (record_child_status_change): Remove the setting of
3602 record_at_most_one_child for the !WNOHANG case.
3603
3604 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3605
3606 Fix problems in ns port found by static checking.
3607 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
3608 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
3609 not to process group.
3610 (ns_select): Use emacs_write, not write, as that's more robust
3611 in the presence of signals.
3612 (fd_handler:): Check for read errors.
3613
3614 2012-11-16 Glenn Morris <rgm@gnu.org>
3615
3616 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
3617
3618 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3619
3620 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
3621
3622 2012-11-16 Eli Zaretskii <eliz@gnu.org>
3623
3624 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
3625 use the same value of thread handle.
3626 (start_timer_thread): If the timer thread exited (due to error),
3627 clean up by closing the two handles it used. Duplicate the caller
3628 thread's handle here, so it gets duplicated only once, when
3629 launching the timer thread. Set priority of the timer thread, not
3630 the caller thread.
3631 (getitimer): Don't duplicate the caller thread's handle here.
3632 (Bug#12832)
3633
3634 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
3635
3636 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
3637 called (Bug#12834).
3638
3639 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
3640
3641 Remove no-longer-used pty_max_bytes variable.
3642 * process.c (pty_max_bytes): Remove; unused.
3643 (send_process): Do not set it.
3644
3645 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
3646
3647 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
3648 Update dependencies.
3649
3650 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
3651
3652 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
3653 This follows up on the 2012-09-29 patch that removed indirection
3654 for the 'function' field. Reported by Sergey Vinokurov in
3655 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
3656
3657 2012-11-14 Eli Zaretskii <eliz@gnu.org>
3658
3659 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
3660 different name, as the MS runtime does not have such a function,
3661 and probably never will.) All callers changed. Ignore DIRFD
3662 value if PATH is an absolute file name, to match Posix spec
3663 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
3664 symlinks.
3665
3666 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
3667
3668 * xdisp.c (echo_area_display, redisplay_internal):
3669 Omit redundant check whether frame_garbaged is set.
3670
3671 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
3672
3673 Use faccessat, not access, when checking file permissions (Bug#12632).
3674 This fixes a bug that has been present in Emacs since its creation.
3675 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
3676 which must set some sort of record. (Torek's bug report was against
3677 a predecessor of GNU Emacs, but GNU Emacs happened to have the
3678 same common flaw.) See Torek's Usenet posting
3679 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
3680 Posted: Fri Apr 8 14:18:56 1983.
3681 * Makefile.in (LIB_EACCESS): New macro.
3682 (LIBES): Use it.
3683 * callproc.c (init_callproc):
3684 * charset.c (init_charset):
3685 * fileio.c (check_existing, check_executable, check_writable)
3686 (Ffile_readable_p):
3687 * lread.c (openp, load_path_check):
3688 * process.c (allocate_pty):
3689 * xrdb.c (file_p):
3690 Use effective UID when checking permissions, not real UID.
3691 * callproc.c (init_callproc):
3692 * charset.c (init_charset):
3693 * lread.c (load_path_check, init_lread):
3694 Test whether directories are accessible, not merely whether they exist.
3695 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
3696 * fileio.c (check_existing, check_executable, check_writable)
3697 (Ffile_readable_p):
3698 Use symbolic names instead of integers for the flags, as they're
3699 portable now.
3700 (check_writable): New arg AMODE. All uses changed.
3701 Set errno on failure.
3702 (Ffile_readable_p): Use faccessat, not stat + open + close.
3703 (Ffile_writable_p): No need to call check_existing + check_writable.
3704 Just call check_writable and then look at errno. This saves a syscall.
3705 dir should never be nil; replace an unnecessary runtime check
3706 with an eassert. When checking the parent directory of a nonexistent
3707 file, check that the directory is searchable as well as writable, as
3708 we can't create files in unsearchable directories.
3709 (file_directory_p): New function, which uses 'stat' on most platforms
3710 but faccessat with D_OK (for efficiency) if WINDOWSNT.
3711 (Ffile_directory_p, Fset_file_times): Use it.
3712 (file_accessible_directory_p): New function, which uses a single
3713 syscall for efficiency.
3714 (Ffile_accessible_directory_p): Use it.
3715 * xrdb.c (file_p): Use file_directory_p.
3716 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
3717 * lread.c (openp): When opening a file, use fstat rather than
3718 stat, as that avoids a permissions race. When not opening a file,
3719 use file_directory_p rather than stat.
3720 (dir_warning): First arg is now a usage string, not a format.
3721 Use errno. All uses changed.
3722 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
3723 that merely introduced a race.
3724 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
3725 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
3726 and similarly for the other O_* flags.
3727 * w32.c (sys_faccessat): Rename from sys_access and switch to
3728 faccessat's API. All uses changed.
3729 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
3730 (magic_db): Rename from magic_file_p.
3731 (magic_db, search_magic_path): Return an XrmDatabase rather than a
3732 char *, so that we don't have to test for file existence
3733 separately from opening the file for reading. This removes a race
3734 fixes a permission-checking problem, and simplifies the code.
3735 All uses changed.
3736 (file_p): Remove; no longer needed.
3737
3738 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
3739
3740 Omit glyphs initialization at startup.
3741 * dispnew.c (glyphs_initialized_initially_p): Remove.
3742 (adjust_frame_glyphs_initially): Likewise. Adjust users.
3743 (Fredraw_frame): Move actual code from here...
3744 (redraw_frame): ...to here. Add eassert. Adjust comment.
3745 (Fredraw_display): Use redraw_frame.
3746 * xdisp.c (clear_garbaged_frames): Likewise.
3747
3748 2012-11-13 Eli Zaretskii <eliz@gnu.org>
3749
3750 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
3751 passed to pint2str and pint2hrstr to be at most the size of the
3752 frame's decode_mode_spec_buffer. This avoids crashes with very
3753 large values of FIELD_WIDTH argument to decode_mode_spec.
3754 (Bug#12867)
3755
3756 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
3757
3758 Fix a race with verify-visited-file-modtime (Bug#12863).
3759 Since at least 1991 Emacs has ignored an mtime difference of no
3760 more than one second, but my guess is that this was to work around
3761 file system bugs that were fixed long ago. Since the race is
3762 causing problems now, let's remove that code.
3763 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
3764 whose time stamp is off by no more than a second. Insist that the
3765 file time stamps match exactly.
3766
3767 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3768
3769 * frame.h (struct frame): Convert external_tool_bar member to
3770 1-bit unsigned bitfield.
3771 * termhooks.h (struct terminal): Remove mouse_moved member since
3772 all users are long dead. Adjust comment on mouse_position_hook.
3773
3774 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3775
3776 Simplify by using FOR_EACH_FRAME here and there.
3777 * frame.c (next_frame, prev_frame, other_visible_frames)
3778 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
3779 * w32term.c (x_window_to_scroll_bar): Likewise.
3780 * window.c (window_list): Likewise.
3781 * xdisp.c (x_consider_frame_title): Likewise.
3782 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
3783 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3784 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
3785 * xmenu.c (menubar_id_to_frame): Likewise.
3786 * xselect.c (frame_for_x_selection): Likewise.
3787 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
3788 (x_window_to_menu_bar): Likewise.
3789 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
3790
3791 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
3792
3793 * data.c (Qdefalias_fset_function): Now static.
3794
3795 Another tweak to vectorlike_header change.
3796 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
3797 Remove, and replace all uses with ...
3798 (next_in_free_list, set_next_in_free_list):
3799 New functions, which respect C's aliasing rules better.
3800
3801 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
3802
3803 * window.c (list4i): Rename from 'quad'. All uses changed.
3804 Needed because <sys/types.h> defines 'quad' on Solaris 10.
3805
3806 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
3807
3808 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
3809 warning about mixing declarations and code in ISO C90.
3810
3811 2012-11-10 Martin Rudalics <rudalics@gmx.at>
3812
3813 * window.c (Fsplit_window_internal): Set combination limit of
3814 new parent window to t iff Vwindow_combination_limit is t;
3815 fixing a regression introduced with the change from 2012-09-22.
3816 (Fset_window_combination_limit): Fix doc-string.
3817
3818 2012-11-10 Eli Zaretskii <eliz@gnu.org>
3819
3820 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
3821 amount when the scroll margins are too large. When scrolling
3822 backwards in the buffer, give up if cannot reach point or the
3823 scroll margin within a reasonable number of screen lines.
3824 Fixes point position in window under scroll-up/down-aggressively when
3825 point is positioned many lines beyond the window top/bottom.
3826 (Bug#12811)
3827
3828 * ralloc.c (relinquish): If real_morecore fails to return memory
3829 to the system, don't crash; instead, leave the last heap
3830 unchanged and return. (Bug#12774)
3831
3832 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3833
3834 * lisp.h (AUTOLOADP): New macro.
3835 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
3836 * data.c (Ffset): Remove special ad-advice-info handling.
3837 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
3838 (Fsubr_arity): CSE.
3839 (Finteractive_form): Simplify.
3840 (Fquo): Don't insist on having at least 2 arguments.
3841 (Qdefalias_fset_function): New var.
3842
3843 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3844
3845 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
3846
3847 * nsfont.m (Qcondensed, Qexpanded): New variables.
3848 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
3849 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
3850
3851 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3852
3853 Fix recently introduced crash on MS-Windows (Bug#12839).
3854 * w32term.h (struct scroll_bar): Use convenient header.
3855 (SCROLL_BAR_VEC_SIZE): Remove.
3856 * w32term.c (x_scroll_bar_create): Use VECSIZE.
3857
3858 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3859
3860 Tweak last vectorlike_header change.
3861 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
3862 vectorlike object on the free list. This is introduced to avoid
3863 some (but not all) pointer casting and aliasing problems, see
3864 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
3865 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
3866 objects.
3867 (xvectype, xvecsize): Use them to examine Lisp_Object values.
3868
3869 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3870
3871 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
3872 been removed, so remove them here also.
3873
3874 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3875
3876 * doc.c (Fdocumentation): Handle new property
3877 dynamic-docstring-function to replace the old ad-advice-info.
3878
3879 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3880
3881 * fns.c (Qeql, hashtest_eq): Now static.
3882
3883 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3884
3885 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
3886 * fns.c (hashfn_eq, hashfn_eql, sxhash):
3887 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
3888 * buffer.c (compare_overlays): Use XLI rather than XHASH.
3889
3890 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
3891
3892 Use same hash function for hashfn_profiler as for hash_string etc.
3893 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
3894 * lisp.h (sxhash_combine): New inline function, with the contents
3895 of the old SXHASH_COMBINE.
3896 * profiler.c (hashfn_profiler): Use it, instead of having a
3897 special hash function containing a comparison that always yields 1.
3898
3899 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3900
3901 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
3902 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3903 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3904 Remove unused vars.
3905
3906 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3907
3908 * image.c (xpm_make_color_table_h): Fix compiler error because
3909 make_hash_table changed.
3910
3911 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3912
3913 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3914
3915 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3916
3917 Use ad-hoc comparison function for the profiler's hash-tables.
3918 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3919 (make_log): Use them.
3920 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3921 call Fequal any more.
3922 (Ffunction_equal): New function.
3923 (cmpfn_profiler, hashfn_profiler): New functions.
3924 (syms_of_profiler): Initialize them.
3925 * lisp.h (struct hash_table_test): New struct.
3926 (struct Lisp_Hash_Table): Use it.
3927 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3928 * fns.c (make_hash_table): Take a struct to describe the test.
3929 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3930 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3931 (hash_lookup, hash_remove_from_table): Move assertion checking of
3932 hashfn result here. Check hash-equality before calling cmpfn.
3933 (Fmake_hash_table): Adjust call to make_hash_table.
3934 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3935 (syms_of_fns): Initialize them.
3936 * emacs.c (main): Move syms_of_fns earlier.
3937 * xterm.c (syms_of_xterm):
3938 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3939 * print.c (print_object): Adjust to new hash-table struct.
3940 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3941
3942 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3943
3944 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3945 value of w32-scroll-lock-modifier is neither nil nor one of the
3946 known key modifiers. (Bug#12806)
3947
3948 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3949
3950 Shrink struct vectorlike_header to the only size field.
3951 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3952 Adjust comment.
3953 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3954 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3955 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3956 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3957 information from the vector header. Adjust comment.
3958 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3959 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3960 layout.
3961 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3962 (struct vectorlike_header): Remove next member. Adjust comment.
3963 (struct Lisp_Subr): Add convenient header. Adjust comment.
3964 (allocate_pseudovector): Adjust prototype.
3965 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3966 (sweep_string, lisp_malloc): Remove useless prototypes.
3967 (enum mem_type): Adjust comment.
3968 (NEXT_IN_FREE_LIST): New macro.
3969 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3970 (Fmake_bool_vector): Likewise.
3971 (struct large_vector): New type to represent allocation unit for
3972 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3973 (large_vectors): Change type to struct large_vector.
3974 (allocate_vector_from_block): Simplify.
3975 (PSEUDOVECTOR_NBYTES): Replace with...
3976 (vector_nbytes): ...new function. Adjust users.
3977 (sweep_vectors): Adjust processing of large vectors.
3978 (allocate_vectorlike): Likewise.
3979 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3980 Add easserts. Adjust XSETPVECTYPESIZE usage.
3981 (allocate_buffer): Use BUFFER_PVEC_INIT.
3982 (live_vector_p): Adjust to match large vector.
3983 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3984 * buffer.h (struct buffer): Add next member.
3985 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3986 New macros.
3987 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3988 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3989 (copy_hash_table): Adjust to match vector header change.
3990 * lread.c (defsubr): Use XSETPVECTYPE.
3991 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3992 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3993 (xvecsize): New command.
3994
3995 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3996
3997 * keyboard.c (event_to_kboard): Do not dereference
3998 frame_or_window field of SELECTION_REQUEST_EVENT
3999 and SELECTION_CLEAR_EVENT events (Bug#12814).
4000 * xterm.h (struct selection_input_event): Adjust comment.
4001
4002 2012-11-07 Eli Zaretskii <eliz@gnu.org>
4003
4004 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
4005 such as Scroll Lock, if the respective keys are treated as
4006 function keys, not as modifiers. This avoids destroying non-ASCII
4007 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
4008
4009 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
4010
4011 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
4012
4013 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4014
4015 Restore some duplicate definitions (Bug#12814).
4016 This undoes part of the 2012-11-03 changes. Some people build
4017 with plain -g rather than with -g3, and they need the duplicate
4018 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
4019 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
4020 Define as macros, as well as as enums or as constants.
4021
4022 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
4023
4024 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
4025 to keypad keys (Bug#12816).
4026
4027 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
4028
4029 Minor adjustments of recently-changed frame functions.
4030 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
4031 known to be a frame (we're in the FRAMEP branch).
4032 * lisp.h (Qframep): Remove decl. frame.h declares this.
4033 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
4034 since they're meant for Lisp fixnum values.
4035
4036 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4037
4038 * window.c (Fwindow_combination_limit): Revert to the only
4039 required argument and adjust docstring as suggested in
4040 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
4041 by Martin Rudalics <rudalics@gmx.at>.
4042
4043 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4044
4045 Widely used frame validity and checking functions.
4046 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
4047 * frame.c (decode_live_frame, decode_any_frame): New functions.
4048 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
4049 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
4050 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
4051 (Fframe_pointer_visible_p): Use decode_any_frame.
4052 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
4053 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
4054 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
4055 (Fframe_focus): Likewise. Allow zero number of arguments.
4056 Adjust docstring.
4057 (frame_buffer_list, frame_buffer_predicate): Remove.
4058 * lisp.h (frame_buffer_predicate): Remove prototype.
4059 * buffer.c (Fother_buffer): Use decode_any_frame.
4060 * xdisp.c (Ftool_bar_lines_needed): Likewise.
4061 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
4062 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
4063 (Fclose_font, Ffont_info): Use decode_live_frame.
4064 * fontset.c (check_fontset_name): Likewise.
4065 * terminal.c (Fframe_terminal): Likewise.
4066 * w32fns.c (check_x_frame): Likewise.
4067 * window.c (Fminibuffer_window, Fwindow_at)
4068 (Fcurrent_window_configuration): Likewise.
4069 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
4070 Likewise. Allow zero number of arguments. Adjust docstring.
4071 * dispnew.c (Fredraw_frame): Likewise.
4072 * xfaces.c (frame_or_selected_frame): Remove.
4073 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
4074 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
4075 (Fframe_face_alist): Use decode_live_frame.
4076 * xfns.c (check_x_frame): Likewise.
4077
4078 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
4079
4080 * window.c (quad): New function.
4081 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
4082 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
4083 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
4084 (Fwindow_line_height): Use it.
4085 (Fwindow_fringes): Use list3.
4086 (Fwindow_scroll_bars): Use list4.
4087 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
4088 (Fwindow_combination_limit): Allow zero number of arguments.
4089
4090 2012-11-05 Eli Zaretskii <eliz@gnu.org>
4091
4092 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
4093
4094 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
4095 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
4096 file descriptor 2 for standard error. (Bug#12805)
4097
4098 2012-11-05 Chong Yidong <cyd@gnu.org>
4099
4100 * process.c (wait_reading_process_output): Revert previous change.
4101
4102 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
4103
4104 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
4105 This removes code that has been obsolete since around 1990.
4106 * callproc.c (Fcall_process):
4107 * emacs.c (main):
4108 * process.c (create_process):
4109 * term.c (dissociate_if_controlling_tty):
4110 Assume setsid exists.
4111 * callproc.c (child_setup): Assume setpgid exists and behaves as
4112 per POSIX.1-1988 or later.
4113 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
4114 * emacs.c (shut_down_emacs):
4115 * sysdep.c (sys_suspend, init_foreground_group):
4116 Assume getpgrp behaves as per POSIX.1-1998 or later.
4117 * msdos.c (setpgrp): Remove.
4118 (tcgetpgrp, setpgid, setsid): New functions.
4119 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
4120 * term.c (no_controlling_tty): Remove; unused.
4121 * w32proc.c (setpgrp): Remove.
4122 (setsid, tcgetpgrp): New functions.
4123
4124 Simplify by assuming __fpending.
4125 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
4126 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
4127 Do not assume that __fpending's result fits in int.
4128
4129 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
4130
4131 Remove EMACS_OUTQSIZE+sleep hack.
4132 * dispnew.c (update_frame_1): Remove hack for terminals slower
4133 than 2400 bps, which throttled Emacs by having it sleep.
4134 This code hasn't worked since at least 2007, when the multi-tty stuff
4135 was added, and anyway those old terminals are long dead.
4136 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
4137 without the dispnew.c change, as dispnew.c doesn't include systty.h.
4138
4139 Fix data-loss with --version (Bug#9574).
4140 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
4141 as we can't assume that emacs_strerror is initialized, and strerror
4142 is good enough here.
4143 (main): Invoke atexit earlier, to catch earlier instances of
4144 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
4145
4146 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
4147
4148 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
4149 (keyDown): Remap keypad keys to X11 virtual key codes.
4150
4151 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
4152
4153 Fix data-loss with --batch (Bug#9574).
4154 * emacs.c: Include <close-stream.h>.
4155 (close_output_streams): New function.
4156 (main): Pass it to atexit, so that Emacs closes stdout and stderr
4157 and handles errors appropriately.
4158 (Fkill_emacs): Don't worry about flushing, as close_output_stream
4159 does that now.
4160
4161 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
4162 The symptom is a diagnostic "GLib-WARNING **: In call to
4163 g_spawn_sync(), exit status of a child process was requested but
4164 SIGCHLD action was set to SIG_IGN and ECHILD was received by
4165 waitpid(), so exit status can't be returned." The diagnostic
4166 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
4167 The real bug is a race condition between Emacs and glib: Emacs
4168 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
4169 so that glib can't find it. Work around the bug by invoking
4170 waitpid only on subprocesses that Emacs itself creates.
4171 * process.c (create_process, record_child_status_change):
4172 Don't use special value -1 in pid field, as the caller now must
4173 know the pid rather than having the callee infer it.
4174 The inference was sometimes incorrect anyway, due to another race.
4175 (create_process): Set new 'alive' member if child is created.
4176 (process_status_retrieved): New function.
4177 (record_child_status_change): Use it.
4178 Accept negative 1st argument, which means to wait for the
4179 processes that Emacs already knows about. Move special-case code
4180 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
4181 processes that have already been waited for, by testing and
4182 clearing new 'alive' member.
4183 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
4184 now does this internally.
4185 (handle_child_signal): Let record_child_status_change do all
4186 the work, since we do not want to reap all exited child processes,
4187 only the child processes that Emacs itself created.
4188 * process.h (Lisp_Process): New boolean member 'alive'.
4189
4190 Omit duplicate definitions no longer needed with gcc -g3.
4191 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
4192 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
4193 Define only as macros. There's no longer any need to also define
4194 these symbols as enums or as constants, since we now assume
4195 gcc -g3 when debugging.
4196
4197 2012-11-03 Eli Zaretskii <eliz@gnu.org>
4198
4199 * lisp.mk: Adjust comments to the fact that term/internal is now
4200 loaded from loadup.el.
4201
4202 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
4203 (msdos_fatal_signal): New function.
4204 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
4205 its argument list.
4206
4207 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
4208 for GCC versions before 4.
4209 (emacs_raise): Define to call msdos_fatal_signal.
4210
4211 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
4212 iterator when starting in the middle of a display or overlay
4213 string. (Bug#12745)
4214
4215 2012-11-03 Chong Yidong <cyd@gnu.org>
4216
4217 * process.c (wait_reading_process_output): Clean up the last
4218 change.
4219
4220 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
4221
4222 * process.c (wait_reading_process_output): Avoid a race condition
4223 with SIGIO delivery (Bug#11536).
4224
4225 2012-11-03 Chong Yidong <cyd@gnu.org>
4226
4227 * buffer.c (cursor_type): Untabify docstring.
4228
4229 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
4230
4231 * frame.h (struct frame): Drop can_have_scroll_bars member
4232 which is meaningless for a long time. Adjust comments.
4233 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
4234 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
4235
4236 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
4237
4238 * window.c (decode_next_window_args): Update window arg after
4239 calling decode_live_window and so fix crash reported at
4240 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
4241 by Juanma Barranquero <lekktu@gmail.com>.
4242 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
4243 * font.c (Ffont_at): Likewise.
4244
4245 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
4246
4247 * widget.c (resize_cb): New function.
4248 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
4249 (EmacsFrameResize): Check if all is up to date before changing frame
4250 size.
4251
4252 2012-11-02 Eli Zaretskii <eliz@gnu.org>
4253
4254 Implement backtrace output for fatal errors on MS-Windows.
4255 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
4256 (BACKTRACE_LIMIT_MAX): New macro.
4257 (w32_backtrace): New function.
4258 (emacs_abort): Use w32_backtrace when the user chooses not to
4259 attach a debugger. Update the text of the abort dialog.
4260
4261 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
4262
4263 Window-related stuff cleanup here and there.
4264 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
4265 Use decode_any_window.
4266 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
4267 * xdisp.c (Fformat_mode_line): Likewise.
4268 * font.c (Ffont_at): Use decode_live_window.
4269 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
4270 * window.c (decode_next_window_args): Likewise.
4271 (decode_any_window): Remove static.
4272 * window.h (decode_any_window): Add prototype.
4273 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
4274 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
4275 respectively.
4276
4277 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
4278
4279 Remove pad from struct input_event.
4280 * termhooks.h (struct input_event): Remove padding field.
4281 Adjust comment.
4282 * keyboard.c (event_to_kboard): Simplify because frame_or_window
4283 member is never cons for a long time. Adjust comment.
4284 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
4285 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
4286 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
4287 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
4288
4289 2012-11-01 Eli Zaretskii <eliz@gnu.org>
4290
4291 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
4292
4293 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
4294
4295 Fix crash when using Emacs as commit editor for git (Bug#12697).
4296 * callproc.c (setpgrp): Remove macro, as we now use setpgid
4297 and it is configured in conf_post.h.
4298 (Fcall_process): Don't invoke both setsid and setpgid; the former
4299 is enough, if it exists.
4300 * callproc.c (Fcall_process, child_setup):
4301 * process.c (create_process): Use setpgid.
4302 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
4303 for the real thing.
4304 * dispnew.c (init_display): Initialize the foreground group
4305 if we are running a tty display.
4306 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
4307 * lisp.h (init_foreground_group): New decl.
4308 * sysdep.c (inherited_pgroup): New static var.
4309 (init_foreground_group, tcsetpgrp_without_stopping)
4310 (narrow_foreground_group, widen_foreground_group): New functions.
4311 (init_sys_modes): Narrow foreground group.
4312 (reset_sys_modes): Widen foreground group.
4313
4314 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
4315
4316 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
4317
4318 2012-10-31 Martin Rudalics <rudalics@gmx.at>
4319
4320 * minibuf.c (read_minibuf): Restore current buffer since
4321 choose_minibuf_frame calling Fset_frame_selected_window may
4322 change it (Bug#12766).
4323
4324 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
4325
4326 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
4327
4328 2012-10-30 Kenichi Handa <handa@gnu.org>
4329
4330 * font.c (Ffont_at): If WINDOW is specified and it is not
4331 displaying the current buffer, signal an error.
4332
4333 2012-10-29 Daniel Colascione <dancol@dancol.org>
4334
4335 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
4336 In preparation for fixing bug#12739, move these functions from
4337 here...
4338
4339 * coding.h, coding.c: ... to here, and compile them only when
4340 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
4341 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
4342
4343 2012-10-28 Eli Zaretskii <eliz@gnu.org>
4344
4345 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
4346 (timer_loop, getitimer, setitimer): Use it instead of
4347 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
4348 'clock'.
4349 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
4350 literal 10000.
4351
4352 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
4353
4354 * nsterm.m (NO_APPDEFINED_DATA): New define.
4355 (last_appdefined_event_data): New variable
4356 (last_appdefined_event): Remove.
4357 (ns_select): Initialize t from last_appdefined_event_data instead
4358 of [last_appdefined_event data1].
4359 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
4360 remove last_appdefined_event (Bug#12698).
4361
4362 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
4363
4364 * frame.c (x_set_font): Catch internal error.
4365
4366 2012-10-27 Eli Zaretskii <eliz@gnu.org>
4367
4368 Avoid overflow in w32 implementation of interval timers.
4369 When possible, for ITIMER_PROF count only times the main thread
4370 actually executes.
4371 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
4372 'volatile ULONGLONG' types. All the other data which was
4373 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
4374 (GetThreadTimes_Proc): New typedef.
4375 (w32_get_timer_time): New function, returns a suitable time value
4376 for the timer.
4377 (timer_loop): Enter critical section when accessing ULONGLONG
4378 values of the itimer_data struct, as these accesses are no longer
4379 atomic. Call 'w32_get_timer_time' instead of 'clock'.
4380 Remove unused variable.
4381 (init_timers): Initialize s_pfn_Get_Thread_Times.
4382 (start_timer_thread): Don't assign itimer->caller_thread here.
4383 (getitimer): Assign itimer->caller_thread here.
4384 (setitimer): Always call getitimer to get the value of ticks_now.
4385 (sys_spawnve): Avoid compiler warning about format mismatch.
4386
4387 2012-10-26 Eli Zaretskii <eliz@gnu.org>
4388
4389 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
4390 mouse movement events if the menu bar is active. This avoids
4391 producing a busy "hour-glass" cursor by Windows if the mouse
4392 pointer is positioned over a tooltip shown for some menu item.
4393
4394 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
4395
4396 Don't assume process IDs fit in int.
4397 * emacs.c (shut_down_emacs) [!DOS_NT]:
4398 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
4399 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
4400 Use pid_t, not int, to store process IDs, as 'int'
4401 is not wide enough on a few platforms (e.g., AIX and IRIX).
4402
4403 2012-10-23 Kenichi Handa <handa@gnu.org>
4404
4405 The following change is to make face-font-rescale-alist work
4406 correctly for non-ASCII fonts.
4407
4408 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
4409 (font_open_for_lface): Handle Vface_font_rescale_alist.
4410
4411 2012-10-23 Chong Yidong <cyd@gnu.org>
4412
4413 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
4414
4415 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
4416
4417 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
4418 for screen font.
4419 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
4420
4421 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
4422 event (Bug#12681).
4423
4424 2012-10-21 Glenn Morris <rgm@gnu.org>
4425
4426 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
4427
4428 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
4429
4430 Port to OpenBSD 5.1.
4431 * frame.c (Fmouse_position, Fmouse_pixel_position):
4432 * xdisp.c (produce_stretch_glyph):
4433 Declare local vars only when they're needed.
4434 This is clearer and avoids a warning on OpenBSD about unused vars.
4435 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
4436 This is safer, and avoids OpenBSD warnings about unused vars.
4437 * keyboard.c (record_menu_key): Remove unnecessary decl.
4438 (poll_timer): Define only if POLL_FOR_INPUT is defined.
4439 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
4440 as our definition clashes with OpenBSD's.
4441 * xfaces.c (load_face_colors, check_lface_attrs)
4442 (get_lface_attributes_no_remap, get_lface_attributes)
4443 (lface_fully_specified_p, x_supports_face_attributes_p)
4444 (tty_supports_face_attributes_p, face_fontset, realize_face)
4445 (realize_x_face, realize_tty_face):
4446 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
4447 merely Lisp_Object *. This is more informative and avoids
4448 a warning on OpenBSD about accessing beyond an object's size.
4449
4450 2012-10-20 Chong Yidong <cyd@gnu.org>
4451
4452 * lread.c (Fload): Doc fix (Bug#12592).
4453
4454 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4455
4456 * font.c (Ffont_at): Fix previous change.
4457
4458 2012-10-19 Eli Zaretskii <eliz@gnu.org>
4459
4460 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
4461 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
4462 for the reasons.
4463
4464 * alloc.c (NSTATICS): Decrease to 0x800.
4465
4466 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
4467
4468 * fns.c (Fnreverse): Include the problem element when signaling an
4469 error (bug#12677).
4470
4471 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
4472
4473 * nsterm.m (ns_select): Check writefds before call to
4474 FD_ISSET (Bug#12668).
4475
4476 2012-10-18 Daniel Colascione <dancol@dancol.org>
4477
4478 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
4479 (staticpro): If we run out of staticpro slots, die with an
4480 informative error instead of just calling emacs_abort.
4481
4482 2012-10-18 Martin Rudalics <rudalics@gmx.at>
4483
4484 Fix two flaws reported by Dmitry Antipov.
4485 * window.c (Ftemp_output_buffer_show): Remove.
4486 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
4487 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
4488
4489 2012-10-17 Eli Zaretskii <eliz@gnu.org>
4490
4491 * makefile.w32-in ($(BLD)/w32.$(O)):
4492 ($(BLD)/vm-limit.$(O)):
4493 ($(BLD)/term.$(O)):
4494 ($(BLD)/unexw32.$(O)):
4495 ($(BLD)/fileio.$(O)):
4496 ($(BLD)/dispnew.$(O)): Update dependencies.
4497
4498 * w32term.h (w32_initialize_display_info, initialize_w32_display):
4499 Add prototypes.
4500
4501 * w32proc.c: Include ctype.h.
4502
4503 * w32.h (init_environment, check_windows_init_file)
4504 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
4505 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
4506 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
4507 (sys_link): Add prototypes.
4508
4509 * w32.c: Include w32select.h.
4510 (sys_access, e_malloc, sys_select): Add prototypes.
4511 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
4512
4513 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
4514
4515 * unexw32.c: Include lisp.h and w32.h.
4516
4517 * term.c [WINDOWSNT]: Include w32term.h.
4518
4519 * process.c [WINDOWSNT]: Add prototype of sys_select.
4520
4521 * fileio.c [WINDOWSNT]: Include w32.h.
4522
4523 * dispnew.c [WINDOWSNT]: Include w32.h.
4524
4525 * cygw32.c (Fcygwin_convert_path_to_windows)
4526 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
4527 Lisp_Object values. (Bug#12661)
4528
4529 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
4530 to Lisp_Object. (Bug#12661)
4531
4532 2012-10-17 Kenichi Handa <handa@gnu.org>
4533
4534 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
4535 invalidate.
4536
4537 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4538
4539 * buffer.c (Fkill_buffer): When unchaining the marker,
4540 reset its buffer pointer to NULL (Bug#12652).
4541
4542 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4543
4544 Do not verify indirection counters of killed buffers (Bug#12579).
4545 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
4546 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
4547
4548 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4549
4550 * alloc.c (Fmake_byte_code): Fix typo in comment.
4551 * print.c (print_interval): Define as static to match prototype.
4552 * indent.c (disptab_matches_widthtab, recompute_width_table):
4553 Convert to eassert.
4554
4555 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4556
4557 * editfns.c (get_system_name): Remove.
4558 * lisp.h (get_system_name): Remove prototype.
4559 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
4560 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
4561
4562 2012-10-15 Daniel Colascione <dancol@dancol.org>
4563
4564 * dbusbind.c: Add comment explaining reason for previous change.
4565
4566 2012-10-15 Martin Rudalics <rudalics@gmx.at>
4567
4568 * window.c (Fwindow_end): Rewrite check whether cached position
4569 can be used (Bug#12600).
4570 (resize_frame_windows, grow_mini_window, shrink_mini_window):
4571 Set windows_or_buffers_changed.
4572
4573 2012-10-15 Daniel Colascione <dancol@dancol.org>
4574
4575 * dbusbind.c: Fix cygw32 build break when compiling with dbus
4576 enabled by undefining the symbol "interface", which the platform
4577 headers define to something incompatible.
4578
4579 2012-10-14 Daniel Colascione <dancol@dancol.org>
4580
4581 * image.c (init_tiff_functions, init_imagemagick_functions)
4582 (init_svg_functions): Fix cygw32 build break by using these
4583 functions only when WINDOWSNT _and_ HAVE_NTGUI.
4584
4585 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
4586
4587 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
4588
4589 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
4590
4591 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
4592
4593 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
4594
4595 * coding.c (detect_coding): Set coding->id before calling
4596 this->detector.
4597
4598 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
4599
4600 * fileio.c: Formatting fixes.
4601
4602 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
4603
4604 Fix some stat-related races.
4605 * fileio.c (Fwrite_region): Avoid race condition if a file is
4606 removed or renamed by some other process immediately after Emacs
4607 writes it but before Emacs stats it. Do not assume that stat (or
4608 fstat) succeeds.
4609 * image.c (slurp_file): Resolve the file name with fopen + fstat
4610 rather than stat + fopen.
4611 (pbm_read_file) [0]: Remove unused code with stat race.
4612 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
4613 Remove ineffective code with stat race.
4614
4615 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4616
4617 * doc.c (get_doc_string): Don't signal an error if the file is missing.
4618
4619 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4620
4621 * nsterm.m (hold_event_q): New static variable.
4622 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
4623 ! q_event_ptr.
4624 (hold_event): New function.
4625 (ns_read_socket): If hold_event_q have events, store them and
4626 return (Bug#12384).
4627 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
4628 is zero (Bug#12384).
4629
4630 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
4631
4632 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
4633
4634 2012-10-12 Eli Zaretskii <eliz@gnu.org>
4635
4636 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
4637
4638 * fileio.c (check_existing): New function.
4639 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
4640 instead of calling 'stat', when what's needed is to check whether
4641 a file exists. This avoids expensive system calls on MS-Windows.
4642 (Bug#12587)
4643
4644 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
4645
4646 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
4647 determine whether a file exists and is not a directory.
4648
4649 * lisp.h (check_existing): Add prototype.
4650
4651 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4652
4653 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
4654
4655 2012-10-12 Glenn Morris <rgm@gnu.org>
4656
4657 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
4658
4659 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4660
4661 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
4662
4663 * eval.c (Fautoload): Remember previous autoload status in load-history.
4664
4665 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4666
4667 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
4668 * lread.c (load_each_byte, new_backquote_flag, readchar)
4669 (read_filtered_event, lisp_file_lexically_bound_p)
4670 (safe_to_load_version, Fload, complete_filename_p, openp)
4671 (build_load_history, readevalloop, read_escape, read1)
4672 (string_to_number, read_vector, read_list):
4673 * macros.c (Fstart_kbd_macro):
4674 * marker.c (CONSIDER):
4675 * menu.c (parse_single_submenu, digest_single_submenu)
4676 (find_and_return_menu_selection, Fx_popup_menu):
4677 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
4678 (Ftry_completion):
4679 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
4680 (ns_menu_show):
4681 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
4682 (xmenu_show, xdialog_show):
4683 Use bool for booleans.
4684 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
4685 as it's not a predicate. All uses changed. Omit unnecessary
4686 buffer termination.
4687
4688 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
4689
4690 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
4691 (save_excursion_restore): Do not restore mark if it was not saved.
4692
4693 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4694
4695 * marker.c (cached_modiff): EMACS_INT, not int.
4696
4697 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
4698 instead of having a wrong decl.
4699 * nsmenu.m (waiting_for_input): Remove wrong decl.
4700
4701 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4702
4703 keyboard.c, keymap.c: Use bool for booleans.
4704 * dispnew.c (sit_for): Distinguish between 3-way display_option
4705 and boolean do_display.
4706 * keyboard.c (single_kboard, this_command_key_count_reset)
4707 (waiting_for_input, echoing, immediate_quit, input_pending)
4708 (interrupt_input, interrupts_deferred, pop_kboard)
4709 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
4710 (command_loop_1, adjust_point_for_property)
4711 (safe_run_hooks_error, input_polling_used, read_char):
4712 (help_char_p, readable_events, kbd_buffer_events_waiting)
4713 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
4714 (lucid_event_type_list_p, get_input_pending):
4715 (gobble_input, menu_separator_name_p, menu_bar_item)
4716 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
4717 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
4718 (keyremap_step, test_undefined, read_key_sequence)
4719 (detect_input_pending, detect_input_pending_ignore_squeezables)
4720 (detect_input_pending_run_timers, requeued_events_pending_p)
4721 (quit_throw_to_read_char, Fset_input_interrupt_mode):
4722 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
4723 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
4724 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
4725 (accessible_keymaps_1, Fkey_description, push_key_description):
4726 (shadow_lookup, struct where_is_internal_data)
4727 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
4728 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
4729 (describe_map, describe_vector):
4730 * menu.c (single_menu_item):
4731 * nsmenu.m (ns_update_menubar):
4732 * process.c (wait_reading_process_output):
4733 * search.c (scan_buffer, scan_newline):
4734 Use bool for boolean.
4735 * keyboard.c (timers_run, swallow_events)
4736 (detect_input_pending_run_timers):
4737 * process.c (wait_reading_process_output):
4738 Use unsigned for counter where wraparound-on-overflow is desired,
4739 since unsigned is guaranteed to have that behavior and signed is not.
4740 (read_char): Use ptrdiff_t for string length.
4741 (get_input_pending): Remove first argument, since it was always
4742 the same pointer-to-int (now pointer-to-boolean) &input_pending,
4743 and behave as if it had that value. Return new value of
4744 input_pending. All callers changed.
4745 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
4746 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
4747 a string length.
4748 * keymap.c (push_key_description): Omit last arg, which was always 1.
4749 All callers changed.
4750
4751 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
4752
4753 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
4754
4755 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
4756 ($(BLD)/term.$(O)): Update dependencies.
4757
4758 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4759
4760 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
4761 * lisp.h (enum pvec_type): Adjust comments and omit explicit
4762 initializer for PVEC_NORMAL_VECTOR.
4763
4764 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4765
4766 Clean out old termopts cruft.
4767 * termopts.h (flow_control, meta_key): Remove unused decls.
4768 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
4769 Don't include termopts.h.
4770
4771 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4772
4773 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
4774
4775 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4776
4777 * commands.h (immediate_quit): Remove duplicate decl.
4778
4779 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
4780
4781 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
4782 caching.
4783 (nsfont_open): Remove setting of Vfonts_in_cache.
4784 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
4785
4786 2012-10-09 Eli Zaretskii <eliz@gnu.org>
4787
4788 * w32fns.c (w32_last_error): Change the return value to DWORD, to
4789 match what GetLastError returns. Explain why the function is
4790 needed.
4791
4792 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
4793 'is_tooltip_frame', to avoid confusion with its global namesake.
4794
4795 2012-10-08 Daniel Colascione <dancol@dancol.org>
4796
4797 * xdisp.c (start_hourglass): Call w32_note_current_window when
4798 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
4799 build that caused Emacs to display the hourglass cursor forever.
4800
4801 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
4802 which is broken under remote desktop, calculate the number of
4803 colors available for a display based on the display's number of
4804 planes and number of bits per pixel per plane. (bug#10397).
4805
4806 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
4807
4808 * nsfont.m (Vfonts_in_cache): New variable.
4809 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
4810 are used. Add cached fonts to Vfonts_in_cache.
4811 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
4812
4813 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4814
4815 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4816 in nt/config.nt.
4817 (FONT_H): Define after FRAME_H.
4818 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
4819 Update dependencies.
4820
4821 * w32term.c: Remove leftover declaration of keyboard_codepage.
4822
4823 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4824
4825 * makefile.w32-in (FONT_H): Add $(FRAME_H).
4826 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
4827 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
4828 (GLOBAL_SOURCES): Add cygw32.c.
4829 ($(BLD)/unexw32.$(O)):
4830 ($(BLD)/w32.$(O)):
4831 ($(BLD)/w32console.$(O)):
4832 ($(BLD)/w32fns.$(O)):
4833 ($(BLD)/w32heap.$(O)):
4834 ($(BLD)/w32menu.$(O)):
4835 ($(BLD)/w32proc.$(O)): Add w32common.h.
4836
4837 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
4838 'const char *'.
4839 (x_to_w32_color): Don't modify the argument, modify a copy instead.
4840
4841 2012-10-08 Daniel Colascione <dancol@dancol.org>
4842
4843 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
4844 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
4845 accidental message numbering hole. Change other messages to
4846 match.
4847
4848 * w32select.h (HAVE_W32SELECT): Remove.
4849
4850 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
4851 w32common.h instead of w32heap.h.
4852
4853 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
4854 (get_allocation_unit, get_processor_type, get_w32_major_version)
4855 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4856 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4857 (OS_NT, os_subtype, cache_system_info): Move declarations to
4858 w32common.
4859
4860 * w32heap.c: Include w32common.h.
4861 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
4862 (w32_minor_version, w32_build_number, w32_subtype):
4863 Remove duplicate definitions.
4864
4865 * w32fns.c: Include w32common.h; include w32heap.h only in
4866 WINDOWSNT.
4867
4868 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
4869 Use `report_file_error' instead of `error' in order to better
4870 inform users of what went wrong. Increase NTGUI_UNICODE file
4871 dialog box file name length to 32k, the maximum allowed by the NT
4872 kernel.
4873
4874 * w32common.h: New file.
4875 (ROUND_UP, ROUND_DOWN, get_page_size)
4876 (get_allocation_unit, get_processor_type, get_w32_major_version)
4877 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4878 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4879 (OS_NT, os_subtype, cache_system_info): Move here.
4880
4881 * unexw32.c, unexcw.c: Include w32common.h.
4882
4883 * emacs.c (main): Use (defined (WINDOWSNT) || defined
4884 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
4885 to call syms_of_w32select.
4886
4887 * cygw32.h: Remove obsolete EXFUN declarations.
4888
4889 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
4890
4891 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
4892 of w32inevt.o from SOME_MACHINE_OBJECTS.
4893
4894 2012-10-08 Daniel Colascione <dancol@dancol.org>
4895
4896 * image.c: Permanent fix for JPEG compilation issue --- limit
4897 jpeglib `boolean' redefinition to Cygwin builds.
4898
4899 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4900
4901 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4902
4903 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4904 Cygwin.
4905
4906 2012-10-08 Daniel Colascione <dancol@dancol.org>
4907
4908 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4909 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4910 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4911 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4912 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4913 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4914 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4915 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4916 now a supported configuration.
4917
4918 * Makefile.in: consolidate image variables into LIBIMAGE; add
4919 W32_OBJ and W32_LIBS. Compile new files.
4920
4921 * conf_post.h:
4922 (_DebPrint) declare tracing facility for W32 debugging. We need
4923 to unify tracing later.
4924
4925 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4926 unconditional use of W32 Unicode functions. Cygwin runs only on
4927 100% Unicode operating systems.
4928
4929 * cygw32.c: New file. Define Cygwin-specific facilities.
4930 (Fcygwin_convert_path_to_windows)
4931 (Fcygwin_convert_path_from_windows): New user functions for
4932 accessing Cygwin path-munging routines.
4933
4934 * cygw32.h: New file.
4935 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4936 UTF-16LE strings temporarily inside non-Lisp-visible string
4937 objects.
4938
4939 (w32_strerror): Just what it says on the tin.
4940
4941 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4942 also run for Cygwin; both systems have the same problem with using
4943 GUI facilities in a forked child. Also call syms_of_cygw32,
4944 syms_of_w32select in correct places.
4945
4946 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4947 needs fork-then-exec for daemon launching.
4948
4949 * font.h: Include frame.h.
4950
4951 * image.c: Use the image library cache machinery only when we're
4952 compiling for native WINDOWSNT; Cygwin can use shared libraries
4953 like any other Unixlike system.
4954
4955 * keyboard.c: Clarify a comment regarding the input loop.
4956
4957 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4958 functions directly instead of trying to detect at runtime that our
4959 host operating system supports them. We make this change for two
4960 reasons: Cygwin lacks support for the multibyte character
4961 conversion functions used by the legacy menu code, and Cygwin
4962 never needs to rely on non-Unicode APIs.
4963
4964 * unexw32.c (hinst): Declare extern.
4965
4966 * w32.c: Change header order;
4967 (w32_strerror): Move to w32fns.c because we need it for
4968 non-WINDOWSNT builds.
4969
4970 * w32.h: Add #error macro to make sure we don't include w32.h for
4971 Cygwin builds. Remove w32select declarations.
4972
4973 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4974 w32fns.c. w32console.c is WINDOWSNT-only.
4975
4976 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4977 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4978 POSIXy alternative.
4979 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4980 (w32_major_version, w32_minor_version, w32_build_number)
4981 (os_subtype, sound_type): Define here
4982 (w32_defined_color): Make color parameter const for consistency
4983 with other _defined_color functions.
4984 (w32_createwindow): Unconditionally call w32_init_class instead of
4985 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4986 through the code is complex and unnecessary because class
4987 registration is practically free.
4988 (w32_name_of_message): New EMACSDEBUG-only function.
4989 (Fset_message_beep): Move here
4990 (Fx_open_connection): Require that the display name for Windows be
4991 "w32" for consistency, emacsclient disambiguation, and maybe, one
4992 day, multi-window-system support.
4993 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4994 Cygwin files for W32 GUI facilities, since these clearly don't
4995 expect Cygwin names.
4996 (_DebPrint): Define.
4997 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4998 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4999 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
5000 (w32_last_error): Remove.
5001
5002 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
5003
5004 * w32heap.c (syspage_mask): Declare here.
5005 (cache_system_info): Remove.
5006
5007 * w32inevt.c (faked_key): Define globally, not statically.
5008 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
5009 (w32_console_toggle_lock_key): Move to w32fns.c.
5010
5011 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
5012
5013 * w32proc.c (_DebPrint): Move to w32fns.c.
5014 * w32select.c: Include string.h, stdio.h for Cygwin.
5015 * w32select.h: New File.
5016
5017 * w32term.c: Include io.h for non-CYGWIN builds; needed for
5018 get_osfhandle.
5019 (w32_message_fd): New variable. Under Cygwin, holds the file
5020 descriptor the system used to tell us about pending thread
5021 messages.
5022
5023 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
5024 that prevented compilation under non-WINDOWSNT systems.
5025
5026 (w32_initialize): Open /dev/windows and assign it to
5027 w32_message_fd. Provide w32 feature.
5028
5029 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
5030 (WM_EMACS_INPUT_READY): add.
5031 (prepend_msg, w32_message_fd): Declare globally.
5032
5033 * w32xfns.c:
5034 (keyboard_handle): Use only when WINDOWSNT.
5035 (notify_msg_ready): New function. Posts a message to the main
5036 thread's message queue under CYGWIN, which wakes up the main
5037 thread from select(2) by making the /dev/windows file descriptor
5038 ready. Under WINDOWSNT, it sets an event the same way the old
5039 code did.
5040
5041 (post, prepend_msg): Actually call notify_msg_ready instead of
5042 setting the input event directly.
5043
5044 2012-10-07 Eli Zaretskii <eliz@gnu.org>
5045
5046 * ralloc.c (relinquish): If a heap is ready to be relinquished,
5047 but it still has blocs in it, don't return it to the system,
5048 instead of aborting. (Bug#12402)
5049
5050 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
5051
5052 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
5053
5054 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
5055 MAC_OS_X_VERSION_10_6.
5056 (syms_of_nsterm): Remove comment about Panther and above for
5057 ns-antialias-text.
5058 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
5059 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
5060 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
5061
5062 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
5063 MAC_OS_X_VERSION_10_4.
5064
5065 * nsmenu.m (fillWithWidgetValue:): Remove code for <
5066 MAC_OS_X_VERSION_10_2.
5067
5068 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
5069
5070 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
5071 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
5072
5073 * nsterm.m (ns_in_resize): Remove (Bug#12479).
5074 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
5075 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
5076 Remove ns_in_resize check.
5077 (ns_clear_frame_area): Remove resize handle code.
5078
5079 * nsfns.m (ns_in_resize): Remove.
5080 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
5081 Remove ns_in_resize check.
5082
5083 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
5084
5085 Improve sys_siglist detection.
5086 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
5087 defined as a macro, as is done in Solaris.
5088 (sys_siglist_entries): New macro.
5089 (save_strsignal): Use it.
5090 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
5091 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
5092
5093 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
5094
5095 * nsfns.m (Fx_create_frame): Call x_default_parameter with
5096 fullscreen/Fullscreen.
5097
5098 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
5099 tobar_height is new.
5100
5101 * nsterm.m (x_make_frame_visible): Check for fullscreen.
5102 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
5103 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
5104 (windowDidResize:): Check for correct window if old style fullscreen.
5105 Capitalize word in comment. Remove incorrect comment.
5106 (initFrameFromEmacs:): tbar_height renamed tibar_height.
5107 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
5108 error in drawing background.
5109 (toggleFullScreen:): Remove comment. Rearrange calls.
5110 Set toolbar values to zero, save old height in tobar_height.
5111 Restore tool bar height when leaving fullscreen.
5112 (canBecomeMainWindow): New function.
5113
5114 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
5115
5116 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
5117
5118 2012-10-05 Eli Zaretskii <eliz@gnu.org>
5119
5120 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
5121
5122 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
5123 that time stamps of directories could also be changed.
5124 Don't request the too broad GENERIC_WRITE, only the more restrictive
5125 FILE_WRITE_ATTRIBUTES access rights.
5126
5127 * fileio.c (Fset_file_times): Special-case ignoring errors for
5128 directories only on MSDOS, not on MS-Windows.
5129
5130 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
5131
5132 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
5133
5134 2012-10-04 Eli Zaretskii <eliz@gnu.org>
5135
5136 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
5137 see whether CreateFile failed.
5138
5139 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
5140
5141 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
5142 to avoid similar races.
5143 * keyboard.c (pending_signals): Now bool, not int.
5144
5145 Port timers to OpenBSD, plus check for timer failures.
5146 OpenBSD problem reported by Han Boetes.
5147 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
5148 and/or setitimer.
5149 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
5150 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
5151 like OpenBSD, which has timer_settime but does not declare it.
5152 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
5153 whether to use itimerspec-related primitives. All uses of
5154 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
5155
5156 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5157
5158 * profiler.c (handle_profiler_signal): Fix a malloc race
5159 that caused Emacs to hang on Fedora 17 when profiling Lisp.
5160
5161 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
5162
5163 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
5164
5165 2012-10-02 Eli Zaretskii <eliz@gnu.org>
5166
5167 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
5168 consistent with the change in return value of 'safe_strsignal'.
5169
5170 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
5171
5172 Prefer plain 'static' to 'static inline' (Bug#12541).
5173 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
5174 (bidi_set_sor_type, bidi_push_embedding_level)
5175 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
5176 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
5177 (bidi_cache_search, bidi_cache_ensure_space)
5178 (bidi_cache_iterator_state, bidi_cache_find)
5179 (bidi_peek_at_next_level, bidi_set_paragraph_end)
5180 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
5181 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
5182 Now 'static', not 'static inline'.
5183
5184 Count overruns when profiling; change units to ns.
5185 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
5186 Give extra weight to samples after overruns, to attempt to count
5187 the time more accurately.
5188 (setup_cpu_timer): Change sampling interval units from ms to ns, since
5189 the underlying primitives nominally do ns.
5190 (Fprofiler_cpu_start): Document the change. Mention that
5191 the sampling intervals are only approximate.
5192
5193 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
5194
5195 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
5196
5197 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
5198 case for the special 0 coding-system.
5199
5200 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
5201 (Fmake_overlay): Remove redundant tests.
5202 (fix_start_end_in_overlays): Remove redundant recentering.
5203
5204 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
5205
5206 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
5207 Update dependencies.
5208
5209 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5210
5211 Fix a malloc race condition involving strsignal.
5212 A signal can arrive in the middle of a malloc, and Emacs's signal
5213 handler can invoke strsignal, which can invoke malloc, which is
5214 not portable. This race condition bug makes Emacs hang on GNU/Linux.
5215 Fix it by altering the signal handler so that it does not invoke
5216 strsignal.
5217 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
5218 * process.c (status_message): Use const pointer, in case strsignal
5219 is #defined to safe_strsignal.
5220 * sysdep.c (sys_siglist, init_signals): Always define and
5221 initialize a substitute sys_siglist if the system does not define
5222 one, even if HAVE_STRSIGNAL.
5223 (safe_strsignal): Rename from strsignal. Always define,
5224 using sys_siglist. Return a const pointer.
5225 * syssignal.h (safe_strsignal): New decl.
5226 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
5227
5228 2012-10-01 Eli Zaretskii <eliz@gnu.org>
5229
5230 * w32proc.c (timer_loop): Fix code that waits for timer
5231 expiration, to avoid high CPU usage.
5232
5233 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
5234
5235 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
5236 (sweep_weak_table): Remove redundant prototypes.
5237
5238 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
5239
5240 * emacs.c: Move the inclusion of TERM_HEADER after including
5241 windows.h on WINDOWSNT. This avoids compilation problems with
5242 MSVC.
5243
5244 2012-10-01 Eli Zaretskii <eliz@gnu.org>
5245
5246 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
5247 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
5248 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
5249 as the previous version used 'void *'.
5250
5251 * ralloc.c (ROUNDUP): Fix last change.
5252 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
5253 'size_t'.
5254
5255 * w32proc.c <disable_itimers>: New static flag.
5256 (init_timers): Initialize it to zero, after creating the critical
5257 sections used by the timer threads.
5258 (term_timers): Set to 1 before deleting the critical sections.
5259 (getitimer, setitimer): If disable_itimers is non-zero, return an
5260 error indication without doing anything. Reported by Fabrice
5261 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
5262 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
5263 return results.
5264 [!HAVE_SETITIMER]: Behave as the previous version that didn't
5265 support timers.
5266
5267 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
5268 term_ntproc after all the other bookkeeping, to get timers working
5269 as long as possible.
5270
5271 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
5272
5273 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
5274 Suggested by Juri Linkov in
5275 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
5276
5277 Prefer plain 'static' to 'static inline' (Bug#12541).
5278 With static functions, modern compilers inline pretty well by
5279 themselves; advice from programmers often hurts as much as it helps.
5280 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
5281 this change shrinks the text size of the Emacs executable by 1.1%
5282 without affecting CPU significantly in my benchmark.
5283 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
5284 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
5285 (mark_maybe_object, mark_maybe_pointer, bounded_number):
5286 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
5287 (bset_auto_fill_function, bset_auto_save_file_format)
5288 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
5289 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
5290 (bset_cache_long_line_scans, bset_case_fold_search)
5291 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
5292 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
5293 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
5294 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
5295 (bset_header_line_format, bset_indicate_buffer_boundaries)
5296 (bset_indicate_empty_lines, bset_invisibility_spec)
5297 (bset_left_fringe_width, bset_major_mode, bset_mark)
5298 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
5299 (bset_name, bset_overwrite_mode, bset_pt_marker)
5300 (bset_right_fringe_width, bset_save_length)
5301 (bset_scroll_bar_width, bset_scroll_down_aggressively)
5302 (bset_scroll_up_aggressively, bset_selective_display)
5303 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
5304 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
5305 (set_buffer_overlays_after):
5306 * category.c (bset_category_table):
5307 * charset.c (read_hex):
5308 * coding.c (produce_composition, produce_charset)
5309 (handle_composition_annotation, handle_charset_annotation)
5310 (char_encodable_p):
5311 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
5312 (assign_row, set_frame_matrix_frame, make_current)
5313 (add_row_entry):
5314 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
5315 * fns.c (maybe_resize_hash_table):
5316 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
5317 * gmalloc.c (register_heapinfo):
5318 * image.c (lookup_image_type):
5319 * intervals.c (set_interval_object, set_interval_left)
5320 (set_interval_right, copy_interval_parent, rotate_right)
5321 (rotate_left, balance_possible_root_interval):
5322 * keyboard.c (kset_echo_string, kset_kbd_queue)
5323 (kset_keyboard_translate_table, kset_last_prefix_arg)
5324 (kset_last_repeatable_command, kset_local_function_key_map)
5325 (kset_overriding_terminal_local_map, kset_real_last_command)
5326 (kset_system_key_syms, clear_event, set_prop):
5327 * lread.c (digit_to_number):
5328 * marker.c (attach_marker, live_buffer, set_marker_internal):
5329 * nsterm.m (ns_compute_glyph_string_overhangs):
5330 * process.c (pset_buffer, pset_command)
5331 (pset_decode_coding_system, pset_decoding_buf)
5332 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
5333 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
5334 (pset_status, pset_tty_name, pset_type, pset_write_queue):
5335 * syntax.c (bset_syntax_table, dec_bytepos):
5336 * terminal.c (tset_param_alist):
5337 * textprop.c (interval_has_some_properties)
5338 (interval_has_some_properties_list):
5339 * window.c (wset_combination_limit, wset_dedicated)
5340 (wset_display_table, wset_hchild, wset_left_fringe_width)
5341 (wset_left_margin_cols, wset_new_normal, wset_new_total)
5342 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
5343 (wset_right_fringe_width, wset_right_margin_cols)
5344 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
5345 (wset_vertical_scroll_bar_type, wset_window_parameters):
5346 * xdisp.c (wset_base_line_number, wset_base_line_pos)
5347 (wset_column_number_displayed, wset_region_showing)
5348 (window_box_edges, run_window_scroll_functions)
5349 (append_glyph_string_lists, prepend_glyph_string_lists)
5350 (append_glyph_string, set_glyph_string_background_width)
5351 (append_glyph, append_composite_glyph)
5352 (take_vertical_position_into_account):
5353 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
5354 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
5355 (lface_hash, lface_same_font_attributes_p, lookup_face):
5356 * xml.c (libxml2_loaded_p):
5357 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
5358 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
5359 Now 'static', not 'static inline'.
5360
5361 * bidi.c: Tune.
5362 (bidi_copy_it): Do the whole copy with a single memcpy.
5363 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
5364
5365 Revert the FOLLOW-SYMLINKS change for file-attributes.
5366 Doing it right would require several changes to Tramp, and there's
5367 not enough time to get that tested before the freeze today.
5368 * dired.c (directory_files_internal, Ffile_attributes):
5369 Undo last change.
5370
5371 * frame.c (x_report_frame_params): Port better to wider ints.
5372 Do not assume that EMACS_UINT is the same width as uprintmax_t,
5373 or that pointers can be printed in 15 decimal digits.
5374 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
5375
5376 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
5377
5378 Support x64 build on MS-Windows.
5379 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
5380 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
5381 compatibility with x64.
5382 (x_get_focus_frame): Add prototype.
5383
5384 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
5385 defining an XRectangle structure.
5386
5387 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
5388 arithmetics for compatibility with x64.
5389
5390 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
5391 compatibility with x64.
5392
5393 * w32heap.h: Adjust prototypes and declarations.
5394
5395 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
5396 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
5397 DWORD, long, and unsigned long, for compatibility with x64.
5398 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
5399 (sbrk): Argument is now of type ptrdiff_t.
5400
5401 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
5402 less than 0x0500.
5403 (w32_msg_pump): Use WPARAM type for 'result'.
5404
5405 * w32.c (init_environment, get_emacs_configuration): Support AMD64
5406 architecture.
5407 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
5408 compatibility with x64.
5409
5410 * vm-limit.c (lim_data): Now size_t.
5411 (check_memory_limits): Adjust prototypes of real_morecore and
5412 __morecore to receive argument of type ptrdiff_t. Use size_t for
5413 five_percent and data_size.
5414
5415 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
5416 variables, for compatibility with x64.
5417 (rva_to_section, offset_to_section, relocate_offset)
5418 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
5419 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
5420 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
5421 for compatibility with x64.
5422
5423 * sysdep.c (STDERR_FILENO): Define if not already defined.
5424
5425 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
5426 (__morecore): Argument type is now ptrdiff_t.
5427 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
5428 (relinquish): Use ptrdiff_t type for 'excess'.
5429 (r_alloc_sbrk): Argument type is now ptrdiff_t.
5430
5431 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
5432 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
5433 instead of a literal number.
5434
5435 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
5436 (min): Define only if not already defined.
5437
5438 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
5439 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
5440 hosts.
5441
5442 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
5443 'bitmaps' is a pointer.
5444
5445 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
5446
5447 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
5448
5449 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5450
5451 file-attributes has a new optional arg FOLLOW-SYMLINKS.
5452 * dired.c (directory_files_internal, Ffile_attributes):
5453 New arg follow_symlinks. All uses changed.
5454
5455 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
5456
5457 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
5458
5459 2012-09-30 Eli Zaretskii <eliz@gnu.org>
5460
5461 Support atimers and CPU profiler via profile.c on MS-Windows.
5462 * w32proc.c (sig_mask, crit_sig): New static variables.
5463 (sys_signal): Support SIGALRM and SIGPROF.
5464 (sigemptyset, sigaddset, sigfillset, sigprocmask)
5465 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
5466 sigfillset, and sigprocmask are no longer no-ops.
5467 (sigismember): New function.
5468 (struct itimer_data): New definition.
5469 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
5470 (crit_prof): New static variables.
5471 (MAX_SINGLE_SLEEP): New definition.
5472 (timer_loop, stop_timer_thread, term_timers, init_timers)
5473 (start_timer_thread, getitimer, setitimer): New functions.
5474 (alarm): No longer a no-op, calls setitimer.
5475
5476 * w32.c (term_ntproc): Call term_timers.
5477 (init_ntproc): Make sure all signals are unblocked at startup, to
5478 erase any traces of dumping. Call init_timers.
5479
5480 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
5481 Windows-specific code to display the hourglass mouse pointer is no
5482 longer used.
5483 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
5484 to hourglass timer expiration.
5485 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
5486 Remove, no longer used.
5487 (w32_note_current_window, show_hourglass, hide_hourglass):
5488 New functions, in support of hourglass cursor display similar to other
5489 window systems.
5490 (syms_of_w32fns): Don't initialize hourglass_timer.
5491
5492 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
5493 WINDOWSNT as well.
5494 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
5495
5496 * w32.h (init_timers, term_timers): Add prototypes.
5497
5498 2012-09-30 Kenichi Handa <handa@gnu.org>
5499
5500 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
5501 to the buffer relocation which may be caused by ccl_driver.
5502
5503 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5504
5505 * xfns.c (Fx_file_dialog): Update comment.
5506
5507 * w32fns.c (Fx_file_dialog): Update comment.
5508
5509 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
5510 Initialize panel name field if OSX >= 10.6.
5511
5512 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
5513
5514 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
5515
5516 * nsterm.m (NEW_STYLE_FS): New define.
5517 (ns_fullscreen_hook, windowWillEnterFullScreen)
5518 (windowDidEnterFullScreen, windowWillExitFullScreen)
5519 (windowDidExitFullScreen, toggleFullScreen, handleFS)
5520 (setFSValue): New functions.
5521 (EmacsFSWindow): New implementation.
5522 (canBecomeKeyWindow): New function for EmacsFSWindow.
5523 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
5524 (dealloc): Release nonfs_window if in fullscreen.
5525 (updateFrameSize:): Call windowDidMove to update top/left.
5526 (windowWillResize:toSize:): Check if frame is still maximized.
5527 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
5528 next_maximized, maximized_width, maximized_height and nonfs_window.
5529 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
5530 tbar_height.
5531 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
5532 fullscreen. Set maximized_width/height. Act on next_maximized.
5533
5534 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
5535 (EmacsView): Add variables for fullscreen.
5536 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
5537 (EmacsFSWindow): New interface for fullscreen.
5538
5539 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
5540
5541 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5542
5543 2012-09-30 Chong Yidong <cyd@gnu.org>
5544
5545 * fns.c (Frandom): Doc fix.
5546
5547 2012-09-30 Martin Rudalics <rudalics@gmx.at>
5548
5549 * window.c (Vwindow_combination_limit): New default value.
5550 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
5551
5552 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5553
5554 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
5555 Suggested by Eli Zaretskii in
5556 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
5557
5558 2012-09-30 Eli Zaretskii <eliz@gnu.org>
5559
5560 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
5561 HAVE_TIMER_SETTIME is defined.
5562
5563 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5564
5565 Profiler improvements: more-accurate timers, overflow checks.
5566 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
5567 signal.h, setjmp.h. Include systime.h instead.
5568 (saturated_add): New function.
5569 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
5570 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
5571 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
5572 New static vars.
5573 (enum profiler_cpu_running): New enum.
5574 (profiler_cpu_running): Now of that enum type, not bool.
5575 All uses changed to store the new value.
5576 (handle_profiler_signal): Rename from sigprof_handler_1,
5577 for consistency with other handlers. Do not check whether
5578 cpu_log is a hash-table if garbage collecting, since it
5579 doesn't matter in that case.
5580 (deliver_profiler_signal): Rename from sigprof_handler,
5581 for consistency with other handlers.
5582 (setup_cpu_timer): New function, with much of what used to be in
5583 Fprofiler_cpu_start. Check for out-of-range argument.
5584 Prefer timer_settime if available, and prefer
5585 thread cputime clocks, then process cputime clocks, then
5586 monotonic clocks, to the old realtime clock. Use make_timeval
5587 to round more-correctly when falling back to setitimer.
5588 (Fprofiler_cpu_start): Use it.
5589 (Fprofiler_cpu_stop): Prefer timer_settime if available.
5590 Don't assume that passing NULL as the 2nd argument of setitimer
5591 is the same as passing a pointer to all-zero storage.
5592 Ignore SIGPROF afterwards.
5593 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
5594 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
5595 non-fatal signal handlers. Ignore SIGPROF on startup.
5596 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
5597 in profiler.c, since sysdep.c now uses it.
5598
5599 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
5600 Suggested by Eli Zaretskii in
5601 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
5602
5603 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
5604
5605 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5606
5607 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * lisp.h (struct backtrace): Remove indirection for `function' field.
5610 * xdisp.c (redisplay_internal):
5611 * profiler.c (record_backtrace, sigprof_handler_1):
5612 * alloc.c (Fgarbage_collect):
5613 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
5614 (Fbacktrace_frame): Adjust accordingly.
5615
5616 2012-09-28 Glenn Morris <rgm@gnu.org>
5617
5618 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
5619 (Frun_hook_with_args_until_failure): Doc fixes.
5620
5621 2012-09-28 Eli Zaretskii <eliz@gnu.org>
5622
5623 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
5624 Qautomatic_redisplay and change the symbol name. All users changed.
5625
5626 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
5627
5628 * profiler.c (sigprof_handler): Fix race condition.
5629
5630 2012-09-28 Glenn Morris <rgm@gnu.org>
5631
5632 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
5633
5634 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
5635
5636 Check more robustly for timer_settime.
5637 * Makefile.in (LIB_TIMER_TIME): New macro.
5638 (LIBES): Add it.
5639 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
5640 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
5641 call timer_settime.
5642
5643 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5644
5645 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
5646
5647 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5648
5649 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5650
5651 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
5652
5653 * character.h (MAYBE_UNIFY_CHAR): Remove.
5654 * charset.c, charset.h (maybe_unify_char): Now static.
5655 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
5656 Since this stuff is now private to charset.c, there's no need for
5657 a public macro and no need to inline by hand.
5658
5659 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5660 Stefan Monnier <monnier@iro.umontreal.ca>
5661 Juanma Barranquero <lekktu@gmail.com>
5662
5663 * profiler.c: New file.
5664 * Makefile.in (base_obj): Add profiler.o.
5665 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
5666 ($(BLD)/profiler.$(O)): New target.
5667 * emacs.c (main): Call syms_of_profiler.
5668 * alloc.c (Qautomatic_gc): New constant.
5669 (MALLOC_PROBE): New macro.
5670 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
5671 (total_bytes_of_live_objects): New function.
5672 (Fgarbage_collect): Use it. Record itself in backtrace_list.
5673 Call malloc_probe for the memory profiler.
5674 (syms_of_alloc): Define Qautomatic_gc.
5675 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
5676 race condition.
5677 (struct backtrace): Move definition...
5678 * lisp.h (struct backtrace): ..here.
5679 (Qautomatic_gc, profiler_memory_running): Declare vars.
5680 (malloc_probe, syms_of_profiler): Declare functions.
5681 * xdisp.c (Qautomatic_redisplay): New constant.
5682 (redisplay_internal): Record itself in backtrace_list.
5683 (syms_of_xdisp): Define Qautomatic_redisplay.
5684
5685 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5686 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5687
5688 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
5689
5690 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
5691
5692 Prefer POSIX timers if available.
5693 They avoid a race if the timer is too close to the current time.
5694 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
5695 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
5696 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
5697
5698 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5699
5700 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
5701 CHAR_STRING_ADVANCE.
5702 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
5703 STRING_CHAR_ADVANCE.
5704
5705 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5706
5707 Move Vlibrary_cache to emacs.c and reset before dumping.
5708
5709 * lisp.h (reset_image_types): Declare.
5710 [WINDOWSNT] (Vlibrary_cache): Declare.
5711
5712 * image.c (reset_image_types): New function.
5713
5714 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
5715 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
5716 (Fdump_emacs): Reset Vlibrary_cache and image_types.
5717
5718 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
5719 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
5720
5721 * w32.h (Vlibrary_cache): Do not declare.
5722
5723 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5724
5725 * w32proc.c (sys_signal): Handle all signals defined by the
5726 MS-Windows runtime, not just SIGCHLD. Actually install the signal
5727 handlers for signals supported by Windows. Don't override
5728 term_ntproc as the handler for SIGABRT.
5729 (sigaction): Rewrite to call sys_signal instead of duplicating its
5730 code.
5731 (sys_kill): Improve commentary.
5732
5733 * w32.c (term_ntproc): Accept (and ignore) one argument, for
5734 consistency with a signature of a signal handler. All callers
5735 changed.
5736 (init_ntproc): Accept an argument DUMPING. If dumping, don't
5737 install term_ntproc as a signal handler for SIGABRT, as that
5738 should be done by the dumped Emacs.
5739
5740 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
5741
5742 * w32select.c (term_w32select): Protect against repeated
5743 invocation by setting clipboard_owner to NULL after calling
5744 DestroyWindow.
5745
5746 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
5747 and term_ntproc to their modified signatures.
5748
5749 * character.c (char_string, string_char): Remove calls to
5750 MAYBE_UNIFY_CHAR. See the discussion starting at
5751 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
5752 for the details.
5753
5754 2012-09-25 Chong Yidong <cyd@gnu.org>
5755
5756 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
5757
5758 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5759
5760 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
5761 when encountering an unknown bytecode.
5762
5763 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
5764
5765 image.c, indent.c: Use bool for booleans.
5766 * dispextern.h (struct image_type): Members valid_p, load, init
5767 now return bool, not int. All uses changed.
5768 * image.c: Omit unnecessary static decls.
5769 (x_create_bitmap_mask, x_build_heuristic_mask):
5770 Return void, not int, since callers don't care about the return value.
5771 (x_create_bitmap_mask, define_image_type, valid_image_p)
5772 (struct image_keyword, parse_image_spec, image_spec_value)
5773 (check_image_size, image_background)
5774 (image_background_transparent, x_clear_image_1)
5775 (postprocess_image, lookup_image, x_check_image_size)
5776 (x_create_x_image_and_pixmap, xbm_image_p)
5777 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
5778 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
5779 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
5780 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
5781 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
5782 (png_image_p, init_png_functions, png_load_body, png_load)
5783 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
5784 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
5785 (init_gif_functions, gif_load, imagemagick_image_p)
5786 (imagemagick_load_image, imagemagick_load, svg_image_p)
5787 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
5788 (gs_load):
5789 * nsimage.m (ns_load_image):
5790 * nsterm.m (ns_defined_color):
5791 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
5792 * xfns.c (x_defined_color):
5793 * xterm.c (x_alloc_lighter_color_for_widget)
5794 (x_alloc_nearest_color_1, x_alloc_nearest_color)
5795 (x_alloc_lighter_color):
5796 * indent.c (disptab_matches_widthtab, current_column)
5797 (scan_for_column, string_display_width, indented_beyond_p)
5798 (compute_motion, vmotion, Fvertical_motion):
5799 Use bool for booleans.
5800
5801 2012-09-24 Chong Yidong <cyd@gnu.org>
5802
5803 * chartab.c (Fset_char_table_default): Obsolete function removed.
5804
5805 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5806
5807 Move pid_t related decls out of lisp.h.
5808 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
5809 (interruptible_wait_for_termination):
5810 Move these decls from lisp.h to syswait.h, since they use pid_t.
5811 Needed on FreeBSD; see Herbert J. Skuhra in
5812 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
5813 * callproc.c: Include syswait.h.
5814
5815 gnutls.c, gtkutil.c: Use bool for boolean.
5816 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
5817 (emacs_gnutls_handle_error):
5818 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
5819 (xg_hide_tooltip, xg_create_frame_widgets)
5820 (create_dialog, xg_uses_old_file_dialog)
5821 (xg_get_file_with_chooser, xg_get_file_with_selection)
5822 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
5823 (xg_item_label_same_p, xg_update_menubar)
5824 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
5825 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
5826 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
5827 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
5828 (update_frame_tool_bar, free_frame_tool_bar):
5829 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
5830 * nsmenu.m (ns_update_menubar):
5831 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
5832 * xfns.c (Fx_show_tip) [USE_GTK]:
5833 Use bool for boolean.
5834 * gtkutil.c (xg_update_frame_menubar):
5835 * xmenu.c (update_frame_menubar):
5836 Return void, not int, since caller ignores return value.
5837 * gtkutil.c (xg_change_toolbar_position):
5838 Return void, not 1.
5839
5840 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5841
5842 * makefile.w32-in (BLOCKINPUT_H): Remove.
5843 (SYSSIGNAL_H): New macro.
5844 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
5845 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
5846 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
5847 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
5848 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
5849 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
5850 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
5851 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
5852 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
5853 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
5854 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
5855 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
5856 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
5857 ($(BLD)/w32xfns.$(O)): Update dependencies.
5858
5859 2012-09-23 Eli Zaretskii <eliz@gnu.org>
5860
5861 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
5862 fatal_error_backtrace.
5863
5864 * w32proc.c (sys_kill): Undo last change: don't do anything when
5865 invoked to deliver SIGABRT to our own process. This is now
5866 handled by emacs_raise.
5867
5868 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5869
5870 * w32term.c (w32_read_socket): Remove leftover reference to
5871 interrupt_input_pending.
5872
5873 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5874
5875 Do not use SA_NODEFER.
5876 Problem reported by Dani Moncayo in
5877 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
5878 * alloc.c (die):
5879 * sysdep.c (emacs_abort): Do not reset signal handler.
5880 * emacs.c (terminate_due_to_signal): Reset signal handler here.
5881 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
5882 wanted even on POSIXish hosts, and it doesn't work on Windows.
5883
5884 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5885
5886 * xterm.c (x_term_init): Call fixup_locale before and after calling
5887 gtk_init (Bug#12392).
5888
5889 2012-09-23 Chong Yidong <cyd@gnu.org>
5890
5891 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
5892 Vdynamic_library_alist.
5893
5894 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
5895 (Fgnutls_available_p): Caller changed.
5896
5897 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
5898 (Flibxml_parse_xml_region): Likewise.
5899
5900 * dispextern.h (struct image_type): Remove arg from init function.
5901
5902 * image.c (Finit_image_library, lookup_image_type)
5903 (define_image_type): Remove now-unneeded second arg.
5904 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5905 (init_tiff_functions, init_gif_functions, init_svg_functions):
5906 Arglist and w32_delayed_load calling convention changed.
5907 (gs_type): Remove init_gs_functions; there is no such function.
5908 (valid_image_p, make_image): Fix caller to lookup_image_type.
5909
5910 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5911
5912 Simplify and avoid signal-handling races (Bug#12471).
5913 * alloc.c (die):
5914 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5915 Avoid recursive loop if there's a fatal error in the function itself.
5916 * atimer.c (pending_atimers):
5917 * blockinput.h: Don't include "atimer.h"; no longer needed.
5918 (interrupt_input_pending): Remove. All uses removed.
5919 pending_signals now counts both atimers and ordinary interrupts.
5920 This is less racy than having three separate pending-signal flags.
5921 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5922 (input_blocked_p):
5923 Rename from their upper-case counterparts BLOCK_INPUT,
5924 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5925 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5926 This makes it easier to access volatile variables more accurately.
5927 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5928 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5929 that's more reliable if the code is buggy and sets
5930 interrupt_input_blocked to a negative value. All uses changed.
5931 * atimer.c (deliver_alarm_signal):
5932 Remove. No need to deliver this to the parent; any thread can
5933 handle this signal now. All uses replaced by underlying handler.
5934 * atimer.c (turn_on_atimers):
5935 * dispnew.c (handle_window_change_signal):
5936 * emacs.c (handle_danger_signal):
5937 * keyboard.c (kbd_buffer_get_event):
5938 Don't reestablish signal handler; not needed with sigaction.
5939 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5940 (UNBLOCK_INPUT_TO):
5941 Rework to avoid unnecessary accesses to volatile variables.
5942 (UNBLOCK_INPUT_TO): Now a function.
5943 (totally_unblock_input, unblock_input): New decls.
5944 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5945 (init_data): Remove. Necessary stuff now done in init_signal.
5946 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5947 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5948 (fatal_error_code): Remove; no longer needed.
5949 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5950 it doesn't always backtrace. All uses changed. No need to reset
5951 signal to default, since sigaction and/or die does that for us now.
5952 Use emacs_raise (FOO), not kill (getpid (), FOO).
5953 (main): Check more-accurately whether we're dumping.
5954 Move fatal-error setup to sysdep.c
5955 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5956 * gtkutil.c (xg_get_file_name, xg_get_font):
5957 Remove no-longer-needed signal-mask manipulation.
5958 * keyboard.c, process.c (POLL_FOR_INPUT):
5959 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5960 * keyboard.c (read_avail_input): Remove.
5961 All uses replaced by gobble_input.
5962 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5963 (kbd_buffer_store_event_hold, gobble_input):
5964 (record_asynch_buffer_change) [USABLE_SIGIO]:
5965 (store_user_signal_events):
5966 No need to mess with signal mask.
5967 (gobble_input): If blocking input and there are terminals, simply
5968 set pending_signals to 1 and return. All hooks changed to not
5969 worry about whether input is blocked.
5970 (process_pending_signals): Clear pending_signals before processing
5971 them, in case a signal comes in while we're processing.
5972 By convention callers now test pending_signals before calling us.
5973 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5974 New functions, to support changes to blockinput.h.
5975 (handle_input_available_signal): Now extern.
5976 (reinvoke_input_signal): Remove. All uses replaced by
5977 handle_async_input.
5978 (quit_count): Now volatile, since a signal handler uses it.
5979 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5980 All callers changed. Block SIGINT only if not already blocked.
5981 Clear sigmask reliably, even if Fsignal returns, which it can.
5982 Omit unnecessary accesses to volatile var.
5983 (quit_throw_to_read_char): No need to restore sigmask.
5984 * keyboard.c (gobble_input, handle_user_signal):
5985 * process.c (wait_reading_process_output):
5986 Call signal-handling code rather than killing ourselves.
5987 * lisp.h: Include <float.h>, for...
5988 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5989 (pending_signals): Now volatile.
5990 (syms_of_data): Now const if IEEE floating point.
5991 (handle_input_available_signal) [USABLE_SIGIO]:
5992 (terminate_due_to_signal, record_child_status_change): New decls.
5993 * process.c (create_process): Avoid disaster if memory is exhausted
5994 while we're processing a vfork, by tightening the critical section
5995 around the vfork.
5996 (send_process_frame, process_sent_to, handle_pipe_signal)
5997 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5998 ignores SIGPIPE.
5999 (send_process): No need for setjmp/longjmp any more, since the
6000 SIGPIPE stuff is now gone. Instead, report an error if errno
6001 is EPIPE.
6002 (record_child_status_change): Now extern. PID and W are now args.
6003 Return void, not bool. All callers changed.
6004 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
6005 Remove. All uses removed. This bug should be fixed now in a
6006 different way.
6007 (wait_for_termination_1): Use waitpid rather than sigsuspend,
6008 and record the child status change directly. This avoids the
6009 need to futz with the signal mask.
6010 (process_fatal_action): Move here from emacs.c.
6011 (emacs_sigaction_flags): New function, containing
6012 much of what used to be in emacs_sigaction_init.
6013 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
6014 caught by emacs, to make races less likely.
6015 (deliver_process_signal): Rename from handle_on_main_thread.
6016 All uses changed.
6017 (BACKTRACE_LIMIT_MAX): Now at top level.
6018 (thread_backtrace_buffer, threadback_backtrace_pointers):
6019 New static vars.
6020 (deliver_thread_signal, deliver_fatal_thread_signal):
6021 New functions, for more-accurate delivery of thread-specific signals.
6022 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
6023 (deliver_arith_signal): Handle in this thread, not
6024 in the main thread, since it's triggered by this thread.
6025 (maybe_fatal_sig): New function.
6026 (init_signals): New arg DUMPING so that we can be more accurate
6027 about whether we're dumping. Caller changed.
6028 Treat thread-specific signals differently from process-general signals.
6029 Block all signals while handling fatal error; that's safer.
6030 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
6031 on IEEE hosts.
6032 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
6033 Ignore SIGPIPE unless batch.
6034 (emacs_backtrace): Output backtrace for the appropriate thread,
6035 which is not necessarily the main thread.
6036 * syssignal.h: Include <stdbool.h>.
6037 (emacs_raise): New macro.
6038 * xterm.c (x_connection_signal): Remove; no longer needed
6039 now that we use sigaction.
6040 (x_connection_closed): No need to mess with sigmask now.
6041 (x_initialize): No need to reset SIGPIPE handler here, since
6042 init_signals does this for us now.
6043
6044 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
6045
6046 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
6047 background rect may be larger (Bug#12245).
6048
6049 2012-09-23 Chong Yidong <cyd@gnu.org>
6050
6051 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
6052
6053 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
6054
6055 * .gdbinit: Just stop at fatal_error_backtrace.
6056 See Stefan Monnier's request in
6057 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
6058 Remove no-longer-used query of system type.
6059
6060 2012-09-22 Chong Yidong <cyd@gnu.org>
6061
6062 * search.c (Freplace_match): Doc fix (Bug#12325).
6063
6064 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
6065
6066 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
6067 (Fline_end_position): Doc fix.
6068
6069 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
6070
6071 2012-09-22 Chong Yidong <cyd@gnu.org>
6072
6073 * dispextern.h (struct image_type): Add new slot, storing a type
6074 initialization function.
6075
6076 * image.c (define_image_type): Call the image initializer function
6077 if it is defined. Arguments and return value changed.
6078 (valid_image_p, make_image): Callers changed.
6079 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
6080 (gif_type, imagemagick_type, svg_type, gs_type):
6081 Add initialization functions.
6082 (Finit_image_library): Call lookup_image_type.
6083 (CHECK_LIB_AVAILABLE): Macro deleted.
6084 (lookup_image_type): Call define_image_type here, rather than via
6085 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
6086 (syms_of_image): Move define_image_type calls for xbm_type and
6087 pbm_type to lookup_image_type.
6088
6089 2012-09-22 Eli Zaretskii <eliz@gnu.org>
6090
6091 * keyboard.c (timer_check_2): Move calculation of 'timers' and
6092 'idle_timers' from here ...
6093 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
6094 lists, to avoid infloops when the timer does something stupid,
6095 like reinvoke itself with the same or smaller time-out.
6096 (Bug#12447)
6097
6098 2012-09-22 Martin Rudalics <rudalics@gmx.at>
6099
6100 * window.c (Fsplit_window_internal): Handle only Qt value of
6101 Vwindow_combination_limit separately.
6102 (Qtemp_buffer_resize): New symbol.
6103 (Vwindow_combination_limit): New default value.
6104 Rewrite doc-string.
6105
6106 2012-09-22 Eli Zaretskii <eliz@gnu.org>
6107
6108 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
6109 the new overlay string. (Bug#10159)
6110
6111 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
6112
6113 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
6114 or that fprintf is async-signal-safe. POSIX doesn't require
6115 either assumption.
6116
6117 2012-09-22 Chong Yidong <cyd@gnu.org>
6118
6119 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
6120 (Bug#8207).
6121
6122 2012-09-22 Kenichi Handa <handa@gnu.org>
6123
6124 * composite.c (composition_reseat_it): Handle the case that a
6125 grapheme cluster is not covered by a single font (Bug#12352).
6126
6127 2012-09-21 Chong Yidong <cyd@gnu.org>
6128
6129 * image.c (define_image_type): Avoid adding duplicate types to
6130 image_types (Bug#12463). Suggested by Jörg Walter.
6131
6132 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6133
6134 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
6135 (print_load_command_name): Add case LC_DATA_IN_CODE.
6136 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
6137
6138 2012-09-21 Glenn Morris <rgm@gnu.org>
6139
6140 * eval.c (Frun_hook_with_args_until_success)
6141 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
6142
6143 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
6144
6145 * fileio.c (Ffile_selinux_context): Only call freecon when
6146 lgetfilecon succeeded.
6147 (Fset_file_selinux_context): Likewise. (Bug#12444)
6148
6149 2012-09-21 Eli Zaretskii <eliz@gnu.org>
6150
6151 * xdisp.c (try_window_reusing_current_matrix): Under bidi
6152 reordering, locate the cursor by calling set_cursor_from_row; if
6153 that fails, clear the desired glyph matrix before returning a
6154 failure indication to the caller. Fixes leaving garbled display
6155 when fast scrolling with a down-key. (Bug#12403)
6156 (compute_stop_pos_backwards): Fix a typo that caused crashes while
6157 scrolling through multibyte text.
6158
6159 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
6160
6161 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
6162 calling mark_vectorlike since that's the one that marks the window.
6163 (mark_discard_killed_buffers): Mark the final cdr.
6164 * window.h (struct window): Move prev/next_buffers to the
6165 non-standard fields.
6166 * window.c (make_window): Initialize prev/next_buffers manually.
6167
6168 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
6169
6170 Omit unused arg EXPECTED from socket hooks.
6171 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
6172 * nsterm.m (ns_term_init):
6173 * termhooks.h (struct terminal.read_socket_hook):
6174 * w32inevt.c (w32_console_read_socket):
6175 * w32term.c (w32_read_socket):
6176 * xterm.c (XTread_socket):
6177 Omit unused arg EXPECTED. All callers changed.
6178 (store_user_signal_events): Return void, not int, since callers no
6179 longer care about the return value. All uses changed.
6180
6181 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
6182
6183 * w32gui.h (XParseGeometry): Do not declare.
6184
6185 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
6186
6187 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
6188 Ignore 'expected'. See Eli Zaretskii in
6189 <http://bugs.gnu.org/12471#8> (last line).
6190
6191 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
6192 (XParseGeometry): Now static. Substitute extremal values for
6193 values that are out of range.
6194
6195 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
6196
6197 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
6198
6199 * nsfns.m (XParseGeometry): Remove.
6200 (Fx_create_frame): Call x_set_offset to correctly interpret
6201 top_pos in geometry.
6202
6203 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
6204 (Fx_parse_geometry): If there is a space in string, call
6205 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
6206
6207 2012-09-17 Eli Zaretskii <eliz@gnu.org>
6208
6209 * search.c (scan_buffer): Use character positions in calls to
6210 region_cache_forward and region_cache_backward, not byte
6211 positions. (Bug#12196)
6212
6213 * w32term.c (w32_read_socket): Set pending_signals to 1, like
6214 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
6215
6216 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
6217 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
6218 emacs_blocked_malloc, now deleted.
6219
6220 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
6221
6222 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
6223 The workaround was for improving performance on Solaris 2.4, but
6224 is getting in the way now. Emacs will still work if someone is
6225 still running Solaris 2.4 in a museum somewhere; Sun dropped
6226 support for Solaris 2.4 in 2003.
6227 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
6228 * process.c (create_process) [HAVE_WORKING_VFORK]:
6229 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
6230 since Emacs no longer uses vfork on that platform.
6231
6232 2012-09-17 Glenn Morris <rgm@gnu.org>
6233
6234 * emacs.c: Use COPYRIGHT.
6235
6236 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
6237
6238 Remove configure's --without-sync-input option (Bug#12450).
6239 When auditing signal-handling in preparation for cleaning it up,
6240 I found that SYNC_INPUT has race conditions and would be a real
6241 pain to fix. Since it's an undocumented and deprecated
6242 configure-time option, now seems like a good time to remove it.
6243 Also see <http://bugs.gnu.org/11080#16>.
6244 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
6245 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
6246 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
6247 (malloc_hysteresis):
6248 (check_depth) [XMALLOC_OVERRUN_CHECK]:
6249 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
6250 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
6251 (dont_register_blocks, bytes_used_when_reconsidered)
6252 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
6253 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
6254 [!SYSTEM_MALLOC && !SYNC_INPUT]:
6255 Remove. All uses removed.
6256 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
6257 implementation, one that depends on whether the new macro
6258 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
6259 is defined.
6260 * atimer.c (run_timers, handle_alarm_signal):
6261 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
6262 (handle_async_input, process_pending_signals)
6263 (handle_input_available_signal, init_keyboard):
6264 * nsterm.m (ns_read_socket):
6265 * process.c (wait_reading_process_output):
6266 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
6267 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
6268 (emacs_write):
6269 * xterm.c (XTread_socket):
6270 Assume SYNC_INPUT.
6271 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
6272 * eval.c (handling_signal): Remove. All uses removed.
6273 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
6274 All uses replaced with the SYNC_INPUT version.
6275 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
6276 Remove decls.
6277 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6278 Now static.
6279
6280 * font.c (Ffont_shape_gstring): Remove unused local.
6281
6282 2012-09-16 Glenn Morris <rgm@gnu.org>
6283
6284 * Makefile.in (clean): No longer run nextstep's clean.
6285
6286 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
6287 (ns_frag): Remove.
6288 (ns-app): Move here from ns.mk, and simplify.
6289 (clean): Simplify nextstep entry.
6290 * ns.mk: Remove file.
6291
6292 2012-09-17 Kenichi Handa <handa@gnu.org>
6293
6294 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
6295 not covert the last few charactes.
6296
6297 2012-09-16 Kenichi Handa <handa@gnu.org>
6298
6299 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
6300 here, but just check the validity of glyphs in the glyph-string.
6301
6302 2012-09-16 Martin Rudalics <rudalics@gmx.at>
6303
6304 * window.c (Fwindow_parameter, Fset_window_parameter):
6305 Accept any window as argument (Bug#12452).
6306
6307 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
6308
6309 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
6310 to ns_term_init to avoid memory leak.
6311
6312 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
6313 explicit retain/release.
6314 (ns_term_init): Only allow one display. Initialize outerpool and
6315 ns_*_types.
6316
6317 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
6318
6319 Port _setjmp fix to POSIXish hosts as well as Microsoft.
6320 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
6321 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
6322 the Microsoft problem in a different way, by altering ../nt/config.nt.
6323
6324 2012-09-15 Eli Zaretskii <eliz@gnu.org>
6325
6326 * w32xfns.c:
6327 * w32uniscribe.c:
6328 * w32term.c:
6329 * w32select.c:
6330 * w32reg.c:
6331 * w32proc.c:
6332 * w32menu.c:
6333 * w32inevt.c:
6334 * w32heap.c:
6335 * w32font.c:
6336 * w32fns.c:
6337 * w32console.c:
6338 * w32.c:
6339 * w16select.c: Remove inclusion of setjmp.h, as it is now included
6340 by lisp.h. This completes removal of setjmp.h inclusion
6341 erroneously announced in the previous commit. (Bug#12446)
6342
6343 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
6344 more accurate.
6345
6346 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
6347 not defined as a macro. The latter happens on MS-Windows.
6348 (Bug#12446)
6349
6350 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
6351
6352 Port better to POSIX hosts lacking _setjmp (Bug#12446).
6353 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
6354 Some instances of '#include <setjmp.h>' removed, if the
6355 only reason for the instance was because "lisp.h" was included.
6356 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
6357 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
6358 and _longjmp with the new symbols. Emacs already uses _setjmp if
6359 available, so this change affects only POSIXish hosts that have
6360 sigsetjmp but not _setjmp, such as some versions of Solaris and
6361 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
6362 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
6363 (png_load_body) [HAVE_PNG]:
6364 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
6365 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
6366 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
6367 since PNG requires jmp_buf. This is the only exception to the
6368 general rule that we now use sys_setjmp and sys_longjmp.
6369 This exception is OK since this code does not change the signal
6370 mask or longjmp out of a signal handler.
6371
6372 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
6373
6374 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
6375 Include "syssignal.h", for 'main_thread'.
6376
6377 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
6378
6379 Avoid out-of-range marker position (Bug#12426).
6380 * insdel.c (replace_range, replace_range_2):
6381 Adjust markers before overlays, as suggested by comments.
6382 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
6383 Remove redundant check before calling offset_intervals.
6384
6385 2012-09-14 Martin Rudalics <rudalics@gmx.at>
6386
6387 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
6388 current buffer (Bug#12387).
6389
6390 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
6391
6392 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
6393
6394 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6395
6396 Use a more backwards-compatible timer format (Bug#12430).
6397 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
6398 vector element, not from the 4th, since PSECS is now at the end.
6399 (Fcurrent_idle_time): Doc fix.
6400
6401 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
6402
6403 Function to mark objects and remove killed buffers at once.
6404 * alloc.c (discard_killed_buffers): Rename to ...
6405 (mark_discard_killed buffers) ... new name. Add marking
6406 of remaining objects. Fix comment. Adjust users.
6407 (mark_object): Do not touch frame buffer lists here.
6408 * frame.c (delete_frame): Reset frame buffer lists here.
6409
6410 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
6411
6412 Better workaround for GNOME bug when --enable-gcc-warnings.
6413 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
6414 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
6415 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
6416
6417 Simplify SIGIO usage (Bug#12408).
6418 The code that dealt with SIGIO was crufty and confusing, e.g., it
6419 played tricks like "#undef SIGIO" but these tricks were not used
6420 consistently. Simplify mostly by not #undeffing standard symbols,
6421 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
6422 or not as we please) rather than "defined SIGIO" (standard symbol
6423 that we probably shouldn't #undef).
6424 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
6425 Modules that need it can include it.
6426 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
6427 * dispextern.h (ignore_sigio): New decl.
6428 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
6429 unconditionally, since it's now a no-op if !USABLE_SIGIO.
6430 * emacs.c (shut_down_emacs):
6431 * keyboard.c (kbd_buffer_store_event_hold):
6432 Use ignore_sigio rather than invoking 'signal' directly.
6433 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
6434 for FIONREAD.
6435 (FIONREAD, SIGIO): Do not #undef.
6436 (tty_read_avail_input): Use #error rather than a syntax error.
6437 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
6438 for I_PIPE, used by SETUP_SLAVE_PTY.
6439 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
6440 * sysdep.c (croak): Remove; no longer needed. This bit of
6441 temporary code, with Fred N. Fish's comment that it's temporary,
6442 has been in Emacs since at least 1992!
6443 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
6444 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
6445 * syssignal.h (croak): Remove decl.
6446 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
6447 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
6448 now that we're termios-only.
6449 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
6450 * term.c (dissociate_if_controlling_tty): Use #error rather than
6451 a run-time error.
6452
6453 Work around GCC and GNOME bugs when --enable-gcc-warnings.
6454 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
6455 to work around GNOME bug 683906.
6456 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
6457 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
6458 This works around GCC bug 54561.
6459
6460 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6461
6462 More fixes for 'volatile' and setjmp/longjmp.
6463 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
6464 * image.c (struct png_load_context) [HAVE_PNG]: New type.
6465 (png_load_body) [HAVE_PNG]:
6466 (jpeg_load_body) [HAVE_JPEG]:
6467 New function, with most of the old parent function's body.
6468 (png_load) [HAVE_PNG]:
6469 (jpeg_load) [HAVE_JPEG]:
6470 Invoke the new function, to avoid longjmp munging our locals.
6471 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
6472 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
6473 longjmp is passed 2, as the C standard doesn't guarantee this.
6474 Instead, store the failure code into mgr->failure_code.
6475
6476 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6477
6478 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
6479 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
6480 (syms_of_keyboard): Remove support for unread-command-char.
6481
6482 2012-09-12 Eli Zaretskii <eliz@gnu.org>
6483
6484 * w32proc.c (sys_kill): If PID is our process ID and the signal is
6485 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
6486 violation. (Bug#12426)
6487
6488 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6489
6490 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
6491
6492 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6493
6494 * eval.c: Add `inhibit-debugger'.
6495 (Qinhibit_debugger): New symbol.
6496 (call_debugger): Bind it instead of Qdebug_on_error.
6497 (maybe_call_debugger): Test Vinhibit_debugger.
6498 (syms_of_eval): Define inhibit-debugger.
6499 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
6500 (syms_of_xdisp): Remove inhibit-debug-on-message.
6501
6502 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6503
6504 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
6505 If a nonvolatile local variable is written before a _longjmp to
6506 the frame containing the variable, and is read after the _longjmp,
6507 the value read is indeterminate. Some local variables of type
6508 'struct handler' and 'struct catchtag' are used in this way, so
6509 mark each of their slots as volatile if the slot can be set before
6510 _longjmp and read afterwards.
6511 * lisp.h (struct handler): var and chosen_clause are now volatile.
6512 (struct catchtag): val, next, and pdlcount are now volatile.
6513
6514 * bidi.c (bidi_push_it, bidi_pop_it):
6515 * fns.c (copy_hash_table):
6516 * image.c (define_image_type):
6517 * keyboard.c (kbd_buffer_store_event_hold):
6518 * process.c (Fprocess_send_eof):
6519 * xfaces.c (x_create_gc) [HAVE_NS]:
6520 * xgselect.c (xg_select):
6521 Prefer assignment to memcpy when either will do.
6522
6523 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
6524 Use pointer-to-a-pointer to simplify and avoid a NILP check each
6525 time an item is removed. No need to mark this function 'inline';
6526 the compiler knows better than we do.
6527
6528 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
6529
6530 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
6531 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
6532 to change_frame_size (Bug#12388).
6533 (windowDidResize:): Pass YES to updateFrameSize.
6534
6535 * nsterm.h: Add delay parameter to updateFrameSize.
6536
6537 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6538
6539 Discard killed buffers from deleted window and frame objects.
6540 This reduces an amount of references to killed buffers and
6541 helps GC to reclaim them faster.
6542 * alloc.c (discard_killed_buffers): New function.
6543 (mark_object): Use it for deleted windows and frames.
6544 (mark_object): If symbol's value is set up for a killed buffer
6545 or deleted frame, restore its global binding.
6546 * data.c (swap_in_global_binding): Add GC notice.
6547 (swap_in_symval_forwarding): Use convenient set_blv_where.
6548 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
6549 * window.h: ... to here.
6550
6551 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6552
6553 Convenient macro to check whether the buffer is live.
6554 * buffer.h (BUFFER_LIVE_P): New macro.
6555 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
6556 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
6557
6558 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6559
6560 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
6561 composition cases (Bug#12364).
6562
6563 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
6564 overhang of succeeding glyphs overlapping box cursor.
6565
6566 * w32term.c (x_draw_glyph_string): Likewise.
6567
6568 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6569
6570 Simplify, document, and port floating-point (Bug#12381).
6571 The porting part of this patch fixes bugs on non-IEEE platforms
6572 with frexp, ldexp, logb.
6573 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
6574 Now static.
6575 * floatfns.c: Simplify discussion of functions that Emacs doesn't
6576 support, by removing commented-out code and briefly listing the
6577 C89 functions excluded. The commented-out stuff was confusing
6578 maintenance, e.g., we thought we needed cbrt but it was commented out.
6579 (logb): Remove decl; no longer needed.
6580 (isfinite): New macro, if not already supplied.
6581 (isnan): Don't replace any existing macro.
6582 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
6583 are present on all C89 platforms.
6584 (Ffrexp): Do not special-case zero, as frexp does the right thing
6585 for that case.
6586 (Flogb): Do not use logb, as it doesn't have the desired meaning
6587 on hosts that use non-base-2 floating point. Instead, stick with
6588 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
6589 frexp, to avoid getting an unspecified result.
6590
6591 * xdisp.c (Qinhibit_debug_on_message): Now static.
6592
6593 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
6594
6595 * nsterm.m (ns_update_begin): Set clip path to whole view by using
6596 NSBezierPath (Bug#12131).
6597
6598 2012-09-10 Chong Yidong <cyd@gnu.org>
6599
6600 * fns.c (Fdelq, Fdelete): Doc fix.
6601
6602 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
6603
6604 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
6605 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
6606
6607 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6608
6609 * lisp.h (make_lisp_ptr): New macro to replace XSET.
6610 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
6611 Use it.
6612
6613 2012-09-09 Eli Zaretskii <eliz@gnu.org>
6614
6615 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
6616 left fringe if the window has a left margin. This avoids leaving
6617 traces of the cursor because its leftmost pixel is not drawn over.
6618
6619 * dispnew.c (update_window_line): When the left margin area of a
6620 screen line is updated, set the redraw_fringe_bitmaps_p flag of
6621 that screen line. (Bug#12277)
6622
6623 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
6624
6625 Assume C89 or later for math functions (Bug#12381).
6626 This simplifies the code, and makes it a bit smaller and faster,
6627 and (most important) makes it easier to clean up signal handling
6628 since we can stop worring about floating-point exceptions in
6629 library code. That was a problem before C89, but the problem
6630 went away many years ago on all practical Emacs targets.
6631 * data.c, image.c, lread.c, print.c:
6632 Don't include <math.h>; no longer needed.
6633 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
6634 might be autoconfigured, as that never happens.
6635 * data.c (fmod):
6636 * doprnt.c (DBL_MAX_10_EXP):
6637 * print.c (DBL_DIG):
6638 Remove. C89 or later always defines these.
6639 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
6640 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
6641 (arith_error, domain_error, domain_error2):
6642 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
6643 no longer needed -- we simply return what C returns. All uses removed.
6644 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
6645 the wrapped code.
6646 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
6647 Remove. All uses expanded, as these macros are no longer used
6648 more than once and are now more trouble than they're worth.
6649 (Ftan): Use tan, not sin / cos.
6650 (Flogb): Assume C89 frexp.
6651 (fmod_float): Assume C89 fmod.
6652 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
6653 (init_floatfns): Remove. All uses removed.
6654
6655 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6656
6657 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
6658 compositeToPoint for OSX < 10.6 (Bug#12390).
6659
6660 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
6661
6662 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
6663 This produces more-accurate results.
6664
6665 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6666
6667 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
6668 changes (Bug#12088).
6669
6670 2012-09-08 Chong Yidong <cyd@gnu.org>
6671
6672 * syntax.c (Fstring_to_syntax): Doc fix.
6673
6674 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6675
6676 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
6677 in the internal border.
6678 (x_set_window_size): Remove static variables and their usage.
6679 (ns_redraw_scroll_bars): Fix NSTRACE arg.
6680 (ns_after_update_window_line, ns_draw_fringe_bitmap):
6681 Remove fringe/internal border adjustment (Bug#11052).
6682 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
6683 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
6684 (ns_fix_rect_ibw): Remove.
6685 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
6686 (ns_dumpglyphs_box_or_relief): Ditto.
6687 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
6688 adjustment.
6689 (ns_dumpglyphs_image): Ditto.
6690 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
6691 border adjustment.
6692 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
6693 their usage. Add fringe_extended_p and its use as in other terms.
6694 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
6695 scroll bar was removed.
6696 (updateFrameSize): New function.
6697 (windowDidResize): Move code to updateFrameSize and call it.
6698
6699 * nsterm.h (EmacsView): Add updateFrameSize.
6700
6701 2012-09-07 Chong Yidong <cyd@gnu.org>
6702
6703 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
6704
6705 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
6706
6707 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6708
6709 More signal-handler cleanup (Bug#12327).
6710 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
6711 Problem introduced when merging patches. Noted by Eli Zaretskii in
6712 <http://bugs.gnu.org/12327#67>.
6713 * floatfns.c: Comment fix.
6714 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
6715 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
6716 and anyway the declaration is harmless even if SIGDANGER is not defined.
6717 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
6718 defined BROKEN_FIONREAD). systty.h formerly did this, but other
6719 source files not surprisingly expected syssignal.h to define, or
6720 not define, SIGIO, and it's cleaner to do it that way, for consistency.
6721 Include <sys/ioctl.h>, for FIONREAD.
6722 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
6723 This eliminates a problem whereby other files mysteriously had
6724 to include "syssignal.h" before including "systty.h" if they
6725 wanted to use "#ifdef SIGIO".
6726
6727 2012-09-07 Eli Zaretskii <eliz@gnu.org>
6728
6729 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
6730
6731 * w32.c (sigemptyset): Empty the set.
6732 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
6733
6734 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
6735
6736 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
6737
6738 * alloc.c (mark_buffer): Revert unsafe marking optimization.
6739 (mark_object): Likewise for frame objects.
6740
6741 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6742
6743 * syssignal.h (handle_on_main_thread): Always declare,
6744 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
6745 This ports to platforms without HAVE_PTHREAD.
6746
6747 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6748
6749 Signal-handler cleanup (Bug#12327).
6750 Emacs's signal handlers were written in the old 4.2BSD style with
6751 sigblock and sigmask and so forth, and this led to some
6752 inefficiencies and confusion. Rewrite these to use
6753 pthread_sigmask etc. without copying signal sets around. Also,
6754 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
6755 'signal', and instead use functions that do not attempt to take
6756 over the system name space. This patch causes Emacs's text
6757 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
6758 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
6759 Do not include <signal.h> or "syssignal.h", as these
6760 modules do not use signals.
6761 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
6762 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
6763 Do not include <signal.h>, as "syssignal.h" does that for us now.
6764 * atimer.c (sigmask_atimers): New function.
6765 (block_atimers, unblock_atimers): New functions,
6766 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
6767 All uses replaced.
6768 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
6769 no longer needed here.
6770 * emacs.c (main): Inspect existing signal handler with sigaction,
6771 so that there's no need to block and unblock SIGHUP.
6772 * sysdep.c (struct save_signal): New member 'action', replacing
6773 old member 'handler'.
6774 (save_signal_handlers, restore_signal_handlers):
6775 Use sigaction instead of 'signal' to save and restore.
6776 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
6777 New function. All users of 'signal' modified to use set_sighandler
6778 if they're writeonly, and to use sys_signal if they're read+write.
6779 (emacs_sigaction_init, forwarded_signal): New functions.
6780 (sys_signal): Remove. All uses replaced by calls to sigaction
6781 and emacs_sigaction_init, or by direct calls to 'signal'.
6782 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
6783 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
6784 all uses replaced by pthread_sigmask etc. calls.
6785 * syssignal.h: Include <signal.h>.
6786 (emacs_sigaction_init, forwarded_signal): New decls.
6787 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
6788 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
6789 (sigmask, sys_sigmask): Remove; no longer needed.
6790 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
6791 (sigblock, sigunblock, sigfree):
6792 (sigsetmask) [!defined sigsetmask]:
6793 Remove. All uses replaced by pthread_sigmask.
6794 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
6795 no longer need to be replaced, and its typical old uses
6796 are now done via emacs_sigaction_init and sigaction.
6797 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
6798 (sys_sigdel): Remove; unused.
6799 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
6800
6801 2012-09-06 Eli Zaretskii <eliz@gnu.org>
6802
6803 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
6804 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
6805
6806 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6807
6808 Explicitly mark buffer_defaults and buffer_local_symbols.
6809 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
6810 mark_local_symbols here.
6811 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
6812 since special buffers aren't marked here any more.
6813 (allocate_buffer): Chain new buffer with all_buffers here...
6814 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
6815 not here.
6816 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
6817 (syms_of_buffer): Remove staticpro of the above.
6818 (init_buffer_once): Set names for buffer_defaults and
6819 buffer_local_symbols.
6820
6821 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6822
6823 Use bool for booleans in font-related modules.
6824 * font.c (font_intern_prop, font_style_to_value)
6825 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
6826 (generate_otf_features, font_check_otf_features, font_check_otf)
6827 (font_match_p, font_list_entities, font_at):
6828 * fontset.c (fontset_id_valid_p, reorder_font_vector
6829 (fontset_find_font, Fset_fontset_font)
6830 (face_suitable_for_char_p) [0]:
6831 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
6832 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
6833 (m17n_flt_initialized, ftfont_shape_by_flt):
6834 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
6835 * nsfont.m (nsfont_draw):
6836 * w32font.c (w32font_draw):
6837 * w32term.c (x_draw_glyphless_glyph_string_foreground):
6838 Use bool for booleans.
6839 * font.h: Adjust to above API changes.
6840 (struct font, struct font_driver, struct font_driver_list):
6841 Use bool for booleans.
6842 (struct font): Remove useless member encoding_type.
6843 All users removed.
6844 * fontset.c, xftfont.c: Omit unnecessary static decls.
6845
6846 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6847
6848 * alloc.c (mark_object): Revert window marking code
6849 since it's unsafe for the Fset_window_configuration.
6850
6851 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6852
6853 Fix race conditions with signal handlers and errno (Bug#12327).
6854 Be more systematic about preserving errno whenever a signal
6855 handler returns, even if it's not in the main thread. Do this by
6856 renaming signal handlers to distinguish between signal delivery
6857 and signal handling. All uses changed.
6858 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
6859 * data.c (deliver_arith_signal): Rename from arith_error.
6860 * dispnew.c (deliver_window_change_signal): Rename from
6861 window_change_signal.
6862 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
6863 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
6864 * keyboard.c (deliver_input_available_signal): Rename from
6865 input_available_signal.
6866 (deliver_user_signal): Rename from handle_user_signal.
6867 (deliver_interrupt_signal): Rename from interrupt_signal.
6868 * process.c (deliver_pipe_signal): Rename from send_process_trap.
6869 (deliver_child_signal): Rename from sigchld_handler.
6870 * atimer.c (handle_alarm_signal):
6871 * data.c (handle_arith_signal):
6872 * dispnew.c (handle_window_change_signal):
6873 * emacs.c (handle_fatal_signal, handle_danger_signal):
6874 * keyboard.c (handle_input_available_signal):
6875 * keyboard.c (handle_user_signal, handle_interrupt_signal):
6876 * process.c (handle_pipe_signal, handle_child_signal):
6877 New functions, with the actual signal-handling code taken from the
6878 original respective signal handlers, sans the sporadic attempts to
6879 preserve errno, since that's now done by handle_on_main_thread.
6880 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
6881 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
6882 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6883 Move to sysdep.c.
6884 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6885 Move initialization of main_thread to sysdep.c's init_signals.
6886 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
6887 our usage, and simplifies the mainline code.
6888 (record_child_status_change): New static function, as a helper
6889 for handle_child_signal, and with most of the old child handler's
6890 contents.
6891 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
6892 (handle_child_signal): Use the above.
6893 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6894 Moved here from emacs.c.
6895 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
6896 code moved here from emacs.c's main function.
6897 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
6898 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6899 This lets callers save and restore errno properly.
6900
6901 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6902
6903 Remove redundant or unused things here and there.
6904 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6905 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6906 * editfns.c (Fcompare_buffer_substrings): Likewise.
6907 * frame.h (struct terminal, struct font_driver_list):
6908 Remove redundant declarations.
6909 * window.h (Qleft, Qright): Likewise.
6910
6911 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6912
6913 Do not mark objects from deleted buffers, windows and frames.
6914 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6915 (mark_object): Likewise for windows and frames.
6916
6917 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6918
6919 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6920 buffer_defaults and buffer_local_symbols as valid objects.
6921 Return special value to denote them.
6922
6923 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6924
6925 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6926 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6927 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6928 (file_name_absolute_p, Fsubstitute_in_file_name):
6929 (check_executable, check_writable, Ffile_accessible_directory_p)
6930 (Fset_file_selinux_context, Fdefault_file_modes)
6931 (Finsert_file_contents, choose_write_coding_system)
6932 (Fwrite_region, build_annotations, a_write, e_write)
6933 (Fdo_auto_save):
6934 * filelock.c (boot_time_initialized, get_boot_time)
6935 (get_boot_time_1, lock_file_1, within_one_second):
6936 * floatfns.c (in_float):
6937 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6938 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6939 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6940 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6941 * window.c (compare_window_configurations):
6942 Use bool for booleans.
6943 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6944 (Fdefault_file_modes): Now mode_t, not int, for modes.
6945 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6946 (internal_delete_file): Now returns void, not a (boolean) int,
6947 since nobody was looking at the return value.
6948 * lisp.h, window.h: Adjust to above API changes.
6949
6950 * xdisp.c (set_message): Simplify and reindent last change.
6951
6952 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6953
6954 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6955
6956 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6957
6958 * eval.c (call_debugger): Make the function non-static so that we
6959 can call it from set_message.
6960
6961 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6962 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6963
6964 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6965
6966 Give more-useful info on a fatal error (Bug#12328).
6967 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6968 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6969 of doing the work ourselves.
6970 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6971 do most of the work.
6972 (fatal_error_backtrace): New function, taken from the guts
6973 of the old fatal_error_signal, but with a new option to output
6974 a backtrace.
6975 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6976 info about the signal than just its number.
6977 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6978 * sysdep.c: Include <execinfo.h>
6979 (emacs_backtrace): New function, taken partly from the previous
6980 code of the 'die' function.
6981 (emacs_abort): Call fatal_error_backtrace rather than abort.
6982
6983 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6984
6985 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6986 eager (load-time) macro-expansion.
6987 * lisp.mk (lisp): Add macroexp.
6988
6989 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6990
6991 Simplify redefinition of 'abort' (Bug#12316).
6992 Do not try to redefine the 'abort' function. Instead, redo
6993 the code so that it calls 'emacs_abort' rather than 'abort'.
6994 This removes the need for the NO_ABORT configure-time macro
6995 and makes it easier to change the abort code to do a backtrace.
6996 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6997 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6998 Remove; sysdep.c's emacs_abort now takes its place.
6999 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
7000 'abort' changed to use 'emacs_abort'.
7001 * msdos.c (dos_abort) [defined abort]: Remove; not used.
7002 (abort) [!defined abort]: Rename to ...
7003 (emacs_abort): ... new name.
7004 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
7005 the place of the old 'abort' in emacs.c.
7006 * w32.c, w32fns.c (abort): Do not #undef.
7007 * w32.c (emacs_abort): Rename from w32_abort.
7008
7009 2012-09-04 Eli Zaretskii <eliz@gnu.org>
7010
7011 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
7012 offsets[j].dv, since the y axis of the screen coordinates points
7013 down, while the y axis of the font definition coordinates points
7014 up. This fixes display of Arabic diacritics such as KASRA and
7015 KASRATAN. (Bug#11860)
7016
7017 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
7018
7019 Be more systematic about _setjmp vs setjmp.
7020 * alloc.c (test_setjmp, mark_stack):
7021 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
7022 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
7023 (png_load, my_error_exit, jpeg_load):
7024 * process.c (send_process_trap, send_process):
7025 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
7026 The underscored versions are up to 30x faster on some hosts.
7027 Formerly, the code used setjmp+longjmp sometimes and
7028 _setjmp+_longjmp at other times, with no particular reason to
7029 prefer setjmp+longjmp.
7030
7031 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
7032
7033 Fix minor problem found by static checking.
7034 * buffer.c (Fdelete_all_overlays): Return nil.
7035
7036 2012-09-03 Martin Rudalics <rudalics@gmx.at>
7037
7038 * buffer.c (Fdelete_all_overlays): New function.
7039
7040 2012-09-03 Chong Yidong <cyd@gnu.org>
7041
7042 * gtkutil.c: Add extern decl for Qxft.
7043
7044 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
7045
7046 * emacs.c, eval.c: Use bool for boolean.
7047 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
7048 (malloc_using_checking) [DOUG_LEA_MALLOC]:
7049 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
7050 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
7051 (main, decode_env_path, Fdaemon_initialized):
7052 * eval.c (call_debugger, Finteractive_p, interactive_p):
7053 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
7054 (maybe_call_debugger, Fbacktrace):
7055 * process.c (read_process_output, exec_sentinel):
7056 Use bool for booleans.
7057 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
7058 All callers changed.
7059 * eval.c (interactive_p): Omit always-true boolean argument
7060 EXCLUDE_SUBRS_P. All callers changed.
7061 * dispextern.h, lisp.h: Reflect above API changes.
7062 * firstfile.c (dummy): Use the address of 'main', whose signature
7063 won't change, instead of the address of 'initialize', whose
7064 signature just changed from int to bool.
7065 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
7066 * msdos.c (fatal_error_in_progress): ... from here.
7067 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
7068 of incrementing it.
7069 (redisplay_internal, unwind_redisplay): Simply clear
7070 REDISPLAYING_P when unwinding, instead of saving its previous,
7071 always-false value and then restoring it.
7072
7073 Clean up some extern decls.
7074 Mostly, this hoists extern decls out of .c files and into .h files.
7075 That way, we're more likely to catch errors if the interfaces change.
7076 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
7077 declare xg_mark_data.
7078 * dispextern.h (x_frame_parm_handlers):
7079 * font.h (Qxft):
7080 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
7081 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
7082 (Qultra_bold, Qoblique, Qitalic):
7083 Move extern decl here from .c file.
7084 * alloc.c (xg_mark_data) [USE_GTK]:
7085 * doc.c (Qclosure):
7086 * eval.c (Qlexical_binding):
7087 * fns.c (time) [!HAVE_UNISTD_H]:
7088 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
7089 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
7090 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
7091 * lread.c (Qinternal_interpreter_environment):
7092 * minibuf.c (Qbuffer):
7093 * process.c (QCfamily, QCfilter):
7094 * widget.c (free_frame_faces):
7095 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
7096 * xfont.c (x_clear_errors):
7097 * xterm.c (x_frame_parm_handlers):
7098 Remove now-redundant extern decls.
7099 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
7100 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
7101 Now static.
7102 * xfaces.c: Remove unnecessary static decls.
7103 * xterm.c (updating_frame): Remove decl of nonexistent object.
7104
7105 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
7106 when building globals.h, as the objects that are not built on
7107 this host are not needed to compile C files on this host.
7108
7109 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
7110
7111 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
7112
7113 * frame.h: Add missing prototype for x_wm_set_size_hint.
7114
7115 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
7116
7117 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
7118 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
7119 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
7120 (Fsubstitute_command_keys):
7121 * editfns.c (region_limit, find_field, Fconstrain_to_field)
7122 (save_excursion_save, save_excursion_restore)
7123 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
7124 (format_time_string, general_insert_function)
7125 (make_buffer_string, make_buffer_string_both)
7126 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
7127 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
7128 (copy_text, insert_1, insert_1_both, insert_from_string)
7129 (insert_from_string_before_markers, insert_from_string_1)
7130 (insert_from_buffer, insert_from_buffer_1, replace_range)
7131 (replace_range_2, del_range_1, del_range_byte, del_range_both)
7132 (del_range_2, modify_region):
7133 * intervals.c (intervals_equal, balance_possible_root_interval)
7134 (adjust_intervals_for_insertion, merge_properties_sticky)
7135 (graft_intervals_into_buffer, lookup_char_property)
7136 (adjust_for_invis_intang, set_point_both)
7137 (get_property_and_range, compare_string_intervals)
7138 (set_intervals_multibyte_1, set_intervals_multibyte):
7139 * keyboard.c (decode_timer):
7140 Use bool for boolean.
7141 * intervals.h, lisp.h, systime.h: Reflect above API changes.
7142 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
7143
7144 2012-09-02 Chong Yidong <cyd@gnu.org>
7145
7146 * keymap.c (push_key_description): Print M-TAB as C-M-i
7147 (Bug#11758).
7148
7149 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
7150
7151 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
7152 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
7153 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
7154 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
7155 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
7156 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
7157 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7158
7159 2012-09-01 Eli Zaretskii <eliz@gnu.org>
7160
7161 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
7162 more than one grapheme cluster passed to the shaper: compute the
7163 offset adjustment values separately for each cluster. (Bug#11860)
7164
7165 * image.c: Restore mistakenly removed inclusion of w32.h. Without
7166 it, GCC doesn't see prototypes of w32_delayed_load, and complains
7167 about implicit conversions from integer to pointer.
7168
7169 2012-09-01 Daniel Colascione <dancol@dancol.org>
7170
7171 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
7172 system used too early.
7173
7174 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
7175
7176 Better seed support for (random).
7177 * emacs.c (main): Call init_random.
7178 * fns.c (Frandom): Set the seed from a string argument, if given.
7179 Remove long-obsolete Gentzel cruft.
7180 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
7181 (init_random): New function.
7182
7183 2012-09-01 Daniel Colascione <dancol@dancol.org>
7184
7185 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
7186 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
7187 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
7188 x_wm_set_size_hint, x_query_colors, x_real_positions,
7189 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
7190 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
7191 all of which have been moved to common code.
7192
7193 * xfaces.c: Include TERM_HEADER instead of listing all possible
7194 window-system headers.
7195
7196 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
7197 to match header.
7198
7199 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
7200 directly accessing frame internals.
7201
7202 * w32font.h: Include font.h. Define syms_of_w32font and
7203 globals_of_w32font.
7204
7205 * process.c: Include TERM_HEADER instead of listing all possible
7206 window-system headers.
7207
7208 * nsterm.h: Remove declarations now in frame.h.
7209 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
7210
7211 * menu.c: Include TERM_HEADER instead of listing all possible
7212 window-system headers.
7213
7214 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
7215 window system.
7216
7217 * keyboard.c: Include TERM_HEADER instead of listing all possible
7218 window-system headers.
7219
7220 * image.c: Include TERM_HEADER instead of listing all possible
7221 window-system headers. Declare Vlibrary_cache when compiling for
7222 Windows.
7223
7224 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
7225 window system declarations.
7226
7227 * frame.h: Move common functions here: set_frame_menubar,
7228 x_set_window_size, x_sync, x_get_focus_frame,
7229 x_set_mouse_position, x_set_mouse_pixel_position,
7230 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
7231 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
7232 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
7233 x_activate_menubar, x_real_positions, x_bitmap_icon,
7234 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
7235 and x_query_colors.
7236
7237 * frame.c: Include TERM_HEADER instead of listing all possible
7238 window-system headers.
7239
7240 * font.c: Include TERM_HEADER instead of listing all possible
7241 window-system headers.
7242
7243 * emacs.c: Include TERM_HEADER.
7244
7245 * dispnew.c: Include TERM_HEADER instead of listing all possible
7246 window-system headers.
7247
7248 * ccl.h: Include character.h.
7249
7250 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
7251 the current window system; include in list of objects to link into
7252 Emacs.
7253
7254 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7255
7256 Remove mark_ttys function and fix tty_display_info initialization.
7257 * lisp.h (mark_ttys): Remove prototype.
7258 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
7259 to mark_ttys because all possible values of 'top_frame' slot are
7260 the frames which are reachable from Vframe_list.
7261 * term.c (mark_ttys): Remove.
7262 (init_tty): Safely initialize 'top_frame' slot with Qnil.
7263
7264 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7265
7266 Change struct frame bitfields from unsigned char to unsigned.
7267 * frame.h (struct frame): Change type of 'display_preempted',
7268 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
7269 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
7270 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
7271 bitfields from unsigned char to unsigned.
7272
7273 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
7274
7275 Remove unused member of struct x_output and struct w32_output.
7276 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
7277 * w32term.h (struct w32_output): Likewise.
7278
7279 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
7280
7281 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
7282 does not become zero (Bug#12234).
7283
7284 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
7285
7286 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
7287 for GCC 4.7.1 x86-64.
7288
7289 2012-08-30 Glenn Morris <rgm@gnu.org>
7290
7291 * lread.c (init_lread): For out-of-tree builds, only add the
7292 source directory's site-lisp dir to the load-path if it exists,
7293 consistent with in-tree builds. (Bug#12302)
7294
7295 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
7296
7297 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
7298 button_values to NULL. Call setStykeMask so dialogs get a close button.
7299 (windowShouldClose:): Set window_closed.
7300 (dealloc): New member, free button_values.
7301 (process_dialog:): Make member function. Remove window argument,
7302 replace window with self. Count buttons and allocate and store values
7303 in button_values.
7304 (addButton:value:row:): value is int with the name tag. Call setTag
7305 with tag. Remove return self, declare return value as void.
7306 (addString:row:): Remove return self, declare return value as void.
7307 (addSplit): Remove return self, declare return value as void.
7308 (clicked:): Remove return self, declare return value as void.
7309 Set dialog_return to button_values[seltag]. Code formatting change.
7310 (initFromContents:isQuestion:): Adjust call to process_dialog.
7311 Code formatting change.
7312 (timeout_handler:): Set timer_fired to YES.
7313 (runDialogAt:): Set timer_fired to NO.
7314 Handle click on close button as quit.
7315
7316 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
7317 Add window_closed and button_values. Add void as return value for
7318 add(Button|String|Split). addButton takes int instead of Lisp_Object.
7319 Add process_dialog as new member.
7320
7321 2012-08-28 Eli Zaretskii <eliz@gnu.org>
7322
7323 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
7324 is not one of the heaps we manage. (Bug#12242)
7325
7326 2012-08-28 Glenn Morris <rgm@gnu.org>
7327
7328 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
7329
7330 2012-08-28 Martin Rudalics <rudalics@gmx.at>
7331
7332 * window.c (Fset_window_configuration): Remove handling of
7333 auto-buffer-name window parameter. Install revision of reverted
7334 fix.
7335
7336 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7337
7338 Do not allow to set major mode for a dead buffer.
7339 * buffer.c (Fset_buffer_major_mode): Signal an error
7340 if the buffer is dead.
7341 (Fother_buffer, other_buffer_safely): Remove redundant
7342 nested declaration.
7343
7344 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7345
7346 Always use set_buffer_if_live to restore original buffer at unwind.
7347 * buffer.h (record_unwind_current_buffer): New function.
7348 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
7349 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
7350 * undo.c, window.c: Adjust users.
7351 * buffer.c (set_buffer_if_live): Fix comment.
7352
7353 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
7354
7355 Fix usage of set_buffer_internal.
7356 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
7357 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
7358 * coding.c (decode_coding): Omit redundant test.
7359 * fileio.c (decide_coding_unwind): Likewise.
7360 * fns.c (secure_hash): Likewise.
7361 * insdel.c (modify_region): Likewise.
7362 * keyboard.c (command_loop_1): Likewise.
7363 * print.c (PRINTFINISH): Likewise.
7364 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
7365
7366 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
7367
7368 * dispnew.c: Use bool for boolean.
7369 (frame_garbaged, display_completed, delayed_size_change)
7370 (fonts_changed_p, add_window_display_history)
7371 (add_frame_display_history, verify_row_hash)
7372 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
7373 (row_equal_p, realloc_glyph_pool)
7374 (allocate_matrices_for_frame_redisplay)
7375 (showing_window_margins_p)
7376 (adjust_frame_glyphs_for_frame_redisplay)
7377 (build_frame_matrix_from_leaf_window, make_current)
7378 (mirrored_line_dance, mirror_line_dance, update_frame)
7379 (update_window_tree, update_single_window)
7380 (check_current_matrix_flags, update_window, update_text_area)
7381 (update_window_line, set_window_update_flags, scrolling_window)
7382 (update_frame_1, scrolling, buffer_posn_from_coords)
7383 (do_pending_window_change, change_frame_size)
7384 (change_frame_size_1, sit_for):
7385 Use bool for boolean.
7386 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
7387 and remove last int (actually boolean) argument, which was always 0.
7388 All callers changed.
7389 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
7390 * dispextern.h (struct composition_it): Use bool for boolean.
7391 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
7392 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
7393 * dired.c (file_name_completion):
7394 Use bool for boolean. (This was missed in an earlier change.)
7395
7396 2012-08-27 Martin Rudalics <rudalics@gmx.at>
7397
7398 * window.c (Fset_window_configuration): Revert first part of
7399 last change.
7400
7401 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
7402
7403 * nsterm.h (NSPanel): New class variable dialog_return.
7404
7405 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
7406 Initialize dialog_return.
7407 (windowShouldClose:): Use stop instead of stopModalWithCode.
7408 (clicked:): Ditto, and also set dialog_return (Bug#12258).
7409 (timeout_handler:): Use stop instead of abortModal. Send a dummy
7410 event.
7411 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
7412 modal loop returns.
7413
7414 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
7415
7416 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
7417 * composite.c (find_composition, composition_gstring_p)
7418 (composition_reseat_it, find_automatic_composition):
7419 * data.c (let_shadows_buffer_binding_p)
7420 (let_shadows_global_binding_p, set_internal, make_blv)
7421 (Fmake_variable_buffer_local, Fmake_local_variable)
7422 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
7423 (cons_to_signed, arith_driver):
7424 * dbusbind.c (xd_in_read_queued_messages):
7425 * dired.c (directory_files_internal, file_name_completion):
7426 Use bool for booleans.
7427 * dired.c (file_name_completion):
7428 * process.h (fd_callback):
7429 Omit int (actually boolean) argument. It wasn't being used.
7430 All uses changed.
7431 * composite.h, lisp.h: Reflect above API changes.
7432
7433 * cmds.c, coding.c: Use bool for booleans.
7434 * cmds.c (move_point, Fself_insert_command):
7435 * coding.h (struct composition status, struct coding_system):
7436 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
7437 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
7438 (emacs_mule_char, decode_coding_emacs_mule)
7439 (encode_coding_emacs_mule, detect_coding_iso_2022)
7440 (decode_coding_iso_2022, encode_invocation_designation)
7441 (encode_designation_at_bol, encode_coding_iso_2022)
7442 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
7443 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
7444 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
7445 (encode_coding_raw_text, detect_coding_charset)
7446 (decode_coding_charset, encode_coding_charset, detect_eol)
7447 (detect_coding, get_translation_table, produce_chars)
7448 (consume_chars, reused_workbuf_in_use)
7449 (make_conversion_work_buffer, code_conversion_save)
7450 (decode_coding_object, encode_coding_object)
7451 (detect_coding_system, char_encodable_p)
7452 (Funencodable_char_position, code_convert_region)
7453 (code_convert_string, code_convert_string_norecord)
7454 (Fset_coding_system_priority):
7455 * fileio.c (Finsert_file_contents):
7456 Use bool for booleans.
7457 * coding.h, lisp.h: Reflect above API changes.
7458 * coding.c: Remove unnecessary static function decls.
7459 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
7460 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
7461 not a boolean 'int', since callers never look at the return value.
7462 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
7463 * coding.h (decoding_buffer_size, encoding_buffer_size)
7464 (emacs_mule_string_char): Remove unused extern decls.
7465 (struct iso_2022_spec, struct coding_system):
7466 Use 'unsigned int : 1' for boolean fields, since there's more than one.
7467 (struct emacs_mule_spec): Remove unused field 'full_support'.
7468 All initializations removed.
7469 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
7470
7471 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
7472
7473 Fix spare memory change (Bug#12286).
7474 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
7475 (valid_lisp_object_p): Likewise.
7476
7477 2012-08-27 Martin Rudalics <rudalics@gmx.at>
7478
7479 * window.c (Fset_window_configuration): Record any window's old
7480 buffer if it's replaced (see Bug#8789). If the new current
7481 buffer doesn't appear in the selected window, go to its old
7482 point (Bug#12208).
7483
7484 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
7485
7486 Special MEM_TYPE_SPARE to denote reserved memory.
7487 * alloc.c (enum mem_type): New memory type.
7488 (refill_memory_reserve): Use new type for spare memory.
7489 This prevents live_cons_p and live_string_p from incorrect
7490 detection of uninitialized objects from spare memory as live.
7491
7492 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
7493
7494 Spelling fixes.
7495 * Makefile.in (.PHONY): versioclean -> versionclean.
7496
7497 Remove unused external symbols.
7498 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
7499 * window.c (Qwindow_valid_p, decode_valid_window):
7500 Now static, not extern.
7501 * data.c (Qinterval): Remove; unused.
7502 (syms_of_data): Do not define 'interval'.
7503 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
7504 * window.h (decode_valid_window):
7505 Remove decls.
7506
7507 * character.c, charset.c, chartab.c: Use bool for booleans.
7508 * character.c (lisp_string_width, string_count_byte8)
7509 (string_escape_byte8):
7510 * charset.c (charset_map_loaded, load_charset_map, read_hex):
7511 (load_charset_map_from_file, map_charset_chars)
7512 (Fdefine_charset_internal, define_charset_internal)
7513 (Fdeclare_equiv_charset, find_charsets_in_text)
7514 (Ffind_charset_region, char_charset, Fiso_charset):
7515 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
7516 (sub_char_table_set, sub_char_table_set_range)
7517 (char_table_set_range, optimize_sub_char_table)
7518 (map_sub_char_table):
7519 Use bool for boolean.
7520 * character.c (str_to_unibyte): Omit last boolean argument; it was
7521 always 0. All callers changed.
7522 * character.h, charset.h: Adjust to match previous changes.
7523 * character.h (char_printable_p): Remove decl of nonexistent function.
7524 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
7525 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
7526 are all boolean, so make them single-bit bitfields.
7527
7528 * lisp.h (ASET): Remove attempt to detect side effects.
7529 It was meant to be temporary and it often doesn't work,
7530 because when IDX has side effects the behavior of IDX==IDX
7531 is undefined. See Stefan Monnier in
7532 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
7533
7534 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7535
7536 * lisp.h (functionp): New function (extracted from Ffunctionp).
7537 (FUNCTIONP): Use it.
7538 * eval.c (Ffunctionp): Use it.
7539
7540 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7541
7542 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
7543 as that's faster and simpler than static storage. Don't bother
7544 with the g_main_context_query overhead if g_main_context_pending
7545 says no events are pending.
7546 (gfds, gfds_size): Remove these static vars.
7547 (xgselect_initialize): Remove; no longer needed.
7548 All uses and decls removed.
7549
7550 * emacs.c (fatal_error_signal_hook): Remove.
7551 All uses removed. This leftover from old code was always 0.
7552
7553 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
7554 * casefiddle.c (casify_object, casify_region):
7555 * casetab.c (set_case_table):
7556 * category.c, category.h (word_boundary_p):
7557 * category.h (CHAR_HAS_CATEGORY):
7558 Use bool for booleans, instead of int.
7559
7560 2012-08-25 Eli Zaretskii <eliz@gnu.org>
7561
7562 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
7563
7564 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7565
7566 On assertion failure, print backtrace if available.
7567 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
7568 (die) [ENABLE_CHECKING]: Print a backtrace if available.
7569 * Makefile.in (LIB_EXECINFO): New macro.
7570 (LIBES): Use it.
7571
7572 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
7573 * bytecode.c (exec_byte_code):
7574 * callint.c (check_mark, Fcall_interactively):
7575 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
7576 (getenv_internal, sync_process_alive, call_process_exited):
7577 * lisp.h (USE_SAFE_ALLOCA):
7578 Use bool for booleans, instead of int.
7579 * lisp.h, process.h: Adjust prototypes to match above changes.
7580 * callint.c (Fcall_interactively): Don't assume the mark's
7581 offset fits in 'int'.
7582
7583 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7584
7585 * buffer.c, buffer.h: Use bool for boolean.
7586 * buffer.c (reset_buffer_local_variables)
7587 (buffer_lisp_local_variables, Fset_buffer_modified_p)
7588 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
7589 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
7590 (overlay_touches_p, overlay_strings, Foverlay_put)
7591 (report_overlay_modification, call_overlay_mod_hooks):
7592 (mmap_enlarge, mmap_set_vars):
7593 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
7594 Use bool for booleans, instead of int.
7595 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
7596 since the 1-or-0 return value is always ignored anyway.
7597 (mmap_initialized_p):
7598 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
7599 * buffer.h, lisp.h: Adjust prototypes to match above changes.
7600
7601 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7602
7603 * bidi.c: Use bool for boolean.
7604 This is a bit more readable, and makes the text segment of bidi.o
7605 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
7606 Presumably it's faster too.
7607 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
7608 Now bool.
7609 (bidi_cache_find_level_change, bidi_cache_iterator_state)
7610 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
7611 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
7612 (bidi_explicit_dir_char, bidi_level_of_next_char)
7613 (bidi_find_other_level_edge, bidi_move_to_visually_next):
7614 Use bool for booleans, instead of int.
7615 * dispextern.h (bidi_init_it, bidi_paragraph_init)
7616 (bidi_unshelve_cache): Adjust decls to match code.
7617
7618 2012-08-23 Martin Rudalics <rudalics@gmx.at>
7619
7620 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
7621 argument.
7622
7623 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7624
7625 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
7626 * atimer.h: Include <stdbool.h>.
7627
7628 2012-08-22 Dan Nicolaescu <dann@gnu.org>
7629
7630 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
7631 compile time tests instead of run time tests on systems that do
7632 not use them.
7633 (FRAME_MAC_P): Remove leftover from deleted code.
7634 * frame.c (syms_of_frame): Remove leftover from deleted code.
7635
7636 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
7637
7638 * nsterm.m (insertText:): Don't clear modifiers if code is space.
7639
7640 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
7641
7642 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
7643 Otherwise, the compiler complains about (A?B:C) where B is void
7644 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
7645 (fontset_add): Return void, for FONTSET_ADD.
7646
7647 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7648
7649 * alloc.c: Use bool for booleans.
7650 (gc_in_progress, abort_on_gc)
7651 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7652 (dont_register_blocks) [GC_MALLOC_CHECK]:
7653 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
7654 (check_string_bytes, make_specified_string, memory_full)
7655 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
7656 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
7657 (mark_stack, valid_pointer_p, make_pure_string)
7658 (Fgarbage_collect, survives_gc_p, gc_sweep):
7659 Use bool for booleans, instead of int.
7660 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7661 Remove unused local.
7662 * alloc.c (PURE_POINTER_P):
7663 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
7664 * editfns.c (Fformat):
7665 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
7666 (Fdo_auto_save):
7667 * fns.c (sweep_weak_table):
7668 * lisp.h (suppress_checking, push_message, survives_gc_p)
7669 (make_pure_string, gc_in_progress, abort_on_gc):
7670 * lread.c (readchar, read1):
7671 * print.c (Fprin1_to_string):
7672 * xdisp.c (push_message):
7673 Use bool for booleans affected directly or indirectly by
7674 alloc.c's changes.
7675
7676 Make recently-introduced setters macros.
7677 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
7678 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
7679 (set_fontset_default, set_fontset_fallback): Rename from their
7680 upper-case counterparts, and make them functions rather than macros.
7681 This is more consistent with the other recently-introduced setters.
7682 These don't need to be inline, since they're local.
7683
7684 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
7685
7686 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
7687 the loop (Bug#12247).
7688
7689 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7690
7691 * lisp.h (vcopy): Use memcpy rather than our own loop.
7692 This fixes a performance regression introduced by the recent
7693 addition of vcopy. This means 'vcopy' will need to be modified
7694 for a copying collector, but that's OK. Also, tighten the
7695 checking in the assertion.
7696
7697 2012-08-21 Eli Zaretskii <eliz@gnu.org>
7698
7699 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
7700 components for RTL text (Bug#11860). Adjust X-OFFSET of each
7701 non-base glyph for the width of the base character, according to
7702 what x_draw_composite_glyph_string_foreground expects.
7703 Generate WADJUST value according to composition_gstring_width's
7704 expectations, to produce correct width of the composed character.
7705 Reverse the sign of the DU offset produced by ScriptPlace.
7706
7707 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7708
7709 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
7710
7711 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7712
7713 Avoid direct writes to contents member of struct Lisp_Vector.
7714 * lisp.h (vcopy): New function to copy data into vector.
7715 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
7716 * fns.c (Ffillarray): Use ASET.
7717 * keyboard.c (timer_check_2): Use AREF and ASET.
7718 (append_tool_bar_item, Frecent_keys): Use vcopy.
7719 * lread.c (read_vector): Use ASET.
7720 * msdos.c (Frecent_doskeys): Use vcopy.
7721 * xface.c (Finternal_copy_lisp_face): Use vcopy.
7722 (Finternal_merge_in_global_face): Use ASET and vcopy.
7723 * xfont.c (xfont_list_pattern): Likewise.
7724
7725 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7726
7727 * window.c (Fwindow_point): For the selected window always return
7728 the position of its buffer's point.
7729 (Fset_window_point): For the selected window always go in its
7730 buffer to the specified position.
7731
7732 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7733
7734 Setter macros for fontsets.
7735 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
7736 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
7737 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
7738 Adjust users.
7739
7740 2012-08-20 Glenn Morris <rgm@gnu.org>
7741
7742 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7743 Don't assume that `ln -f' works.
7744
7745 2012-08-20 Eli Zaretskii <eliz@gnu.org>
7746
7747 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
7748 and later about non-assignments with no effect. See discussion at
7749 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
7750 details.
7751
7752 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7753
7754 Inline setter functions for Lisp_Objects slots of struct specbinding.
7755 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
7756 Adjust users.
7757
7758 2012-08-20 Martin Rudalics <rudalics@gmx.at>
7759
7760 * window.c (select_window): Always make selected window's buffer
7761 current.
7762
7763 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7764
7765 Use AREF and ASET for docstrings of category tables.
7766 * category.h (CATEGORY_DOCSTRING): Use AREF.
7767 (SET_CATEGORY_DOCSTRING): Use ASET.
7768 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
7769
7770 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7771
7772 Inline setter functions for hash table members.
7773 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
7774 (set_hash_hash, set_hash_index): Rename with _slot suffix.
7775 (set_hash_key_and_value, set_hash_index, set_hash_next)
7776 (set_hash_hash): New functions.
7777 * charset.c, fns.c: Adjust users.
7778
7779 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7780
7781 Inline getter and setter functions for per-buffer values.
7782 * buffer.h (per_buffer_default, set_per_buffer_default)
7783 (per_buffer_value, set_per_buffer_value): New functions.
7784 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
7785 * buffer.c, data.c: Adjust users.
7786
7787 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
7788
7789 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
7790
7791 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
7792
7793 Rely on <config.h> + <unistd.h> to declare 'environ',
7794 as gnulib does this if the system doesn't.
7795 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
7796 Remove declaration. MS-Windows declares it on stdlib.h which is
7797 included by conf_post.h.
7798 * emacs.c (environ) [DOUG_LEA_MALLOC]:
7799 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
7800 * vm-limit.c: Include <unistd.h>, for 'environ'.
7801
7802 * unexaix.c, unexcoff.c: Include "mem-limits.h".
7803 (start_of_data): Remove decl; mem-limits.h provides it.
7804
7805 * xdisp.c (handle_invisible_prop): Make it a bit faster
7806 and avoid a gcc -Wmaybe-uninitialized diagnostic.
7807
7808 2012-08-19 Chong Yidong <cyd@gnu.org>
7809
7810 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
7811 ends (Bug#3874).
7812
7813 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
7814
7815 * .gdbinit: Use call instead of set when calling a function in the
7816 inferior.
7817
7818 * data.c (set_internal): Don't use set_blv_found.
7819 (Fkill_local_variable): Likewise.
7820
7821 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
7822
7823 * nsfont.m (ns_ascii_average_width): Ensure the string
7824 ascii_printable is initialized with a null-terminated character
7825 array. Otherwise, it can contain undesired extra characters.
7826
7827 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7828
7829 port new setting code to Sun C 5.8 2005/10/13
7830 * chartab.c, lisp.h (char_table_set, char_table_set_range):
7831 Return void, not Lisp_Object. Otherwise, the compiler
7832 complains about (A?B:C) where B is void and C is Lisp_Object
7833 when compiling CHAR_TABLE_SET, due to the recent change to
7834 the API of sub_char_table_set_contents.
7835
7836 2012-08-18 Chong Yidong <cyd@gnu.org>
7837
7838 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
7839 for the string case (Bug#3874).
7840
7841 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7842
7843 * buffer.h (BSET): Remove (Bug#12215).
7844 Replace all uses with calls to new setter functions.
7845 (bset_bidi_paragraph_direction, bset_case_canon_table)
7846 (bset_case_eqv_table, bset_directory, bset_display_count)
7847 (bset_display_time, bset_downcase_table)
7848 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
7849 (bset_last_selected_window, bset_local_var_alist)
7850 (bset_mark_active, bset_point_before_scroll, bset_read_only)
7851 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
7852 (bset_width_table):
7853 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
7854 (bset_auto_fill_function, bset_auto_save_file_format)
7855 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
7856 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
7857 (bset_cache_long_line_scans, bset_case_fold_search)
7858 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
7859 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
7860 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
7861 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
7862 (bset_header_line_format, bset_indicate_buffer_boundaries)
7863 (bset_indicate_empty_lines, bset_invisibility_spec)
7864 (bset_left_fringe_width, bset_major_mode, bset_mark)
7865 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
7866 (bset_name, bset_overwrite_mode, bset_pt_marker)
7867 (bset_right_fringe_width, bset_save_length)
7868 (bset_scroll_bar_width, bset_scroll_down_aggressively)
7869 (bset_scroll_up_aggressively, bset_selective_display)
7870 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
7871 (bset_word_wrap, bset_zv_marker):
7872 * category.c (bset_category_table):
7873 * syntax.c (bset_syntax_table):
7874 New setter functions.
7875
7876 * process.h (PSET): Remove (Bug#12215).
7877 Replace all uses with calls to new setter functions.
7878 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7879 (PROCESS_INLINE): New macro.
7880 (pset_childp): New setter function.
7881 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
7882 * process.c (PROCESS_INLINE):
7883 Define to EXTERN_INLINE, so that the corresponding functions
7884 are compiled into code.
7885 (pset_buffer, pset_command, pset_decode_coding_system)
7886 (pset_decoding_buf, pset_encode_coding_system)
7887 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
7888 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
7889 (pset_type, pset_write_queue): New setter functions.
7890
7891 * window.h (WSET): Remove (Bug#12215).
7892 Replace all uses with calls to new setter functions.
7893 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7894 (WINDOW_INLINE): New macro.
7895 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
7896 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
7897 (wset_total_lines, wset_vertical_scroll_bar)
7898 (wset_window_end_pos, wset_window_end_valid)
7899 (wset_window_end_vpos): New setter functions.
7900 * window.c (WINDOW_INLINE):
7901 Define to EXTERN_INLINE, so that the corresponding functions
7902 are compiled into code.
7903 (wset_combination_limit, wset_dedicated, wset_display_table)
7904 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7905 (wset_new_normal, wset_new_total, wset_next_buffers)
7906 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7907 (wset_prev_buffers, wset_right_fringe_width)
7908 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7909 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7910 (wset_window_parameters):
7911 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7912 (wset_column_number_displayed, wset_region_showing):
7913 New setter functions.
7914
7915 * termhooks.h (TSET): Remove (Bug#12215).
7916 Replace all uses with calls to new setter functions.
7917 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7918 (TERMHOOKS_INLINE): New macro.
7919 (tset_charset_list, tset_selection_alist): New setter functions.
7920 * terminal.c (TERMHOOKS_INLINE):
7921 Define to EXTERN_INLINE, so that the corresponding functions
7922 are compiled into code.
7923 (tset_param_alist): New setter function.
7924
7925 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7926
7927 * keyboard.h (KSET): Remove (Bug#12215).
7928 Replace all uses with calls to new setter functions.
7929 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7930 (KEYBOARD_INLINE): New macro.
7931 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7932 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7933 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7934 New setter functions.
7935 * keyboard.c (KEYBOARD_INLINE):
7936 Define to EXTERN_INLINE, so that the corresponding functions
7937 are compiled into code.
7938 (kset_echo_string, kset_kbd_queue)
7939 (kset_keyboard_translate_table, kset_last_prefix_arg)
7940 (kset_last_repeatable_command, kset_local_function_key_map)
7941 (kset_overriding_terminal_local_map, kset_real_last_command)
7942 (kset_system_key_syms): New setter functions.
7943
7944 * frame.h (FSET): Remove (Bug#12215).
7945 Replace all uses with calls to new setter functions.
7946 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7947 (FRAME_INLINE): New macro.
7948 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7949 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7950 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7951 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7952 (fset_param_alist, fset_root_window, fset_scroll_bars)
7953 (fset_selected_window, fset_title, fset_tool_bar_items)
7954 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7955 * frame.c (FRAME_INLINE):
7956 Define to EXTERN_INLINE, so that the corresponding functions
7957 are compiled into code.
7958 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7959
7960 A few more naming-convention fixes for getters and setters.
7961 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7962 and rename from buffer_overlays_set_before.
7963 (set_buffer_overlays_after): Move here from buffer.h, and rename
7964 from buffer_overlays_set_after.
7965 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7966 All uses changed.
7967 (set_buffer_intervals): Rename from buffer_set_intervals.
7968 * intervals.c (set_interval_object): Move here from intervals.h,
7969 and rename from interval_set_object.
7970 (set_interval_left): Move here from intervals.h, and rename from
7971 interval_set_left.
7972 (set_interval_right): Move here from intervals.h, and rename from
7973 interval_set_right.
7974 (copy_interval_parent): Move here from intervals.h, and rename from
7975 interval_copy_parent.
7976 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7977 (set_interval_plist): Rename from interval_set_plist.
7978 Return void, not Lisp_Object, since no caller uses the result.
7979 * lisp.h (string_intervals): Rename from string_get_intervals.
7980 (set_string_intervals): Rename from string_set_intervals.
7981
7982 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7983 (set_char_table_contents): Rename from char_table_set_contents.
7984 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7985 All uses changed. See the end of
7986 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7987
7988 * lisp.h (CSET): Remove (Bug#12215).
7989 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7990 (set_char_table_purpose): New functions,
7991 replacing CSET. All uses changed. For example, replace
7992 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7993 "set_char_table_parent (char_table, parent);".
7994 The old version was confusing because it used the same name
7995 'parent' for two different things.
7996
7997 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7998
7999 Functions to get and set Lisp_Object fields of buffer-local variables.
8000 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
8001 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
8002 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
8003 * data.c, eval.c, frame.c: Adjust users.
8004
8005 2012-08-17 Chong Yidong <cyd@gnu.org>
8006
8007 * xfaces.c (merge_face_vectors): If the target font specfies a
8008 font spec, make the font's attributes take precedence over
8009 directly-specified attributes.
8010 (merge_face_ref): Recognize :font.
8011
8012 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
8013
8014 Do not use memcpy for copying intervals.
8015 * intervals.c (reproduce_interval): New function.
8016 (reproduce_tree, reproduce_tree_obj): Use it.
8017 (reproduce_tree_obj): Remove prototype.
8018
8019 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
8020
8021 * lisp.h (duration_to_sec_usec): Remove unused decl.
8022
8023 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
8024
8025 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
8026 to an allocated instance of NSString, not to the class itself.
8027
8028 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
8029
8030 * makefile.w32-in (C_CTYPE_H): New macro.
8031 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
8032 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
8033 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
8034
8035 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
8036
8037 Use ASCII tests for character types.
8038 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
8039 * xfns.c, xterm.c:
8040 Don't include <ctype.h>; was not needed.
8041 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
8042 * sysdep.c, xfaces.c:
8043 Include <c-ctype.h> instead of <ctype.h>.
8044 * nsterm.m: Include <c-ctype.h>.
8045 * charset.c (read_hex):
8046 * doc.c (Fsnarf_documentation):
8047 * fileio.c (IS_DRIVE) [WINDOWSNT]:
8048 (DRIVE_LETTER) [DOS_NT]:
8049 (Ffile_name_directory, Fexpand_file_name)
8050 (Fsubstitute_in_file_name):
8051 * font.c (font_parse_xlfd, font_parse_fcname):
8052 * frame.c (x_set_font_backend):
8053 * gtkutil.c (xg_get_font):
8054 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
8055 * nsimage.m (hexchar):
8056 * nsterm.m (ns_xlfd_to_fontname):
8057 * sysdep.c (system_process_attributes):
8058 * xfaces.c (hash_string_case_insensitive):
8059 Use C-locale tests instead of locale-specific tests for character
8060 types, since we want the ASCII interpretation here, not the
8061 interpretation suitable for whatever happens to be the current locale.
8062
8063 2012-08-16 Martin Rudalics <rudalics@gmx.at>
8064
8065 Consistently check windows for validity/liveness
8066 (Bug#11984, Bug#12025, Bug#12026).
8067 * lisp.h (CHECK_VALID_WINDOW): New macro.
8068 * window.c (decode_window): Rename to decode_live_window.
8069 (decode_valid_window, Fwindow_valid_p): New functions.
8070 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
8071 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
8072 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
8073 (Fwindow_prev_sibling, Fwindow_combination_limit)
8074 (Fset_window_combination_limit, Fwindow_use_time)
8075 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
8076 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
8077 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
8078 (Fwindow_hscroll, Fset_window_hscroll)
8079 (Fwindow_redisplay_end_trigger)
8080 (Fset_window_redisplay_end_trigger, Fwindow_edges)
8081 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
8082 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
8083 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
8084 (Fwindow_end, Fset_window_point, Fset_window_start)
8085 (Fpos_visible_in_window_p, Fwindow_line_height)
8086 (Fwindow_dedicated_p, Fset_window_dedicated_p)
8087 (Fwindow_prev_buffers, Fset_window_prev_buffers)
8088 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
8089 (Fset_window_parameter, Fwindow_display_table)
8090 (Fset_window_display_table, Fdelete_other_windows_internal)
8091 (Fset_window_buffer, Fset_window_new_total)
8092 (Fset_window_new_normal, Fdelete_window_internal)
8093 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
8094 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
8095 (Fwindow_scroll_bars): Check whether argument window is a valid or
8096 live window. Update doc-strings.
8097 (syms_of_window): New symbol Qwindow_valid_p.
8098 * keyboard.c (Fposn_at_x_y): Check whether argument
8099 frame_or_window denotes a valid window.
8100
8101 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
8102
8103 Fix previous char table change.
8104 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
8105 * chartab.c (optimize_sub_char_table): Likewise.
8106
8107 2012-08-16 Chong Yidong <cyd@gnu.org>
8108
8109 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
8110
8111 * xfont.c (xfont_open):
8112 * xftfont.c (xftfont_open): Set the font's max_width field.
8113
8114 * nsfont.m (nsfont_open): Similar to the Xft backend, set
8115 min_width to space_width and average_width to the average over
8116 printable ASCII characters.
8117 (ns_char_width): Code cleanup.
8118 (ns_ascii_average_width): New utility function.
8119
8120 * font.h (struct font): Update comments.
8121
8122 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
8123
8124 Simple interface to set Lisp_Object fields of character tables.
8125 * lisp.h (CSET): New macro.
8126 (char_table_set_extras, char_table_set_contents)
8127 (sub_char_table_set_contents): New function.
8128 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
8129 * syntax.c: Adjust users.
8130
8131 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
8132
8133 * eval.c (eval_sub): Bind lexical-binding.
8134 * lread.c (Qlexical_binding): Make non-static.
8135
8136 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
8137
8138 * nsmenu.m (popupSession): Remove.
8139 (pop_down_menu): Remove endModalSession.
8140 (timeout_handler:): New method.
8141 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
8142 Call runModalForWindow. Check timer_fired when it returns.
8143 If not set, cancel timer and break out of loop.
8144 Otherwise loop again, with a new timeout.
8145
8146 * nsterm.m: Include fcntl.h if present.
8147 (fd_entry, t_readfds, inNsSelect): Remove.
8148 (select_writefds, select_valid, select_timeout, selfds)
8149 (select_mutex, apploopnr): Add.
8150 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
8151 Otherwise call kbd_buffer_store_event.
8152 (ns_send_appdefined): Remove release of fd_entry.
8153 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
8154 Increment and decrement apploopnr.
8155 (ns_select): If no file descriptors, just do a NSTimer.
8156 Otherwise copy read/write masks and start select thread (fd_handler).
8157 Start main loop and wait for application defined event.
8158 Inform select thread to stop selecting after main loop is exited.
8159 (ns_term_init): Create selfds pipe and set non-blocking.
8160 Initialize select_mutex. Start the select thread (fd_handler).
8161 (fd_handler:): Loop forever, wait for info from the main thread
8162 to either start or stop selecting. When select returns, send
8163 and appdefined event.
8164 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
8165 If not call kbd_buffer_store_event.
8166
8167 * nsterm.h (EmacsApp): fd_handler takes id argument.
8168 (EmacsDialogPanel): Add timer_fired and timeout_handler.
8169
8170 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
8171
8172 2012-08-15 Eli Zaretskii <eliz@gnu.org>
8173
8174 * region-cache.c (move_cache_gap): Update gap_len using the actual
8175 growth of the boundaries array. Do not change cache_len.
8176 (Bug#12196)
8177
8178 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
8179
8180 Generalize and cleanup font subsystem checks.
8181 * font.h (FONT_DEBUG, font_assert): Remove.
8182 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
8183 Change font_assert to eassert. Use eassert where appropriate.
8184
8185 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
8186
8187 * gtkutil.c (xg_get_font): Use pango_units_to_double.
8188
8189 2012-08-15 Chong Yidong <cyd@gnu.org>
8190
8191 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
8192 When using the new font chooser, use gtk_font_chooser_get_font_desc to
8193 extract the font descriptor instead of just the font name.
8194 In that case, return a font spec instead of a string.
8195 (x_last_font_name): Move to this file from xfns.c.
8196
8197 * xfns.c (Fx_select_font): The return value can also be a font
8198 spec. Move x_last_font_name management to gtkutil.c.
8199
8200 * xfaces.c: Make font weight and style symbols non-static.
8201
8202 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
8203
8204 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
8205 (bug#12117).
8206
8207 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
8208
8209 * alloc.c (Fgarbage_collect): Use plural form consistently.
8210
8211 2012-08-14 Eli Zaretskii <eliz@gnu.org>
8212
8213 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
8214 iteration through the command loop. Fixes a problem whereby mouse
8215 movements are ignored until the first mouse click.
8216
8217 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8218
8219 Use bool, not int, for Lisp booleans.
8220 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
8221 makes Emacs a bit smaller and presumably a bit faster.
8222 * lisp.h: Include <stdbool.h>.
8223 (struct Lisp_Boolfwd, defvar_bool):
8224 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
8225 * regex.c [!emacs]: Include <stdbool.h>.
8226 (false, true): Remove; <stdbool.h> does this for us now.
8227
8228 2012-08-14 Chong Yidong <cyd@gnu.org>
8229
8230 * character.c (Fcharacterp): Doc fix (Bug#12076).
8231
8232 * data.c (Findirect_variable): Doc fix (Bug#11040).
8233
8234 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
8235
8236 * editfns.c (Fformat): Doc fix (Bug#12059).
8237 (Fsave_current_buffer): Doc fix (Bug#11542).
8238
8239 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
8240
8241 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
8242 (bug#12022).
8243
8244 2012-08-14 Martin Rudalics <rudalics@gmx.at>
8245
8246 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
8247 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
8248 * minibuf.c (choose_minibuf_frame, read_minibuf):
8249 * w32fns.c (x_create_tip_frame):
8250 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
8251 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
8252
8253 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8254
8255 * intervals.c (offset_intervals): Remove obsolete comment.
8256
8257 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
8258
8259 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
8260
8261 2012-08-14 Gergely Risko <gergely@risko.hu>
8262
8263 * coding.c (decode_coding): Record buffer modification before
8264 disabling undo_list (Bug#11773).
8265
8266 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
8267
8268 Revert and cleanup some recent overlay changes.
8269 * buffer.h (enum overlay_type): Remove.
8270 (buffer_get_overlays, buffer_set_overlays): Likewise.
8271 (buffer_set_overlays_before, buffer_set_overlays_after):
8272 New function. Adjust users.
8273 (unchain_both): Add eassert.
8274
8275 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
8276
8277 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
8278
8279 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
8280
8281 * gtkutil.c (xg_mark_data): Don't assume C99.
8282
8283 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
8284
8285 * gtkutil.c (xg_frame_tb_info): New struct.
8286 (TB_INFO_KEY): New define.
8287 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
8288 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
8289 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
8290 if not present.
8291 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
8292 is up to date. Otherwise store new data.
8293 (free_frame_tool_bar): Free xg_frame_tb_info if present.
8294
8295 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
8296
8297 Use KSET for write access to Lisp_Object members of struct kboard.
8298 * keyboard.h (KSET): New macro.
8299 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
8300 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
8301 * xterm.c: Adjust users.
8302
8303 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
8304
8305 Use BSET for write access to Lisp_Object members of struct buffer.
8306 * buffer.h (BSET): New macro.
8307 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
8308 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
8309 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
8310 * window.c, xdisp.c, xfns.c: Adjust users.
8311
8312 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
8313
8314 * lread.c (syms_of_lread): Initialize Vlexical_binding.
8315
8316 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
8317
8318 * nsterm.m (not_in_argv): New function.
8319 (application:openFile, application:openTempFile:):
8320 (application:openFileWithoutUI:, application:openFiles:): Open file
8321 if not_in_argv returns non-zero (bug#12171).
8322
8323 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
8324 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
8325 Define for Gtk+ versions less than 3.2.
8326 (xg_get_font_name): Use those functions/macros here.
8327 Reported by Frans Oilinki <moilinki@gmail.com>.
8328
8329 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8330
8331 * unexmacosx.c (copy_data_segment): Copy initialized data in
8332 statically linked libraries from input file rather than memory.
8333
8334 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
8335 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
8336 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
8337
8338 2012-08-10 Glenn Morris <rgm@gnu.org>
8339
8340 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
8341 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
8342
8343 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8344
8345 Fix last change to allow compilation with low optimization levels.
8346 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
8347 Reported by Jan Djärv <jan.h.d@swipnet.se>.
8348
8349 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8350
8351 Use common inline syntax in intervals.h.
8352 * intervals.h (INTERVALS_INLINE): New macro.
8353 Change all users from LISP_INLINE.
8354
8355 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8356
8357 Define Qnone once for all platforms.
8358 * frame.c (Qnone): Define here.
8359 (syms_of_frame): DEFSYM it.
8360 * lisp.h (Qnone): New declaration.
8361 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
8362 * xfns.c: Remove duplication. Adjust users.
8363
8364 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
8365
8366 Remove unused macros from intervals.h.
8367 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
8368 * intervals.c: Adjust comment.
8369
8370 2012-08-10 Eli Zaretskii <eliz@gnu.org>
8371
8372 * w32fns.c <w32_unicode_gui>: New static variable.
8373 (globals_of_w32fns): Initialize it according to os_subtype.
8374 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
8375 testing os_subtype.
8376
8377 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
8378 Eli Zaretskii <eliz@gnu.org>
8379
8380 Fix bug #10299 with Unicode characters sent by customized
8381 keyboards created by MSKLC.
8382 * w32fns.c (INIT_WINDOW_CLASS): New macro.
8383 (w32_init_class): Use it to initialize the Emacs class with either
8384 ANSI or Unicode API calls.
8385 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
8386 later.
8387 (w32_wnd_proc): If the character code sent by WM_CHAR or
8388 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
8389 original message. Call DefWindowProcW on NT and later.
8390
8391 2012-08-10 Glenn Morris <rgm@gnu.org>
8392
8393 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
8394
8395 * lisp.h (DIRECTORY_SEP): Let configure set it.
8396
8397 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
8398
8399 Use TSET for write access to Lisp_Object slots of struct terminal.
8400 * termhooks.h (TSET): New macro.
8401 * coding.c, terminal.c, xselect.c: Adjust users.
8402
8403 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
8404
8405 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
8406 the failing expression, include them in the error message.
8407 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
8408 * lisp.h (internal_condition_case_n): Update declaration.
8409
8410 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8411
8412 Inline functions to examine and change buffer overlays.
8413 * buffer.c (unchain_both): New function.
8414 * buffer.h (buffer_get_overlays, buffer_set_overlays):
8415 (buffer_has_overlays): New function.
8416 (enum overlay_type): New enum.
8417 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
8418 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
8419
8420 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8421
8422 Inline functions to examine and change buffer intervals.
8423 * alloc.c (mark_interval_tree): Remove.
8424 (MARK_INTERVAL_TREE): Simplify.
8425 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
8426 * intervals.c (buffer_balance_intervals): New function.
8427 (graft_intervals_into_buffer): Adjust indentation.
8428 (set_intervals_multibyte): Simplify.
8429 * buffer.h (BUF_INTERVALS): Remove.
8430 (buffer_get_intervals, buffer_set_intervals): New function.
8431 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
8432 * intervals.c, textprop.c: Adjust users.
8433
8434 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8435
8436 Inline functions to examine and change string intervals.
8437 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
8438 (string_get_intervals, string_set_intervals): New function.
8439 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
8440 * lread.c, print.c, textprop.c: Adjust users.
8441
8442 2012-08-08 Glenn Morris <rgm@gnu.org>
8443
8444 * lisp.mk (lisp): Remove language/persian.elc.
8445
8446 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8447
8448 Cleanup intervals.
8449 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
8450 (NULL_INTERVAL_P): Likewise. Adjust users.
8451 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
8452 Adjust comment. Move under #if 0.
8453 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
8454 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
8455
8456 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
8457
8458 Check total length of intervals with eassert.
8459 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
8460 * intervals.c: Change all users to eassert.
8461
8462 2012-08-07 Eli Zaretskii <eliz@gnu.org>
8463
8464 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
8465 Rename fields to match removal of FGET and WGET and disuse of
8466 INTERNAL_FIELD in Lisp_Cons.
8467
8468 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8469
8470 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
8471 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
8472 name since all xname users are fixed long time ago. Do not
8473 use INTERNAL_FIELD.
8474 (set_symbol_name, set_symbol_function, set_symbol_plist):
8475 (set_symbol_next, set_overlay_plist): New function.
8476 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
8477 (struct Lisp_Overlay): Likewise.
8478 (CVAR, MVAR, SVAR): Remove.
8479 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
8480 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
8481 * xterm.c: Adjust users.
8482 * .gdbinit: Change to use name field of struct Lisp_Symbol
8483 where appropriate.
8484
8485 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8486
8487 Basic functions to set Lisp_Object and pointer slots of intervals.
8488 * intervals.h (interval_set_parent, interval_set_object):
8489 (interval_set_left, interval_set_right, interval_set_plist):
8490 (interval_copy_parent): New function.
8491 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
8492 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
8493 Adjust indentation.
8494 (INTERVAL_SIZE): Remove. Adjust users.
8495 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
8496
8497 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8498
8499 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
8500 * process.h (PGET): Remove.
8501 (struct Lisp_Process): Do not use INTERNAL_FIELD.
8502 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8503
8504 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8505
8506 Drop WGET and revert read access to Lisp_Objects slots of struct window.
8507 * window.h (WGET): Remove.
8508 (struct window): Do not use INTERNAL_FIELD.
8509 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8510 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8511 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8512 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8513 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8514 Adjust users.
8515
8516 2012-08-07 Chong Yidong <cyd@gnu.org>
8517
8518 * window.c (Fwindow_edges, Fwindow_pixel_edges)
8519 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
8520 (Fdelete_window_internal): Signal an error if the window is not on
8521 a live frame (Bug#12025).
8522
8523 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8524
8525 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
8526 * frame.h (FGET): Remove.
8527 (struct frame): Do not use INTERNAL_FIELD.
8528 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8529 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8530 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8531 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8532
8533 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
8534
8535 * w32.c: Silence compiler warnings.
8536 (map_w32_filename): Remove unused variable `is_fat'.
8537 (chase_symlinks): Add parentheses around expression.
8538
8539 2012-08-06 Glenn Morris <rgm@gnu.org>
8540
8541 * sysdep.c: Respect BROKEN_GETWD.
8542
8543 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
8544 Let configure handle it.
8545 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
8546
8547 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8548
8549 Use GCALIGNMENT where appropriate.
8550 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
8551 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
8552 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
8553
8554 2012-08-06 Eli Zaretskii <eliz@gnu.org>
8555
8556 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
8557 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
8558
8559 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8560
8561 * buffer.h (struct buffer): Revert `indirections' to a simple int;
8562 that should be sufficient for everyone.
8563
8564 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8565
8566 * keyboard.c (timer_check_2): Add break so timer_check returns next
8567 timeout.
8568
8569 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8570
8571 Fix Windows build errors introduced after converting to WGET and WSET.
8572 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
8573 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8574
8575 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8576
8577 * nsterm.m (ns_frame_rehighlight): Use FSET.
8578
8579 * nsmenu.m (ns_update_menubar): Use FSET.
8580
8581 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8582
8583 Separate read and write access to Lisp_Object slots of Lisp_Process.
8584 * process.h (PGET, PSET): New macros similar to AREF and ASET.
8585 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8586
8587 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8588
8589 Separate read and write access to Lisp_Object slots of struct window.
8590 * window.h (WGET, WSET): New macros similar to AREF and ASET.
8591 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8592 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8593 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8594 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8595 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8596 Adjust users.
8597
8598 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8599
8600 Fix Windows build errors introduced after converting to FGET and FSET.
8601 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
8602 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
8603 (w32_judge_scroll_bars): Change to use FSET.
8604 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8605
8606 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8607
8608 Fix replacement typo.
8609 * window.c (replace_window): Set root_window instead of
8610 selected_window. This fixes a total window subsystem
8611 malfunction reported by Bastien Guerry <bzg@gnu.org>.
8612
8613 2012-08-06 Glenn Morris <rgm@gnu.org>
8614
8615 * lisp.mk (lisp): Add language/persian.elc.
8616
8617 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8618
8619 Separate read and write access to Lisp_Object slots of struct frame.
8620 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
8621 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8622 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8623 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8624 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8625
8626 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
8627
8628 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
8629
8630 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8631
8632 Generalize common compile-time constants.
8633 * lisp.h (header_size, bool_header_size, word_size): Now here.
8634 (struct Lisp_Vector): Add comment.
8635 (struct Lisp_Bool_Vector): Move up to define handy constants.
8636 (VECSIZE, PSEUDOVECSIZE): Simplify.
8637 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
8638 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
8639 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
8640 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
8641 * xfont.c, xmenu.c: Use word_size where appropriate.
8642
8643 2012-08-05 Lawrence Mitchell <wence@gmx.li>
8644
8645 * search.c (Freplace_match): Treat \? in the replacement text
8646 literally (Bug#8161).
8647
8648 2012-08-05 Chong Yidong <cyd@gnu.org>
8649
8650 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
8651 * frame.c (Vdelete_frame_functions):
8652 * emacs.c (Vkill_emacs_hook): Doc fix.
8653
8654 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8655
8656 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
8657 --with-x-toolkit=no builds.
8658 Reported by Carsten Mattner <carstenmattner@gmail.com>.
8659
8660 2012-08-04 Chong Yidong <cyd@gnu.org>
8661
8662 * syntax.c (Fmodify_syntax_entry): Doc fix.
8663
8664 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8665
8666 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
8667 * w32.c (init_environment): Change the default values of many
8668 environment variables in dflt_envvars[] to NULL, to avoid pushing
8669 them into environment when they were not already defined.
8670 Remove the code that deletes site-lisp subdirectories from the default
8671 value of EMACSLOADPATH, as it is no longer needed.
8672 (check_windows_init_file): Now external, not static.
8673 Use Vload_path as is, without adding anything, as this function is now
8674 called when Vload_path is already set up.
8675
8676 * w32.h (check_windows_init_file): Add prototype.
8677
8678 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
8679 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
8680 compatibility with Posix platforms.
8681 (main): Move the call to check_windows_init_file to here from
8682 w32.c.
8683 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
8684 any, in the DEFALT argument into the root of the Emacs build or
8685 installation tree, as appropriate.
8686
8687 * callproc.c (init_callproc_1): Call decode_env_path instead of
8688 doing its equivalent by hand.
8689 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
8690 the code that sets Vexec_path run on MS-Windows.
8691
8692 * lread.c (init_lread): Add comments to #ifdef's.
8693
8694 * msdos.c (dos_set_window_size, IT_update_begin)
8695 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
8696 instead of direct references.
8697
8698 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
8699
8700 Export DEFAULT_REHASH_* to GDB.
8701 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
8702 Now constants, not macros.
8703
8704 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
8705
8706 Remove unnecessary casts involving pointers.
8707 These casts are no longer needed now that we assume C89 or later,
8708 since they involve casting to or from void *.
8709 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
8710 (make_pure_float, make_pure_vector):
8711 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
8712 * macros.c (Fstart_kbd_macro):
8713 * menu.c (find_and_return_menu_selection):
8714 * minibuf.c (read_minibuf_noninteractive):
8715 * sysdep.c (closedir):
8716 * xdisp.c (x_produce_glyphs):
8717 * xfaces.c (compare_fonts_by_sort_order):
8718 * xfns.c (x_real_positions, select_visual):
8719 * xselect.c (x_stop_queuing_selection_requests)
8720 (x_get_window_property, x_get_window_property_as_lisp_data):
8721 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
8722 Remove unnecessary pointer casts.
8723 * alloc.c (record_xmalloc): New function.
8724 * lisp.h (record_xmalloc): New decl.
8725 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
8726 more like a function. This is because the pointer cast is not
8727 needed. All uses changed.
8728 * print.c (print_string, print_error_message): Avoid length recalc.
8729
8730 Improve fix for macroexp crash with debugging (Bug#12118).
8731 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
8732 ARRAY_MARK_FLAG when checking subscripts, because ASET is
8733 not supposed to be invoked from the garbage collector.
8734 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
8735 (gc_aset): New function, which is like ASET but can be
8736 used in the garbage collector.
8737 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8738 (set_hash_index): Use it instead of ASET.
8739
8740 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8741
8742 Support symlinks on latest versions of MS-Windows.
8743 * w32.c: Include winioctl.h and aclapi.h.
8744 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
8745 (revert_to_self): Forward declarations of static functions.
8746 <static BOOL g_b_init_get_security_info>:
8747 <g_b_init_create_symbolic_link>: New static flags.
8748 (globals_of_w32): Initialize them to zero.
8749 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
8750 (map_w32_filename): Improve commentary. Simplify switch.
8751 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
8752 headers (most versions of MinGW w32api don't).
8753 (get_security_info, create_symbolic_link)
8754 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
8755 New functions.
8756 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
8757 in the argument file name.
8758 (sys_access): Call unc_volume_file_attributes only if
8759 GetFileAttributes fails with network-related error codes.
8760 (sys_rename): Diagnose renaming of a symlink when the user doesn't
8761 have the required privileges.
8762 (get_file_security_desc_by_name): Rename from
8763 get_file_security_desc.
8764 (stat_worker): New function, with most of the guts of 'stat', and
8765 with addition of handling of symlinks and support for 'lstat'.
8766 If possible, get file's attributes and security information by
8767 handle, not by name. Produce S_IFLNK bit for symlinks, when
8768 called from 'lstat'.
8769 (stat, lstat): New functions, call 'stat_worker'.
8770 (symlink, readlink, careadlinkat): Rewritten to create and resolve
8771 symlinks when the underlying filesystem supports them.
8772
8773 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8774
8775 Fix macroexp crash on Windows with debugging (Bug#12118).
8776 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
8777 checking subscripts; problem introduced with the recent
8778 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
8779 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
8780 since it's used in non-static inline functions now.
8781
8782 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
8783 Don't assume buffer size fits in 'int'. Remove unused local.
8784
8785 Use C99-style 'extern inline' if available.
8786 * buffer.h (BUFFER_INLINE):
8787 * category.h (CATEGORY_INLINE):
8788 * character.h (CHARACTER_INLINE):
8789 * charset.h (CHARSET_INLINE):
8790 * composite.h (COMPOSITE_INLINE):
8791 * dispextern.h (DISPEXTERN_INLINE):
8792 * lisp.h (LISP_INLINE):
8793 * systime.h (SYSTIME_INLINE):
8794 New macro, replacing 'static inline' in this header.
8795 * buffer.h, category.h, character.h, charset.h, composite.h:
8796 * dispextern.h, lisp.h, systime.h:
8797 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8798 * alloc.c (LISP_INLINE):
8799 * buffer.c (BUFFER_INLINE):
8800 * category.c (CATEGORY_INLINE):
8801 * character.c (CHARACTER_INLINE):
8802 * charset.c (CHARSET_INLINE):
8803 * composite.c (COMPOSITE_INLINE):
8804 * dispnew.c (DISPEXTERN_INLINE):
8805 * sysdep.c (SYSTIME_INLINE):
8806 Define to EXTERN_INLINE, so that the corresponding functions
8807 are compiled into code.
8808 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
8809 (INLINE_HEADER_END): New macros.
8810 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
8811 since it's used in non-static inline functions now.
8812 (VALMASK) [!USE_LSB_TAG]: Likewise.
8813
8814 2012-08-02 Glenn Morris <rgm@gnu.org>
8815
8816 * s/: Remove empty directory.
8817
8818 * s/ms-w32.h: Move to ../nt/inc.
8819 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
8820 Update for new ms-w32.h location.
8821
8822 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8823
8824 Port to Solaris 8.
8825 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
8826
8827 2012-08-02 Glenn Morris <rgm@gnu.org>
8828
8829 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
8830 hard-coding the path separator.
8831
8832 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8833
8834 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
8835 This how ASET and AREF are supposed to work, and makes
8836 it easier to think about future improvements. See
8837 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
8838 * charset.h (set_charset_attr): New function.
8839 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
8840 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
8841 (aref_addr): New function. All uses of &AREF(...) changed.
8842 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8843 (set_hash_index): New functions. All lvalue-style uses of
8844 HASH_KEY etc. changed.
8845 * keyboard.c (set_prop): New function. All lvalue-style uses
8846 of PROP changed.
8847
8848 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
8849
8850 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
8851 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
8852 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
8853 * nsfns.m (ns_set_name_as_filename): Likewise.
8854 * nsmenu.m (ns_update_menubar): Likewise.
8855 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
8856
8857 2012-08-01 Eli Zaretskii <eliz@gnu.org>
8858
8859 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
8860 Adapt to latest changes in field names of the corresponding Lisp
8861 objects.
8862
8863 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
8864
8865 2012-08-01 Glenn Morris <rgm@gnu.org>
8866
8867 * s/msdos.h: Remove file.
8868 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
8869 * Makefile.in (S_FILE): Remove.
8870 (config_h): Remove S_FILE.
8871
8872 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8873
8874 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
8875 Remove; moved to nt/config.nt.
8876
8877 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8878
8879 Use INTERNAL_FIELD for conses and overlays.
8880 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
8881 Remove obsolete comment.
8882 (MVAR): New macro.
8883 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8884 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
8885
8886 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8887
8888 Use INTERNAL_FIELD for symbols.
8889 * lisp.h (SVAR): New macro. Adjust users.
8890 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
8891 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
8892
8893 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8894
8895 Use INTERNAL_FIELD for processes.
8896 * process.h (PVAR): New macro. Adjust style.
8897 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
8898 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
8899
8900 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8901
8902 Use INTERNAL_FIELD for windows.
8903 * window.h (WVAR): New macro.
8904 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8905 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8906 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8907 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8908 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8909 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8910
8911 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8912
8913 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8914
8915 2012-08-01 Glenn Morris <rgm@gnu.org>
8916
8917 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8918 Move to configure.ac.
8919
8920 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8921
8922 * makefile.w32-in (CONFIG_H): Update dependencies.
8923 (CONF_POST_H): New macro.
8924
8925 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8926
8927 2012-07-31 Glenn Morris <rgm@gnu.org>
8928
8929 * Makefile.in (S_FILE): No longer set by configure.
8930
8931 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8932 is available.
8933 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8934
8935 * process.h (NULL_DEVICE):
8936 * emacs.c (SEPCHAR):
8937 * editfns.c (USER_FULL_NAME): Let configure set them.
8938
8939 * s/README, s/template.h: Remove files.
8940
8941 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8942
8943 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8944 Move to configure.ac.
8945
8946 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8947
8948 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8949 resulting renaming of 'struct frame' members.
8950
8951 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8952
8953 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8954 after introduction of FVAR.
8955
8956 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8957
8958 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8959
8960 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8961 instead of compositeToPoint.
8962 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8963
8964 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8965
8966 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8967
8968 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8969 * lisp.h (INTERNAL_FIELD): New macro.
8970 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8971 (BVAR): Change to use INTERNAL_FIELD.
8972 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8973 (KVAR): Change to use INTERNAL_FIELD.
8974 * frame.h (FVAR): New macro.
8975 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8976 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8977 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8978 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8979 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8980
8981 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8982
8983 Miscellaneous fixes for non-default X toolkits.
8984 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8985 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8986 Move under #ifdef USE_LUCID.
8987 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8988 definition and usage to avoid warnings.
8989
8990 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8991
8992 * nsterm.m (openFiles): Fix previous checkin.
8993
8994 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8995
8996 * indent.c (compute_motion): Remove unused local.
8997
8998 2012-07-31 Glenn Morris <rgm@gnu.org>
8999
9000 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
9001
9002 * conf_post.h [USG5_4]:
9003 Move remaining contents of s/usg5-4-common.h here.
9004 * s/usg5-4-common.h: Remove file.
9005
9006 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
9007 * s/irix6-5.h: Remove file.
9008
9009 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
9010 * s/darwin.h: Remove file.
9011
9012 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
9013 * s/hpux10-20.h: Remove file, which is now empty.
9014
9015 2012-07-30 Glenn Morris <rgm@gnu.org>
9016
9017 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
9018 * Makefile.in (config_h): Add conf_post.h.
9019 * makefile.w32-in (CONFIG_H): Add conf_post.h.
9020
9021 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
9022
9023 * nsterm.m (ns_do_open_file): New variable.
9024 (ns_term_init): Set ns_do_open_file to YES after run returns.
9025 (openFile, openTempFile, openFileWithoutUI, openFiles):
9026 Open files only if ns_do_open_file.
9027
9028 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9029
9030 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
9031 This no-op macro hasn't been needed for many years.
9032 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
9033
9034 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
9035 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
9036 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
9037 gdb_make_enums_visible.
9038 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
9039 (DIRECTORY_SEP): Now a constant, not a macro.
9040
9041 2012-07-30 Eli Zaretskii <eliz@gnu.org>
9042
9043 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
9044 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
9045
9046 * w32term.c <w32_keyboard_codepage>: Renamed from
9047 keyboard_codepage and now external. All users changed.
9048
9049 * w32term.h: Add declaration of w32_keyboard_codepage.
9050
9051 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
9052 the codepage to translate keys to Unicode. If this argument is
9053 -1, use the value returned by GetConsoleCP. All callers changed.
9054
9055 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9056
9057 Update .PHONY listings in makefiles.
9058 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
9059 bootstrap-clean, distclean, maintainer-clean, versioclean,
9060 extraclean, frc.
9061
9062 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
9063 This is a bit clearer. Fix some commentary typos.
9064
9065 2012-07-30 Glenn Morris <rgm@gnu.org>
9066
9067 * s/netbsd.h: Let configure include signal.h if needed.
9068 Remove file, which is now empty.
9069
9070 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
9071 Let configure set them.
9072 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
9073 No more need to undefine.
9074
9075 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
9076
9077 * keymap.c (Fkey_description): Don't remove 0x80 bit from
9078 non-single-byte char when adding meta modifier. (Bug#12090)
9079
9080 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
9081
9082 Convert safe_call to use variable number of arguments.
9083 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
9084 (safe_call2): Fix comment.
9085 * lisp.h (safe_call): Adjust prototype.
9086 * coding.c (encode_coding_object): Change to use safe_call2.
9087 * xfaces.c (merge_face_heights): Change to use safe_call1.
9088
9089 2012-07-30 Glenn Morris <rgm@gnu.org>
9090
9091 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
9092 does that unconditionally. Remove file, which is now empty.
9093
9094 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
9095 Remove empty files.
9096
9097 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
9098
9099 Export to GDB most of lisp.h's remaining object-like macros.
9100 * lisp.h (min, max): Move earlier, because they're used earlier now.
9101 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
9102 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
9103 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
9104 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
9105 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
9106 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
9107 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
9108 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
9109 Now constants, for GDB. They need not be macros.
9110 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
9111 Now constants, for GDB, as well as macros, for static initializers.
9112 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
9113 Move to after the definition of struct Lisp_Char_Table,
9114 since the former now needs that type defined.
9115 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
9116 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
9117 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
9118 New enums, for gdb_make_enums_visible.
9119 (GLYPH_MODE_LINE_FACE): Remove; unused.
9120 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
9121 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
9122 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
9123 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
9124 enum maxargs, enum MAX_ALLOCA.
9125 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
9126 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
9127 no longer needed, now that they are done in lisp.h.
9128
9129 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
9130
9131 Cleanup string bytes checking.
9132 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
9133 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
9134 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
9135 (check_sblock, compact_small_strings): Simplify.
9136
9137 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9138
9139 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
9140 These macros are confusing and no longer need to be defined, as
9141 the enum values now suffice. All uses replaced with definiens.
9142 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
9143
9144 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
9145
9146 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
9147 ($(BLD)/w32console.$(O)): Update dependencies.
9148
9149 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9150
9151 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
9152 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
9153 time. Adjust users.
9154 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
9155
9156 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
9157
9158 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
9159 setting sitelisp (Bug#12010).
9160
9161 2012-07-29 Eli Zaretskii <eliz@gnu.org>
9162
9163 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
9164
9165 * w32heap.c (cache_system_info):
9166 * w32.c (sys_rename):
9167 * w32proc.c (find_child_console, sys_kill): All users changed.
9168
9169 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9170
9171 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
9172
9173 2012-07-29 Eli Zaretskii <eliz@gnu.org>
9174
9175 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
9176
9177 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9178
9179 Cleanup statistics calculation in Fgarbage_collect.
9180 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
9181 Fix zombies percentage calculation. Simplify elapsed time calculation.
9182
9183 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
9184
9185 Generalize marker debugging code under MARKER_DEBUG and use eassert.
9186 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
9187 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
9188 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
9189 (replace_range, replace_range_2, del_range_2): Change to eassert.
9190 * marker.c (byte_char_debug_check): Adjust style.
9191
9192 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
9193
9194 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
9195 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
9196 long-ago-commented-out code that talks about "WIN32".
9197 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
9198 All uses changed.
9199
9200 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
9201
9202 Use Gnulib stdalign module (Bug#9772, Bug#9960).
9203 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
9204 Simplify by using alignof.
9205 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
9206 * lisp.h: Include <stdalign.h>.
9207 (GCALIGNMENT): New macro and constant.
9208 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
9209 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
9210 (stdalign): New macro, if not already defined.
9211
9212 2012-07-28 Eli Zaretskii <eliz@gnu.org>
9213
9214 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
9215 * w32inevt.c: Include w32inevt.h.
9216 (w32_read_console_input): New inline function, calls either
9217 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
9218 w32_console_unicode_input.
9219 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
9220 (w32_kbd_patch_key, key_event): Use the codepage returned by
9221 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
9222 (key_event): use uChar.UnicodeChar only if
9223 w32_console_unicode_input is non-zero.
9224
9225 * w32console.c: Include w32heap.h.
9226 <w32_console_unicode_input>: New global variable.
9227 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
9228 family of Windows, zero otherwise.
9229
9230 * w32inevt.h: Declare w32_console_unicode_input.
9231
9232 * xdisp.c (init_iterator): Don't reference tip_frame in a build
9233 --without-x. (Bug#11742)
9234
9235 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
9236
9237 Adjust GDB to reflect pvec_type changes (Bug#12036).
9238 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
9239 2012-07-04 changes to pseudovector representation.
9240 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
9241
9242 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
9243
9244 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
9245 bus address.
9246 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
9247
9248 2012-07-27 Eli Zaretskii <eliz@gnu.org>
9249
9250 * alloc.c (listn): Fix the order the arguments are consed onto the
9251 list.
9252
9253 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
9254 enumeration constants, as PURE and HEAP are too general, and clash
9255 with other headers and sources, such as gmalloc.c and the
9256 MS-Windows system headers. All users changed.
9257
9258 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9259
9260 Revert last save_excursion_save and save_excursion_restore changes.
9261 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
9262 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
9263
9264 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9265
9266 Fix recently-introduced typos in Windows port.
9267 Reported by Martin Rudalics <rudalics@gmx.at>.
9268 * w32.c (init_environment): Replace comma with semicolon.
9269 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
9270
9271 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
9272
9273 Improve GDB symbol export (Bug#12036).
9274 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
9275 arms of an 'if', not using conditional expressions; otherwise GDB
9276 complains about the types in the unevaluated arm when the argument
9277 is an integer literal.
9278 (xgetint): Simplify expression.
9279 * alloc.c (gdb_make_enums_visible): New constant. This ports to
9280 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
9281 Zaretskii in <http://bugs.gnu.org/12036#13>.
9282 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
9283 needed now that we have gdb_make_enums_visible.
9284 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
9285 (enum enum_USE_LSB_TAG):
9286 New enum types, packaging up enums that need to be exported to GDB.
9287
9288 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9289
9290 Utility function to make a list from specified amount of objects.
9291 * lisp.h (enum constype): New datatype.
9292 (listn): New prototype.
9293 * alloc.c (listn): New function.
9294 (Fmemory_use_count, syms_of_alloc): Use it.
9295 * buffer.c (syms_of_buffer): Likewise.
9296 * callint.c (syms_of_callint): Likewise.
9297 * charset.c (define_charset_internal): Likewise.
9298 * coding.c (syms_of_coding): Likewise.
9299 * keymap.c (syms_of_keymap): Likewise.
9300 * search.c (syms_of_search): Likewise.
9301 * syntax.c (syms_of_syntax): Likewise.
9302 * w32.c (init_environment): Likewise.
9303 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
9304 * xdisp.c (syms_of_xdisp): Likewise.
9305 * xfns.c (syms_of_xfns): Likewise.
9306
9307 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
9308
9309 Fast save_excursion_save and save_excursion_restore.
9310 * lisp.h (struct Lisp_Excursion): New data type.
9311 (PVEC_EXCURSION): New pseudovector type.
9312 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
9313 to deal with it. Adjust comments.
9314 (init_marker, attach_marker): New prototype.
9315 (unchain_marker): Adjust prototype.
9316 * marker.c (attach_marker): Change to global.
9317 (init_marker): New function.
9318 * alloc.c (Fmake_marker, build_marker): Use it.
9319 (build_marker): More easserts.
9320 (mark_object): Handle struct Lisp_Excursion.
9321 * editfns.c (save_excursion_save, save_excursion_restore):
9322 Reimplement to use struct Lisp_Excursion. Add comments.
9323
9324 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
9325
9326 Fix export of symbols to GDB (Bug#12036).
9327 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
9328 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
9329 emacs.c, as this is a more-suitable home. Had this been done earlier
9330 the fix for 12036 would have avoided some of the problems noted in
9331 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
9332 would have been more obvious.
9333 * emacs.c: Do not include <verify.h>; no longer needed.
9334 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
9335 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
9336 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
9337 Remove; now done in lisp.h.
9338 * lisp.h (PUBLISH_TO_GDB): New macro.
9339 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
9340 (DATA_SEG_BITS): Use it.
9341 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
9342 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
9343 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
9344 not be usable in #if. This simplifies things.
9345
9346 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
9347
9348 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
9349
9350 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
9351
9352 Simplify export of symbols to GDB (Bug#12036).
9353 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
9354 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
9355 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
9356 Adjust to changes in lisp.h and emacs.c, by using
9357 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
9358 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
9359 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
9360 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
9361 instead of gdb_valbits.
9362 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
9363 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
9364 instead of gdb_array_mark_flag.
9365 (xboolvector): Get size from $->size, not $->header.size.
9366 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
9367 (xreload, hook-run, hookpost-run): Remove.
9368 * emacs.c: Include <verify.h>.
9369 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
9370 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
9371 Remove.
9372 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
9373 (gdb_USE_LSB_TAG): New enum constants.
9374 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
9375 Also define these as enum constants, so they're visible to GDB.
9376 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
9377 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
9378 as constants, so they're visible to GDB.
9379 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
9380 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
9381 Now enum constants, not macros, so they're visible to GDB.
9382 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
9383 more convenient now. All uses changed.
9384 (VALMASK) [USE_LSB_TAG]: Also define in this case.
9385 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
9386
9387 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
9388
9389 Explicitly free restriction data that are not needed anymore.
9390 * editfns.c (save_restriction_restore): Free restriction data.
9391
9392 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
9393
9394 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
9395 add argument, tune behavior, and adjust all callers.
9396
9397 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
9398
9399 Use typedef for EMACS_INT, EMACS_UINT.
9400 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
9401 than macros. This simplifies debugging in the usual case, since
9402 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
9403 and it allows expressions involving EMACS_INT casts.
9404 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
9405
9406 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
9407
9408 * nsterm.m (ns_read_socket): Return early if there is a modal
9409 window (Bug#12043).
9410
9411 2012-07-25 Martin Rudalics <rudalics@gmx.at>
9412
9413 * frame.c (Fredirect_frame_focus): In doc-string don't mention
9414 that FOCUS-FRAME can be omitted.
9415
9416 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
9417
9418 Adjust buffer text indirection counters at the end of Fkill_buffer.
9419 * buffer.c (Fkill_buffer): Adjust indirection counters when the
9420 buffer is definitely dead. This should really fix an issue reported
9421 by Christoph Scholtes again. (Bug#12007).
9422 (init_buffer_once): Initialize indirection counters of
9423 buffer_defaults and buffer_local_symbols (for sanity and safety).
9424
9425 2012-07-24 Eli Zaretskii <eliz@gnu.org>
9426
9427 * xdisp.c (init_iterator): Don't compute dimensions of truncation
9428 and continuation glyphs on tooltip frames, leave them at zero.
9429 Avoids continued lines in tooltips. (Bug#11832)
9430
9431 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
9432
9433 Simplify copy_overlay.
9434 * buffer.c (copy_overlay): Simplify. Use build_marker.
9435 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
9436
9437 2012-07-23 Eli Zaretskii <eliz@gnu.org>
9438
9439 * print.c (print_object): Don't crash when a frame's name is nil
9440 or invalid. (Bug#12025)
9441
9442 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
9443 it signals an error when a tooltip frame is being created.
9444
9445 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
9446
9447 Cleanup miscellaneous objects allocation and initialization.
9448 * alloc.c (allocate_misc): Change to static. Add argument to
9449 specify the subtype. Adjust comment and users.
9450 (build_overlay): New function.
9451 * buffer.c (copy_overlays, Fmake_overlay): Use it.
9452 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
9453 (allocate_misc): Remove prototype.
9454 (build_overlay): Add prototype.
9455
9456 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
9457
9458 Swap buffer text indirection counters in Fbuffer_swap_text.
9459 * buffer.c (Fbuffer_swap_text): Swap indirections too.
9460 This avoids crash reported by Christoph Scholtes at
9461 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
9462
9463 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
9464
9465 * nsmenu.m (Popdown_data): New struct.
9466 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
9467 free Popdown_data.
9468 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
9469 (initWithContentRect): Make imgView and contentView non-static
9470 and autorelease them. Also autorelease img and matrix (Bug#12005).
9471 (dealloc): Remove (Bug#12005).
9472
9473 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
9474
9475 Adjust consing_since_gc when objects are explicitly freed.
9476 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
9477 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
9478 (free_cons, free_misc): Subtract object size from consing_since_gc.
9479
9480 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
9481
9482 Simplify and cleanup markers positioning code.
9483 * marker.c (attach_marker): More useful eassert.
9484 (live_buffer, set_marker_internal): New function.
9485 (Fset_marker, set_marker_restricted): Use set_marker_internal.
9486 (set_marker_both, set_marker_restricted_both): Use live_buffer.
9487
9488 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
9489
9490 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
9491 as it's limited by the amount of memory, not by INT_MAX.
9492
9493 2012-07-21 Eli Zaretskii <eliz@gnu.org>
9494
9495 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
9496 in special-event-map. See the discussion at
9497 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
9498 for the reasons.
9499
9500 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
9501 info.dwItemData. Fixes crashes on 64-bit Windows.
9502 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
9503
9504 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
9505
9506 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
9507 (conversationIdentifier): Return value is NSInteger.
9508 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
9509
9510 2012-07-21 Chong Yidong <cyd@gnu.org>
9511
9512 * window.c (decode_any_window): Signal an error if the window is
9513 on a dead frame (Bug#11984).
9514
9515 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9516
9517 Add indirection counting to speed up Fkill_buffer.
9518 * buffer.h (struct buffer): New member.
9519 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
9520 (Fmake_indirect_buffer): Set indirection counter to -1, increment
9521 base buffer indirection counter.
9522 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
9523 (Fkill_buffer): Adjust indirection counters as needed, don't walk
9524 through buffer list if indirection counter is 0.
9525
9526 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9527
9528 Extend the value returned by Fgarbage_collect with heap statistics.
9529 * alloc.c (Qheap): New symbol.
9530 (syms_of_alloc): DEFSYM it.
9531 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
9532 (Fmemory_free): Remove.
9533 (syms_of_alloc): Don't defsubr it.
9534 * buffer.c (Fcompact_buffer): Remove.
9535 (syms_of_buffer): Don't defsubr it.
9536
9537 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9538
9539 Make maybe_gc inline.
9540 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
9541 * lisp.h (consing_since_gc, gc_relative_threshold)
9542 (memory_full_cons_threshold): Revert declaration.
9543 (maybe_gc): Remove prototype, define as inline.
9544 * alloc.c: Remove old commented-out code.
9545 (consing_since_gc, gc_relative_threshold)
9546 (memory_full_cons_threshold): Revert to global.
9547 (maybe_gc): Remove.
9548
9549 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9550
9551 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
9552 * lisp.h (build_unibyte_string): New function.
9553 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
9554 * sysdep.c, w32fns.c, xfns.c: Use it.
9555 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
9556 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
9557 Adjust users accordingly.
9558 * font.h (font_open_by_name): Adjust prototype.
9559
9560 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9561
9562 Cleanup calls to Fgarbage_collect.
9563 * lisp.h (maybe_gc): New prototype.
9564 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9565 Remove declarations.
9566 * alloc.c (maybe_gc): New function.
9567 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9568 Make them static.
9569 * bytecode.c (MAYBE_GC): Use maybe_gc.
9570 * eval.c (eval_sub, Ffuncall): Likewise.
9571 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
9572 to avoid dependency from auto-save feature.
9573
9574 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
9575
9576 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
9577 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
9578 'for_each_per_buffer_object_at'.
9579 All uses changed. It's better to use upper-case for macros that
9580 cannot be implemented as functions, to give the reader a clue
9581 that they're special.
9582
9583 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9584
9585 * alloc.c (Fgarbage_collect): Tweak docstring.
9586
9587 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9588
9589 Tweak the value returned from Fgarbage_collect again.
9590 * alloc.c (Fgarbage_collect): New return value, as confirmed in
9591 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
9592 Adjust documentation.
9593 (total_vector_bytes): Rename to total_vector_slots, adjust
9594 accounting.
9595 (total_free_vector_bytes): Rename to total_free_vector_slots,
9596 adjust accounting.
9597 (Qstring_bytes, Qvector_slots): New symbols.
9598 (syms_of_alloc): DEFSYM them.
9599
9600 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9601
9602 Buffer compaction primitive which may be used from Lisp.
9603 * buffer.c (compact_buffer, Fcompact_buffer): New function.
9604 (syms_of_buffer): Register Fcompact_buffer.
9605 * alloc.c (Fgarbage_collect): Use compact_buffer.
9606 * buffer.h (compact_buffer): New prototype.
9607 (struct buffer_text): New member.
9608
9609 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9610
9611 New macro to iterate over all buffers, miscellaneous cleanups.
9612 * lisp.h (all_buffers): Remove declaration.
9613 * buffer.h (all_buffers): Add declaration, with comment.
9614 (for_each_buffer): New macro.
9615 * alloc.c (Fgarbage_collect, mark_object): Use it.
9616 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
9617 (init_buffer): Likewise.
9618 * data.c (Fset_default): Likewise.
9619 * coding.c (code_conversion_restore): Remove redundant check
9620 for dead buffer.
9621 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
9622
9623 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9624
9625 Fix bug that created negative-length intervals.
9626 * intervals.c (merge_interval_right, merge_interval_left):
9627 Do not zero out this interval if it is absorbed by its children,
9628 as this interval's total length doesn't change in that case. See
9629 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
9630
9631 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
9632
9633 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
9634 when invoking (make-bool-vector N t) and N is a positive
9635 multiple of 8 -- the last 8 bits were mistakenly cleared.
9636
9637 Remove some struct layout assumptions in bool vectors.
9638 * alloc.c (bool_header_size): New constant.
9639 (header_size, word_size): Move earlier, as they're now used earlier.
9640 Use 'word_size' in a few more places, where it's appropriate.
9641 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
9642 padding before the data member of a bool vector.
9643 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
9644 than doing the check by hand with an abort ().
9645
9646 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9647
9648 * eval.c (Fdefvar): Don't check constants since we only set the var if
9649 it's not yet defined anyway (bug#11904).
9650
9651 * lisp.h (last_undo_boundary): Declare new var.
9652 * keyboard.c (command_loop_1): Set it.
9653 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
9654 were auto-added by the command loop (bug#11774).
9655
9656 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9657
9658 * w32font.c (Qsymbol): Remove local definition.
9659 (syms_of_w32font): Don't DEFSYM it.
9660
9661 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9662
9663 Fix sweep_vectors to handle large bool vectors correctly.
9664 * alloc.c (sweep_vectors): Account total_vector_bytes for
9665 bool vectors larger than VBLOCK_BYTES_MAX.
9666
9667 2012-07-18 Chong Yidong <cyd@gnu.org>
9668
9669 * frame.c (x_set_frame_parameters): Revert bogus change introduced
9670 in 2012-05-25 commit by Paul Eggert (Bug#11738).
9671
9672 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9673
9674 Return more descriptive data from Fgarbage_collect.
9675 Suggested by Stefan Monnier in
9676 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
9677 * alloc.c (bounded_number): New function.
9678 (total_buffers, total_vectors): New variable.
9679 (total_string_size): Rename to total_string_bytes, adjust users.
9680 (total_vector_size): Rename to total_vector_bytes, adjust users.
9681 (sweep_vectors): Account total_vectors and total_vector_bytes.
9682 (Fgarbage_collect): New return value. Adjust documentation.
9683 (gc_sweep): Account total_buffers.
9684 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
9685 (VECTOR_SIZE): Remove.
9686 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
9687 (Qinterval, Qmisc): New symbols.
9688 (syms_of_data): Initialize them.
9689 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
9690 (Qcons, Qbuffer): New declarations.
9691
9692 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9693
9694 * alloc.c (Fmemory_free): Account for memory-free's own storage.
9695 Round up, not down. Improve doc.
9696
9697 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9698
9699 Restore old code in allocate_string_data to avoid Faset breakage.
9700 Reported by Julien Danjou <julien@danjou.info> in
9701 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
9702 * alloc.c (allocate_string_data): Restore old code with minor
9703 adjustments, fix comment to explain this subtle issue.
9704
9705 2012-07-17 Eli Zaretskii <eliz@gnu.org>
9706
9707 Remove FILE_SYSTEM_CASE.
9708 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
9709
9710 * fileio.c (FILE_SYSTEM_CASE): Don't define.
9711 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
9712 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
9713 call-process-region passes it through expand-file-name.
9714
9715 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
9716
9717 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9718
9719 Fix crash when creating indirect buffer (Bug#11917)
9720 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
9721 Don't handle unbound variables specially if non-zero.
9722 (Fbuffer_local_variables): Pass zero.
9723 (clone_per_buffer_values): Pass non-zero.
9724
9725 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9726
9727 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
9728 to make the loop interruptible.
9729
9730 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9731
9732 * gnutls.c (emacs_gnutls_handshake): Only retry if
9733 GNUTLS_E_INTERRUPTED.
9734
9735 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9736
9737 Cleanup and convert miscellaneous checks to eassert.
9738 * alloc.c (mark_interval): Fix comment, partially rephrase
9739 old comment from intervals.h (see below).
9740 * intervals.c (find_interval, adjust_intervals_for_insertion)
9741 (delete_interval, adjust_intervals_for_deletion)
9742 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
9743 Convert to eassert.
9744 (adjust_intervals_for_insertion, make_new_interval):
9745 Remove obsolete and unused code.
9746 * intervals.h (struct interval): Remove obsolete comment.
9747 * textprotp.c (erase_properties): Remove unused code.
9748 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
9749 (Fremove_list_of_text_properties): Convert to eassert.
9750
9751 2012-07-17 Chong Yidong <cyd@gnu.org>
9752
9753 * editfns.c (Finsert_char): Doc fix.
9754
9755 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9756
9757 Fix previous change to make Fmemory_free always accurate.
9758 * alloc.c (make_interval): Update total_free_intervals.
9759 (make_float): Likewise for total_free_floats.
9760 (free_cons, Fcons): Likewise for total_free_conses.
9761 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
9762 Likewise for total_free_vector_bytes.
9763 (Fmake_symbol): Likewise for total_free_symbols.
9764 (bytes_free): Remove.
9765
9766 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9767
9768 Simple free memory accounting feature.
9769 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
9770 (sweep_vectors): Accumulate size of free vectors.
9771 (Fgarbage_collect): Setup bytes_free.
9772 (Fmemory_free): New function.
9773 (syms_of_alloc): Register it.
9774
9775 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9776
9777 Cleanup overlays checking.
9778 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
9779 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
9780 eassert and OVERLAYP.
9781 (sort_overlays): Change to use OVERLAYP.
9782
9783 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9784
9785 * editfns.c (Finsert_char): Make it interactive, and make the
9786 second arg optional. Copy interactive spec and docstring from
9787 ucs-insert.
9788
9789 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9790
9791 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
9792 Unlike the other wrapped functions, fabs has an unspecified
9793 effect on errno.
9794
9795 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
9796
9797 * nsterm.m (keyDown): Interpret flags without left/right bits
9798 as the left key (Bug#11670).
9799
9800 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9801
9802 Remove empty and useless init functions.
9803 * lisp.h (init_character_once, init_fns, init_image)
9804 (init_filelock, init_sound): Remove prototype.
9805 * character.c (init_character_once): Remove.
9806 * filelock.c (init_filelock): Likewise.
9807 * fns.c (init_fns): Likewise.
9808 * image.c (init_image): Likewise.
9809 * sound.c (init_sound): Likewise.
9810 * emacs.c (main): Adjust accordingly.
9811
9812 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9813
9814 * gtkutil.h: Tiny cleanups.
9815 (use_old_gtk_file_dialog): Remove useless declaration.
9816 (xg_uses_old_file_dialog): Add suggested const attribute.
9817
9818 2012-07-15 Eli Zaretskii <eliz@gnu.org>
9819
9820 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
9821 (bidi_paragraph_init): Use it to limit search forward for a strong
9822 directional character in abnormally large paragraphs full of
9823 neutral or weak characters. (Bug#11943)
9824
9825 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
9826
9827 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
9828 the toolbar (Bug#9451).
9829 (xg_make_tool_item): Give the widget event box a transparent
9830 background.
9831
9832 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9833
9834 Cleanup basic allocation variables and functions.
9835 * alloc.c (ignore_warnings, init_intervals, init_float)
9836 (init_cons, init_symbol, init_marker): Remove.
9837 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
9838 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
9839 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
9840 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
9841 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
9842 (staticidx, init_alloc_once, init_strings, free_ablock):
9843 Remove redundant initialization.
9844 * fns.c (init_weak_hash_tables): Remove.
9845 * lisp.h (init_weak_hash_tables): Remove prototype.
9846
9847 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9848
9849 Use zero_vector where appropriate.
9850 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
9851 accordingly.
9852 * lisp.h (zero_vector): New declaration.
9853 * font.c (null_vector): Remove.
9854 (syms_of_font): Remove initialization and staticpro.
9855 (font_list_entities, font_find_for_lface): Change to use zero_vector.
9856 * keymap.c (Faccessible_keymaps): Likewise.
9857
9858 2012-07-15 Leo Liu <sdl.web@gmail.com>
9859
9860 * fringe.c: Fix typo in comments.
9861
9862 2012-07-14 Leo Liu <sdl.web@gmail.com>
9863
9864 * fringe.c: Add a new bitmap exclamation-mark.
9865
9866 2012-07-14 Eli Zaretskii <eliz@gnu.org>
9867
9868 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
9869
9870 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
9871 (HAVE_MENUS): Don't define, defined by editing config.in with
9872 msdos/sed2v2.inp.
9873 (GMALLOC_INHIBIT_VALLOC): Don't define.
9874 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
9875
9876 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
9877
9878 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
9879
9880 2012-07-14 Glenn Morris <rgm@gnu.org>
9881
9882 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
9883 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
9884 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
9885
9886 2012-07-13 Glenn Morris <rgm@gnu.org>
9887
9888 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9889
9890 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
9891 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
9892
9893 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9894
9895 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
9896 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
9897 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
9898 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
9899 where appropriate.
9900 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
9901 as boolean expression.
9902 (x_set_window_size): Remove unused variable toolbar.
9903 (ns_get_color_default, ns_mod_to_lisp): Remove.
9904 (ns_mouse_position): Remove unused variables xchar and ychar.
9905 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9906 (ns_set_vertical_scroll_bar): Remove unused variable count.
9907 (ns_delete_terminal): Remove unused variable i.
9908 (ns_term_init): Remove unused variables r, g and b.
9909 (mouseDown): Remove unused variable window.
9910 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9911 (initFrameFromEmacs): Remove unused variable vbextra.
9912 (mouseEntered): Remove unused variables p and dpyinfo.
9913 (mouseExited): Remove unused variables p and r.
9914 (ns_define_frame_cursor, ns_clear_frame_area)
9915 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9916 (menuDown): Assign [sender tag] to variable and cast the variable.
9917
9918 * nsterm.h (menuDown): Add id as type to argument sender.
9919 (ns_display_info_for_name): Add Lisp_Object argument.
9920 (ns_term_init): Add Lisp_Object argument.
9921 (ns_map_event_to_object): Add void argument.
9922 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9923 prototype with arguments and only declare if __OBJC__.
9924 (nxatoms_of_nsselect): Add void argument.
9925 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9926 (ns_alloc_autorelease_pool): Add void argument.
9927 (ns_release_autorelease_pool): Add void* argument.
9928 (ns_get_defaults_value): Add const char* argument.
9929
9930 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9931 (initFromContents): Use SSDATA where appropriate.
9932 (ns_update_menubar): Add braces to ambigous if-else.
9933 (initWithTitle): Put () around assignment in if statement.
9934 (ns_menu_show): Remove unused variables window and keymap.
9935 (update_frame_tool_bar): Remove unused variable selected_p.
9936 (initWithContentRect): Remove unused variable this_cmd_name.
9937
9938 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9939 appropriate.
9940 (setXBMColor): Remove unused variable len.
9941 (setPixmapData): Put () around assignment in loop statement.
9942
9943 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9944 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9945 where appropriate.
9946 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9947 around assignment in loop statement.
9948 (nsfont_open): Remove unused variable i.
9949 (nsfont_open): Remove unused variable len.
9950 (nsfont_draw): Remove unused variable cs.
9951
9952 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9953 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9954 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9955 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9956 (Fns_font_name, Fns_perform_service)
9957 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9958 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9959 (ns_set_name): Remove unused variable view.
9960 (x_set_menu_bar_lines): Remove unused variable olines.
9961 (x_set_tool_bar_lines): Remove unused variable root_window.
9962 (Fns_list_colors): Put () around assignment in while statement.
9963 (Fns_perform_service): Remove unused variable len.
9964 (Fns_display_usable_bounds): Remove unused variable top.
9965 (syms_of_nsfns): Remove unused variable i.
9966
9967 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9968 memcpy (Bug#11907).
9969
9970 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9971
9972 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9973 and free it with DestroyExceptionInfo (Bug#11558).
9974
9975 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9976
9977 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9978 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9979 Set here, not in nt/config.nt.
9980
9981 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9982
9983 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9984 cursor overflow into the last glyph on display line when the right
9985 fringe is off. (Bug#11832)
9986
9987 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9988
9989 * xdisp.c (produce_special_glyphs): Now static.
9990 * dispextern.h (produce_special_glyphs): Remove decl.
9991
9992 2012-07-13 Glenn Morris <rgm@gnu.org>
9993
9994 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9995 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9996
9997 * s/usg5-4-common.h (USG, USG5):
9998 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9999 * s/sol2-6.h (SOLARIS2):
10000 * s/irix6-5.h (IRIX6_5):
10001 * s/hpux10-20.h (USG, USG5, HPUX):
10002 * s/gnu-linux.h (USG, GNU_LINUX):
10003 * s/freebsd.h (BSD_SYSTEM):
10004 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
10005 * s/cygwin.h (CYGWIN):
10006 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
10007 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
10008
10009 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
10010
10011 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
10012
10013 2012-07-13 Glenn Morris <rgm@gnu.org>
10014
10015 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
10016
10017 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
10018
10019 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
10020 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
10021
10022 2012-07-12 Glenn Morris <rgm@gnu.org>
10023
10024 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
10025
10026 * process.c (init_process_emacs): Rename from init_process.
10027 The old name is also the name of a Mach system call.
10028 * lisp.h, emacs.c: Update for this name change.
10029 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
10030 longer needed.
10031
10032 2012-07-12 Eli Zaretskii <eliz@gnu.org>
10033
10034 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
10035 memmove call that removes glyphs covered by the left truncation
10036 glyph. Improve commentary.
10037 (display_line): Fix display of continuation glyphs on GUI frames
10038 when the right fringe is turned off and variable-size fonts are
10039 used in the window. Move the code that appends a stretch glyph to
10040 produce_special_glyphs, so that it could be used for truncation
10041 and continuation glyphs alike.
10042 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
10043 glyph of a suitably computed width, to align the special glyphs at
10044 the window margin. Code moved from display_line. (Bug#11832)
10045
10046 2012-07-12 Glenn Morris <rgm@gnu.org>
10047
10048 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
10049
10050 * s/gnu-linux.h, s/hpux10-20.h:
10051 Do not unconditionally define HAVE_XRMSETDATABASE.
10052
10053 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
10054
10055 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
10056
10057 Fix typos that broke OS X build.
10058 Reported by Randal L. Schwartz in
10059 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
10060 * nsterm.m (ns_timeout): Add missing local decl.
10061 (ns_get_color): snprintf -> sprintf, to fix typo.
10062
10063 2012-07-12 Glenn Morris <rgm@gnu.org>
10064
10065 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
10066 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
10067 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
10068 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
10069
10070 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
10071 Move PTY_OPEN to configure.
10072
10073 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10074 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
10075 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
10076
10077 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
10078
10079 Use empty_unibyte_string where applicable.
10080 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
10081 * lread.c (read1): Likewise.
10082 * xsettings.c (syms_of_xsettings): Likewise.
10083
10084 2012-07-12 Glenn Morris <rgm@gnu.org>
10085
10086 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
10087 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
10088 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
10089 * s/hpux10-20.h (RUN_TIME_REMAP):
10090 * s/bsd-common.h (TABDLY): Move to configure.
10091
10092 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
10093
10094 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
10095
10096 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
10097 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
10098
10099 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
10100
10101 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
10102 * s/template.h: Move NARROWPROTO to configure.
10103
10104 2012-07-11 Glenn Morris <rgm@gnu.org>
10105
10106 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
10107 unused since 2011-01-17 change to systty.h.
10108
10109 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
10110 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
10111 Move HAVE_PTYS and HAVE_SOCKETS to configure.
10112
10113 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
10114
10115 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
10116
10117 2012-07-11 Glenn Morris <rgm@gnu.org>
10118
10119 * s/darwin.h, s/gnu-linux.h, s/template.h:
10120 Move INTERRUPT_INPUT to configure.
10121
10122 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10123
10124 Minor adjustments to interning code.
10125 * lisp.h (intern, intern_c_string): Redefine as static inline
10126 wrappers for intern_1 and intern_c_string_1, respectively.
10127 (intern_1, intern_c_string_1): Rename prototypes.
10128 * lread.c (intern_1, intern_c_string_1, oblookup):
10129 Simplify Vobarray checking.
10130 * font.c (font_intern_prop): Likewise. Adjust comment.
10131 * w32font.c (intern_font_name): Likewise.
10132
10133 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
10134
10135 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
10136
10137 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
10138 of Fcar/Fcdr if possible.
10139 * font.c (check_otf_features): Likewise.
10140 * fontset.c (Fnew_fontset): Likewise.
10141 * gnutls.c (Fgnutls_boot): Likewise.
10142 * minibuf.c (read_minibuf): Likewise.
10143 * msdos.c (IT_set_frame_parameters): Likewise.
10144 * xmenu.c (Fx_popup_dialog): Likewise.
10145 * w32menu.c (Fx_popup_dialog): Likewise.
10146
10147 2012-07-11 Glenn Morris <rgm@gnu.org>
10148
10149 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
10150 since nothing has defined it on these platforms.
10151
10152 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
10153 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
10154
10155 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
10156 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
10157 Move CLASH_DETECTION to configure.
10158
10159 * s/gnu.h: Remove file, which is now empty.
10160
10161 * s/gnu.h, s/gnu-linux.h:
10162 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
10163
10164 2012-07-11 John Wiegley <johnw@newartisans.com>
10165
10166 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
10167 function attribute, so we only use it if it exists in the
10168 compiler.
10169
10170 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10171
10172 Avoid call to strlen in fast_c_string_match_ignore_case.
10173 * search.c (fast_c_string_match_ignore_case): Change to use
10174 length argument. Adjust users accordingly.
10175 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
10176
10177 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
10178
10179 Assume mkdir, rmdir.
10180 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
10181 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
10182
10183 Assume rename.
10184 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
10185
10186 Assume perror.
10187 * s/hpux10-20.h (HAVE_PERROR): Remove.
10188 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
10189 Remove dummy definition, as this problem was obsolete long ago.
10190
10191 Assume strerror.
10192 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
10193
10194 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
10195
10196 Avoid calls to strlen in font processing functions.
10197 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
10198 (font_open_by_name): Change to use length argument.
10199 Adjust users accordingly.
10200 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
10201 Adjust prototypes.
10202 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
10203 Change to return ptrdiff_t.
10204 (xfont_list_pattern, xfont_match): Use length returned by
10205 xfont_decode_coding_xlfd.
10206 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
10207
10208 2012-07-11 Glenn Morris <rgm@gnu.org>
10209
10210 * s/darwin.h, s/freebsd.h, s/netbsd.h:
10211 Move DONT_REOPEN_PTY to configure.
10212
10213 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
10214 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
10215
10216 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
10217
10218 Remove "#define unix" that is no longer needed (Bug#11905).
10219 * s/aix4-2.h (unix): Remove; no longer needed.
10220
10221 EMACS_TIME simplification (Bug#11875).
10222 This replaces macros (which typically do not work in GDB)
10223 with functions, typedefs and enums, making the code easier to debug.
10224 The functional style also makes code easier to read and maintain.
10225 * systime.h: Include <sys/time.h> on all hosts, not just if
10226 WINDOWSNT, since 'struct timeval' is needed in general.
10227 (EMACS_TIME): Now a typedef, not a macro.
10228 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
10229 not macros.
10230 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
10231 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
10232 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
10233 (EMACS_TIME_LE): Now functions, not macros.
10234 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
10235 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
10236 which are not functions. All uses rewritten to use:
10237 (make_emacs_time): New function.
10238 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
10239 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
10240 not functions. All uses rewritten to use the following, respectively:
10241 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
10242 (add_emacs_time, sub_emacs_time): New functions.
10243 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
10244 * fileio.c (Fcopy_file):
10245 * xterm.c (XTflash): Get the current time closer to when it's used.
10246 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
10247
10248 * bytecode.c (targets): Suppress -Woverride-init warnings.
10249
10250 Simplify by avoiding confusing use of strncpy etc.
10251 * doc.c (Fsnarf_documentation):
10252 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
10253 * frame.c (Fmake_terminal_frame):
10254 * gtkutil.c (get_utf8_string):
10255 * lread.c (openp):
10256 * nsmenu.m (ns_update_menubar):
10257 * regex.c (regerror):
10258 Prefer memcpy to strncpy and strncat when either will do.
10259 * fileio.c (Fsubstitute_in_file_name):
10260 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
10261 (menu_separator_name_p):
10262 * nsmenu.m (ns_update_menubar):
10263 Prefer memcmp to strncmp when either will do.
10264 * nsterm.m: Include <ftoastr.h>.
10265 (ns_get_color):
10266 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
10267 Prefer snprintf to strncpy.
10268 * nsterm.m (ns_term_init):
10269 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
10270 * nsterm.m (ns_term_init):
10271 Avoid the need for strncpy, by using build_string or
10272 make_unibyte_string directly. Use dtoastr, not snprintf.
10273 * process.c (Fmake_network_process): Diagnose service names that
10274 are too long, rather than silently truncating them or creating
10275 non-null-terminated names.
10276 (Fnetwork_interface_info): Likewise, for interface names.
10277 * sysdep.c (system_process_attributes) [GNU_LINUX]:
10278 Prefer sprintf to strncat.
10279 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
10280 Prefer vsnprintf to vsprintf + strncpy.
10281
10282 2012-07-10 Glenn Morris <rgm@gnu.org>
10283
10284 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
10285 Clarify fallback case.
10286
10287 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10288
10289 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
10290 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
10291 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
10292 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
10293 where argument type is known to be a Lisp_Cons.
10294
10295 2012-07-10 Tom Tromey <tromey@redhat.com>
10296
10297 * bytecode.c (BYTE_CODE_THREADED): New macro.
10298 (BYTE_CODES): New macro. Replaces all old byte-code defines.
10299 (enum byte_code_op): New type.
10300 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
10301 (exec_byte_code): Use them. Use token threading when applicable.
10302
10303 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10304
10305 Optimize pure C strings initialization.
10306 * lisp.h (make_pure_string): Fix prototype.
10307 (build_pure_c_string): New function, defined as static inline. This
10308 provides a better opportunity to optimize away calls to strlen when
10309 the function is called with compile-time constant argument.
10310 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
10311 argument, adjust users accordingly. Use build_pure_c_string where
10312 appropriate.
10313 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
10314 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
10315 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
10316
10317 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10318
10319 Avoid calls to strlen in miscellaneous functions.
10320 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
10321 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
10322 * lread.c (openp): Likewise.
10323
10324 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
10325
10326 Avoid calls to strlen in path processing functions.
10327 * fileio.c (file_name_as_directory): Add comment. Change to add
10328 srclen argument and return the length of result. Adjust users
10329 accordingly.
10330 (directory_file_name): Fix comment. Change to add srclen argument,
10331 swap 1st and 2nd arguments to obey the common convention.
10332 Adjust users accordingly.
10333 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
10334
10335 2012-07-10 Glenn Morris <rgm@gnu.org>
10336
10337 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
10338 Move PENDING_OUTPUT_COUNT definition to configure.
10339
10340 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
10341 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
10342 * s/gnu.h (DATA_START): Move definitions to configure.
10343
10344 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
10345 We include usg5-4-common.h, which defines them both.
10346
10347 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
10348 O_RDONLY already includes it).
10349
10350 Stop ns builds setting the EMACSLOADPATH environment variable.
10351 * nsterm.m (ns_load_path): Rename from ns_init_paths.
10352 Now it does not set EMACSLOADPATH, just returns the load-path string.
10353 * nsterm.h: Update accordingly.
10354 * lread.c [HAVE_NS]: Include nsterm.h.
10355 (init_lread) [HAVE_NS]: Use ns_load_path.
10356 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
10357
10358 2012-07-09 Glenn Morris <rgm@gnu.org>
10359
10360 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
10361 since the included bsd-common.h does so.
10362
10363 Stop ns builds setting the EMACSPATH environment variable.
10364 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
10365 (ns_init_paths): Do not set EMACSPATH.
10366 * nsterm.h (ns_exec_path): Add it.
10367 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
10368 Use ns_exec_path.
10369
10370 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
10371
10372 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
10373
10374 * process.c (wait_reading_process_output): 'waitchannels' was unset
10375 when read_kbd || !NILP (wait_for_cell); fix this.
10376
10377 Add GCC-style 'const' attribute to functions that can use it.
10378 * character.h (char_resolve_modifier_mask):
10379 * keyboard.h (make_ctrl_char):
10380 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
10381 (init_character_once, next_almost_prime, init_fns, init_image)
10382 (flush_pending_output, init_sound):
10383 * mem-limits.h (start_of_data):
10384 * menu.h (finish_menu_items):
10385 Add ATTRIBUTE_CONST.
10386 * emacs.c (DEFINE_DUMMY_FUNCTION):
10387 Declare the dummy function with ATTRIBUTE_CONST.
10388 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
10389 Add decls with ATTRIBUTE_CONST.
10390
10391 Minor improvements to make_formatted_string.
10392 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
10393 where int is good enough, as vsprintf returns an int.
10394 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
10395
10396 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
10397
10398 Use make_formatted_string to avoid double length calculation.
10399 * lisp.h (make_formatted_string): New prototype.
10400 * alloc.c (make_formatted_string): New function.
10401 * buffer.c (Fgenerate_new_buffer_name): Use it.
10402 * dbusbind.c (syms_of_dbusbind): Likewise.
10403 * editfns.c (Fcurrent_time_zone): Likewise.
10404 * filelock.c (get_boot_time): Likewise.
10405 * frame.c (make_terminal_frame, set_term_frame_name)
10406 (x_report_frame_params): Likewise.
10407 * image.c (gs_load): Likewise.
10408 * minibuf.c (get_minibuffer): Likewise.
10409 * msdos.c (dos_set_window_size): Likewise.
10410 * process.c (make_process): Likewise.
10411 * xdisp.c (ensure_echo_area_buffers): Likewise.
10412 * xsettings.c (apply_xft_settings): Likewise.
10413
10414 2012-07-09 Glenn Morris <rgm@gnu.org>
10415
10416 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
10417 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
10418 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
10419 * nsterm.h (ns_etc_directory): Add it.
10420 * callproc.c [HAVE_NS]: Include nsterm.h.
10421 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
10422
10423 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
10424
10425 Move marker debugging code under MARKER_DEBUG.
10426 * marker.c (MARKER_DEBUG): Move marker debugging code under
10427 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
10428 for bootstrap with --enable-checking (~3x slowdown reported
10429 by Juanma Barranquero <lekktu@gmail.com>).
10430 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
10431
10432 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
10433
10434 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
10435 See <http://bugs.gnu.org/11825#29>.
10436
10437 2012-07-08 Eli Zaretskii <eliz@gnu.org>
10438
10439 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
10440 has no font, use the frame's font. (Bug#11813)
10441 (display_line): Add commentary about displaying truncation glyphs
10442 on GUI frames.
10443 (produce_special_glyphs): Move here from term.c.
10444
10445 * term.c (produce_special_glyphs): Move to xdisp.c.
10446
10447 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
10448 section.
10449
10450 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
10451
10452 * xdisp.c (display_line): Avoid warning about implicit declaration
10453 of FRAME_FONT.
10454
10455 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
10456
10457 * lisp.h: Remove empty conditional.
10458
10459 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10460
10461 * lread.c (load_path_check): Now static.
10462
10463 Fix some minor --with-ns problems found by static checking.
10464 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
10465 (x_set_font) [!HAVE_X_WINDOWS]:
10466 * image.c (xpm_load_image) [HAVE_NS]:
10467 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
10468 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
10469 Remove unused local.
10470 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
10471 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
10472 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
10473 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
10474 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
10475 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
10476 Fix pointer signedness problem.
10477 * xfaces.c (FRAME_X_FONT_TABLE):
10478 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
10479
10480 2012-07-07 Glenn Morris <rgm@gnu.org>
10481
10482 * lread.c (load_path_check): New function, split from init_lread.
10483 (init_lread): Reorganize. Motivation:
10484 If EMACSLOADPATH is set, check/warn about that rather than the
10485 defaults, which we are not going to use. Hence we can remove
10486 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
10487 Don't warn if site-lisp directories are missing.
10488 If not installed, start from a blank load-path, since
10489 PATH_LOADSEARCH refers to the eventual installation directories.
10490
10491 2012-07-07 Eli Zaretskii <eliz@gnu.org>
10492
10493 Support truncation and continuation glyphs on GUI frames, when
10494 fringes are disabled. (Bug#11832)
10495 * xdisp.c (init_iterator): Get dimensions of truncation and
10496 continuation glyphs even if on GUI frames.
10497 Adjust it->last_visible_x on GUI frames when the left or right fringes,
10498 or both, are absent.
10499 (start_display, move_it_in_display_line_to): Handle the case of a
10500 GUI frame without a fringe to display continuation or truncation
10501 glyphs.
10502 (insert_left_trunc_glyphs): Support GUI frames: make sure
10503 truncation glyphs overwrite enough glyphs from the current line to
10504 have sufficient space in pixels.
10505 (display_line): Support truncation and continuation glyphs on GUI
10506 frames. If some spare pixels are left on the line after inserting
10507 the truncation glyphs, fill that space with a stretch glyph of a
10508 suitably computed width.
10509
10510 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
10511 produce_glyphs, to support GUI sessions.
10512
10513 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10514
10515 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
10516
10517 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
10518
10519 Do not require float-time's arg to fit in time_t (Bug#11825).
10520 This works better on hosts where time_t is unsigned, and where
10521 float-time is applied to the (negative) difference between two times.
10522 * editfns.c (decode_time_components): Last arg is now double *,
10523 not int *, and means to store all the result as a double, without
10524 worrying about whether the seconds part fits in time_t.
10525 All callers changed.
10526 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
10527 All callers changed.
10528 (Ffloat_time): Do not fail merely because the specified time falls
10529 outside of time_t range.
10530
10531 2012-07-07 Glenn Morris <rgm@gnu.org>
10532
10533 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
10534 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
10535 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
10536
10537 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
10538
10539 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
10540 Update dependencies.
10541
10542 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
10543
10544 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10545
10546 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
10547 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
10548 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
10549 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
10550 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
10551 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
10552
10553 * xfont.c (compare_font_names): Redo to omit the need for casts.
10554
10555 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
10556
10557 * xfns.c (Fx_change_window_property): Doc fix.
10558 * w32fns.c (Fx_change_window_property): Doc fix.
10559
10560 * w32fns.c (Fx_window_property): Accept the same arguments as the
10561 X Windows version. Doc fix.
10562 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
10563
10564 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
10565 Eli Zaretskii <eliz@gnu.org>
10566
10567 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
10568 Windows-specific code from nt/config.nt moved here.
10569 Obsolete settings removed.
10570
10571 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10572
10573 * process.c: Avoid unnecessary calls to gettime.
10574 (wait_reading_process_output): Don't get the time of day
10575 when gobbling data immediately and not waiting, as there's no need
10576 for it in that case. This removes a FIXME.
10577
10578 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
10579
10580 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
10581 is defined (Bug#11768).
10582
10583 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10584
10585 Fix marker debugging code.
10586 * marker.c (byte_char_debug_check): Do not perform the check
10587 if buffer is not multibyte.
10588 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10589 Call byte_char_debug_check with correct arguments.
10590
10591 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10592
10593 Compile marker debugging code only if ENABLE_CHECKING is defined.
10594 * marker.c (byte_char_debug_check, count_markers):
10595 Use only if ENABLE_CHECKING is defined.
10596 (byte_debug_flag): Remove.
10597 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10598 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
10599
10600 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10601
10602 Avoid code repetition in marker-related functions.
10603 * marker.c (attach_marker): New function.
10604 (Fset_marker, set_marker_restricted, set_marker_both)
10605 (set_marker_restricted_both): Use it.
10606 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
10607 Consistently rename charno to charpos.
10608 (marker_position): Add eassert.
10609 (marker_byte_position): Convert to eassert.
10610
10611 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10612
10613 Simplify list operations in unchain_overlay and unchain_marker.
10614 * buffer.c (unchain_overlay): Simplify. Add comment.
10615 * marker.c (unchain_marker): Simplify. Fix comments.
10616
10617 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10618
10619 Introduce fast path for the widely used marker operation.
10620 * alloc.c (build_marker): New function.
10621 * lisp.h (build_marker): New prototype.
10622 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
10623 * composite.c (autocmp_chars): Likewise.
10624 * editfns.c (buildmark): Remove.
10625 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
10626 (save_restriction_save): Use build_marker.
10627 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
10628 * window.c (save_window_save): Likewise.
10629
10630 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10631
10632 Do not use Fdelete_overlay in delete_all_overlays
10633 to avoid redundant calls to unchain_overlay.
10634 * buffer.c (drop_overlay): New function.
10635 (delete_all_overlays, Fdelete_overlay): Use it.
10636 * minibuf.c (get_minibuffer): Fix comment.
10637
10638 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10639
10640 Port to OpenBSD 5.1 amd64.
10641 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
10642 This is needed for OpenBSD, and should be harmless on all BSD systems.
10643 Also, include <sys/sysctl.h>, as it should be available on all
10644 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
10645 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
10646 use p_pid member, not kp_proc.pid.
10647
10648 2012-07-06 Glenn Morris <rgm@gnu.org>
10649
10650 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
10651
10652 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10653
10654 More xmalloc and related cleanup.
10655 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
10656 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
10657 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
10658 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
10659 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
10660 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
10661 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
10662 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
10663 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
10664 * xterm.c:
10665 Omit needless casts involving void * pointers and allocation.
10666 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
10667 as the former is more robust if P's type is changed.
10668 Prefer xzalloc to xmalloc + memset 0.
10669 Simplify malloc-or-realloc to realloc.
10670 Don't worry about xmalloc returning a null pointer.
10671 Prefer xstrdup to xmalloc + strcpy.
10672 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
10673 growing it.
10674 * keyboard.c (apply_modifiers_uncached): Prefer local array to
10675 alloca of a constant.
10676
10677 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10678
10679 * xdisp.c (display_line): Fix horizontal pixel coordinates when
10680 hscroll is larger than the line width. Fixes long and futile
10681 looping inside extend_face_to_end_of_line (on a TTY) producing
10682 glyphs that are not needed and thrown away.
10683
10684 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10685
10686 * marker.c (set_marker_restricted_both): Simplify by using
10687 clip_to_bounds.
10688
10689 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10690
10691 * editfns.c (region_limit): Simplify by using clip_to_bounds.
10692
10693 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
10694
10695 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
10696 not defined (Bug#11768).
10697 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
10698 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
10699 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
10700 followed by gtk_box_set_homogeneous (Bug#11768).
10701 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
10702 (update_theme_scrollbar_width, xg_create_scroll_bar):
10703 Use gtk_scrollbar_new (Bug#11768).
10704 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
10705 (is_box_type): New function (Bug#11768).
10706 (xg_tool_item_stale_p): Call is_box_type.
10707 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
10708 with default display (Bug#11768).
10709
10710 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10711
10712 * xdisp.c (window_hscroll_limited): New function.
10713 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
10714 coordinates when window's hscroll is set to insanely large
10715 values. (Bug#11857)
10716
10717 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
10718
10719 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
10720 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
10721
10722 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10723
10724 Cleanup xmalloc.
10725 * lisp.h (xzalloc): New prototype. Omit needless casts.
10726 * alloc.c (xzalloc): New function. Omit needless casts.
10727 * charset.c: Omit needless casts. Convert all calls to
10728 xmalloc with following memset to xzalloc.
10729 * dispnew.c: Likewise.
10730 * fringe.c: Likewise.
10731 * image.c: Likewise.
10732 * sound.c: Likewise.
10733 * term.c: Likewise.
10734 * w32fns.c: Likewise.
10735 * w32font.c: Likewise.
10736 * w32term.c: Likewise.
10737 * xfaces.c: Likewise.
10738 * xfns.c: Likewise.
10739 * xterm.c: Likewise.
10740 * atimer.c: Omit needless casts.
10741 * buffer.c: Likewise.
10742 * callproc.c: Likewise.
10743 * ccl.c: Likewise.
10744 * coding.c: Likewise.
10745 * composite.c: Likewise.
10746 * doc.c: Likewise.
10747 * doprnt.c: Likewise.
10748 * editfns.c: Likewise.
10749 * emacs.c: Likewise.
10750 * eval.c: Likewise.
10751 * filelock.c: Likewise.
10752 * fns.c: Likewise.
10753 * gtkutil.c: Likewise.
10754 * keyboard.c: Likewise.
10755 * lisp.h: Likewise.
10756 * lread.c: Likewise.
10757 * minibuf.c: Likewise.
10758 * msdos.c: Likewise.
10759 * print.c: Likewise.
10760 * process.c: Likewise.
10761 * region-cache.c: Likewise.
10762 * search.c: Likewise.
10763 * sysdep.c: Likewise.
10764 * termcap.c: Likewise.
10765 * terminal.c: Likewise.
10766 * tparam.c: Likewise.
10767 * w16select.c: Likewise.
10768 * w32.c: Likewise.
10769 * w32reg.c: Likewise.
10770 * w32select.c: Likewise.
10771 * w32uniscribe.c: Likewise.
10772 * widget.c: Likewise.
10773 * xdisp.c: Likewise.
10774 * xmenu.c: Likewise.
10775 * xrdb.c: Likewise.
10776 * xselect.c: Likewise.
10777
10778 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10779
10780 * fileio.c (time_error_value): Check the right error number.
10781 Problem reported by Troels Nielsen in
10782 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
10783
10784 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10785
10786 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
10787 This should be fixed in a better way; see Eli Zaretskii in
10788 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
10789 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
10790
10791 * fileio.c (time_error_value): Rename from special_mtime.
10792 The old name's problems were noted by Eli Zaretskii in
10793 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
10794
10795 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
10796 This variable's comment says Emacs needs at least one GDB-visible
10797 symbol of type enum pvec_type, to work around GDB problems.
10798 The symbol's value doesn't matter.
10799
10800 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
10801 that causes compilation to fail on pre-C99 compilers.
10802
10803 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
10804
10805 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
10806 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
10807
10808 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10809
10810 * buffer.c (init_buffer_once): Fix initialization of
10811 headers for buffer_defaults and buffer_local_symbols.
10812 Reported by Juanma Barranquero <lekktu@gmail.com>.
10813
10814 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10815
10816 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
10817 * lisp.h (enum pvec_type): Use fewer bits.
10818 (PSEUDOVECTOR_SIZE_BITS): New constant.
10819 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
10820 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
10821 change in pvec_type.
10822 (PSEUDOVECTOR_TYPEP): New macro.
10823 (TYPED_PSEUDOVECTORP): Use it.
10824 * fns.c (internal_equal): Adapt code to extract pvectype.
10825 * emacs.c (gdb_pvec_type): Update type.
10826 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
10827 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
10828 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
10829 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
10830 (sweep_vectors): Use it. Use local var `total_bytes' instead of
10831 abusing vector->header.next.nbytes.
10832 (live_vector_p): Use PVEC_TYPE.
10833 (mark_object): Adapt code to extract pvectype. Use switch.
10834
10835 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10836
10837 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
10838 Tighten new eassert a bit.
10839
10840 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10841
10842 Fix compilation with --enable-gcc-warnings and -O1
10843 optimization level.
10844 * doprnt.c (doprnt): Change type of tem to int, initialize
10845 to avoid compiler warning. Add eassert.
10846 * search.c (simple_search): Initialize match_byte to avoid
10847 compiler warning. Add eassert.
10848
10849 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10850
10851 Avoid weird behavior with large horizontal scrolls.
10852 Without this change, for example, large hscroll values would
10853 mess up Emacs's display on Fedora 15 x86, presumably due to
10854 overflows in int calculations in the display code.
10855 Also, if buffers had long lines, Emacs would freeze.
10856 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
10857 (set_window_hscroll): New function, containing the old guts of
10858 Fset_window_hscroll. Return the clipped value.
10859 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
10860 This avoids the need to check against PTRDIFF_MAX.
10861
10862 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
10863
10864 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10865
10866 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
10867
10868 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10869
10870 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
10871 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
10872 since GCC 4.4.6 issues a bogus warning for them.
10873
10874 Fix bugs in file timestamp newness comparisons.
10875 * fileio.c (Ffile_newer_than_file_p):
10876 * lread.c (Fload): Use full timestamp resolution of files,
10877 not just the 1-second resolution, so that files that are only
10878 slightly newer still count as newer.
10879 * fileio.c (Ffile_newer_than_file_p): Don't assume file
10880 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
10881
10882 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
10883
10884 * fileio.c: Improve handling of file time marker. (Bug#11852)
10885 (special_mtime): New function.
10886 (Finsert_file_contents, Fverify_visited_file_modtime):
10887 Use it to set special mtime values consistently.
10888
10889 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10890
10891 * fileio.c (Finsert_file_contents): Properly handle st_mtime
10892 marker for non-existing file. (Bug#11852)
10893
10894 2012-07-03 Glenn Morris <rgm@gnu.org>
10895
10896 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
10897 and did not make it into globals.h).
10898
10899 2012-07-03 Tom Tromey <tromey@redhat.com>
10900
10901 * window.c (Fset_window_margins, Fset_window_fringes)
10902 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10903 * textprop.c (Fprevious_property_change): No longer static.
10904 * syntax.c (Fsyntax_table_p): No longer static.
10905 * process.c (Fget_process, Fprocess_datagram_address): No longer
10906 static.
10907 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10908 * keyboard.c (Fcommand_execute): No longer static.
10909 Remove EXFUN.
10910 * insdel.c (Fcombine_after_change_execute): No longer static.
10911 * image.c (Finit_image_library): No longer static.
10912 * fileio.c (Fmake_symbolic_link): No longer static.
10913 * eval.c (Ffetch_bytecode): No longer static.
10914 * editfns.c (Fuser_full_name): No longer static.
10915 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10916 No longer static.
10917 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10918 static.
10919 * dired.c (Ffile_attributes): No longer static.
10920 * composite.c (Fcomposition_get_gstring): No longer static.
10921 * callproc.c (Fgetenv_internal): No longer static.
10922
10923 * ccl.h: Remove EXFUNs.
10924 * buffer.h: Remove EXFUNs.
10925 * dispextern.h: Remove EXFUNs.
10926 * intervals.h: Remove EXFUNs.
10927 * fontset.h: Remove EXFUN.
10928 * font.h: Remove EXFUNs.
10929 * dosfns.c (system_process_attributes): Remove EXFUN.
10930 * keymap.h: Remove EXFUNs.
10931 * lisp.h: Remove EXFUNs.
10932 * w32term.h: Remove EXFUNs.
10933 * window.h: Remove EXFUNs.
10934 * xsettings.h: Remove EXFUN.
10935 * xterm.h: Remove EXFUN.
10936
10937 2012-07-03 Glenn Morris <rgm@gnu.org>
10938
10939 * lisp.h (Frandom): Make it visible to C.
10940 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10941 buffer for invisible buffers. (Bug#1229)
10942
10943 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10944
10945 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10946 values which aren't power of 2.
10947 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10948 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10949 accordingly.
10950
10951 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10952
10953 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10954
10955 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10956
10957 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10958
10959 * alloc.c (allocate_vector_block): Remove redundant
10960 calls to mallopt if DOUG_LEA_MALLOC is defined.
10961 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10962 avoid calls to mallopt if zero_vector is returned.
10963
10964 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10965
10966 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10967 is enabled, avoid dereferencing NULL current_sblock if
10968 running undumped.
10969
10970 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10971
10972 Cleanup basic buffer management.
10973 * buffer.h (struct buffer): Change layout to use generic vector
10974 marking code. Fix some comments. Change type of 'clip_changed'
10975 to bitfield. Remove unused #ifndef old.
10976 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10977 (GET_OVERLAYS_AT): Fix indentation.
10978 (for_each_per_buffer_object_at): New macro.
10979 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10980 (Fbuffer_local_variables): Use it.
10981 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10982 * alloc.c (allocate_buffer): Adjust to match new layout of
10983 struct buffer. Fix comment.
10984 (mark_overlay): New function.
10985 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10986 Lisp area of struct buffer.
10987 (mark_object): Use it. Adjust marking of misc objects
10988 and related comments.
10989
10990 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10991
10992 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10993 wrapper that is not needed because the wrapped code is a no-op (zero
10994 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10995 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10996
10997 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10998
10999 * alloc.c (mark_buffer): Simplify. Remove prototype.
11000 (mark_object): Add comment. Reorganize marking of vector-like
11001 objects. Use CHECK_LIVE for all vector-like objects except buffers
11002 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
11003 Avoid redundant calls to mark_vectorlike for bool vectors.
11004
11005 2012-06-30 Glenn Morris <rgm@gnu.org>
11006
11007 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
11008
11009 * epaths.in (PATH_SITELOADSEARCH): New.
11010 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
11011 This is rather than relying on --enable-locallisppath elements
11012 having "site-lisp" in their names. (Bug#10208#25, 11658)
11013
11014 2012-06-30 Eli Zaretskii <eliz@gnu.org>
11015
11016 * w32proc.c (sys_select): Accept and ignore one more argument.
11017
11018 * w32.c (emacs_gnutls_pull): Call select with one more argument.
11019
11020 * sysselect.h [DOS_NT]: Don't include sys/select.h.
11021 (pselect) [!MS_DOS]: Redirect to sys_select.
11022
11023 * sysdep.c: Don't include dos.h and dosfns.h.
11024
11025 * process.c (sys_select):
11026 * msdos.c (sys_select): Accept one more argument and ignore it.
11027
11028 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
11029 adapt data types and code to that.
11030
11031 * dosfns.c:
11032 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
11033 which clashes with the gnulib function of the same name.
11034
11035 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
11036
11037 * font.c (font_style_to_value, font_style_symbolic)
11038 (font_prop_validate_style): Add type checks for values in
11039 font_style_table.
11040
11041 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
11042 argument.
11043 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
11044 uses.
11045
11046 2012-06-29 Eli Zaretskii <eliz@gnu.org>
11047
11048 * xdisp.c (try_window_id): Undo last change.
11049
11050 * w32.c (getwd): Adjust commentary about startup_dir.
11051 (init_environment): Always call sys_access, even in non-MSVC
11052 builds. Don't chdir to the directory of the Emacs executable.
11053 This undoes code from 1997 which was justified by the need to
11054 "avoid conflicts when removing and renaming directories". But its
11055 downside was that every relative file name was being interpreted
11056 relative to the directory of the Emacs executable, which can never
11057 be TRT. In particular, it broke sys_access when called with
11058 relative file names.
11059 (sys_access): Map GetLastError to errno.
11060
11061 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11062
11063 * window.h (struct window): Change type of 'fringes_outside_margins'
11064 to bitfield. Fix comment. Adjust users accordingly.
11065 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
11066 Adjust comment.
11067 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
11068 to ptrdiff_t.
11069
11070 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
11071
11072 * gnutls.c (emacs_gnutls_handshake):
11073 Add QUIT to make the loop interruptible.
11074
11075 2012-06-29 Glenn Morris <rgm@gnu.org>
11076
11077 * charset.c (init_charset): Make lack of etc/charsets fatal.
11078
11079 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11080
11081 * editfns.c (region_limit): Fix type mismatch.
11082
11083 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
11084
11085 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
11086 undefined. Convert from xassert to eassert.
11087 * nsmenu.m: Convert from xassert to eassert.
11088 * nsterm.m: Likewise.
11089
11090 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
11091
11092 * editfns.c (region_limit): Clip to narrowing (bug#11770).
11093
11094 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
11095
11096 Avoid integer overflow on scroll-left and scroll-right.
11097 * window.c (HSCROLL_MAX): New macro.
11098 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
11099 overflow when requested scroll falls outside ptrdiff_t range.
11100
11101 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11102
11103 * window.h (struct window): Change type of 'hscroll',
11104 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
11105 'last_modified' and 'last_overlay_modified' to EMACS_INT.
11106 Adjust users accordingly.
11107 * xdisp.c (try_cursor_movement): Replace type check with eassert.
11108 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
11109 from EMACS_INT to ptrdiff_t.
11110 (make_window): Omit redundant initialization.
11111
11112 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
11113
11114 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
11115
11116 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11117
11118 * window.h (struct window): Change type of 'use_time' and
11119 'sequence_number' from Lisp_Object to int.
11120 * frame.c (make_frame): Adjust users accordingly.
11121 * print.c (print_object): Likewise.
11122 * window.c (select_window, Fwindow_use_time, make_parent_window)
11123 (make_window): Likewise.
11124
11125 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11126
11127 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
11128 enabled with --enable-checking=[all,glyphs] configure option.
11129 Fix GLYPH_DEBUG usage assuming that it may be undefined,
11130 adjust comments accordingly.
11131 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
11132 undefined, adjust comments accordingly.
11133 * image.c: Likewise.
11134 * scroll.c: Likewise.
11135 * w32fns.c: Likewise.
11136 * w32term.c: Likewise.
11137 * xdisp.c: Likewise.
11138 * xfaces.c: Likewise.
11139 * xfns.c: Likewise.
11140 * xterm.c: Likewise.
11141
11142 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
11143
11144 Generalize run-time debugging checks.
11145 * dispextern.h (XASSERTS): Remove.
11146 * fontset.c (xassert): Remove.
11147 Convert from xassert to eassert.
11148 * alloc.c: Convert from xassert to eassert.
11149 * bidi.c: Likewise.
11150 * dispnew.c: Likewise.
11151 * fns.c: Likewise.
11152 * fringe.c: Likewise.
11153 * ftfont.c: Likewise.
11154 * gtkutil.c: Likewise.
11155 * image.c: Likewise.
11156 * keyboard.c: Likewise.
11157 * menu.c: Likewise.
11158 * process.c: Likewise.
11159 * scroll.c: Likewise.
11160 * sound.c: Likewise.
11161 * term.c: Likewise.
11162 * w32console.c: Likewise.
11163 * w32fns.c: Likewise.
11164 * w32term.c: Likewise.
11165 * window.c: Likewise.
11166 * xdisp.c: Likewise.
11167 * xfaces.c: Likewise.
11168 * xfns.c: Likewise.
11169 * xselect.c: Likewise.
11170 * xterm.c: Likewise.
11171
11172 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
11173
11174 * fns.c (maybe_resize_hash_table): Output message when growing the
11175 purify-hashtable.
11176
11177 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11178
11179 * alloc.c (allocate_string_data): Remove dead code.
11180 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
11181 avoid GCC warning about unused macro.
11182
11183 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11184
11185 * alloc.c (allocate_string): Omit intervals initialization.
11186 * alloc.c (make_uninit_multibyte_string): Initialize intervals
11187 as in make_pure_string and make_pure_c_string.
11188
11189 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11190
11191 * alloc.c (allocate_string): Fix last change.
11192
11193 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
11194
11195 * alloc.c (allocate_string): Remove two redundant calls
11196 to memset, add explicit initialization where appropriate.
11197
11198 2012-06-27 Glenn Morris <rgm@gnu.org>
11199
11200 * lisp.mk (lisp): Remove paths.elc.
11201
11202 2012-06-27 Chong Yidong <cyd@gnu.org>
11203
11204 * doc.c (Fsubstitute_command_keys): Fix punctuation.
11205
11206 2012-06-26 John Wiegley <johnw@newartisans.com>
11207
11208 * unexmacosx.c (copy_data_segment): Add two section names used
11209 on Mac OS X Lion: __mod_init_func and __mod_term_func.
11210
11211 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
11212 when building with Clang.
11213
11214 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
11215
11216 * eval.c (Fapply): Allow calling it with a single argument.
11217
11218 2012-06-26 Eli Zaretskii <eliz@gnu.org>
11219
11220 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
11221 _stricmp and _strnicmp.
11222 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
11223
11224 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11225
11226 * alloc.c (allocate_window): Zero out non-Lisp part of newly
11227 allocated window.
11228 (allocate_process): Likewise for new process.
11229 (allocate_terminal): Change to use offsetof.
11230 (allocate_frame): Likewise.
11231 * frame.c (make_frame): Omit redundant initialization.
11232 * window.c (make_parent_window): Use memset.
11233 (make_window): Omit redundant initialization.
11234 * process.c (make_process): Omit redundant initialization.
11235 * terminal.c (create_terminal): Likewise.
11236
11237 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11238
11239 * term.c (delete_tty): Remove redundant call to memset.
11240
11241 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
11242
11243 * alloc.c: Remove build_string.
11244 * lisp.h: Define build_string as static inline. This provides
11245 a better opportunity to optimize away calls to strlen when the
11246 function is called with compile-time constant argument.
11247 * image.c (imagemagick_error): Convert to build_string.
11248 * w32proc.c (sys_spawnve): Likewise.
11249 * xterm.c (x_term_init): Likewise.
11250
11251 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
11252
11253 Use sprintf return value instead of invoking strlen on result.
11254 In the old days this wasn't portable, since some sprintf
11255 implementations returned char *. But they died out years ago and
11256 Emacs already assumes sprintf returns int.
11257 Similarly for float_to_string.
11258 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
11259 * ccl.c (ccl_driver):
11260 * character.c (string_escape_byte8):
11261 * data.c (Fnumber_to_string):
11262 * doprnt.c (doprnt):
11263 * print.c (print_object):
11264 * xdisp.c (message_dolog):
11265 * xfns.c (syms_of_xfns):
11266 Use sprintf or float_to_string result to avoid need to call strlen.
11267 * data.c (Fnumber_to_string):
11268 Use make_unibyte_string, since the string must be ASCII.
11269 * lisp.h, print.c (float_to_string): Now returns int length.
11270 * term.c (produce_glyphless_glyph):
11271 Use sprintf result rather than recomputing it.
11272
11273 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
11274 * Makefile.in (ALL_CFLAGS):
11275 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
11276 * gmalloc.c, regex.c: Include <config.h> unconditionally.
11277
11278 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11279
11280 * dispextern.h (xstrcasecmp): Define to library function
11281 strcasecmp if available.
11282 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
11283
11284 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
11285
11286 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
11287 Avoid comma operator.
11288 * menu.c (push_submenu_start, push_submenu_end)
11289 (push_left_right_boundary, push_menu_pane): Likewise.
11290 * msdos.c (dos_rawgetc): Likewise.
11291
11292 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11293
11294 * xfns.c (xic_create_fontsetname): Remove redundant calls
11295 to memset.
11296
11297 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
11298
11299 * gtkutil.c (get_utf8_string): Remove redundant assignment.
11300 sprintf already null-terminates its output.
11301
11302 * xfns.c (x_window): Remove redundant cast.
11303
11304 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
11305
11306 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
11307 `const char *' to `char *' to avoid compiler warning.
11308
11309 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11310
11311 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
11312 instead of truncating it to 63 (admittedly a generous limit).
11313
11314 * process.c: Fix spelling and caps in comments.
11315
11316 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
11317
11318 * emacs.c (setpgrp): Remove definition, unused.
11319 * sysdep.c (setpgrp): Remove definition, not used in this file.
11320
11321 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
11322
11323 * makefile.w32-in: Update dependencies.
11324
11325 2012-06-24 Eli Zaretskii <eliz@gnu.org>
11326
11327 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
11328 (SYSTIME_H): Add nt/inc/sys/time.h.
11329
11330 * systime.h [WINDOWSNT]: Include sys/time.h.
11331
11332 * s/ms-w32.h (struct timespec): Definition moved from
11333 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
11334
11335 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11336
11337 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
11338 * buffer.h (buffer_slot_type_mismatch):
11339 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
11340 * eval.c (unwind_to_catch):
11341 * image.c (my_png_error, my_error_exit):
11342 * keyboard.c (quit_throw_to_read_char, user_error)
11343 (Fexit_recursive_edit, Fabort_recursive_edit):
11344 * lisp.h (die, args_out_of_range, args_out_of_range_3)
11345 (wrong_type_argument, buffer_overflow, __executable_start)
11346 (memory_full, buffer_memory_full, string_overflow, Fthrow)
11347 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
11348 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
11349 (fatal):
11350 (child_setup) [!DOS_NT]:
11351 * lread.c (end_of_file_error, invalid_syntax):
11352 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
11353 * puresize.h (pure_write_error):
11354 * search.c (matcher_overflow):
11355 * sound.c (sound_perror, alsa_sound_perror):
11356 * sysdep.c, syssignal.h (croak):
11357 * term.c (maybe_fatal, vfatal):
11358 * textprop.c (text_read_only):
11359 * undo.c (user_error):
11360 * unexmacosx.c (unexec_error):
11361 * xterm.c (x_ins_del_lines, x_delete_glyphs):
11362 Use _Noreturn rather than NO_RETURN.
11363 No need for separate decl merely because of _Noreturn.
11364 * sound.c (sound_warning, parse_sound):
11365 Remove unnecessary forward decls.
11366
11367 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
11368
11369 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
11370 * lisp.h (WAIT_READING_MAX): New macro.
11371 * dispnew.c (Fsleep_for, sit_for):
11372 * keyboard.c (kbd_buffer_get_event):
11373 * process.c (Faccept_process_output):
11374 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
11375 This improves on the previous patch, which introduced a bug
11376 when time_t is unsigned and as wide as intmax_t.
11377 See <http://bugs.gnu.org/9000#51>.
11378
11379 2012-06-23 Eli Zaretskii <eliz@gnu.org>
11380
11381 * dispnew.c (sit_for, Fsleep_for):
11382 * keyboard.c (kbd_buffer_get_event):
11383 * process.c (Faccept_process_output): Avoid compiler warnings when
11384 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
11385
11386 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
11387
11388 * makefile.w32-in: Update dependencies.
11389
11390 * w32.c (ltime): Add return type and declare static.
11391 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
11392
11393 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
11394
11395 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
11396 Privately reported by Herbert J. Skuhra.
11397 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
11398 All uses changed.
11399 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
11400 not make_lisp_timeval, when the argument is of type EMACS_TIME.
11401
11402 2012-06-23 Eli Zaretskii <eliz@gnu.org>
11403
11404 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
11405 last argument of make_unibyte_string.
11406
11407 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
11408 language ID in the event parameters.
11409
11410 * w32term.c (w32_read_socket): Put the new keyboard codepage into
11411 event.code, not the obscure "character set ID".
11412
11413 2012-06-23 Chong Yidong <cyd@gnu.org>
11414
11415 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
11416
11417 2012-06-23 Eli Zaretskii <eliz@gnu.org>
11418
11419 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
11420 * w32.c (fdutimens): New function.
11421
11422 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
11423
11424 * s/ms-w32.h (pselect): Redirect to sys_select.
11425
11426 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
11427
11428 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
11429 in the logic of incrementing and decrementing the value of
11430 use_relocatable_buffers.
11431
11432 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
11433
11434 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
11435 Privately reported by Herbert J. Skuhra.
11436 [__FreeBSD__]: Remove "*/" typo after "#include".
11437 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
11438 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
11439 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
11440 Don't assume EMACS_TIME and struct timeval are the same type.
11441
11442 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
11443
11444 Support higher-resolution time stamps (Bug#9000).
11445 The time stamps are only nanosecond-resolution at the C level,
11446 since that's the best that any real-world system supports now.
11447 But they are picosecond-resolution at the Lisp level, as that's
11448 easy, and leaves room for future OS improvements.
11449
11450 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
11451 (LIBES): Use it.
11452
11453 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
11454 Don't get current time unless it's needed.
11455
11456 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
11457 now provides it if it's absent.
11458 (start_atimer): Port to higher-res time stamps.
11459 Check for time stamp overflow. Don't get current time more
11460 often than is needed.
11461
11462 * buffer.h (struct buffer): Buffer modtime now has high resolution.
11463 Include systime.h, not time.h.
11464 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
11465
11466 * dired.c: Include stat-time.h.
11467 (Ffile-attributes): File times now have higher resolution.
11468
11469 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
11470 (struct image): Timestamp now has higher resolution.
11471
11472 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
11473 has at least microseconds now. All uses removed.
11474 (update_frame, update_single_window, update_window, update_frame_1)
11475 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
11476 (duration_to_sec_usec): Remove; no longer needed.
11477
11478 * editfns.c (time_overflow): Now extern.
11479 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
11480 (float-time, Fformat_time_string, Fcurrent_time_string)
11481 (Fcurrent_time_zone): Accept and generate higher-resolution
11482 time stamps.
11483 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
11484 (decode_time_components, lisp_seconds_argument): New functions.
11485 (make_time): Now static.
11486 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
11487 Report an error if the time is invalid, rather than having the caller
11488 do that.
11489
11490 * fileio.c: Include <stat-time.h>
11491 (Fcopy_file): Copy higher-resolution time stamps.
11492 Prefer to set the time stamp via a file descriptor if that works.
11493 (Fset_file_times, Finsert_file_contents, Fwrite_region)
11494 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
11495 (Fvisited_file_modtime, Fset_visited_file_modtime):
11496 Support higher-resolution time stamps.
11497
11498 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
11499
11500 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
11501
11502 * image.c (prepare_image_for_display, clear_image_cache)
11503 (lookup_image): Port to higer-resolution time stamps.
11504
11505 * keyboard.c (start_polling, bind_polling_period):
11506 Check for time stamp overflow.
11507 (read_char, kbd_buffer_get_event, timer_start_idle)
11508 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
11509 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
11510 Port to higher-resolution time stamps. Do not assume time_t is signed.
11511 (decode_timer): New function. Timers are now vectors of length 9,
11512 not 8, to accommodate the picosecond component.
11513 (timer_check_2): Use it.
11514
11515 * nsterm.m (select_timeout, timeval_subtract): Remove.
11516 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
11517 as they're a bit more accurate and handle overflow better.
11518 (ns_select): Change prototype to be compatible with pselect.
11519 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
11520 * nsterm.h (ns_select): Adjust prototype.
11521
11522 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
11523 us-resolution time stamps.
11524 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
11525
11526 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
11527
11528 * lisp.h (time_overflow): New decl.
11529 (wait_reading_process_output): First arg is now intmax_t, not int,
11530 to accommodate larger waits.
11531
11532 * process.h (struct Lisp_Process.read_output_delay):
11533 Now counts nanoseconds, not microseconds.
11534 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
11535 EMACS_HAS_USECS.
11536 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
11537 (wait_reading_process_output):
11538 Port to ns-resolution time stamps.
11539 (Faccept_process_output, wait_reading_process_output):
11540 Check for time stamp overflow. Do not assume time_t is signed.
11541 (select_wrapper): Remove; we now use pselect.
11542 (Fprocess_attributes): Now generates ns-resolution time stamps.
11543
11544 * sysdep.c: Include utimens.h. Don't include utime.h
11545 or worry about struct utimbuf; gnulib does that for us now.
11546 (gettimeofday): Remove; gnulib provides a substitute.
11547 (make_timeval): New function.
11548 (set_file_times): Now sets ns-resolution time stamps.
11549 New arg FD; all uses changed.
11550 (time_from_jiffies, ltime_from_jiffies, get_up_time)
11551 (system_process_attributes):
11552 Now returns ns-resolution time stamp. All uses changed.
11553 Check for time stamp overflow.
11554
11555 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
11556 provides a substitute now.
11557
11558 * systime.h: Include timespec.h rather than sys/time.h and time.h,
11559 since it guarantees struct timespec.
11560 (EMACS_TIME): Now struct timespec, so that we can support
11561 ns-resolution time stamps.
11562 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
11563 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
11564 (EMACS_USECS): Remove.
11565 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
11566 so multiply the arg by 1000 before storing it.
11567 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
11568 New macros.
11569 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
11570 Port to ns-resolution time stamps.
11571 (EMACS_TIME_NEG_P): Remove; replaced by....
11572 (EMACS_TIME_SIGN): New macro.
11573 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
11574 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
11575 (set_file_times, make_time, lisp_time_argument): Adjust signature.
11576 (make_timeval, make_lisp_time, decode_time_components): New decls.
11577 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
11578 that it mishandled time_t overflow. You can't compare by subtracting!
11579 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
11580 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
11581
11582 * term.c: Include <sys/time.h>.
11583 (timeval_to_Time): New function, for proper overflow wraparound.
11584 (term_mouse_position, term_mouse_click): Use it.
11585
11586 * undo.c (record_first_change): Support higher-resolution time stamps
11587 in the undo buffer.
11588 (Fprimitive_undo): Use them when restoring time stamps.
11589
11590 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
11591 (w32_get_internal_run_time):
11592 Port to higher-resolution Emacs time stamps.
11593 (ltime): Now accepts single 64-bit integer, as that's more convenient
11594 for callers.
11595
11596 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
11597
11598 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
11599 for compatibility with pselect. Support ns-resolution time stamps.
11600
11601 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
11602
11603 * xselect.c (wait_for_property_change, x_get_foreign_selection):
11604 Check for time stamp overflow, and support ns-resolution time stamps.
11605
11606 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
11607 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
11608 (timeval_subtract): Remove; no longer needed.
11609 (XTflash, XTring_bell, x_wait_for_event):
11610 Port to ns-resolution time stamps. Don't assume time_t is signed.
11611
11612 2012-06-22 Chong Yidong <cyd@gnu.org>
11613
11614 * xdisp.c (x_consider_frame_title): Revert last change.
11615
11616 2012-06-22 Eli Zaretskii <eliz@gnu.org>
11617
11618 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
11619 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
11620 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
11621 staticidx goes up to 1597 out of 1600 = 0x640.)
11622
11623 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
11624
11625 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
11626 Otherwise, the umask might be mistakenly 0 while handling input signals.
11627
11628 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11629
11630 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
11631
11632 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
11633
11634 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
11635 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
11636 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
11637 access to `contents' member of Lisp_Vector objects with AREF and ASET
11638 where appropriate.
11639
11640 2012-06-19 Chong Yidong <cyd@gnu.org>
11641
11642 * frame.c (delete_frame): When selecting a frame on a different
11643 text terminal, do not alter the terminal's top-frame.
11644
11645 * xdisp.c (format_mode_line_unwind_data): Record the target
11646 frame's selected window and its terminal's top-frame.
11647 (unwind_format_mode_line): Restore them.
11648 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
11649 Callers changed.
11650 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
11651 since tty frames can be explicitly named.
11652 (prepare_menu_bars): Likewise.
11653
11654 * term.c (Ftty_top_frame): New function.
11655
11656 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11657
11658 Port byte-code-meter to modern targets.
11659 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
11660 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
11661 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
11662 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
11663 (METER_1, METER_2): Simplify.
11664
11665 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11666
11667 * data.c (Fdefalias): Return `symbol' (bug#11686).
11668
11669 2012-06-18 Martin Rudalics <rudalics@gmx.at>
11670
11671 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
11672 gets killed during executing of this function (Bug#11665).
11673 Try to always return Qt when the buffer has been actually killed.
11674 (Vkill_buffer_query_functions): In doc-string say that functions
11675 run by this hook should not change the current buffer.
11676
11677 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11678
11679 Fix recently-introduced process.c problems found by static checking.
11680 * process.c (write_queue_push, write_queue_pop, send_process):
11681 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
11682 (write_queue_pop): Fix pointer signedness problem.
11683 (send_process): Remove unused local.
11684
11685 2012-06-17 Chong Yidong <cyd@gnu.org>
11686
11687 * xdisp.c (redisplay_internal): No need to redisplay terminal
11688 frames that are not on top.
11689
11690 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
11691
11692 * process.c (make_process): Initialize write_queue.
11693 (write_queue_push, write_queue_pop): New functions.
11694 (send_process): Use them to maintain correct ordering of process
11695 writes (Bug#10815).
11696
11697 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
11698
11699 * lisp.h (eassert): Assume C89 or later.
11700 This removes the need for CHECK.
11701 (CHECK): Remove. Its comments about always evaluating its
11702 argument were confusing, as 'eassert' typically does not evaluate
11703 its argument.
11704
11705 * coding.c (produce_chars): Use ptrdiff_t, not int.
11706
11707 * xterm.c (x_draw_underwave): Check for integer overflow.
11708 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
11709
11710 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
11711
11712 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
11713 referenced (Bug#11583).
11714
11715 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
11716
11717 Implement wave-style variant of underlining.
11718 * dispextern.h (face_underline_type): New enum.
11719 (face): Add field for underline type.
11720 * nsterm.m (ns_draw_underwave): New function.
11721 (ns_draw_text_decoration): Use it.
11722 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
11723 New functions.
11724 (x_draw_glyph_string): Use them.
11725 * xfaces.c (Qline, Qwave): New Lisp objects.
11726 (check_lface_attrs, merge_face_ref)
11727 (Finternal_set_lisp_face_attribute, realize_x_face):
11728 Handle wave-style underline face attributes.
11729 * xterm.c (x_draw_underwave): New function.
11730 (x_draw_glyph_string): Use it.
11731
11732 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
11733
11734 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
11735 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
11736 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
11737 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
11738 ($(BLD)/w32select.$(O)): Update dependencies.
11739
11740 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11741
11742 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
11743 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
11744 * character.c (_fetch_multibyte_char_p): Remove.
11745 * alloc.c: Include "character.h" before "buffer.h".
11746 * bidi.c: Likewise.
11747 * buffer.c: Likewise.
11748 * bytecode.c: Likewise.
11749 * callint.c: Likewise.
11750 * callproc.c: Likewise.
11751 * casefiddle.c: Likewise.
11752 * casetab.c: Likewise.
11753 * category.c: Likewise.
11754 * cmds.c: Likewise.
11755 * coding.c: Likewise.
11756 * composite.c: Likewise.
11757 * dired.c: Likewise.
11758 * dispnew.c: Likewise.
11759 * doc.c: Likewise.
11760 * dosfns.c: Likewise.
11761 * editfns.c: Likewise.
11762 * emacs.c: Likewise.
11763 * fileio.c: Likewise.
11764 * filelock.c: Likewise.
11765 * font.c: Likewise.
11766 * fontset.c: Likewise.
11767 * fringe.c: Likewise.
11768 * indent.c: Likewise.
11769 * insdel.c: Likewise.
11770 * intervals.c: Likewise.
11771 * keyboard.c: Likewise.
11772 * keymap.c: Likewise.
11773 * lread.c: Likewise.
11774 * macros.c: Likewise.
11775 * marker.c: Likewise.
11776 * minibuf.c: Likewise.
11777 * nsfns.m: Likewise.
11778 * nsmenu.m: Likewise.
11779 * print.c: Likewise.
11780 * process.c: Likewise.
11781 * regex.c: Likewise.
11782 * region-cache.c: Likewise.
11783 * search.c: Likewise.
11784 * syntax.c: Likewise.
11785 * term.c: Likewise.
11786 * textprop.c: Likewise.
11787 * undo.c: Likewise.
11788 * unexsol.c: Likewise.
11789 * w16select.c: Likewise.
11790 * w32fns.c: Likewise.
11791 * w32menu.c: Likewise.
11792 * window.c: Likewise.
11793 * xdisp.c: Likewise.
11794 * xfns.c: Likewise.
11795 * xmenu.c: Likewise.
11796 * xml.c: Likewise.
11797 * xselect.c: Likewise.
11798
11799 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11800
11801 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
11802 If all the glyphs of the glyph row came from strings, and we have no
11803 cursor positioning clues, put the cursor on the first glyph of the
11804 row.
11805 (handle_face_prop): Use chunk-relative overlay string index when
11806 indexing into it->string_overlays array. (Bug#11653)
11807 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
11808 the rightmost. (Bug#11720)
11809
11810 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11811
11812 * category.h (CHAR_HAS_CATEGORY): Define as inline.
11813 (CATEGORY_MEMBER): Enforce 1/0 value.
11814 * category.c (_temp_category_set): Remove.
11815
11816 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11817
11818 * window.c (Fdelete_other_windows_internal)
11819 (Fdelete_window_internal): Don't access frame's mouse highlight
11820 info of the initial frame. (Bug#11677)
11821
11822 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
11823
11824 * .gdbinit (xgetint): Fix recently-introduced paren typo.
11825 Assume USE_2_TAGS_FOR_INTS.
11826 (xreload): Adjust $tagmask width to match recent lisp.h change.
11827
11828 Simplify lisp.h in minor ways that should not affect code.
11829 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
11830 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
11831 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
11832 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
11833 (INTTYPEBITS): New macro, for clarity.
11834 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
11835 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
11836 Simplify now that USE_LSB_TAG is always defined.
11837 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
11838 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
11839
11840 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
11841
11842 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
11843
11844 2012-06-13 Glenn Morris <rgm@gnu.org>
11845
11846 * s/bsd-common.h (BSD4_3):
11847 * s/usg5-4-common.h (USG5_4): No longer define; unused.
11848
11849 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
11850
11851 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
11852 instead of union.
11853 (XLI, XIL): Define.
11854 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
11855 Use them.
11856 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
11857 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
11858 * alloc.c (widen_to_Lisp_Object): Remove.
11859 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
11860 * frame.c (delete_frame): Remove outdated comment.
11861 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
11862 USE_LISP_UNION_TYPE.
11863 (Fw32_unregister_hot_key): Likewise.
11864 (Fw32_toggle_lock_key): Likewise.
11865 * w32menu.c (add_menu_item): Likewise.
11866 (w32_menu_display_help): Use XIL instead of checking
11867 USE_LISP_UNION_TYPE.
11868 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
11869 (init_heap): Likewise.
11870 * w32term.c (w32_read_socket): Update comment.
11871
11872 2012-06-13 Glenn Morris <rgm@gnu.org>
11873
11874 * s/usg5-4-common.h, src/s/unixware.h:
11875 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
11876
11877 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11878
11879 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
11880
11881 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
11882 * alloc.c (make_number) [!defined make_number]:
11883 Remove, as lisp.h always defines this now.
11884 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
11885 (roundup_size): Verify that it is a power of 2.
11886 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
11887 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
11888 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
11889 -DUSE_LSB_TAG=0, to override the automatically-selected default.
11890 USE_LSB_TAG now is always defined to be either 0 or 1.
11891 All uses changed.
11892 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
11893 code works fine either way, and efficiency is not a concern here,
11894 as the union type is for debugging, not for production.
11895 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
11896 Use an inline function on all platforms when using the union type,
11897 since this is simpler and 'static inline' can be used portably
11898 within Emacs now.
11899 (LISP_INITIALLY_ZERO): New macro.
11900 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
11901 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
11902
11903 2012-06-12 Glenn Morris <rgm@gnu.org>
11904
11905 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11906
11907 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11908
11909 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11910 Move BROKEN_SIGIO to configure.
11911
11912 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11913 Move NO_TERMIO to configure.
11914
11915 2012-06-12 Chong Yidong <cyd@gnu.org>
11916
11917 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11918 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11919 MagickExportImagePixels is undefined.
11920
11921 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11922
11923 * image.c (imagemagick_load_image): Remove unused label.
11924
11925 2012-06-11 Glenn Morris <rgm@gnu.org>
11926
11927 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11928 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11929 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11930 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11931
11932 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11933
11934 * alloc.c (make_byte_code): New function.
11935 (Fmake_byte_code): Use it. Don't purify here.
11936 * lread.c (read1): Use it as well to avoid extra allocation.
11937
11938 2012-06-11 Chong Yidong <cyd@gnu.org>
11939
11940 * image.c (imagemagick_load_image): Implement transparency.
11941
11942 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11943
11944 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11945 account for preceding backslashes. (Bug#11663)
11946
11947 2012-06-09 Chong Yidong <cyd@gnu.org>
11948
11949 * term.c: Support italics in capable terminals (Bug#9652).
11950 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11951 (turn_on_face): Output using TS_enter_italic_mode if available.
11952 Don't handle unused blinking and alt-charset cases.
11953 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11954 and tty_alt_charset_p cases.
11955 (tty_capable_p, init_tty): Support italics.
11956
11957 * termchar.h (struct tty_display_info): Add field for italics.
11958 Remove unused blink field.
11959
11960 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11961 Handle slant.
11962
11963 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11964 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11965 tty_alt_charset_p. Add tty_italic_p.
11966
11967 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11968
11969 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11970 dbus_type_is_basic if available.
11971 (xd_extract_signed, xd_extract_unsigned): Rename from
11972 extract_signed and extract_unsigned, respectively. Adapt callers.
11973
11974 2012-06-09 Chong Yidong <cyd@gnu.org>
11975
11976 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11977
11978 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11979 case (Bug#9752).
11980
11981 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11982
11983 * xdisp.c (vmessage): Treat frame message as multibyte.
11984 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11985 would generate the diagnostic "Making \302\247 buffer-local while
11986 let-bound!".
11987
11988 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11989
11990 * dispnew.c (showing_window_margins_p): Undo last change, which
11991 was done due to an inadvertent commit.
11992 (adjust_frame_glyphs_for_frame_redisplay): Do call
11993 showing_window_margins_p.
11994
11995 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11996
11997 * eval.c (Fmake_var_non_special): New primitive.
11998 (syms_of_eval): Defsubr it.
11999 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
12000
12001 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
12002
12003 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
12004 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
12005
12006 2012-06-08 Eli Zaretskii <eliz@gnu.org>
12007
12008 * alloc.c (allocate_vectorlike): Fix last change.
12009
12010 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
12011
12012 Block-based vector allocation of small vectors.
12013 * lisp.h (struct vectorlike_header): New field `nbytes',
12014 adjust comment accordingly.
12015 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
12016 to denote vector blocks. Adjust users (live_vector_p,
12017 mark_maybe_pointer, valid_lisp_object_p) accordingly.
12018 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
12019 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
12020 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
12021 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
12022 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
12023 (roundup_size): New constant.
12024 (struct vector_block): New data type.
12025 (vector_blocks, vector_free_lists, zero_vector): New variables.
12026 (all_vectors): Rename to `large_vectors'.
12027 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
12028 (sweep_vectors): New functions.
12029 (allocate_vectorlike): Return `zero_vector' as the only vector of
12030 0 items. Allocate new vector from block if vector size is less than
12031 or equal to VBLOCK_BYTES_MAX.
12032 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
12033 (init_alloc_once): Add call to init_vectors.
12034
12035 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
12036
12037 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
12038
12039 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
12040
12041 * doprnt.c (doprnt): Truncate multibyte char correctly.
12042 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
12043 would mishandle a string argument "Xc" if X was a multibyte
12044 character of length 2: it would truncate after X's first byte
12045 rather than including all of X.
12046
12047 2012-06-06 Chong Yidong <cyd@gnu.org>
12048
12049 * buffer.c (word_wrap): Doc fix.
12050
12051 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
12052
12053 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
12054
12055 2012-06-03 Glenn Morris <rgm@gnu.org>
12056
12057 * xdisp.c (tool-bar-style): Doc fix.
12058
12059 2012-06-03 Ulrich Müller <ulm@gentoo.org>
12060
12061 * Makefile.in (PAXCTL): Define.
12062 (temacs$(EXEEXT)): Disable memory randomization for the temacs
12063 binary via PaX flags if the paxctl utility is available.
12064 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
12065 Restore PaX flags to their default. (Bug#11398)
12066
12067 2012-06-03 Chong Yidong <cyd@gnu.org>
12068
12069 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
12070 buffer (Bug#11226).
12071
12072 2012-06-03 Chong Yidong <cyd@gnu.org>
12073
12074 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
12075 (note_mode_line_or_margin_highlight): If there is no help echo,
12076 use mode-line-default-help-echo. Handle the case where the mouse
12077 position is past the end of the mode line string.
12078
12079 * buffer.c (buffer_local_value_1): New function, split from
12080 Fbuffer_local_value; can return Qunbound.
12081 (Fbuffer_local_value): Use it.
12082 (Vmode_line_format): Docstring tweaks.
12083
12084 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
12085
12086 * sysdep.c (system_process_attributes): Improve comment.
12087
12088 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
12089
12090 * keyboard.c: Export real-this-command to Elisp.
12091 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
12092 and DEFVAR it. Update all users.
12093
12094 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
12095
12096 * minibuf.c (Fassoc_string): Remove duplicate declaration.
12097
12098 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
12099 Convert pctcpu and pctmem to Lisp float properly.
12100 Let the compiler fold better, as 100.0/0x8000 is exact.
12101
12102 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
12103
12104 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
12105 cons_block.
12106
12107 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
12108
12109 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
12110
12111 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
12112
12113 For a 'struct window', replace some Lisp_Object fields to
12114 bitfields where appropriate, remove unused fields.
12115 * window.h (struct window): Remove unused 'last_mark_x' and
12116 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
12117 change its type from Lisp_Object to bitfield.
12118 Change type of 'force_start', 'optional_new_start',
12119 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
12120 fields from Lisp_Object to bitfield. Adjust users accordingly.
12121
12122 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
12123
12124 Pacify gcc -Wdouble-precision when using Xaw.
12125 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
12126 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
12127 Use 'float' consistently, rather than 'float' in most places
12128 and 'double' in a couple of places.
12129
12130 2012-05-31 Eli Zaretskii <eliz@gnu.org>
12131
12132 * xdisp.c (handle_stop): Detect whether we have overlay strings
12133 loaded by testing it->current.overlay_string_index to be
12134 non-negative, instead of checking whether n_overlay_strings is
12135 positive. (Bug#11587)
12136
12137 2012-05-31 Chong Yidong <cyd@gnu.org>
12138
12139 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
12140
12141 * doc.c (Fsubstitute_command_keys): Doc fix.
12142
12143 2012-05-31 Eli Zaretskii <eliz@gnu.org>
12144
12145 * search.c (search_buffer): Remove calls to
12146 r_alloc_inhibit_buffer_relocation, as it is now called by
12147 maybe_unify_char, which was the cause of relocation of buffer text
12148 in bug#11519.
12149
12150 2012-05-31 Eli Zaretskii <eliz@gnu.org>
12151
12152 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
12153 for the duration of call to load_charset, to avoid problems with
12154 callers of maybe_unify_char that access buffer text through C
12155 pointers.
12156
12157 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
12158 decrement the inhibition flag, instead of just setting or
12159 resetting it.
12160
12161 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
12162
12163 Remove obsolete '#define static' cruft.
12164 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
12165 This #undef was "temporary" in 2000; it is no longer needed
12166 now that '#define static' has gone away.
12167 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
12168 (gray_bitmap_bits): Remove; no longer needed.
12169 All uses replaced with definiens.
12170 * xterm.c: Include "bitmaps/gray.xbm".
12171
12172 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
12173
12174 Clean up __executable_start, monstartup when --enable-profiling.
12175 The following changes affect the code only when profiling.
12176 * dispnew.c (__executable_start): Rename from safe_bcopy.
12177 Define only on platforms that need it.
12178 * emacs.c: Include <sys/gmon.h> when profiling.
12179 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
12180 (__executable_start): Remove decl, since lisp.h does it now.
12181 (safe_bcopy): Remove decl; no longer has that name.
12182 (main): Coalesce #if into single bit of code, for simplicity.
12183 Cast pointers to uintptr_t, since standard libraries want integers
12184 and not pointers.
12185 * lisp.h (__executable_start): New decl.
12186
12187 2012-05-31 Glenn Morris <rgm@gnu.org>
12188
12189 * image.c (Fimagemagick_types): Doc fix.
12190
12191 2012-05-30 Jim Meyering <meyering@redhat.com>
12192
12193 * callproc.c (Fcall_process_region): Include directory component
12194 in mkstemp error message (Bug#11586).
12195
12196 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
12197
12198 * alloc.c, lisp.h (make_pure_vector): Now static.
12199
12200 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
12201
12202 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
12203 Move to byte-run.el.
12204 (Fautoload): Do the hash-doc more carefully.
12205 * data.c (Fdefalias): Purify definition, except for keymaps.
12206 (Qdefun): Move from eval.c.
12207 * lisp.h (Qdefun): Remove.
12208 * lread.c (read1): Tiny simplification.
12209
12210 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
12211
12212 Do not create empty overlays with the evaporate property (Bug#9642).
12213 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
12214 Bug#9642, but explicitly check that the buffer the overlay would
12215 be moved to is live and rearrange lines to make sure that errors
12216 will not put the overlay in an inconsistent state.
12217 (Fdelete_overlay): Cosmetics.
12218
12219 2012-05-28 Eli Zaretskii <eliz@gnu.org>
12220
12221 * w32term.c (my_bring_window_to_top): New function.
12222 (x_raise_frame): Use handle returned by DeferWindowPos, which
12223 could be different from the original one.
12224 Call my_bring_window_to_top instead of my_set_foreground_window.
12225 (Bug#11513)
12226
12227 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
12228 by calling BringWindowToTop.
12229
12230 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
12231 (WM_EMACS_END): Increase by one.
12232
12233 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
12234
12235 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
12236 This avoids undefined behavior that might cause the eassert
12237 to not catch an out-of-range value.
12238
12239 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
12240
12241 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
12242 Update dependencies.
12243
12244 2012-05-27 Eli Zaretskii <eliz@gnu.org>
12245
12246 * bidi.c (bidi_mirror_char): Fix last change.
12247
12248 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
12249
12250 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
12251 when referring to sectname field in printf format.
12252
12253 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
12254
12255 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
12256 Only r_alloc_inhibit_buffer_relocation needed to be added;
12257 the others were already declared.
12258
12259 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
12260 before checking whether it's out of range. Put the check inside
12261 eassert. See
12262 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
12263
12264 2012-05-27 Ken Brown <kbrown@cornell.edu>
12265
12266 * callproc.c (Fcall_process): Restore a line that was accidentally
12267 commented out in the 2011-02-13 change (bug#11547).
12268
12269 2012-05-27 Eli Zaretskii <eliz@gnu.org>
12270
12271 * lisp.h [REL_ALLOC]: Add prototypes for external functions
12272 defined on ralloc.c.
12273
12274 * buffer.c [REL_ALLOC]: Remove prototypes of
12275 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
12276 they are now on lisp.h.
12277
12278 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
12279
12280 * search.c (search_buffer): Use it to inhibit relocation of buffer
12281 text while re_search_2 is doing its job, because re_search_2 is
12282 passed C pointers to buffer text. (Bug#11519)
12283
12284 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
12285 Update value to 24.
12286
12287 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
12288 state after an additional call to move_it_in_display_line_to, keep
12289 the values of it->max_ascent and it->max_descent found for the
12290 entire line.
12291 (pos_visible_p): Revert the comparison against bottom_y to what it
12292 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
12293 (Bug#11464)
12294
12295 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
12296
12297 Fix coding-related core dumps with gcc -ftrapv.
12298 The code was computing A - B, where A and B are pointers, and B is
12299 random garbage. This can lead to core dumps on platforms that
12300 have special pointer registers, and it also leads to core dumps on
12301 x86-64 when compiled with gcc -ftrapv. The fix is to compute
12302 A - B only when B is initialized properly.
12303 * coding.c (coding_set_source, coding_set_destination): Return void.
12304 (coding_change_source, coding_change_destinations): New functions,
12305 with the old behaviors of coding_set_source and coding_set_destination.
12306 All callers that need an offset changed to use these new functions.
12307
12308 2012-05-26 Glenn Morris <rgm@gnu.org>
12309
12310 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
12311
12312 2012-05-26 Eli Zaretskii <eliz@gnu.org>
12313
12314 Extend mouse support on W32 text-mode console.
12315 * xdisp.c (draw_row_with_mouse_face):
12316 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
12317
12318 * w32console.c: Include window.h.
12319 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
12320 New functions.
12321 (initialize_w32_display): Initialize mouse-highlight data.
12322
12323 * w32inevt.c: Include termchar.h and window.h.
12324 (do_mouse_event): Support mouse-autoselect-window. When the mouse
12325 moves, call note_mouse_highlight. If help_echo changed, call
12326 gen_help_event to produce help-echo message in the echo area.
12327 Call clear_mouse_face if mouse_face_hidden is set in the mouse
12328 highlight info.
12329
12330 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
12331
12332 * lread.c (read1): Simplify slightly to avoid an overflow warning
12333 with GCC 4.7.0 on x86-64.
12334
12335 2012-05-26 Eli Zaretskii <eliz@gnu.org>
12336
12337 * bidi.c (bidi_mirror_char): Revert last change: an int is
12338 definitely wide enough here.
12339
12340 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
12341
12342 Fix integer width and related bugs (Bug#9874).
12343 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
12344 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
12345 (string_bytes, check_sblock, allocate_string_data):
12346 (compact_small_strings, Fmake_bool_vector, make_string)
12347 (make_unibyte_string, make_multibyte_string)
12348 (make_string_from_bytes, make_specified_string)
12349 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
12350 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
12351 (mark_vectorlike):
12352 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12353 (allocate_pseudovector):
12354 Use int, not EMACS_INT, where int is wide enough.
12355 (inhibit_garbage_collection, Fgarbage_collect):
12356 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12357 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
12358 int might not be wide enough.
12359 (bidi_cache_search, bidi_cache_find, bidi_init_it)
12360 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
12361 (bidi_at_paragraph_end, bidi_find_paragraph_start)
12362 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
12363 (bidi_level_of_next_char, bidi_move_to_visually_next):
12364 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12365 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
12366 (Fkill_buffer, Fset_buffer_major_mode)
12367 (advance_to_char_boundary, Fbuffer_swap_text)
12368 (Fset_buffer_multibyte, overlays_at, overlays_in)
12369 (overlay_touches_p, struct sortvec, record_overlay_string)
12370 (overlay_strings, recenter_overlay_lists)
12371 (adjust_overlays_for_insert, adjust_overlays_for_delete)
12372 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
12373 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
12374 (Foverlay_recenter, last_overlay_modification_hooks_used)
12375 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
12376 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12377 (validate_region): Omit unnecessary test for b <= e,
12378 since that's guaranteed by the previous test.
12379 (adjust_overlays_for_delete): Avoid pos + length overflow.
12380 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
12381 (report_overlay_modification):
12382 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12383 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
12384 Omit pointer cast, which isn't needed anyway, and doesn't work
12385 after the EMACS_INT -> ptrdiff_t change.
12386 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
12387 * buffer.h: Adjust decls to match defn changes elsewhere.
12388 (struct buffer_text, struct buffer):
12389 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12390 Use EMACS_INT, not int, where int might not be wide enough.
12391 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
12392 not int, to avoid needless 32-bit limit on 64-bit hosts.
12393 (exec_byte_code): Use tighter memory-full test, one that checks
12394 for alloca overflow. Don't compute the address of the object just
12395 before an array, as that's not portable. Use EMACS_INT, not
12396 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
12397 * callint.c (Fcall_interactively):
12398 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12399 * callproc.c (call_process_kill, Fcall_process):
12400 Don't assume pid_t fits into an Emacs fixnum.
12401 (call_process_cleanup, Fcall_process, child_setup):
12402 Don't assume pid_t fits into int.
12403 (call_process_cleanup, Fcall_process, delete_temp_file)
12404 (Fcall_process_region):
12405 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12406 (Fcall_process): Simplify handling of volatile integers.
12407 Use int, not EMACS_INT, where int will do.
12408 * casefiddle.c (casify_object, casify_region, operate_on_word)
12409 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
12410 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12411 (casify_object): Avoid integer overflow when overallocating buffer.
12412 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
12413 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
12414 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
12415 * category.h (CATEGORYP): Don't assume arg is nonnegative.
12416 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
12417 integers are now checked earlier. All uses replaced with XINT.
12418 (ccl_driver):
12419 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12420 For CCL_MapSingle, check that content and value are in int range.
12421 (ccl_driver, Fregister_code_conversion_map):
12422 Check that Vcode_version_map_vector is a vector.
12423 (resolve_symbol_ccl_program): Check that vector header is in range.
12424 Always copy the vector, so that we can check its contents reliably
12425 now rather than having to recheck each instruction as it's being
12426 executed. Check that vector words fit in 'int'.
12427 (ccl_get_compiled_code, Fregister_ccl_program)
12428 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
12429 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
12430 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
12431 contents are in range.
12432 (Fccl_execute_on_string): Check that status is in range.
12433 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
12434 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
12435 Accept and return EMACS_INT, not int, because callers can pass values
12436 out of 'int' range.
12437 (c_string_width, strwidth, lisp_string_width, chars_in_text)
12438 (multibyte_chars_in_text, parse_str_as_multibyte)
12439 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
12440 (str_as_unibyte, str_to_unibyte, string_count_byte8)
12441 (string_escape_byte8, Fget_byte):
12442 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12443 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
12444 avoid mishandling large integers.
12445 * character.h: Adjust decls to match defn changes elsewhere.
12446 * charset.c (load_charset_map_from_file, find_charsets_in_text)
12447 (Ffind_charset_region):
12448 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12449 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
12450 (load_charset_map_from_vector, Fdefine_charset_internal):
12451 Don't assume fixnum fits in int.
12452 (load_charset_map_from_vector, Fmap_charset_chars):
12453 Remove now-unnecessary CHECK_NATNUMs.
12454 (Fdefine_charset_internal): Check ranges here, more carefully.
12455 Don't rely on undefined behavior with signed left shift overflow.
12456 Don't assume unsigned int fits into fixnum, or that fixnum fits
12457 into unsigned int. Don't require max_code to be a valid fixnum;
12458 that's not true for gb10830 4-byte on a 32-bit host. Allow
12459 invalid_code to be a cons, for the same reason. Require code_offset
12460 to be a character. Avoid int overflow if max_char is close
12461 to INT_MAX.
12462 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
12463 this is intended anyway and avoids some undefined behavior.
12464 (load_charset_map): Pass unsigned, not int, as 2nd arg of
12465 INDEX_TO_CODE_POINT, as that's what it expects.
12466 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
12467 * charset.h (DECODE_CHAR): Return int, not unsigned;
12468 this is what was intended anyway, and it avoids undefined behavior.
12469 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
12470 integer-overflow issues.
12471 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
12472 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
12473 where the argument is EMACS_INT, and this behavior is not intended.
12474 * chartab.c (Fmake_char_table, Fset_char_table_range)
12475 (uniprop_get_decoder, uniprop_get_encoder):
12476 Don't assume fixnum fits in int.
12477 * cmds.c (move_point): New function, that does the gist of
12478 Fforward_char and Fbackward_char, but does so while checking
12479 for integer overflow more accurately.
12480 (Fforward_char, Fbackward_char): Use it.
12481 (Fforward_line, Fend_of_line, internal_self_insert)
12482 (internal_self_insert):
12483 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12484 Fix a FIXME, by checking for integer overflow when calculating
12485 target_clm and actual_clm.
12486 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
12487 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
12488 (ASSURE_DESTINATION, coding_alloc_by_realloc)
12489 (coding_alloc_by_making_gap, alloc_destination)
12490 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
12491 (encode_coding_utf_16, detect_coding_emacs_mule)
12492 (decode_coding_emacs_mule, encode_coding_emacs_mule)
12493 (detect_coding_iso_2022, decode_coding_iso_2022)
12494 (encode_invocation_designation, encode_designation_at_bol)
12495 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
12496 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
12497 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
12498 (encode_coding_ccl, encode_coding_raw_text)
12499 (detect_coding_charset, decode_coding_charset)
12500 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
12501 (produce_composition, produce_charset, produce_annotation)
12502 (decode_coding, handle_composition_annotation)
12503 (handle_charset_annotation, consume_chars, decode_coding_gap)
12504 (decode_coding_object, encode_coding_object, detect_coding_system)
12505 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
12506 (code_convert_region, code_convert_string)
12507 (Fdefine_coding_system_internal)
12508 (coding_set_source, coding_set_destination):
12509 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12510 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
12511 (Fdefine_coding_system_internal):
12512 Don't assume fixnums fit in int.
12513 (decode_coding_gap, decode_coding_object, encode_coding_object)
12514 (Fread_coding_system, Fdetect_coding_region)
12515 (Funencodable_char_position, Fcheck_coding_systems_region)
12516 (get_translation, handle_composition_annotation, consume_chars):
12517 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12518 (consume_chars): Rewrite to not calculate an address outside buffer.
12519 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
12520 Don't access memory outside of the args array.
12521 (Fdefine_coding_system_internal): Check for charset-id overflow.
12522 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
12523 result of ENCODE_CHAR.
12524 * coding.h: Adjust decls to match defn changes elsewhere.
12525 (struct coding_system):
12526 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12527 * composite.c (get_composition_id, find_composition)
12528 (run_composition_function, update_compositions)
12529 (compose_text, composition_gstring_put_cache)
12530 (composition_gstring_p, composition_gstring_width)
12531 (fill_gstring_header, fill_gstring_body, autocmp_chars)
12532 (composition_compute_stop_pos, composition_reseat_it)
12533 (composition_update_it, struct position_record)
12534 (find_automatic_composition, composition_adjust_point)
12535 (Fcomposition_get_gstring, Ffind_composition_internal):
12536 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12537 (update_compositions):
12538 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12539 * composite.h: Adjust decls to match defn changes elsewhere.
12540 (struct composition):
12541 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12542 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
12543 Do not attempt to compute the address of the object just before a
12544 buffer; this is not portable.
12545 (Faref, Faset):
12546 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12547 (Faset): Use int, not EMACS_INT, where int is wide enough.
12548 (Fstring_to_number): Don't assume fixnums fit in int.
12549 (Frem): Don't assume arg is nonnegative.
12550 * dbusbind.c (xd_append_arg): Check for integers out of range.
12551 (Fdbus_call_method): Don't overflow the timeout int.
12552 (extract_signed, extract_unsigned): New functions.
12553 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
12554 (xd_get_connection_references): Return ptrdiff_t, not int.
12555 All uses changed.
12556 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
12557 (xd_read_message_1):
12558 Use int, not unsigned, where the dbus API uses int.
12559 (Fdbus_message_internal): Don't overflow mtype.
12560 (syms_of_dbusbind): Allocate right-sized buffer for integers.
12561 * dired.c (directory_files_internal, file_name_completion, scmp)
12562 (file_name_completion_stat):
12563 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12564 (file_name_completion): Don't overflow matchcount.
12565 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
12566 * dispextern.h: Adjust decls to match defn changes elsewhere.
12567 (struct text_pos, struct glyph, struct bidi_saved_info)
12568 (struct bidi_string_data, struct bidi_it, struct composition_it)
12569 (struct it):
12570 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12571 (struct display_pos, struct composition_it, struct it):
12572 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12573 * dispnew.c (increment_matrix_positions)
12574 (increment_row_positions, mode_line_string)
12575 (marginal_area_string):
12576 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12577 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
12578 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12579 (duration_to_sec_usec): New function, to check for overflow better.
12580 (Fsleep_for, sit_for): Use it.
12581 * doc.c (get_doc_string, store_function_docstring):
12582 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12583 (get_doc_string, Fsnarf_documentation):
12584 Use int, not EMACS_INT, where int is wide enough.
12585 (get_doc_string):
12586 Use SAFE_ALLOCA, not alloca.
12587 Check for overflow when converting EMACS_INT to off_t.
12588 * doprnt.c (doprnt):
12589 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12590 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
12591 Don't assume uid_t fits into fixnum.
12592 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
12593 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
12594 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
12595 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
12596 (general_insert_function)
12597 (Finsert_char, make_buffer_string, make_buffer_string_both)
12598 (update_buffer_properties, Fbuffer_substring)
12599 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
12600 (Fsubst_char_in_region, check_translation)
12601 (Ftranslate_region_internal, save_restriction_restore, Fformat)
12602 (transpose_markers, Ftranspose_regions):
12603 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12604 (clip_to_bounds): Move to lisp.h as an inline function).
12605 (Fconstrain_to_field): Don't assume integers are nonnegative.
12606 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
12607 (Fsubst_char_in_region, Fsave_restriction):
12608 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12609 (Femacs_pid): Don't assume pid_t fits into fixnum.
12610 (lo_time): Use int, not EMACS_INT, when int suffices.
12611 (lisp_time_argument): Check for usec out of range.
12612 (Fencode_time): Don't assume fixnum fits in int.
12613 (Fuser_login_name, Fuser_full_name): Signal an error
12614 if a uid argument is out of range, rather than relying on
12615 undefined behavior.
12616 (Fformat_time_string): Remove now-unnecessary check.
12617 lisp_time_argument checks for out-of-range usec now.
12618 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
12619 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
12620 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
12621 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
12622 (init_cmdargs, Fdump_emacs):
12623 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12624 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
12625 the bottom (typically) 32 bits of the fixnum.
12626 * eval.c (specpdl_size, call_debugger):
12627 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12628 (when_entered_debugger, Fbacktrace_debug):
12629 Don't assume fixnum can fit in int.
12630 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
12631 the object just before a buffer; this is not portable.
12632 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
12633 (grow_specpdl, unbind_to):
12634 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12635 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
12636 (grow_specpdl): Simplify allocation by using xpalloc.
12637 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
12638 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
12639 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
12640 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12641 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
12642 (a_write, e_write):
12643 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12644 (Fcopy_file, non_regular_nbytes, read_non_regular)
12645 (Finsert_file_contents):
12646 Use int, not EMACS_INT, where int is wide enough.
12647 (READ_BUF_SIZE): Verify that it fits in int.
12648 (Finsert_file_contents): Check that counts are in proper range,
12649 rather than assuming fixnums fit into ptrdiff_t etc.
12650 Don't assume fixnums fit into int.
12651 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
12652 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
12653 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
12654 (string_char_to_byte, string_byte_to_char)
12655 (string_make_multibyte, string_to_multibyte)
12656 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
12657 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
12658 (substring_both, Fdelete, internal_equal, Ffillarray)
12659 (Fclear_string, mapcar1)
12660 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
12661 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
12662 (larger_vector, make_hash_table, maybe_resize_hash_table)
12663 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
12664 (Fmaphash, secure_hash):
12665 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12666 (concat): Check for string index and length overflow.
12667 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
12668 (Frequire):
12669 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12670 (larger_vector): New API (vec, incr_min, size_max) replaces old
12671 one (vec, new_size, init). This catches size overflow.
12672 INIT was removed because it was always Qnil.
12673 All callers changed.
12674 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
12675 the upper bound on a hash table index size.
12676 (make_hash_table, maybe_resize_hash_table): Use it.
12677 (secure_hash): Computer start_byte and end_byte only after
12678 they're known to be in ptrdiff_t range.
12679 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
12680 (Ffont_get_glyphs, Ffont_at):
12681 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12682 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
12683 (Flist_fonts, Fopen_font):
12684 Don't assume fixnum can fit in int.
12685 (check_gstring): Don't assume index can fit in int.
12686 (font_match_p): Check that fixnum is a character, not a nonnegative
12687 fixnum, since the later code needs to stuff it into an int.
12688 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
12689 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
12690 conversion overflow issues.
12691 (Fopen_font): Check for integer out of range.
12692 (Ffont_get_glyphs): Don't assume index can fit in int.
12693 * font.h: Adjust decls to match defn changes elsewhere.
12694 * fontset.c (reorder_font_vector): Redo score calculation to avoid
12695 integer overflow.
12696 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
12697 printmax_t, where ptrdiff_t is wide enough.
12698 (Finternal_char_font):
12699 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12700 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
12701 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
12702 (Fset_frame_position, x_set_frame_parameters)
12703 (x_set_line_spacing, x_set_border_width)
12704 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
12705 Check that fixnums are in proper range for system types.
12706 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
12707 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12708 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
12709 Use SAFE_ALLOCA_LISP, not alloca.
12710 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
12711 intptr_t is wide enough.
12712 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
12713 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
12714 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
12715 Check for fixnum out of range.
12716 * ftfont.c (ftfont_list): Don't assume index fits in int.
12717 Check that fixnums are in proper range for system types.
12718 (ftfont_shape_by_flt):
12719 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12720 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12721 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12722 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
12723 Check that fixnums are in proper range for system types.
12724 * gnutls.h: Adjust decls to match defn changes elsewhere.
12725 * gtkutil.c (xg_dialog_run):
12726 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12727 (update_frame_tool_bar):
12728 Check that fixnums are in proper range for system types.
12729 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
12730 (lookup_image): Check that fixnums are in range for system types.
12731 * indent.c (last_known_column, last_known_column_point):
12732 (current_column_bol_cache):
12733 (skip_invisible, current_column, check_display_width):
12734 (check_display_width, scan_for_column, current_column_1)
12735 (Findent_to, Fcurrent_indentation, position_indentation)
12736 (indented_beyond_p, Fmove_to_column, compute_motion):
12737 (Fcompute_motion, Fvertical_motion):
12738 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12739 (last_known_column_modified): Use EMACS_INT, not int.
12740 (check_display_width):
12741 (Fcompute_motion):
12742 Check that fixnums and floats are in proper range for system types.
12743 (compute_motion): Don't assume index or fixnum fits in int.
12744 (compute_motion, Fcompute_motion):
12745 Use int, not EMACS_INT, when it is wide enough.
12746 (vmotion): Omit local var start_hpos that is always 0; that way
12747 we don't need to worry about overflow in expressions involving it.
12748 * indent.h: Adjust decls to match defn changes elsewhere.
12749 (struct position):
12750 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12751 Use int, not EMACS_INT, where int is wide enough.
12752 Remove unused members ovstring_chars_done and tab_offset;
12753 all uses removed.
12754 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12755 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
12756 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12757 (make_gap, copy_text, insert, insert_and_inherit)
12758 (insert_before_markers, insert_before_markers_and_inherit)
12759 (insert_1, count_combining_before, count_combining_after)
12760 (insert_1_both, insert_from_string)
12761 (insert_from_string_before_markers, insert_from_string_1)
12762 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
12763 (adjust_after_replace, adjust_after_insert, replace_range)
12764 (replace_range_2, del_range, del_range_1, del_range_byte)
12765 (del_range_both, del_range_2, modify_region)
12766 (prepare_to_modify_buffer, signal_before_change)
12767 (signal_after_change, Fcombine_after_change_execute):
12768 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12769 * intervals.c (traverse_intervals, rotate_right, rotate_left)
12770 (balance_an_interval, split_interval_right, split_interval_left)
12771 (find_interval, next_interval, update_interval)
12772 (adjust_intervals_for_insertion, delete_node, delete_interval)
12773 (interval_deletion_adjustment, adjust_intervals_for_deletion)
12774 (static_offset_intervals, offset_intervals)
12775 (merge_interval_right, merge_interval_left, make_new_interval)
12776 (graft_intervals_into_buffer, temp_set_point_both)
12777 (temp_set_point, set_point, adjust_for_invis_intang)
12778 (set_point_both, move_if_not_intangible, get_property_and_range)
12779 (get_local_map, copy_intervals, copy_intervals_to_string)
12780 (compare_string_intervals, set_intervals_multibyte_1):
12781 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12782 * intervals.h: Adjust decls to match defn changes elsewhere.
12783 (struct interval):
12784 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12785 * keyboard.c (this_command_key_count, this_single_command_key_start)
12786 (before_command_key_count, before_command_echo_length, echo_now)
12787 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
12788 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
12789 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
12790 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
12791 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12792 (last_non_minibuf_size, last_point_position, echo_truncate)
12793 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
12794 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
12795 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
12796 (stuff_buffered_input):
12797 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12798 (last_auto_save, command_loop_1, read_char):
12799 Use EMACS_INT, not int, to avoid integer overflow.
12800 (record_char): Avoid overflow in total_keys computation.
12801 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
12802 * keyboard.h: Adjust decls to match defn changes elsewhere.
12803 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
12804 (Fkey_description, Fdescribe_vector, Flookup_key):
12805 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12806 (click_position): New function, to check that positions are in range.
12807 (Fcurrent_active_maps):
12808 (describe_command):
12809 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12810 (Faccessible_keymaps, Fkey_description):
12811 (preferred_sequence_p):
12812 Don't assume fixnum can fit into int.
12813 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
12814 Check for integer overflow in size calculations.
12815 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
12816 avoid mishandling large integers.
12817 * lisp.h: Adjust decls to match defn changes elsewhere.
12818 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
12819 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
12820 (struct Lisp_Marker):
12821 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12822 (clip_to_bounds): Now an inline function, moved here from editfns.c.
12823 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
12824 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
12825 All callers changed.
12826 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
12827 Assume the arg has valid form, since it always does.
12828 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
12829 unsigned integer system type.
12830 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
12831 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
12832 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12833 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
12834 (duration_to_sec_usec): New decl.
12835 * lread.c (read_from_string_index, read_from_string_index_byte)
12836 (read_from_string_limit, readchar, unreadchar, openp)
12837 (read_internal_start, read1, oblookup):
12838 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12839 (Fload, readevalloop, Feval_buffer, Feval_region):
12840 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12841 (openp): Check for out-of-range argument to 'access'.
12842 (read1): Use int, not EMACS_INT, where int is wide enough.
12843 Don't assume fixnum fits into int.
12844 Fix off-by-one error that can read outside a buffer.
12845 (read_filtered_event): Use duration_to_sec_usec
12846 to do proper overflow checking on durations.
12847 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
12848 in size calculation.
12849 (Fexecute_kbd_macro):
12850 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12851 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
12852 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
12853 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
12854 (set_marker_both, set_marker_restricted_both, marker_position)
12855 (marker_byte_position, Fbuffer_has_markers_at):
12856 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12857 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
12858 * menu.c (ensure_menu_items): Rename from grow_menu_items.
12859 It now merely ensures that the menu is large enough, without
12860 necessarily growing it, as this avoids some integer overflow issues.
12861 All callers changed.
12862 (keymap_panes, parse_single_submenu, Fx_popup_menu):
12863 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12864 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
12865 Use SAFE_ALLOCA_LISP, not alloca.
12866 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
12867 to EMACS_INT. Check that fixnums are in proper range for system types.
12868 * minibuf.c (minibuf_prompt_width, string_to_object)
12869 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
12870 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
12871 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12872 (get_minibuffer, read_minibuf_unwind):
12873 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12874 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
12875 this simplifies overflow checking. All callers changed.
12876 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
12877 (Ftest_completion):
12878 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12879 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
12880 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
12881 Check that fixnums are in proper range for system types.
12882 (Fx_create_frame, Fx_show_tip):
12883 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12884 * nsfont.m (ns_findfonts, nsfont_list_family):
12885 Don't assume fixnum fits in long.
12886 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
12887 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12888 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
12889 wide enough.
12890 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
12891 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12892 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
12893 (PRINTDECLARE, PRINTPREPARE):
12894 (strout, print_string):
12895 (print, print_preprocess, print_check_string_charset_prop)
12896 (print_object):
12897 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12898 (PRINTDECLARE):
12899 (temp_output_buffer_setup, Fprin1_to_string, print_object):
12900 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12901 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
12902 (printchar, strout): Use xpalloc to catch size calculation overflow.
12903 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12904 (print_error_message): Use SAFE_ALLOCA, not alloca.
12905 (print_object): Use int, not EMACS_INT, where int is wide enough.
12906 (print_depth, new_backquote_output, print_number_index):
12907 Use ptrdiff_t, not int, where int might not be wide enough.
12908 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12909 (Fset_process_window_size, Fformat_network_address)
12910 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12911 (sigchld_handler):
12912 Check that fixnums are in proper range for system types.
12913 (Fsignal_process): Simplify by avoiding a goto.
12914 Check for process-ids out of pid_t range rather than relying on
12915 undefined behavior.
12916 (process_tick, update_tick): Use EMACS_INT, not int.
12917 (Fformat_network_address, read_process_output, send_process)
12918 (Fprocess_send_region, status_notify):
12919 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12920 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12921 (wait_reading_process_output, read_process_output, exec_sentinel):
12922 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12923 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12924 (Faccept_process_output): Use duration_to_sec_usec to do proper
12925 overflow checking on durations.
12926 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12927 Don't assume pid_t fits in int.
12928 * process.h (struct Lisp_Process): Members tick and update_tick
12929 are now of type EMACS_INT, not int.
12930 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12931 configured --with-wide-int.
12932 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12933 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12934 * search.c (looking_at_1, string_match_1):
12935 (fast_string_match, fast_c_string_match_ignore_case)
12936 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12937 (scan_newline, find_before_next_newline, search_command)
12938 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12939 (set_search_regs, wordify):
12940 (Freplace_match):
12941 (Fmatch_data):
12942 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12943 (string_match_1, search_buffer, set_search_regs):
12944 (Fmatch_data):
12945 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12946 (wordify): Check for overflow in size calculation.
12947 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12948 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12949 Check that fixnums are in proper range for system types.
12950 * sound.c (struct sound_device)
12951 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12952 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12953 (Fplay_sound_internal):
12954 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12955 * syntax.c (struct lisp_parse_state, find_start_modiff)
12956 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12957 (Fparse_partial_sexp):
12958 Don't assume fixnums can fit in int.
12959 (struct lisp_parse_state, find_start_pos, find_start_value)
12960 (find_start_value_byte, find_start_begv)
12961 (update_syntax_table, char_quoted, dec_bytepos)
12962 (find_defun_start, prev_char_comend_first, back_comment):
12963 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12964 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12965 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12966 (Finternal_describe_syntax_value): Check that match_lisp is a
12967 character, not an integer, since the code stuffs it into int.
12968 (scan_words, scan_sexps_forward):
12969 Check that fixnums are in proper range for system types.
12970 (Fforward_word):
12971 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12972 (scan_sexps_forward):
12973 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12974 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12975 * syntax.h: Adjust decls to match defn changes elsewhere.
12976 (struct gl_state_s):
12977 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12978 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12979 MOST_POSITIVE_FIXNUM.
12980 * sysdep.c (wait_for_termination_1, wait_for_termination)
12981 (interruptible_wait_for_termination, mkdir):
12982 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12983 (emacs_read, emacs_write):
12984 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12985 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12986 and double all fit in int.
12987 * term.c (set_tty_color_mode):
12988 Check that fixnums are in proper range for system types.
12989 * termhooks.h (struct input_event):
12990 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12991 * textprop.c (validate_interval_range, interval_of)
12992 (Fadd_text_properties, set_text_properties_1)
12993 (Fremove_text_properties, Fremove_list_of_text_properties)
12994 (Ftext_property_any, Ftext_property_not_all)
12995 (copy_text_properties, text_property_list, extend_property_ranges)
12996 (verify_interval_modification):
12997 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12998 (Fnext_single_char_property_change)
12999 (Fprevious_single_char_property_change):
13000 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13001 (copy_text_properties):
13002 Check for integer overflow in index calculation.
13003 * undo.c (last_boundary_position, record_point, record_insert)
13004 (record_delete, record_marker_adjustment, record_change)
13005 (record_property_change):
13006 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13007 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
13008 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13009 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13010 (Fx_hide_tip, Fx_file_dialog):
13011 * w32menu.c (set_frame_menubar):
13012 Use ptrdiff_t, not int, for consistency with rest of code.
13013 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
13014 (select_window, Fdelete_other_windows_internal)
13015 (window_scroll_pixel_based, window_scroll_line_based)
13016 (Frecenter, Fset_window_configuration):
13017 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13018 (Fset_window_hscroll, run_window_configuration_change_hook)
13019 (set_window_buffer, temp_output_buffer_show, scroll_command)
13020 (Fscroll_other_window, Frecenter):
13021 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13022 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
13023 Don't assume fixnum fits in int.
13024 (Fset_window_scroll_bars):
13025 Check that fixnums are in proper range for system types.
13026 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
13027 (string_pos, c_string_pos, number_of_chars, init_iterator)
13028 (in_ellipses_for_invisible_text_p, init_from_display_pos)
13029 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
13030 (compute_display_string_end, handle_face_prop)
13031 (face_before_or_after_it_pos, handle_invisible_prop)
13032 (handle_display_prop, handle_display_spec, handle_single_display_spec)
13033 (display_prop_intangible_p, string_buffer_position_lim)
13034 (string_buffer_position, handle_composition_prop, load_overlay_strings)
13035 (get_overlay_strings_1, get_overlay_strings)
13036 (iterate_out_of_display_property, forward_to_next_line_start)
13037 (back_to_previous_visible_line_start, reseat, reseat_to_string)
13038 (get_next_display_element, set_iterator_to_next)
13039 (get_visually_first_element, compute_stop_pos_backwards)
13040 (handle_stop_backwards, next_element_from_buffer)
13041 (move_it_in_display_line_to, move_it_in_display_line)
13042 (move_it_to, move_it_vertically_backward, move_it_by_lines)
13043 (add_to_log, message_dolog, message_log_check_duplicate)
13044 (message2, message2_nolog, message3, message3_nolog
13045 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
13046 (current_message_1, truncate_echo_area, truncate_message_1)
13047 (set_message, set_message_1, store_mode_line_noprop)
13048 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
13049 (text_outside_line_unchanged_p, check_point_in_composition)
13050 (reconsider_clip_changes)
13051 (redisplay_internal, set_cursor_from_row, try_scrolling)
13052 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
13053 (redisplay_window, find_last_unchanged_at_beg_row)
13054 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
13055 (trailing_whitespace_p, find_row_edges, display_line)
13056 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
13057 (display_mode_element, store_mode_line_string)
13058 (pint2str, pint2hrstr, decode_mode_spec)
13059 (display_count_lines, display_string, draw_glyphs)
13060 (x_produce_glyphs, x_insert_glyphs)
13061 (rows_from_pos_range, mouse_face_from_buffer_pos)
13062 (fast_find_string_pos, mouse_face_from_string_pos)
13063 (note_mode_line_or_margin_highlight, note_mouse_highlight):
13064 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13065 (safe_call, init_from_display_pos, handle_fontified_prop)
13066 (handle_single_display_spec, load_overlay_strings)
13067 (with_echo_area_buffer, setup_echo_area_for_printing)
13068 (display_echo_area, echo_area_display)
13069 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
13070 (update_tool_bar, hscroll_window_tree, redisplay_internal)
13071 (redisplay_window, dump_glyph_row, display_mode_line)
13072 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
13073 (handle_display_spec, display_prop_string_p):
13074 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13075 (handle_single_display_spec, build_desired_tool_bar_string)
13076 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
13077 (get_specified_cursor_type):
13078 Check that fixnums are in proper range for system types.
13079 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
13080 (Flookup_image_map):
13081 Don't assume fixnums fit in int.
13082 (compare_overlay_entries):
13083 Avoid mishandling comparisons due to subtraction overflow.
13084 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
13085 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
13086 (handle_tool_bar_click):
13087 Use int, not unsigned, since we prefer signed and the signedness
13088 doesn't matter here.
13089 (get_next_display_element, next_element_from_display_vector):
13090 Use int, not EMACS_INT, when int is wide enough.
13091 (start_hourglass): Use duration_to_sec_usec to do proper
13092 overflow checking on durations.
13093 * xfaces.c (Fbitmap_spec_p):
13094 Check that fixnums are in proper range for system types.
13095 (compare_fonts_by_sort_order):
13096 Avoid mishandling comparisons due to subtraction overflow.
13097 (Fx_family_fonts, realize_basic_faces):
13098 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13099 (Fx_family_fonts):
13100 Don't assume fixnum fits in int.
13101 Use SAFE_ALLOCA_LISP, not alloca.
13102 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
13103 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
13104 (face_at_buffer_position, face_for_overlay_string)
13105 (face_at_string_position):
13106 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13107 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
13108 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
13109 (Fx_show_tip):
13110 Check that fixnums are in proper range for system types.
13111 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
13112 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
13113 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13114 (Fx_change_window_property): Don't assume fixnums fit in int.
13115 * xfont.c (xfont_chars_supported):
13116 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13117 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
13118 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
13119 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13120 * xml.c (parse_region):
13121 * xrdb.c (magic_file_p):
13122 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
13123 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
13124 (x_get_local_selection, x_reply_selection_request)
13125 (x_handle_selection_request, wait_for_property_change):
13126 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13127 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
13128 short is wide enough.
13129 (x_send_client_event): Don't assume fixnum fits in int.
13130 * xterm.c (x_x_to_emacs_modifiers):
13131 Don't assume EMACS_INT overflows nicely into int.
13132 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
13133 may come from Lisp.
13134 (handle_one_xevent): NATNUMP can eval its arg twice.
13135 (x_connection_closed):
13136 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
13137 * xterm.h: Adjust decls to match defn changes elsewhere.
13138 (struct scroll_bar): Use struct vectorlike_header
13139 rather than rolling our own approximation.
13140 (SCROLL_BAR_VEC_SIZE): Remove; not used.
13141
13142 2012-05-25 Glenn Morris <rgm@gnu.org>
13143
13144 * lisp.mk (lisp): Update for more files being compiled now.
13145
13146 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
13147
13148 * lread.c: Remove `read_pure' which makes no difference.
13149 (read_pure): Remove var.
13150 (unreadpure): Remove function.
13151 (readevalloop): Don't call read_list with -1 flag.
13152 (read1, read_vector): Don't test read_pure any more.
13153 (read_list): Simplify.
13154
13155 * fileio.c, character.h: Minor style tweaks.
13156
13157 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
13158
13159 * window.h (clip_changed): Remove useless declaration.
13160
13161 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
13162
13163 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
13164 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
13165
13166 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
13167
13168 Remove src/m/*.
13169 This directory predates autoconf and is no longer needed nowadays.
13170 Move its few remaining bits of functionality to where they're needed.
13171 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
13172 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
13173 * m/template.h: Remove.
13174 * Makefile.in (M_FILE): Remove. All uses removed.
13175 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
13176 * lisp.h (USE_LSB_TAG):
13177 * mem-limits.h (EXCEEDS_LISP_PTR):
13178 Use VAL_MAX, not VALBITS, in #if.
13179 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
13180 (EMACS_UINT): Define unconditionally now.
13181 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
13182 (BITS_PER_EMACS_INT): New constants, replacing
13183 what used to be in config.h, but not useful in #if.
13184 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
13185 define them any more.
13186 (VAL_MAX): New macro.
13187 (VALMASK): Use it.
13188 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
13189 BITS_PER_EMACS_INT, in #if.
13190 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
13191 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
13192 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
13193 * s/ms-w32.h (DATA_START):
13194 Move here from removed file m/intel386.h.
13195 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
13196 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
13197
13198 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
13199
13200 Assume C89 or later.
13201 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
13202 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
13203 (xrealloc):
13204 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
13205 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
13206 * textprop.c, tparam.c (NULL): Remove.
13207 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
13208 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
13209 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
13210 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
13211 * xterm.c (input_signal_count): Assume volatile works.
13212
13213 2012-05-21 Ken Brown <kbrown@cornell.edu>
13214
13215 * xgselect.c (xg_select): Fix first argument in call to 'select'
13216 (bug#11508).
13217
13218 2012-05-20 Ken Brown <kbrown@cornell.edu>
13219
13220 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
13221 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
13222
13223 2012-05-19 Ken Brown <kbrown@cornell.edu>
13224
13225 * xfns.c (x_in_use): Remove `static' qualifier.
13226 * xterm.h (x_in_use): Declare.
13227 * xgselect.c: Include xterm.h.
13228 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
13229 and `display_arg' (bug#9754).
13230
13231 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
13232
13233 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
13234
13235 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
13236 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
13237
13238 2012-05-18 Eli Zaretskii <eliz@gnu.org>
13239
13240 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
13241
13242 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
13243 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
13244
13245 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
13246 reference to image_cache->refcount.
13247 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
13248
13249 2012-05-17 Juri Linkov <juri@jurta.org>
13250
13251 * search.c (Fword_search_regexp, Fword_search_backward)
13252 (Fword_search_forward, Fword_search_backward_lax)
13253 (Fword_search_forward_lax): Move functions to isearch.el
13254 (bug#10145, bug#11381).
13255
13256 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
13257
13258 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
13259
13260 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
13261
13262 * lread.c (init_obarray): Declare Qt and Qnil as special.
13263
13264 2012-05-14 Glenn Morris <rgm@gnu.org>
13265
13266 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
13267 Put "libexec" before "bin", for the sake of init_callproc_1.
13268
13269 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
13270
13271 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
13272
13273 * unexaix.c: Port to more-recent AIX compilers.
13274 (report_error, report_error_1, make_hdr, copy_sym)
13275 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
13276 Make arguments const char *, not char *, to avoid violations of C
13277 standard and to fix some AIX warnings reported by Gilles Pion.
13278
13279 2012-05-14 Eli Zaretskii <eliz@gnu.org>
13280
13281 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
13282 already have overlays loaded.
13283 (handle_single_display_spec): Before returning without displaying
13284 fringe bitmap, synchronize the bidi iterator with the main display
13285 iterator, by calling iterate_out_of_display_property.
13286 (iterate_out_of_display_property): Detect buffer iteration by
13287 testing that it->string is a Lisp string.
13288 (get_next_display_element): When the current object is exhausted,
13289 and there's something on it->stack, call set_iterator_to_next to
13290 proceed with what's on the stack, instead of returning zero.
13291 (set_iterator_to_next): If called at the end of a Lisp string,
13292 proceed to consider_string_end without incrementing string
13293 position. Don't increment display vector index past the end of
13294 the display vector. (Bug#11417)
13295 (pos_visible_p): Don't report a position visible when move_it_to
13296 stopped at the last line of window, which happens to be scanned
13297 backwards by the bidi iteration. (Bug#11464)
13298
13299 2012-05-14 Eli Zaretskii <eliz@gnu.org>
13300
13301 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
13302 and right-margin display specs even if the spec is invalid or we
13303 are on a TTY, and thus unable to display on the fringes.
13304 That's because the text with the property will not be displayed anyway,
13305 so we need to signal to the caller that this is a "replacing"
13306 display spec. This fixes display when the spec is invalid or we
13307 are on a TTY.
13308
13309 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
13310
13311 * unexaix.c (make_hdr): Fix typo in prototype.
13312 This bug broke the build on AIX. Problem reported by Gilles Pion.
13313
13314 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
13315
13316 * keyboard.c (kbd_buffer_get_event): Read special events also in
13317 batch mode. (Bug#11415)
13318
13319 2012-05-12 Glenn Morris <rgm@gnu.org>
13320
13321 * ns.mk: Update for ns_appbindir no longer having trailing "/".
13322
13323 2012-05-12 Eli Zaretskii <eliz@gnu.org>
13324
13325 * lisp.mk (lisp): Add newcomment.elc.
13326
13327 2012-05-12 Glenn Morris <rgm@gnu.org>
13328
13329 * Makefile.in (MKDIR_P): New, set by configure.
13330 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
13331
13332 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
13333
13334 Remove unused function hourglass_started.
13335 * dispextern.h (hourglass_started):
13336 * w32fns.c (hourglass_started):
13337 * xdisp.c (hourglass_started): Remove.
13338
13339 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
13340
13341 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
13342 Update dependencies.
13343
13344 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
13345
13346 * xgselect.c (xg_select): Put maxfds+1 into a var.
13347 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
13348
13349 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
13350
13351 2012-05-10 Dave Abrahams <dave@boostpro.com>
13352
13353 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
13354 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
13355
13356 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
13357
13358 * dbusbind.c (xd_registered_buses): New internal Lisp object.
13359 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
13360 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
13361 Initialize xd_registered_buses.
13362
13363 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
13364
13365 Untag more efficiently if USE_LSB_TAG.
13366 This is based on a proposal by YAMAMOTO Mitsuharu in
13367 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
13368 For an admittedly artificial (nth 8000 longlist) benchmark on
13369 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
13370 Emacs's overall text size by 1%.
13371 * lisp.h (XUNTAG): New macro.
13372 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
13373 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
13374 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
13375 * eval.c (Fautoload):
13376 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
13377 * frame.h (XFRAME): Use XUNTAG.
13378
13379 Port recent dbusbind.c changes to 32-bit --with-wide-int.
13380 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
13381 Remove unportable assumptions about print widths of types like
13382 dbus_uint32_t.
13383 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
13384 intptr_t when converting between pointer and integer, to avoid GCC
13385 warnings about wrong width.
13386
13387 2012-05-09 Eli Zaretskii <eliz@gnu.org>
13388
13389 * w32proc.c (new_child): Force Windows to reserve only 64KB of
13390 stack for each reader_thread, instead of defaulting to 8MB
13391 determined by the linker. This avoids failures in creating
13392 subprocesses on Windows 7, see the discussion in this thread:
13393 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
13394
13395 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
13396
13397 Fix up display of the *Minibuf-0* buffer in the mini window.
13398 * keyboard.c (read_char): Don't clear the echo area if there's no
13399 message to clear.
13400 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
13401 contents of *Minibuf-0*) if there's no message displayed in its stead.
13402
13403 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
13404
13405 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
13406 batch mode.
13407
13408 2012-05-06 Chong Yidong <cyd@gnu.org>
13409
13410 * lisp.mk (lisp): Update.
13411
13412 2012-05-05 Jim Meyering <meyering@redhat.com>
13413
13414 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
13415
13416 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
13417
13418 * data.c (PUT_ERROR): New macro.
13419 (syms_of_data): Use it. Add new error type `user-error'.
13420 * undo.c (user_error): New function.
13421 (Fprimitive_undo): Use it.
13422 * print.c (print_error_message): Adjust print style for `user-error'.
13423 * keyboard.c (user_error): New function.
13424 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
13425
13426 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
13427
13428 Do not limit current-time-string to years 1000..9999.
13429 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
13430 (Fcurrent_time_string): Support any year that is supported by the
13431 underlying localtime representation. Don't use asctime, as it
13432 has undefined behavior for years outside the range -999..9999.
13433
13434 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
13435
13436 Fix race conditions involving setenv, gmtime, localtime, asctime.
13437 Without this fix, interrupts could mess up code that uses these
13438 nonreentrant functions, since setting TZ invalidates existing
13439 tm_zone or tzname values, and since most of these functions return
13440 pointers to static storage.
13441 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
13442 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
13443 Grow the critical sections to include not just invoking
13444 localtime/gmtime, but also accessing these functions' results
13445 including their tm_zone values if any, and any related TZ setting.
13446 (format_time_string): Last arg is now struct tm *, not struct tm **,
13447 so that the struct tm is saved in the critical section.
13448 All callers changed. Simplify allocation of initial buffer, partly
13449 motivated by the fact that memory allocation needs to be outside
13450 the critical section.
13451
13452 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
13453
13454 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
13455 with RESET_INTERVAL.
13456
13457 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
13458 Remove duplicated buffer name initialization.
13459
13460 2012-05-02 Jim Meyering <jim@meyering.net>
13461
13462 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
13463
13464 * xfns.c (x_window): Use xstrdup (Bug#11375).
13465
13466 2012-05-02 Eli Zaretskii <eliz@gnu.org>
13467
13468 * xdisp.c (pos_visible_p): If already at a newline from the
13469 display string before the 'while' loop, don't walk back the glyphs
13470 from it3.glyph_row. Solves assertion violation when the display
13471 string begins with a newline (egg.el). (Bug#11367)
13472
13473 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
13474
13475 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
13476 Move to simple.el.
13477
13478 2012-05-01 Glenn Morris <rgm@gnu.org>
13479
13480 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
13481 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
13482 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
13483 All were removed before 23.1.
13484
13485 * dispnew.c: Remove HAVE_LIBNCURSES test;
13486 it is always true on relevant platforms.
13487
13488 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
13489 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
13490
13491 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
13492
13493 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
13494
13495 * .gdbinit (xpr): Remove checks for no longer existing misc types.
13496 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
13497 Remove.
13498
13499 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
13500
13501 Do not avoid creating empty evaporating overlays (Bug#9642).
13502 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
13503 That is, do not delete an evaporating overlay if it becomes
13504 empty after its bounds are adjusted to fit within its buffer.
13505 This fix caused other problems, and I'm reverting it until we get
13506 to the bottom of them.
13507
13508 2012-04-27 Chong Yidong <cyd@gnu.org>
13509
13510 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
13511
13512 2012-04-27 Eli Zaretskii <eliz@gnu.org>
13513
13514 * xdisp.c (pos_visible_p): If the window start position is beyond
13515 ZV, start the display from buffer beginning. Prevents assertion
13516 violation in init_iterator when the minibuffer window is scrolled
13517 via the scroll bar.
13518
13519 * window.c (window_scroll_pixel_based): Likewise.
13520
13521 2012-04-27 Chong Yidong <cyd@gnu.org>
13522
13523 * keymap.c (where_is_internal): Doc fix (Bug#10872).
13524
13525 2012-04-27 Glenn Morris <rgm@gnu.org>
13526
13527 * fileio.c (Fcopy_file, Fset_file_selinux_context):
13528 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
13529
13530 2012-04-27 Eli Zaretskii <eliz@gnu.org>
13531
13532 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
13533 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
13534
13535 2012-04-26 Eli Zaretskii <eliz@gnu.org>
13536
13537 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
13538 display element, check also the underlying string or buffer
13539 character. (Bug#11341)
13540
13541 * w32menu.c: Include w32heap.h.
13542 (add_menu_item): If the call to AppendMenuW (via
13543 unicode_append_menu) fails, disable Unicode menus only if we are
13544 running on Windows 9X/Me.
13545
13546 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
13547
13548 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
13549 (xgetint): Add missing shift for LSB tags.
13550
13551 2012-04-24 Martin Rudalics <rudalics@gmx.at>
13552
13553 * keyboard.c (read_char): Don't wipe echo area for select window
13554 events: These might get delayed via `mouse-autoselect-window'
13555 (Bug#11304).
13556
13557 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
13558
13559 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
13560 manipulation of :loaded-from data.
13561
13562 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
13563
13564 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
13565 now a cons (bug#11311).
13566
13567 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
13568
13569 Do not create empty overlays with the evaporate property (Bug#9642).
13570 * buffer.c (Fmove_overlay): Delete an evaporating overlay
13571 if it becomes empty after its bounds are adjusted to fit within
13572 its buffer. Without this fix, in a nonempty buffer (let ((o
13573 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
13574 yields an empty overlay that has the evaporate property, which is
13575 not supposed to happen.
13576
13577 Fix minor GTK3 problems found by static checking.
13578 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13579 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13580 (struct _EmacsFixedClass, emacs_fixed_get_type):
13581 Move decls here from emacsgtkfixed.h, since they needn't be public.
13582 (emacs_fixed_get_type): Now static.
13583 (emacs_fixed_class_init): Omit unused local.
13584 (emacs_fixed_child_type): Remove; unused.
13585 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13586 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13587 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
13588 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
13589 (EMACS_FIXED_GET_CLASS): Remove; unused.
13590 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
13591
13592 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
13593 Problem reported by Juanma Barranquero for Windows -Wunused-function.
13594
13595 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13596
13597 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
13598 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
13599 (__malloc_size_t, __malloc_ptrdiff_t):
13600 Remove. All uses removed, replaced by the definiens if needed,
13601 since we can assume C89 or better now.
13602 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
13603 (protect_malloc_state, align, get_contiguous_space)
13604 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
13605 (malloc_atfork_handler_child, malloc_enable_thread)
13606 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
13607 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
13608 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
13609 (special_realloc, _realloc_internal_nolock, _realloc_internal)
13610 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
13611 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
13612 Define using prototypes, not old style.
13613 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
13614 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
13615 (align): Don't assume that signed integer overflow wraps around.
13616 Omit unused local var.
13617 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
13618 (_free_internal_nolock, memalign, mallochook, reallochook):
13619 Omit no-longer-needed casts.
13620 (valloc): Use getpagesize, not __getpagesize.
13621 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
13622 (struct hdr): The 'magic' member is now size_t, not unsigned long.
13623
13624 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
13625
13626 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
13627
13628 Move functions from C to Lisp. Make non-blocking method calls
13629 the default. Implement further D-Bus standard interfaces.
13630
13631 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
13632 (QCdbus_request_name_allow_replacement)
13633 (QCdbus_request_name_replace_existing)
13634 (QCdbus_request_name_do_not_queue)
13635 (QCdbus_request_name_reply_primary_owner)
13636 (QCdbus_request_name_reply_in_queue)
13637 (QCdbus_request_name_reply_exists)
13638 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
13639 (QCdbus_registered_serial, QCdbus_registered_method)
13640 (QCdbus_registered_signal): New Lisp objects.
13641 (XD_DEBUG_MESSAGE): Use sizeof.
13642 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
13643 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
13644 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
13645 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
13646 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
13647 (xd_signature, xd_append_arg): Allow float for integer types.
13648 (xd_get_connection_references): New function.
13649 (xd_get_connection_address): Rename from xd_initialize.
13650 Return cached address.
13651 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
13652 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
13653 level.
13654 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
13655 Return number of refcounts.
13656 (Fdbus_get_unique_name): Make stronger parameter check.
13657 (Fdbus_message_internal): New defun.
13658 (Fdbus_call_method, Fdbus_call_method_asynchronously)
13659 (Fdbus_method_return_internal, Fdbus_method_error_internal)
13660 (Fdbus_send_signal, Fdbus_register_service)
13661 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
13662 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
13663 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
13664 (Vdbus_compiled_version, Vdbus_runtime_version)
13665 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
13666 (Vdbus_message_type_method_return, Vdbus_message_type_error)
13667 (Vdbus_message_type_signal): New defvars.
13668 (Vdbus_registered_buses, Vdbus_registered_objects_table):
13669 Adapt docstring.
13670
13671 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13672
13673 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
13674 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
13675 Do not assume ptrdiff_t is the same width as 'int'.
13676
13677 * alloc.c: Handle unusual debugging option combinations.
13678 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
13679 since the two debugging options are incompatible.
13680 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
13681 is defined.
13682 (mem_init, mem_insert, mem_insert_fixup):
13683 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
13684 (NEED_MEM_INSERT): Remove; no longer needed.
13685
13686 2012-04-22 Leo Liu <sdl.web@gmail.com>
13687
13688 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
13689
13690 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13691
13692 * sysdep.c [__FreeBSD__]: Minor cleanups.
13693 (list_system_processes, system_process_attributes) [__FreeBSD__]:
13694 Use Emacs indenting style more consistently. Avoid some casts.
13695 Use 'double' consistently rather than mixing 'float' and 'double'.
13696
13697 2012-04-21 Eduard Wiebe <usenet@pusto.de>
13698
13699 * sysdep.c (list_system_processes, system_process_attributes):
13700 Add implementation for FreeBSD (Bug#5243).
13701
13702 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
13703
13704 * lisp.mk (lisp): Update.
13705
13706 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
13707
13708 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
13709 It is never used otherwise.
13710
13711 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13712
13713 * print.c (print_preprocess): Only check print_depth if print-circle
13714 is nil.
13715 (print_object): Check for cycles even when print-circle is nil and
13716 print-gensym is t, but only check print_depth if print-circle is nil.
13717
13718 2012-04-20 Chong Yidong <cyd@gnu.org>
13719
13720 * process.c (wait_reading_process_output): If EIO occurs on a pty,
13721 set the status to "failed" and ensure that sentinel is run.
13722
13723 2012-04-20 Glenn Morris <rgm@gnu.org>
13724
13725 * process.c (Fset_process_inherit_coding_system_flag)
13726 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
13727 (Fmake_network_process, Fmake_serial_process): Doc fix.
13728
13729 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13730
13731 * xdisp.c (string_buffer_position_lim): Limit starting position to
13732 BEGV.
13733 (set_cursor_from_row): If called for a mode-line or header-line
13734 row, return zero immediately.
13735 (try_cursor_movement): If inside continuation line, don't back up
13736 farther than the first row after the header line, if any.
13737 Don't consider the header-line row as "partially visible", even if
13738 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
13739
13740 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13741
13742 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
13743 (bug#11238).
13744
13745 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
13746 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
13747
13748 configure: new option --enable-gcc-warnings (Bug#11207)
13749 * Makefile.in (C_WARNINGS_SWITCH): Remove.
13750 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
13751 (ALL_CFLAGS): Use new macros rather than old.
13752 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
13753 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
13754 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
13755 -Wunused-result, -Wunused-variable. This should go away once
13756 the Emacs and Gnulib regex code is merged.
13757 (xmalloc, xrealloc): Now static.
13758
13759 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
13760
13761 * dired.c (Fsystem_groups): Remove unused local.
13762
13763 2012-04-17 Glenn Morris <rgm@gnu.org>
13764
13765 * dired.c (Fsystem_users): Doc fix.
13766
13767 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13768
13769 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
13770 (syms_of_dired): Add them.
13771
13772 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
13773
13774 Fix minor alloc.c problems found by static checking.
13775 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
13776 New extern decls, to avoid calling undeclared functions.
13777 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
13778 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
13779 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
13780 (NEED_MEM_INSERT): New macro.
13781 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
13782 Remove one incorrect comment and fix another.
13783
13784 Fix minor ralloc.c problems found by static checking.
13785 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13786 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
13787 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
13788 (r_alloc_sbrk): Now static.
13789
13790 Improve ralloc.c interface checking.
13791 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13792 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
13793 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
13794 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
13795 [REL_ALLOC]: ... to here, to check interface.
13796 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
13797 Remove decls. This fixes an "It stinks!".
13798
13799 * alloc.c (which_symbols): Fix alignment issue / type clash.
13800
13801 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
13802
13803 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
13804 (struct Lisp_Misc_Any): Likewise.
13805 (struct Lisp_Free): Likewise.
13806 * alloc.c (union aligned_Lisp_Symbol): Define.
13807 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
13808 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
13809 (union aligned_Lisp_Misc): Define.
13810 (MARKER_BLOCK_SIZE, struct marker_block): Use union
13811 aligned_Lisp_Misc instead of union Lisp_Misc.
13812 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
13813
13814 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13815
13816 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
13817 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
13818 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
13819 * s/netbsd.h, s/sol2-6.h:
13820 Remove definition of GC_MARK_STACK, since the default now works.
13821 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
13822 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
13823 no longer the default.
13824 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
13825
13826 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13827
13828 * lread.c (lisp_file_lexically_bound_p):
13829 Fix hang at ";-*-\n" (bug#11238).
13830
13831 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13832
13833 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
13834 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
13835
13836 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
13837
13838 * nsterm.m (constrainFrameRect): Always constrain when there is only
13839 one screen (Bug#10962).
13840
13841 2012-04-13 Ken Brown <kbrown@cornell.edu>
13842
13843 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
13844
13845 2012-04-13 Reuben Thomas <rrt@sc3d.org>
13846
13847 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
13848
13849 2012-04-11 Daniel Colascione <dancol@dancol.org>
13850
13851 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
13852 against is gone. It's better to use vfork now so that when Cygwin
13853 gains a new, working vfork, we use it automatically (bug#10398).
13854
13855 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13856
13857 * window.c (save_window_save): Obey window-point-insertion-type.
13858
13859 2012-04-11 Glenn Morris <rgm@gnu.org>
13860
13861 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
13862
13863 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13864
13865 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
13866
13867 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
13868
13869 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
13870 (force_quit_count): New var.
13871 (handle_interrupt): Use it.
13872
13873 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13874
13875 * w32.c (w32_delayed_load): Record the full path of the library
13876 being loaded (bug#10424).
13877
13878 2012-04-09 Glenn Morris <rgm@gnu.org>
13879
13880 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13881 not just in the obarray, before snarfing them. (Bug#11036)
13882
13883 * Makefile.in ($(leimdir)/leim-list.el):
13884 Pass EMACS rather than BUILT_EMACS.
13885
13886 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
13887
13888 * process.c (make_process):
13889 * process.h: Add integer `gnutls_handshakes_tried' member to
13890 process struct.
13891
13892 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13893 Add convenience `GNUTLS_LOG2i' macro.
13894
13895 * gnutls.c (gnutls_log_function2i): Convenience log function.
13896 (emacs_gnutls_read): Use new log functions,
13897 `gnutls_handshakes_tried' process member, and
13898 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
13899 attempts per process (connection).
13900
13901 2012-04-09 Chong Yidong <cyd@gnu.org>
13902
13903 * eval.c (Fuser_variable_p, user_variable_p_eh)
13904 (lisp_indirect_variable): Functions deleted.
13905 (Fdefvar): Caller changed.
13906
13907 * callint.c (Finteractive, Fcall_interactively):
13908 * minibuf.c (Fread_variable): Callers changed.
13909
13910 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13911
13912 * xdisp.c (set_cursor_from_row): If the display string appears in
13913 the buffer at position that is closer to point than the position
13914 after the display string, display the cursor on the first glyph of
13915 the display string. Fixes cursor display when a 'display' text
13916 property immediately follows invisible text. (Bug#11094)
13917
13918 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13919
13920 composite.c: use 'double' consistently
13921 * composite.c (get_composition_id): Use 'double' consistently
13922 instead of converting 'float' to 'double' and vice versa; this is
13923 easier to understand and avoids a GCC warning.
13924
13925 2012-04-09 Glenn Morris <rgm@gnu.org>
13926
13927 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13928 preparation for dumping it with emacs. (Bug#4789)
13929 (leimdir): New variable.
13930 ($(leimdir)/leim-list.el): New rule.
13931 (emacs$(EXEEXT)): Depend on leim-list.el.
13932
13933 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13934 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13935 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13936
13937 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13938
13939 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13940 proper alignment.
13941
13942 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13943
13944 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13945 Remove unused local variable.
13946
13947 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13948
13949 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13950 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13951 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13952 objects, as mark_maybe_pointer will catch them otherwise.
13953 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13954 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13955
13956 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13957
13958 Fix typo that broke non-Windows builds.
13959 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13960
13961 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13962
13963 Support building on MS-Windows with libxml2.
13964
13965 * makefile.w32-in (OBJ2): Add xml.$(O).
13966 (GLOBAL_SOURCES): Add xml.c.
13967 ($(BLD)/xml.$(O)): New dependency list.
13968
13969 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13970 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13971 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13972 [!WINDOWSNT]: New macros.
13973 (init_libxml2_functions, libxml2_loaded_p): New functions.
13974 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13975 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13976 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13977 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13978 linked in).
13979 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13980 Call init_libxml2_functions before calling libxml2 functions.
13981 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13982
13983 * emacs.c: Don't include libxml/parser.h.
13984 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13985 xmlCleanupParser directly.
13986
13987 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13988
13989 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13990
13991 * indent.c (Fvertical_motion): If there is a display string at
13992 point, use it.vpos to compute how many lines to backtrack after
13993 move_it_to point. (Bug#11133)
13994
13995 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13996
13997 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13998 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13999 about subtle differences between FETCH_CHAR* and STRING_CHAR*
14000 macros related to unification of CJK characters. For the details,
14001 see the discussion following the message here:
14002 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
14003
14004 2012-04-04 Chong Yidong <cyd@gnu.org>
14005
14006 * keyboard.c (Vdelayed_warnings_list): Doc fix.
14007
14008 2012-04-01 Eli Zaretskii <eliz@gnu.org>
14009
14010 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
14011 instead of alloca. (Bug#11138)
14012
14013 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
14014
14015 * w32menu.c (is_simple_dialog): Properly check lisp types.
14016 (Bug#11141)
14017
14018 2012-03-31 Eli Zaretskii <eliz@gnu.org>
14019
14020 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
14021 position we get to after a call to move_it_to fails the
14022 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
14023 only if we wind up in a string from display property. (Bug#11063)
14024
14025 * window.c (Fdelete_other_windows_internal): Invalidate the row
14026 and column information about mouse highlight, so that redisplay
14027 restores it after reallocating the glyph matrices. (Bug#7464)
14028
14029 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
14030 string comes from a `display' text property, use the buffer
14031 position of that property as if we actually saw that position in
14032 the row's glyphs.
14033 (move_it_by_lines): Remove the assertion that
14034 "it->current_x == 0 && it->hpos == 0" which can be legitimately
14035 violated when there's a before-string at the beginning of a line.
14036 (Bug#11063)
14037
14038 2012-03-30 Eli Zaretskii <eliz@gnu.org>
14039
14040 * xdisp.c (append_space_for_newline): If the default face was
14041 remapped, use the remapped face for the appended newline.
14042 (extend_face_to_end_of_line): Use the remapped default face for
14043 extending the face to the end of the line.
14044 (display_line): Call extend_face_to_end_of_line when the default
14045 face was remapped. (Bug#11068)
14046
14047 2012-03-29 Eli Zaretskii <eliz@gnu.org>
14048
14049 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
14050
14051 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
14052
14053 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
14054
14055 2012-03-27 Glenn Morris <rgm@gnu.org>
14056
14057 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
14058 Doc fixes.
14059
14060 2012-03-26 Kenichi Handa <handa@m17n.org>
14061
14062 * dispextern.h (struct glyph): Fix previous change. Change the
14063 bit length of glyphless.ch to 25 (Bug#11082).
14064
14065 2012-03-26 Chong Yidong <cyd@gnu.org>
14066
14067 * keyboard.c (Vselection_inhibit_update_commands): New variable.
14068 (command_loop_1): Use it; inhibit selection update for
14069 handle-select-window too (Bug#8996).
14070
14071 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
14072
14073 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
14074
14075 2012-03-25 Kenichi Handa <handa@m17n.org>
14076
14077 * dispextern.h (struct glyph): Change the bit length of
14078 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
14079
14080 2012-03-24 Eli Zaretskii <eliz@gnu.org>
14081
14082 * s/ms-w32.h (tzname): Include time.h before redirecting to
14083 _tzname. Fixes the MSVC build. (Bug#9960)
14084
14085 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
14086
14087 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
14088 characters.
14089
14090 * xterm.c (XTread_socket): Only modify handling_signal if
14091 !SYNC_INPUT. (Bug#11080)
14092
14093 2012-03-23 Eli Zaretskii <eliz@gnu.org>
14094
14095 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
14096 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
14097 when fetching a multibyte character consumes more bytes than
14098 CHAR_BYTES returns, due to unification of CJK characters in
14099 string_char. (Bug#11073)
14100
14101 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
14102
14103 * process.c (wait_reading_process_output): Handle pty disconnect
14104 by refraining from sending oneself a SIGCHLD (bug#10933).
14105
14106 2012-03-22 Chong Yidong <cyd@gnu.org>
14107
14108 * dispextern.h (struct it): New member string_from_prefix_prop_p.
14109
14110 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
14111 Mark string as coming from a prefix property.
14112 (handle_face_prop): Use default face for prefix strings (Bug#4281).
14113 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
14114
14115 2012-03-21 Chong Yidong <cyd@gnu.org>
14116
14117 * xfaces.c (Vface_remapping_alist): Doc fix.
14118
14119 2012-03-20 Eli Zaretskii <eliz@gnu.org>
14120
14121 * w32proc.c (Fw32_set_console_codepage)
14122 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
14123 Doc fixes.
14124
14125 2012-03-20 Chong Yidong <cyd@gnu.org>
14126
14127 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
14128 to reflect default non-nil value of redisplay-dont-pause.
14129
14130 2012-03-19 Kenichi Handa <handa@m17n.org>
14131
14132 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
14133 it fit in a valid range (Bug#11003).
14134
14135 2012-03-18 Eli Zaretskii <eliz@gnu.org>
14136
14137 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
14138 that is not from display property, accept the row as a "cursor
14139 row" if one of the string's character has a non-nil `cursor'
14140 property. Fixes cursor positioning when there are newlines in
14141 overlay strings, e.g. in icomplete.el. (Bug#11035)
14142
14143 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
14144
14145 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
14146
14147 2012-03-12 Chong Yidong <cyd@gnu.org>
14148
14149 * eval.c (inhibit_lisp_code): Rename from
14150 inhibit_window_configuration_change_hook; move from window.c.
14151
14152 * xfns.c (unwind_create_frame_1, Fx_create_frame):
14153 * window.c (run_window_configuration_change_hook)
14154 (syms_of_window): Callers changed.
14155
14156 2012-03-11 Chong Yidong <cyd@gnu.org>
14157
14158 * keymap.c (Fkey_description): Doc fix (Bug#9700).
14159
14160 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
14161
14162 2012-03-10 Chong Yidong <cyd@gnu.org>
14163
14164 * frame.c (other_visible_frames): Don't assume the selected frame
14165 is visible (Bug#10955).
14166
14167 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
14168
14169 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
14170
14171 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
14172
14173 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
14174 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
14175 zero (Bug#10954).
14176
14177 2012-03-03 Glenn Morris <rgm@gnu.org>
14178
14179 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
14180
14181 2012-03-02 Eli Zaretskii <eliz@gnu.org>
14182
14183 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
14184 position past the first glyph_row that ends at ZV. (Bug#10902)
14185 (redisplay_window, next_element_from_string): Fix typos in
14186 comments.
14187 (redisplay_window): Pass to move_it_vertically the margin in
14188 pixels, not in screen lines.
14189
14190 2012-03-02 Glenn Morris <rgm@gnu.org>
14191
14192 * buffer.c (buffer-list-update-hook): Doc fix.
14193
14194 2012-02-29 Eli Zaretskii <eliz@gnu.org>
14195
14196 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
14197 push_it before setting up the iterator for the first overlay
14198 string, even if we have an empty string loaded.
14199 (next_overlay_string): If there's an empty string on the iterator
14200 stack, pop the stack. (Bug#10903)
14201
14202 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
14203
14204 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
14205 Suggested by Stefan Monnier in
14206 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
14207 * alloc.c (widen_to_Lisp_Object): New static function.
14208 (mark_memory): Also mark Lisp_Objects by fetching pointer words
14209 and widening them to Lisp_Objects. This would work even if
14210 USE_LSB_TAG is defined and wide integers are used, which might
14211 happen in a future version of Emacs.
14212
14213 2012-02-25 Chong Yidong <cyd@gnu.org>
14214
14215 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
14216 Doc fix.
14217
14218 * xselect.c (Fx_selection_exists_p): Doc fix.
14219 (x_clipboard_manager_save_all): Print an informative message
14220 before saving to clipboard manager.
14221
14222 2012-02-24 Chong Yidong <cyd@gnu.org>
14223
14224 * keyboard.c (process_special_events): Handle all X selection
14225 requests in kbd_buffer, not just the next one (Bug#8869).
14226
14227 2012-02-23 Chong Yidong <cyd@gnu.org>
14228
14229 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
14230 call when setting menu-bar-lines and tool-bar-lines parameters.
14231 (unwind_create_frame_1): New helper function.
14232
14233 * window.c (inhibit_window_configuration_change_hook): New var.
14234 (run_window_configuration_change_hook): Obey it.
14235 (syms_of_window): Initialize it.
14236
14237 2012-02-22 Chong Yidong <cyd@gnu.org>
14238
14239 * xterm.c (x_draw_image_relief): Add missing type check for
14240 Vtool_bar_button_margin (Bug#10743).
14241
14242 2012-02-21 Chong Yidong <cyd@gnu.org>
14243
14244 * fileio.c (Vfile_name_handler_alist): Doc fix.
14245
14246 * buffer.c (Fget_file_buffer): Protect against invalid file
14247 handler return value.
14248
14249 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
14250
14251 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
14252 when computing $valmask.
14253
14254 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
14255 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
14256 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
14257 It's useless in that case, and it can cause problems on hosts
14258 that allocate halves of EMACS_INT values separately.
14259 Reported by Dan Horák. Diagnosed by Andreas Schwab in
14260 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
14261 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
14262 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
14263 it avoids undefined behavior on hosts where shifting right by more
14264 than the word width has undefined behavior.
14265
14266 2012-02-19 Chong Yidong <cyd@gnu.org>
14267
14268 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
14269 (Funhandled_file_name_directory, Ffile_name_as_directory)
14270 (Fdirectory_file_name, Fexpand_file_name)
14271 (Fsubstitute_in_file_name): Protect against invalid file handler
14272 return values (Bug#10845).
14273
14274 2012-02-18 Eli Zaretskii <eliz@gnu.org>
14275
14276 * .gdbinit (pitx): Fix incorrect references to fields of the
14277 iterator stack.
14278
14279 2012-02-17 Chong Yidong <cyd@gnu.org>
14280
14281 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
14282
14283 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
14284
14285 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
14286 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
14287
14288 2012-02-15 Chong Yidong <cyd@gnu.org>
14289
14290 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
14291 marked as special. Also, starting docstrings with * is obsolete.
14292
14293 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
14294
14295 * gnutls.c (emacs_gnutls_write): Fix last change.
14296
14297 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
14298
14299 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
14300 send_process.
14301
14302 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
14303
14304 * keymap.c (Fsingle_key_description): Handle char ranges.
14305
14306 2012-02-12 Chong Yidong <cyd@gnu.org>
14307
14308 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
14309 as that creates a dangerous corner case.
14310
14311 * window.c (Fdelete_window_internal): Invalidate the mouse
14312 highlight (Bug#9904).
14313
14314 2012-02-12 Glenn Morris <rgm@gnu.org>
14315
14316 * xselect.c (Fx_own_selection_internal)
14317 (Fx_get_selection_internal, Fx_disown_selection_internal)
14318 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
14319 * nsselect.m (Fx_own_selection_internal)
14320 (Fx_disown_selection_internal, Fx_selection_exists_p)
14321 (Fx_selection_owner_p, Fx_get_selection_internal):
14322 Sync docs and argument specs with the xselect.c versions.
14323
14324 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
14325
14326 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
14327
14328 2012-02-11 Eli Zaretskii <eliz@gnu.org>
14329
14330 * w32select.c (Fx_selection_exists_p): Sync doc string and
14331 argument list with xselect.c. (Bug#10783)
14332
14333 * w16select.c (Fx_selection_exists_p): Sync doc string and
14334 argument list with xselect.c. (Bug#10783)
14335
14336 2012-02-10 Glenn Morris <rgm@gnu.org>
14337
14338 * fns.c (Fsecure_hash): Doc fix.
14339
14340 2012-02-09 Kenichi Handa <handa@m17n.org>
14341
14342 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
14343
14344 2012-02-07 Chong Yidong <cyd@gnu.org>
14345
14346 * buffer.c (Fbuffer_local_variables)
14347 (buffer_lisp_local_variables): Handle unbound vars correctly;
14348 don't let Qunbound leak into Lisp.
14349
14350 2012-02-07 Glenn Morris <rgm@gnu.org>
14351
14352 * image.c (Fimagemagick_types): Doc fix.
14353
14354 * image.c (imagemagick-render-type): Change it from a lisp object
14355 to an integer. Move the doc here from the lisp manual.
14356 Treat all values not equal to 0 the same.
14357
14358 2012-02-06 Chong Yidong <cyd@gnu.org>
14359
14360 * doc.c (store_function_docstring): Avoid applying docstring of
14361 alias to base function (Bug#2603).
14362
14363 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
14364
14365 * .gdbinit (pp1, pv1): Remove redundant defines.
14366 (pr): Use pp.
14367
14368 2012-02-04 Chong Yidong <cyd@gnu.org>
14369
14370 * nsterm.m: Declare a global (Bug#10694).
14371
14372 2012-02-04 Eli Zaretskii <eliz@gnu.org>
14373
14374 * w32.c (get_emacs_configuration_options):
14375 Include --enable-checking, if specified, in the return value.
14376
14377 2012-02-04 Martin Rudalics <rudalics@gmx.at>
14378
14379 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
14380 after rounding frame sizes. (Bug#9723)
14381
14382 2012-02-04 Eli Zaretskii <eliz@gnu.org>
14383
14384 * keyboard.c (adjust_point_for_property): Don't position point
14385 before BEGV. (Bug#10696)
14386
14387 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
14388
14389 Handle overflow when computing char display width (Bug#9496).
14390 * character.c (char_width): Return EMACS_INT, not int.
14391 (char_width, c_string_width): Check for overflow when
14392 computing the width; this is possible now that individual
14393 characters can have unbounded width. Problem introduced
14394 by merge from Emacs 23 on 2012-01-19.
14395
14396 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
14397
14398 * dbusbind.c (Fdbus_register_method): Mention the return value
14399 :ignore in the docstring.
14400
14401 2012-02-02 Glenn Morris <rgm@gnu.org>
14402
14403 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
14404
14405 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
14406 Unconditionally set to t. (Bug#10673)
14407 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
14408 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
14409 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
14410
14411 2012-02-02 Kenichi Handa <handa@m17n.org>
14412
14413 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
14414 0, do not call append_composite_glyph.
14415
14416 2012-02-02 Kenichi Handa <handa@m17n.org>
14417
14418 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
14419 NULL (Bug#6988).
14420 (x_produce_glyphs): If the component of a composition is a null
14421 string, set it->pixel_width to 1 to avoid zero-width glyph.
14422
14423 2012-02-01 Eli Zaretskii <eliz@gnu.org>
14424
14425 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
14426 first 2 arguments are identical. This makes inserting large
14427 output from a subprocess an order of magnitude faster on
14428 MS-Windows, where all sbrk'ed memory is always contiguous.
14429
14430 2012-01-31 Glenn Morris <rgm@gnu.org>
14431
14432 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
14433 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
14434 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
14435
14436 2012-01-29 Glenn Morris <rgm@gnu.org>
14437
14438 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
14439
14440 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
14441
14442 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
14443
14444 2012-01-28 Chong Yidong <cyd@gnu.org>
14445
14446 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
14447
14448 2012-01-26 Chong Yidong <cyd@gnu.org>
14449
14450 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
14451
14452 * search.c (Fsearch_forward, Fsearch_backward): Document negative
14453 repeat counts (Bug#10507).
14454
14455 2012-01-26 Glenn Morris <rgm@gnu.org>
14456
14457 * lread.c (syms_of_lread): Doc fix.
14458
14459 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
14460
14461 * coding.c (encode_designation_at_bol): Change return value to
14462 EMACS_INT.
14463
14464 2012-01-25 Chong Yidong <cyd@gnu.org>
14465
14466 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
14467
14468 2012-01-21 Chong Yidong <cyd@gnu.org>
14469
14470 * floatfns.c (Fcopysign): Make the second argument non-optional,
14471 since nil is not allowed anyway.
14472
14473 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
14474
14475 * process.c (read_process_output): Use p instead of XPROCESS (proc).
14476 (send_process): Likewise.
14477
14478 2012-01-19 Martin Rudalics <rudalics@gmx.at>
14479
14480 * window.c (save_window_save, Fcurrent_window_configuration)
14481 (Vwindow_persistent_parameters): Do not use Qstate.
14482 Rewrite doc-strings.
14483
14484 2012-01-19 Kenichi Handa <handa@m17n.org>
14485
14486 * character.c (char_width): New function.
14487 (Fchar_width, c_string_width, lisp_string_width):
14488 Use char_width (Bug#9496).
14489
14490 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14491
14492 * window.c (Vwindow_persistent_parameters): New variable.
14493 (Fset_window_configuration, save_window_save): Handle persistent
14494 window parameters.
14495
14496 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14497
14498 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
14499 thrashing the stack of the thread. (Bug#9087)
14500
14501 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
14502
14503 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
14504
14505 2012-01-11 Eli Zaretskii <eliz@gnu.org>
14506
14507 * xdisp.c (rows_from_pos_range): Handle the case where the
14508 highlight ends on a newline. (Bug#10464)
14509 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
14510 he end column for display of highlight that ends on a newline
14511 before a R2L line.
14512
14513 2012-01-11 Glenn Morris <rgm@gnu.org>
14514
14515 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
14516 from load-path also when installation-directory is nil. (Bug#10208)
14517
14518 2012-01-10 Glenn Morris <rgm@gnu.org>
14519
14520 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
14521
14522 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
14523 Update template values to be closer to their typical values these days.
14524
14525 2012-01-09 Eli Zaretskii <eliz@gnu.org>
14526
14527 * xdisp.c (rows_from_pos_range): Accept additional argument
14528 DISP_STRING, and accept any glyph in a row whose object is that
14529 string as eligible for mouse highlight. Fixes mouse highlight of
14530 display strings from overlays. (Bug#10464)
14531
14532 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14533
14534 emacs: fix an auto-save permissions race condition (Bug#10400)
14535 * fileio.c (auto_saving_dir_umask): New static var.
14536 (Fmake_directory_internal): Use it.
14537 (do_auto_save_make_dir): Set it, instead of invoking chmod after
14538 creating the directory. The old code temporarily assigns
14539 too-generous permissions to the directory.
14540 (do_auto_save_eh): Clear it.
14541 (Fdo_auto_save): Catch all errors, not just file errors, so
14542 that the var is always cleared.
14543
14544 2012-01-07 Eli Zaretskii <eliz@gnu.org>
14545
14546 * search.c (scan_buffer): Pass character positions to
14547 know_region_cache, not byte positions. (Bug#6540)
14548
14549 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
14550
14551 * w32.c (sys_rename): Report EXDEV when rename of a directory
14552 fails because the target is on another logical disk. (Bug#10284)
14553
14554 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
14555
14556 * xterm.c (x_embed_request_focus): New function.
14557
14558 * xterm.h: Add prototype.
14559
14560 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
14561
14562 2012-01-05 Glenn Morris <rgm@gnu.org>
14563
14564 * emacs.c (emacs_copyright): Update short copyright year to 2012.
14565
14566 2012-01-01 Eli Zaretskii <eliz@gnu.org>
14567
14568 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
14569 Load gnutls_transport_set_lowat only if GnuTLS version is below
14570 2.11.1.
14571 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
14572 GnuTLS versions below 2.11.1.
14573
14574 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
14575
14576 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
14577 to the doc string advising against its use for altering the way
14578 windows are scrolled.
14579
14580 2011-12-28 Kenichi Handa <handa@m17n.org>
14581
14582 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
14583 coding-system ASCII compatible only when it does not produce BOM
14584 on encoding (Bug#10383).
14585
14586 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
14587
14588 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
14589 can scroll.
14590 (create_and_show_popup_menu): Always use menu_position_func for
14591 Gtk3 (Bug#10361).
14592
14593 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
14594
14595 * callint.c (Fcall_interactively): Don't truncate prompt string.
14596
14597 2011-12-23 Eli Zaretskii <eliz@gnu.org>
14598
14599 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
14600 property that ends at ZV, so that the bidi iteration could be
14601 resumed from there (after widening). (Bug#10360)
14602
14603 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
14604
14605 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
14606
14607 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
14608
14609 * nsterm.m (x_free_frame_resources):
14610 Release f->output_data.ns->miniimage.
14611 (ns_index_color): Fix indentation. Do not retain
14612 color_table->colors[i].
14613
14614 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
14615 before returning.
14616
14617 * nsfns.m (x_set_background_color): Assign return value from
14618 ns_index_color to face-background instead of NSColor*.
14619 (ns_implicitly_set_icon_type): Fix indentation.
14620 Change assignment in for loop to comparison.
14621
14622 * emacs.c (ns_pool): New variable.
14623 (main): Assign ns_pool.
14624 (Fkill_emacs): Call ns_release_autorelease_pool.
14625
14626 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
14627 autorelease fdesc, release fdAttrs and tdict.
14628 (ns_get_covering_families): Release charset.
14629 (ns_findfonts): Release NSFontDescriptor created with new.
14630 (ns_uni_to_glyphs): Fix indentation.
14631 (setString): Release attrStr before assigning new value.
14632
14633 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14634
14635 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
14636 and NS_IMPL_COCOA.
14637 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
14638 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
14639
14640 2011-12-18 David Reitter <reitter@cmu.edu>
14641
14642 * nsterm.m (ns_term_init): Subscribe for notifications
14643 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
14644 to method trackingNotification in EmacsMenu.
14645
14646 * nsmenu.m (trackingMenu): New variable.
14647 (trackingNotification): New method (from Aquamacs).
14648 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
14649 from Aquamacs (Bug#7030).
14650
14651 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14652
14653 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
14654 (symbol_to_nsstring): Fix indentation.
14655 (ns_symbol_to_pb): New function.
14656 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
14657 (Fns_rotate_cut_buffers_internal): Remove.
14658 (Fns_store_selection_internal): Rename from
14659 Fns_store_cut_buffer_internal.
14660 (ns_get_foreign_selection, Fx_own_selection_internal)
14661 (Fx_disown_selection_internal, Fx_selection_exists_p)
14662 (Fns_get_selection_internal, Fns_store_selection_internal):
14663 Use ns_symbol_to_pb and check if return value is nil.
14664 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
14665 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
14666 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
14667 renamed to Sns_store_selection_internal.
14668 (ns_handle_selection_request): Move code to Fx_own_selection_internal
14669 and remove this function.
14670 (ns_handle_selection_clear): Remove, never used.
14671 (Fx_own_selection_internal): Move code from ns_handle_selection_request
14672 here.
14673
14674 2011-12-17 Ken Brown <kbrown@cornell.edu>
14675
14676 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
14677 GID is unknown (Bug#10257).
14678
14679 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
14680
14681 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
14682 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
14683 which caused a build failure on GNU/Linux IA-64. This problem was
14684 introduced by my 2011-10-07 patch.
14685
14686 2011-12-15 Juri Linkov <juri@jurta.org>
14687
14688 * image.c (imagemagick_error): New function. (Bug#10112)
14689 (imagemagick_load_image): Comment out `MagickSetResolution' call.
14690 Use `imagemagick_error' where ImageMagick functions return
14691 `MagickFalse'.
14692 (Fimagemagick_types): Add `Fnreverse' to return the list in the
14693 proper order.
14694
14695 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14696
14697 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
14698 fill background (Bug#8992).
14699
14700 2011-12-13 Martin Rudalics <rudalics@gmx.at>
14701
14702 * window.c (Vwindow_combination_resize)
14703 (Vwindow_combination_limit): Use t instead of non-nil in
14704 doc-strings.
14705 (Vrecenter_redisplay): Add first sentence of doc-string on
14706 separate line.
14707 (Frecenter): Fix doc-string typo.
14708
14709 2011-12-11 Kenichi Handa <handa@m17n.org>
14710
14711 * coding.c (Funencodable_char_position): Pay attention to the
14712 buffer text relocation (Bug#9389).
14713
14714 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14715
14716 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
14717 gtk_init (Bug#10100).
14718
14719 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14720
14721 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
14722 IT->string is nil. (Bug#10263)
14723
14724 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14725
14726 * nsterm.h (x_free_frame_resources): Declare.
14727
14728 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
14729 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
14730
14731 * nsterm.h (ns_get_defaults_value): Declare.
14732
14733 * nsterm.m (ns_default): Call ns_get_defaults_value.
14734
14735 2011-12-09 Eli Zaretskii <eliz@gnu.org>
14736
14737 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
14738 (Bug#10170)
14739
14740 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14741
14742 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
14743 that where the value of an _OBJC_* symbol points to is in the .bss
14744 section (Bug#10240).
14745
14746 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14747
14748 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
14749 after the loop to call ccl_driver at least once (Bug#8619).
14750
14751 2011-12-08 Kenichi Handa <handa@m17n.org>
14752
14753 * ftfont.c (get_adstyle_property): Fix previous change
14754 (Bug#10233).
14755
14756 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
14757
14758 * w32.c (init_environment): If no_site_lisp, remove site-lisp
14759 dirs from the default value of EMACSLOADPATH (bug#10208).
14760
14761 2011-12-07 Glenn Morris <rgm@gnu.org>
14762
14763 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
14764 installation and source directories as well. (Bug#10208)
14765
14766 2011-12-06 Chong Yidong <cyd@gnu.org>
14767
14768 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
14769
14770 2011-12-06 Glenn Morris <rgm@gnu.org>
14771
14772 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
14773 as an error, not just -1. (Bug#10217)
14774
14775 2011-12-05 Chong Yidong <cyd@gnu.org>
14776
14777 * keyboard.c (process_special_events): New function.
14778 (swallow_events, Finput_pending_p): Use it (Bug#10195).
14779
14780 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
14781
14782 * coding.c (encode_designation_at_bol): Don't use uninitialized
14783 local variable (Bug#9318).
14784
14785 2011-12-05 Kenichi Handa <handa@m17n.org>
14786
14787 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
14788 return Qnil (Bug#8046, Bug#10193).
14789
14790 2011-12-05 Kenichi Handa <handa@m17n.org>
14791
14792 * coding.c (encode_designation_at_bol): New args charbuf_end and
14793 dst. Return the number of produced bytes. Callers changed.
14794 (coding_set_source): Return how many bytes coding->source was
14795 relocated.
14796 (coding_set_destination): Return how many bytes
14797 coding->destination was relocated.
14798 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
14799 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
14800
14801 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14802
14803 * coding.c (CODING_CHAR_CHARSET_P): New macro.
14804 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
14805 macro (Bug#9318).
14806
14807 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
14808
14809 The following changes are to fix Bug#9318.
14810
14811 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
14812 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
14813 (encode_coding_iso_2022, encode_coding_sjis)
14814 (encode_coding_big5, encode_coding_charset): Use the above macros.
14815
14816 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
14817
14818 * lisp.h (process_quit_flag): Fix external declaration.
14819
14820 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
14821
14822 Don't macro-inline non-performance-critical code.
14823 * eval.c (process_quit_flag): New function.
14824 * lisp.h (QUIT): Use it.
14825
14826 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
14827
14828 * nsfns.m (get_geometry_from_preferences): New function.
14829 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
14830
14831 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
14832
14833 * emacs.c (Qkill_emacs): Define.
14834 (syms_of_emacs): Initialize it.
14835 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
14836 Qquit_flag to `kill-emacs' instead.
14837 (quit_throw_to_read_char): Add parameter `from_signal'.
14838 All callers changed. Call Fkill_emacs if requested and safe.
14839 * lisp.h (QUIT): Call Fkill_emacs if requested.
14840
14841 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
14842
14843 * widget.c (update_wm_hints): Return if wmshell is null.
14844 (widget_update_wm_size_hints): New function.
14845
14846 * widget.h (widget_update_wm_size_hints): Declare.
14847
14848 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
14849 widget_update_wm_size_hints (Bug#10104).
14850
14851 2011-12-03 Eli Zaretskii <eliz@gnu.org>
14852
14853 * xdisp.c (handle_invisible_prop): If the invisible text ends just
14854 before a newline, prepare the bidi iterator for consuming the
14855 newline, and keep the current paragraph direction. (Bug#10183)
14856 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
14857
14858 2011-12-02 Juri Linkov <juri@jurta.org>
14859
14860 * search.c (Fword_search_regexp): New Lisp function created from
14861 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
14862 (Fword_search_backward, Fword_search_forward)
14863 (Fword_search_backward_lax, Fword_search_forward_lax):
14864 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
14865 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
14866
14867 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
14868
14869 * fileio.c (Finsert_file_contents): Move after-change-function call
14870 to before the "handled:" label, since all "goto handled" appear in
14871 cases where the *-change-functions have already been properly called
14872 (bug#10117).
14873
14874 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
14875
14876 * keyboard.c (interrupt_signal): Don't call kill-emacs when
14877 waiting for input. (Bug#10169)
14878
14879 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14880
14881 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
14882 verifies glyph row's hash code--we have just reallocated the
14883 glyphs, so their contents can be complete garbage. (Bug#10164)
14884
14885 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14886
14887 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14888
14889 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14890
14891 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
14892 attributes are tested _before_ calling verify_row_hash, to protect
14893 against GCC re-ordering of the tests. (Bug#10164)
14894
14895 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
14896
14897 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
14898
14899 * xterm.c (handle_one_xevent): Only set async_visible and friends
14900 if net_wm_state_hidden_seen is non-zero (Bug#10002)
14901 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
14902 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14903
14904 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14905
14906 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14907 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14908 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14909 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14910 All uses changed to use GCPRO1 etc.
14911 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14912 Revert to old implementation (i.e., before 2011-03-11).
14913
14914 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14915
14916 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14917 of scroll runs so as to avoid assigning disabled bogus rows and
14918 unnecessary graphics copy operations.
14919
14920 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14921
14922 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14923 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14924 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14925 (malloc, free, realloc, calloc): Redirect to e_* only when
14926 compiling Emacs.
14927
14928 * lisp.h (GCTYPEBITS): Move before first use.
14929 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14930 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14931 this macro definition.
14932
14933 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14934 _MSC_VER.
14935
14936 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14937
14938 * gtkutil.c (xg_create_frame_widgets):
14939 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14940 present with Gtk+ 2.0.
14941
14942 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14943
14944 * fileio.c (Finsert_file_contents): Undo previous change; see
14945 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14946
14947 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14948
14949 Rename locals to avoid shadowing.
14950 * fileio.c (Finsert_file_contents):
14951 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14952 * process.c (wait_reading_process_output):
14953 Rename inner 'proc' to 'p' to avoid shadowing.
14954 Indent for consistency with usual Emacs style.
14955
14956 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14957
14958 * xdisp.c (redisplay_window): If cursor row is not fully visible
14959 after recentering, and scroll-conservatively is set to a large
14960 number, scroll window by a few more lines to make the cursor fully
14961 visible and out of scroll-margin. (Bug#10105)
14962 (start_display): Don't move to the next line if the display should
14963 start at a newline that is part of a display vector or an overlay
14964 string. (Bug#10119)
14965
14966 2011-11-24 Juri Linkov <juri@jurta.org>
14967
14968 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14969 after the `MagickPingImage' call. (Bug#10112)
14970
14971 2011-11-23 Chong Yidong <cyd@gnu.org>
14972
14973 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14974
14975 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14976
14977 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14978 making another buffer current. (Bug#10114)
14979
14980 2011-11-23 Glenn Morris <rgm@gnu.org>
14981
14982 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14983
14984 2011-11-23 Chong Yidong <cyd@gnu.org>
14985
14986 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14987 using it (Bug#5984).
14988
14989 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14990
14991 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14992 and header-lines, as they don't have one computed for them.
14993 (Bug#10098)
14994
14995 * .gdbinit (prow): Make displayed values more self-explaining.
14996 Add row's hash code.
14997
14998 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14999
15000 * process.c (wait_reading_process_output): Fix asynchrounous
15001 GnuTLS socket handling on some versions of the GnuTLS library.
15002 (wait_reading_process_output): Add comment and URL.
15003
15004 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
15005
15006 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
15007
15008 2011-11-21 Chong Yidong <cyd@gnu.org>
15009
15010 * window.c (Fnext_window, Fprevious_window): Doc fix.
15011
15012 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15013
15014 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
15015
15016 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15017
15018 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
15019
15020 2011-11-20 Martin Rudalics <rudalics@gmx.at>
15021
15022 * window.c (Fset_window_combination_limit): Rename argument
15023 STATUS to LIMIT.
15024 (Vwindow_combination_limit): Remove "status" from doc-string.
15025
15026 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
15027
15028 * m/ibms390.h: Remove.
15029 * m/ibms390x.h: Don't include "ibms390.h".
15030
15031 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
15032
15033 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
15034 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
15035
15036 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
15037
15038 * casetab.c (Fset_case_table):
15039 * charset.c (Fcharset_after): Fix typos.
15040
15041 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
15042
15043 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
15044 Otherwise, valgrind does not work on some platforms.
15045 Problem reported by Andreas Schwab in
15046 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
15047 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
15048 is set, removing the need for VIRT_ADDRESS_VARIES.
15049 (PURE_P): Use a more-efficient implementation that needs just one
15050 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
15051 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
15052 to 4 (xorl, subq, cmpq, setbe).
15053 * alloc.c (pure): Always extern now, since that's the
15054 VIRT_ADDR_VARIES behavior.
15055 (PURE_POINTER_P): Use a single comparison, not two, for
15056 consistency with the new puresize.h.
15057 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
15058 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
15059 Remove VIRT_ADDR_VARIES no longer needed.
15060
15061 2011-11-19 Eli Zaretskii <eliz@gnu.org>
15062
15063 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
15064 (erase_phys_cursor, update_window_cursor, show_mouse_face)
15065 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
15066 behave as if the cursor position were at the window margin.
15067
15068 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
15069 and the cursor position is out of bounds, behave as if the cursor
15070 position were at the window margin. (Bug#10075)
15071
15072 2011-11-18 Chong Yidong <cyd@gnu.org>
15073
15074 * window.c (Fwindow_combination_limit): Make first argument
15075 non-optional, since it is meaningless for live windows like the
15076 selected window.
15077
15078 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
15079
15080 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
15081
15082 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
15083
15084 * intervals.c: Fix grafting over the whole buffer (bug#10071).
15085 (graft_intervals_into_buffer): Simplify.
15086
15087 2011-11-18 Eli Zaretskii <eliz@gnu.org>
15088
15089 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
15090 hash values of the two rows.
15091 (copy_row_except_pointers): Preserve the used[] arrays and the
15092 hash values of the two rows. (Bug#10035)
15093 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
15094
15095 * xdisp.c (row_hash): New function, body extracted from
15096 compute_line_metrics.
15097 (compute_line_metrics): Call row_hash, instead of computing the
15098 hash code inline.
15099
15100 * dispnew.c (verify_row_hash): Call row_hash for computing the
15101 hash code of a row, instead of duplicating code from xdisp.c.
15102
15103 * dispextern.h (row_hash): Add prototype.
15104
15105 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
15106
15107 * frame.c (delete_frame): Don't delete the terminal when the last
15108 X frame is closed if emacs is built with GTK toolkit.
15109
15110 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
15111
15112 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
15113
15114 2011-11-17 Martin Rudalics <rudalics@gmx.at>
15115
15116 * window.c (Vwindow_splits): Rename to
15117 Vwindow_combination_resize. Suggested by Juri Linkov.
15118 (Fsplit_window_internal): Use Vwindow_combination_resize instead
15119 of Vwindow_splits.
15120
15121 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
15122
15123 * nsfns.m (Fns_font_name):
15124 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
15125
15126 2011-11-16 Martin Rudalics <rudalics@gmx.at>
15127
15128 * window.h (window): Rename slot "nest" to "combination_limit".
15129 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
15130 (Fset_window_nest): Rename to Fset_window_combination_limit.
15131 (Vwindow_nest): Rename to Vwindow_combination_limit.
15132 (recombine_windows, make_parent_window, make_window)
15133 (Fsplit_window_internal, saved_window)
15134 (Fset_window_configuration, save_window_save): Rename all
15135 occurrences of window_nest to window_combination_limit.
15136
15137 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
15138
15139 * image.c (imagemagick_load_image): Fix typo.
15140
15141 2011-11-14 Eli Zaretskii <eliz@gnu.org>
15142
15143 * xdisp.c (display_line): Move the call to
15144 highlight_trailing_whitespace before the call to
15145 compute_line_metrics, since the latter needs to see the final
15146 faces of all the glyphs to compute ROW's hash value.
15147 Fixes assertion violations in row_equal_p. (Bug#10035)
15148
15149 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
15150
15151 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
15152 just return (bug#10044).
15153
15154 2011-11-12 Eli Zaretskii <eliz@gnu.org>
15155
15156 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
15157 with user-defined heap size. Bump the default size of the temacs
15158 heap to 27MB, to avoid memory warning when running temacs.
15159 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
15160
15161 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
15162 current_matrix and desired_matrix. (Bug#9990)
15163 (verify_row_hash) [XASSERTS]: New function.
15164 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
15165 that the hash value of glyph rows is correct.
15166
15167 2011-11-12 Martin Rudalics <rudalics@gmx.at>
15168
15169 * window.h (window): Remove splits slot.
15170 * window.c (Fwindow_splits, Fset_window_splits): Remove.
15171 (Fdelete_other_windows_internal, make_parent_window)
15172 (make_window, Fsplit_window_internal, Fdelete_window_internal)
15173 (Fset_window_configuration, save_window_save): Don't deal with
15174 split status of windows.
15175 (saved_window): Remove splits slot.
15176 (Vwindow_splits): Rewrite doc-string.
15177
15178 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
15179
15180 * xfns.c (unwind_create_frame):
15181 * nsfns.m (unwind_create_frame):
15182 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
15183 Vframe_list (Bug#9999).
15184
15185 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
15186
15187 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
15188
15189 2011-11-11 Kenichi Handa <handa@m17n.org>
15190
15191 * callproc.c (Fcall_process): Set the member dst_multibyte of
15192 process_coding.
15193
15194 2011-11-11 Johan Bockgård <bojohan@gnu.org>
15195
15196 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
15197 avoid a crash (bug#9496).
15198
15199 2011-11-09 Chong Yidong <cyd@gnu.org>
15200
15201 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
15202 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
15203
15204 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
15205
15206 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
15207
15208 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
15209
15210 Avoid some portability problems by eschewing 'extern inline' functions.
15211 The trivial performance wins aren't worth the portability hassles; see
15212 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
15213 et seq.
15214 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
15215 (window_box_width, window_box_left, window_box_left_offset)
15216 (window_box_right, window_box_right_offset): Undo previous change,
15217 by removing the "extern"s.
15218 * intervals.c (adjust_intervals_for_insertion)
15219 (adjust_intervals_for_deletion): Undo previous change,
15220 making these static again.
15221 (offset_intervals, temp_set_point_both, temp_set_point)
15222 (copy_intervals_to_string): No longer inline.
15223 * xdisp.c (window_text_bottom_y, window_box_width)
15224 (window_box_height, window_box_left_offset)
15225 (window_box_right_offset, window_box_left, window_box_right)
15226 (window_box): No longer inline.
15227
15228 2011-11-08 Chong Yidong <cyd@gnu.org>
15229
15230 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
15231 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
15232 Signal an error if not a live window.
15233 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
15234 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
15235
15236 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
15237
15238 * lisp.h (syms_of_abbrev): Remove declaration.
15239 Reported by CHENG Gao <chenggao@royau.me>.
15240
15241 2011-11-07 Eli Zaretskii <eliz@gnu.org>
15242
15243 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
15244 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
15245 of temacs in GUI mode.
15246
15247 2011-11-07 Martin Rudalics <rudalics@gmx.at>
15248
15249 * window.h: Declare delete_all_child_windows instead of
15250 delete_all_subwindows.
15251 * window.c (Fwindow_nest, Fset_window_nest)
15252 (Fset_window_new_total, Fset_window_new_normal)
15253 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
15254 (delete_all_subwindows): Rename to delete_all_child_windows.
15255 (Fdelete_other_windows_internal, Fset_window_configuration):
15256 Call delete_all_child_windows instead of delete_all_subwindows.
15257 * frame.c (delete_frame): Call delete_all_child_windows instead
15258 of delete_all_subwindows.
15259
15260 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
15261
15262 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
15263 This is also needed for porting to any host where GC_MARK_STACK is
15264 not GC_MAKE_GCPROS_NOOPS.
15265 (which_symbols): Use it.
15266
15267 2011-11-07 Kenichi Handa <handa@m17n.org>
15268
15269 * coding.c (coding_set_destination): Check coding->src_pos only
15270 when coding->src_object is a buffer (bug#9910).
15271
15272 * process.c (send_process): Set the member src_multibyte of coding
15273 to 0 (bug#9911) when sending a unibyte text.
15274
15275 * callproc.c (Fcall_process): Set the member src_multibyte of
15276 process_coding to 0 (bug#9912).
15277
15278 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15279
15280 * xmenu.c (cleanup_widget_value_tree): New function.
15281 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
15282 calling free_menubar_widget_value_tree directly (Bug#9830).
15283
15284 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
15285
15286 Fix some portability problems with 'inline'.
15287 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
15288 (window_box_width, window_box_left, window_box_left_offset)
15289 (window_box_right, window_box_right_offset): Declare extern.
15290 Otherwise, these inline functions do not conform to C99 and
15291 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
15292 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
15293 * intervals.c (adjust_intervals_for_insertion)
15294 (adjust_intervals_for_deletion): Now extern, because otherwise the
15295 extern inline functions 'offset_intervals' couldn't refer to it.
15296 (static_offset_intervals): Remove.
15297 (offset_intervals): Rewrite using the old contents of
15298 static_offset_intervals. The old version didn't conform to C99
15299 because an extern inline function contained a reference to an
15300 identifier with static linkage.
15301
15302 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
15303
15304 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
15305 GC.
15306
15307 2011-11-06 Eli Zaretskii <eliz@gnu.org>
15308
15309 * xdisp.c (init_iterator, reseat_to_string): Don't set the
15310 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
15311 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
15312 return Qleft_to_right.
15313
15314 2011-11-06 Chong Yidong <cyd@gnu.org>
15315
15316 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
15317 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
15318 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
15319 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
15320 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
15321 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
15322 (Fwindow_vscroll): Doc fix.
15323 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
15324 argument, since it makes no sense to pass a live window and for
15325 consistency with window-child.
15326
15327 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
15328
15329 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
15330 support MSVC.
15331
15332 2011-11-05 Jason Rumney <jasonr@gnu.org>
15333
15334 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
15335 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
15336 fonts (Bug#6029).
15337 (add_font_entity_to_list): Fix logic errors in mixed boolean and
15338 bitwise arithmetic preventing use of unicode-sip and non-truetype
15339 opentype fonts.
15340
15341 2011-11-05 Eli Zaretskii <eliz@gnu.org>
15342
15343 * s/ms-w32.h (fstat, stat, utime): Move redirections to
15344 "emacs"-only part.
15345
15346 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
15347 initialization code to keep similarity to xfns.c after changes
15348 from 2011-11-05.
15349
15350 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
15351
15352 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
15353 (unwind_create_frame): New function (Bug#9943).
15354 (Fx_create_frame): Restructure code to be more similar to the one in
15355 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
15356 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
15357 Move terminal->reference_count++ just before making the frame official
15358 (Bug#9943).
15359
15360 * nsterm.m (x_free_frame_resources): New function.
15361 (x_destroy_window): Move code to x_free_frame_resources.
15362
15363 * xfns.c (unwind_create_frame): Fix comment.
15364 (Fx_create_frame, x_create_tip_frame):
15365 Move terminal->reference_count++ just before making the frame
15366 official. Move initialization of image_cache_refcount and
15367 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
15368
15369 2011-11-05 Eli Zaretskii <eliz@gnu.org>
15370
15371 Support MSVC build with newer versions of Visual Studio.
15372 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
15373 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
15374 nt/gmake.defs.
15375
15376 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
15377 which are not supported by MSVC.
15378 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
15379 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
15380 bitfields.
15381 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
15382 types in bitfields.
15383 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
15384
15385 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
15386
15387 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
15388
15389 Support MSVC build with newer versions of Visual Studio.
15390 * w32.c: Don't include w32api.h for MSVC.
15391 (init_environment) [_MSC_VER]: Call sys_access, not _access.
15392
15393 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
15394 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
15395 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
15396 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
15397 e_* cousins.
15398 (alloca) [_MSC_VER]: Define to _alloca.
15399
15400 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
15401
15402 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
15403
15404 2011-11-04 Eli Zaretskii <eliz@gnu.org>
15405
15406 * xdisp.c (note_mouse_highlight): If either of
15407 previous/next-single-property-change returns nil, treat that as
15408 the beginning or the end of the buffer. (Bug#9955)
15409
15410 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
15411
15412 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
15413 label is not null (Bug#9951).
15414 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
15415 may be NULL.
15416
15417 2011-11-04 Eli Zaretskii <eliz@gnu.org>
15418
15419 * window.c (Fwindow_body_size): Mention in the doc string that the
15420 return value is in frame's canonical units. (Bug#9949)
15421
15422 2011-11-03 Eli Zaretskii <eliz@gnu.org>
15423
15424 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
15425
15426 * w32fns.c (unwind_create_frame): If needed, free the glyph
15427 matrices of the partially constructed frame. (Bug#9943)
15428 * xfns.c (unwind_create_frame): Likewise.
15429
15430 2011-11-01 Eli Zaretskii <eliz@gnu.org>
15431
15432 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
15433 Don't stop backward scan on the continuation glyph, even though
15434 its CHARPOS is positive.
15435 (mouse_face_from_buffer_pos, note_mouse_highlight):
15436 Rename cover_string to disp_string.
15437
15438 2011-11-01 Martin Rudalics <rudalics@gmx.at>
15439
15440 * window.c (temp_output_buffer_show): Don't use
15441 Vtemp_buffer_show_specifiers.
15442 (Vtemp_buffer_show_specifiers): Remove unused variable.
15443
15444 2011-10-30 Eli Zaretskii <eliz@gnu.org>
15445
15446 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
15447 past the beginning of the current glyph matrix.
15448
15449 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
15450
15451 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
15452 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
15453 HAVE_GTK3 (Bug#9869).
15454
15455 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
15456 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
15457
15458 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
15459
15460 * xterm.c: Declare x_handle_net_wm_state to return int.
15461 (handle_one_xevent): Check if we are iconified but don't have
15462 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
15463 (get_current_wm_state): Return non-zero if not hidden,
15464 check for _NET_WM_STATE_HIDDEN (Bug#9893).
15465 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
15466 (x_handle_net_wm_state): Return what get_current_wm_state returns.
15467 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
15468
15469 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
15470
15471 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
15472 so that this new function doesn't get optimized away by a
15473 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
15474
15475 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15476
15477 * frame.h (MOUSE_HL_INFO): Remove excess parens.
15478
15479 2011-10-29 Eli Zaretskii <eliz@gnu.org>
15480
15481 Fix the `xbytecode' command.
15482 * .gdbinit (xprintbytestr): New command.
15483 (xwhichsymbols): Rename from `which'; all callers changed.
15484 (xbytecode): Print the byte-code string as well.
15485
15486 2011-10-29 Kim Storm <storm@cua.dk>
15487
15488 * alloc.c (which_symbols): New function.
15489
15490 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15491
15492 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
15493 line. (Bug#9903)
15494
15495 2011-10-29 Glenn Morris <rgm@gnu.org>
15496
15497 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
15498 Not clear what it was for, and it causes various bugs. (Bug#9839)
15499
15500 2011-10-28 Eli Zaretskii <eliz@gnu.org>
15501
15502 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
15503 possible random value that matches one of those tested as
15504 condition to clear the mouse face.
15505
15506 2011-10-28 Chong Yidong <cyd@gnu.org>
15507
15508 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
15509
15510 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15511
15512 * window.c (make_window): Initialize phys_cursor_on_p.
15513
15514 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15515
15516 * lisp.h (struct Lisp_Symbol): Update comments.
15517
15518 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
15519
15520 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
15521
15522 2011-10-28 Eli Zaretskii <eliz@gnu.org>
15523
15524 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
15525 <oslsachem@gmail.com> for helping to debug this.
15526
15527 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
15528 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
15529 (g_b_init_get_glyph_outline_w): New static variables.
15530 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
15531 (GetGlyphOutlineW_Proc): New typedefs.
15532 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
15533 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
15534 New functions.
15535 (w32font_open_internal, compute_metrics):
15536 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
15537 instead of calling the "wide" APIs directly.
15538
15539 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
15540
15541 * w32.h (syms_of_w32font): Add prototype.
15542
15543 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
15544
15545 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
15546 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
15547 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
15548 (Fmove_to_window_line): Doc fix.
15549
15550 2011-10-27 Chong Yidong <cyd@gnu.org>
15551
15552 * process.c (make_process): Set gnutls_state to NULL.
15553
15554 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
15555 non-NULL, regardless of GNUTLS_INITSTAGE.
15556 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
15557 an error. Set process slots as soon as we allocate them.
15558
15559 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
15560
15561 2011-10-27 Chong Yidong <cyd@gnu.org>
15562
15563 * gnutls.c (emacs_gnutls_deinit): New function.
15564 Deallocate credentials structures as well as calling gnutls_deinit.
15565 (Fgnutls_deinit, Fgnutls_boot): Use it.
15566
15567 * process.c (make_process): Initialize GnuTLS credentials to NULL.
15568 (deactivate_process): Call emacs_gnutls_deinit.
15569
15570 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
15571
15572 * image.c (x_create_x_image_and_pixmap):
15573 * w32.c (sys_rename, w32_delayed_load):
15574 * w32font.c (fill_in_logfont):
15575 * w32reg.c (x_get_string_resource): Silence compiler warnings.
15576
15577 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
15578
15579 * w32fns.c (w32_default_color_map): New function,
15580 extracted from Fw32_default_color_map.
15581 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
15582
15583 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
15584
15585 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
15586
15587 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15588
15589 * keyboard.c (test_undefined): New function (bug#9751).
15590 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
15591
15592 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
15593
15594 * sysdep.c (init_sys_modes): Fix the check for the controlling
15595 terminal (Bug#6649).
15596
15597 2011-10-20 Eli Zaretskii <eliz@gnu.org>
15598
15599 * dispextern.h (struct bidi_it): New member next_en_type.
15600
15601 * bidi.c (bidi_line_init): Initialize the next_en_type member.
15602 (bidi_resolve_explicit_1): When next_en_pos is valid for the
15603 current character, check also for next_en_type being WEAK_EN.
15604 (bidi_resolve_weak): Don't enter the expensive loop if the current
15605 position is before next_en_pos. Record the bidi type of the first
15606 non-ET, non-BN character we find, in addition to its position.
15607 (bidi_level_of_next_char): Invalidate next_en_type when
15608 next_en_pos is over-stepped.
15609
15610 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
15611
15612 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
15613 * editfns.c: Rewrite current-time-zone so that it invokes
15614 the equivalent of (format-time-string "%Z") to get the time zone name.
15615 This fixes a bug when the time zone name contains characters that
15616 need converting from the system time locale to Emacs internal format.
15617 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
15618 that patch fixed format-time-string to do the conversion, but
15619 I forgot to fix current-time-zone.
15620 (format_time_string): New function, containing most of
15621 what Fformat_time_string used to contain.
15622 (Fformat_time_string): Rewrite in terms of format_time_string.
15623 This doesn't change this function's behavior.
15624 (current-time-zone): Rewrite to use format_time_string.
15625 This fixes the bug reported by Michael Schierl in
15626 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
15627 Jason Rumney's 2007-06-07 change worked around this bug, but
15628 didn't fix it.
15629 * systime.h (tzname, timezone): Remove no-longer-used declarations.
15630
15631 2011-10-19 Eli Zaretskii <eliz@gnu.org>
15632
15633 * xdisp.c (start_display): If the character at POS is displayed
15634 via a display vector, reset IT->current.dpvec_index to zero.
15635 (try_window_reusing_current_matrix): If a line ends in a display
15636 vector or the next line starts in a display vector, continue
15637 redrawing the window even though the character position of
15638 start_row was reached.
15639 (Bug#9771, part 2)
15640
15641 2011-10-18 Chong Yidong <cyd@gnu.org>
15642
15643 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
15644 with nobreak-char-display too.
15645
15646 2011-10-18 Eli Zaretskii <eliz@gnu.org>
15647
15648 Fix part 3 of bug#9771.
15649 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
15650 (bidi_resolve_neutral): Don't enter the expensive loop looking for
15651 non-neutral characters if the current character is a paragraph
15652 separator (a.k.a. Newline). This avoids running the same
15653 expensive loop twice, once when we consume the preceding newline
15654 and the other time when the line actually needs to be displayed.
15655 Avoid the loop when we see neutrals on the base embedding level
15656 following a character whose directionality is the same as the
15657 paragraph's. This avoids running the expensive loop when a line
15658 ends in a long sequence of neutrals, like control characters.
15659 Add assertion against STRONG_AL type. Slightly rearrange code
15660 that determines the type of a neutral given the first non-neutral
15661 that follows it.
15662 (bidi_level_of_next_char): Set next_en_pos to zero when
15663 invalidating its info.
15664
15665 2011-10-17 Eli Zaretskii <eliz@gnu.org>
15666
15667 * xdisp.c (push_display_prop): Determine whether to record string
15668 or buffer position by IT->string, not by IT->method. Allow
15669 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
15670 (move_it_vertically_backward): Don't look for character position
15671 immediately after the newline when in a continuation line.
15672 (Bug#9771, part 1)
15673
15674 2011-10-15 Martin Rudalics <rudalics@gmx.at>
15675
15676 * window.c (coordinates_in_window): Rewrite and delabelize
15677 vertical border check. (Bug#5357) (Bug#9618)
15678
15679 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
15680
15681 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
15682 errors in XSetWindowBorder (bug#9310).
15683
15684 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
15685
15686 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
15687 avoid crash when xmalloc overrun checking is enabled.
15688
15689 2011-10-13 Eli Zaretskii <eliz@gnu.org>
15690
15691 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
15692 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
15693 cursor motion with <left> and <right> arrow keys.
15694
15695 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
15696 some callers set that themselves.
15697
15698 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15699
15700 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
15701 display string and the previous row comes from the same string and
15702 is empty. (Bug#9739) (Bug#9738)
15703
15704 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15705
15706 * doc.c (get_doc_string): Encode file name (bug#9735).
15707
15708 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15709
15710 * bidi.c (bidi_level_of_next_char):
15711 * xdisp.c (get_visually_first_element): Remove old incorrect
15712 comments regarding the Unicode Line Separator character.
15713
15714 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
15715
15716 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
15717
15718 * alloc.c (Fgc_status): Do not access beyond zombies array
15719 boundary if nzombies > MAX_ZOMBIES.
15720 * alloc.c (dump_zombies): Add missing format specifier.
15721
15722 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15723
15724 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15725 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15726
15727 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15728 Some packages use them to denote characters with modifiers.
15729
15730 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
15731
15732 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
15733 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
15734 matching a pp-number. Rename parameter var to var1.
15735
15736 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15737
15738 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
15739
15740 2011-10-08 Glenn Morris <rgm@gnu.org>
15741
15742 * callint.c (Fcall_interactively): Give a more explicit error for the
15743 'c' case with a non-character input. (Bug#8479)
15744
15745 2011-10-08 Eli Zaretskii <eliz@gnu.org>
15746
15747 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
15748 lines.
15749 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
15750 lines that are hscrolled on the left.
15751
15752 * dispnew.c (buffer_posn_from_coords): Account for a possible
15753 presence of header-line. (Bug#4426)
15754
15755 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15756
15757 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
15758 Don't advertise functionality which we discourage or doesn't work.
15759
15760 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
15761
15762 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
15763 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
15764 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
15765 this makes Emacs dump core during garbage collection on rare
15766 occasions. sizeof is obviously inferior to offsetof here, so
15767 stick with offsetof.
15768 (GC_POINTER_ALIGNMENT): New macro.
15769 (mark_memory): Omit 3rd (offset) arg; caller changed.
15770 Don't assume EMACS_INT alignment is the same as pointer alignment.
15771
15772 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15773
15774 * keyboard.c (read_key_sequence_remapped): New var.
15775 (read_key_sequence): Compute remapping in the right buffer.
15776 (command_loop_1): Use read_key_sequence's remapping directly.
15777
15778 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15779
15780 * dired.c (file_name_completion): Don't expand file name.
15781 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
15782 before checking file name handler.
15783
15784 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
15785 they've been requested explicitly (bug#9591).
15786
15787 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
15788
15789 * keymap.c (Fsingle_key_description): Use make_specified_string
15790 instead of build_string to build string from push_key_description.
15791 (Bug#5193)
15792
15793 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15794
15795 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
15796 This fixes a Y2038 bug on 64-bit hosts.
15797 * buffer.c (reset_buffer):
15798 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
15799 (Fclear_buffer_auto_save_failure):
15800 Use 0, not -1, to represent an unset failure time, since time_t
15801 might not be signed.
15802
15803 Remove dependency on glibc malloc internals.
15804 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15805 Move back here from lisp.h, but with their new implementations.
15806 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15807 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
15808 * charset.c (charset_table_init): New static var.
15809 (syms_of_charset): Use it instead of xmalloc. This removes a
15810 dependency on glibc malloc internals. See Eli Zaretskii's comment in
15811 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
15812 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15813 Move back to alloc.c.
15814 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15815 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
15816
15817 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
15818
15819 * nsterm.m (windowDidResize): Call x_set_window_size only when
15820 ns_in_resize is true. Otherwise set pixelwidth/height and
15821 call change_frame_size (Bug#9628).
15822
15823 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15824
15825 Port --enable-checking=all to Fedora 14 x86-64.
15826 * charset.c (syms_of_charset): Also account for glibc malloc's
15827 internal overhead when calculating the initial malloc maximum.
15828
15829 Port --enable-checking=all to Fedora 14 x86.
15830 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15831 Move to lisp.h.
15832 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
15833 (overrun_check_realloc, overrun_check_free):
15834 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
15835 That way, xmalloc returns a properly-aligned pointer even if
15836 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
15837 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
15838 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
15839 into account when calculating the initial malloc maximum.
15840 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15841 Move here from alloc.c, so that charset.c can use it too.
15842 Properly align; the old code wasn't right for common 32-bit hosts
15843 when configured with --enable-checking=all.
15844 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15845 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
15846
15847 2011-09-29 Eli Zaretskii <eliz@gnu.org>
15848
15849 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
15850 use EDOM.
15851
15852 2011-09-28 Eli Zaretskii <eliz@gnu.org>
15853
15854 * xdisp.c (compute_display_string_end): If there's no display
15855 string at CHARPOS, return -1.
15856
15857 * bidi.c (bidi_fetch_char): When compute_display_string_end
15858 returns a negative value, treat the character as a normal
15859 character not covered by a display string. (Bug#9624)
15860
15861 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
15862
15863 * lread.c (Fread_from_string): Fix typo in docstring.
15864
15865 2011-09-27 Eli Zaretskii <eliz@gnu.org>
15866
15867 * xdisp.c (handle_invisible_prop): If invisible text ends on a
15868 newline, reseat the iterator instead of bidi-iterating there one
15869 character at a time. (Bug#9610)
15870 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
15871 TO_CHARPOS if the bidi iterator is at base embedding level.
15872
15873 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15874
15875 * lread.c (readevalloop): Use correct code for NBSP.
15876 (read1): Likewise. (Bug#9608)
15877
15878 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
15879
15880 * dbusbind.c (Fdbus_register_signal): When service is not
15881 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
15882
15883 2011-09-25 Glenn Morris <rgm@gnu.org>
15884
15885 * buffer.c (truncate-lines): Doc fix.
15886
15887 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
15888
15889 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
15890 (Fset_window_next_buffers): Doc fix.
15891
15892 2011-09-24 Glenn Morris <rgm@gnu.org>
15893
15894 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15895
15896 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15897
15898 Fix minor problems found by static checking.
15899 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
15900 * indent.c (Fvertical_motion): Fix == vs = typo.
15901
15902 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15903
15904 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15905 Default value is now t. Doc fix.
15906
15907 * indent.c (Fvertical_motion): Compute and apply the overshoot
15908 logic when moving up, not only when moving down. Fix the
15909 confusing name and values of the it_overshoot_expected variable;
15910 logic changes accordingly. (Bug#9254) (Bug#9549)
15911
15912 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15913 CHARPOS is covered by a display string which includes newlines.
15914 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15915 is covered by a display string with embedded newlines.
15916
15917 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15918
15919 * dbusbind.c (Fdbus_register_signal): Add match rule to
15920 Vdbus_registered_objects_table. (Bug#9581)
15921 (Fdbus_register_method, Vdbus_registered_objects_table):
15922 Fix docstring.
15923
15924 2011-09-24 Jim Meyering <meyering@redhat.com>
15925
15926 do not ignore write error for any output size
15927 The previous change was incomplete.
15928 While it makes emacs --batch detect the vast majority of stdout
15929 write failures, errors were still ignored whenever the output size is
15930 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15931 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15932 && echo FAIL: ignored write error
15933 FAIL: ignored write error
15934 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15935 && echo FAIL: ignored write error
15936 FAIL: ignored write error
15937 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15938
15939 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15940
15941 * emacs.c (Fkill_emacs): In noninteractive mode exit
15942 non-successfully if a write error occurred on stdout. (Bug#9574)
15943
15944 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15945
15946 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15947 the xassert test.
15948
15949 * dispextern.h (struct it): Update the comment documenting what
15950 can it->OBJECT be.
15951
15952 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15953
15954 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15955 a display string, extend search for cursor position to end of row.
15956 (find_row_edges): If the row ends in a newline from a display
15957 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15958 Handle the case of a display string with multiple newlines.
15959 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15960 non-empty line. Fixes confusing cursor motion with arrow keys at
15961 the beginning of a line that starts with whitespace.
15962
15963 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15964
15965 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15966 (bug#9493).
15967
15968 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15969
15970 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15971 boolean (Bug#9154).
15972
15973 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15974
15975 * xdisp.c (display_line): Record maximum and minimum buffer
15976 positions even if no glyphs were produced (e.g., by a zero-width
15977 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15978 buffer positions that will be removed from the glyph row because
15979 they don't fit.
15980 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15981 column is beyond frame width: don't subtract 1 "pixel" when
15982 computing width of the stretch.
15983 (reseat_at_next_visible_line_start): Undo the change made on
15984 2011-09-17 that saved paragraph information and restored it after
15985 the call to `reseat'. (Bug#9545)
15986
15987 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15988
15989 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15990 and turn window cursor on if cleared (Bug#9415).
15991
15992 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15993
15994 * search.c (boyer_moore): Take unibyte characters from pattern
15995 literally. (Bug#9458)
15996
15997 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15998
15999 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
16000
16001 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
16002
16003 Fix minor problem found by static checking.
16004 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
16005 initialized, to pacify gcc -Wuninitialized.
16006
16007 * fileio.c: Report proper errno when syscall falls.
16008 (Finsert_file_contents): Save and restore errno,
16009 so that report_file_error outputs the correct diagnostic.
16010 (Fwrite_region) [CLASH_DETECTION]: Likewise.
16011
16012 2011-09-18 Eli Zaretskii <eliz@gnu.org>
16013
16014 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
16015
16016 2011-09-17 Eli Zaretskii <eliz@gnu.org>
16017
16018 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
16019 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
16020
16021 2011-09-17 Eli Zaretskii <eliz@gnu.org>
16022
16023 * xdisp.c (reseat_at_next_visible_line_start): Keep information
16024 about the current paragraph and restore it after the call to reseat.
16025
16026 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
16027 (bidi_find_paragraph_start): Search back for paragraph beginning
16028 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
16029 (bidi_move_to_visually_next): Only trigger paragraph-related
16030 computations when the last character is a newline or at EOB, not
16031 just any NEUTRAL_B. (Bug#9470)
16032
16033 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
16034 truncated lines if point is covered by a display string. (Bug#9524)
16035
16036 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
16037
16038 * xselect.c: Relax test for outgoing X longs (Bug#9498).
16039 (cons_to_x_long): New function.
16040 (lisp_data_to_selection_data): Use it. Correct the test for
16041 short-versus-long data; it was negated. Break out of vector
16042 loop, for efficiency, when a long datum is discovered.
16043
16044 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
16045
16046 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
16047
16048 2011-09-16 Eli Zaretskii <eliz@gnu.org>
16049
16050 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
16051 GCC PR/17406) by declaring this function with external scope.
16052
16053 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
16054
16055 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
16056 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
16057
16058 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
16059
16060 * editfns.c (Fformat): Correctly handle text properties on "%%".
16061
16062 2011-09-15 Eli Zaretskii <eliz@gnu.org>
16063
16064 * xterm.c (x_draw_composite_glyph_string_foreground):
16065 * w32term.c (x_draw_composite_glyph_string_foreground):
16066 * term.c (encode_terminal_code):
16067 * composite.c (composition_update_it, get_composition_id):
16068 * xdisp.c (get_next_display_element)
16069 (fill_composite_glyph_string): Add comments about special meaning
16070 of TAB characters in a composition.
16071
16072 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
16073
16074 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
16075 This occurs when processing a multibyte format.
16076 Problem reported by Wolfgang Jenker.
16077
16078 2011-09-15 Johan Bockgård <bojohan@gnu.org>
16079
16080 * xdisp.c (try_cursor_movement): Only check for exact match if
16081 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
16082
16083 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
16084
16085 Remove unused external symbols.
16086 * dispextern.h (calc_pixel_width_or_height): Remove decl.
16087 * xdisp.c (calc_pixel_width_or_height): Now static.
16088 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
16089 * indent.c (check_display_width):
16090 * w32term.c: Fix comment to match code.
16091 * xterm.c, xterm.h (x_catching_errors): Remove.
16092
16093 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
16094
16095 * xselect.c: Use signed conversions more consistently (Bug#9498).
16096 (selection_data_to_lisp_data): Assume incoming selection data are
16097 signed integers, not unsigned. This is to be consistent with
16098 outgoing selection data, which was modified to use signed integers
16099 in as part of the fix to Bug#9196 in response to Jan D.'s comment
16100 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
16101 expects long, not unsigned long.
16102
16103 2011-09-14 Eli Zaretskii <eliz@gnu.org>
16104
16105 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
16106 computation of loop end. Reported by Johan Bockgård
16107 <bojohan@gnu.org>.
16108
16109 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
16110
16111 * frame.c (Fother_visible_frames_p): Function deleted.
16112
16113 2011-09-12 Eli Zaretskii <eliz@gnu.org>
16114
16115 * indent.c (compute_motion): Process display vector front to back
16116 rather than the other way around. (Bug#2496)
16117
16118 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
16119
16120 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
16121
16122 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
16123
16124 * minibuf.c (Fread_from_minibuffer): Doc fix.
16125
16126 2011-09-11 Eli Zaretskii <eliz@gnu.org>
16127
16128 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
16129 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
16130
16131 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
16132
16133 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
16134 value for non-existent files.
16135
16136 2011-09-11 Eli Zaretskii <eliz@gnu.org>
16137
16138 * fileio.c (Finsert_file_contents): If the file cannot be opened,
16139 set its "size" to -1. This will set the modtime_size field of
16140 the corresponding buffer to -1, which is what
16141 verify-visited-file-modtime expects for files that do not exist.
16142 (Bug#9139)
16143
16144 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
16145
16146 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
16147 here ...
16148 * lisp.h: ... from here. push_key_description is no longer
16149 defined in keyboard.c, so its declaration should not be in
16150 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
16151 logically belongs with push_key_description.
16152
16153 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
16154
16155 * buffer.h: Include <sys/types.h> instead of <time.h>.
16156 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
16157 Problem reported by Herbert J. Skuhra.
16158
16159 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
16160
16161 * xml.c (parse_region): Make the parsing work for
16162 non-comment-starting XML files again (bug#9144).
16163
16164 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
16165
16166 * image.c (gif_load): Fix calculation of bottom and right corner.
16167 (Bug#9468)
16168
16169 2011-09-10 Eli Zaretskii <eliz@gnu.org>
16170
16171 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
16172 redisplay in small windows.
16173
16174 2011-09-09 Eli Zaretskii <eliz@gnu.org>
16175
16176 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
16177
16178 2011-09-08 Martin Rudalics <rudalics@gmx.at>
16179
16180 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
16181 Operate on live windows only.
16182
16183 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
16184
16185 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
16186
16187 2011-09-07 Eli Zaretskii <eliz@gnu.org>
16188
16189 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
16190 only under bidi iteration.
16191
16192 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
16193
16194 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
16195
16196 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
16197
16198 isnan: Fix porting problem to Solaris 10 with bundled gcc.
16199 Without this fix, the command to link temacs failed due to an
16200 undefined symbol __builtin_isnan. This is because
16201 /usr/include/iso/math_c99.h #defines isnan(x) to
16202 __builtin_isnan(x), but the bundled gcc, which identifies itself
16203 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
16204 a __builtin_isnan.
16205 * floatfns.c (isnan): #undef, and then #define to a clone of
16206 what's in data.c.
16207 (Fisnan): Always define, since it's always available now.
16208 (syms_of_floatfns): Always define isnan at the Lisp level.
16209
16210 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
16211
16212 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
16213
16214 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
16215
16216 * fileio.c: Fix bugs with large file offsets (Bug#9428).
16217 The previous code assumed that file offsets (off_t values) fit in
16218 EMACS_INT variables, which is not true on typical 32-bit hosts.
16219 The code messed up by falsely reporting buffer overflow in cases
16220 such as (insert-file-contents "big" nil 1 2) into an empty buffer
16221 when "big" contains more than 2**29 bytes, even though this
16222 inserts just one byte and does not overflow the buffer.
16223 (Finsert_file_contents): Store file offsets as off_t
16224 values, not as EMACS_INT values. Check for overflow when
16225 converting between EMACS_INT and off_t. When checking for
16226 buffer overflow or for overlap, take the offsets into account.
16227 Don't use EMACS_INT for small values where int suffices.
16228 When checking for overlap, fix a typo: ZV was used where
16229 ZV_BYTE was intended.
16230 (Fwrite_region): Don't assume off_t fits into 'long'.
16231 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
16232
16233 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
16234
16235 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
16236
16237 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
16238
16239 sprintf-related integer and memory overflow issues (Bug#9412).
16240
16241 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
16242 (esprintf, exprintf, evxprintf): New functions.
16243 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
16244 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
16245 (modify_event_symbol): Do not assume that the length of
16246 name_alist_or_stem is safe to alloca and fits in int.
16247 (Fexecute_extended_command): Likewise for function name and binding.
16248 (Frecursion_depth): Wrap around reliably on integer overflow.
16249 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
16250 since some callers pass EMACS_INT values.
16251 (Fsingle_key_description): Don't crash if symbol name contains more
16252 than MAX_ALLOCA bytes.
16253 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
16254 (get_minibuffer): Arg is now EMACS_INT, not int.
16255 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
16256 (esprintf, exprintf, evxprintf): New decls.
16257 * window.h (command_loop_level, minibuf_level): Reflect API changes.
16258
16259 * dbusbind.c (signature_cat): New function.
16260 (xd_signature, Fdbus_register_signal):
16261 Do not overrun buffer; instead, report string overflow.
16262
16263 * dispnew.c (add_window_display_history): Don't overrun buffer.
16264 Truncate instead; this is OK since it's just a log.
16265
16266 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
16267 even if the time zone offset is outlandishly large.
16268 Don't mishandle offset == INT_MIN.
16269
16270 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
16271 when creating daemon; the previous buffer-overflow check was incorrect.
16272
16273 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
16274 which has the guts of the old verror function.
16275
16276 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
16277 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
16278
16279 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
16280 (font_unparse_xlfd): Don't blindly alloca long strings.
16281 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
16282 fits in int, when using sprintf. Use single snprintf to count
16283 length of string rather than counting it via multiple sprintfs;
16284 that's simpler and more reliable.
16285 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
16286 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
16287 sprintf, in case result does not fit in int.
16288
16289 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
16290 (fontset_from_font): Print it.
16291
16292 * frame.c (tty_frame_count): Now printmax_t, not int.
16293 (make_terminal_frame, set_term_frame_name): Print it.
16294 (x_report_frame_params): In X, window IDs are unsigned long,
16295 not signed long, so print them as unsigned.
16296 (validate_x_resource_name): Check for implausibly long names,
16297 and don't assume name length fits in 'int'.
16298 (x_get_resource_string): Don't blindly alloca invocation name;
16299 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
16300 not fit in int.
16301
16302 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
16303 (xg_check_special_colors, xg_set_geometry):
16304 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
16305
16306 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
16307 Use esprintf, not sprintf, in case result does not fit in int.
16308
16309 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
16310 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
16311 it as a large positive number.
16312 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
16313 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
16314
16315 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
16316 in case result does not fit in int.
16317
16318 * print.c (float_to_string): Detect width overflow more reliably.
16319 (print_object): Make sprintf buffer a bit bigger, to avoid potential
16320 buffer overrun. Don't assume list length fits in 'int'. Treat
16321 print length of 0 as 0, not as infinity; to be consistent with other
16322 uses of print length in this function. Don't overflow print length
16323 index. Don't assume hash table size fits in 'long', or that
16324 vectorlike size fits in 'unsigned long'.
16325
16326 * process.c (make_process): Use printmax_t, not int, to format
16327 process-name gensyms.
16328
16329 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
16330
16331 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
16332 to avoid potential buffer overrun.
16333
16334 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
16335 if X resource line is longer than 512 bytes.
16336
16337 * xfns.c (x_window): Make sprintf buffer a bit bigger
16338 to avoid potential buffer overrun.
16339
16340 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
16341
16342 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
16343
16344 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
16345
16346 Integer overflow fixes for scrolling, etc.
16347 Without these, Emacs silently mishandles large integers sometimes.
16348 For example, "C-u 4294967297 M-x recenter" was treated as if
16349 it were "C-u 1 M-x recenter" on a typical 64-bit host.
16350
16351 * xdisp.c (try_window_id): Check Emacs fixnum range before
16352 converting to 'int'.
16353
16354 * window.c (window_scroll_line_based, Frecenter):
16355 Check that an Emacs fixnum is in range before assigning it to 'int'.
16356 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
16357 values converted from Emacs fixnums.
16358 (Frecenter): Don't wrap around a line count if it is out of 'int'
16359 range; instead, treat it as an extreme value.
16360 (Fset_window_configuration, compare_window_configurations):
16361 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
16362
16363 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
16364 that can exceed INT_MAX. Check that EMACS_INT value is in range
16365 before assigning it to the (possibly-narrower) index.
16366 (match_limit): Don't assume that a fixnum can fit in 'int'.
16367
16368 * print.c (print_object): Use ptrdiff_t, not int, for index that can
16369 exceed INT_MAX.
16370
16371 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
16372 (Fvertical_motion): Don't wrap around LINES values that don't fit
16373 in 'int'. Instead, treat them as extreme values. This is good
16374 enough for windows, which can't have more than INT_MAX lines anyway.
16375
16376 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
16377
16378 * Require libxml/parser.h to avoid compilation warning.
16379
16380 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
16381
16382 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
16383 since this reportedly can destroy thread storage.
16384
16385 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
16386
16387 * syntax.c (find_defun_start): Update all cache variables if
16388 exiting early (Bug#9401).
16389
16390 2011-08-30 Eli Zaretskii <eliz@gnu.org>
16391
16392 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
16393
16394 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
16395 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
16396 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
16397
16398 * term.c (tty_append_glyph): New function.
16399 (produce_stretch_glyph): Static function and its prototype deleted.
16400
16401 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
16402 Add prototypes.
16403
16404 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
16405
16406 * image.c (parse_image_spec): Check for nonnegative, not for positive,
16407 when checking :margin (Bug#9390).
16408 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
16409 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
16410 so that the name doesn't mislead. All uses changed.
16411
16412 2011-08-28 Johan Bockgård <bojohan@gnu.org>
16413
16414 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
16415 set_tty_hooks.
16416
16417 2011-08-27 Eli Zaretskii <eliz@gnu.org>
16418
16419 * xdisp.c (move_it_to): Don't bail out early when reaching
16420 position beyond to_charpos, if we are scanning backwards.
16421 (move_it_vertically_backward): When DY == 0, make sure we get to
16422 the first character in the line after the newline.
16423
16424 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
16425
16426 * ccl.c: Improve and simplify overflow checking (Bug#9196).
16427 (ccl_driver): Do not generate an out-of-range pointer.
16428 (Fccl_execute_on_string): Remove unnecessary check for
16429 integer overflow, noted by Stefan Monnier in
16430 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
16431 Remove a FIXME that didn't need fixing.
16432 Simplify the newly-introduced buffer reallocation code.
16433
16434 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
16435
16436 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
16437
16438 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
16439
16440 Integer and memory overflow issues (Bug#9196).
16441
16442 * doc.c (get_doc_string): Rework so that
16443 get_doc_string_buffer_size is the actual buffer size, rather than
16444 being 1 less than the actual buffer size; this makes xpalloc more
16445 convenient.
16446
16447 * image.c (x_allocate_bitmap_record, cache_image):
16448 * xselect.c (Fx_register_dnd_atom):
16449 Simplify previous changes by using xpalloc.
16450
16451 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
16452 since either will do and ptrdiff_t is convenient with xpalloc.
16453
16454 * charset.c (charset_table_size)
16455 (struct charset_sort_data.priority): Now ptrdiff_t.
16456 (charset_compare): Don't overflow if priorities differ greatly.
16457 (Fsort_charsets): Don't assume list length fits in int.
16458 Check for size-calculation overflow when allocating sort data.
16459 (syms_of_charset): Allocate an initial charset table that is
16460 just under 64 KiB, to avoid problems with glibc malloc and mmap.
16461
16462 * cmds.c (internal_self_insert): Check for size-calculation overflow.
16463
16464 * composite.h (struct composition.glyph_len): Now int, not unsigned.
16465 The actual value is always <= INT_MAX, and leaving it unsigned made
16466 overflow checking harder.
16467
16468 * dispextern.h (struct glyph_matrix.rows_allocated)
16469 (struct face_cache.size): Now ptrdiff_t, for convenience in use
16470 with xpalloc. The values are still always <= INT_MAX.
16471
16472 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
16473
16474 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
16475 (SAFE_NALLOCA): New macro.
16476
16477 * region-cache.c (struct boundary.pos, find_cache_boundary)
16478 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
16479 (set_cache_region, invalidate_region_cache)
16480 (revalidate_region_cache, know_region_cache, region_cache_forward)
16481 (region_cache_backward, pp_cache):
16482 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
16483 so that ptrdiff_t * can be passed to xpalloc.
16484 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
16485 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
16486 (pp_cache): Don't assume cache_len fits in int.
16487 * region-cache.h: Adjust extern decls to match.
16488
16489 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
16490 EMACS_INT, since either will do, for xpalloc.
16491
16492 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
16493 (xnmalloc, xnrealloc, xpalloc): New functions.
16494
16495 * bidi.c (bidi_shelve_header_size): New constant.
16496 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
16497 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
16498
16499 * bidi.c (bidi_cache_shrink):
16500 * buffer.c (overlays_at, overlays_in, record_overlay_string)
16501 (overlay_strings):
16502 Don't update size of array until after memory allocation succeeds,
16503 because xmalloc/xrealloc may not return.
16504 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
16505 now that we have proper integer overflow checking.
16506 (record_overlay_string, overlay_strings): Catch overflows when
16507 calculating size of overlay_str_buf.
16508
16509 * callproc.c (Fcall_process): Check for size overflow when
16510 calculating size of args2.
16511 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
16512 Normally we prefer signed values, but sticking with ptrdiff_t would
16513 require adding more-complicated checks.
16514
16515 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
16516 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
16517 Redo buffer-overflow calculations to avoid integer overflow.
16518 Add a FIXME comment where memory seems to be over-allocated.
16519
16520 * character.c (Fstring): Check for size-calculation overflow.
16521
16522 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
16523 unnecessary integer overflow. Check for size overflow.
16524 (encode_coding_object): Don't update size until xmalloc succeeds.
16525
16526 * composite.c (get_composition_id): Check for overflow in glyph
16527 length calculations.
16528
16529 Integer and memory overflow fixes for display code.
16530 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
16531 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
16532 (scrolling_window): Check for overflow in size calculations.
16533 (line_draw_cost, realloc_glyph_pool, add_row_entry):
16534 Don't assume glyph table len fits in int.
16535 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
16536 (row_table_size): Now ptrdiff_t, not int.
16537 (scrolling_window): Avoid overflow in size calculations.
16538 Don't update size until allocation succeeds.
16539 * fns.c (concat): Check for overflow in size calculations.
16540 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
16541 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16542 (NEXT_ALMOST_PRIME_LIMIT): New constant.
16543
16544 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
16545 (get_doc_string): Check for size calculation overflow.
16546 Don't update size until allocation succeeds.
16547 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
16548 EMACS_INT, where ptrdiff_t will do.
16549 (Fsubstitute_command_keys): Check for string overflow.
16550
16551 * editfns.c (set_time_zone_rule): Don't assume environment length
16552 fits in int.
16553 (message_length): Now ptrdiff_t, not int.
16554 (Fmessage_box): Don't update size until allocation succeeds.
16555 Don't assume message length fits in int.
16556 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
16557
16558 * emacs.c (main): Do not reallocate argv, since there is a null at
16559 the end that can be overwritten, and this way there's no need to
16560 worry about size-calculation overflow.
16561 (sort_args): Check for size-calculation overflow.
16562
16563 * eval.c (init_eval_once, grow_specpdl): Don't update size until
16564 alloc succeeds.
16565 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
16566
16567 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
16568 (x_set_scroll_bar_width, x_figure_window_size):
16569 Check for integer overflow.
16570 (x_set_alpha): Do not assume XINT fits in int.
16571
16572 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
16573 This is for the members text_lines, text_cols, total_lines, total_cols,
16574 where the system imposes an 'int' limit.
16575
16576 * fringe.c (Fdefine_fringe_bitmap):
16577 Don't update size until alloc works.
16578
16579 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
16580 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
16581
16582 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
16583 Check for size-calculation overflow.
16584 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
16585 do, as we prefer signed integers.
16586 (id_to_widget.max_size, id_to_widget.used)
16587 (xg_store_widget_in_map, xg_remove_widget_from_map)
16588 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
16589 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
16590 Use and return ptrdiff_t, not int.
16591 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
16592 * gtkutil.h: Change prototypes to match the above.
16593
16594 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
16595 are duplicate now that they've been promoted to lisp.h.
16596 (x_allocate_bitmap_record, x_alloc_image_color)
16597 (make_image_cache, cache_image, xpm_load):
16598 Don't update size until alloc is done.
16599 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
16600 (x_detect_edges):
16601 Check for size calculation overflow.
16602 (ct_colors_allocated_max): New constant.
16603 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
16604 overflow.
16605
16606 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
16607 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
16608 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
16609 Use ptrdiff_t, not int, to count maps.
16610 (read_char_minibuf_menu_prompt): Check for overflow in size
16611 calculations. Don't update size until allocation succeeds.
16612 Redo calculations to avoid overflow.
16613 * keyboard.h: Change prototypes to match the above.
16614
16615 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
16616 to count maps.
16617 (current_minor_maps): Check for size calculation overflow.
16618 * keymap.h: Change prototypes to match the above.
16619
16620 * lread.c (read1, init_obarray): Don't update size until alloc done.
16621
16622 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
16623 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
16624
16625 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
16626 Now ptrdiff_t, not int.
16627 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
16628 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
16629
16630 * process.c (Fnetwork_interface_list): Check for overflow
16631 in size calculation.
16632
16633 * region-cache.c (move_cache_gap): Check for size calculation overflow.
16634
16635 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
16636 overflow. Don't bother calling xmalloc when xrealloc will do.
16637
16638 * search.c (Freplace_match): Check for size calculation overflow.
16639 (Fset_match_data): Don't assume list lengths fit in 'int'.
16640
16641 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
16642 for command line length. Do not attempt to address one before the
16643 beginning of an array, as that's not portable.
16644
16645 * term.c (max_frame_lines): Remove; unused.
16646 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
16647 not int.
16648 (encode_terminal_code, calculate_costs): Check for size
16649 calculation overflow.
16650 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
16651 table lengths and related sizes. Don't update size until alloc
16652 done. Redo calculations to avoid overflow.
16653 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
16654
16655 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
16656 subtracting pointers.
16657 (gobble_line): Check for overflow more carefully. Don't update size
16658 until alloc done.
16659
16660 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
16661 Don't update size until alloc done.
16662 Redo size calculations to avoid overflow.
16663 Check for size calculation overflow.
16664 (main) [DEBUG]: Fix typo in invoking tparam1.
16665
16666 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
16667 Use ptrdiff_t, not int, for sizes.
16668 (store_mode_line_noprop_char): Don't update size until alloc done.
16669
16670 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
16671 Use ptrdiff_t, not int, for sizes.
16672 (Finternal_make_lisp_face, cache_face):
16673 Check for size calculation overflow.
16674 (cache_face): Treat size calculation overflows as if they were
16675 memory exhaustion (the usual treatment), rather than aborting.
16676
16677 * xfns.c (x_encode_text, x_set_name_internal)
16678 (Fx_change_window_property): Use ptrdiff_t, not int, to count
16679 sizes, since they can exceed INT_MAX in size. Check for size
16680 calculation overflow.
16681
16682 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
16683 (xg_select): Check for size calculation overflow.
16684 Don't update size until alloc done.
16685
16686 * xrdb.c (get_environ_db): Don't assume path length fits in int,
16687 as sprintf is limited to int lengths.
16688
16689 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
16690 (X_LONG_MIN): New macros.
16691 Use them to make the following changes clearer.
16692 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
16693 This change doesn't affect the value now, but it may help remind
16694 future maintainers not to raise the value too much later.
16695 (SELECTION_QUANTUM): Remove, replacing with ...
16696 (selection_quantum): ... new function, which avoids overflow.
16697 All uses changed.
16698 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
16699 assumption that selection length fits in 'int'.
16700 (x_reply_selection_request, x_handle_selection_request)
16701 (x_get_window_property, receive_incremental_selection)
16702 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
16703 (lisp_data_to_selection_data, clean_local_selection_data):
16704 Use ptrdiff_t, not int, to record length of selection.
16705 (x_reply_selection_request, x_get_window_property)
16706 (receive_incremental_selection, x_property_data_to_lisp):
16707 Redo calculations to avoid overflow.
16708 (x_reply_selection_request): When sending hint, ceiling it at
16709 X_LONG_MAX rather than relying on wraparound overflow to send
16710 something.
16711 (x_get_window_property, receive_incremental_selection)
16712 (lisp_data_to_selection_data, x_property_data_to_lisp):
16713 Check for size-calculation overflow.
16714 (x_get_window_property, receive_incremental_selection)
16715 (lisp_data_to_selection_data, Fx_register_dnd_atom):
16716 Don't store size until memory allocation succeeds.
16717 (x_get_window_property): Plug memory leak on memory exhaustion.
16718 Don't double-block input; malloc is safe here. Don't assume 2**34
16719 - 4 fits in unsigned long. Add an xassert to check
16720 XGetWindowProperty overflow. Be more careful about overflow
16721 calculations, and distinguish size from memory overflow better.
16722 (receive_incremental_selection): When tracing, don't assume
16723 unsigned int is less than INT_MAX.
16724 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
16725 harmful) conversions of unsigned short to int.
16726 (lisp_data_to_selection_data): Don't assume that integers
16727 in the range -65535 through -1 fit in an X unsigned short.
16728 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
16729 result parameters unless successful. Rely on cons_to_unsigned
16730 to report problems with elements; the old code wasn't right anyway.
16731 (x_check_property_data): Check for int overflow; we cannot use
16732 a wider type due to X limits.
16733 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
16734
16735 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
16736
16737 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
16738 (x_term_init): Check for size calculation overflow.
16739 (x_color_cells): Don't store size until memory allocation succeeds.
16740 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
16741 Don't assume alloca size is less than MAX_ALLOCA.
16742 (x_term_init): Don't assume length fits in int (sprintf is limited
16743 to int size).
16744
16745 Use ptrdiff_t for composition IDs.
16746 * character.c (lisp_string_width):
16747 * composite.c (composition_table_size, n_compositions)
16748 (get_composition_id, composition_gstring_from_id):
16749 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
16750 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
16751 * window.c (Frecenter):
16752 Use ptrdiff_t, not int, for composition IDs.
16753 * composite.c (get_composition_id): Check for integer overflow.
16754 * composite.h: Adjust prototypes to match the above changes.
16755
16756 Use ptrdiff_t for hash table indexes.
16757 * category.c (hash_get_category_set):
16758 * ccl.c (ccl_driver):
16759 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
16760 * coding.c (coding_system_charset_list, detect_coding_system):
16761 * coding.h (struct coding_system.id):
16762 * composite.c (get_composition_id, gstring_lookup_cache):
16763 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
16764 * image.c (xpm_get_color_table_h):
16765 * lisp.h (hash_lookup, hash_put):
16766 * minibuf.c (Ftest_completion):
16767 Use ptrdiff_t for hash table indexes, not int (which is too
16768 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
16769 32-bit --with-wide-int hosts).
16770
16771 * charset.c (Fdefine_charset_internal): Check for integer overflow.
16772 Add a FIXME comment about memory leaks.
16773 (syms_of_charset): Don't assume xmalloc returns.
16774
16775 Don't assume that stated character widths fit in int.
16776 * character.c (Fchar_width, c_string_width, lisp_string_width):
16777 * character.h (CHAR_WIDTH):
16778 * indent.c (MULTIBYTE_BYTES_WIDTH):
16779 Use sanitize_char_width to avoid undefined and/or bad behavior
16780 with outlandish widths.
16781 * character.h (sanitize_tab_width): Rename from sanitize_width,
16782 now that we have two such functions. All uses changed.
16783 (sanitize_char_width): New inline function.
16784
16785 Don't assume that tab-width fits in int.
16786 * character.h (sanitize_width): New inline function.
16787 (SANE_TAB_WIDTH): New macro.
16788 (ASCII_CHAR_WIDTH): Use it.
16789 * indent.c (sane_tab_width): Remove. All uses replaced by
16790 SANE_TAB_WIDTH (current_buffer).
16791 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
16792
16793 * fileio.c: Integer overflow issues with file modes.
16794 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
16795
16796 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
16797 Remove unreachable code.
16798 (read_hex, load_charset_map_from_file): Check for integer overflow.
16799
16800 * xterm.c: Don't go over XClientMessageEvent limit.
16801 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
16802 (x_send_scroll_bar_event): Likewise. Check that the size does not
16803 exceed limits imposed by XClientMessageEvent, as well as the usual
16804 ptrdiff_t and size_t limits.
16805
16806 * keyboard.c: Overflow, signedness and related fixes.
16807 (make_lispy_movement): Use same integer type in forward decl
16808 that is used in the definition.
16809 (read_key_sequence, keyremap_step):
16810 Change bufsize argument back to int, undoing my 2011-03-30 change.
16811 We prefer signed types, and int is wide enough here.
16812 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
16813 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
16814 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
16815 length, not size_t. Use ptrdiff_t for index, not int.
16816 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
16817 possibility of integer overflow.
16818
16819 Overflow, signedness and related fixes for images.
16820
16821 * dispextern.h (struct it.stack[0].u.image.image_id)
16822 (struct_it.image_id, struct image.id, struct image_cache.size)
16823 (struct image_cache.used, struct image_cache.ref_count):
16824 * gtkutil.c (update_frame_tool_bar):
16825 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
16826 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
16827 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
16828 * nsmenu.m (update_frame_tool_bar):
16829 * xdisp.c (calc_pixel_width_or_height):
16830 * xfns.c (image_cache_refcount):
16831 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
16832 on typical 64-bit hosts.
16833
16834 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16835 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
16836 Omit unnecessary casts to int.
16837 (parse_image_spec): Check that integers fall into 'int' range
16838 when the callers expect that.
16839 (image_ascent): Redo ascent calculation to avoid int overflow.
16840 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
16841 (lookup_image): Remove unnecessary tests.
16842 (xbm_image_p): Locals are now of int, not EMACS_INT,
16843 since parse_image_check makes sure they fit into int.
16844 (png_load, gif_load, svg_load_image):
16845 Prefer int to unsigned where either will do.
16846 (tiff_handler): New function, combining the cores of the
16847 old tiff_error_handler and tiff_warning_handler.
16848 This function is rewritten to use vsnprintf and thereby avoid
16849 stack buffer overflows. It uses only the features of vsnprintf
16850 that are common to both POSIX and native Microsoft.
16851 (tiff_error_handler, tiff_warning_handler): Use it.
16852 (tiff_load, gif_load, imagemagick_load_image):
16853 Don't assume :index value fits in 'int'.
16854 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
16855 (imagemagick_load_image): Check that crop parameters fit into
16856 the integer types that MagickCropImage accepts. Don't assume
16857 Vimagemagick_render_type has a nonnegative value. Don't assume
16858 size_t fits in 'long'.
16859 (gs_load): Use printmax_t to print the widest integers possible.
16860 Check for integer overflow when computing image height and width.
16861
16862 2011-08-26 Eli Zaretskii <eliz@gnu.org>
16863
16864 * xdisp.c (redisplay_window): Don't force window start if point
16865 will be invisible in the resulting window. (Bug#9324)
16866
16867 2011-08-25 Eli Zaretskii <eliz@gnu.org>
16868
16869 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
16870 the display spec is of the form `(space ...)'.
16871 (handle_display_spec): Return the value returned by
16872 handle_single_display_spec, not just 1 or zero.
16873 (handle_single_display_spec): If the display spec is of the form
16874 `(space ...)', and specifies display in the text area, return 2
16875 rather than 1.
16876 (try_cursor_movement): Check for the need to scroll more
16877 accurately, and prefer exact match for point under bidi.
16878 Don't advance `row' beyond the last row of the window.
16879
16880 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
16881 into disp_prop; all users changed.
16882
16883 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
16884 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
16885 for the text covered by the display property.
16886
16887 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
16888
16889 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
16890 Change return value to nil.
16891 (Frecord_buffer): Delete unused function.
16892
16893 2011-08-24 Eli Zaretskii <eliz@gnu.org>
16894
16895 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16896 buffers, return left-to-right.
16897 (set_cursor_from_row): Consider candidate row a win if its glyph
16898 represents a newline and point is on that newline. Fixes cursor
16899 positioning on the newline at EOL of R2L text within L2R
16900 paragraph, and vice versa.
16901 (try_cursor_movement): Check continued rows, in addition to
16902 continuation rows. Fixes unwarranted scroll when point enters a
16903 continued line of R2L text within an L2R paragraph, or vice versa.
16904 (cursor_row_p): Consider the case of point being equal to
16905 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16906 from the end of a short line to the beginning of a continued line
16907 of R2L text within L2R paragraph.
16908 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16909 composed characters.
16910
16911 * bidi.c (bidi_check_type): Use xassert.
16912 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16913 members.
16914
16915 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16916
16917 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16918 a character.
16919
16920 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16921
16922 * nsfont.m (ns_otf_to_script): Fix typo.
16923
16924 2011-08-22 Kenichi Handa <handa@m17n.org>
16925
16926 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16927 extra slot even if the purpose is char-code-property-table.
16928
16929 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16930
16931 * xdisp.c (redisplay_window): When computing centering_position,
16932 account for the height of the header line. (Bug#8874)
16933
16934 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16935 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16936 candidate is selected by the mouse, and that candidate has a
16937 composed character under the mouse.
16938
16939 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16940 coordinates reported by pos-visible-in-window-p for a composed
16941 character in column zero.
16942
16943 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16944
16945 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16946
16947 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16948
16949 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16950 consider it a hit if to_charpos is anywhere in the range of the
16951 composed buffer positions.
16952
16953 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16954
16955 * image.c (gif_load): Don't assume that each subimage has the same
16956 dimensions as the base image. Handle disposal method that is
16957 "undefined" by the gif spec (Bug#9335).
16958
16959 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16960
16961 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16962 (Fcondition_case): Document `debug' symbol in error handler.
16963
16964 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16965
16966 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16967 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16968 from an Org mode buffer to a Speedbar frame.
16969
16970 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16971 a composition, take its buffer position from IT->cmp_it.charpos.
16972 Fixes cursor positioning at the beginning of a line that begins
16973 with a composed character.
16974
16975 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16976
16977 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16978 character bidirectional type, use STRONG_L instead. Fixes crashes
16979 in a buffer produced by `describe-categories'.
16980
16981 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16982 members before the level stack, so they would be saved and
16983 restored when copying iterator state. Fixes incorrect reordering
16984 around TABs covered by display properties.
16985
16986 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16987
16988 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16989
16990 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16991
16992 * eval.c (internal_condition_case, internal_condition_case_1)
16993 (internal_condition_case_2, internal_condition_case_n):
16994 Remove unnecessary aborts (Bug#9081).
16995
16996 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16997
16998 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16999 has no `load' handler, try opening the file locally. (Bug#9311)
17000
17001 2011-08-16 Ken Brown <kbrown@cornell.edu>
17002
17003 * gmalloc.c: Expand comment.
17004
17005 2011-08-16 Eli Zaretskii <eliz@gnu.org>
17006
17007 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
17008 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
17009
17010 2011-08-16 Ken Brown <kbrown@cornell.edu>
17011
17012 Fix memory allocation problems in Cygwin build (Bug#9273).
17013
17014 * unexcw.c ( __malloc_initialized): Declare external variable.
17015 (fixup_executable): Force the dumped emacs to reinitialize malloc.
17016
17017 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
17018 New variables.
17019 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
17020 dumped emacs.
17021 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
17022 in the static heap.
17023 [CYGWIN] (special_realloc): New function.
17024 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
17025 requests to realloc storage in the static heap.
17026
17027 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
17028
17029 * bidi.c (bidi_initialize): Remove unused local.
17030
17031 2011-08-15 Eli Zaretskii <eliz@gnu.org>
17032
17033 * bidimirror.h:
17034 * biditype.h: Remove file.
17035 * makefile.w32-in ($(BLD)/bidi.$(O)):
17036 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
17037
17038 * dispextern.h: Fix a typo in the comment to bidi_type_t.
17039
17040 * chartab.c: Improve commentary for the uniprop_table API.
17041
17042 * bidi.c (bidi_paragraph_init): Support zero value of
17043 bidi_ignore_explicit_marks_for_paragraph_level.
17044 (bidi_initialize): Use uniprop_table instead of including
17045 biditype.h and bidimirror.h.
17046
17047 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
17048 coordinates of the iterator when restoring from ppos_it.
17049 (Bug#9296)
17050
17051 2011-08-14 Kenichi Handa <handa@m17n.org>
17052
17053 * process.c (create_process): Call setup_process_coding_systems
17054 after the pid of the process is set to -1 (Bug#8162).
17055
17056 2011-08-14 Eli Zaretskii <eliz@gnu.org>
17057
17058 * xdisp.c (move_it_in_display_line_to): Don't invoke
17059 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
17060 ppos_it. Fixes vertical cursor motion when line beginning is
17061 covered by an image. (Bug#9296)
17062
17063 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
17064
17065 * nsterm.h (ns_run_ascript): Declare.
17066 (NSAPP_DATA2_RUNASSCRIPT): Define.
17067
17068 * nsfns.m (as_script, as_result, as_status): New static variables.
17069 (ns_run_ascript): New function.
17070 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
17071 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
17072 the event loop. Get status from as_status (Bug#7276).
17073
17074 * nsterm.m (sendEvent): If event is NSApplicationDefined and
17075 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
17076 the event loop (Bug#7276).
17077
17078 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
17079
17080 * gnutls.c (QCgnutls_bootprop_priority)
17081 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
17082 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
17083 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
17084 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
17085 (QCgnutls_bootprop_verify_hostname_error)
17086 (QCgnutls_bootprop_callbacks_verify): Rename from
17087 Qgnutls_bootprop_..., all uses changed.
17088
17089 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
17090 uses changed.
17091
17092 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
17093
17094 * xfaces.c (Qframe_set_background_mode): Now static.
17095 * dispextern.h (Qframe_set_background_mode): Remove decl.
17096
17097 * process.c (Fnetwork_interface_info): Declare local only if needed.
17098
17099 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
17100
17101 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
17102 (Fnetwork_interface_list): Allocate in increments of bytes instead
17103 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
17104 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
17105 sockaddr.
17106 (struct ifflag_def): notrailers is smart on OSX.
17107 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
17108 Get hardware address with getifaddrs if available.
17109
17110 2011-08-12 Eli Zaretskii <eliz@gnu.org>
17111
17112 * xdisp.c (iterate_out_of_display_property): xassert that
17113 IT->position is set to within IT->object's boundaries. Break from
17114 the loop as soon as EOB is reached; avoids infloops in redisplay
17115 when IT->position is set up wrongly due to some bug.
17116 Set IT->current to match the bidi iterator unconditionally.
17117 (push_display_prop): Allow GET_FROM_STRING as IT->method on
17118 entry. Force push_it to save on the stack the current
17119 buffer/string position, to be restored by pop_it. Fix flags in
17120 the iterator structure wrt the object coming from a display
17121 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
17122 properties. (Bug#9284)
17123
17124 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
17125
17126 * fontset.c (fontset_get_font_group): Add proper type checks.
17127 (Bug#9172)
17128
17129 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17130
17131 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
17132 and LC_VERSION_MIN_MACOSX.
17133 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
17134 (dump_it) [LC_FUNCTION_STARTS]: Use it.
17135
17136 2011-08-08 Eli Zaretskii <eliz@gnu.org>
17137
17138 * xdisp.c (forward_to_next_line_start): Allow to use the
17139 no-display-properties-and-no-overlays under bidi display.
17140 Set disp_pos in the bidi iterator to avoid searches for display
17141 properties and overlays.
17142
17143 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
17144
17145 * editfns.c (Fset_time_zone_rule): Document relationship with the
17146 setenv function.
17147
17148 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
17149 the font entity extracted from the cache (Bug#8109).
17150
17151 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
17152
17153 * composite.c (autocmp_chars): Don't reset point. That is done by
17154 restore_point_unwind (Bug#5984).
17155
17156 2011-08-07 Juri Linkov <juri@jurta.org>
17157
17158 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
17159 to show the arg `TIME' instead of `TIMEVAL'.
17160
17161 2011-08-06 Eli Zaretskii <eliz@gnu.org>
17162
17163 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
17164 display property strides EOL and includes a newline, as in
17165 longlines-mode. (Bug#9254)
17166 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
17167 word-wrap under bidirectional display. (Bug#9224)
17168
17169 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
17170 is non-zero, even if the data buffer is NULL. Fixes a crash in
17171 vertical-motion with longlines-mode. (Bug#9254)
17172
17173 2011-08-05 Eli Zaretskii <eliz@gnu.org>
17174
17175 * bidi.c <bidi_cache_total_alloc>: Now static.
17176 (bidi_initialize): Initialize bidi_cache_total_alloc.
17177
17178 * xdisp.c (display_line): Release buffer allocated for shelved bidi
17179 cache. (Bug#9221)
17180
17181 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
17182 amount allocated this far in `bidi_cache_total_alloc'.
17183 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
17184 non-zero, only free the data buffer without restoring the cache
17185 contents. All callers changed.
17186
17187 * dispextern.h (bidi_unshelve_cache): Update prototype.
17188
17189 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
17190 (move_it_in_display_line, move_it_to)
17191 (move_it_vertically_backward, move_it_by_lines): Replace the call
17192 to xfree to an equivalent call to bidi_unshelve_cache.
17193 (move_it_in_display_line_to): Fix logic of returning
17194 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
17195
17196 2011-08-05 Eli Zaretskii <eliz@gnu.org>
17197
17198 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
17199 came from a string character with a `cursor' property. (Bug#9229)
17200
17201 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
17202
17203 * Makefile.in (LIB_PTHREAD): New variable.
17204 (LIBES): Add LIB_PTHREAD (Bug#9216).
17205
17206 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
17207 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
17208
17209 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
17210
17211 * regex.c (re_iswctype): Remove some redundant boolean conversions.
17212
17213 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
17214
17215 * xterm.c (x_find_topmost_parent): New function.
17216 (x_set_frame_alpha): Find topmost parent window with
17217 x_find_topmost_parent and set the property there also (bug#9181).
17218 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
17219
17220 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
17221
17222 * callproc.c (Fcall_process): Avoid vfork clobbering
17223 the local vars buffer, coding_systems, current_dir.
17224
17225 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
17226
17227 * keymap.c (Fmake_composed_keymap): Move to subr.el.
17228
17229 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
17230
17231 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
17232 so that it is not optimized away.
17233
17234 * xdisp.c (compute_display_string_pos): Remove unused local.
17235
17236 2011-08-02 Eli Zaretskii <eliz@gnu.org>
17237
17238 Fix slow cursor motion and scrolling in large buffers with
17239 selective display, like Org Mode buffers. (Bug#9218)
17240
17241 * dispextern.h (struct bidi_it): New member disp_prop_p.
17242
17243 * xdisp.c: Remove one-slot cache of display string positions.
17244 (compute_display_string_pos): Accept an additional argument
17245 DISP_PROP_P; callers changed. Scan at most 5K characters forward
17246 for a display string or property. If found, set DISP_PROP_P
17247 non-zero.
17248
17249 * bidi.c (bidi_fetch_char): Accept an additional argument
17250 DISP_PROP_P, and pass it to compute_display_string_pos.
17251 Only handle text covered by a display string if DISP_PROP_P is returned
17252 non-zero. All callers of bidi_fetch_char changed.
17253
17254 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
17255
17256 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
17257
17258 2010-12-03 Don March <don@ohspite.net>
17259
17260 * keymap.c (Fdefine_key): Fix non-prefix key error message when
17261 last character M-[char] is translated to ESC [char] (bug#7541).
17262
17263 2011-08-02 Kenichi Handa <handa@m17n.org>
17264
17265 * lisp.h (uniprop_table): Extern it.
17266
17267 * chartab.c (uniprop_table): Make it non-static.
17268
17269 2011-08-01 Eli Zaretskii <eliz@gnu.org>
17270
17271 * xdisp.c (forward_to_next_line_start): Accept additional argument
17272 BIDI_IT_PREV, and store into it the state of the bidi iterator had
17273 on the newline.
17274 (reseat_at_next_visible_line_start): Use the bidi iterator state
17275 returned by forward_to_next_line_start to restore the state of
17276 it->bidi_it after backing up to previous newline. (Bug#9212)
17277
17278 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
17279
17280 * regex.c (re_comp): Protoize.
17281 (re_exec): Fix return type.
17282 (regexec): Fix type of `ret'. (Bug#9203)
17283
17284 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17285
17286 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
17287 This is needed if max-image-size is a floating-point number.
17288
17289 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
17290
17291 * print.c (print_object): Print empty symbol as ##.
17292
17293 * lread.c (read1): Read ## as empty symbol.
17294
17295 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
17296
17297 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
17298 setting frame foreground color (Bug#9175).
17299 (x_set_background_color): Likewise.
17300
17301 * nsmenu.m (-setText): Size tooltip dimensions precisely to
17302 contents (Bug#9176).
17303 (EmacsTooltip -init): Remove bezels and add shadows to
17304 tooltip windows.
17305
17306 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
17307 or scroll bar (Bug#8470).
17308
17309 * nsfont.m (nsfont_open): Remove assignment to voffset and
17310 unnecessary vars hshink, expand, hd, full_height, min_height.
17311 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
17312
17313 * nsterm.h (nsfont_info): Remove voffset field.
17314
17315 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
17316
17317 Implement strike-through and overline on NextStep (Bug#8863).
17318
17319 * nsfont.m (nsfont_open): Use underline position provided by font,
17320 instead of hard-coded value of 2.
17321 (nsfont_draw): Call ns_draw_text_decoration instead.
17322
17323 * nsterm.h: Add declaration for ns_draw_text_decoration.
17324
17325 * nsterm.m (ns_draw_text_decoration): New function for drawing
17326 underline, overline, and strike-through.
17327 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
17328 ns_draw_text_decoration. Change treatment of cursor drawing to
17329 accommodate underlining, etc.
17330
17331 2011-07-28 Eli Zaretskii <eliz@gnu.org>
17332
17333 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
17334 default.
17335
17336 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17337
17338 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
17339 Without this fix, if a signal arrives just after memory fills up,
17340 'malloc' might be invoked reentrantly.
17341
17342 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
17343 In other words, assume that every image size is allowed, on non-X
17344 hosts. This assumption is probably wrong, but it lets Emacs compile.
17345
17346 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
17347
17348 * regex.c (re_iswctype): Convert return values to boolean.
17349
17350 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
17351
17352 * xdisp.c (compute_display_string_pos): Don't use cached display
17353 string position if the buffer had its restriction changed.
17354 (Bug#9184)
17355
17356 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17357
17358 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
17359
17360 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
17361
17362 Integer signedness and overflow and related fixes. (Bug#9079)
17363
17364 * bidi.c: Integer size and overflow fixes.
17365 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
17366 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
17367 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17368 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
17369 (bidi_find_other_level_edge):
17370 Use ptrdiff_t instead of EMACS_INT where either will do.
17371 This works better on 32-bit hosts configured --with-wide-int.
17372 (bidi_cache_ensure_space): Check for size-calculation overflow.
17373 Use % rather than repeated addition, for better worst-case speed.
17374 Don't set bidi_cache_size until after xrealloc returns, because it
17375 might not return.
17376 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
17377 (bidi_cache_ensure_space): Also check that the bidi cache size
17378 does not exceed that of the largest Lisp string or buffer. See Eli
17379 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
17380
17381 * alloc.c (__malloc_size_t): Remove.
17382 All uses replaced by size_t. See Andreas Schwab's note
17383 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
17384
17385 * image.c: Improve checking for integer overflow.
17386 (check_image_size): Assume that f is nonnull, since
17387 it is always nonnull in practice. This is one less thing to
17388 worry about when checking for integer overflow later.
17389 (x_check_image_size): New function, which checks for integer
17390 overflow issues inside X.
17391 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
17392 This removes the need for a memory_full check.
17393 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
17394 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
17395 (xbm_read_bitmap_data): Change locals back to 'int', since
17396 their values must fit in 'int'.
17397 (xpm_load_image, png_load, tiff_load):
17398 Invoke x_create_x_image_and_pixmap earlier,
17399 to avoid much needless work if the image is too large.
17400 (tiff_load): Treat overly large images as if
17401 x_create_x_image_and_pixmap failed, not as malloc failures.
17402 (gs_load): Use x_check_image_size.
17403
17404 * gtkutil.c: Omit integer casts.
17405 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
17406 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
17407
17408 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
17409
17410 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
17411 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
17412 would wrongly return t on a 64-bit host.
17413
17414 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
17415 The plain *_OVERFLOW macros run afoul of GCC bug 49705
17416 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
17417 and therefore cause GCC to emit a bogus diagnostic in some cases.
17418
17419 * image.c: Integer signedness and overflow and related fixes.
17420 This is not an exhaustive set of fixes, but it's time to
17421 record what I've got.
17422 (lookup_pixel_color, check_image_size): Remove redundant decls.
17423 (check_image_size): Don't assume that arbitrary EMACS_INT values
17424 fit in 'int', or that arbitrary 'double' values fit in 'int'.
17425 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
17426 (tiff_load, imagemagick_load_image):
17427 Check for overflow in size calculations.
17428 (x_create_x_image_and_pixmap): Remove unnecessary test for
17429 xmalloc returning NULL; that can't happen.
17430 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
17431 (xpm_color_bucket): Use better integer hashing function.
17432 (xpm_cache_color): Don't possibly over-allocate memory.
17433 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
17434 (gif_memory_source):
17435 Use ptrdiff_t, not int or size_t, to record sizes.
17436 (png_load): Don't assume values greater than 2**31 fit in 'int'.
17437 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
17438 either works, as we prefer signed integers.
17439 (tiff_read_from_memory, tiff_write_from_memory):
17440 Return tsize_t, not size_t, since that's what the TIFF API wants.
17441 (tiff_read_from_memory): Don't fail simply because the read would
17442 go past EOF; instead, return a short read.
17443 (tiff_load): Omit no-longer-needed casts.
17444 (Fimagemagick_types): Don't assume size fits into 'int'.
17445
17446 Improve hashing quality when configured --with-wide-int.
17447 * fns.c (hash_string): New function, taken from sxhash_string.
17448 Do not discard information about ASCII character case; this
17449 discarding is no longer needed.
17450 (sxhash-string): Use it. Change sig to match it. Caller changed.
17451 * lisp.h: Declare it.
17452 * lread.c (hash_string): Remove, since we now use fns.c's version.
17453 The fns.c version returns a wider integer if --with-wide-int is
17454 specified, so this should help the quality of the hashing a bit.
17455
17456 * emacs.c: Integer overflow minor fix.
17457 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
17458 Define only if GNU_LINUX.
17459 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
17460
17461 * dispnew.c: Integer signedness and overflow fixes.
17462 Remove unnecessary forward decls, that were a maintenance hassle.
17463 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
17464 All uses changed.
17465 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
17466 (scrolling_window): Use ptrdiff_t, not int, for byte count.
17467 (prepare_desired_row, line_draw_cost):
17468 Use int, not unsigned, where either works.
17469 (save_current_matrix, restore_current_matrix):
17470 Use ptrdiff_t, not size_t, where either works.
17471 (init_display): Check for overflow more accurately, and without
17472 relying on undefined behavior.
17473
17474 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
17475 Remove, replacing with the new symbols in lisp.h. All uses changed.
17476 * fileio.c (make_temp_name):
17477 * filelock.c (lock_file_1, lock_file):
17478 * xdisp.c (message_dolog):
17479 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
17480 Use pMd etc. instead.
17481 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
17482 replacing the pWIDE etc. symbols removed from editfns.c.
17483
17484 * keyboard.h (num_input_events): Now uintmax_t.
17485 This is (very slightly) less likely to mess up due to wraparound.
17486 All uses changed.
17487
17488 * buffer.c: Integer signedness fixes.
17489 (alloc_buffer_text, enlarge_buffer_text):
17490 Use ptrdiff_t rather than size_t when either will do, as we prefer
17491 signed integers.
17492
17493 * alloc.c: Integer signedness and overflow fixes.
17494 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
17495 (__malloc_size_t): Default to size_t, not to int.
17496 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
17497 (Fgarbage_collect, mark_object_loop_halt, mark_object):
17498 Prefer ptrdiff_t to size_t when either would do, as we prefer
17499 signed integers.
17500 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
17501 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
17502 Now const. Initialize with values that are in range even if char
17503 is signed.
17504 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
17505 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
17506 These functions do the right thing with sizes > 2**32.
17507 (check_depth): Now ptrdiff_t, not int.
17508 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
17509 Adjust to new way of storing sizes. Check for size overflow bugs
17510 in rest of code.
17511 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
17512 slightly wrong anyway, as it missed one instance of
17513 XMALLOC_OVERRUN_CHECK_OVERHEAD.
17514 (refill_memory_reserve): Omit needless cast to size_t.
17515 (mark_object_loop_halt): Mark as externally visible.
17516
17517 * xselect.c: Integer signedness and overflow fixes.
17518 (Fx_register_dnd_atom, x_handle_dnd_message):
17519 Use ptrdiff_t, not size_t, since we prefer signed.
17520 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
17521 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
17522 x_dnd_atoms_size and x_dnd_atoms_length.
17523
17524 * doprnt.c: Prefer signed to unsigned when either works.
17525 * eval.c (verror):
17526 * doprnt.c (doprnt):
17527 * lisp.h (doprnt):
17528 * xdisp.c (vmessage):
17529 Use ptrdiff_t, not size_t, when using or implementing doprnt,
17530 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
17531 prefer signed arithmetic to avoid comparison confusion.
17532 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
17533 but is a bit tricky.
17534
17535 Assume freestanding C89 headers, string.h, stdlib.h.
17536 * data.c, doprnt.c, floatfns.c, print.c:
17537 Include float.h unconditionally.
17538 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
17539 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
17540 * regex.c: Likewise for stddef.h, string.h.
17541 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
17542 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
17543 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
17544 (STDC_HEADERS): Remove obsolete defines.
17545 * sysdep.c: Include limits.h unconditionally.
17546
17547 Assume support for memcmp, memcpy, memmove, memset.
17548 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
17549 * regex.c (memcmp, memcpy):
17550 Remove; we assume C89 now.
17551
17552 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
17553 (__malloc_safe_bcopy): Remove; no longer needed.
17554
17555 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
17556 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
17557 well either way, and we prefer signed to unsigned.
17558
17559 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17560
17561 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
17562 closes the connection while we're reading (bug#9182).
17563
17564 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
17565
17566 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
17567 are specified (Bug#9168).
17568
17569 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
17570
17571 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
17572 Found by GCC static checking and --with-wide-int on a 32-bit host.
17573
17574 2011-07-25 Eli Zaretskii <eliz@gnu.org>
17575
17576 * xdisp.c (compute_display_string_pos): Fix logic of caching
17577 previous display string position. Initialize cached_prev_pos to
17578 -1. Fixes slow-down at the beginning of a buffer.
17579
17580 2011-07-24 Eli Zaretskii <eliz@gnu.org>
17581
17582 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
17583 for attrs[LFACE_FONTSET_INDEX].
17584
17585 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
17586
17587 * xml.c (parse_region): Remove unused local
17588 that was recently introduced.
17589
17590 2011-07-23 Eli Zaretskii <eliz@gnu.org>
17591
17592 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
17593 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
17594
17595 * xdisp.c (move_it_in_display_line_to): Record the best matching
17596 position for TO_CHARPOS while scanning the line, and restore it on
17597 exit if none of the characters scanned was an exact match.
17598 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
17599 when exact match is impossible due to invisible text, and the
17600 lines are truncated.
17601
17602 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
17603
17604 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
17605 for OSX >= 10.7.
17606
17607 2011-07-22 Eli Zaretskii <eliz@gnu.org>
17608
17609 Fix a significant slow-down of cursor motion with C-n, C-p,
17610 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
17611 auto-repeat under bidi redisplay in fontified buffers.
17612 * xdisp.c (compute_stop_pos_backwards): New function.
17613 (next_element_from_buffer): Call compute_stop_pos_backwards to
17614 find a suitable prev_stop when we find ourselves before
17615 base_level_stop.
17616 (reseat): Don't look for prev_stop, as that could mean a very long
17617 run.
17618 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
17619 <cached_disp_overlay_modiff>: Cache for last found display string
17620 position.
17621 (compute_display_string_pos): Return the cached position if asked
17622 about the same buffer in the same area of character positions, and
17623 the buffer wasn't changed since the time the display string
17624 position was cached.
17625
17626 2011-07-22 Eli Zaretskii <eliz@gnu.org>
17627
17628 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
17629 is an integer, which is important for empty lines. (Bug#9149)
17630
17631 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
17632
17633 * frame.c (Fmodify_frame_parameters): In tty case, update the
17634 default face if necessary (Bug#4238).
17635
17636 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
17637
17638 * editfns.c (Fstring_to_char): No need to explain what a character
17639 is in the docstring (Bug#6576).
17640
17641 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17642
17643 * xml.c (parse_region): Make sure we always return a tree.
17644
17645 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
17646
17647 * xml.c (parse_region): If a document contains only comments,
17648 return that, too.
17649
17650 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17651
17652 * xml.c (make_dom): Return comments, too.
17653
17654 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
17655
17656 Port to OpenBSD.
17657 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
17658 and the surrounding thread.
17659 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
17660 rather than fgets, and retry after EINTR. Otherwise, 'emacs
17661 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
17662 timer goes off.
17663 * s/openbsd.h (BROKEN_SIGIO): Define.
17664 * unexelf.c (unexec) [__OpenBSD__]:
17665 Don't update the .mdebug section of the Alpha COFF symbol table.
17666
17667 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
17668
17669 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
17670 (bug#8460).
17671
17672 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
17673
17674 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
17675 This fixes some race conditions on the permissions of any newly
17676 created file.
17677
17678 * alloc.c (valid_pointer_p): Use pipe, not open.
17679 This fixes some permissions issues when debugging.
17680
17681 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
17682 If fchown fails to set both uid and gid, try to set just gid,
17683 as that is sometimes allowed. Adjust the file's mode to eliminate
17684 setuid or setgid bits that are inappropriate if fchown fails.
17685
17686 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
17687
17688 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
17689 to compare Lisp_Objects.
17690 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
17691 global_gnutls_log_level, don't mistake it for a Lisp_Object.
17692 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
17693
17694 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
17695
17696 * lread.c (read_integer): Unread even EOF character.
17697 (read1): Likewise. Properly record start position of symbol.
17698
17699 * lread.c (read1): Read `#:' as empty uninterned symbol if no
17700 symbol character follows.
17701
17702 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
17703
17704 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
17705 This works around a problem with the previous change to Fcopy_file.
17706 Recent glibc declares fchown with __attribute__((warn_unused_result)),
17707 and without this change, GCC might complain about discarding
17708 fchown's return value.
17709
17710 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
17711
17712 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
17713
17714 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
17715
17716 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
17717
17718 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17719
17720 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17721 it's used from the C level.
17722
17723 * process.c: Use the same condition for POLL_FOR_INPUT in both
17724 keyboard.c and process.c (bug#1858).
17725
17726 2011-07-09 Lawrence Mitchell <wence@gmx.li>
17727
17728 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17729 (Fgnutls_boot): Use it.
17730
17731 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17732
17733 * doc.c (Fsubstitute_command_keys): Revert last change.
17734
17735 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17736
17737 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
17738 quotes the next character, and doesn't affect other longer
17739 sequences (bug#8935).
17740
17741 * lread.c (syms_of_lread): Clarify that is isn't only
17742 `eval-buffer' and `eval-defun' that's affected by
17743 `lexical-binding' (bug#8460).
17744
17745 2011-07-15 Eli Zaretskii <eliz@gnu.org>
17746
17747 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
17748 bidi redisplay when a line includes both an image and is truncated.
17749
17750 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
17751
17752 Fix minor problems found by static checking.
17753 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
17754 (elsz): Now a signed constant, not a size_t var. We prefer signed
17755 types to unsigned, to avoid integer comparison confusion. Without
17756 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
17757 "cannot optimize loop, the loop counter may overflow", a symptom
17758 of the confusion.
17759 * indent.c (Fvertical_motion): Mark locals as initialized.
17760 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
17761
17762 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17763
17764 * search.c (Fre_search_backward): Mention `case-fold-search' in
17765 all the re_search_* functions (bug#8138).
17766
17767 * keyboard.c (Fopen_dribble_file): Document when the file is
17768 closed (bug#8056).
17769
17770 2011-07-14 Eli Zaretskii <eliz@gnu.org>
17771
17772 * bidi.c (bidi_dump_cached_states): Fix format of displaying
17773 bidi_cache_idx.
17774
17775 Support bidi reordering of display and overlay strings.
17776 * xdisp.c (compute_display_string_pos)
17777 (compute_display_string_end): Accept additional argument STRING.
17778 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
17779 (reseat_to_string): Initialize bidi_it->string.s and
17780 bidi_it->string.schars.
17781 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
17782 NULL (avoids a crash in bidi_paragraph_init).
17783 Initialize itb.string.lstring.
17784 (init_iterator): Call bidi_init_it only of a valid
17785 buffer position was specified. Initialize paragraph_embedding to
17786 L2R.
17787 (reseat_to_string): Initialize the bidi iterator.
17788 (display_string): If we need to ignore text properties of
17789 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
17790 original value of -1 will not work with bidi.)
17791 (compute_display_string_pos): First arg is now struct
17792 `text_pos *'; all callers changed. Support display properties on
17793 Lisp strings.
17794 (compute_display_string_end): Support display properties on Lisp
17795 strings.
17796 (init_iterator, reseat_1, reseat_to_string): Initialize the
17797 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
17798 when iterating on a string not from display properties).
17799 (compute_display_string_pos, compute_display_string_end):
17800 Fix calculation of the object to scan. Fixes an error when using
17801 arrow keys.
17802 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
17803 base_level_stop; instead, set base_level_stop to BEGV.
17804 Fixes crashes in vertical-motion.
17805 (next_element_from_buffer): Improve commentary for when
17806 the iterator is before prev_stop.
17807 (init_iterator): Initialize bidi_p from the default value of
17808 bidi-display-reordering, not from buffer-local value. Use the
17809 buffer-local value only if initializing for buffer iteration.
17810 (handle_invisible_prop): Support invisible properties on strings
17811 that are being bidi-reordered.
17812 (set_iterator_to_next): Support bidi reordering of C strings and
17813 Lisp strings.
17814 (next_element_from_string): Support bidi reordering of Lisp
17815 strings.
17816 (handle_stop_backwards): Support Lisp strings as well.
17817 (display_string): Support display of R2L glyph rows.
17818 Use IT_STRING_CHARPOS when displaying from a Lisp string.
17819 (init_iterator): Don't initialize it->bidi_p for strings
17820 here.
17821 (reseat_to_string): Initialize it->bidi_p for strings here.
17822 (next_element_from_string, next_element_from_c_string)
17823 (next_element_from_buffer): Add xassert's for correspondence
17824 between IT's object being iterated and it->bidi_it.string
17825 structure.
17826 (face_before_or_after_it_pos): Support bidi iteration.
17827 (next_element_from_c_string): Handle the case of the first string
17828 character that is not the first one in the visual order.
17829 (get_visually_first_element): New function, refactored from common
17830 parts of next_element_from_buffer, next_element_from_string, and
17831 next_element_from_c_string.
17832 (tool_bar_lines_needed, redisplay_tool_bar)
17833 (display_menu_bar): Force left-to-right direction. Add a FIXME
17834 comment for making that be controlled by a user option.
17835 (push_it, pop_it): Save and restore the state of the
17836 bidi iterator. Save and restore the bidi_p flag.
17837 (pop_it): Iterate out of display property for string iteration as
17838 well.
17839 (iterate_out_of_display_property): Support iteration over strings.
17840 (handle_single_display_spec): Set up it->bidi_it for iteration
17841 over a display string, and call bidi_init_it.
17842 (handle_single_display_spec, next_overlay_string)
17843 (get_overlay_strings_1, push_display_prop): Set up the bidi
17844 iterator for displaying display or overlay strings.
17845 (forward_to_next_line_start): Don't use the shortcut if
17846 bidi-iterating.
17847 (back_to_previous_visible_line_start): If handle_display_prop
17848 pushed the iterator stack, restore the internal state of the bidi
17849 iterator by calling bidi_pop_it same number of times.
17850 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
17851 and we are bidi-iterating, don't decrement the iterator position;
17852 instead, set the first_elt flag in the bidi iterator, to produce
17853 the same effect.
17854 (reseat_1): Remove redundant setting of string_from_display_prop_p.
17855 (push_display_prop): xassert that we are iterating a buffer.
17856 (push_it, pop_it): Save and restore paragraph_embedding member.
17857 (handle_single_display_spec, next_overlay_string)
17858 (get_overlay_strings_1, reseat_1, reseat_to_string)
17859 (push_display_prop): Set up the `unibyte' member of bidi_it.string
17860 correctly. Don't assume unibyte strings are not bidi-reordered.
17861 (compute_display_string_pos)
17862 (compute_display_string_end): Fix handling the case of C string.
17863 (push_it, pop_it): Save and restore from_disp_prop_p.
17864 (handle_single_display_spec, push_display_prop): Set the
17865 from_disp_prop_p flag.
17866 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
17867 (pop_it): Call iterate_out_of_display_property only if we are
17868 popping after iteration over a string that came from a display
17869 property. Fix a typo in popping stretch info. Add an assertion
17870 for verifying that the iterator position is in sync with the bidi
17871 iterator.
17872 (handle_single_display_spec, get_overlay_strings_1)
17873 (push_display_prop): Fix initialization of paragraph direction for
17874 string when that of the parent object is not yet determined.
17875 (reseat_1): Call bidi_init_it to resync the bidi
17876 iterator with IT's position. (Bug#7616)
17877 (find_row_edges): If ROW->start.pos gives position
17878 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
17879 (handle_stop, back_to_previous_visible_line_start, reseat_1):
17880 Reset the from_disp_prop_p flag.
17881 (SAVE_IT, RESTORE_IT): New macros.
17882 (pos_visible_p, face_before_or_after_it_pos)
17883 (back_to_previous_visible_line_start)
17884 (move_it_in_display_line_to, move_it_in_display_line)
17885 (move_it_to, move_it_vertically_backward, move_it_by_lines)
17886 (try_scrolling, redisplay_window, display_line): Use them when
17887 saving a temporary copy of the iterator and restoring it back.
17888 (back_to_previous_visible_line_start, reseat_1)
17889 (init_iterator): Empty the bidi cache "stack".
17890 (move_it_in_display_line_to): If iterator ended up at
17891 EOL, but we never saw any buffer positions smaller than
17892 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
17893 motion in bidi-reordered lines.
17894 (move_it_in_display_line_to): Record prev_method and prev_pos
17895 immediately before the call to set_iterator_to_next. Fixes cursor
17896 motion in bidi-reordered lines with stretch glyphs and strings
17897 displayed in margins. (Bug#8133) (Bug#8867)
17898 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
17899 TO_CHARPOS.
17900 (pos_visible_p): Support positions in bidi-reordered lines.
17901 Save and restore bidi cache.
17902
17903 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17904 (bidi_paragraph_info): Delete unused struct.
17905 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17906 (bidi_cache_start): New variable.
17907 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17908 to zero.
17909 (bidi_cache_fetch_state, bidi_cache_search)
17910 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17911 (bidi_cache_find, bidi_peek_at_next_level)
17912 (bidi_level_of_next_char, bidi_find_other_level_edge)
17913 (bidi_move_to_visually_next): Compare cache index with
17914 bidi_cache_start rather than with zero.
17915 (bidi_fetch_char): Accept new argument STRING; all callers
17916 changed. Support iteration over a string. Support strings with
17917 display properties. Support unibyte strings. Fix the type of
17918 `len' according to what STRING_CHAR_AND_LENGTH expects.
17919 (bidi_paragraph_init, bidi_resolve_explicit_1)
17920 (bidi_resolve_explicit, bidi_resolve_weak)
17921 (bidi_level_of_next_char, bidi_move_to_visually_next):
17922 Support iteration over a string.
17923 (bidi_set_sor_type, bidi_resolve_explicit_1)
17924 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17925 can now be zero (for strings); special values 0 and -1 were
17926 changed to -1 and -2, respectively.
17927 (bidi_char_at_pos): New function.
17928 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17929 Call it instead of FETCH_MULTIBYTE_CHAR.
17930 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17931 initialized to valid values.
17932 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17933 values.
17934 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17935 the test for valid cached positions. Fix the logic for looking up
17936 the sentinel state in the cache. GCPRO the Lisp string we are
17937 iterating.
17938 (bidi_push_it, bidi_pop_it): New functions.
17939 (bidi_initialize): Initialize the bidi cache start stack pointer.
17940 (bidi_cache_ensure_space): New function, refactored from part of
17941 bidi_cache_iterator_state. Don't assume the required size is just
17942 one BIDI_CACHE_CHUNK away.
17943 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17944 (bidi_count_bytes, bidi_char_at_pos): New functions.
17945 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17946 always valid if bidi_cache_idx is valid.
17947 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17948 is valid if it's going to be used.
17949 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17950 (bidi_cache_fetch_state, bidi_cache_search)
17951 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17952 (bidi_cache_iterator_state, bidi_cache_find)
17953 (bidi_find_other_level_edge, bidi_cache_start_stack):
17954 All variables related to cache indices are now EMACS_INT.
17955
17956 * dispextern.h (struct bidi_string_data): New structure.
17957 (struct bidi_it): New member `string'. Make flag members be 1-bit
17958 fields, and put them last in the struct.
17959 (compute_display_string_pos, compute_display_string_end):
17960 Update prototypes.
17961 (bidi_push_it, bidi_pop_it): Add prototypes.
17962 (struct iterator_stack_entry): New members bidi_p,
17963 paragraph_embedding, and from_disp_prop_p.
17964 (struct it): Member bidi_p is now a bit field 1 bit wide.
17965 (bidi_shelve_cache, bidi_unshelve_cache):
17966 Declare prototypes.
17967
17968 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17969 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17970 and vector-like objects.
17971
17972 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17973 cache around display iteration.
17974
17975 * window.c (Fwindow_end, window_scroll_pixel_based)
17976 (displayed_window_lines, Frecenter): Save and restore the bidi
17977 cache around display iteration.
17978
17979 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17980
17981 * editfns.c (Fdelete_region): Clarify the use of the named
17982 parameters (bug#6788).
17983
17984 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17985
17986 * indent.c (Fvertical_motion): Set and restore w->pointm when
17987 saving and restoring the window's buffer (Bug#9006).
17988
17989 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17990
17991 * editfns.c (Fstring_to_char): Clarify just what is returned
17992 (bug#6576). Text by Eli Zaretskii.
17993
17994 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17995
17996 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17997
17998 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17999
18000 * buffer.c (mmap_find): Fix a typo.
18001
18002 2011-07-13 Johan Bockgård <bojohan@gnu.org>
18003
18004 Fix execution of x selection hooks.
18005 * xselect.c (Qx_lost_selection_functions)
18006 (Qx_sent_selection_functions): New vars.
18007 (syms_of_xselect): DEFSYM them.
18008 (x_handle_selection_request): Pass Qx_sent_selection_functions
18009 rather than Vx_sent_selection_functions to Frun_hook_with_args.
18010 (x_handle_selection_clear,x_clear_frame_selections):
18011 Pass Qx_lost_selection_functions rather than
18012 Vx_lost_selection_functions to Frun_hook_with_args.
18013
18014 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
18015
18016 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
18017 The old code sometimes used this field without initializing it.
18018
18019 * alloc.c (gc_sweep): Don't read past end of array.
18020 In theory, the old code could also have corrupted Emacs internals,
18021 though it'd be very unlikely.
18022
18023 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
18024
18025 * character.c (Fcharacterp): Don't advertise optional ignored
18026 argument. (Bug#4026)
18027
18028 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
18029
18030 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
18031 key" (bug#4257).
18032
18033 * window.c (Fset_window_start): Doc fix (bug#4199).
18034 (Fset_window_hscroll): Ditto.
18035
18036 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
18037
18038 Fix minor new problems caught by GCC 4.6.1.
18039 * term.c (init_tty): Remove unused local.
18040 * xsettings.c (store_monospaced_changed): Define this function only
18041 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
18042 not used otherwise.
18043
18044 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
18045
18046 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
18047
18048 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
18049
18050 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
18051 are the mini-buffer and the echo area (bug#3320).
18052
18053 * term.c (init_tty): Remove support for supdup, c10 and perq
18054 terminals, which are no longer supported (bug#1482).
18055
18056 2011-07-10 Johan Bockgård <bojohan@gnu.org>
18057
18058 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
18059
18060 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
18061
18062 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
18063 for non-popups (Bug#3642).
18064
18065 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
18066
18067 * alloc.c (reset_malloc_hooks): Protoize.
18068 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
18069 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
18070 * cm.c (losecursor): Likewise.
18071 * data.c (fmod): Likewise.
18072 * dispnew.c (swap_glyphs_in_rows): Likewise.
18073 * emacs.c (memory_warning_signal): Likewise.
18074 * floatfns.c (float_error): Likewise.
18075 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
18076 (otf_open, font_otf_capability, generate_otf_features)
18077 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
18078 Likewise.
18079 * image.c (pbm_read_file): Likewise.
18080 * indent.c (string_display_width): Likewise.
18081 * intervals.c (check_for_interval, search_for_interval)
18082 (inc_interval_count, count_intervals, root_interval)
18083 (adjust_intervals_for_insertion, make_new_interval): Likewise.
18084 * lread.c (defalias): Likewise.
18085 * ralloc.c (r_alloc_check): Likewise.
18086 * regex.c (set_image_of_range_1, set_image_of_range)
18087 (regex_grow_registers): Likewise.
18088 * sysdep.c (strerror): Likewise.
18089 * termcap.c (valid_filename_p, tprint, main): Likewise.
18090 * tparam.c (main): Likewise.
18091 * unexhp9k800.c (run_time_remap, save_data_space)
18092 (update_file_ptrs, read_header, write_header, calculate_checksum)
18093 (copy_file, copy_rest, display_header): Likewise.
18094 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
18095 Likewise.
18096 * xdisp.c (check_it): Likewise.
18097 * xfaces.c (register_color, unregister_color, unregister_colors):
18098 Likewise.
18099 * xfns.c (print_fontset_result): Likewise.
18100 * xrdb.c (member, fatal, main): Likewise.
18101
18102 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
18103
18104 Fix minor problems found by static checking (Bug#9031).
18105 * chartab.c (char_table_set_range, map_sub_char_table):
18106 Remove unused locals.
18107 (uniprop_table): Now static.
18108 * composite.c (_work_char): Remove unused static var.
18109
18110 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
18111
18112 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
18113
18114 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
18115
18116 * gtkutil.c (qttip_cb): Remove code without function.
18117
18118 2011-07-09 Eli Zaretskii <eliz@gnu.org>
18119
18120 * w32.c (pthread_sigmask): New stub.
18121
18122 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
18123
18124 Use pthread_sigmask, not sigprocmask (Bug#9010).
18125 sigprocmask is portable only for single-threaded applications, and
18126 Emacs can be multi-threaded when it uses GTK.
18127 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
18128 (LIBES): Use it.
18129 * callproc.c (Fcall_process):
18130 * process.c (create_process):
18131 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
18132 Use pthread_sigmask, not sigprocmask.
18133
18134 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18135
18136 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
18137 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
18138 wrong (Bug#8591).
18139
18140 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18141
18142 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
18143 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
18144 (xg_hide_tooltip): Fix comment.
18145
18146 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
18147 in registerServicesMenuSendTypes.
18148 (validRequestorForSendType): Don't check ns_return_types.
18149
18150 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
18151 ns_return_type.
18152
18153 2011-07-08 Jason Rumney <jasonr@gnu.org>
18154
18155 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
18156 SH_SHOW for hidden windows (Bug#5482).
18157
18158 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
18159 frame struct members of non-existent frames (Bug#6284).
18160
18161 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
18162
18163 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
18164 variable firstTime not needed on OSX >= 10.6.
18165 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
18166 >= 10.5. Use setKnobProportion, setDoubleValue.
18167
18168 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
18169 (MAC_OS_X_VERSION_10_5): Define if not defined.
18170 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
18171 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
18172 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
18173
18174 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
18175 cString and lossyCString on OSX >= 10.4.
18176
18177 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
18178 sizeToFit on OSX >= 10.2.
18179
18180 * nsimage.m (allocInitFromFile): Don't use deprecated method
18181 bestRepresentationForDevice on OSX >= 10.6.
18182
18183 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
18184 to avoid warning.
18185
18186 * emacs.c: Declare unexec_init_emacs_zone.
18187
18188 * nsgui.h: Fix compiler warning about gnulib redefining verify.
18189
18190 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
18191
18192 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
18193 on svcsMenu (Bug#8842).
18194
18195 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
18196 ns_return_types.
18197 (Fns_list_services): Just return Qnil on 10.6, code not working there.
18198
18199 * nsterm.m (QUTF8_STRING): Declare.
18200 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
18201 (validRequestorForSendType): Return type is (id).
18202 Change indexOfObjectIdenticalTo to indexOfObject.
18203 Check if we have local selection before returning self (Bug#8842).
18204 (writeSelectionToPasteboard): Put local selection into paste board
18205 if we have a local selection (Bug#8842).
18206 (syms_of_nsterm): DEFSYM QUTF8_STRING.
18207
18208 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
18209 (ns_get_local_selection): Declare.
18210
18211 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
18212
18213 * keymap.c (describe_map_tree): Don't insert a double newline at
18214 the end of the buffer (bug#1169) and return whether we inserted
18215 something.
18216
18217 * callint.c (Fcall_interactively): Change "reading args" to
18218 "providing args" to try to clarify what it does (bug#1010).
18219
18220 2011-07-07 Kenichi Handa <handa@m17n.org>
18221
18222 * composite.c (composition_compute_stop_pos): Ignore a static
18223 composition starting before CHARPOS (Bug#8915).
18224
18225 * xdisp.c (handle_composition_prop): Likewise.
18226
18227 2011-07-07 Eli Zaretskii <eliz@gnu.org>
18228
18229 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
18230 (Bug#9015)
18231
18232 2011-07-07 Kenichi Handa <handa@m17n.org>
18233
18234 * character.h (unicode_category_t): New enum type.
18235
18236 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
18237 (Qchar_code_property_table): New variable.
18238 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
18239 (UNIPROP_COMPRESSED_FORM_P): New macros.
18240 (char_table_ascii): Uncompress the compressed values.
18241 (sub_char_table_ref): New arg is_uniprop. Callers changed.
18242 Uncompress the compressed values.
18243 (sub_char_table_ref_and_range): Likewise.
18244 (char_table_ref_and_range): Uncompress the compressed values.
18245 (sub_char_table_set): New arg is_uniprop. Callers changed.
18246 Uncompress the compressed values.
18247 (sub_char_table_set_range): Args changed. Callers changed.
18248 (char_table_set_range): Adjuted for the above change.
18249 (map_sub_char_table): Delete args default_val and parent. Add arg
18250 top. Give decoded values to a Lisp function.
18251 (map_char_table): Adjust for the above change. Give decoded
18252 values to a Lisp function. Gcpro more variables.
18253 (uniprop_table_uncompress)
18254 (uniprop_decode_value_run_length): New functions.
18255 (uniprop_decoder, uniprop_decoder_count): New variables.
18256 (uniprop_get_decoder, uniprop_encode_value_character)
18257 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
18258 New functions.
18259 (uniprop_encoder, uniprop_encoder_count): New variables.
18260 (uniprop_get_encoder, uniprop_table)
18261 (Funicode_property_table_internal, Fget_unicode_property_internal)
18262 (Fput_unicode_property_internal): New functions.
18263 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
18264 Sunicode_property_table_internal, Sget_unicode_property_internal,
18265 and Sput_unicode_property_internal. Defvar_lisp
18266 char-code-property-alist.
18267
18268 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
18269 Vunicode_category_table.
18270
18271 * font.c (font_range): Adjust for the change of
18272 Vunicode_category_table.
18273
18274 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
18275
18276 * m/iris4d.h: Remove file, move contents ...
18277 * s/irix6-5.h: ... here.
18278
18279 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
18280
18281 Remove unportable assumption about struct layout (Bug#8884).
18282 * alloc.c (mark_buffer):
18283 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
18284 (clone_per_buffer_values): Don't assume that
18285 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
18286 This isn't true in general, and it's particularly not true
18287 if Emacs is configured with --with-wide-int.
18288 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
18289 New macros, used in the buffer.c change.
18290
18291 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
18292
18293 * xsettings.c: Use both GConf and GSettings if both are available.
18294 (store_config_changed_event): Add comment.
18295 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
18296 (store_tool_bar_style_changed): New functions.
18297 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
18298 (struct xsettings): Move font inside HAVE_XFT.
18299 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
18300 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
18301 Move inside HAVE_XFT.
18302 (something_changed_gsettingsCB): Rename from something_changedCB.
18303 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
18304 also.
18305 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
18306 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
18307 (something_changed_gconfCB): Rename from something_changedCB.
18308 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
18309 (parse_settings): Move check for font inside HAVE_XFT.
18310 (read_settings, apply_xft_settings): Add comment.
18311 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
18312 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
18313 call store_font_name_changed.
18314 (xft_settings_event): Add comment.
18315 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
18316 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
18317 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
18318 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
18319 (xsettings_initialize): Call init_gsettings last.
18320 (xsettings_get_system_font, xsettings_get_system_normal_font):
18321 Add comment.
18322
18323 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
18324
18325 Random fixes. E.g., (random) never returned negative values.
18326 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
18327 subseconds part to the entropy, as that's a bit more random.
18328 Prefer signed to unsigned, since the signedness doesn't matter and
18329 in general we prefer signed. When given a limit, use a
18330 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
18331 latter isn't right if USE_2_TAGS_FOR_INTS.
18332 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
18333 not 0..VALMASK. Don't discard "excess" bits that random () returns.
18334
18335 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
18336
18337 * textprop.c (text_property_stickiness):
18338 Obey Vtext_property_default_nonsticky.
18339 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
18340 * w32fns.c (syms_of_w32fns):
18341 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
18342
18343 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
18344
18345 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
18346 This is more efficient than Ffile_directory_p and avoids a minor race.
18347
18348 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
18349
18350 * buffer.c (Foverlay_put): Say what the return value is
18351 (bug#7835).
18352
18353 * fileio.c (barf_or_query_if_file_exists): Check first if the file
18354 is a directory before asking whether to use the file name
18355 (bug#7564).
18356 (barf_or_query_if_file_exists): Make the "File is a directory"
18357 error be more correct.
18358
18359 * fns.c (Frequire): Remove the mention of the .gz files, since
18360 that's installation-specific, but keep the mention of
18361 `get-load-suffixes'.
18362
18363 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
18364
18365 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
18366 Report string overflow if the output is too long.
18367
18368 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
18369
18370 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
18371 (syms_of_gnutls): Remove duplicate DEFSYM for
18372 Qgnutls_bootprop_verify_hostname_error, an error for
18373 Qgnutls_bootprop_verify_error (which is no longer used).
18374
18375 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
18376 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
18377 Also (re)move comments that are misplaced or no longer relevant.
18378
18379 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18380
18381 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
18382
18383 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
18384
18385 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
18386 and background color parameters if they have been changed.
18387
18388 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
18389
18390 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
18391
18392 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
18393
18394 * xsettings.c (SYSTEM_FONT): Define only when used.
18395 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
18396
18397 * keymap.c (access_keymap_1): Now static.
18398
18399 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
18400
18401 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
18402 leave any prefix arg for the up event (Bug#1586).
18403
18404 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
18405
18406 * lread.c (syms_of_lread): Mention single symbols defined by
18407 `defvar' or `defconst' (bug#7154).
18408
18409 * fns.c (Frequire): Mention .el.gz files (bug#7314).
18410 (Frequire): Mention get-load-suffixes.
18411
18412 2011-07-02 Martin Rudalics <rudalics@gmx.at>
18413
18414 * window.h (window): Remove clone_number slot.
18415 * window.c (Fwindow_clone_number, Fset_window_clone_number):
18416 Remove.
18417 (make_parent_window, make_window, saved_window)
18418 (Fset_window_configuration, save_window_save): Don't deal with
18419 clone numbers.
18420 * buffer.c (Qclone_number): Remove declaration.
18421 (sort_overlays, overlay_strings): Don't deal with clone numbers.
18422
18423 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
18424
18425 Add multiple inheritance to keymaps.
18426 * keymap.c (Fmake_composed_keymap): New function.
18427 (Fset_keymap_parent): Simplify.
18428 (fix_submap_inheritance): Remove.
18429 (access_keymap_1): New function extracted from access_keymap to handle
18430 embedded parents and handle lists of maps.
18431 (access_keymap): Use it.
18432 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
18433 (Fcopy_keymap): Handle embedded parents.
18434 (Fcommand_remapping, define_as_prefix): Simplify.
18435 (Fkey_binding): Simplify.
18436 (syms_of_keymap): Move minibuffer-local-completion-map,
18437 minibuffer-local-filename-completion-map,
18438 minibuffer-local-must-match-map, and
18439 minibuffer-local-filename-must-match-map to Elisp.
18440 (syms_of_keymap): Defsubr make-composed-keymap.
18441 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
18442 (parse_menu_item): Trivial simplification.
18443
18444 2011-07-01 Glenn Morris <rgm@gnu.org>
18445
18446 * Makefile.in (SETTINGS_LIBS): Fix typo.
18447
18448 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
18449
18450 * coding.c (Fencode_coding_string): Record the last coding system
18451 used, as the function doc string says (bug#8738).
18452
18453 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
18454
18455 * xsettings.c (store_monospaced_changed): Take new font as arg and
18456 check for change against current_mono_font.
18457 (EMACS_TYPE_SETTINGS): Remove this and related defines.
18458 (emacs_settings_constructor, emacs_settings_get_property)
18459 (emacs_settings_set_property, emacs_settings_class_init)
18460 (emacs_settings_init, gsettings_obj): Remove.
18461 (something_changedCB): New function for HAVE_GSETTINGS.
18462 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
18463 with value as argument.
18464 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
18465 g_settings_new (Bug#8967). Do not create gsettings_obj.
18466 Remove calls to g_settings_bind. Connect something_changedCB to
18467 "changed".
18468
18469 * xgselect.c: Add defined (HAVE_GSETTINGS).
18470 (xgselect_initialize): Ditto.
18471
18472 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
18473 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
18474 xg_select.
18475
18476 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
18477
18478 * eval.c (struct backtrace): Simplify and port the data structure.
18479 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
18480 signed bit field, as this assumption is not portable and it makes
18481 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
18482 "char debug_on_exit : 1" as this is not portable either; instead,
18483 use the portable "unsigned int debug_on_exit : 1". Remove unused
18484 member evalargs. Remove obsolete comments about cc bombing out.
18485
18486 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
18487
18488 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
18489 Let HAVE_GSETTINGS override HAVE_GCONF.
18490 (store_monospaced_changed): New function.
18491 (EMACS_SETTINGS): A new type derived from GObject to handle
18492 GSettings notifications.
18493 (emacs_settings_constructor, emacs_settings_get_property)
18494 (emacs_settings_set_property, emacs_settings_class_init):
18495 New functions.
18496 (gsettings_client, gsettings_obj): New variables.
18497 (GSETTINGS_SCHEMA): New define.
18498 (something_changedCB): Call store_monospaced_changed.
18499 (init_gsettings): New function.
18500 (xsettings_initialize): Call init_gsettings.
18501 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
18502 to NULL.
18503
18504 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
18505 GCONF_CFLAGS/LIBS.
18506
18507 2011-06-29 Martin Rudalics <rudalics@gmx.at>
18508
18509 * window.c (resize_root_window, grow_mini_window)
18510 (shrink_mini_window): Rename Qresize_root_window to
18511 Qwindow_resize_root_window and Qresize_root_window_vertically to
18512 Qwindow_resize_root_window_vertically.
18513
18514 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
18515
18516 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
18517
18518 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
18519
18520 * makefile.w32-in: Redesign dependencies so they reflect more
18521 clearly which files are directly included by each source file,
18522 and not through other includes.
18523
18524 2011-06-27 Martin Rudalics <rudalics@gmx.at>
18525
18526 * buffer.c (Qclone_number): Declare static and DEFSYM it.
18527 (sort_overlays, overlay_strings): When an overlay's clone number
18528 matches the window's clone number process the overlay even if
18529 the overlay's window property doesn't match the current window.
18530
18531 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
18532 (Fwindow_hchild): Rename to Fwindow_left_child.
18533 (Fwindow_next): Rename to Fwindow_next_sibling.
18534 (Fwindow_prev): Rename to Fwindow_prev_sibling.
18535 (resize_window_check): Rename to window_resize_check.
18536 (resize_window_apply): Rename to window_resize_apply.
18537 (Fresize_window_apply): Rename to Fwindow_resize_apply.
18538 (Fdelete_other_windows_internal, resize_frame_windows)
18539 (Fsplit_window_internal, Fdelete_window_internal)
18540 (grow_mini_window, shrink_mini_window)
18541 (Fresize_mini_window_internal): Fix callers accordingly.
18542
18543 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
18544
18545 * emacsgtkfixed.h: State that this is only used with Gtk+3.
18546 (emacs_fixed_set_min_size): Remove.
18547 (emacs_fixed_new): Take frame as argument.
18548
18549 * emacsgtkfixed.c: State that this is only used with Gtk+3.
18550 (_EmacsFixedPrivate): Remove minwidth/height.
18551 Add struct frame *f.
18552 (emacs_fixed_init): Initialize priv->f.
18553 (get_parent_class, emacs_fixed_set_min_size): Remove.
18554 (emacs_fixed_new): Set priv->f to argument.
18555 (emacs_fixed_get_preferred_width)
18556 (emacs_fixed_get_preferred_height): Use min_width/height from
18557 frames size_hint to set minimum and natural (Bug#8919).
18558 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
18559 and use min_width/height from frames size_hint to set
18560 min_width/height (Bug#8919).
18561
18562 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
18563 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
18564 Fix indentation.
18565
18566 2011-06-26 Eli Zaretskii <eliz@gnu.org>
18567
18568 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
18569 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
18570 called at ZV.
18571
18572 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
18573
18574 * process.c (wait_reading_process_output): Bypass select if
18575 waiting for a cell while ignoring keyboard input, and input is
18576 pending. Suggested by Jan Djärv (Bug#8869).
18577
18578 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
18579
18580 Use gnulib's dup2 module instead of rolling our own.
18581 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
18582
18583 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18584
18585 * dispnew.c (scrolling_window): Before scrolling, turn off a
18586 mouse-highlight in the window being scrolled.
18587
18588 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
18589
18590 Move DEFSYM to lisp.h and use everywhere.
18591
18592 * character.h (DEFSYM): Move declaration...
18593 * lisp.h (DEFSYM): ...here.
18594
18595 * gnutls.c:
18596 * minibuf.c:
18597 * w32menu.c:
18598 * w32proc.c:
18599 * w32select.c: Don't include character.h.
18600
18601 * alloc.c (syms_of_alloc):
18602 * buffer.c (syms_of_buffer):
18603 * bytecode.c (syms_of_bytecode):
18604 * callint.c (syms_of_callint):
18605 * casefiddle.c (syms_of_casefiddle):
18606 * casetab.c (init_casetab_once):
18607 * category.c (init_category_once, syms_of_category):
18608 * ccl.c (syms_of_ccl):
18609 * cmds.c (syms_of_cmds):
18610 * composite.c (syms_of_composite):
18611 * dbusbind.c (syms_of_dbusbind):
18612 * dired.c (syms_of_dired):
18613 * dispnew.c (syms_of_display):
18614 * doc.c (syms_of_doc):
18615 * editfns.c (syms_of_editfns):
18616 * emacs.c (syms_of_emacs):
18617 * eval.c (syms_of_eval):
18618 * fileio.c (syms_of_fileio):
18619 * fns.c (syms_of_fns):
18620 * frame.c (syms_of_frame):
18621 * fringe.c (syms_of_fringe):
18622 * insdel.c (syms_of_insdel):
18623 * keymap.c (syms_of_keymap):
18624 * lread.c (init_obarray, syms_of_lread):
18625 * macros.c (syms_of_macros):
18626 * msdos.c (syms_of_msdos):
18627 * print.c (syms_of_print):
18628 * process.c (syms_of_process):
18629 * search.c (syms_of_search):
18630 * sound.c (syms_of_sound):
18631 * syntax.c (init_syntax_once, syms_of_syntax):
18632 * terminal.c (syms_of_terminal):
18633 * textprop.c (syms_of_textprop):
18634 * undo.c (syms_of_undo):
18635 * w32.c (globals_of_w32):
18636 * window.c (syms_of_window):
18637 * xdisp.c (syms_of_xdisp):
18638 * xfaces.c (syms_of_xfaces):
18639 * xfns.c (syms_of_xfns):
18640 * xmenu.c (syms_of_xmenu):
18641 * xsettings.c (syms_of_xsettings):
18642 * xterm.c (syms_of_xterm): Use DEFSYM.
18643
18644 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
18645
18646 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
18647
18648 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
18649
18650 Integer and buffer overflow fixes (Bug#8873).
18651
18652 * print.c (printchar, strout): Check for string overflow.
18653 (PRINTPREPARE, printchar, strout):
18654 Don't set size unless allocation succeeds.
18655
18656 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
18657 for sizes. Check for string overflow more accurately.
18658 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
18659
18660 * macros.c: Integer and buffer overflow fixes.
18661 * keyboard.h (struct keyboard.kbd_macro_bufsize):
18662 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
18663 Use ptrdiff_t, not int, for sizes.
18664 Don't increment bufsize until after realloc succeeds.
18665 Check for size-calculation overflow.
18666 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
18667
18668 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
18669
18670 * lread.c: Integer overflow fixes.
18671 (read_integer): Radix is now EMACS_INT, not int,
18672 to improve quality of diagnostics for out-of-range radices.
18673 Calculate buffer size correctly for out-of-range radices.
18674 (read1): Check for integer overflow in radices, and in
18675 read-circle numbers.
18676 (read_escape): Avoid int overflow.
18677 (Fload, openp, read_buffer_size, read1)
18678 (substitute_object_recurse, read_vector, read_list, map_obarray):
18679 Use ptrdiff_t, not int, for sizes.
18680 (read1): Use EMACS_INT, not int, for sizes.
18681 Check for size overflow.
18682
18683 * image.c (cache_image): Check for size arithmetic overflow.
18684
18685 * lread.c: Integer overflow issues.
18686 (saved_doc_string_size, saved_doc_string_length)
18687 (prev_saved_doc_string_size, prev_saved_doc_string_length):
18688 Now ptrdiff_t, not int.
18689 (read1): Don't assume doc string length fits in int. Check for
18690 out-of-range doc string lengths.
18691 (read_list): Don't assume file position fits in int.
18692 (read_escape): Check for hex character overflow.
18693
18694 2011-06-22 Leo Liu <sdl.web@gmail.com>
18695
18696 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
18697 Move to minibuffer.el.
18698
18699 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18700
18701 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
18702 The following patches are for when GLYPH_DEBUG && !XASSERT.
18703 * dispextern.h (trace_redisplay_p, dump_glyph_string):
18704 * dispnew.c (flush_stdout):
18705 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
18706 Mark as externally visible.
18707 * dispnew.c (check_window_matrix_pointers): Now static.
18708 * dispnew.c (window_to_frame_vpos):
18709 * xfns.c (unwind_create_frame):
18710 * xterm.c (x_check_font): Remove unused local.
18711 * scroll.c (CHECK_BOUNDS):
18712 * xfaces.c (cache_fache): Rename local to avoid shadowing.
18713 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
18714 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
18715 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
18716 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
18717 Now static.
18718 (debug_method_add): Use va_list and vsprintf rather than relying
18719 on undefined behavior with wrong number of arguments.
18720 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
18721 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
18722 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
18723 since we're not interested in debugging glyphs with old libraries.
18724 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
18725 GCC 4.6.0's static checking.
18726
18727 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18728
18729 Integer overflow and signedness fixes (Bug#8873).
18730 A few related buffer overrun fixes, too.
18731
18732 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18733
18734 * dispextern.h (struct face.stipple):
18735 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
18736 (x_bitmap_mask, x_allocate_bitmap_record)
18737 (x_create_bitmap_from_data, x_create_bitmap_from_file)
18738 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
18739 (x_create_bitmap_from_xpm_data):
18740 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
18741 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
18742 (.bitmaps_last):
18743 * xfaces.c (load_pixmap):
18744 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
18745 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
18746 (.bitmaps_last, struct x_output.icon_bitmap):
18747 Use ptrdiff_t, not int, for bitmap indexes.
18748 (x_allocate_bitmap_record): Check for size overflow.
18749 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
18750
18751 Use ptrdiff_t, not int, for overlay counts.
18752 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
18753 * editfns.c (overlays_around, get_pos_property):
18754 * textprop.c (get_char_property_and_overlay):
18755 * xdisp.c (next_overlay_change, note_mouse_highlight):
18756 * xfaces.c (face_at_buffer_position):
18757 * buffer.c (OVERLAY_COUNT_MAX): New macro.
18758 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
18759 (Fnext_overlay_change, Fprevious_overlay_change)
18760 (mouse_face_overlay_overlaps, Foverlays_in):
18761 Use ptrdiff_t, not int, for sizes.
18762 (overlays_at, overlays_in): Check for size-calculation overflow.
18763
18764 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
18765
18766 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
18767 (x_session_initialize): Do not assume string length fits in int.
18768
18769 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
18770 This is unlikely, but can occur if DPI is outlandish.
18771
18772 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
18773 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
18774
18775 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
18776 * xrdb.c (magic_file_p, search_magic_path):
18777 Omit last arg SUFFIX; it was always 0. All callers changed.
18778 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
18779
18780 * xfont.c (xfont_match): Avoid need for strlen.
18781
18782 * xfns.c: Don't assume strlen fits in int.
18783 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
18784
18785 * xdisp.c (message_log_check_duplicate): Return intmax_t,
18786 not unsigned long, as we prefer signed integers. All callers changed.
18787 Detect integer overflow in repeat count.
18788 (message_dolog): Don't assume print length fits in 39 bytes.
18789 (display_mode_element): Don't assume strlen fits in int.
18790
18791 * termcap.c: Don't assume sizes fit in int and never overflow.
18792 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
18793 (gobble_line): Check for size-calculation overflow.
18794
18795 * minibuf.c (Fread_buffer):
18796 * lread.c (intern, intern_c_string):
18797 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
18798 Don't assume string length fits in int.
18799
18800 * keyboard.c (parse_tool_bar_item):
18801 * gtkutil.c (style_changed_cb): Avoid need for strlen.
18802
18803 * font.c: Don't assume string length fits in int.
18804 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
18805 Use ptrdiff_t, not int.
18806 (font_intern_prop): Don't assume string length fits in int.
18807 Don't assume integer property fits in fixnum.
18808 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
18809
18810 * filelock.c: Fix some buffer overrun and integer overflow issues.
18811 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
18812 Reformulate so as not to need the command string.
18813 Invoke gzip -cd rather than gunzip, as it's more portable.
18814 (lock_info_type, lock_file_1, lock_file):
18815 Don't assume pid_t and time_t fit in unsigned long.
18816 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
18817 (current_lock_owner): Prefer signed type for sizes.
18818 Use memcpy, not strncpy, where memcpy is what is really wanted.
18819 Don't assume (via atoi) that time_t and pid_t fit in int.
18820 Check for time_t and/or pid_t out of range, e.g., via a network share.
18821 Don't alloca where an auto var works fine.
18822
18823 * fileio.c: Fix some integer overflow issues.
18824 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
18825 Don't assume string length fits in int.
18826 (directory_file_name): Don't assume string length fits in long.
18827 (make_temp_name): Don't assume pid fits in int, or that its print
18828 length is less than 20.
18829
18830 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
18831
18832 * coding.c (make_subsidiaries): Don't assume string length fits in int.
18833
18834 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
18835
18836 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
18837 We prefer signed integers, even for size calculations.
18838
18839 * emacs.c: Don't assume string length fits in 'int'.
18840 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
18841 (main): Don't invoke strlen when not needed.
18842
18843 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
18844 (XD_DEBUG_MESSAGE): Don't waste a byte.
18845
18846 * callproc.c (getenv_internal_1, getenv_internal)
18847 (Fgetenv_internal):
18848 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
18849
18850 * lread.c (invalid_syntax): Omit length argument.
18851 All uses changed. This doesn't fix a bug, but it simplifies the
18852 code away from its former Hollerith-constant appearance, and it's
18853 one less 'int' to worry about when looking at integer-overflow issues.
18854 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
18855
18856 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
18857 This didn't break anything, but it didn't help either.
18858 It's confusing to put a bogus integer in a place where the actual
18859 value does not matter.
18860 (LIST_END_P): Remove unused macro and its bogus comment.
18861 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
18862
18863 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
18864 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
18865 implementation.
18866 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
18867 We prefer signed types, and the value cannot exceed the EMACS_INT
18868 range anyway (because otherwise the length would not be representable).
18869 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
18870 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
18871 This avoids a GCC warning when WIDE_EMACS_INT.
18872
18873 * indent.c (sane_tab_width): New function.
18874 (current_column, scan_for_column, Findent_to, position_indentation)
18875 (compute_motion): Use it. This is just for clarity.
18876 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
18877
18878 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
18879
18880 * lisp.h (lint_assume): New macro.
18881 * composite.c (composition_gstring_put_cache):
18882 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
18883
18884 * editfns.c, insdel.c:
18885 Omit unnecessary forward decls, to simplify future changes.
18886
18887 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18888
18889 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18890
18891 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
18892 Use much-faster test for byte-length change.
18893 Don't assume string byte-length fits in 'int'.
18894 Check that character arg fits in 'int'.
18895 (mapcar1): Declare byte as byte, for clarity.
18896
18897 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18898
18899 * fns.c (concat): Catch string overflow earlier.
18900 Do not rely on integer wraparound.
18901
18902 * dispextern.h (struct it.overlay_strings_charpos)
18903 (struct it.selective): Now EMACS_INT, not int.
18904 * xdisp.c (forward_to_next_line_start)
18905 (back_to_previous_visible_line_start)
18906 (reseat_at_next_visible_line_start, next_element_from_buffer):
18907 Don't arbitrarily truncate the value of 'selective' to int.
18908
18909 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18910
18911 * composite.c: Don't truncate sizes to 'int'.
18912 (composition_gstring_p, composition_reseat_it)
18913 (composition_adjust_point): Use EMACS_INT, not int.
18914 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18915 not EMACS_UINT, for indexes.
18916
18917 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18918
18919 * buffer.c: Include <verify.h>.
18920 (struct sortvec.priority, struct sortstr.priority):
18921 Now EMACS_INT, not int.
18922 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18923 (struct sortstr.size, record_overlay_string)
18924 (struct sortstrlist.size, struct sortlist.used):
18925 Don't truncate size to int.
18926 (record_overlay_string): Check for size-calculation overflow.
18927 (init_buffer_once): Check at compile-time, not run-time.
18928
18929 2011-06-22 Jim Meyering <meyering@redhat.com>
18930
18931 Don't leak an XBM-image-sized buffer
18932 * image.c (xbm_load): Free the image buffer after using it.
18933
18934 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18935
18936 Port to Sun C.
18937 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18938 that Sun C diagnosed.
18939 * fns.c (secure_hash): Fix pointer signedness issue.
18940 * intervals.c (static_offset_intervals): New function.
18941 (offset_intervals): Use it.
18942
18943 2011-06-21 Leo Liu <sdl.web@gmail.com>
18944
18945 * deps.mk (fns.o):
18946 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18947 sha512.h.
18948
18949 * fns.c (secure_hash): Rename from crypto_hash_function and change
18950 the first arg to accept symbols.
18951 (Fsecure_hash): New primitive.
18952 (syms_of_fns): New symbols.
18953
18954 2011-06-20 Deniz Dogan <deniz@dogan.se>
18955
18956 * process.c (Fset_process_buffer): Clarify return value in
18957 docstring.
18958
18959 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18960
18961 * dispnew.c (add_window_display_history): Use BVAR.
18962
18963 * xdisp.c (debug_method_add): Use BVAR.
18964 (check_window_end, dump_glyph_matrix, dump_glyph)
18965 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18966
18967 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18968 Likewise.
18969
18970 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18971 check till after the cache is created in init_frame_faces.
18972
18973 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18974
18975 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18976
18977 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18978
18979 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18980 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18981 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18982
18983 Improve buffer-overflow checking (Bug#8873).
18984 * fileio.c (Finsert_file_contents):
18985 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18986 Remove the old (too-loose) buffer overflow checks.
18987 They weren't needed, since make_gap checks for buffer overflow.
18988 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18989 The old code merely checked for Emacs fixnum overflow, and relied
18990 on undefined (wraparound) behavior. The new code avoids undefined
18991 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18992
18993 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18994 Tune. Don't use wider integers than needed. Don't use alloca.
18995 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18996
18997 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18998
18999 * insdel.c, lisp.h (buffer_overflow): New function.
19000 (insert_from_buffer_1, replace_range, replace_range_2):
19001 * insdel.c (make_gap_larger):
19002 * editfns.c (Finsert_char):
19003 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
19004
19005 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
19006
19007 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
19008
19009 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
19010
19011 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
19012 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
19013
19014 * fileio.c: Don't assume EMACS_INT fits in off_t.
19015 (emacs_lseek): New static function.
19016 (Finsert_file_contents, Fwrite_region): Use it.
19017 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
19018
19019 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
19020
19021 * fns.c: Don't overflow int when computing a list length.
19022 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
19023 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
19024 truncation on 64-bit hosts. Check for QUIT every
19025 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
19026 faster and is responsive enough.
19027 (Flength): Report an error instead of overflowing an integer.
19028 (Fsafe_length): Return a float if the value is not representable
19029 as a fixnum. This shouldn't happen except in contrived situations.
19030 (Fnthcdr, Fsort): Don't assume list length fits in int.
19031 (Fcopy_sequence): Don't assume vector length fits in int.
19032
19033 * alloc.c: Check that resized vectors' lengths fit in fixnums.
19034 (header_size, word_size): New constants.
19035 (allocate_vectorlike): Don't check size overflow here.
19036 (allocate_vector): Check it here instead, since this is the only
19037 caller of allocate_vectorlike that could cause overflow.
19038 Check that the new vector's length is representable as a fixnum.
19039
19040 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
19041 The previous code was bogus. For example, next_almost_prime (32)
19042 returned 39, which is undesirable as it is a multiple of 3; and
19043 next_almost_prime (24) returned 25, which is a multiple of 5 so
19044 why was the code bothering to check for multiples of 7?
19045
19046 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
19047
19048 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
19049
19050 Variadic C functions now count arguments with ptrdiff_t.
19051 This partly undoes my 2011-03-30 change, which replaced int with size_t.
19052 Back then I didn't know that the Emacs coding style prefers signed int.
19053 Also, in the meantime I found a few more instances where arguments
19054 were being counted with int, which may truncate counts on 64-bit
19055 machines, or EMACS_INT, which may be unnecessarily wide.
19056 * lisp.h (struct Lisp_Subr.function.aMANY)
19057 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
19058 Arg counts are now ptrdiff_t, not size_t.
19059 All variadic functions and their callers changed accordingly.
19060 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
19061 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
19062 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
19063 * callint.c (Fcall_interactively): Check arg count for overflow,
19064 to avoid potential buffer overrun. Use signed char, not 'int',
19065 for 'varies' array, so that we needn't bother to check its size
19066 calculation for overflow.
19067 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
19068 * eval.c (apply_lambda):
19069 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
19070 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
19071 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
19072
19073 * callint.c (Fcall_interactively): Don't use index var as event count.
19074
19075 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
19076 * mem-limits.h (SIZE): Remove; no longer used.
19077
19078 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
19079
19080 Remove unnecessary casts.
19081 * xterm.c (x_term_init):
19082 * xfns.c (x_set_border_pixel):
19083 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
19084 These aren't needed now that we assume ANSI C.
19085
19086 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
19087 It's more likely to cause problems (due to unsigned overflow)
19088 than to cure them.
19089
19090 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
19091
19092 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
19093
19094 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
19095
19096 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
19097
19098 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
19099
19100 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
19101
19102 GLYPH_CODE_FACE returns EMACS_INT, not int.
19103 * dispextern.h (merge_faces):
19104 * xfaces.c (merge_faces):
19105 * xdisp.c (get_next_display_element, next_element_from_display_vector):
19106 Don't assume EMACS_INT fits in int.
19107
19108 * character.h (CHAR_VALID_P): Remove unused parameter.
19109 * fontset.c, lisp.h, xdisp.c: All uses changed.
19110
19111 * editfns.c (Ftranslate_region_internal): Omit redundant test.
19112
19113 * fns.c (concat): Minor tuning based on overflow analysis.
19114 This doesn't fix any bugs. Use int to hold character, instead
19115 of constantly refetching from Emacs object. Use XFASTINT, not
19116 XINT, for value known to be a character. Don't bother comparing
19117 a single byte to 0400, as it's always less.
19118
19119 * floatfns.c (Fexpt):
19120 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
19121
19122 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
19123 for characters.
19124
19125 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
19126
19127 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
19128 Without this fix, on a 64-bit host (aset S 0 4294967386) would
19129 incorrectly succeed when S was a string, because 4294967386 was
19130 truncated before it was used.
19131
19132 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
19133 Otherwise, an out-of-range integer could cause undefined behavior
19134 on a 64-bit host.
19135
19136 * composite.c: Use int, not EMACS_INT, for characters.
19137 (fill_gstring_body, composition_compute_stop_pos): Use int, not
19138 EMACS_INT, for values that are known to be in character range.
19139 This doesn't fix any bugs but is the usual style inside Emacs and
19140 may generate better code on 32-bit machines.
19141
19142 Make sure a 64-bit char is never passed to ENCODE_CHAR.
19143 This is for reasons similar to the recent CHAR_STRING fix.
19144 * charset.c (Fencode_char): Check that character arg is actually
19145 a character. Pass an int to ENCODE_CHAR.
19146 * charset.h (ENCODE_CHAR): Verify that the character argument is no
19147 wider than 'int', as a compile-time check to prevent future regressions
19148 in this area.
19149
19150 * character.c (char_string): Remove unnecessary casts.
19151
19152 Make sure a 64-bit char is never passed to CHAR_STRING.
19153 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
19154 by silently ignoring the top 32 bits, allowing some values
19155 that were far too large to be valid characters.
19156 * character.h: Include <verify.h>.
19157 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
19158 arguments are no wider than unsigned, as a compile-time check
19159 to prevent future regressions in this area.
19160 * data.c (Faset):
19161 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
19162 (Fsubst_char_in_region):
19163 * fns.c (concat):
19164 * xdisp.c (decode_mode_spec_coding):
19165 Adjust to CHAR_STRING's new requirement.
19166 * editfns.c (Finsert_char, Fsubst_char_in_region):
19167 * fns.c (concat): Check that character args are actually
19168 characters. Without this test, these functions did the wrong
19169 thing with wildly out-of-range values on 64-bit hosts.
19170
19171 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
19172 These casts should not be needed on 32-bit hosts, either.
19173 * keyboard.c (read_char):
19174 * lread.c (Fload): Remove casts to unsigned.
19175
19176 * lisp.h (UNSIGNED_CMP): New macro.
19177 This fixes comparison bugs on 64-bit hosts.
19178 (ASCII_CHAR_P): Use it.
19179 * casefiddle.c (casify_object):
19180 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
19181 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
19182 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
19183 * dispextern.h (FACE_FROM_ID):
19184 * keyboard.c (read_char): Use UNSIGNED_CMP.
19185
19186 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
19187 not to EMACS_INT, to avoid GCC warning.
19188
19189 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
19190
19191 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
19192 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
19193 isn't needed on 32-bit machines.
19194
19195 * buffer.c (Fgenerate_new_buffer_name):
19196 Use EMACS_INT for count, not int.
19197 (advance_to_char_boundary): Return EMACS_INT, not int.
19198
19199 * data.c (Qcompiled_function): Now static.
19200
19201 * window.c (window_body_lines): Now static.
19202
19203 * image.c (gif_load): Rename local to avoid shadowing.
19204
19205 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
19206 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
19207 * alloc.c (make_save_value): Integer argument is now of type
19208 ptrdiff_t, not int.
19209 (mark_object): Use ptrdiff_t, not int.
19210 * lisp.h (pD): New macro.
19211 * print.c (print_object): Use it.
19212
19213 * alloc.c: Use EMACS_INT, not int, to count objects.
19214 (total_conses, total_markers, total_symbols, total_vector_size)
19215 (total_free_conses, total_free_markers, total_free_symbols)
19216 (total_free_floats, total_floats, total_free_intervals)
19217 (total_intervals, total_strings, total_free_strings):
19218 Now EMACS_INT, not int. All uses changed.
19219 (Fgarbage_collect): Compute overall total using a double, so that
19220 integer overflow is less likely to be a problem. Check for overflow
19221 when converting back to an integer.
19222 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
19223 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
19224 These were 'int' variables that could overflow on 64-bit hosts;
19225 they were never used, so remove them instead of repairing them.
19226 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
19227 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
19228 Previously, this ceilinged at INT_MAX, but that doesn't work on
19229 64-bit machines.
19230 (allocate_pseudovector): Don't use EMACS_INT when int would do.
19231
19232 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
19233 (allocate_vectorlike): Check for ptrdiff_t overflow.
19234 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
19235 when a (possibly-narrower) signed value would do just as well.
19236 We prefer using signed arithmetic, to avoid comparison confusion.
19237
19238 * alloc.c: Catch some string size overflows that we were missing.
19239 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
19240 for convenience in STRING_BYTES_MAX.
19241 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
19242 The definition here is exact; the one in lisp.h was approximate.
19243 (allocate_string_data): Check for string overflow. This catches
19244 some instances we weren't catching before. Also, it catches
19245 size_t overflow on (unusual) hosts where SIZE_MAX <= min
19246 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
19247 and ptrdiff_t and EMACS_INT are both 64 bits.
19248
19249 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
19250 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
19251 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
19252
19253 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
19254
19255 * alloc.c (Fmake_string): Check for out-of-range init.
19256
19257 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
19258
19259 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
19260
19261 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
19262
19263 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
19264 xg_get_default_scrollbar_width.
19265
19266 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
19267 (int_gtk_range_get_value): Move to the scroll bar part of the file.
19268 (style_changed_cb): Call update_theme_scrollbar_width and call
19269 x_set_scroll_bar_default_width and xg_frame_set_char_size for
19270 all frames (Bug#8505).
19271 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
19272 Call gtk_window_set_resizable if HAVE_GTK3.
19273 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
19274 and height if HAVE_GTK3 (Bug#8505).
19275 (scroll_bar_width_for_theme): New variable.
19276 (update_theme_scrollbar_width): New function.
19277 (xg_get_default_scrollbar_width): Move code to
19278 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
19279 (xg_initialize): Call update_theme_scrollbar_width.
19280
19281 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
19282
19283 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
19284
19285 2011-06-12 Martin Rudalics <rudalics@gmx.at>
19286
19287 * frame.c (make_frame): Call other_buffer_safely instead of
19288 other_buffer.
19289
19290 * window.c (temp_output_buffer_show): Call display_buffer with
19291 second argument Vtemp_buffer_show_specifiers and reset latter
19292 immediately after the call.
19293 (Vtemp_buffer_show_specifiers): New variable.
19294 (auto_window_vscroll_p, next_screen_context_lines)
19295 (Vscroll_preserve_screen_position): Remove leading asterisks from
19296 doc-strings.
19297
19298 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
19299
19300 Fix minor problems found by GCC 4.6.0 static checking.
19301 * buffer.c (Qclone_number): Remove for now, as it's unused.
19302 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
19303 (record_buffer): Remove unused local.
19304 * frame.c (other_visible_frames, frame_buffer_list): Now static.
19305 (set_frame_buffer_list): Remove; unused.
19306 * frame.h (other_visible_frames): Remove decl.
19307 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
19308 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
19309 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
19310 if HAVE_GPM.
19311 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
19312 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
19313 Define only if HAVE_GPM.
19314 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
19315 (update_hints_inhibit): Remove; never set. All uses removed.
19316 * widgetprv.h (emacsFrameClassRec): Remove decl.
19317 * window.c (delete_deletable_window): Now returns void, since it
19318 wasn't returning anything.
19319 (compare_window_configurations): Remove unused locals.
19320 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
19321 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
19322 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
19323 the same widths as pointers. This follows up on the 2011-05-06 patch.
19324 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
19325 * xterm.h: Likewise.
19326 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
19327
19328 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
19329
19330 * makefile.w32-in: Update dependencies.
19331 (LISP_H): Add lib/intprops.h.
19332
19333 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
19334
19335 * image.c (gif_load): Add animation frame delay to the metadata.
19336 (syms_of_image): Use DEFSYM. New symbol `delay'.
19337
19338 2011-06-11 Martin Rudalics <rudalics@gmx.at>
19339
19340 * window.c (delete_deletable_window): Re-add.
19341 (Fset_window_configuration): Rewrite to handle dead buffers and
19342 consequently deletable windows.
19343 (window_tree, Fwindow_tree): Remove. Supply functionality in
19344 window.el.
19345 (compare_window_configurations): Simplify code.
19346
19347 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
19348
19349 * image.c (imagemagick_load_image): Fix type mismatch.
19350 (Fimagemagick_types): Likewise.
19351
19352 * window.h (replace_buffer_in_windows): Declare.
19353
19354 2011-06-11 Martin Rudalics <rudalics@gmx.at>
19355
19356 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
19357 Qclone_number. Remove external declaration of Qdelete_window.
19358 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
19359 code.
19360 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
19361 Run Qbuffer_list_update_hook if allowed.
19362 (Fother_buffer): Rewrite doc-string. Major rewrite for new
19363 buffer list implementation.
19364 (other_buffer_safely): New function.
19365 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
19366 calls to replace_buffer_in_windows and
19367 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
19368 if allowed.
19369 (record_buffer): Inhibit quitting and rewrite using quittable
19370 functions. Run Qbuffer_list_update_hook if allowed.
19371 (Frecord_buffer, Funrecord_buffer): New functions.
19372 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
19373 Move switch-to-buffer to window.el.
19374 (bury-buffer): Move to window.el.
19375 (Vbuffer_list_update_hook): New variable.
19376
19377 * lisp.h (other_buffer_safely): Add prototype in buffer.c
19378 section.
19379
19380 * window.h (resize_frame_windows): Move up in code.
19381 (Fwindow_frame): Remove EXFUN.
19382 (replace_buffer_in_all_windows): Remove prototype.
19383 (replace_buffer_in_windows_safely): Add prototype.
19384
19385 * window.c: Declare Qdelete_window static again. Move down
19386 declaration of select_count.
19387 (Fnext_window, Fprevious_window): Rewrite doc-strings.
19388 (Fother_window): Move to window.el.
19389 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
19390 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
19391 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
19392 window.el.
19393 (replace_buffer_in_windows): Implement by calling
19394 Qreplace_buffer_in_windows.
19395 (replace_buffer_in_all_windows): Remove with some functionality
19396 moved into replace_buffer_in_windows_safely.
19397 (replace_buffer_in_windows_safely): New function.
19398 (select_window_norecord, select_frame_norecord): Move in front
19399 of run_window_configuration_change_hook. Remove now obsolete
19400 declarations.
19401 (Fset_window_buffer): Rewrite doc-string.
19402 Call Qrecord_window_buffer.
19403 (keys_of_window): Move binding for other-window to window.el.
19404
19405 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
19406
19407 * dispextern.h (struct image): Replace data member, whose int_val
19408 and ptr_val fields were not used by anything, with a single
19409 lisp_val object.
19410
19411 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
19412 (gif_clear_image, gif_load, imagemagick_load_image)
19413 (gs_clear_image, gs_load): Callers changed.
19414
19415 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
19416
19417 * buffer.h: Include <time.h>, for time_t.
19418 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
19419
19420 Fix minor problems found by static checking.
19421
19422 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
19423
19424 Make identifiers static if they are not used in other modules.
19425 * data.c (Qcompiled_function, Qframe, Qvector):
19426 * image.c (QimageMagick, Qsvg):
19427 * minibuf.c (Qmetadata):
19428 * window.c (resize_window_check, resize_root_window): Now static.
19429 * window.h (resize_window_check, resize_root_window): Remove decls.
19430
19431 * window.c (window_deletion_count, delete_deletable_window):
19432 Remove; unused.
19433 (window_body_lines): Now static.
19434 (Fdelete_other_windows_internal): Mark vars as initialized.
19435 Make sure 'resize_failed' is initialized.
19436 (run_window_configuration_change_hook): Rename local to avoid shadowing.
19437 (resize_window_apply): Remove unused local.
19438 * window.h (delete_deletable_window): Remove decl.
19439
19440 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
19441 (imagemagick_load_image): Fix pointer signedness problem by changing
19442 last arg from unsigned char * to char *. All uses changed.
19443 Also, fix a local for similar reasons.
19444 Remove unused locals. Remove locals to avoid shadowing.
19445 (fn_rsvg_handle_free): Remove; unused.
19446 (svg_load, svg_load_image): Fix pointer signedness problem.
19447 (imagemagick_load_image): Don't use garbage pointer image_wand.
19448
19449 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
19450
19451 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
19452
19453 * image.c (gif_load): Fix omitted cast error introduced by
19454 2011-06-06 change.
19455
19456 2011-06-10 Martin Rudalics <rudalics@gmx.at>
19457
19458 * window.h (resize_proportionally, orig_total_lines)
19459 (orig_top_line): Remove from window structure.
19460 (set_window_height, set_window_width, change_window_heights)
19461 (Fdelete_window): Remove prototypes.
19462 (resize_frame_windows): Remove duplicate declaration.
19463
19464 2011-06-10 Eli Zaretskii <eliz@gnu.org>
19465
19466 * window.h (resize_frame_windows, resize_window_check)
19467 (delete_deletable_window, resize_root_window)
19468 (resize_frame_windows): Declare prototypes.
19469
19470 * window.c (resize_window_apply): Make definition be "static" to
19471 match the prototype.
19472
19473 2011-06-10 Martin Rudalics <rudalics@gmx.at>
19474
19475 * window.c: Remove declarations of Qwindow_size_fixed,
19476 window_min_size_1, window_min_size_2, window_min_size,
19477 size_window, window_fixed_size_p, enlarge_window, delete_window.
19478 Remove static from declaration of Qdelete_window, it's
19479 temporarily needed by Fbury_buffer.
19480 (replace_window): Don't assign orig_top_line and
19481 orig_total_lines.
19482 (Fdelete_window, delete_window): Remove. Window deletion is
19483 handled by window.el.
19484 (window_loop): Remove DELETE_OTHER_WINDOWS case.
19485 Replace Fdelete_window calls with calls to Qdelete_window.
19486 (Fdelete_other_windows): Remove. Deleting other windows is
19487 handled by window.el.
19488 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
19489 handled in window.el.
19490 (window_min_size_2, window_min_size_1, window_min_size): Remove.
19491 Window minimum sizes are handled in window.el.
19492 (shrink_windows, size_window, set_window_height)
19493 (set_window_width, change_window_heights, window_height)
19494 (window_width, CURBEG, CURSIZE, enlarge_window)
19495 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
19496 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
19497 handled in window.el.
19498 (make_dummy_parent): Rename to make_parent_window and give it a
19499 second argument horflag.
19500 (make_window): Don't set resize_proportionally any more.
19501 (Fsplit_window): Remove. Windows are split in window.el.
19502 (save_restore_action, save_restore_orig_size)
19503 (shrink_window_lowest_first, save_restore_orig_size): Remove.
19504 Resize mini windows in window.el.
19505 (grow_mini_window, shrink_mini_window): Implement by calling
19506 Qresize_root_window_vertically, resize_window_check and
19507 resize_window_apply.
19508 (saved_window, Fset_window_configuration, save_window_save):
19509 Do not handle orig_top_line, orig_total_lines, and
19510 resize_proportionally.
19511 (window_min_height, window_min_width): Move to window.el.
19512 (keys_of_window): Move bindings for delete-other-windows,
19513 split-window, delete-window and enlarge-window to window.el.
19514
19515 * buffer.c: Temporarily extern Qdelete_window.
19516 (Fbury_buffer): Temporarily call Qdelete_window instead of
19517 Fdelete_window (Fbury_buffer will move to window.el soon).
19518
19519 * frame.c (set_menu_bar_lines_1): Remove code handling
19520 orig_top_line and orig_total_lines.
19521
19522 * dispnew.c (adjust_frame_glyphs_initially): Don't use
19523 set_window_height but set heights directly.
19524 (change_frame_size_1): Use resize_frame_windows.
19525
19526 * xdisp.c (init_xdisp): Don't use set_window_height but set
19527 heights directly.
19528
19529 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
19530 Use resize_frame_windows instead of change_window_heights and run
19531 run_window_configuration_change_hook.
19532
19533 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
19534 instead of change_window_heights and run
19535 run_window_configuration_change_hook.
19536
19537 2011-06-09 Martin Rudalics <rudalics@gmx.at>
19538
19539 * window.c (replace_window): Rename second argument REPLACEMENT to
19540 NEW. New third argument SETFLAG. Rewrite.
19541 (delete_window, make_dummy_parent): Call replace_window with
19542 third argument 1.
19543 (window_list_1): Move down in code.
19544 (run_window_configuration_change_hook): Move set_buffer part
19545 before select_frame_norecord part in order to unwind correctly.
19546 Rename count1 to count.
19547 (recombine_windows, delete_deletable_window, resize_root_window)
19548 (Fdelete_other_windows_internal)
19549 (Frun_window_configuration_change_hook, make_parent_window)
19550 (resize_window_check, resize_window_apply, Fresize_window_apply)
19551 (resize_frame_windows, Fsplit_window_internal)
19552 (Fdelete_window_internal, Fresize_mini_window_internal):
19553 New functions.
19554 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
19555
19556 2011-06-08 Martin Rudalics <rudalics@gmx.at>
19557
19558 * window.h (window): Add some new members to window structure -
19559 normal_lines, normal_cols, new_total, new_normal, clone_number,
19560 splits, nest, prev_buffers, next_buffers.
19561 (WINDOW_TOTAL_SIZE): Move here from window.c.
19562 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
19563
19564 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
19565 Remove.
19566 (make_dummy_parent): Set new members of windows structure.
19567 (make_window): Move down in code. Handle new members of window
19568 structure.
19569 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
19570 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
19571 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
19572 (Fset_window_prev_buffers, Fwindow_next_buffers)
19573 (Fset_window_next_buffers, Fset_window_clone_number):
19574 New functions.
19575 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
19576 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
19577 Doc-string fixes.
19578 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
19579 Argument WINDOW can be now internal window too.
19580 (Fwindow_use_time): Move up in code.
19581 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
19582 Rewrite doc-string.
19583 (Fset_window_configuration, saved_window)
19584 (Fcurrent_window_configuration, save_window_save): Handle new
19585 members of window structure.
19586 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
19587 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
19588 (syms_of_window): New Lisp objects Qrecord_window_buffer,
19589 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
19590 Qget_mru_window, Qresize_root_window,
19591 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
19592 Qauto_buffer_name; staticpro them.
19593
19594 2011-06-07 Martin Rudalics <rudalics@gmx.at>
19595
19596 * window.c (Fwindow_total_size, Fwindow_left_column)
19597 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
19598 (Fwindow_list_1): New functions.
19599 (window_box_text_cols): Replace with window_body_cols.
19600 (Fwindow_width, Fscroll_left, Fscroll_right):
19601 Use window_body_cols instead of window_box_text_cols.
19602 (delete_window, Fset_window_configuration):
19603 Call delete_all_subwindows with window as argument.
19604 (delete_all_subwindows): Take a window as argument and not a
19605 structure. Rewrite.
19606 (window_loop): Remove handling of GET_LRU_WINDOW and
19607 GET_LARGEST_WINDOW.
19608 (Fget_lru_window, Fget_largest_window): Move to window.el.
19609
19610 * window.h: Extern window_body_cols instead of
19611 window_box_text_cols. delete_all_subwindows now takes a
19612 Lisp_Object as argument.
19613
19614 * indent.c (compute_motion, Fcompute_motion):
19615 Use window_body_cols instead of window_box_text_cols.
19616
19617 * frame.c (delete_frame): Call delete_all_subwindows with root
19618 window as argument.
19619
19620 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
19621
19622 * fns.c (Fputhash): Document return value.
19623
19624 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
19625
19626 * image.c (gif_load): Implement gif89a spec "no disposal" method.
19627
19628 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19629
19630 Cons<->int and similar integer overflow fixes (Bug#8794).
19631
19632 Check for overflow when converting integer to cons and back.
19633 * charset.c (Fdefine_charset_internal, Fdecode_char):
19634 Use cons_to_unsigned to catch overflow.
19635 (Fencode_char): Use INTEGER_TO_CONS.
19636 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
19637 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
19638 * data.c (long_to_cons, cons_to_long): Remove.
19639 (cons_to_unsigned, cons_to_signed): New functions.
19640 These signal an error for invalid or out-of-range values.
19641 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
19642 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
19643 * font.c (Ffont_variation_glyphs):
19644 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
19645 * lisp.h: Include <intprops.h>.
19646 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
19647 (cons_to_signed, cons_to_unsigned): New decls.
19648 (long_to_cons, cons_to_long): Remove decls.
19649 * undo.c (record_first_change): Use INTEGER_TO_CONS.
19650 (Fprimitive_undo): Use CONS_TO_INTEGER.
19651 * xfns.c (Fx_window_property): Likewise.
19652 * xselect.c: Include <limits.h>.
19653 (x_own_selection, selection_data_to_lisp_data):
19654 Use INTEGER_TO_CONS.
19655 (x_handle_selection_request, x_handle_selection_clear)
19656 (x_get_foreign_selection, Fx_disown_selection_internal)
19657 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
19658 (lisp_data_to_selection_data): Use cons_to_unsigned.
19659 (x_fill_property_data): Use cons_to_signed.
19660 Report values out of range.
19661
19662 Check for buffer and string overflow more precisely.
19663 * buffer.h (BUF_BYTES_MAX): New macro.
19664 * lisp.h (STRING_BYTES_MAX): New macro.
19665 * alloc.c (Fmake_string):
19666 * character.c (string_escape_byte8):
19667 * coding.c (coding_alloc_by_realloc):
19668 * doprnt.c (doprnt):
19669 * editfns.c (Fformat):
19670 * eval.c (verror):
19671 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
19672 since they may not be the same number.
19673 * editfns.c (Finsert_char):
19674 * fileio.c (Finsert_file_contents):
19675 Likewise for BUF_BYTES_MAX.
19676
19677 * image.c: Use ptrdiff_t, not int, for sizes.
19678 (slurp_file): Switch from int to ptrdiff_t.
19679 All uses changed.
19680 (slurp_file): Check that file size fits in both size_t (for
19681 malloc) and ptrdiff_t (for sanity and safety).
19682
19683 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
19684 if b->modtime has its maximal value.
19685
19686 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
19687
19688 Don't assume time_t can fit into int.
19689 * buffer.h (struct buffer.modtime): Now time_t, not int.
19690 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
19691 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
19692
19693 Minor fixes for signed vs unsigned integers.
19694 * character.h (MAYBE_UNIFY_CHAR):
19695 * charset.c (maybe_unify_char):
19696 * keyboard.c (read_char, reorder_modifiers):
19697 XINT -> XFASTINT, since the integer must be nonnegative.
19698 * ftfont.c (ftfont_spec_pattern):
19699 * keymap.c (access_keymap, silly_event_symbol_error):
19700 XUINT -> XFASTINT, since the integer must be nonnegative.
19701 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
19702 since it makes no difference and we prefer signed.
19703 * keyboard.c (record_char): Use XUINT when all the neighbors do.
19704 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
19705 nonnegative.
19706
19707 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
19708
19709 * window.h (Fwindow_frame): Declare.
19710
19711 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19712
19713 * alloc.c: Simplify handling of large-request failures (Bug#8800).
19714 (SPARE_MEMORY): Always define.
19715 (LARGE_REQUEST): Remove.
19716 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
19717
19718 2011-06-06 Martin Rudalics <rudalics@gmx.at>
19719
19720 * lisp.h: Move EXFUNS for Fframe_root_window,
19721 Fframe_first_window and Fset_frame_selected_window to window.h.
19722
19723 * window.h: Move EXFUNS for Fframe_root_window,
19724 Fframe_first_window and Fset_frame_selected_window here from
19725 lisp.h.
19726
19727 * frame.c (Fwindow_frame, Fframe_first_window)
19728 (Fframe_root_window, Fframe_selected_window)
19729 (Fset_frame_selected_window): Move to window.c.
19730 (Factive_minibuffer_window): Move to minibuf.c.
19731 (Fother_visible_frames_p): New function.
19732
19733 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
19734
19735 * window.c (decode_window, decode_any_window): Move up in code.
19736 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
19737 (inhibit_frame_unsplittable): Remove unused variable.
19738 (Fwindow_buffer): Move up and rewrite doc-string.
19739 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
19740 (Fwindow_prev): New functions.
19741 (Fwindow_frame): Move here from frame.c. Accept any window as
19742 argument.
19743 (Fframe_root_window, Fframe_first_window)
19744 (Fframe_selected_window): Move here from frame.c. Accept frame
19745 or arbitrary window as argument. Update doc-strings.
19746 (Fminibuffer_window): Move up in code.
19747 (Fwindow_minibuffer_p): Move up in code and simplify.
19748 (Fset_frame_selected_window): Move here from frame.c.
19749 Marginal rewrite.
19750 (Fselected_window, select_window, Fselect_window): Move up in
19751 code. Minor doc-string fixes.
19752
19753 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19754
19755 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
19756 Do not assume that spare memory exists; that assumption is valid
19757 only if SYSTEM_MALLOC.
19758 (LARGE_REQUEST): New macro, so that the issue of large requests
19759 is separated from the issue of spare memory.
19760
19761 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
19762
19763 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
19764 format. (Bug#8806)
19765
19766 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
19767
19768 * xfns.c (x_set_scroll_bar_default_width): Move declarations
19769 before statements.
19770
19771 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
19772
19773 * gtkutil.c (xg_get_default_scrollbar_width): New function.
19774
19775 * gtkutil.h: Declare xg_get_default_scrollbar_width.
19776
19777 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
19778 min width by calling x_set_scroll_bar_default_width (Bug#8505).
19779
19780 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
19781
19782 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
19783
19784 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
19785
19786 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
19787 (x_clipboard_manager_save): Add return value.
19788 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
19789 New error handlers.
19790 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
19791 Obey Vx_select_enable_clipboard_manager. Catch errors in
19792 x_clipboard_manager_save (Bug#8779).
19793 (Vx_select_enable_clipboard_manager): New variable.
19794 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
19795
19796 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
19797
19798 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
19799
19800 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19801
19802 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
19803 in the current matrix if keep_current_p is non-zero.
19804
19805 2011-06-04 Eli Zaretskii <eliz@gnu.org>
19806
19807 * bidi.c (bidi_level_of_next_char): Fix last change.
19808
19809 2011-06-03 Eli Zaretskii <eliz@gnu.org>
19810
19811 Support bidi reordering of text covered by display properties.
19812
19813 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
19814 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
19815 (bidi_cache_search, bidi_cache_iterator_state)
19816 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
19817 (bidi_level_of_next_char, bidi_move_to_visually_next):
19818 Support character positions inside a run of characters covered by a
19819 display string.
19820 (bidi_paragraph_init, bidi_resolve_explicit_1)
19821 (bidi_level_of_next_char): Call bidi_fetch_char and
19822 bidi_fetch_char_advance instead of FETCH_CHAR and
19823 FETCH_CHAR_ADVANCE.
19824 (bidi_init_it): Initialize new members.
19825 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
19826 definitions.
19827 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
19828 instead of using explicit *_CHAR codes.
19829 (bidi_resolve_explicit, bidi_resolve_weak):
19830 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
19831 bidirectional text is supported only in multibyte buffers.
19832 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
19833 it to initialize the frame_window_p member of struct bidi_it.
19834 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
19835 (bidi_resolve_explicit, bidi_resolve_weak)
19836 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
19837 bidi_it->nchars is non-positive.
19838 (bidi_level_of_next_char): Don't try to lookup the cache for the
19839 next/previous character if nothing is cached there yet, or if we
19840 were just reseat()'ed to a new position.
19841
19842 * xdisp.c (set_cursor_from_row): Set start and stop points
19843 according to the row's direction when priming the loop that looks
19844 for the glyph on which to display cursor.
19845 (single_display_spec_intangible_p): Function deleted.
19846 (display_prop_intangible_p): Reimplement to call
19847 handle_display_spec instead of single_display_spec_intangible_p.
19848 Accept 3 additional arguments needed by handle_display_spec.
19849 This fixes incorrect cursor motion across display property with complex
19850 values: lists, `(when COND...)' forms, etc.
19851 (single_display_spec_string_p): Support property values that are
19852 lists with the argument STRING its top-level element.
19853 (display_prop_string_p): Fix the condition for processing a
19854 property that is a list to be consistent with handle_display_spec.
19855 (handle_display_spec): New function, refactored from the
19856 last portion of handle_display_prop.
19857 (compute_display_string_pos): Accept additional argument
19858 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
19859 value of a `display' property is a "replacing spec".
19860 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
19861 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
19862 the display property, but just return a value indicating whether
19863 the display property will replace the characters it covers.
19864 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
19865 frame_window_p members of struct bidi_it.
19866 (compute_display_string_pos, compute_display_string_end):
19867 New functions.
19868 (push_it): Accept second argument POSITION, where pop_it should
19869 jump to continue iteration.
19870 (reseat_1): Initialize bidi_it.disp_pos.
19871
19872 * keyboard.c (adjust_point_for_property): Adjust the call to
19873 display_prop_intangible_p to its new signature.
19874
19875 * dispextern.h (struct bidi_it): New member frame_window_p.
19876 (bidi_init_it): Update prototypes.
19877 (display_prop_intangible_p): Update prototype.
19878 (compute_display_string_pos, compute_display_string_end):
19879 Declare prototypes.
19880 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19881 EMACS_INT.
19882
19883 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
19884
19885 Malloc failure behavior now depends on size of allocation.
19886 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
19887 * lisp.h: Change signatures accordingly.
19888 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
19889 All callers changed. (Bug#8762)
19890
19891 * gnutls.c: Use Emacs's memory allocators.
19892 Without this change, the gnutls library would invoke malloc etc.
19893 directly, which causes problems on non-SYNC_INPUT hosts, and which
19894 runs afoul of improving memory_full behavior. (Bug#8761)
19895 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
19896 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
19897 xfree instead of the default malloc, realloc, free.
19898 (Fgnutls_boot): No need to check for memory allocation failure,
19899 since xmalloc does that for us.
19900
19901 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
19902 * category.c (hash_get_category_set):
19903 * ccl.c (ccl_driver):
19904 * charset.c (Fdefine_charset_internal):
19905 * charset.h (struct charset.hash_index):
19906 * composite.c (get_composition_id, gstring_lookup_cache)
19907 (composition_gstring_put_cache):
19908 * composite.h (struct composition.hash_index):
19909 * dispextern.h (struct image.hash):
19910 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19911 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19912 (hashfn_equal, hashfn_user_defined, make_hash_table)
19913 (maybe_resize_hash_table, hash_lookup, hash_put)
19914 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19915 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19916 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19917 * image.c (make_image, search_image_cache, lookup_image)
19918 (xpm_put_color_table_h):
19919 * lisp.h (struct Lisp_Hash_Table):
19920 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19921 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19922 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19923 * alloc.c (allocate_vectorlike):
19924 Check for overflow in vector size calculations.
19925 * ccl.c (ccl_driver):
19926 Check for overflow when converting EMACS_INT to int.
19927 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19928 need to be updated by these changes.
19929 * fns.c (make_hash_table, maybe_resize_hash_table):
19930 Check for integer overflow with large hash tables.
19931 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19932 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19933 (SXHASH_REDUCE): New macro.
19934 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19935 Use it instead of discarding useful hash info with large hash values.
19936 (sxhash_float): New function.
19937 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19938 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19939 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19940 Rewrite to use FIXNUM_BITS, as this simplifies things.
19941 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19942 Adjust signatures to match updated version of code.
19943 (consing_since_gc): Now EMACS_INT, since a single hash table can
19944 use more than INT_MAX bytes.
19945
19946 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19947
19948 Make it possible to build with GCC-4.6+ -O2 -flto.
19949
19950 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19951
19952 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19953
19954 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19955 Call minibuffer-inactive-mode.
19956
19957 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19958
19959 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19960 Update dependencies.
19961
19962 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19963
19964 * data.c (init_data): Remove code for UTS, this system is not
19965 supported anymore.
19966
19967 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19968
19969 Don't force ./temacs to start in terminal mode.
19970
19971 * frame.c (make_initial_frame): Initialize faces in all cases, not
19972 only when CANNOT_DUMP is defined.
19973 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19974
19975 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19976
19977 * dispnew.c (add_window_display_history): Use const for the string
19978 pointer. Remove declaration, not needed.
19979
19980 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19981
19982 Use 'inline', not 'INLINE'.
19983 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19984 * alloc.c, fontset.c (INLINE): Remove.
19985 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19986 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19987 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19988 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19989 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19990
19991 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19992
19993 Make it possible to run ./temacs.
19994
19995 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19996 syms_of_callproc does the same thing. Remove test for
19997 "initialized", do it in the caller.
19998 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19999
20000 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
20001
20002 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
20003 (read_minibuf): Use get_minibuffer.
20004 (syms_of_minibuf): Use DEFSYM.
20005 (Qmetadata): New var.
20006 * data.c (Qbuffer): Don't make it static.
20007 (syms_of_data): Use DEFSYM.
20008
20009 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
20010
20011 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
20012 (CCL_CODE_MIN): New macro.
20013
20014 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
20015
20016 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
20017
20018 * eval.c (Qdebug): Now static.
20019 * lisp.h (Qdebug): Remove decl. This reverts a part of the
20020 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
20021 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
20022
20023 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
20024
20025 * image.c: Various fixes to ImageMagick code comments.
20026 (Fimagemagick_types): Doc fix.
20027
20028 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
20029
20030 Minor fixes prompted by GCC 4.6.0 warnings.
20031
20032 * xselect.c (converted_selections, conversion_fail_tag): Now static.
20033
20034 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
20035 (x_clipboard_manager_save_all): Move extern decl to ...
20036 * xterm.h: ... here, so that it can be checked for consistency.
20037
20038 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
20039
20040 * xselect.c (x_clipboard_manager_save_frame)
20041 (x_clipboard_manager_save_all): New functions.
20042 (Fx_clipboard_manager_save): Lisp function deleted.
20043
20044 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
20045 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
20046
20047 * xterm.h: Update prototype.
20048
20049 2011-05-28 William Xu <william.xwl@gmail.com>
20050
20051 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
20052 exiting (Bug#8239).
20053
20054 2011-05-28 Jim Meyering <meyering@redhat.com>
20055
20056 Avoid a sign-extension bug in crypto_hash_function.
20057 * fns.c (to_uchar): Define.
20058 (crypto_hash_function): Use it to convert some newly-signed
20059 variables to unsigned, to avoid sign-extension bugs. For example,
20060 without this change, (md5 "truc") would evaluate to
20061 45723a2aff78ff4fff7fff1114760e62 rather than the expected
20062 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
20063 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
20064
20065 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
20066
20067 Integer overflow fixes.
20068
20069 * dbusbind.c: Serial number integer overflow fixes.
20070 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
20071 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
20072 to hold a serial number that is too large for a fixnum.
20073 (Fdbus_method_return_internal, Fdbus_method_error_internal):
20074 Check for serial numbers out of range. Decode any serial number
20075 that was so large that it became a float. (Bug#8722)
20076
20077 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
20078 (Fdbus_call_method, Fdbus_call_method_asynchronously):
20079 Use XFASTINT rather than XUINT when numbers are nonnegative.
20080 (xd_append_arg, Fdbus_method_return_internal):
20081 (Fdbus_method_error_internal): Likewise. Also, for unsigned
20082 arguments, check that Lisp number is nonnegative, rather than
20083 silently wrapping negative numbers around. (Bug#8722)
20084 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
20085 (Bug#8722)
20086
20087 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
20088
20089 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
20090
20091 ccl: Add integer overflow checks.
20092 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
20093 (IN_INT_RANGE): New macros.
20094 (ccl_driver): Use them to check for integer overflow when
20095 decoding a CCL program. Many of the new checks are whether XINT (x)
20096 fits in int; it doesn't always, on 64-bit hosts. The new version
20097 doesn't catch all possible integer overflows, but it's an
20098 improvement. (Bug#8719)
20099
20100 * alloc.c (make_event_array): Use XINT, not XUINT.
20101 There's no need for unsigned here.
20102
20103 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
20104 This follows up to the 2011-05-06 change that substituted uintptr_t
20105 for EMACS_INT. This case wasn't caught back then.
20106
20107 Rework Fformat to avoid integer overflow issues.
20108 * editfns.c: Include <float.h> unconditionally, as it's everywhere
20109 now (part of C89). Include <verify.h>.
20110 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
20111 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
20112 (Fformat): Avoid the prepass trying to compute sizes; it was only
20113 approximate and thus did not catch overflow reliably. Instead, walk
20114 through the format just once, formatting and computing sizes as we go,
20115 checking for integer overflow at every step, and allocating a larger
20116 buffer as needed. Keep track separately whether the format is
20117 multibyte. Keep only the most-recently calculated precision, rather
20118 than them all. Record whether each argument has been converted to
20119 string. Use EMACS_INT, not int, for byte and char and arg counts.
20120 Support field widths and precisions larger than INT_MAX. Avoid
20121 sprintf's undefined behavior with conversion specifications such as %#d
20122 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
20123 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
20124 formatting out-of-range floating point numbers with int
20125 formats. (Bug#8668)
20126
20127 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
20128
20129 * data.c: Avoid integer truncation in expressions involving floats.
20130 * data.c: Include <intprops.h>.
20131 (arith_driver): When there's an integer overflow in an expression
20132 involving floating point, convert the integers to floating point
20133 so that the resulting value does not suffer from catastrophic
20134 integer truncation. For example, on a 64-bit host (* 4
20135 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
20136 Do not rely on undefined behavior after integer overflow.
20137
20138 merge count_size_as_multibyte, parse_str_to_multibyte
20139 * character.c, character.h (count_size_as_multibyte):
20140 Rename from parse_str_to_multibyte; all uses changed.
20141 Check for integer overflow.
20142 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
20143 since it's now a duplicate of the other. This is more of
20144 a character than a buffer op, so better that it's in character.c.
20145 * fns.c, print.c: Adjust to above changes.
20146
20147 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
20148
20149 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
20150
20151 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
20152
20153 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
20154 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
20155 (x_clipboard_manager_save): Now static.
20156 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
20157
20158 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
20159 (crypto_hash_function): Now static.
20160 Fix pointer signedness problems. Avoid unnecessary initializations.
20161
20162 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
20163
20164 * termhooks.h (Vselection_alist): Make it terminal-local.
20165
20166 * terminal.c (create_terminal): Initialize it.
20167
20168 * xselect.c: Support for clipboard managers.
20169 (Vselection_alist): Move to termhooks.h as terminal-local var.
20170 (LOCAL_SELECTION): New macro.
20171 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
20172 (symbol_to_x_atom): Remove gratuitous arg.
20173 (x_handle_selection_request, lisp_data_to_selection_data)
20174 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
20175 (x_own_selection, x_get_local_selection, x_convert_selection):
20176 New arg, specifying work frame. Use terminal-local Vselection_alist.
20177 (some_frame_on_display): Delete unused function.
20178 (Fx_own_selection_internal, Fx_get_selection_internal)
20179 (Fx_disown_selection_internal, Fx_selection_owner_p)
20180 (Fx_selection_exists_p): New optional frame arg.
20181 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
20182 (x_handle_selection_clear): Don't treat other terminals with the
20183 same keyboard specially. Use the terminal-local Vselection_alist.
20184 (x_clear_frame_selections): Use Frun_hook_with_args.
20185
20186 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
20187
20188 * xterm.h: Add support for those atoms.
20189
20190 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
20191
20192 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
20193 (converted_selections, conversion_fail_tag): New global variables.
20194 (x_selection_request_lisp_error): Free the above.
20195 (x_get_local_selection): Remove unnecessary code.
20196 (x_reply_selection_request): Args changed; handle arbitrary array
20197 of converted selections stored in converted_selections.
20198 Separate the XChangeProperty and SelectionNotify steps.
20199 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
20200 (x_convert_selection): New function.
20201 (x_handle_selection_event): Simplify.
20202 (x_get_foreign_selection): Don't ignore incoming requests while
20203 waiting for an answer; this will fail when we implement
20204 SAVE_TARGETS, and seems unnecessary anyway.
20205 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
20206 (Vx_sent_selection_functions): Doc fix.
20207
20208 2011-05-26 Leo Liu <sdl.web@gmail.com>
20209
20210 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
20211
20212 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20213
20214 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
20215
20216 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
20217 for fringe update if it has periodic bitmap.
20218 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
20219 and fringe_bitmap_periodic_p.
20220
20221 * fringe.c (get_fringe_bitmap_data): New function.
20222 (draw_fringe_bitmap_1, update_window_fringes): Use it.
20223 (update_window_fringes): Record periodicity of fringe bitmap in glyph
20224 row. Mark glyph row for fringe update if periodicity changed.
20225
20226 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
20227 for fringe update unless it has periodic bitmap.
20228
20229 2011-05-25 Kenichi Handa <handa@m17n.org>
20230
20231 * xdisp.c (get_next_display_element): Set correct it->face_id for
20232 a static composition.
20233
20234 2011-05-24 Leo Liu <sdl.web@gmail.com>
20235
20236 * deps.mk (fns.o):
20237 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
20238
20239 * fns.c (crypto_hash_function, Fsha1): New function.
20240 (Fmd5): Use crypto_hash_function.
20241 (syms_of_fns): Add Ssha1.
20242
20243 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
20244
20245 * gnutls.c: Remove unused macros.
20246 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
20247 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
20248 Remove macros that are defined and never used.
20249 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
20250
20251 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
20252
20253 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
20254 (Fx_get_selection_internal): Minor cleanup.
20255 (Fx_own_selection_internal): Rename arguments for consistency with
20256 select.el.
20257
20258 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
20259
20260 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
20261
20262 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
20263
20264 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
20265
20266 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20267
20268 * dispnew.c (scrolling_window): Don't exclude the case that the
20269 last enabled row in the desired matrix touches the bottom boundary.
20270
20271 2011-05-21 Glenn Morris <rgm@gnu.org>
20272
20273 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
20274 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
20275 and add some more files.
20276
20277 2011-05-20 Eli Zaretskii <eliz@gnu.org>
20278
20279 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
20280 report_file_error introduced by the change from 2011-05-07.
20281
20282 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
20283
20284 * systime.h (Time): Define only if emacs is defined.
20285 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
20286 where the include path doesn't have X11/X.h by default. See
20287 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
20288
20289 2011-05-20 Kenichi Handa <handa@m17n.org>
20290
20291 * composite.c (find_automatic_composition): Fix previous change.
20292
20293 2011-05-20 Glenn Morris <rgm@gnu.org>
20294
20295 * lisp.mk: New file, split from Makefile.in.
20296 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
20297 (shortlisp): Remove.
20298 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
20299
20300 2011-05-19 Glenn Morris <rgm@gnu.org>
20301
20302 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
20303 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
20304 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
20305 (lisp): Set the order to that of loadup.el.
20306 (shortlisp): Make it a copy of $lisp.
20307 (SOME_MACHINE_LISP): Remove.
20308 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
20309 Use just $shortlisp, not $SOME_MACHINE_LISP too.
20310
20311 2011-05-18 Kenichi Handa <handa@m17n.org>
20312
20313 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
20314 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
20315 (find_automatic_composition): Mostly rewrite for efficiency.
20316
20317 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
20318
20319 * makefile.w32-in: Update dependencies.
20320
20321 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
20322
20323 * menu.c: Include limits.h (fixes the MS-Windows build broken by
20324 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
20325
20326 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
20327
20328 Fix some integer overflow issues, such as string length overflow.
20329
20330 * insdel.c (count_size_as_multibyte): Check for string overflow.
20331
20332 * character.c (lisp_string_width): Check for string overflow.
20333 Use EMACS_INT, not int, for string indexes and lengths; in
20334 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
20335 the resulting string length overflows an EMACS_INT; instead,
20336 report a string overflow if no precision given. When checking for
20337 precision exhaustion, use a check that cannot possibly have
20338 integer overflow. (Bug#8675)
20339 * character.h (lisp_string_width): Adjust to new signature.
20340
20341 * alloc.c (string_overflow): New function.
20342 (Fmake_string): Use it. This doesn't change behavior, but saves
20343 a few bytes and will simplify future changes.
20344 * character.c (string_escape_byte8): Likewise.
20345 * lisp.h (string_overflow): New decl.
20346
20347 Fixups, following up to the user-interface timestamp change.
20348 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
20349 for UI timestamps, instead of unsigned long.
20350 * msdos.c (mouse_get_pos): Likewise.
20351 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
20352 * w32gui.h (Time): Define by including "systime.h" rather than by
20353 declaring it ourselves. (Bug#8664)
20354
20355 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
20356 * image.c (clear_image_cache): Likewise.
20357
20358 * term.c (term_mouse_position): Don't assume time_t wraparound.
20359
20360 Be more systematic about user-interface timestamps.
20361 Before, the code sometimes used 'Time', sometimes 'unsigned long',
20362 and sometimes 'EMACS_UINT', to represent these timestamps.
20363 This change causes it to use 'Time' uniformly, as that's what X uses.
20364 This makes the code easier to follow, and makes it easier to catch
20365 integer overflow bugs such as Bug#8664.
20366 * frame.c (Fmouse_position, Fmouse_pixel_position):
20367 Use Time, not unsigned long, for user-interface timestamps.
20368 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
20369 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
20370 * keyboard.h (last_event_timestamp): Likewise.
20371 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
20372 * menu.h (xmenu_show): Likewise.
20373 * term.c (term_mouse_position): Likewise.
20374 * termhooks.h (struct input_event.timestamp): Likewise.
20375 (struct terminal.mouse_position_hook): Likewise.
20376 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
20377 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
20378 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
20379 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
20380 what it was before.
20381 * menu.h, termhooks.h: Include "systime.h", for Time.
20382
20383 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
20384 Don't assume that the difference between two unsigned long values
20385 can fit into an integer. At this point, we know button_down_time
20386 <= event->timestamp, so the difference must be nonnegative, so
20387 there's no need to cast the result if double-click-time is
20388 nonnegative, as it should be; check that it's nonnegative, just in
20389 case. This bug is triggered when events are more than 2**31 ms
20390 apart (about 25 days). (Bug#8664)
20391
20392 * xselect.c (last_event_timestamp): Remove duplicate decl.
20393 (x_own_selection): Remove needless cast to unsigned long.
20394
20395 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
20396 that always fit in int. Use a sentinel instead of a counter, to
20397 avoid a temp and to allay GCC's concerns about possible int overflow.
20398 * frame.h (struct frame): Use int for menu_bar_items_used
20399 instead of EMACS_INT, since it always fits in int.
20400
20401 * menu.c (grow_menu_items): Check for int overflow.
20402
20403 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
20404
20405 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
20406 Before, the code was not consistent. These values cannot exceed
20407 2**31 - 1 so there's no need to make them unsigned.
20408 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
20409 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
20410 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
20411 as modifiers.
20412 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
20413
20414 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
20415 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
20416 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
20417 presumably because the widths might not match.
20418
20419 * window.c (size_window): Avoid needless test at loop start.
20420
20421 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
20422
20423 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
20424
20425 2011-05-12 Drew Adams <drew.adams@oracle.com>
20426
20427 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
20428
20429 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
20430
20431 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
20432 `width' to `bar_area_x' and `bar_area_width', respectively.
20433 (x_scroll_run): Take account of fringe background extension.
20434
20435 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
20436 Rename local vars `left' and `width' to `bar_area_x' and
20437 `bar_area_width', respectively.
20438 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
20439 background extension.
20440
20441 2011-05-10 Jim Meyering <meyering@redhat.com>
20442
20443 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
20444
20445 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
20446
20447 * image.c (Finit_image_library): Return t for built-in image types,
20448 like pbm and xbm. (Bug#8640)
20449
20450 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
20451
20452 * w32menu.c (set_frame_menubar): Fix submenu allocation.
20453
20454 2011-05-07 Eli Zaretskii <eliz@gnu.org>
20455
20456 * w32console.c (Fset_screen_color): Doc fix.
20457 (Fget_screen_color): New function.
20458 (syms_of_ntterm): Defsubr it.
20459
20460 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
20461 unlink the temporary file if Fcall_process didn't create it in the
20462 first place.
20463 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
20464 child process will be redirected to a file specified with `:file'.
20465 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
20466 cue to call_process_cleanup not to close that handle.
20467
20468 2011-05-07 Ben Key <bkey76@gmail.com>
20469
20470 * makefile.w32-in: The bootstrap-temacs rule now makes use of
20471 one of two shell specific rules, either bootstrap-temacs-CMD or
20472 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
20473 to the previous implementation of the bootstrap-temacs rule.
20474 The bootstrap-temacs-CMD rule is similar to the previous
20475 implementation of the bootstrap-temacs rule except that it
20476 makes use of the ESC_CFLAGS variable instead of the CFLAGS
20477 variable.
20478
20479 These changes, along with some changes to nt/configure.bat,
20480 nt/gmake.defs, and nt/nmake.defs, are required to extend my
20481 earlier fix to add support for --cflags and --ldflags options
20482 that include quotes so that it works whether make uses cmd or
20483 sh as the shell.
20484
20485 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
20486
20487 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
20488 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
20489 is a constant.
20490 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
20491 a string. Handle both cases.
20492 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
20493 (Fdbus_register_method): Use Qinvalid_function.
20494
20495 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
20496
20497 * makefile.w32-in: Update dependencies.
20498 (LISP_H): Add inttypes.h and stdin.h.
20499 (PROCESS_H): Add unistd.h.
20500
20501 2011-05-06 Eli Zaretskii <eliz@gnu.org>
20502
20503 * lread.c: Include limits.h (fixes the MS-Windows build broken by
20504 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
20505
20506 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
20507
20508 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
20509
20510 * term.c (vfatal): Remove stray call to va_end.
20511 It's not needed and the C Standard doesn't allow it here anyway.
20512
20513 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
20514 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
20515
20516 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
20517 bytes.
20518
20519 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
20520
20521 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
20522
20523 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
20524
20525 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
20526
20527 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
20528
20529 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
20530 * charset.c (Fdefine_charset_internal): Don't initialize
20531 charset.code_space[15]. The value was garbage, on hosts with
20532 32-bit int (Bug#8600).
20533
20534 * lread.c (read_integer): Be more consistent with string-to-number.
20535 Use string_to_number to do the actual conversion; this avoids
20536 rounding errors and fixes some other screwups. Without this fix,
20537 for example, #x1fffffffffffffff was misread as -2305843009213693952.
20538 (digit_to_number): Move earlier, for benefit of read_integer.
20539 Return -1 if the digit is out of range for the base, -2 if it is
20540 not a digit in any supported base. (Bug#8602)
20541
20542 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
20543
20544 * dispnew.c (scrolling_window): Return 1 if we scrolled,
20545 to match comment at start of function. This also removes a
20546 GCC warning about overflow in a 32+64-bit port.
20547
20548 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
20549
20550 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
20551 Reported by Stefan Monnier in
20552 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
20553 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20554 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
20555
20556 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
20557 (EMACS_UINTPTR): Likewise, with uintptr_t.
20558
20559 * lisp.h: Prefer 64-bit EMACS_INT if available.
20560 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
20561 on 32-bit hosts that have 64-bit int, so that they can access
20562 large files.
20563 However, temporarily disable this change unless the temporary
20564 symbol WIDE_EMACS_INT is defined.
20565
20566 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
20567
20568 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
20569 This removes an assumption that EMACS_INT and long are the same
20570 width as pointers. The assumption is true for Emacs porting targets
20571 now, but we want to make other targets possible.
20572 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
20573 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
20574 In the rest of the code, change types of integers that hold casted
20575 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
20576 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
20577 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
20578 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
20579 No need to cast type when ORing.
20580 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
20581 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
20582 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
20583 assume EMACS_INT is the same width as char *.
20584 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
20585 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
20586 Remove no-longer-needed casts.
20587 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
20588 (xg_tool_bar_help_callback, xg_make_tool_item):
20589 Use EMACS_INTPTR to hold an integer
20590 that will be cast to void *; this can avoid a GCC warning
20591 if EMACS_INT is not the same width as void *.
20592 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
20593 * xdisp.c (display_echo_area_1, resize_mini_window_1):
20594 (current_message_1, set_message_1):
20595 Use a local to convert to proper width without a cast.
20596 * xmenu.c (dialog_selection_callback): Likewise.
20597
20598 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
20599 Also, don't assume VALBITS / RAND_BITS is less than 5,
20600 and don't rely on undefined behavior when shifting a 1 left into
20601 the sign bit.
20602 * lisp.h (get_random): Change signature to match.
20603
20604 * lread.c (hash_string): Use size_t, not int, for hash computation.
20605 Normally we prefer signed values; but hashing is special, because
20606 it's better to use unsigned division on hash table sizes so that
20607 the remainder is nonnegative. Also, size_t is the natural width
20608 for hashing into memory. The previous code used 'int', which doesn't
20609 retain enough info to hash well into very large tables.
20610 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
20611
20612 * dbusbind.c: Don't possibly lose pointer info when converting.
20613 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20614 Use XPNTR rather than XHASH, so that the high-order bits of
20615 the pointer aren't lost when converting through void *.
20616
20617 * eval.c (Fautoload): Don't double-shift a pointer.
20618
20619 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
20620
20621 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
20622
20623 * gnutls.c (DEF_GNUTLS_FN):
20624 * image.c (DEF_IMGLIB_FN): Make function pointers static.
20625
20626 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
20627
20628 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
20629 marker. (Bug#8610)
20630
20631 2011-05-05 Eli Zaretskii <eliz@gnu.org>
20632
20633 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
20634 New version that can reserve upto 2GB of heap space.
20635
20636 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
20637
20638 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
20639
20640 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
20641
20642 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
20643 `gnutls_certificate_set_x509_key_file'.
20644
20645 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
20646
20647 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
20648 Update dependencies.
20649
20650 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20651
20652 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
20653 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
20654 Remove unused parameter `fildes'.
20655 * process.c (read_process_output, send_process): Don't pass it.
20656
20657 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20658
20659 Fix previous change: the library cache is defined in w32.c.
20660 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
20661 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
20662
20663 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20664
20665 Implement dynamic loading of GnuTLS on Windows.
20666
20667 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
20668 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
20669 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20670 Declare.
20671
20672 * gnutls.c (Qgnutls_dll): Define.
20673 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
20674 (gnutls_*): Declare function pointers.
20675 (init_gnutls_functions): New function to initialize function pointers.
20676 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
20677 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
20678 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20679 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
20680 (emacs_gnutls_write, emacs_gnutls_read)
20681 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
20682 (Fgnutls_available_p): New function.
20683 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
20684 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
20685 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
20686
20687 * image.c: Include w32.h.
20688 (Vimage_type_cache): Delete.
20689 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
20690 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
20691 (w32_delayed_load): Move to w32.c.
20692
20693 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
20694
20695 * w32.c (QCloaded_from, Vlibrary_cache): Define.
20696 (w32_delayed_load): Move from image.c. When loading a library, record
20697 its filename in the :loaded-from property of the library id.
20698 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
20699 Initialize and staticpro them.
20700 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
20701
20702 * process.c: Include lisp.h before w32.h, not after.
20703 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
20704 instead of gnutls_record_check_pending.
20705
20706 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
20707
20708 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
20709
20710 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
20711 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
20712 as passed in.
20713
20714 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
20715
20716 * xterm.c (x_set_frame_alpha): Do not set property on anything
20717 else than FRAME_X_OUTER_WINDOW (Bug#8608).
20718
20719 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20720
20721 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20722
20723 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20724
20725 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
20726 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
20727 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
20728 (gnutls_global_initialized, Qgnutls_bootprop_priority)
20729 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
20730 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
20731 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
20732 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
20733 (Qgnutls_bootprop_callbacks_verify): Make static.
20734
20735 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
20736
20737 * callproc.c: Indentation fixup.
20738
20739 * sysdep.c (wait_for_termination_1): Make static.
20740 (wait_for_termination, interruptible_wait_for_termination):
20741 Move after wait_for_termination_1.
20742
20743 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20744
20745 * sysdep.c (interruptible_wait_for_termination): New function
20746 which is like wait_for_termination, but allows keyboard
20747 interruptions.
20748
20749 * callproc.c (Fcall_process): Add (:file "file") as an option for
20750 the STDOUT buffer.
20751 (Fcall_process_region): Ditto.
20752
20753 2011-04-30 Eli Zaretskii <eliz@gnu.org>
20754
20755 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
20756 rather than `XVECTOR (FOO)->size'.
20757
20758 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
20759 inttypes.h, as a gnulib replacement is used if it not available in
20760 system headers.
20761
20762 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20763
20764 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
20765 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
20766 of MOST_POSITIVE_FIXNUM. (Bug#8528)
20767
20768 * coding.c (coding_alloc_by_realloc): Error out if destination
20769 will grow beyond MOST_POSITIVE_FIXNUM.
20770 (decode_coding_emacs_mule): Abort if there isn't enough place in
20771 charbuf for the composition carryover bytes. Reserve an extra
20772 space for up to 2 characters produced in a loop.
20773 (decode_coding_iso_2022): Abort if there isn't enough place in
20774 charbuf for the composition carryover bytes.
20775
20776 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20777
20778 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
20779 aborting when %lld or %lll format is passed.
20780 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
20781 %llo or %llx format is passed. (Bug#8545)
20782
20783 * window.c (window_scroll_line_based): Use a marker instead of
20784 simple variables to record original value of point. (Bug#7952)
20785
20786 * doprnt.c (doprnt): Fix the case where a multibyte sequence
20787 produced by %s or %c overflows available buffer space. (Bug#8545)
20788
20789 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
20790
20791 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
20792 (SIZE_MAX): Move defn after all includes, as they might #define it.
20793
20794 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20795
20796 * w32.c (init_environment): Warn about defaulting HOME to C:\.
20797
20798 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20799
20800 * keyboard.c (Qdelayed_warnings_hook): Define.
20801 (command_loop_1): Run `delayed-warnings-hook'
20802 if Vdelayed_warnings_list is non-nil.
20803 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
20804 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
20805
20806 2011-04-28 Eli Zaretskii <eliz@gnu.org>
20807
20808 * doprnt.c (doprnt): Don't return value smaller than the buffer
20809 size if the message was truncated. (Bug#8545).
20810
20811 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20812
20813 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
20814 (Fx_window_property): #if-0 the whole functions, not just the bodies.
20815
20816 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20817
20818 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
20819
20820 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
20821
20822 * makefile.w32-in: Update dependencies.
20823
20824 2011-04-27 Eli Zaretskii <eliz@gnu.org>
20825
20826 Improve `doprnt' and its usage. (Bug#8545)
20827 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
20828 `format_end'. Remove support for %l as a conversion specifier.
20829 Don't use xrealloc. Improve diagnostics when the %l size modifier
20830 is used. Update the commentary.
20831
20832 * eval.c (verror): Simplify calculation of size_t.
20833
20834 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
20835 messages.
20836
20837 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20838
20839 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
20840 change.
20841
20842 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20843
20844 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
20845 This makes this file independent of the recent pseudovector change.
20846
20847 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
20848
20849 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
20850
20851 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
20852 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
20853 Remove unused local.
20854 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
20855
20856 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
20857 GCC 4.6.0 optimizes based on type-based alias analysis.
20858 For example, if b is of type struct buffer * and v of type struct
20859 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
20860 != &v->size, and therefore "v->size = 1; b->size = 2; return
20861 v->size;" must therefore return 1. This assumption is incorrect
20862 for Emacs, since it type-puns struct Lisp_Vector * with many other
20863 types. To fix this problem, this patch adds a new type struct
20864 vectorlike_header that documents the constraints on layout of vectors
20865 and pseudovectors, and helps optimizing compilers not get fooled
20866 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
20867 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
20868 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20869 the size member.
20870 (XSETPVECTYPE): Rewrite in terms of new macro.
20871 (XSETPVECTYPESIZE): New macro, specifying both type and size.
20872 This is a bit clearer, and further avoids the possibility of
20873 undesirable aliasing.
20874 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
20875 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
20876 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20877 since Lisp_Subr is a special case (no "next" field).
20878 (ASIZE): Now uses header.size rather than size.
20879 All previous uses of XVECTOR (foo)->size replaced to use this macro,
20880 to avoid the hassle of writing XVECTOR (foo)->header.size.
20881 (struct vectorlike_header): New type.
20882 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
20883 object, to help avoid aliasing.
20884 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
20885 (SUBRP): Likewise, since Lisp_Subr is a special case.
20886 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
20887 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
20888 (struct Lisp_Hash_Table): Combine first two members into a single
20889 struct vectorlike_header member. All uses of "size" and "next" members
20890 changed to be "header.size" and "header.next".
20891 * buffer.h (struct buffer): Likewise.
20892 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
20893 * frame.h (struct frame): Likewise.
20894 * process.h (struct Lisp_Process): Likewise.
20895 * termhooks.h (struct terminal): Likewise.
20896 * window.c (struct save_window_data, struct saved_window): Likewise.
20897 * window.h (struct window): Likewise.
20898 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
20899 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
20900 * buffer.c (init_buffer_once): Likewise.
20901 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
20902 special case.
20903 * process.c (Fformat_network_address): Use local var for size,
20904 for brevity.
20905
20906 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20907
20908 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20909 * data.c (atof): Remove decl; no longer used or needed.
20910 (digit_to_number): Move to lread.c.
20911 (Fstring_to_number): Use new string_to_number function, to be
20912 consistent with how the Lisp reader treats infinities and NaNs.
20913 Do not assume that floating-point numbers represent EMACS_INT
20914 without losing information; this is not true on most 64-bit hosts.
20915 Avoid double-rounding errors, by insisting on integers when
20916 parsing non-base-10 numbers, as the documentation specifies.
20917 * lisp.h (string_to_number): New decl, replacing ...
20918 (isfloat_string): Remove.
20919 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20920 (read1): Do not accept +. and -. as integers; this
20921 appears to have been a coding error. Similarly, do not accept
20922 strings like +-1e0 as floating point numbers. Do not report
20923 overflow for integer overflows unless the base is not 10 which
20924 means we have no simple and reliable way to continue.
20925 Break out the floating-point parsing into a new
20926 function string_to_number, so that Fstring_to_number parses
20927 floating point numbers consistently with the Lisp reader.
20928 (digit_to_number): Move here from data.c. Make it static inline.
20929 (E_CHAR, EXP_INT): Remove, replacing with ...
20930 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20931 (string_to_number): New function, replacing isfloat_string.
20932 This function checks for valid syntax and produces the resulting
20933 Lisp float number too. Rework it so that string-to-number
20934 no longer mishandles examples like "1.0e+". Use strtoumax,
20935 so that overflow for non-base-10 numbers is reported only when
20936 there's no portable and simple way to convert to floating point.
20937
20938 * textprop.c (set_text_properties_1): Rewrite for clarity,
20939 and to avoid GCC warning about integer overflow.
20940
20941 * intervals.h (struct interval): Use EMACS_INT for members
20942 where EMACS_UINT might cause problems. See
20943 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20944 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20945 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20946 All uses changed.
20947 (offset_intervals): Tell GCC not to worry about length overflow
20948 when negating a negative length.
20949
20950 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20951 (overrun_check_free): Likewise.
20952
20953 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20954 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20955 word size.
20956
20957 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20958 (gnutls_make_error): Rename local to avoid shadowing.
20959 (gnutls_emacs_global_deinit): ifdef out; not used.
20960 (Fgnutls_boot): Use const for pointer to readonly storage.
20961 Comment out unused local. Fix pointer signedness problems.
20962
20963 * lread.c (openp): Don't stuff size_t into an 'int'.
20964 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20965 about possible signed overflow.
20966
20967 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20968 (GDK_KEY_g): Don't define if already defined.
20969 (xg_prepare_tooltip): Avoid pointer signedness problem.
20970 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20971
20972 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20973 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20974
20975 * xfns.c (Fx_window_property): Simplify a bit,
20976 to make a bit faster and to avoid GCC 4.6.0 warning.
20977 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20978
20979 * fns.c (internal_equal): Don't assume size_t fits in int.
20980
20981 * alloc.c (compact_small_strings): Tighten assertion a little.
20982
20983 Replace pEd with more-general pI, and fix some printf arg casts.
20984 * lisp.h (pI): New macro, generalizing old pEd macro to other
20985 conversion specifiers. For example, use "...%"pI"d..." rather
20986 than "...%"pEd"...".
20987 (pEd): Remove. All uses replaced with similar uses of pI.
20988 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20989 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20990 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20991 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20992 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20993 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20994 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20995 64-bit hosts.
20996 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20997 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20998 * print.c (safe_debug_print, print_object): Likewise.
20999 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
21000 to int.
21001 Use pI instead of if-then-else-abort. Use %p to avoid casts,
21002 avoiding the 0 flag, which is not portable.
21003 * process.c (Fmake_network_process): Use pI to avoid cast.
21004 * region-cache.c (pp_cache): Likewise.
21005 * xdisp.c (decode_mode_spec): Likewise.
21006 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
21007 behavior on 64-bit hosts with printf arg.
21008 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
21009 (x_stop_queuing_selection_requests): Likewise.
21010 (x_get_window_property): Don't truncate byte count to an 'int'
21011 when tracing.
21012
21013 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
21014 here, since it parses constructs like leading '-' and spaces,
21015 which are not wanted; and it overflows with large numbers.
21016 Instead, simply match F[0-9]+, which is what is wanted anyway.
21017
21018 * alloc.c: Remove unportable assumptions about struct layout.
21019 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
21020 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
21021 (allocate_vectorlike, make_pure_vector): Use the new macros,
21022 plus offsetof, to remove unportable assumptions about struct layout.
21023 These assumptions hold on all porting targets that I know of, but
21024 they are not guaranteed, they're easy to remove, and removing them
21025 makes further changes easier.
21026
21027 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
21028 This doesn't fix a bug but makes the code clearer.
21029 (string_overrun_cookie): Now const. Use initializers that
21030 don't formally overflow signed char, to avoid warnings.
21031 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
21032 can cause Emacs to crash when string overrun checking is enabled.
21033 (allocate_buffer): Don't assume sizeof (struct buffer) is a
21034 multiple of sizeof (EMACS_INT); it need not be, if
21035 alignof(EMACS_INT) < sizeof (EMACS_INT).
21036 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
21037
21038 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
21039
21040 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
21041
21042 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
21043
21044 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
21045 supposed to be handshaking. (Bug#8556)
21046 Reported by Paul Eggert <eggert@cs.ucla.edu>.
21047
21048 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
21049
21050 * lisp.h (Qdebug): List symbol.
21051 * eval.c (Qdebug): Restore global linkage.
21052 * keyboard.c (debug-on-event): New variable.
21053 (handle_user_signal): Break into debugger when debug-on-event
21054 matches the current signal symbol.
21055
21056 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
21057
21058 * alloc.c (check_sblock, check_string_bytes)
21059 (check_string_free_list): Convert to standard C.
21060
21061 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
21062
21063 * w32.c (emacs_gnutls_push): Fix typo.
21064
21065 2011-04-25 Eli Zaretskii <eliz@gnu.org>
21066
21067 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
21068 "cast to pointer from integer of different size".
21069
21070 Improve doprnt and its use in verror. (Bug#8545)
21071 * doprnt.c (doprnt): Document the set of format control sequences
21072 supported by the function. Use SAFE_ALLOCA instead of always
21073 using `alloca'.
21074
21075 * eval.c (verror): Don't limit the buffer size at size_max-1, that
21076 is one byte too soon. Don't use xrealloc; instead xfree and
21077 xmalloc anew.
21078
21079 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
21080
21081 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
21082 callbacks stage.
21083
21084 * gnutls.c: Renamed global_initialized to
21085 gnutls_global_initialized. Added internals for the
21086 :verify-hostname-error, :verify-error, and :verify-flags
21087 parameters of `gnutls-boot' and documented those parameters in the
21088 docstring. Start callback support.
21089 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
21090 unless a fatal error occurred. Call gnutls_alert_send_appropriate
21091 on error. Return error code.
21092 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
21093 (emacs_gnutls_read): Likewise.
21094 (Fgnutls_boot): Return handshake error code.
21095 (emacs_gnutls_handle_error): New function.
21096 (wsaerror_to_errno): Likewise.
21097
21098 * w32.h (emacs_gnutls_pull): Add prototype.
21099 (emacs_gnutls_push): Likewise.
21100
21101 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
21102 (emacs_gnutls_push): Likewise.
21103
21104 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
21105
21106 * process.c (wait_reading_process_output): Check if GnuTLS
21107 buffered some data internally if no FDs are set for TLS
21108 connections.
21109
21110 * makefile.w32-in (OBJ2): Add gnutls.$(O).
21111 (LIBS): Link to USER_LIBS.
21112 ($(BLD)/gnutls.$(0)): New target.
21113
21114 2011-04-24 Eli Zaretskii <eliz@gnu.org>
21115
21116 * xdisp.c (handle_single_display_spec): Rename the
21117 display_replaced_before_p argument into display_replaced_p, to
21118 make it consistent with the commentary. Fix typos in the
21119 commentary.
21120
21121 * textprop.c (syms_of_textprop): Remove dead code.
21122 (copy_text_properties): Delete obsolete commentary about an
21123 interface that was deleted long ago. Fix typos in the description
21124 of arguments.
21125
21126 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
21127 to changes in oldXMenu/XMenu.h from 2011-04-16.
21128 <menu_help_message, prev_menu_help_message>: Constify.
21129 (IT_menu_make_room): menu->help_text is now `const char **';
21130 adjust.
21131
21132 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
21133 to changes in oldXMenu/XMenu.h from 2011-04-16.
21134 (struct XMenu): Declare `help_text' `const char **'.
21135
21136 * xfaces.c <Qunspecified>: Make extern again.
21137
21138 * syntax.c: Include sys/types.h before including regex.h, as
21139 required by POSIX.
21140
21141 * doc.c (get_doc_string): Improve the format passed to `error'.
21142
21143 * doprnt.c (doprnt): Improve commentary.
21144
21145 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
21146
21147 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
21148 them with etags.
21149
21150 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
21151 changes in globals.h immediately force recompilation.
21152 (TAGS): Depend on $(CURDIR)/m/intel386.h and
21153 $(CURDIR)/s/ms-w32.h.
21154 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
21155
21156 * character.c (Fchar_direction): Function deleted.
21157 (syms_of_character): Don't defsubr it.
21158 <char-direction-table>: Deleted.
21159
21160 2011-04-23 Eli Zaretskii <eliz@gnu.org>
21161
21162 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
21163 * doprnt.c: Include limits.h.
21164 (SIZE_MAX): New macro.
21165 (doprnt): Return a size_t value. 2nd arg is now size_t.
21166 Many local variables are now size_t instead of int or unsigned.
21167 Improve overflow protection. Support `l' modifier for integer
21168 conversions. Support %l conversion. Don't assume an EMACS_INT
21169 argument for integer conversions and for %c.
21170
21171 * lisp.h (doprnt): Restore prototype.
21172
21173 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
21174 $(SRC)/character.h.
21175
21176 * Makefile.in (base_obj): Add back doprnt.o.
21177
21178 * deps.mk (doprnt.o): Add back prerequisites.
21179 (callint.o): Depend on character.h.
21180
21181 * eval.c (internal_lisp_condition_case): Include the handler
21182 representation in the error message.
21183 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
21184 when breaking from the loop.
21185
21186 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
21187
21188 * callint.c (Fcall_interactively): When displaying error message
21189 about invalid control letter, pass the character's codepoint, not
21190 a pointer to its multibyte form. Improve display of the character
21191 in octal and display also its hex code.
21192
21193 * character.c (char_string): Use %x to display the (unsigned)
21194 codepoint of an invalid character, to avoid displaying a bogus
21195 negative value.
21196
21197 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
21198 `error', not SYMBOL_NAME itself.
21199
21200 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
21201 character arguments to `error'.
21202
21203 * charset.c (check_iso_charset_parameter): Fix incorrect argument
21204 to `error' in error message about FINAL_CHAR argument. Make sure
21205 FINAL_CHAR is a character, and use %c when it is passed as
21206 argument to `error'.
21207
21208 2011-04-23 Eli Zaretskii <eliz@gnu.org>
21209
21210 * s/ms-w32.h (localtime): Redirect to sys_localtime.
21211
21212 * w32.c: Include <time.h>.
21213 (sys_localtime): New function.
21214
21215 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
21216
21217 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
21218
21219 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
21220
21221 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
21222
21223 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
21224 zombies (Bug#8467).
21225
21226 2011-04-19 Eli Zaretskii <eliz@gnu.org>
21227
21228 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
21229 gl_state.e_property when gl_state.object is Qt.
21230
21231 * insdel.c (make_gap_larger): Remove limitation of buffer size
21232 to <= INT_MAX.
21233
21234 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
21235
21236 * xdisp.c (lookup_glyphless_char_display)
21237 (produce_glyphless_glyph): Handle cons cell entry in
21238 glyphless-char-display.
21239 (Vglyphless_char_display): Document it.
21240
21241 * term.c (produce_glyphless_glyph): Handle cons cell entry in
21242 glyphless-char-display.
21243
21244 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
21245
21246 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
21247
21248 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
21249
21250 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
21251 definition for no-X builds.
21252
21253 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
21254
21255 Static checks with GCC 4.6.0 and non-default toolkits.
21256
21257 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
21258
21259 * process.c (keyboard_bit_set): Define only if SIGIO.
21260 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
21261 (send_process): Repair possible setjmp clobbering.
21262
21263 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
21264
21265 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
21266
21267 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
21268
21269 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
21270 Define only if needed.
21271
21272 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
21273 by pacifying GCC about it. Maybe it's time to retire it?
21274 * xfaces.c (USG, __TIMEVAL__): Likewise.
21275
21276 * dispextern.h (struct redisplay_interface): Rename param
21277 to avoid shadowing.
21278 * termhooks.h (struct terminal): Likewise.
21279 * xterm.c (xembed_send_message): Likewise.
21280
21281 * insdel.c (make_gap_smaller): Define only if
21282 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
21283
21284 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
21285 it.
21286
21287 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
21288 so that we aren't warned about unused symbols.
21289
21290 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
21291
21292 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
21293
21294 * xfns.c (x_real_positions): Mark locals as initialized.
21295
21296 * xmenu.c (xmenu_show): Don't use uninitialized vars.
21297
21298 * xterm.c: Fix problems found by static analysis with other toolkits.
21299 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
21300 (x_dispatch_event): Declare static if USE_GTK, and
21301 define if USE_GTK || USE_X_TOOLKIT.
21302 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
21303 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
21304 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
21305 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
21306
21307 * xmenu.c (menu_help_callback): Pointer type fixes.
21308 Use const pointers when pointing at readonly data. Avoid pointer
21309 signedness clashes.
21310 (FALSE): Remove unused macro.
21311 (update_frame_menubar): Remove unused decl.
21312
21313 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
21314
21315 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
21316 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
21317 (single_menu_item): Rename local to avoid shadowing.
21318
21319 * keyboard.c (make_lispy_event): Remove unused local var.
21320
21321 * frame.c, frame.h (x_get_resource_string): Bring this back, but
21322 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
21323
21324 * bitmaps: Change bitmaps from unsigned char back to the X11
21325 compatible char. Avoid the old compiler warnings about
21326 out-of-range initializers by using, for example, '\xab' rather
21327 than 0xab.
21328
21329 * xgselect.c (xgselect_initialize): Check vs interface
21330 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
21331
21332 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
21333
21334 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
21335 to read-only memory.
21336
21337 * fns.c (vector): Remove; this old hack is no longer needed.
21338
21339 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
21340 Remove unused var.
21341 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
21342
21343 * xrdb.c (x_load_resources): Omit unused local.
21344
21345 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
21346 (x_window): Rename locals to avoid shadowing.
21347 (USG): Use the kludged USG macro, to pacify gcc.
21348
21349 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
21350 (x_term_init): Remove local to avoid shadowing.
21351
21352 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
21353
21354 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
21355 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
21356
21357 2011-04-16 Eli Zaretskii <eliz@gnu.org>
21358
21359 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
21360
21361 Fix regex.c, syntax.c and friends for buffers > 2GB.
21362 * syntax.h (struct gl_state_s): Declare character position members
21363 EMACS_INT.
21364
21365 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
21366
21367 * textprop.c (verify_interval_modification, interval_of):
21368 Declare arguments EMACS_INT.
21369
21370 * intervals.c (adjust_intervals_for_insertion): Declare arguments
21371 EMACS_INT.
21372
21373 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
21374
21375 * indent.c (Fvertical_motion): Local variable it_start is now
21376 EMACS_INT.
21377
21378 * regex.c (re_match, re_match_2, re_match_2_internal)
21379 (bcmp_translate, regcomp, regexec, print_double_string)
21380 (group_in_compile_stack, re_search, re_search_2, regex_compile)
21381 (re_compile_pattern, re_exec): Declare arguments and local
21382 variables `size_t' and `ssize_t' and return values `regoff_t', as
21383 appropriate.
21384 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
21385 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
21386 <compile_stack_type>: `size' and `avail' are now `size_t'.
21387
21388 * regex.h <regoff_t>: Use ssize_t, not int.
21389 (re_search, re_search_2, re_match, re_match_2): Arguments that
21390 specify buffer/string position and length are now ssize_t and
21391 size_t. Return type is regoff_t.
21392
21393 2011-04-16 Ben Key <bkey76@gmail.com>
21394
21395 * nsfont.m: Fixed bugs in ns_get_family and
21396 ns_descriptor_to_entity that were caused by using free to
21397 deallocate memory blocks that were allocated by xmalloc (via
21398 xstrdup). This caused Emacs to crash when compiled with
21399 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
21400 --enable-checking=xmallocoverrun). xfree is now used to
21401 deallocate these memory blocks.
21402
21403 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
21404
21405 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
21406
21407 emacs_write: Accept and return EMACS_INT for sizes.
21408 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
21409 et seq.
21410 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
21411 Accept and return EMACS_INT.
21412 (emacs_gnutls_write): Return the number of bytes written on
21413 partial writes.
21414 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
21415 (emacs_read, emacs_write): Remove check for negative size, as the
21416 Emacs source code has been audited now.
21417 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
21418 (emacs_read, emacs_write): Use it.
21419 * process.c (send_process): Adjust to the new signatures of
21420 emacs_write and emacs_gnutls_write. Do not attempt to store
21421 a byte offset into an 'int'; it might overflow.
21422 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
21423
21424 * sound.c: Don't assume sizes fit in 'int'.
21425 (struct sound_device.period_size, alsa_period_size):
21426 Return EMACS_INT, not int.
21427 (struct sound_device.write, vox_write, alsa_write):
21428 Accept EMACS_INT, not int.
21429 (wav_play, au_play): Use EMACS_INT to store sizes and to
21430 record read return values.
21431
21432 2011-04-15 Ben Key <bkey76@gmail.com>
21433
21434 * keyboard.c (Qundefined): Don't declare static since it is used
21435 in nsfns.m.
21436 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
21437 static since they are used in nsfont.m.
21438
21439 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
21440
21441 * process.c (Qprocessp): Don't declare static.
21442 * lisp.h (Qprocessp): Declare again.
21443
21444 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
21445
21446 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
21447
21448 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
21449
21450 Improve C-level modularity by making more things 'static'.
21451
21452 Don't publish debugger-only interfaces to other modules.
21453 * lisp.h (safe_debug_print, debug_output_compilation_hack):
21454 (verify_bytepos, count_markers): Move decls to the only modules
21455 that need them.
21456 * region-cache.h (pp_cache): Likewise.
21457 * window.h (check_all_windows): Likewise.
21458 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
21459
21460 * sysdep.c (croak): Now static, if
21461 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
21462 * syssignal.h (croak): Declare only if not static.
21463
21464 * alloc.c (refill_memory_reserve): Now static if
21465 !defined REL_ALLOC || defined SYSTEM_MALLOC.
21466 * lisp.h (refill_memory_reserve): Declare only if not static.
21467
21468 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
21469 Define only if USE_LUCID.
21470
21471 * xrdb.c (x_customization_string, x_rm_string): Now static.
21472
21473 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
21474 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
21475
21476 * xdisp.c (draw_row_with_mouse_face): Now static.
21477 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
21478
21479 * window.h (check_all_windows): Mark externally visible.
21480
21481 * window.c (window_deletion_count): Now static.
21482
21483 * undo.c: Make symbols static if they're not exported.
21484 (last_undo_buffer, last_boundary_position, pending_boundary):
21485 Now static.
21486
21487 * textprop.c (interval_insert_behind_hooks): Now static.
21488 (interval_insert_in_front_hooks): Likewise.
21489
21490 * term.c: Make symbols static if they're not exported.
21491 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
21492 (max_frame_lines, tty_set_terminal_modes):
21493 (tty_reset_terminal_modes, tty_turn_off_highlight):
21494 (get_tty_terminal): Now static.
21495 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
21496 * termhooks.h (term_mouse_moveto): Do not declare if
21497 HAVE_WINDOW_SYSTEM.
21498 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
21499 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
21500
21501 * sysdep.c: Make symbols static if they're not exported.
21502 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
21503 Now static.
21504 (sigprocmask_set, full_mask): Remove; unused.
21505 (wait_debugging): Mark as visible.
21506 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
21507 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
21508
21509 * syntax.c (syntax_temp): Define only if !__GNUC__.
21510
21511 * sound.c (current_sound_device, current_sound): Now static.
21512
21513 * search.c (searchbufs, searchbuf_head): Now static.
21514
21515 * scroll.c (scroll_cost): Remove; unused.
21516 * dispextern.h (scroll_cost): Remove decl.
21517
21518 * region-cache.h (pp_cache): Mark as externally visible.
21519
21520 * process.c: Make symbols static if they're not exported.
21521 (process_tick, update_tick, create_process, chan_process):
21522 (Vprocess_alist, proc_buffered_char, datagram_access):
21523 (fd_callback_data, send_process_frame, process_sent_to): Now static.
21524 (deactivate_process): Mark defn as static, as well as decl.
21525 * lisp.h (create_process): Remove decl.
21526 * process.h (chan_process, Vprocess_alist): Remove decls.
21527
21528 * print.c: Make symbols static if they're not exported.
21529 (print_depth, new_backquote_output, being_printed, print_buffer):
21530 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
21531 (print_interval, print_number_index, initial_stderr_stream):
21532 Now static.
21533 * lisp.h (Fprinc): Remove decl.
21534 (debug_output_compilation_hack): Mark as externally visible.
21535
21536 * sysdep.c (croak): Move decl from here to syssignal.h.
21537 * syssignal.h (croak): Put it here, so the API can be checked when
21538 'croak' is called from dissociate_if_controlling_tty.
21539
21540 * minibuf.c: Make symbols static if they're not exported.
21541 (minibuf_save_list, choose_minibuf_frame): Now static.
21542 * lisp.h (choose_minibuf_frame): Remove decl.
21543
21544 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
21545
21546 * lread.c: Make symbols static if they're not exported.
21547 (read_objects, initial_obarray, oblookup_last_bucket_number):
21548 Now static.
21549 (make_symbol): Remove; unused.
21550 * lisp.h (initial_obarray, make_symbol): Remove decls.
21551
21552 * keyboard.c: Make symbols static if they're not exported.
21553 (single_kboard, recent_keys_index, total_keys, recent_keys):
21554 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
21555 (this_single_command_key_start, echoing, last_auto_save):
21556 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
21557 (command_loop, echo_now, keyboard_init_hook, help_char_p):
21558 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
21559 (Vlispy_mouse_stem, double_click_count):
21560 Now static.
21561 (force_auto_save_soon): Define only if SIGDANGER.
21562 (ignore_mouse_drag_p): Now static if
21563 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
21564 (print_help): Remove; unused.
21565 (stop_character, last_timer_event): Mark as externally visible.
21566 * keyboard.h (ignore_mouse_drag_p): Declare only if
21567 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
21568 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
21569 * lisp.h (echoing): Remove decl.
21570 (force_auto_save_soon): Declare only if SIGDANGER.
21571 * xdisp.c (redisplay_window): Simplify code, to make it more
21572 obvious that ignore_mouse_drag_p is not accessed if !defined
21573 USE_GTK && !defined HAVE_NS.
21574
21575 * intervals.c: Make symbols static if they're not exported.
21576 (merge_properties_sticky, merge_interval_right, delete_interval):
21577 Now static.
21578 * intervals.h (merge_interval_right, delete_interval): Remove decls.
21579
21580 * insdel.c: Make symbols static if they're not exported.
21581 However, leave prepare_to_modify_buffer alone. It's never
21582 called from outside this function, but that appears to be a bug.
21583 (combine_after_change_list, combine_after_change_buffer):
21584 (adjust_after_replace, signal_before_change): Now static.
21585 (adjust_after_replace_noundo): Remove; unused.
21586 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
21587 (signal_before_change): Remove decls.
21588
21589 * indent.c (val_compute_motion, val_vmotion): Now static.
21590
21591 * image.c: Make symbols static if they're not exported.
21592 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
21593 if USE_GTK.
21594 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
21595 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
21596
21597 * fringe.c (standard_bitmaps): Now static.
21598 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
21599
21600 * frame.c: Make symbols static if they're not exported.
21601 (x_report_frame_params, make_terminal_frame): Now static.
21602 (get_frame_param): Now static, unless HAVE_NS.
21603 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
21604 (x_get_resource_string): Remove; not used.
21605 * frame.h (make_terminal_frame, x_report_frame_params):
21606 (x_get_resource_string); Remove decls.
21607 (x_fullscreen_adjust): Declare only if WINDOWSNT.
21608 * lisp.h (get_frame_param): Declare only if HAVE_NS.
21609
21610 * font.c, fontset.c: Make symbols static if they're not exported.
21611 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
21612 (FACE_SUITABLE_FOR_CHAR_P): Use it.
21613 * font.c (font_close_object): Now static.
21614 * font.h (font_close_object): Remove.
21615 * fontset.c (FONTSET_OBJLIST): Remove.
21616 (free_realized_fontset) #if-0 the body, which does nothing.
21617 (face_suitable_for_char_p): #if-0, as it's never called.
21618 * fontset.h (face_suitable_for_char_p): Remove decl.
21619 * xfaces.c (face_at_string_position):
21620 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
21621 since 0 is always ASCII.
21622
21623 * fns.c (weak_hash_tables): Now static.
21624
21625 * fileio.c: Make symbols static if they're not exported.
21626 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
21627 (Vwrite_region_annotation_buffers): Now static.
21628
21629 * eval.c: Make symbols static if they're not exported.
21630 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
21631 * lisp.h (backtrace_list): Remove decl.
21632
21633 * emacs.c: Make symbols static if they're not exported.
21634 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
21635 (fatal_error_code, fatal_error_signal_hook, standard_args):
21636 Now static.
21637 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
21638 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
21639 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
21640 * lisp.h (fatal_error_signal_hook): Remove decl.
21641 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
21642
21643 * editfns.c: Move a (normally-unused) function to its only use.
21644 * editfns.c, lisp.h (get_operating_system_release): Remove.
21645 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
21646 worth the hassle of breaking this out.
21647
21648 * xterm.c: Make symbols static if they're not exported.
21649 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
21650 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
21651 (x_destroy_window, x_delete_display):
21652 Now static.
21653 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
21654 (x_mouse_leave): Remove; unused.
21655 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
21656 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
21657 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
21658 Remove decls.
21659 (x_mouse_leave): Declare only if WINDOWSNT.
21660 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
21661 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
21662 USE_X_TOOLKIT.
21663
21664 * ftxfont.c: Make symbols static if they're not exported.
21665 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
21666 HAVE_FREETYPE.
21667 * font.h (ftxfont_driver): Likewise.
21668
21669 * xfns.c: Make symbols static if they're not exported.
21670 (x_last_font_name, x_display_info_for_name):
21671 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
21672 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
21673 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
21674 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
21675 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
21676 (last_show_tip_args): Now static.
21677 (xic_defaut_fontset, xic_create_fontsetname): Define only if
21678 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
21679 (x_screen_planes): Remove; unused.
21680 * dispextern.h (x_screen_planes): Remove decl.
21681
21682 * dispnew.c: Make symbols static if they're not exported.
21683 * dispextern.h (redraw_garbaged_frames, scrolling):
21684 (increment_row_positions): Remove.
21685 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
21686 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
21687 Now static.
21688 (redraw_garbaged_frames): Remove; unused.
21689
21690 * xfaces.c: Make symbols static if they're not exported.
21691 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
21692 Remove decls.
21693 * xterm.h (defined_color): Remove decls.
21694 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
21695 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
21696 (menu_face_changed_default, defined_color, free_realized_face):
21697 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
21698 (ascii_face_of_lisp_face): Remove; unused.
21699
21700 * xdisp.c: Make symbols static if they're not exported.
21701 * dispextern.h (scratch_glyph_row, window_box_edges):
21702 (glyph_to_pixel_coords, set_cursor_from_row):
21703 (get_next_display_element, set_iterator_to_next):
21704 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
21705 (show_mouse_face): Remove decls
21706 * frame.h (message_buf_print): Likewise.
21707 * lisp.h (pop_message, set_message, check_point_in_composition):
21708 Likewise.
21709 * xterm.h (set_vertical_scroll_bar): Likewise.
21710 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
21711 (message_buf_print, scratch_glyph_row, displayed_buffer):
21712 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
21713 (get_next_display_element, show_mouse_face, window_box_edges):
21714 (frame_to_window_pixel_xy, check_point_in_composition):
21715 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
21716 (glyph_to_pixel_coords): Remove; unused.
21717
21718 * dired.c (file_name_completion): Now static.
21719
21720 * dbusbind.c (xd_in_read_queued_messages): Now static.
21721
21722 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21723 * data.c (circular_list_error): Remove.
21724
21725 * commands.h (last_point_position, last_point_position_buffer):
21726 (last_point_position_window): Remove decls.
21727 * keyboard.c: Make these variables static.
21728
21729 * coding.h (coding, code_convert_region, encode_coding_gap):
21730 Remove decls.
21731 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
21732 (iso_code_class, detect_coding, code_convert_region): Now static.
21733 (encode_coding_gap): Remove; unused.
21734
21735 * chartab.c (chartab_chars, chartab_bits): Now static.
21736
21737 * charset.h (charset_iso_8859_1): Remove decl.
21738 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
21739 Now static.
21740
21741 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
21742 * ccl.c (Vccl_program_table): Now static.
21743 (check_ccl_update): Remove; unused.
21744
21745 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
21746 * category.h: ... from here.
21747 * category.c (check_category_table, set_category_set): Now static.
21748
21749 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
21750 * lisp.h: Remove these decls.
21751
21752 * buffer.c (buffer_count): Remove unused var.
21753
21754 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
21755 so that it's not optimized away.
21756 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
21757 * dispextern.h (bidi_dump_cached_states): Remove, since it's
21758 exported only to the debugger.
21759
21760 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
21761 * atimer.h (run_all_atimers): Remove; not exported.
21762
21763 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
21764 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
21765 was inaccessible from Lisp.
21766 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
21767 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
21768
21769 alloc.c: Import and export fewer symbols, and remove unused items.
21770 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
21771 is defined.
21772 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
21773 it's not optimized away by whole-program optimization.
21774 (message_enable_multibyte, free_misc): Remove.
21775 (catchlist, handlerlist, mark_backtrace):
21776 Declare only if BYTE_MARK_STACK.
21777 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
21778 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
21779 (message_enable_multibyte): Remove decl.
21780 (free_misc, interval_free_list, float_block, float_block_index):
21781 (n_float_blocks, float_free_list, cons_block, cons_block_index):
21782 (cons_free_list, last_marked_index):
21783 Now static.
21784 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
21785 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
21786 (mark_backtrace): Define only if BYTE_MARK_STACK.
21787 * xdisp.c (message_enable_multibyte): Now static.
21788
21789 Declare Lisp_Object Q* variables to be 'static' if not exported.
21790 This makes it easier for human readers (and static analyzers)
21791 to see whether these variables are used from other modules.
21792 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
21793 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
21794 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
21795 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
21796 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
21797 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
21798 * xmenu.c, xselect.c:
21799 Declare Q* vars static if they are not used in other modules.
21800 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
21801 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
21802 Remove decls of unexported vars.
21803 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
21804
21805 * lisp.h (DEFINE_FUNC): Make sname 'static'.
21806
21807 Make Emacs functions such as Fatom 'static' by default.
21808 This makes it easier for human readers (and static analyzers)
21809 to see whether these functions can be called from other modules.
21810 DEFUN now defines a static function. To make the function external
21811 so that it can be used in other C modules, use the new macro DEFUE.
21812 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
21813 (Finit_image_library):
21814 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
21815 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
21816 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
21817 Remove decls, since these functions are now static.
21818 (Funintern, Fget_internal_run_time): New decls, since these functions
21819 were already external.
21820
21821 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
21822 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
21823 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
21824 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
21825 * keyboard.c, keymap.c, lread.c:
21826 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
21827 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
21828 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
21829 Mark functions with DEFUE instead of DEFUN,
21830 if they are used in other modules.
21831 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
21832 decls for now-static functions.
21833 * buffer.h (Fdelete_overlay): Remove decl.
21834 * callproc.c (Fgetenv_internal): Mark as internal.
21835 * composite.c (Fremove_list_of_text_properties): Remove decl.
21836 (Fcomposition_get_gstring): New forward static decl.
21837 * composite.h (Fcomposite_get_gstring): Remove decl.
21838 * dired.c (Ffile_attributes): New forward static decl.
21839 * doc.c (Fdocumntation_property): New forward static decl.
21840 * eval.c (Ffetch_bytecode): New forward static decl.
21841 (Funintern): Remove extern decl; now in .h file where it belongs.
21842 * fileio.c (Fmake_symbolic_link): New forward static decl.
21843 * image.c (Finit_image_library): New forward static decl.
21844 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
21845 * intervals.h (Fprevious_property_change):
21846 (Fremove_list_of_text_properties): Remove decls.
21847 * keyboard.c (Fthis_command_keys): Remove decl.
21848 (Fcommand_execute): New forward static decl.
21849 * keymap.c (Flookup_key): New forward static decl.
21850 (Fcopy_keymap): Now static.
21851 * keymap.h (Flookup_key): Remove decl.
21852 * process.c (Fget_process): New forward static decl.
21853 (Fprocess_datagram_address): Mark as internal.
21854 * syntax.c (Fsyntax_table_p): New forward static decl.
21855 (skip_chars): Remove duplicate decl.
21856 * textprop.c (Fprevious_property_change): New forward static decl.
21857 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
21858 Now internal.
21859 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
21860 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
21861
21862 * editfns.c (Fformat): Remove unreachable code.
21863
21864 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
21865
21866 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
21867 change. (Bug#8496)
21868
21869 2011-04-13 Eli Zaretskii <eliz@gnu.org>
21870
21871 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
21872 when at ZV. (Bug#8487)
21873
21874 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21875
21876 * charset.c (Fclear_charset_maps): Use xfree instead of free.
21877 (Bug#8437)
21878 * keyboard.c (parse_tool_bar_item): Likewise.
21879 * sound.c (sound_cleanup, alsa_close): Likewise.
21880 * termcap.c (tgetent): Likewise.
21881 * xfns.c (x_default_font_parameter): Likewise.
21882 * xsettings.c (read_and_apply_settings): Likewise.
21883
21884 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21885 (overrun_check_free): Protoize.
21886
21887 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
21888
21889 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
21890 since callers should never pass a negative size.
21891 Change the signature to match that of plain 'read' and 'write'; see
21892 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
21893 * lisp.h: Update prototypes of emacs_write and emacs_read.
21894
21895 2011-04-11 Eli Zaretskii <eliz@gnu.org>
21896
21897 * xdisp.c (redisplay_window): Don't try to determine the character
21898 position of the scroll margin if the window start point w->startp
21899 is outside the buffer's accessible region. (Bug#8468)
21900
21901 2011-04-10 Eli Zaretskii <eliz@gnu.org>
21902
21903 Fix write-region and its subroutines for buffers > 2GB.
21904 * fileio.c (a_write, e_write): Modify declaration of arguments and
21905 local variables to support buffers larger than 2GB.
21906 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21907
21908 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21909 argument, local variables, and return value.
21910
21911 * lisp.h: Update prototypes of emacs_write and emacs_read.
21912
21913 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21914
21915 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21916
21917 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21918
21919 Fix more problems found by GCC 4.6.0's static checks.
21920
21921 * xdisp.c (vmessage): Use a better test for character truncation.
21922
21923 * charset.c (load_charset_map): <, not <=, for optimization,
21924 and to avoid potential problems with integer overflow.
21925 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21926 * casetab.c (set_identity, shuffle): Likewise.
21927 * editfns.c (Fformat): Likewise.
21928 * syntax.c (skip_chars): Likewise.
21929
21930 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21931 This also lets GCC 4.6.0 generate slightly better loop code.
21932
21933 * callint.c (Fcall_interactively): <, not <=, for optimization.
21934 (Fcall_interactively): Count the number of arguments produced,
21935 not the number of arguments given. This is simpler and lets GCC
21936 4.6.0 generate slightly better code.
21937
21938 * ftfont.c: Distingish more carefully between FcChar8 and char.
21939 The previous code passed unsigned char * to a functions like
21940 strlen and xstrcasecmp that expect char *, which does not
21941 conform to the C standard.
21942 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21943 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21944 char * when the C standard requires it.
21945
21946 * keyboard.c (read_char): Remove unused var.
21947
21948 * eval.c: Port to Windows vsnprintf (Bug#8435).
21949 Include <limits.h>.
21950 (SIZE_MAX): Define if the headers do not.
21951 (verror): Do not give up if vsnprintf returns a negative count.
21952 Instead, grow the buffer. This ports to Windows vsnprintf, which
21953 does not conform to C99. Problem reported by Eli Zaretskii.
21954 Also, simplify the allocation scheme, by avoiding the need for
21955 calling realloc, and removing the ALLOCATED variable.
21956
21957 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21958
21959 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21960 But keep the doprint source code for now, as we might revamp it
21961 and use it again (Bug#8435).
21962 * lisp.h (doprnt): Remove.
21963 * Makefile.in (base_obj): Remove doprnt.o.
21964 * deps.mk (doprnt.o): Remove.
21965
21966 error: Print 32- and 64-bit integers portably (Bug#8435).
21967 Without this change, on typical 64-bit hosts error ("...%d...", N)
21968 was used to print both 32- and 64-bit integers N, which relied on
21969 undefined behavior.
21970 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21971 * lisp.h (error, verror): Mark as printf-like functions.
21972 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21973 Report overflow in size calculations when allocating printf buffer.
21974 Do not truncate output string at its first null byte.
21975 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21976 Truncate the output at a character boundary, since vsnprintf does not
21977 do that.
21978 * charset.c (check_iso_charset_parameter): Convert internal
21979 character to string before calling 'error', since %c now has the
21980 printf meaning.
21981 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21982 overflow when computing char to be passed to 'error'. Do not
21983 pass Lisp_Object to 'error'; pass the integer instead.
21984 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21985 formatted with plain %d.
21986
21987 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21988
21989 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21990
21991 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21992
21993 * xterm.c (x_catch_errors): Remove duplicate declaration.
21994
21995 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21996
21997 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21998
21999 2011-04-10 Jim Meyering <meyering@redhat.com>
22000
22001 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
22002 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
22003 return ssize_t not "int", and use size_t as the buffer length.
22004 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
22005 * gnutls.h: Update declarations.
22006 * process.c (read_process_output): Use ssize_t, to match.
22007 (send_process): Likewise.
22008
22009 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
22010
22011 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
22012
22013 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
22014
22015 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
22016 Use unsigned char, to match FcChar8 type definition.
22017
22018 * xterm.c (handle_one_xevent):
22019 * xmenu.c (create_and_show_popup_menu):
22020 * xselect.c (x_decline_selection_request)
22021 (x_reply_selection_request): Avoid type-punned deref of X events.
22022
22023 2011-04-09 Eli Zaretskii <eliz@gnu.org>
22024
22025 Fix some uses of `int' instead of EMACS_INT.
22026 * search.c (string_match_1, fast_string_match)
22027 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
22028 (scan_buffer, find_next_newline_no_quit)
22029 (find_before_next_newline, search_command, Freplace_match)
22030 (Fmatch_data): Make some `int' variables be EMACS_INT.
22031
22032 * xdisp.c (display_count_lines): 3rd argument and return value now
22033 EMACS_INT. All callers changed.
22034 (pint2hrstr): Last argument is now EMACS_INT.
22035
22036 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
22037 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
22038 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
22039 (decode_coding_utf_16, decode_coding_emacs_mule)
22040 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
22041 (decode_coding_ccl, decode_coding_charset)
22042 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
22043 (decode_coding_iso_2022, decode_coding_emacs_mule)
22044 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
22045 <char_offset, last_offset>: Declare EMACS_INT.
22046 (encode_coding_utf_8, encode_coding_utf_16)
22047 (encode_coding_emacs_mule, encode_invocation_designation)
22048 (encode_designation_at_bol, encode_coding_iso_2022)
22049 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
22050 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
22051 Declare EMACS_INT.
22052 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
22053 (encode_invocation_designation): Last argument P_NCHARS is now
22054 EMACS_INT.
22055 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
22056 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
22057
22058 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
22059 All users changed.
22060
22061 * ccl.c (Fccl_execute_on_string): Declare some variables
22062 EMACS_INT.
22063
22064 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
22065
22066 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
22067
22068 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
22069
22070 * process.c (Fformat_network_address): Doc fix.
22071
22072 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
22073
22074 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
22075
22076 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
22077
22078 * keyboard.c (read_char): Call Lisp function help-form-show,
22079 instead of using internal_with_output_to_temp_buffer.
22080 (Qhelp_form_show): New var.
22081 (syms_of_keyboard): Use DEFSYM macro.
22082
22083 * print.c (internal_with_output_to_temp_buffer): Function deleted.
22084
22085 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
22086
22087 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
22088
22089 * process.c (Flist_processes): Remove to Lisp.
22090 (list_processes_1): Delete.
22091
22092 2011-04-06 Eli Zaretskii <eliz@gnu.org>
22093
22094 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
22095
22096 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
22097
22098 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
22099
22100 Fix more problems found by GCC 4.6.0's static checks.
22101
22102 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
22103
22104 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
22105
22106 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
22107
22108 * xdisp.c (vmessage): Mark as a printf-like function.
22109
22110 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
22111
22112 * sound.c (sound_warning): Don't crash if arg contains a printf format.
22113
22114 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
22115 printf-like functions.
22116 (tiff_load): Add casts to remove these marks before passing them
22117 to system-supplied API.
22118
22119 * eval.c (Fsignal): Remove excess argument to 'fatal'.
22120
22121 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
22122 This avoids several warnings with gcc -Wstrict-overflow.
22123 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
22124 directly, rather than having caller test rule sign. This avoids
22125 some unnecessary tests.
22126 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
22127 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
22128 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
22129
22130 * xfont.c (xfont_text_extents): Remove var that was set but not used.
22131 (xfont_open): Avoid unnecessary tests.
22132
22133 * composite.c (composition_gstring_put_cache): Use unsigned integer.
22134
22135 * composite.h, composite.c (composition_gstring_put_cache):
22136 Use EMACS_INT, not int, for length.
22137
22138 * composite.h (COMPOSITION_DECODE_REFS): New macro,
22139 breaking out part of COMPOSITION_DECODE_RULE.
22140 (COMPOSITION_DECODE_RULE): Use it.
22141 * composite.c (get_composition_id): Remove unused local vars,
22142 by using the new macro.
22143
22144 * textprop.c (set_text_properties_1): Change while to do-while,
22145 since the condition is always true at first.
22146
22147 * intervals.c (graft_intervals_into_buffer): Mark var as used.
22148 (interval_deletion_adjustment): Return unsigned value.
22149 All uses changed.
22150
22151 * process.c (list_processes_1, create_pty, read_process_output):
22152 (exec_sentinel): Remove vars that were set but not used.
22153 (create_pty): Remove unnecessary "volatile"s.
22154 (Fnetwork_interface_info): Avoid possibility of int overflow.
22155 (read_process_output): Do adaptive read buffering even if carryover.
22156 (read_process_output): Simplify nbytes computation if buffered.
22157
22158 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
22159
22160 * syntax.c (scan_words): Remove var that was set but not used.
22161 (update_syntax_table): Use unsigned instead of int.
22162
22163 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
22164 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
22165 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
22166
22167 * print.c (print_error_message): Avoid int overflow.
22168
22169 * font.c (font_list_entities): Redo for clarity,
22170 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
22171
22172 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
22173 (font_score): Avoid potential overflow in diff calculation.
22174
22175 * fns.c (substring_both): Remove var that is set but not used.
22176 (sxhash): Redo loop for clarity and to avoid wraparound warning.
22177
22178 * eval.c (funcall_lambda): Rename local to avoid shadowing.
22179
22180 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
22181 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
22182 can always succeed if overflow has undefined behavior.
22183
22184 * search.c (boyer_moore, wordify): Remove vars set but not used.
22185 (wordify): Omit three unnecessary tests.
22186
22187 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
22188 All callers changed. This avoids the need for an unused var.
22189
22190 * casefiddle.c (casify_region): Remove var that is set but not used.
22191
22192 * dired.c (file_name_completion): Remove var that is set but not used.
22193
22194 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
22195
22196 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
22197 (Finsert_file_contents): Remove unnecessary code checking fd.
22198
22199 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
22200 Check for integer overflow on size calculations.
22201
22202 * buffer.c (Fprevious_overlay_change): Remove var that is set
22203 but not used.
22204
22205 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
22206 Remove vars that are set but not used.
22207 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
22208 (timer_check_2): Mark vars as initialized.
22209
22210 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
22211
22212 * image.c (lookup_image): Remove var that is set but not used.
22213 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
22214
22215 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
22216 that are set but not used.
22217
22218 * xfns.c (make_invisible_cursor): Don't return garbage
22219 if XCreateBitmapFromData fails (Bug#8410).
22220
22221 * xselect.c (x_get_local_selection, x_handle_property_notify):
22222 Remove vars that are set but not used.
22223
22224 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
22225 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
22226
22227 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
22228 Remove var that is set but not used.
22229 (scroll_bar_windows_size): Now size_t, not int.
22230 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
22231 Check for overflow.
22232
22233 * xfaces.c (realize_named_face): Remove vars that are set but not used.
22234 (map_tty_color) [!defined MSDOS]: Likewise.
22235
22236 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
22237
22238 * coding.c: Remove vars that are set but not used.
22239 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
22240 All callers changed.
22241 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
22242 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
22243 (decode_coding_charset): Remove vars that are set but not used.
22244
22245 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
22246 that is set but not used.
22247
22248 * print.c (print_object): Remove var that is set but not used.
22249
22250 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
22251 The gnulib version avoids calling malloc in the usual case,
22252 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
22253 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
22254 * filelock.c (current_lock_owner): Likewise.
22255 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
22256 * sysdep.c: Include allocator.h, careadlinkat.h.
22257 (emacs_no_realloc_allocator): New static constant.
22258 (emacs_readlink): New function.
22259 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
22260 ../lib/careadlinkat.h.
22261
22262 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
22263
22264 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
22265 first non-nil return value).
22266
22267 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
22268
22269 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
22270 if not defined (Bug#8403).
22271
22272 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
22273
22274 * xdisp.c (display_count_lines): Remove parameter `start',
22275 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
22276 (get_char_face_and_encoding): Remove parameter `multibyte_p',
22277 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
22278 (fill_stretch_glyph_string): Remove parameters `row' and `area',
22279 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
22280 and thereabouts. All callers changed.
22281 (get_per_char_metric): Remove parameter `f', unused since
22282 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
22283
22284 2011-04-02 Jim Meyering <meyering@redhat.com>
22285
22286 do not dereference NULL upon failed strdup
22287 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
22288 (ns_get_family): Likewise.
22289
22290 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
22291
22292 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
22293
22294 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
22295
22296 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
22297 later (Bug#8403).
22298
22299 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
22300
22301 Add lexical binding.
22302
22303 * window.c (Ftemp_output_buffer_show): New fun.
22304 (Fsave_window_excursion):
22305 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
22306
22307 * lread.c (lisp_file_lexically_bound_p): New function.
22308 (Fload): Bind Qlexical_binding.
22309 (readevalloop): Remove `evalfun' arg.
22310 Bind Qinternal_interpreter_environment.
22311 (Feval_buffer): Bind Qlexical_binding.
22312 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
22313 Mark as dynamic.
22314 (syms_of_lread): Declare `lexical-binding'.
22315
22316 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
22317
22318 * keyboard.c (eval_dyn): New fun.
22319 (menu_item_eval_property): Use it.
22320
22321 * image.c (parse_image_spec): Use Ffunctionp.
22322
22323 * fns.c (concat, mapcar1): Accept byte-code-functions.
22324
22325 * eval.c (Fsetq): Handle lexical vars.
22326 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
22327 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
22328 (FletX, Flet): Obey lexical binding.
22329 (Fcommandp): Handle closures.
22330 (Feval): New `lexical' arg.
22331 (eval_sub): New function extracted from Feval. Use it almost
22332 everywhere where Feval was used. Look up vars in lexical env.
22333 Handle closures.
22334 (Ffunctionp): Move from subr.el.
22335 (Ffuncall): Handle closures.
22336 (apply_lambda): Remove `eval_flags'.
22337 (funcall_lambda): Handle closures and new byte-code-functions.
22338 (Fspecial_variable_p): New function.
22339 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
22340 but without exporting it to Lisp.
22341
22342 * doc.c (Fdocumentation, store_function_docstring):
22343 * data.c (Finteractive_form): Handle closures.
22344
22345 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
22346 interactive spec.
22347
22348 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
22349 New byte-codes.
22350 (exec_byte_code): New function extracted from Fbyte_code to handle new
22351 calling convention for byte-code-functions. Add new byte-codes.
22352
22353 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
22354
22355 * alloc.c (Fmake_symbol): Init new `declared_special' field.
22356
22357 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
22358
22359 * xdisp.c (redisplay_internal): Fix prototype.
22360
22361 2011-03-31 Eli Zaretskii <eliz@gnu.org>
22362
22363 * xdisp.c (SCROLL_LIMIT): New macro.
22364 (try_scrolling): Use it when setting scroll_limit.
22365 Limit scrolling to 100 screen lines.
22366 (redisplay_window): Even when falling back on "recentering",
22367 position point in the window according to scroll-conservatively,
22368 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
22369
22370 (try_scrolling): When point is above the window, allow searching
22371 as far as scroll_max, or one screenful, to compute vertical
22372 distance from PT to the scroll margin position. This prevents
22373 try_scrolling from unnecessarily failing when
22374 scroll-conservatively is set to a value slightly larger than the
22375 window height. Clean up the case of PT below the margin at bottom
22376 of window: scroll_max can no longer be INT_MAX. When aggressive
22377 scrolling is in use, don't let point enter the opposite scroll
22378 margin as result of the scroll.
22379 (syms_of_xdisp) <scroll-conservatively>: Document the
22380 threshold of 100 lines for never-recentering scrolling.
22381
22382 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
22383
22384 * dispextern.h (move_it_by_lines):
22385 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
22386 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
22387 (message_log_check_duplicate): Remove parameters `prev_bol' and
22388 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
22389 (redisplay_internal): Remove parameter `preserve_echo_area',
22390 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
22391
22392 * indent.c (Fvertical_motion):
22393 * window.c (window_scroll_pixel_based, Frecenter):
22394 Don't pass `need_y_p' to `move_it_by_lines'.
22395
22396 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
22397
22398 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
22399 steal a few bits to be more compact.
22400 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
22401 Remove unneeded casts.
22402
22403 * bytecode.c (Fbyte_code): CAR and CDR can GC.
22404
22405 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
22406
22407 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
22408 binding" message (bug#7967).
22409
22410 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
22411
22412 Fix more problems found by GCC 4.6.0's static checks.
22413
22414 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
22415 Remove unused local var.
22416
22417 * editfns.c (Fmessage_box): Remove unused local var.
22418
22419 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
22420 (note_mode_line_or_margin_highlight, note_mouse_highlight):
22421 Omit unused local vars.
22422 * window.c (shrink_windows): Omit unused local var.
22423 * menu.c (digest_single_submenu): Omit unused local var.
22424 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
22425 Omit unused local var.
22426
22427 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
22428 Don't assume string length fits in int.
22429 (keyremap_step, read_key_sequence): Use size_t for sizes.
22430 (read_key_sequence): Don't check last_real_key_start redundantly.
22431
22432 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
22433 instead of alloca (Bug#8344).
22434
22435 * eval.c (Fbacktrace): Don't assume nargs fits in int.
22436 (Fbacktrace_frame): Don't assume nframes fits in int.
22437
22438 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
22439
22440 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
22441 concerns.
22442
22443 * term.c (produce_glyphless_glyph): Remove unnecessary test.
22444
22445 * cm.c (calccost): Turn while-do into do-while, for clarity.
22446
22447 * keyboard.c (syms_of_keyboard): Use the same style as later
22448 in this function when indexing through an array. This also
22449 works around GCC bug 48267.
22450
22451 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
22452
22453 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
22454
22455 * chartab.c (sub_char_table_ref_and_range): Redo for slight
22456 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
22457
22458 * keyboard.c, keyboard.h (num_input_events): Now size_t.
22459 This avoids undefined behavior on integer overflow, and is a bit
22460 more convenient anyway since it is compared to a size_t variable.
22461
22462 Variadic C functions now count arguments with size_t, not int.
22463 This avoids an unnecessary limitation on 64-bit machines, which
22464 caused (substring ...) to crash on large vectors (Bug#8344).
22465 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
22466 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
22467 All variadic functions and their callers changed accordingly.
22468 (struct gcpro.nvars): Now size_t, not int. All uses changed.
22469 * data.c (arith_driver, float_arith_driver): Likewise.
22470 * editfns.c (general_insert_function): Likewise.
22471 * eval.c (struct backtrace.nargs, interactive_p)
22472 (internal_condition_case_n, run_hook_with_args, apply_lambda)
22473 (funcall_lambda, mark_backtrace): Likewise.
22474 * fns.c (concat): Likewise.
22475 * frame.c (x_set_frame_parameters): Likewise.
22476 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
22477 0 if not found, not -1. All callers changed.
22478
22479 * alloc.c (garbage_collect): Don't assume stack size fits in int.
22480 (stack_copy_size): Now size_t, not int.
22481 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
22482
22483 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
22484
22485 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
22486 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22487 All callers changed.
22488
22489 * lisp.h (multibyte_char_to_unibyte):
22490 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
22491 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22492 * character.h (CHAR_TO_BYTE8):
22493 * cmds.c (internal_self_insert):
22494 * editfns.c (general_insert_function):
22495 * keymap.c (push_key_description):
22496 * search.c (Freplace_match):
22497 * xdisp.c (message_dolog, set_message_1): All callers changed.
22498
22499 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
22500
22501 * keyboard.c (safe_run_hook_funcall): New function.
22502 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
22503 don't set the hook to nil, but remove the offending function instead.
22504 (Qcommand_hook_internal): Remove, unused.
22505 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
22506 Vcommand_hook_internal.
22507
22508 * eval.c (enum run_hooks_condition): Remove.
22509 (funcall_nil, funcall_not): New functions.
22510 (run_hook_with_args): Call each function through a `funcall' argument.
22511 Remove `cond' argument, now redundant.
22512 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
22513 (Frun_hook_with_args_until_failure): Adjust accordingly.
22514 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
22515
22516 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
22517
22518 * dispextern.h (string_buffer_position): Remove declaration.
22519
22520 * print.c (strout): Remove parameter `multibyte', unused since
22521 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
22522
22523 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
22524 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
22525 All callers changed.
22526
22527 * w32.c (_wsa_errlist): Use braces for struct initializers.
22528
22529 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
22530 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
22531 All callers changed.
22532 (string_buffer_position): Likewise. Also, make static (it's never
22533 used outside xdisp.c).
22534 (cursor_row_p): Remove parameter `w', unused since
22535 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
22536 (decode_mode_spec): Remove parameter `precision', introduced during
22537 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
22538 All callers changed.
22539
22540 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22541
22542 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
22543
22544 2011-03-27 Anders Lindgren <andlind@gmail.com>
22545
22546 * nsterm.m (ns_menu_bar_is_hidden): New variable.
22547 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
22548 (ns_update_auto_hide_menu_bar): New functions.
22549 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
22550 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
22551 ns_constrain_all_frames.
22552 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
22553 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
22554
22555 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22556
22557 * nsmenu.m (runDialogAt): Remove argument to timer_check.
22558
22559 2011-03-27 Glenn Morris <rgm@gnu.org>
22560
22561 * syssignal.h: Replace RETSIGTYPE with void.
22562 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
22563 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
22564 Replace SIGTYPE with void everywhere.
22565 * s/usg5-4-common.h (SIGTYPE): Remove definition.
22566 * s/template.h (SIGTYPE): Remove commented out definition.
22567
22568 2011-03-26 Eli Zaretskii <eliz@gnu.org>
22569
22570 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
22571 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
22572
22573 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
22574
22575 * w32.c (read_unc_volume): Use parameter `henum', instead of
22576 global variable `wget_enum_handle'.
22577
22578 * keymap.c (describe_vector): Remove parameters `indices' and
22579 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
22580 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
22581
22582 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
22583
22584 * keyboard.c (timer_check): Remove parameter `do_it_now',
22585 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
22586 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
22587 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
22588
22589 * keyboard.c (read_char):
22590 * w32menu.c (w32_menu_display_help):
22591 * xmenu.c (show_help_event, menu_help_callback):
22592 Adjust calls to `show_help_echo'.
22593
22594 * gtkutil.c (xg_maybe_add_timer):
22595 * keyboard.c (readable_events):
22596 * process.c (wait_reading_process_output):
22597 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
22598
22599 * insdel.c (adjust_markers_gap_motion):
22600 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
22601 (gap_left, gap_right): Don't call it.
22602
22603 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
22604
22605 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
22606 incurred during fontification.
22607
22608 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
22609
22610 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
22611 (DEFVAR_PER_BUFFER): Don't pass it.
22612
22613 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
22614 (scrolling_window): Don't pass it.
22615
22616 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
22617
22618 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
22619
22620 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
22621 and `suffix'.
22622 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
22623 of variables specific to SELinux and computation of `encoded_absname'.
22624
22625 * image.c (XPutPixel): Remove unused variable `height'.
22626
22627 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
22628
22629 * unexw32.c (get_section_info): Remove unused variable `section'.
22630
22631 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
22632 (system_process_attributes): Remove unused variable `sess'.
22633 (sys_read): Remove unused variable `err'.
22634
22635 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
22636 (w32_wnd_proc): Remove unused variable `isdead'.
22637 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
22638 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
22639 (x_create_tip_frame): Remove unused variable `tem'.
22640
22641 * w32inevt.c (w32_console_read_socket):
22642 Remove unused variable `no_events'.
22643
22644 * w32term.c (x_draw_composite_glyph_string_foreground):
22645 Remove unused variable `width'.
22646
22647 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
22648
22649 * w32term.c (x_set_glyph_string_clipping):
22650 Don't pass uninitialized region to CombineRgn.
22651
22652 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
22653
22654 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
22655 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
22656 (Fx_close_connection): Remove unused variable `i'.
22657
22658 * w32font.c (w32font_draw): Return number of glyphs.
22659 (w32font_open_internal): Remove unused variable `i'.
22660 (w32font_driver): Add missing initializer.
22661
22662 * w32menu.c (utf8to16): Remove unused variable `utf16'.
22663 (fill_in_menu): Remove unused variable `items_added'.
22664
22665 * w32term.c (last_mouse_press_frame): Remove static global variable.
22666 (w32_clip_to_row): Remove unused variable `f'.
22667 (x_delete_terminal): Remove unused variable `i'.
22668
22669 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
22670 (NOTHING): Remove unused static global variable.
22671 (uniscribe_check_otf): Remove unused variable `table'.
22672 (uniscribe_font_driver): Add missing initializers.
22673
22674 2011-03-23 Julien Danjou <julien@danjou.info>
22675
22676 * term.c (Fsuspend_tty, Fresume_tty):
22677 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
22678 * window.c (temp_output_buffer_show):
22679 * insdel.c (signal_before_change):
22680 * frame.c (Fhandle_switch_frame):
22681 * fileio.c (Fdo_auto_save):
22682 * emacs.c (Fkill_emacs):
22683 * editfns.c (save_excursion_restore):
22684 * cmds.c (internal_self_insert):
22685 * callint.c (Fcall_interactively):
22686 * buffer.c (Fkill_all_local_variables):
22687 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
22688 Use Frun_hooks.
22689 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
22690 unconditionally since it does the check itself.
22691
22692 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
22693
22694 Fix more problems found by GCC 4.5.2's static checks.
22695
22696 * coding.c (encode_coding_raw_text): Avoid unnecessary test
22697 the first time through the loop, since we know p0 < p1 then.
22698 This also avoids a gcc -Wstrict-overflow warning.
22699
22700 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
22701 leading to a memory leak, possible in functions like
22702 load_charset_map_from_file that can allocate an unbounded number
22703 of objects (Bug#8318).
22704
22705 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
22706 that could (at least in theory) be that large.
22707
22708 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
22709 This is less likely to overflow, and avoids undefined behavior if
22710 overflow does occur. All callers changed. Use strtoul to scan
22711 for the unsigned long integer.
22712 (pint2hrstr): Simplify and tune code slightly.
22713 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
22714
22715 * scroll.c (do_scrolling): Work around GCC bug 48228.
22716 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
22717
22718 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22719 This also avoids a warning with gcc -Wstrict-overflow.
22720 (validate_x_resource_name): Simplify count usage.
22721 This also avoids a warning with gcc -Wstrict-overflow.
22722
22723 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22724 fail (Bug#8306).
22725
22726 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
22727
22728 * process.c (Fmake_network_process): Use socklen_t, not int,
22729 where POSIX says socklen_t is required in portable programs.
22730 This fixes a porting bug on hosts like 64-bit HP-UX, where
22731 socklen_t is wider than int (Bug#8277).
22732 (Fmake_network_process, server_accept_connection):
22733 (wait_reading_process_output, read_process_output):
22734 Likewise.
22735
22736 * process.c: Rename or move locals to avoid shadowing.
22737 (list_processes_1, Fmake_network_process):
22738 (read_process_output_error_handler, exec_sentinel_error_handler):
22739 Rename or move locals.
22740 (Fmake_network_process): Define label "retry_connect" only if needed.
22741 (Fnetwork_interface_info): Fix pointer signedness.
22742 (process_send_signal): Add cast to avoid pointer signedness problem.
22743 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
22744 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
22745
22746 Make tparam.h and terminfo.c consistent.
22747 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
22748 Include tparam.h instead, since it declares them.
22749 * cm.h (PC): Remove extern decl; tparam.h now does this.
22750 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
22751 * terminfo.c: Include tparam.h, to check interfaces.
22752 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
22753 (tparam): Adjust signature to match interface in tparam.h;
22754 this removes some undefined behavior. Check that outstring and len
22755 are zero, which they always are with Emacs.
22756 * tparam.h (PC, BC, UP): New extern decls.
22757
22758 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
22759 (xftfont_open): Rename locals to avoid shadowing.
22760
22761 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
22762 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
22763 (OTF_TAG_SYM): Omit macro if not needed.
22764 (ftfont_list): Remove unused local.
22765 (get_adstyle_property, ftfont_pattern_entity):
22766 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
22767 Rename locals to avoid shadowing.
22768
22769 * xfont.c (xfont_list_family): Mark var as initialized.
22770
22771 * xml.c (make_dom): Now static.
22772
22773 * composite.c (composition_compute_stop_pos): Rename local to
22774 avoid shadowing.
22775 (composition_reseat_it): Remove unused locals.
22776 (find_automatic_composition, composition_adjust_point): Likewise.
22777 (composition_update_it): Mark var as initialized.
22778 (find_automatic_composition): Mark vars as initialized,
22779 with a FIXME (Bug#8290).
22780
22781 character.h: Rename locals to avoid shadowing.
22782 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
22783 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
22784 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
22785 (BUF_DEC_POS): Be more systematic about renaming local temporaries
22786 to avoid shadowing.
22787
22788 * textprop.c (property_change_between_p): Remove; unused.
22789
22790 * intervals.c (interval_start_pos): Now static.
22791
22792 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
22793
22794 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
22795 Rename locals to avoid shadowing.
22796
22797 * sound.c (wav_play, au_play, Fplay_sound_internal):
22798 Fix pointer signedness.
22799 (alsa_choose_format): Remove unused local var.
22800 (wav_play): Initialize a variable to 0, to prevent undefined
22801 behavior (Bug#8278).
22802
22803 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
22804
22805 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
22806
22807 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
22808 clobbering (Bug#8298).
22809 * sysdep.c (sys_subshell): Likewise.
22810 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
22811
22812 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
22813 This should get cleaned up, so that child_setup has the
22814 same signature on all platforms.
22815
22816 * callproc.c (call_process_cleanup): Now static.
22817 (relocate_fd): Rename locals to avoid shadowing.
22818
22819 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
22820
22821 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
22822 not to be necessary, and produces flickering.
22823
22824 2011-03-20 Glenn Morris <rgm@gnu.org>
22825
22826 * config.in: Remove file.
22827
22828 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
22829
22830 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
22831 are now in src/globals.h.
22832 (syms_of_minibuf): Remove spurious & from previous change.
22833
22834 2011-03-20 Leo Liu <sdl.web@gmail.com>
22835
22836 * minibuf.c (completing-read-function): New variable.
22837 (completing-read-default): Rename from completing-read.
22838 (completing-read): Call completing-read-function.
22839
22840 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22841
22842 * xfaces.c (Fx_load_color_file):
22843 Read color file from absolute filename (bug#8250).
22844
22845 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22846
22847 * makefile.w32-in: Update dependencies.
22848
22849 2011-03-17 Eli Zaretskii <eliz@gnu.org>
22850
22851 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
22852
22853 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
22854
22855 Fix more problems found by GCC 4.5.2's static checks.
22856
22857 * process.c (make_serial_process_unwind, send_process_trap):
22858 (sigchld_handler): Now static.
22859
22860 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
22861 That way, the code declares only the vars that it needs.
22862 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
22863 * s/cygwin.h (PTY_ITERATION): Likewise.
22864 * s/darwin.h (PTY_ITERATION): Likewise.
22865 * s/gnu-linux.h (PTY_ITERATION): Likewise.
22866
22867 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
22868 * process.c (allocate_pty): Don't declare stb unless it's needed.
22869
22870 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
22871 (CONSTANTLIM): Remove; unused.
22872 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22873 Define only if needed.
22874
22875 * unexelf.c (unexec): Name an expression,
22876 to avoid gcc -Wbad-function-cast warning.
22877 Use a different way to cause a compilation error if anyone uses
22878 n rather than nn, a way that does not involve shadowing.
22879 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
22880
22881 * deps.mk (unexalpha.o): Remove; unused.
22882
22883 New file unexec.h, the (simple) interface for unexec (Bug#8267).
22884 * unexec.h: New file.
22885 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
22886 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
22887 Depend on unexec.h.
22888 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
22889 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
22890 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
22891 Change as necessary to match prototype in unexec.h.
22892
22893 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22894 shadowing.
22895 (back_comment, skip_chars): Mark vars as initialized.
22896
22897 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22898 Rename locals to avoid shadowing.
22899
22900 * lread.c (read1): Rewrite so as not to use empty "else".
22901 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
22902
22903 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22904
22905 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22906 warning when compiling print.c.
22907
22908 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22909 instead of using an uninitialized var.
22910 (font_sort_entities): Mark var as initialized.
22911
22912 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22913
22914 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22915 pointers to constants.
22916 (font_parse_fcname): Remove unused vars.
22917 (font_delete_unmatched): Now static.
22918 (font_get_spec): Remove; unused.
22919 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22920 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22921 Rename or move locals to avoid shadowing.
22922
22923 * fns.c (require_nesting_list, require_unwind): Now static.
22924 (Ffillarray): Rename locals to avoid shadowing.
22925
22926 * floatfns.c (domain_error2): Define only if needed.
22927 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22928
22929 * alloc.c (mark_backtrace): Move decl from here ...
22930 * lisp.h: ... to here, so that it can be checked.
22931
22932 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22933 (Fdefvar): Rewrite so as not to use empty "else".
22934 (lisp_indirect_variable): Name an expression,
22935 to avoid gcc -Wbad-function-cast warning.
22936 (Fdefvar): Rename locals to avoid shadowing.
22937
22938 * callint.c (quotify_arg, quotify_args): Now static.
22939 (Fcall_interactively): Rename locals to avoid shadowing.
22940 Use const pointer when appropriate.
22941
22942 * lisp.h (get_system_name, get_operating_system_release):
22943 Move decls here, to check interfaces.
22944 * process.c (get_operating_system_release): Move decl to lisp.h.
22945 * xrdb.c (get_system_name): Likewise.
22946 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22947 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22948 some of which prompt warnings from gcc -Wbad-function-cast.
22949 (Fformat_time_string, Fencode_time, Finsert_char):
22950 (Ftranslate_region_internal, Fformat):
22951 Rename or remove local vars to avoid shadowing.
22952 (Ftranslate_region_internal): Mark var as initialized.
22953
22954 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22955 avoid shadowing.
22956
22957 * lisp.h (eassert): Check that the argument compiles, even if
22958 ENABLE_CHECKING is not defined.
22959
22960 * data.c (Findirect_variable): Name an expression, to avoid
22961 gcc -Wbad-function-cast warning.
22962 (default_value, arithcompare, arith_driver, arith_error): Now static.
22963 (store_symval_forwarding): Rename local to avoid shadowing.
22964 (Fmake_variable_buffer_local, Fmake_local_variable):
22965 Mark variables as initialized.
22966 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22967
22968 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22969 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22970 Rename locals to avoid shadowing.
22971 (mark_stack): Move local variables into the #ifdef region where
22972 they're used.
22973 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22974 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22975 needed otherwise.
22976 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22977 (GC_STRING_CHARS): Remove; not used.
22978 (Fmemory_limit): Cast sbrk's returned value to char *.
22979
22980 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22981 avoids undefined behavior in theory.
22982
22983 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22984
22985 Use functions, not macros, for up- and down-casing (Bug#8254).
22986 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22987 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22988 to use the following functions instead of these macros.
22989 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22990 EMACS_INT, since callers assume the returned value fits in int.
22991 (upcase1): Likewise, for UPCASE_TABLE.
22992 (uppercasep, lowercasep, upcase): New static inline functions.
22993 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22994 the race-condition problem in the old DOWNCASE.
22995
22996 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22997 Rename locals to avoid shadowing.
22998 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22999 (regex_compile, re_search_2, re_match_2_internal):
23000 Remove unused local vars.
23001 (FREE_VAR): Rewrite so as not to use empty "else",
23002 which gcc can warn about.
23003 (regex_compile, re_match_2_internal): Mark locals as initialized.
23004 (RETALLOC_IF): Define only if needed.
23005 (WORDCHAR_P): Likewise. This one is never needed, but is used
23006 only in a comment talking about a compiler bug, so put inside
23007 the #if 0 of that comment.
23008 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
23009 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
23010 Remove; unused.
23011
23012 * search.c (boyer_moore): Rename locals to avoid shadowing.
23013 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
23014 (PREV_CHAR_BOUNDARY): Likewise.
23015
23016 * search.c (simple_search): Remove unused var.
23017
23018 * dired.c (compile_pattern): Move decl from here ...
23019 * lisp.h: ... to here, so that it can be checked.
23020 (struct re_registers): New forward decl.
23021
23022 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
23023
23024 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
23025 All uses changed.
23026 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
23027 Rename locals to avoid shadowing.
23028 (Fvertical_motion): Mark locals as initialized.
23029
23030 * casefiddle.c (casify_object, casify_region): Now static.
23031 (casify_region): Mark local as initialized.
23032
23033 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
23034
23035 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
23036 New macros, so that the caller can use some names other than
23037 gcpro1, gcpro2, etc.
23038 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
23039 of the new macros.
23040 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
23041 argument, for consistency with GCPRO2_VAR, etc: it is now the
23042 prefix of the variable, not the variable itself. All uses
23043 changed.
23044 * dired.c (directory_files_internal, file_name_completion):
23045 Rename locals to avoid shadowing.
23046
23047 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
23048 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
23049 dired.c's scmp function, had undefined behavior.
23050 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
23051 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
23052 * buffer.h: ... to here, because these macros use current_buffer,
23053 and the new implementation with inline functions needs to have
23054 current_buffer in scope now, rather than later when the macros
23055 are used.
23056 (downcase, upcase1): New static inline functions.
23057 (DOWNCASE, UPCASE1): Reimplement using these functions.
23058 This avoids undefined behavior in expressions like
23059 DOWNCASE (x) == DOWNCASE (y), which previously suffered
23060 from race conditions in accessing the global variables
23061 case_temp1 and case_temp2.
23062 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
23063 * lisp.h (case_temp1, case_temp2): Remove their decls.
23064 * character.h (ASCII_CHAR_P): Move from here ...
23065 * lisp.h: ... to here, so that the inline functions mentioned
23066 above can use them.
23067
23068 * dired.c (directory_files_internal_unwind): Now static.
23069
23070 * fileio.c (file_name_as_directory, directory_file_name):
23071 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
23072 Now static.
23073 (file_name_as_directory): Use const pointers when appropriate.
23074 (Fexpand_file_name): Likewise. In particular, newdir might
23075 point at constant storage, so make it a const pointer.
23076 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
23077 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
23078 signedness issues.
23079 (Fset_file_times, Finsert_file_contents, auto_save_error):
23080 Rename locals to avoid shadowing.
23081
23082 * minibuf.c (choose_minibuf_frame_1): Now static.
23083 (Ftry_completion, Fall_completions): Rename or remove locals
23084 to avoid shadowing.
23085
23086 * marker.c (bytepos_to_charpos): Remove; unused.
23087
23088 * lisp.h (verify_bytepos, count_markers): New decls,
23089 so that gcc does not warn that these functions aren't declared.
23090
23091 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
23092 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
23093 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
23094 (copy_text): Remove unused local var.
23095
23096 * filelock.c (within_one_second): Now static.
23097 (lock_file_1): Rename local to avoid shadowing.
23098
23099 * buffer.c (fix_overlays_before): Mark locals as initialized.
23100 (fix_start_end_in_overlays): Likewise. This function should be
23101 simplified by using pointers-to-pointers, but that's a different
23102 matter.
23103 (switch_to_buffer_1): Now static.
23104 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
23105 (report_overlay_modification): Rename locals to avoid shadowing.
23106
23107 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
23108 Fix pointer signedness issue.
23109 (sys_subshell): Mark local as volatile if checking for lint,
23110 to suppress a gcc -Wclobbered warning that does not seem to be right.
23111 (MAXPATHLEN): Define only if needed.
23112
23113 * process.c (serial_open, serial_configure): Move decls from here ...
23114 * systty.h: ... to here, so that they can be checked.
23115
23116 * fns.c (get_random, seed_random): Move extern decls from here ...
23117 * lisp.h: ... to here, so that they can be checked.
23118
23119 * sysdep.c (reset_io): Now static.
23120 (wait_for_termination_signal): Remove; unused.
23121
23122 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
23123 (copy_keymap_item, append_key, push_text_char_description):
23124 Now static.
23125 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
23126 (DENSE_TABLE_SIZE): Remove; unused.
23127 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
23128 (describe_map_tree):
23129 Rename locals to avoid shadowing.
23130
23131 * keyboard.c: Declare functions static if they are not used elsewhere.
23132 (echo_char, echo_dash, cmd_error, top_level_2):
23133 (poll_for_input, handle_async_input): Now static.
23134 (read_char, kbd_buffer_get_event, make_lispy_position):
23135 (make_lispy_event, make_lispy_movement, apply_modifiers):
23136 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
23137 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
23138 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
23139 (read_key_sequence, read_char): Mark locals as initialized.
23140 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
23141
23142 * keyboard.h (make_ctrl_char): New decl.
23143 (mark_kboards): Move decl here ...
23144 * alloc.c (mark_kboards): ... from here.
23145
23146 * lisp.h (force_auto_save_soon): New decl.
23147
23148 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
23149 (DEFINE_DUMMY_FUNCTION): New macro.
23150 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
23151 Use it.
23152 (main): Add casts to avoid warnings
23153 if GCC considers string literals to be constants.
23154
23155 * lisp.h (fatal_error_signal): Add decl, since it's exported.
23156
23157 * dbusbind.c: Pointer signedness fixes.
23158 (xd_signature, xd_append_arg, xd_initialize):
23159 (Fdbus_call_method, Fdbus_call_method_asynchronously):
23160 (Fdbus_method_return_internal, Fdbus_method_error_internal):
23161 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
23162 (Fdbus_register_signal): Use SSDATA when the context wants char *.
23163
23164 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
23165 if GCC considers string literals to be constants.
23166 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
23167
23168 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
23169
23170 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
23171 (print_preprocess, print_object): New macro to fix last change.
23172
23173 * print.c (print_preprocess): Don't forget font objects.
23174
23175 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
23176
23177 * emacs.c (USAGE3): Doc fixes.
23178
23179 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
23180
23181 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
23182 structure.
23183
23184 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
23185
23186 * lisp.h (VWindow_system, Qfile_name_history):
23187 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
23188 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
23189 (w32_system_caret_x, w32_system_caret_y): Declare extern.
23190
23191 * w32select.c: Don't #include "keyboard.h".
23192 (run_protected): Add extern declaration for waiting_for_input.
23193
23194 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
23195 * w32console.c (detect_input_pending, read_input_pending)
23196 (encode_terminal_code):
23197 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
23198 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
23199 (w32_system_caret_y, Qfile_name_history):
23200 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
23201 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
23202 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
23203 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
23204 * w32proc.c (Qlocal, report_file_error):
23205 * w32term.c (Vwindow_system, updating_frame):
23206 * w32uniscribe.c (initialized, uniscribe_font_driver):
23207 Remove unneeded extern declarations.
23208
23209 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
23210
23211 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
23212
23213 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
23214
23215 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
23216 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
23217 These macros can no longer be used for assignment.
23218
23219 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
23220 Assign struct members directly, instead of using BUF_BEGV etc.
23221 (record_buffer_markers, fetch_buffer_markers): New functions for
23222 recording and fetching special buffer markers.
23223 (set_buffer_internal_1, set_buffer_temp): Use them.
23224
23225 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
23226
23227 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
23228
23229 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
23230 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
23231
23232 * xdisp.c (hscroll_window_tree):
23233 (reconsider_clip_changes): Use PT instead of BUF_PT.
23234
23235 2011-03-13 Eli Zaretskii <eliz@gnu.org>
23236
23237 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
23238 $(EMACS_ROOT)/lib/intprops.h.
23239
23240 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
23241
23242 Fix more problems found by GCC 4.5.2's static checks.
23243
23244 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
23245 to unsigned char * to avoid compiler diagnostic.
23246 (xg_free_frame_widgets): Make it clear that a local variable is
23247 needed only if USE_GTK_TOOLTIP.
23248 (gdk_window_get_screen): Make it clear that this macro is needed
23249 only if USE_GTK_TOOLTIP.
23250 (int_gtk_range_get_value): New function, which avoids a diagnostic
23251 from gcc -Wbad-function-cast.
23252 (xg_set_toolkit_scroll_bar_thumb): Use it.
23253 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
23254 diagnostic from gcc -Wbad-function-cast.
23255 (get_utf8_string, xg_get_file_with_chooser):
23256 Rename locals to avoid shadowing.
23257 (create_dialog): Move locals to avoid shadowing.
23258
23259 * xgselect.c (xg_select): Remove unused var.
23260
23261 * image.c (four_corners_best): Mark locals as initialized.
23262 (gif_load): Initialize transparent_p to zero (Bug#8238).
23263 Mark another local as initialized.
23264 (my_png_error, my_error_exit): Mark with NO_RETURN.
23265
23266 * image.c (clear_image_cache): Now static.
23267 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
23268 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
23269 (x_edge_detection): Remove unnecessary cast that
23270 gcc -Wbad-function-cast diagnoses.
23271 (gif_load): Fix pointer signedness.
23272 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
23273 (jpeg_load, gif_load): Rename locals to avoid shadowing.
23274
23275 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
23276
23277 Improve quality of tests for time stamp overflow.
23278 For example, without this patch (encode-time 0 0 0 1 1
23279 1152921504606846976) returns the obviously-bogus value (-948597
23280 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
23281 reports time overflow. See
23282 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
23283 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
23284 * editfns.c: Include limits.h and intprops.h.
23285 (TIME_T_MIN, TIME_T_MAX): New macros.
23286 (time_overflow): Move earlier, to before first use.
23287 (hi_time, lo_time): New functions, for an accurate test for
23288 out-of-range times.
23289 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
23290 (Fget_internal_run_time): Don't assume time_t fits in int.
23291 (make_time): Use list2 instead of Fcons twice.
23292 (Fdecode_time): More accurate test for out-of-range times.
23293 (check_tm_member): New function.
23294 (Fencode_time): Use it, to test for out-of-range times.
23295 (lisp_time_argument): Don't rely on undefined left-shift and
23296 right-shift behavior when checking for time stamp overflow.
23297
23298 * editfns.c (time_overflow): New function, refactoring common code.
23299 (Fformat_time_string, Fdecode_time, Fencode_time):
23300 (Fcurrent_time_string): Use it.
23301
23302 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
23303 * dired.c (make_time): Move to ...
23304 * editfns.c (make_time): ... here.
23305 * systime.h: Note the move.
23306
23307 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
23308
23309 * fringe.c (update_window_fringes): Remove unused variables.
23310
23311 * unexmacosx.c (copy_data_segment): Also copy __got section.
23312 (Bug#8223)
23313
23314 2011-03-12 Eli Zaretskii <eliz@gnu.org>
23315
23316 * termcap.c [MSDOS]: Include "msdos.h".
23317 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
23318 Constify `char *' arguments and their references according to
23319 prototypes in tparam.h.
23320
23321 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
23322
23323 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
23324 Adapt all references accordingly.
23325
23326 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
23327
23328 2011-03-11 Tom Tromey <tromey@redhat.com>
23329
23330 * buffer.c (syms_of_buffer): Remove obsolete comment.
23331
23332 2011-03-11 Eli Zaretskii <eliz@gnu.org>
23333
23334 * termhooks.h (encode_terminal_code): Declare prototype.
23335
23336 * msdos.c (encode_terminal_code): Don't declare prototype.
23337
23338 * term.c (encode_terminal_code): Now external again, used by
23339 w32console.c and msdos.c.
23340
23341 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
23342 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
23343
23344 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
23345
23346 Fix some minor problems found by GCC 4.5.2's static checks.
23347
23348 * fringe.c (update_window_fringes): Mark locals as initialized
23349 (Bug#8227).
23350 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
23351
23352 * alloc.c (mark_fringe_data): Move decl from here ...
23353 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
23354 to check its interface.
23355 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
23356
23357 * fontset.c (free_realized_fontset): Now static.
23358 (Fset_fontset_font): Rename local to avoid shadowing.
23359 (fontset_font): Mark local as initialized.
23360 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
23361
23362 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
23363
23364 * xselect.c (x_disown_buffer_selections): Remove; not used.
23365 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
23366 (x_own_selection, Fx_disown_selection_internal): Rename locals
23367 to avoid shadowing.
23368 (x_handle_dnd_message): Remove local to avoid shadowing.
23369
23370 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
23371 so that the caller can use some name other than gcpro1.
23372 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
23373 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
23374 (Fx_backspace_delete_keys_p):
23375 Use them to avoid shadowing, and rename vars to avoid shadowing.
23376 (x_decode_color, x_set_name, x_window): Now static.
23377 (Fx_create_frame): Add braces to silence GCC warning.
23378 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
23379 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
23380 Remove unused locals.
23381 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
23382 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
23383 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
23384 macros.
23385
23386 * xterm.h (x_mouse_leave): New decl.
23387
23388 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
23389 Remove unused functions.
23390 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
23391 (x_calc_absolute_position): Now static.
23392 (XTread_socket): Don't define label "out" unless it's used.
23393 Don't declare local "event" unless it's used.
23394 (x_iconify_frame, x_free_frame_resources): Don't declare locals
23395 unless they are used.
23396 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
23397 (x_fatal_error_signal): Remove; not used.
23398 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
23399 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
23400 (x_error_catcher, x_connection_closed, x_error_handler):
23401 (x_error_quitter, xembed_send_message, x_iconify_frame):
23402 (my_log_handler): Rename locals to avoid shadowing.
23403 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
23404 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
23405
23406 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
23407 Rename or move locals to avoid shadowing.
23408 (tty_defined_color, merge_face_heights): Now static.
23409 (free_realized_faces_for_fontset): Remove; not used.
23410 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
23411 does not deduce is never used uninitialized.
23412 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
23413 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
23414
23415 * terminal.c (store_terminal_param): Now static.
23416
23417 * xmenu.c (menu_highlight_callback): Now static.
23418 (set_frame_menubar): Remove unused local.
23419 (xmenu_show): Rename parameter to avoid shadowing.
23420 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
23421 since they might point to immutable storage.
23422 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
23423 since it's unused otherwise.
23424
23425 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
23426 Add a FIXME, since the code still doesn't look right. (Bug#8215)
23427 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
23428 avoids a gcc -Wuninitialized diagnostic.
23429 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
23430 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
23431 does not deduce are never used uninitialized.
23432
23433 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
23434
23435 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
23436 * window.c (window_loop, size_window):
23437 (run_window_configuration_change_hook, enlarge_window): Likewise.
23438
23439 * window.c (display_buffer): Now static.
23440 (size_window): Mark variables that gcc -Wuninitialized
23441 does not deduce are never used uninitialized.
23442 * window.h (check_all_windows): New decl, to forestall
23443 gcc -Wmissing-prototypes diagnostic.
23444 * dispextern.h (bidi_dump_cached_states): Likewise.
23445
23446 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
23447 shadowing.
23448 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
23449 Include <limits.h>.
23450 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
23451 and to avoid gcc -Wuninitialized warning.
23452 (load_charset_map): Mark variables that gcc -Wuninitialized
23453 does not deduce are never used uninitialized.
23454 (load_charset): Abort instead of using uninitialized var (Bug#8229).
23455
23456 * coding.c (coding_set_source, coding_set_destination):
23457 Use "else { /* comment */ }" rather than "else /* comment */;"
23458 for clarity, and to avoid gcc -Wempty-body warning.
23459 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
23460 a block, when the outer 'i' will do.
23461 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
23462 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
23463 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
23464 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
23465 (Fdecode_sjis_char, Fdefine_coding_system_internal):
23466 Rename locals to avoid shadowing.
23467 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
23468 * coding.c (emacs_mule_char, encode_invocation_designation):
23469 Now static, since they're not used elsewhere.
23470 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
23471 (decode_coding_object, encode_coding_object, detect_coding_system):
23472 (decode_coding_emacs_mule): Mark variables that gcc
23473 -Wuninitialized does not deduce are never used uninitialized.
23474 (detect_coding_iso_2022): Initialize a local variable that might
23475 be used uninitialized. Leave a FIXME because it's not clear that
23476 this initialization is needed. (Bug#8211)
23477 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
23478 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
23479 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
23480 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
23481 Remove unused macros.
23482
23483 * category.c (hash_get_category_set): Remove unused local var.
23484 (copy_category_table): Now static, since it's not used elsewhere.
23485 * character.c (string_count_byte8): Likewise.
23486
23487 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
23488 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
23489
23490 * chartab.c (copy_sub_char_table): Now static, since it's not used
23491 elsewhere.
23492 (sub_char_table_ref_and_range, char_table_ref_and_range):
23493 Rename locals to avoid shadowing.
23494 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
23495
23496 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
23497 (BIDI_BOB): Remove unused macro.
23498
23499 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
23500 deduce are never used uninitialized.
23501 * term.c (encode_terminal_code): Likewise.
23502
23503 * term.c (encode_terminal_code): Now static. Remove unused local.
23504
23505 * tparam.h: New file.
23506 * term.c, tparam.h: Include it.
23507 * deps.mk (term.o, tparam.o): Depend on tparam.h.
23508 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
23509 Move these decls to tparam.h, and make them agree with what
23510 is actually in tparam.c. The previous trick of using incompatible
23511 decls in different modules does not conform to the C standard.
23512 All callers of tparam changed to use tparam's actual API.
23513 * tparam.c (tparam1, tparam, tgoto):
23514 Use const pointers where appropriate.
23515
23516 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
23517 * cm.h (struct cm): Likewise.
23518 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
23519 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
23520 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
23521 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
23522 (turn_on_face, init_tty): Likewise.
23523 * termchar.h (struct tty_display_info): Likewise.
23524
23525 * term.c (term_mouse_position): Rename local to avoid shadowing.
23526
23527 * alloc.c (mark_ttys): Move decl from here ...
23528 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
23529
23530 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
23531
23532 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
23533
23534 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
23535
23536 * search.c (compile_pattern_1): Remove argument regp, unused since
23537 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
23538 (compile_pattern): Don't pass it.
23539
23540 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
23541
23542 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
23543 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
23544 for ! HAVE_GTK3.
23545 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
23546
23547 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
23548
23549 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
23550 gdk_window_get_screen, gdk_window_get_geometry,
23551 gdk_x11_window_lookup_for_display and GDK_KEY_g.
23552 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
23553 (xg_get_pixbuf_from_pixmap): New function.
23554 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
23555 to Pixmap, take frame as parameter, remove GdkColormap parameter.
23556 Call xg_get_pixbuf_from_pixmap instead of
23557 gdk_pixbuf_get_from_drawable.
23558 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
23559 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
23560 (xg_check_special_colors): Use GtkStyleContext and its functions
23561 for HAVE_GTK3.
23562 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
23563 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
23564 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
23565 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
23566 Call gtk_widget_get_preferred_size.
23567 (xg_frame_resized): gdk_window_get_geometry only takes 5
23568 parameters.
23569 (xg_win_to_widget, xg_event_is_for_menubar):
23570 Call gdk_x11_window_lookup_for_display.
23571 (xg_set_widget_bg): New function.
23572 (delete_cb): New function.
23573 (xg_create_frame_widgets): Connect delete-event to delete_cb.
23574 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
23575 (xg_set_background_color): Call xg_set_widget_bg.
23576 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
23577 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
23578 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
23579 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
23580 if ! HAVE_GTK3.
23581 (update_frame_tool_bar): Call gtk_widget_hide.
23582 (xg_initialize): Use GDK_KEY_g.
23583
23584 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
23585 if ! HAVE_GTK3
23586 (x_session_initialize): Call gdk_x11_set_sm_client_id.
23587
23588 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
23589 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
23590 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
23591
23592 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
23593
23594 * w32xfns.c (select_palette): Check success of RealizePalette against
23595 GDI_ERROR, not zero.
23596
23597 See ChangeLog.11 for earlier changes.
23598
23599 ;; Local Variables:
23600 ;; coding: utf-8
23601 ;; End:
23602
23603 Copyright (C) 2011-2013 Free Software Foundation, Inc.
23604
23605 This file is part of GNU Emacs.
23606
23607 GNU Emacs is free software: you can redistribute it and/or modify
23608 it under the terms of the GNU General Public License as published by
23609 the Free Software Foundation, either version 3 of the License, or
23610 (at your option) any later version.
23611
23612 GNU Emacs is distributed in the hope that it will be useful,
23613 but WITHOUT ANY WARRANTY; without even the implied warranty of
23614 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23615 GNU General Public License for more details.
23616
23617 You should have received a copy of the GNU General Public License
23618 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.