]> code.delx.au - gnu-emacs/blob - src/ChangeLog
Fix some stat-related races.
[gnu-emacs] / src / ChangeLog
1 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
2
3 Fix some stat-related races.
4 * fileio.c (Fwrite_region): Avoid race condition if a file is
5 removed or renamed by some other process immediately after Emacs
6 writes it but before Emacs stats it. Do not assume that stat (or
7 fstat) succeeds.
8 * image.c (slurp_file): Resolve the file name with fopen + fstat
9 rather than stat + fopen.
10 (pbm_read_file) [0]: Remove unused code with stat race.
11 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
12 Remove ineffective code with stat race.
13
14 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15
16 * doc.c (get_doc_string): Don't signal an error if the file is missing.
17
18 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
19
20 * nsterm.m (hold_event_q): New static variable.
21 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
22 ! q_event_ptr.
23 (hold_event): New function.
24 (ns_read_socket): If hold_event_q have events, store them and
25 return (Bug#12384).
26 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
27 is zero (Bug#12384).
28
29 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
30
31 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
32
33 2012-10-12 Eli Zaretskii <eliz@gnu.org>
34
35 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
36
37 * fileio.c (check_existing): New function.
38 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
39 instead of calling 'stat', when what's needed is to check whether
40 a file exists. This avoids expensive system calls on MS-Windows.
41 (Bug#12587)
42
43 * w32.c (init_environment): Call 'check_existing' instead of
44 'stat'.
45
46 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
47 determine whether a file exists and is not a directory.
48
49 * lisp.h (check_existing): Add prototype.
50
51 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
52
53 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
54
55 2012-10-12 Glenn Morris <rgm@gnu.org>
56
57 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
58
59 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
60
61 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
62
63 * eval.c (Fautoload): Remember previous autoload status in load-history.
64
65 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
66
67 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
68 * lread.c (load_each_byte, new_backquote_flag, readchar)
69 (read_filtered_event, lisp_file_lexically_bound_p)
70 (safe_to_load_version, Fload, complete_filename_p, openp)
71 (build_load_history, readevalloop, read_escape, read1)
72 (string_to_number, read_vector, read_list):
73 * macros.c (Fstart_kbd_macro):
74 * marker.c (CONSIDER):
75 * menu.c (parse_single_submenu, digest_single_submenu)
76 (find_and_return_menu_selection, Fx_popup_menu):
77 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
78 (Ftry_completion):
79 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
80 (ns_menu_show):
81 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
82 (xmenu_show, xdialog_show):
83 Use bool for booleans.
84 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
85 as it's not a predicate. All uses changed. Omit unnecessary
86 buffer termination.
87
88 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
89
90 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
91 (save_excursion_restore): Do not restore mark if it was not saved.
92
93 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
94
95 * marker.c (cached_modiff): EMACS_INT, not int.
96
97 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
98 instead of having a wrong decl.
99 * nsmenu.m (waiting_for_input): Remove wrong decl.
100
101 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
102
103 keyboard.c, keymap.c: Use bool for booleans.
104 * dispnew.c (sit_for): Distinguish between 3-way display_option
105 and boolean do_display.
106 * keyboard.c (single_kboard, this_command_key_count_reset)
107 (waiting_for_input, echoing, immediate_quit, input_pending)
108 (interrupt_input, interrupts_deferred, pop_kboard)
109 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
110 (command_loop_1, adjust_point_for_property)
111 (safe_run_hooks_error, input_polling_used, read_char):
112 (help_char_p, readable_events, kbd_buffer_events_waiting)
113 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
114 (lucid_event_type_list_p, get_input_pending):
115 (gobble_input, menu_separator_name_p, menu_bar_item)
116 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
117 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
118 (keyremap_step, test_undefined, read_key_sequence)
119 (detect_input_pending, detect_input_pending_ignore_squeezables)
120 (detect_input_pending_run_timers, requeued_events_pending_p)
121 (quit_throw_to_read_char, Fset_input_interrupt_mode):
122 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
123 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
124 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
125 (accessible_keymaps_1, Fkey_description, push_key_description):
126 (shadow_lookup, struct where_is_internal_data)
127 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
128 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
129 (describe_map, describe_vector):
130 * menu.c (single_menu_item):
131 * nsmenu.m (ns_update_menubar):
132 * process.c (wait_reading_process_output):
133 * search.c (scan_buffer, scan_newline):
134 Use bool for boolean.
135 * keyboard.c (timers_run, swallow_events)
136 (detect_input_pending_run_timers):
137 * process.c (wait_reading_process_output):
138 Use unsigned for counter where wraparound-on-overflow is desired,
139 since unsigned is guaranteed to have that behavior and signed is not.
140 (read_char): Use ptrdiff_t for string length.
141 (get_input_pending): Remove first argument, since it was always
142 the same pointer-to-int (now pointer-to-boolean) &input_pending,
143 and behave as if it had that value. Return new value of
144 input_pending. All callers changed.
145 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
146 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
147 a string length.
148 * keymap.c (push_key_description): Omit last arg, which was always 1.
149 All callers changed.
150
151 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
152
153 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
154
155 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
156 ($(BLD)/term.$(O)): Update dependencies.
157
158 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
159
160 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
161 * lisp.h (enum pvec_type): Adjust comments and omit explicit
162 initializer for PVEC_NORMAL_VECTOR.
163
164 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
165
166 Clean out old termopts cruft.
167 * termopts.h (flow_control, meta_key): Remove unused decls.
168 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
169 Don't include termopts.h.
170
171 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
172
173 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
174
175 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
176
177 * commands.h (immediate_quit): Remove duplicate decl.
178
179 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
180
181 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
182 caching.
183 (nsfont_open): Remove setting of Vfonts_in_cache.
184 (syms_of_nsfont): Remove initialization of Vfonts_in_cache
185
186 2012-10-09 Eli Zaretskii <eliz@gnu.org>
187
188 * w32fns.c (w32_last_error): Change the return value to DWORD, to
189 match what GetLastError returns. Explain why the function is
190 needed.
191
192 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
193 'is_tooltip_frame', to avoid confusion with its global namesake.
194
195 2012-10-08 Daniel Colascione <dancol@dancol.org>
196
197 * xdisp.c (start_hourglass): Call w32_note_current_window when
198 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
199 build that caused Emacs to display the hourglass cursor forever.
200
201 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
202 which is broken under remote desktop, calculate the number of
203 colors available for a display based on the display's number of
204 planes and number of bits per pixel per plane. (bug#10397).
205
206 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
207
208 * nsfont.m (Vfonts_in_cache): New variable.
209 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
210 are used. Add cached fonts to Vfonts_in_cache.
211 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
212
213 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
214
215 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
216 in nt/config.nt.
217 (FONT_H): Define after FRAME_H.
218 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
219 Update dependencies.
220
221 * w32term.c: Remove leftover declaration of keyboard_codepage.
222
223 2012-10-08 Eli Zaretskii <eliz@gnu.org>
224
225 * makefile.w32-in (FONT_H): Add $(FRAME_H).
226 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
227 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
228 (GLOBAL_SOURCES): Add cygw32.c.
229 ($(BLD)/unexw32.$(O)):
230 ($(BLD)/w32.$(O)):
231 ($(BLD)/w32console.$(O)):
232 ($(BLD)/w32fns.$(O)):
233 ($(BLD)/w32heap.$(O)):
234 ($(BLD)/w32menu.$(O)):
235 ($(BLD)/w32proc.$(O)): Add w32common.h.
236
237 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
238 'const char *'.
239 (x_to_w32_color): Don't modify the argument, modify a copy instead.
240
241 2012-10-08 Daniel Colascione <dancol@dancol.org>
242
243 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
244 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
245 accidental message numbering hole. Change other messages to
246 match.
247
248 * w32select.h (HAVE_W32SELECT): Remove.
249
250 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
251 w32common.h instead of w32heap.h
252
253 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
254 (get_allocation_unit, get_processor_type, get_w32_major_version)
255 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
256 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
257 (OS_NT, os_subtype, cache_system_info): Move declarations to
258 w32common.
259
260 * w32heap.c: Include w32common.h.
261 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
262 (w32_minor_version, w32_build_number, w32_subtype): Remove
263 duplicate definitions.
264
265 * w32fns.c: Include w32common.h; include w32heap.h only in
266 WINDOWSNT.
267
268 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
269 Use `report_file_error' instead of `error' in order to better
270 inform users of what went wrong. Increase NTGUI_UNICODE file
271 dialog box file name length to 32k, the maximum allowed by the NT
272 kernel.
273
274 * w32common.h: New file.
275 (ROUND_UP, ROUND_DOWN, get_page_size)
276 (get_allocation_unit, get_processor_type, get_w32_major_version)
277 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
278 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
279 (OS_NT, os_subtype, cache_system_info): Move here.
280
281 * unexw32.c, unexcw.c: Include w32common.h.
282
283 * emacs.c (main): Use (defined (WINDOWSNT) || defined
284 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
285 to call syms_of_w32select.
286
287 * cygw32.h: Remove obsolete EXFUN declarations.
288
289 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
290
291 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
292 of w32inevt.o from SOME_MACHINE_OBJECTS.
293
294 2012-10-08 Daniel Colascione <dancol@dancol.org>
295
296 * image.c: Permanent fix for JPEG compilation issue --- limit
297 jpeglib `boolean' redefinition to Cygwin builds.
298
299 2012-10-08 Eli Zaretskii <eliz@gnu.org>
300
301 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
302
303 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
304 Cygwin.
305
306 2012-10-08 Daniel Colascione <dancol@dancol.org>
307
308 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
309 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
310 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
311 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
312 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
313 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
314 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
315 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
316 now a supported configuration.
317
318 * Makefile.in: consolidate image variables into LIBIMAGE; add
319 W32_OBJ and W32_LIBS. Compile new files.
320
321 * conf_post.h:
322 (_DebPrint) declare tracing facility for W32 debugging. We need
323 to unify tracing later.
324
325 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
326 unconditional use of W32 Unicode functions. Cygwin runs only on
327 100% Unicode operating systems.
328
329 * cygw32.c: New file. Define Cygwin-specific facilities.
330 (Fcygwin_convert_path_to_windows)
331 (Fcygwin_convert_path_from_windows): New user functions for
332 accessing Cygwin path-munging routines.
333
334 * cygw32.h: New file.
335 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
336 UTF-16LE strings temporarily inside non-Lisp-visible string
337 objects.
338
339 (w32_strerror): Just what it says on the tin.
340
341 * emacs.c: Make the NS fork-then-exec code for daemon-launching
342 also run for Cygwin; both systems have the same problem with using
343 GUI facilities in a forked child. Also call syms_of_cygw32,
344 syms_of_w32select in correct places.
345
346 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
347 needs fork-then-exec for daemon launching.
348
349 * font.h: Include frame.h.
350
351 * image.c: Use the image library cache machinery only when we're
352 compiling for native WINDOWSNT; Cygwin can use shared libraries
353 like any other Unixlike system.
354
355 * keyboard.c: Clarify a comment regarding the input loop.
356
357 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
358 functions directly instead of trying to detect at runtime that our
359 host operating system supports them. We make this change for two
360 reasons: Cygwin lacks support for the multibyte character
361 conversion functions used by the legacy menu code, and Cygwin
362 never needs to rely on non-Unicode APIs.
363
364 * unexw32.c (hinst): Declare extern.
365
366 * w32.c: Change header order;
367 (w32_strerror): Move to w32fns.c because we need it for
368 non-WINDOWSNT builds.
369
370 * w32.h: Add #error macro to make sure we don't include w32.h for
371 Cygwin builds. Remove w32select declarations.
372
373 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
374 w32fns.c. w32console.c is WINDOWSNT-only.
375
376 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
377 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
378 POSIXy alternative.
379 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
380 (w32_major_version, w32_minor_version, w32_build_number)
381 (os_subtype, sound_type): Define here
382 (w32_defined_color): Make color parameter const for consistency
383 with other _defined_color functions.
384 (w32_createwindow): Unconditionally call w32_init_class instead of
385 doing so only when hprevinst is non-NULL. Plumbing hprevinst
386 through the code is complex and unnecessary because class
387 registration is practically free.
388 (w32_name_of_message): New EMACSDEBUG-only function.
389 (Fset_message_beep): Move here
390 (Fx_open_connection): Require that the display name for Windows be
391 "w32" for consistency, emacsclient disambiguation, and maybe, one
392 day, multi-window-system support.
393 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
394 Cygwin files for W32 GUI facilities, since these clearly don't
395 expect Cygwin names.
396 (_DebPrint): Define.
397 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
398 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
399 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
400 (w32_last_error): Remove.
401
402 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
403
404 * w32heap.c (syspage_mask): Declare here.
405 (cache_system_info): Remove.
406
407 * w32inevt.c (faked_key): Define globally, not statically.
408 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
409 (w32_console_toggle_lock_key): Move to w32fns.c.
410
411 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
412
413 * w32proc.c (_DebPrint): Move to w32fns.c.
414 * w32select.c: Include string.h, stdio.h for Cygwin.
415 * w32select.h: New File.
416
417 * w32term.c: Include io.h for non-CYGWIN builds; needed for
418 get_osfhandle.
419 (w32_message_fd): New variable. Under Cygwin, holds the file
420 descriptor the system used to tell us about pending thread
421 messages.
422
423 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
424 that prevented compilation under non-WINDOWSNT systems.
425
426 (w32_initialize): Open /dev/windows and assign it to
427 w32_message_fd. Provide w32 feature.
428
429 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
430 (WM_EMACS_INPUT_READY): add.
431 (prepend_msg, w32_message_fd): Declare globally.
432
433 * w32xfns.c:
434 (keyboard_handle): Use only when WINDOWSNT.
435 (notify_msg_ready): New function. Posts a message to the main
436 thread's message queue under CYGWIN, which wakes up the main
437 thread from select(2) by making the /dev/windows file descriptor
438 ready. Under WINDOWSNT, it sets an event the same way the old
439 code did.
440
441 (post, prepend_msg): Actually call notify_msg_ready instead of
442 setting the input event directly.
443
444 2012-10-07 Eli Zaretskii <eliz@gnu.org>
445
446 * ralloc.c (relinquish): If a heap is ready to be relinquished,
447 but it still has blocs in it, don't return it to the system,
448 instead of aborting. (Bug#12402)
449
450 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
451
452 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
453
454 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
455 MAC_OS_X_VERSION_10_6.
456 (syms_of_nsterm): Remove comment about Panther and above for
457 ns-antialias-text.
458 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
459 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
460 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
461
462 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
463 MAC_OS_X_VERSION_10_4.
464
465 * nsmenu.m (fillWithWidgetValue:): Remove code for <
466 MAC_OS_X_VERSION_10_2.
467
468 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
469
470 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
471 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
472
473 * nsterm.m (ns_in_resize): Remove (Bug#12479).
474 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
475 (ns_clear_frame, sendEvent, windowDidResize, drawRect:): Remove
476 ns_in_resize check.
477 (ns_clear_frame_area): Remove resize handle code.
478
479 * nsfns.m (ns_in_resize): Remove.
480 (x_set_icon_name, ns_set_name, ns_set_name_as_filename): Remove
481 ns_in_resize check.
482
483 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
484
485 Improve sys_siglist detection.
486 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
487 defined as a macro, as is done in Solaris.
488 (sys_siglist_entries): New macro.
489 (save_strsignal): Use it.
490 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
491 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
492
493 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
494
495 * nsfns.m (Fx_create_frame): Call x_default_parameter with
496 fullscreen/Fullscreen.
497
498 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
499 tobar_height is new.
500
501 * nsterm.m (x_make_frame_visible): Check for fullscreen.
502 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
503 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
504 (windowDidResize:): Check for correct window if old style fullscreen.
505 Capitalize word in comment. Remove incorrect comment.
506 (initFrameFromEmacs:): tbar_height renamed tibar_height.
507 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
508 error in drawing background.
509 (toggleFullScreen:): Remove comment. Rearrange calls.
510 Set toolbar values to zero, save old height in tobar_height.
511 Restore tool bar height when leaving fullscreen.
512 (canBecomeMainWindow): New function.
513
514 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
515
516 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
517
518 2012-10-05 Eli Zaretskii <eliz@gnu.org>
519
520 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
521
522 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
523 that time stamps of directories could also be changed. Don't
524 request the too broad GENERIC_WRITE, only the more restrictive
525 FILE_WRITE_ATTRIBUTES access rights.
526
527 * fileio.c (Fset_file_times): Special-case ignoring errors for
528 directories only on MSDOS, not on MS-Windows.
529
530 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
531
532 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
533
534 2012-10-04 Eli Zaretskii <eliz@gnu.org>
535
536 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
537 see whether CreateFile failed.
538
539 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
540
541 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
542 to avoid similar races.
543 * keyboard.c (pending_signals): Now bool, not int.
544
545 Port timers to OpenBSD, plus check for timer failures.
546 OpenBSD problem reported by Han Boetes.
547 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
548 and/or setitimer.
549 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
550 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
551 like OpenBSD, which has timer_settime but does not declare it.
552 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
553 whether to use itimerspec-related primitives. All uses of
554 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
555
556 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
557
558 * profiler.c (handle_profiler_signal): Fix a malloc race
559 that caused Emacs to hang on Fedora 17 when profiling Lisp.
560
561 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
562
563 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
564
565 2012-10-02 Eli Zaretskii <eliz@gnu.org>
566
567 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
568 consistent with the change in return value of 'safe_strsignal'.
569
570 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
571
572 Prefer plain 'static' to 'static inline' (Bug#12541).
573 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
574 (bidi_set_sor_type, bidi_push_embedding_level)
575 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
576 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
577 (bidi_cache_search, bidi_cache_ensure_space)
578 (bidi_cache_iterator_state, bidi_cache_find)
579 (bidi_peek_at_next_level, bidi_set_paragraph_end)
580 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
581 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
582 Now 'static', not 'static inline'.
583
584 Count overruns when profiling; change units to ns.
585 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
586 Give extra weight to samples after overruns, to attempt to count
587 the time more accurately.
588 (setup_cpu_timer): Change sampling interval units from ms to ns, since
589 the underlying primitives nominally do ns.
590 (Fprofiler_cpu_start): Document the change. Mention that
591 the sampling intervals are only approximate.
592
593 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
594
595 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
596
597 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
598 case for the special 0 coding-system.
599
600 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
601 (Fmake_overlay): Remove redundant tests.
602 (fix_start_end_in_overlays): Remove redundant recentering.
603
604 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
605
606 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
607 Update dependencies.
608
609 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
610
611 Fix a malloc race condition involving strsignal.
612 A signal can arrive in the middle of a malloc, and Emacs's signal
613 handler can invoke strsignal, which can invoke malloc, which is
614 not portable. This race condition bug makes Emacs hang on GNU/Linux.
615 Fix it by altering the signal handler so that it does not invoke
616 strsignal.
617 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
618 * process.c (status_message): Use const pointer, in case strsignal
619 is #defined to safe_strsignal.
620 * sysdep.c (sys_siglist, init_signals): Always define and
621 initialize a substitute sys_siglist if the system does not define
622 one, even if HAVE_STRSIGNAL.
623 (safe_strsignal): Rename from strsignal. Always define,
624 using sys_siglist. Return a const pointer.
625 * syssignal.h (safe_strsignal): New decl.
626 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
627
628 2012-10-01 Eli Zaretskii <eliz@gnu.org>
629
630 * w32proc.c (timer_loop): Fix code that waits for timer
631 expiration, to avoid high CPU usage.
632
633 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
634
635 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
636 (sweep_weak_table): Remove redundant prototypes.
637
638 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
639
640 * emacs.c: Move the inclusion of TERM_HEADER after including
641 windows.h on WINDOWSNT. This avoids compilation problems with
642 MSVC.
643
644 2012-10-01 Eli Zaretskii <eliz@gnu.org>
645
646 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
647 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
648 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
649 as the previous version used 'void *'.
650
651 * ralloc.c (ROUNDUP): Fix last change.
652 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
653 'size_t'.
654
655 * w32proc.c <disable_itimers>: New static flag.
656 (init_timers): Initialize it to zero, after creating the critical
657 sections used by the timer threads.
658 (term_timers): Set to 1 before deleting the critical sections.
659 (getitimer, setitimer): If disable_itimers is non-zero, return an
660 error indication without doing anything. Reported by Fabrice
661 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
662 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
663 return results.
664 [!HAVE_SETITIMER]: Behave as the previous version that didn't
665 support timers.
666
667 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
668 term_ntproc after all the other bookkeeping, to get timers working
669 as long as possible.
670
671 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
672
673 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
674 Suggested by Juri Linkov in
675 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
676
677 Prefer plain 'static' to 'static inline' (Bug#12541).
678 With static functions, modern compilers inline pretty well by
679 themselves; advice from programmers often hurts as much as it helps.
680 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
681 this change shrinks the text size of the Emacs executable by 1.1%
682 without affecting CPU significantly in my benchmark.
683 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
684 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
685 (mark_maybe_object, mark_maybe_pointer, bounded_number):
686 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
687 (bset_auto_fill_function, bset_auto_save_file_format)
688 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
689 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
690 (bset_cache_long_line_scans, bset_case_fold_search)
691 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
692 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
693 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
694 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
695 (bset_header_line_format, bset_indicate_buffer_boundaries)
696 (bset_indicate_empty_lines, bset_invisibility_spec)
697 (bset_left_fringe_width, bset_major_mode, bset_mark)
698 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
699 (bset_name, bset_overwrite_mode, bset_pt_marker)
700 (bset_right_fringe_width, bset_save_length)
701 (bset_scroll_bar_width, bset_scroll_down_aggressively)
702 (bset_scroll_up_aggressively, bset_selective_display)
703 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
704 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
705 (set_buffer_overlays_after):
706 * category.c (bset_category_table):
707 * charset.c (read_hex):
708 * coding.c (produce_composition, produce_charset)
709 (handle_composition_annotation, handle_charset_annotation)
710 (char_encodable_p):
711 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
712 (assign_row, set_frame_matrix_frame, make_current)
713 (add_row_entry):
714 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
715 * fns.c (maybe_resize_hash_table):
716 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
717 * gmalloc.c (register_heapinfo):
718 * image.c (lookup_image_type):
719 * intervals.c (set_interval_object, set_interval_left)
720 (set_interval_right, copy_interval_parent, rotate_right)
721 (rotate_left, balance_possible_root_interval):
722 * keyboard.c (kset_echo_string, kset_kbd_queue)
723 (kset_keyboard_translate_table, kset_last_prefix_arg)
724 (kset_last_repeatable_command, kset_local_function_key_map)
725 (kset_overriding_terminal_local_map, kset_real_last_command)
726 (kset_system_key_syms, clear_event, set_prop):
727 * lread.c (digit_to_number):
728 * marker.c (attach_marker, live_buffer, set_marker_internal):
729 * nsterm.m (ns_compute_glyph_string_overhangs):
730 * process.c (pset_buffer, pset_command)
731 (pset_decode_coding_system, pset_decoding_buf)
732 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
733 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
734 (pset_status, pset_tty_name, pset_type, pset_write_queue):
735 * syntax.c (bset_syntax_table, dec_bytepos):
736 * terminal.c (tset_param_alist):
737 * textprop.c (interval_has_some_properties)
738 (interval_has_some_properties_list):
739 * window.c (wset_combination_limit, wset_dedicated)
740 (wset_display_table, wset_hchild, wset_left_fringe_width)
741 (wset_left_margin_cols, wset_new_normal, wset_new_total)
742 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
743 (wset_right_fringe_width, wset_right_margin_cols)
744 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
745 (wset_vertical_scroll_bar_type, wset_window_parameters):
746 * xdisp.c (wset_base_line_number, wset_base_line_pos)
747 (wset_column_number_displayed, wset_region_showing)
748 (window_box_edges, run_window_scroll_functions)
749 (append_glyph_string_lists, prepend_glyph_string_lists)
750 (append_glyph_string, set_glyph_string_background_width)
751 (append_glyph, append_composite_glyph)
752 (take_vertical_position_into_account):
753 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
754 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
755 (lface_hash, lface_same_font_attributes_p, lookup_face):
756 * xml.c (libxml2_loaded_p):
757 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
758 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
759 Now 'static', not 'static inline'.
760
761 * bidi.c: Tune.
762 (bidi_copy_it): Do the whole copy with a single memcpy.
763 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
764
765 Revert the FOLLOW-SYMLINKS change for file-attributes.
766 Doing it right would require several changes to Tramp, and there's
767 not enough time to get that tested before the freeze today.
768 * dired.c (directory_files_internal, Ffile_attributes):
769 Undo last change.
770
771 * frame.c (x_report_frame_params): Port better to wider ints.
772 Do not assume that EMACS_UINT is the same width as uprintmax_t,
773 or that pointers can be printed in 15 decimal digits.
774 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
775
776 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
777
778 Support x64 build on MS-Windows.
779 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
780 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
781 compatibility with x64.
782 (x_get_focus_frame): Add prototype.
783
784 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
785 defining an XRectangle structure.
786
787 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
788 arithmetics for compatibility with x64.
789
790 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
791 compatibility with x64.
792
793 * w32heap.h: Adjust prototypes and declarations.
794
795 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
796 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
797 DWORD, long, and unsigned long, for compatibility with x64.
798 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
799 (sbrk): Argument is now of type ptrdiff_t.
800
801 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
802 less than 0x0500.
803 (w32_msg_pump): Use WPARAM type for 'result'.
804
805 * w32.c (init_environment, get_emacs_configuration): Support AMD64
806 architecture.
807 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
808 compatibility with x64.
809
810 * vm-limit.c (lim_data): Now size_t.
811 (check_memory_limits): Adjust prototypes of real_morecore and
812 __morecore to receive argument of type ptrdiff_t. Use size_t for
813 five_percent and data_size.
814
815 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
816 variables, for compatibility with x64.
817 (rva_to_section, offset_to_section, relocate_offset)
818 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
819 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
820 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
821 for compatibility with x64.
822
823 * sysdep.c (STDERR_FILENO): Define if not already defined.
824
825 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
826 (__morecore): Argument type is now ptrdiff_t.
827 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
828 (relinquish): Use ptrdiff_t type for 'excess'.
829 (r_alloc_sbrk): Argument type is now ptrdiff_t.
830
831 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
832 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
833 instead of a literal number.
834
835 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
836 (min): Define only if not already defined.
837
838 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
839 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
840 hosts.
841
842 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
843 'bitmaps' is a pointer.
844
845 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
846
847 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
848
849 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
850
851 file-attributes has a new optional arg FOLLOW-SYMLINKS.
852 * dired.c (directory_files_internal, Ffile_attributes):
853 New arg follow_symlinks. All uses changed.
854
855 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
856
857 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
858
859 2012-09-30 Eli Zaretskii <eliz@gnu.org>
860
861 Support atimers and CPU profiler via profile.c on MS-Windows.
862 * w32proc.c (sig_mask, crit_sig): New static variables.
863 (sys_signal): Support SIGALRM and SIGPROF.
864 (sigemptyset, sigaddset, sigfillset, sigprocmask)
865 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
866 sigfillset, and sigprocmask are no longer no-ops.
867 (sigismember): New function.
868 (struct itimer_data): New definition.
869 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
870 (crit_prof): New static variables.
871 (MAX_SINGLE_SLEEP): New definition.
872 (timer_loop, stop_timer_thread, term_timers, init_timers)
873 (start_timer_thread, getitimer, setitimer): New functions.
874 (alarm): No longer a no-op, calls setitimer.
875
876 * w32.c (term_ntproc): Call term_timers.
877 (init_ntproc): Make sure all signals are unblocked at startup, to
878 erase any traces of dumping. Call init_timers.
879
880 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
881 Windows-specific code to display the hourglass mouse pointer is no
882 longer used.
883 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
884 to hourglass timer expiration.
885 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
886 Remove, no longer used.
887 (w32_note_current_window, show_hourglass, hide_hourglass):
888 New functions, in support of hourglass cursor display similar to other
889 window systems.
890 (syms_of_w32fns): Don't initialize hourglass_timer.
891
892 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
893 WINDOWSNT as well.
894 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
895
896 * w32.h (init_timers, term_timers): Add prototypes.
897
898 2012-09-30 Kenichi Handa <handa@gnu.org>
899
900 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
901 to the buffer relocation which may be caused by ccl_driver.
902
903 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
904
905 * xfns.c (Fx_file_dialog): Update comment.
906
907 * w32fns.c (Fx_file_dialog): Update comment.
908
909 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
910 Initialize panel name field if OSX >= 10.6.
911
912 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
913
914 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
915
916 * nsterm.m (NEW_STYLE_FS): New define.
917 (ns_fullscreen_hook, windowWillEnterFullScreen)
918 (windowDidEnterFullScreen, windowWillExitFullScreen)
919 (windowDidExitFullScreen, toggleFullScreen, handleFS)
920 (setFSValue): New functions.
921 (EmacsFSWindow): New implementation.
922 (canBecomeKeyWindow): New function for EmacsFSWindow.
923 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
924 (dealloc): Release nonfs_window if in fullscreen.
925 (updateFrameSize:): Call windowDidMove to update top/left.
926 (windowWillResize:toSize:): Check if frame is still maximized.
927 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
928 next_maximized, maximized_width, maximized_height and nonfs_window.
929 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
930 tbar_height.
931 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
932 fullscreen. Set maximized_width/height. Act on next_maximized.
933
934 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
935 (EmacsView): Add variables for fullscreen.
936 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
937 (EmacsFSWindow): New interface for fullscreen.
938
939 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
940
941 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
942
943 2012-09-30 Chong Yidong <cyd@gnu.org>
944
945 * fns.c (Frandom): Doc fix.
946
947 2012-09-30 Martin Rudalics <rudalics@gmx.at>
948
949 * window.c (Vwindow_combination_limit): New default value.
950 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
951
952 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
953
954 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
955 Suggested by Eli Zaretskii in
956 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
957
958 2012-09-30 Eli Zaretskii <eliz@gnu.org>
959
960 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
961 HAVE_TIMER_SETTIME is defined.
962
963 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
964
965 Profiler improvements: more-accurate timers, overflow checks.
966 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
967 signal.h, setjmp.h. Include systime.h instead.
968 (saturated_add): New function.
969 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
970 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
971 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
972 New static vars.
973 (enum profiler_cpu_running): New enum.
974 (profiler_cpu_running): Now of that enum type, not bool.
975 All uses changed to store the new value.
976 (handle_profiler_signal): Rename from sigprof_handler_1,
977 for consistency with other handlers. Do not check whether
978 cpu_log is a hash-table if garbage collecting, since it
979 doesn't matter in that case.
980 (deliver_profiler_signal): Rename from sigprof_handler,
981 for consistency with other handlers.
982 (setup_cpu_timer): New function, with much of what used to be in
983 Fprofiler_cpu_start. Check for out-of-range argument.
984 Prefer timer_settime if available, and prefer
985 thread cputime clocks, then process cputime clocks, then
986 monotonic clocks, to the old realtime clock. Use make_timeval
987 to round more-correctly when falling back to setitimer.
988 (Fprofiler_cpu_start): Use it.
989 (Fprofiler_cpu_stop): Prefer timer_settime if available.
990 Don't assume that passing NULL as the 2nd argument of setitimer
991 is the same as passing a pointer to all-zero storage.
992 Ignore SIGPROF afterwards.
993 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
994 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
995 non-fatal signal handlers. Ignore SIGPROF on startup.
996 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
997 in profiler.c, since sysdep.c now uses it.
998
999 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
1000 Suggested by Eli Zaretskii in
1001 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1002
1003 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
1004
1005 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1006
1007 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
1008
1009 * lisp.h (struct backtrace): Remove indirection for `function' field.
1010 * xdisp.c (redisplay_internal):
1011 * profiler.c (record_backtrace, sigprof_handler_1):
1012 * alloc.c (Fgarbage_collect):
1013 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
1014 (Fbacktrace_frame): Adjust accordingly.
1015
1016 2012-09-28 Glenn Morris <rgm@gnu.org>
1017
1018 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
1019 (Frun_hook_with_args_until_failure): Doc fixes.
1020
1021 2012-09-28 Eli Zaretskii <eliz@gnu.org>
1022
1023 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
1024 Qautomatic_redisplay and change the symbol name. All users changed.
1025
1026 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
1027
1028 * profiler.c (sigprof_handler): Fix race condition.
1029
1030 2012-09-28 Glenn Morris <rgm@gnu.org>
1031
1032 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
1033
1034 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
1035
1036 Check more robustly for timer_settime.
1037 * Makefile.in (LIB_TIMER_TIME): New macro.
1038 (LIBES): Add it.
1039 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
1040 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
1041 call timer_settime.
1042
1043 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1044
1045 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
1046
1047 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1048
1049 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1050
1051 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
1052
1053 * character.h (MAYBE_UNIFY_CHAR): Remove.
1054 * charset.c, charset.h (maybe_unify_char): Now static.
1055 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
1056 Since this stuff is now private to charset.c, there's no need for
1057 a public macro and no need to inline by hand.
1058
1059 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1060 Stefan Monnier <monnier@iro.umontreal.ca>
1061 Juanma Barranquero <lekktu@gmail.com>
1062
1063 * profiler.c: New file.
1064 * Makefile.in (base_obj): Add profiler.o.
1065 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
1066 ($(BLD)/profiler.$(O)): New target.
1067 * emacs.c (main): Call syms_of_profiler.
1068 * alloc.c (Qautomatic_gc): New constant.
1069 (MALLOC_PROBE): New macro.
1070 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
1071 (total_bytes_of_live_objects): New function.
1072 (Fgarbage_collect): Use it. Record itself in backtrace_list.
1073 Call malloc_probe for the memory profiler.
1074 (syms_of_alloc): Define Qautomatic_gc.
1075 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
1076 race condition.
1077 (struct backtrace): Move definition...
1078 * lisp.h (struct backtrace): ..here.
1079 (Qautomatic_gc, profiler_memory_running): Declare vars.
1080 (malloc_probe, syms_of_profiler): Declare functions.
1081 * xdisp.c (Qautomatic_redisplay): New constant.
1082 (redisplay_internal): Record itself in backtrace_list.
1083 (syms_of_xdisp): Define Qautomatic_redisplay.
1084
1085 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1086 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
1087
1088 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
1089
1090 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
1091
1092 Prefer POSIX timers if available.
1093 They avoid a race if the timer is too close to the current time.
1094 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
1095 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
1096 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
1097
1098 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1099
1100 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
1101 CHAR_STRING_ADVANCE.
1102 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
1103 STRING_CHAR_ADVANCE.
1104
1105 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
1106
1107 Move Vlibrary_cache to emacs.c and reset before dumping.
1108
1109 * lisp.h (reset_image_types): Declare.
1110 [WINDOWSNT] (Vlibrary_cache): Declare.
1111
1112 * image.c (reset_image_types): New function.
1113
1114 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
1115 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
1116 (Fdump_emacs): Reset Vlibrary_cache and image_types.
1117
1118 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
1119 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
1120
1121 * w32.h (Vlibrary_cache): Do not declare.
1122
1123 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1124
1125 * w32proc.c (sys_signal): Handle all signals defined by the
1126 MS-Windows runtime, not just SIGCHLD. Actually install the signal
1127 handlers for signals supported by Windows. Don't override
1128 term_ntproc as the handler for SIGABRT.
1129 (sigaction): Rewrite to call sys_signal instead of duplicating its
1130 code.
1131 (sys_kill): Improve commentary.
1132
1133 * w32.c (term_ntproc): Accept (and ignore) one argument, for
1134 consistency with a signature of a signal handler. All callers
1135 changed.
1136 (init_ntproc): Accept an argument DUMPING. If dumping, don't
1137 install term_ntproc as a signal handler for SIGABRT, as that
1138 should be done by the dumped Emacs.
1139
1140 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
1141
1142 * w32select.c (term_w32select): Protect against repeated
1143 invocation by setting clipboard_owner to NULL after calling
1144 DestroyWindow.
1145
1146 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
1147 and term_ntproc to their modified signatures.
1148
1149 * character.c (char_string, string_char): Remove calls to
1150 MAYBE_UNIFY_CHAR. See the discussion starting at
1151 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
1152 for the details.
1153
1154 2012-09-25 Chong Yidong <cyd@gnu.org>
1155
1156 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
1157
1158 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
1159
1160 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
1161 when encountering an unknown bytecode.
1162
1163 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
1164
1165 image.c, indent.c: Use bool for booleans.
1166 * dispextern.h (struct image_type): Members valid_p, load, init
1167 now return bool, not int. All uses changed.
1168 * image.c: Omit unnecessary static decls.
1169 (x_create_bitmap_mask, x_build_heuristic_mask):
1170 Return void, not int, since callers don't care about the return value.
1171 (x_create_bitmap_mask, define_image_type, valid_image_p)
1172 (struct image_keyword, parse_image_spec, image_spec_value)
1173 (check_image_size, image_background)
1174 (image_background_transparent, x_clear_image_1)
1175 (postprocess_image, lookup_image, x_check_image_size)
1176 (x_create_x_image_and_pixmap, xbm_image_p)
1177 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
1178 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
1179 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
1180 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
1181 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
1182 (png_image_p, init_png_functions, png_load_body, png_load)
1183 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
1184 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
1185 (init_gif_functions, gif_load, imagemagick_image_p)
1186 (imagemagick_load_image, imagemagick_load, svg_image_p)
1187 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
1188 (gs_load):
1189 * nsimage.m (ns_load_image):
1190 * nsterm.m (ns_defined_color):
1191 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
1192 * xfns.c (x_defined_color):
1193 * xterm.c (x_alloc_lighter_color_for_widget)
1194 (x_alloc_nearest_color_1, x_alloc_nearest_color)
1195 (x_alloc_lighter_color):
1196 * indent.c (disptab_matches_widthtab, current_column)
1197 (scan_for_column, string_display_width, indented_beyond_p)
1198 (compute_motion, vmotion, Fvertical_motion):
1199 Use bool for booleans.
1200
1201 2012-09-24 Chong Yidong <cyd@gnu.org>
1202
1203 * chartab.c (Fset_char_table_default): Obsolete function removed.
1204
1205 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1206
1207 Move pid_t related decls out of lisp.h.
1208 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
1209 (interruptible_wait_for_termination):
1210 Move these decls from lisp.h to syswait.h, since they use pid_t.
1211 Needed on FreeBSD; see Herbert J. Skuhra in
1212 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
1213 * callproc.c: Include syswait.h.
1214
1215 gnutls.c, gtkutil.c: Use bool for boolean.
1216 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
1217 (emacs_gnutls_handle_error):
1218 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
1219 (xg_hide_tooltip, xg_create_frame_widgets)
1220 (create_dialog, xg_uses_old_file_dialog)
1221 (xg_get_file_with_chooser, xg_get_file_with_selection)
1222 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
1223 (xg_item_label_same_p, xg_update_menubar)
1224 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
1225 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
1226 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
1227 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
1228 (update_frame_tool_bar, free_frame_tool_bar):
1229 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
1230 * nsmenu.m (ns_update_menubar):
1231 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
1232 * xfns.c (Fx_show_tip) [USE_GTK]:
1233 Use bool for boolean.
1234 * gtkutil.c (xg_update_frame_menubar):
1235 * xmenu.c (update_frame_menubar):
1236 Return void, not int, since caller ignores return value.
1237 * gtkutil.c (xg_change_toolbar_position):
1238 Return void, not 1.
1239
1240 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
1241
1242 * makefile.w32-in (BLOCKINPUT_H): Remove.
1243 (SYSSIGNAL_H): New macro.
1244 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
1245 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
1246 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
1247 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
1248 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
1249 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
1250 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
1251 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
1252 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
1253 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
1254 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
1255 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
1256 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
1257 ($(BLD)/w32xfns.$(O)): Update dependencies.
1258
1259 2012-09-23 Eli Zaretskii <eliz@gnu.org>
1260
1261 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
1262 fatal_error_backtrace.
1263
1264 * w32proc.c (sys_kill): Undo last change: don't do anything when
1265 invoked to deliver SIGABRT to our own process. This is now
1266 handled by emacs_raise.
1267
1268 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
1269
1270 * w32term.c (w32_read_socket): Remove leftover reference to
1271 interrupt_input_pending.
1272
1273 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1274
1275 Do not use SA_NODEFER.
1276 Problem reported by Dani Moncayo in
1277 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
1278 * alloc.c (die):
1279 * sysdep.c (emacs_abort): Do not reset signal handler.
1280 * emacs.c (terminate_due_to_signal): Reset signal handler here.
1281 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
1282 wanted even on POSIXish hosts, and it doesn't work on Windows.
1283
1284 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
1285
1286 * xterm.c (x_term_init): Call fixup_locale before and after calling
1287 gtk_init (Bug#12392).
1288
1289 2012-09-23 Chong Yidong <cyd@gnu.org>
1290
1291 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
1292 Vdynamic_library_alist.
1293
1294 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
1295 (Fgnutls_available_p): Caller changed.
1296
1297 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
1298 (Flibxml_parse_xml_region): Likewise.
1299
1300 * dispextern.h (struct image_type): Remove arg from init function.
1301
1302 * image.c (Finit_image_library, lookup_image_type)
1303 (define_image_type): Remove now-unneeded second arg.
1304 (init_xpm_functions, init_png_functions, init_jpeg_functions)
1305 (init_tiff_functions, init_gif_functions, init_svg_functions):
1306 Arglist and w32_delayed_load calling convention changed.
1307 (gs_type): Remove init_gs_functions; there is no such function.
1308 (valid_image_p, make_image): Fix caller to lookup_image_type.
1309
1310 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1311
1312 Simplify and avoid signal-handling races (Bug#12471).
1313 * alloc.c (die):
1314 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
1315 Avoid recursive loop if there's a fatal error in the function itself.
1316 * atimer.c (pending_atimers):
1317 * blockinput.h: Don't include "atimer.h"; no longer needed.
1318 (interrupt_input_pending): Remove. All uses removed.
1319 pending_signals now counts both atimers and ordinary interrupts.
1320 This is less racy than having three separate pending-signal flags.
1321 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
1322 (input_blocked_p):
1323 Rename from their upper-case counterparts BLOCK_INPUT,
1324 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
1325 INPUT_BLOCKED_P, and turn into functions. All uses changed.
1326 This makes it easier to access volatile variables more accurately.
1327 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
1328 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
1329 that's more reliable if the code is buggy and sets
1330 interrupt_input_blocked to a negative value. All uses changed.
1331 * atimer.c (deliver_alarm_signal):
1332 Remove. No need to deliver this to the parent; any thread can
1333 handle this signal now. All uses replaced by underlying handler.
1334 * atimer.c (turn_on_atimers):
1335 * dispnew.c (handle_window_change_signal):
1336 * emacs.c (handle_danger_signal):
1337 * keyboard.c (kbd_buffer_get_event):
1338 Don't reestablish signal handler; not needed with sigaction.
1339 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
1340 (UNBLOCK_INPUT_TO):
1341 Rework to avoid unnecessary accesses to volatile variables.
1342 (UNBLOCK_INPUT_TO): Now a function.
1343 (totally_unblock_input, unblock_input): New decls.
1344 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
1345 (init_data): Remove. Necessary stuff now done in init_signal.
1346 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
1347 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
1348 (fatal_error_code): Remove; no longer needed.
1349 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
1350 it doesn't always backtrace. All uses changed. No need to reset
1351 signal to default, since sigaction and/or die does that for us now.
1352 Use emacs_raise (FOO), not kill (getpid (), FOO).
1353 (main): Check more-accurately whether we're dumping.
1354 Move fatal-error setup to sysdep.c
1355 * floatfns.c: Do not include "syssignal.h"; no longer needed.
1356 * gtkutil.c (xg_get_file_name, xg_get_font):
1357 Remove no-longer-needed signal-mask manipulation.
1358 * keyboard.c, process.c (POLL_FOR_INPUT):
1359 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
1360 * keyboard.c (read_avail_input): Remove.
1361 All uses replaced by gobble_input.
1362 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
1363 (kbd_buffer_store_event_hold, gobble_input):
1364 (record_asynch_buffer_change) [USABLE_SIGIO]:
1365 (store_user_signal_events):
1366 No need to mess with signal mask.
1367 (gobble_input): If blocking input and there are terminals, simply
1368 set pending_signals to 1 and return. All hooks changed to not
1369 worry about whether input is blocked.
1370 (process_pending_signals): Clear pending_signals before processing
1371 them, in case a signal comes in while we're processing.
1372 By convention callers now test pending_signals before calling us.
1373 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
1374 New functions, to support changes to blockinput.h.
1375 (handle_input_available_signal): Now extern.
1376 (reinvoke_input_signal): Remove. All uses replaced by
1377 handle_async_input.
1378 (quit_count): Now volatile, since a signal handler uses it.
1379 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
1380 All callers changed. Block SIGINT only if not already blocked.
1381 Clear sigmask reliably, even if Fsignal returns, which it can.
1382 Omit unnecessary accesses to volatile var.
1383 (quit_throw_to_read_char): No need to restore sigmask.
1384 * keyboard.c (gobble_input, handle_user_signal):
1385 * process.c (wait_reading_process_output):
1386 Call signal-handling code rather than killing ourselves.
1387 * lisp.h: Include <float.h>, for...
1388 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
1389 (pending_signals): Now volatile.
1390 (syms_of_data): Now const if IEEE floating point.
1391 (handle_input_available_signal) [USABLE_SIGIO]:
1392 (terminate_due_to_signal, record_child_status_change): New decls.
1393 * process.c (create_process): Avoid disaster if memory is exhausted
1394 while we're processing a vfork, by tightening the critical section
1395 around the vfork.
1396 (send_process_frame, process_sent_to, handle_pipe_signal)
1397 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
1398 ignores SIGPIPE.
1399 (send_process): No need for setjmp/longjmp any more, since the
1400 SIGPIPE stuff is now gone. Instead, report an error if errno
1401 is EPIPE.
1402 (record_child_status_change): Now extern. PID and W are now args.
1403 Return void, not bool. All callers changed.
1404 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
1405 Remove. All uses removed. This bug should be fixed now in a
1406 different way.
1407 (wait_for_termination_1): Use waitpid rather than sigsuspend,
1408 and record the child status change directly. This avoids the
1409 need to futz with the signal mask.
1410 (process_fatal_action): Move here from emacs.c.
1411 (emacs_sigaction_flags): New function, containing
1412 much of what used to be in emacs_sigaction_init.
1413 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
1414 caught by emacs, to make races less likely.
1415 (deliver_process_signal): Rename from handle_on_main_thread.
1416 All uses changed.
1417 (BACKTRACE_LIMIT_MAX): Now at top level.
1418 (thread_backtrace_buffer, threadback_backtrace_pointers):
1419 New static vars.
1420 (deliver_thread_signal, deliver_fatal_thread_signal):
1421 New functions, for more-accurate delivery of thread-specific signals.
1422 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
1423 (deliver_arith_signal): Handle in this thread, not
1424 in the main thread, since it's triggered by this thread.
1425 (maybe_fatal_sig): New function.
1426 (init_signals): New arg DUMPING so that we can be more accurate
1427 about whether we're dumping. Caller changed.
1428 Treat thread-specific signals differently from process-general signals.
1429 Block all signals while handling fatal error; that's safer.
1430 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
1431 on IEEE hosts.
1432 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
1433 Ignore SIGPIPE unless batch.
1434 (emacs_backtrace): Output backtrace for the appropriate thread,
1435 which is not necessarily the main thread.
1436 * syssignal.h: Include <stdbool.h>.
1437 (emacs_raise): New macro.
1438 * xterm.c (x_connection_signal): Remove; no longer needed
1439 now that we use sigaction.
1440 (x_connection_closed): No need to mess with sigmask now.
1441 (x_initialize): No need to reset SIGPIPE handler here, since
1442 init_signals does this for us now.
1443
1444 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
1445
1446 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
1447 background rect may be larger (Bug#12245).
1448
1449 2012-09-23 Chong Yidong <cyd@gnu.org>
1450
1451 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
1452
1453 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1454
1455 * .gdbinit: Just stop at fatal_error_backtrace.
1456 See Stefan Monnier's request in
1457 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
1458 Remove no-longer-used query of system type.
1459
1460 2012-09-22 Chong Yidong <cyd@gnu.org>
1461
1462 * search.c (Freplace_match): Doc fix (Bug#12325).
1463
1464 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
1465
1466 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
1467 (Fline_end_position): Doc fix.
1468
1469 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
1470
1471 2012-09-22 Chong Yidong <cyd@gnu.org>
1472
1473 * dispextern.h (struct image_type): Add new slot, storing a type
1474 initialization function.
1475
1476 * image.c (define_image_type): Call the image initializer function
1477 if it is defined. Arguments and return value changed.
1478 (valid_image_p, make_image): Callers changed.
1479 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
1480 (gif_type, imagemagick_type, svg_type, gs_type):
1481 Add initialization functions.
1482 (Finit_image_library): Call lookup_image_type.
1483 (CHECK_LIB_AVAILABLE): Macro deleted.
1484 (lookup_image_type): Call define_image_type here, rather than via
1485 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
1486 (syms_of_image): Move define_image_type calls for xbm_type and
1487 pbm_type to lookup_image_type.
1488
1489 2012-09-22 Eli Zaretskii <eliz@gnu.org>
1490
1491 * keyboard.c (timer_check_2): Move calculation of 'timers' and
1492 'idle_timers' from here ...
1493 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
1494 lists, to avoid infloops when the timer does something stupid,
1495 like reinvoke itself with the same or smaller time-out.
1496 (Bug#12447)
1497
1498 2012-09-22 Martin Rudalics <rudalics@gmx.at>
1499
1500 * window.c (Fsplit_window_internal): Handle only Qt value of
1501 Vwindow_combination_limit separately.
1502 (Qtemp_buffer_resize): New symbol.
1503 (Vwindow_combination_limit): New default value.
1504 Rewrite doc-string.
1505
1506 2012-09-22 Eli Zaretskii <eliz@gnu.org>
1507
1508 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
1509 the new overlay string. (Bug#10159)
1510
1511 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1512
1513 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
1514 or that fprintf is async-signal-safe. POSIX doesn't require
1515 either assumption.
1516
1517 2012-09-22 Chong Yidong <cyd@gnu.org>
1518
1519 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
1520 (Bug#8207).
1521
1522 2012-09-22 Kenichi Handa <handa@gnu.org>
1523
1524 * composite.c (composition_reseat_it): Handle the case that a
1525 grapheme cluster is not covered by a single font (Bug#12352).
1526
1527 2012-09-21 Chong Yidong <cyd@gnu.org>
1528
1529 * image.c (define_image_type): Avoid adding duplicate types to
1530 image_types (Bug#12463). Suggested by Jörg Walter.
1531
1532 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1533
1534 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
1535 (print_load_command_name): Add case LC_DATA_IN_CODE.
1536 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
1537
1538 2012-09-21 Glenn Morris <rgm@gnu.org>
1539
1540 * eval.c (Frun_hook_with_args_until_success)
1541 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
1542
1543 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
1544
1545 * fileio.c (Ffile_selinux_context): Only call freecon when
1546 lgetfilecon succeeded.
1547 (Fset_file_selinux_context): Likewise. (Bug#12444)
1548
1549 2012-09-21 Eli Zaretskii <eliz@gnu.org>
1550
1551 * xdisp.c (try_window_reusing_current_matrix): Under bidi
1552 reordering, locate the cursor by calling set_cursor_from_row; if
1553 that fails, clear the desired glyph matrix before returning a
1554 failure indication to the caller. Fixes leaving garbled display
1555 when fast scrolling with a down-key. (Bug#12403)
1556 (compute_stop_pos_backwards): Fix a typo that caused crashes while
1557 scrolling through multibyte text.
1558
1559 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1560
1561 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
1562 calling mark_vectorlike since that's the one that marks the window.
1563 (mark_discard_killed_buffers): Mark the final cdr.
1564 * window.h (struct window): Move prev/next_buffers to the
1565 non-standard fields.
1566 * window.c (make_window): Initialize prev/next_buffers manually.
1567
1568 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
1569
1570 Omit unused arg EXPECTED from socket hooks.
1571 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
1572 * nsterm.m (ns_term_init):
1573 * termhooks.h (struct terminal.read_socket_hook):
1574 * w32inevt.c (w32_console_read_socket):
1575 * w32term.c (w32_read_socket):
1576 * xterm.c (XTread_socket):
1577 Omit unused arg EXPECTED. All callers changed.
1578 (store_user_signal_events): Return void, not int, since callers no
1579 longer care about the return value. All uses changed.
1580
1581 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
1582
1583 * w32gui.h (XParseGeometry): Do not declare.
1584
1585 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
1586
1587 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
1588 Ignore 'expected'. See Eli Zaretskii in
1589 <http://bugs.gnu.org/12471#8> (last line).
1590
1591 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
1592 (XParseGeometry): Now static. Substitute extremal values for
1593 values that are out of range.
1594
1595 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
1596
1597 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
1598
1599 * nsfns.m (XParseGeometry): Remove.
1600 (Fx_create_frame): Call x_set_offset to correctly interpret
1601 top_pos in geometry.
1602
1603 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
1604 (Fx_parse_geometry): If there is a space in string, call
1605 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
1606
1607 2012-09-17 Eli Zaretskii <eliz@gnu.org>
1608
1609 * search.c (scan_buffer): Use character positions in calls to
1610 region_cache_forward and region_cache_backward, not byte
1611 positions. (Bug#12196)
1612
1613 * w32term.c (w32_read_socket): Set pending_signals to 1, like
1614 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
1615
1616 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
1617 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
1618 emacs_blocked_malloc, now deleted.
1619
1620 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
1621
1622 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
1623 The workaround was for improving performance on Solaris 2.4, but
1624 is getting in the way now. Emacs will still work if someone is
1625 still running Solaris 2.4 in a museum somewhere; Sun dropped
1626 support for Solaris 2.4 in 2003.
1627 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
1628 * process.c (create_process) [HAVE_WORKING_VFORK]:
1629 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
1630 since Emacs no longer uses vfork on that platform.
1631
1632 2012-09-17 Glenn Morris <rgm@gnu.org>
1633
1634 * emacs.c: Use COPYRIGHT.
1635
1636 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
1637
1638 Remove configure's --without-sync-input option (Bug#12450).
1639 When auditing signal-handling in preparation for cleaning it up,
1640 I found that SYNC_INPUT has race conditions and would be a real
1641 pain to fix. Since it's an undocumented and deprecated
1642 configure-time option, now seems like a good time to remove it.
1643 Also see <http://bugs.gnu.org/11080#16>.
1644 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
1645 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
1646 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
1647 (malloc_hysteresis):
1648 (check_depth) [XMALLOC_OVERRUN_CHECK]:
1649 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
1650 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
1651 (dont_register_blocks, bytes_used_when_reconsidered)
1652 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
1653 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
1654 [!SYSTEM_MALLOC && !SYNC_INPUT]:
1655 Remove. All uses removed.
1656 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
1657 implementation, one that depends on whether the new macro
1658 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
1659 is defined.
1660 * atimer.c (run_timers, handle_alarm_signal):
1661 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
1662 (handle_async_input, process_pending_signals)
1663 (handle_input_available_signal, init_keyboard):
1664 * nsterm.m (ns_read_socket):
1665 * process.c (wait_reading_process_output):
1666 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
1667 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
1668 (emacs_write):
1669 * xterm.c (XTread_socket):
1670 Assume SYNC_INPUT.
1671 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
1672 * eval.c (handling_signal): Remove. All uses removed.
1673 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
1674 All uses replaced with the SYNC_INPUT version.
1675 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
1676 Remove decls.
1677 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1678 Now static.
1679
1680 * font.c (Ffont_shape_gstring): Remove unused local.
1681
1682 2012-09-16 Glenn Morris <rgm@gnu.org>
1683
1684 * Makefile.in (clean): No longer run nextstep's clean.
1685
1686 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
1687 (ns_frag): Remove.
1688 (ns-app): Move here from ns.mk, and simplify.
1689 (clean): Simplify nextstep entry.
1690 * ns.mk: Remove file.
1691
1692 2012-09-17 Kenichi Handa <handa@gnu.org>
1693
1694 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
1695 not covert the last few charactes.
1696
1697 2012-09-16 Kenichi Handa <handa@gnu.org>
1698
1699 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
1700 here, but just check the validity of glyphs in the glyph-string.
1701
1702 2012-09-16 Martin Rudalics <rudalics@gmx.at>
1703
1704 * window.c (Fwindow_parameter, Fset_window_parameter):
1705 Accept any window as argument (Bug#12452).
1706
1707 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
1708
1709 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
1710 to ns_term_init to avoid memory leak.
1711
1712 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
1713 explicit retain/release.
1714 (ns_term_init): Only allow one display. Initialize outerpool and
1715 ns_*_types.
1716
1717 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1718
1719 Port _setjmp fix to POSIXish hosts as well as Microsoft.
1720 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
1721 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
1722 the Microsoft problem in a different way, by altering ../nt/config.nt.
1723
1724 2012-09-15 Eli Zaretskii <eliz@gnu.org>
1725
1726 * w32xfns.c:
1727 * w32uniscribe.c:
1728 * w32term.c:
1729 * w32select.c:
1730 * w32reg.c:
1731 * w32proc.c:
1732 * w32menu.c:
1733 * w32inevt.c:
1734 * w32heap.c:
1735 * w32font.c:
1736 * w32fns.c:
1737 * w32console.c:
1738 * w32.c:
1739 * w16select.c: Remove inclusion of setjmp.h, as it is now included
1740 by lisp.h. This completes removal of setjmp.h inclusion
1741 erroneously announced in the previous commit. (Bug#12446)
1742
1743 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
1744 more accurate.
1745
1746 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
1747 not defined as a macro. The latter happens on MS-Windows.
1748 (Bug#12446)
1749
1750 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1751
1752 Port better to POSIX hosts lacking _setjmp (Bug#12446).
1753 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
1754 Some instances of '#include <setjmp.h>' removed, if the
1755 only reason for the instance was because "lisp.h" was included.
1756 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
1757 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
1758 and _longjmp with the new symbols. Emacs already uses _setjmp if
1759 available, so this change affects only POSIXish hosts that have
1760 sigsetjmp but not _setjmp, such as some versions of Solaris and
1761 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
1762 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
1763 (png_load_body) [HAVE_PNG]:
1764 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
1765 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
1766 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
1767 since PNG requires jmp_buf. This is the only exception to the
1768 general rule that we now use sys_setjmp and sys_longjmp.
1769 This exception is OK since this code does not change the signal
1770 mask or longjmp out of a signal handler.
1771
1772 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
1773
1774 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
1775 Include "syssignal.h", for 'main_thread'.
1776
1777 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
1778
1779 Avoid out-of-range marker position (Bug#12426).
1780 * insdel.c (replace_range, replace_range_2):
1781 Adjust markers before overlays, as suggested by comments.
1782 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
1783 Remove redundant check before calling offset_intervals.
1784
1785 2012-09-14 Martin Rudalics <rudalics@gmx.at>
1786
1787 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
1788 current buffer (Bug#12387).
1789
1790 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
1791
1792 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
1793
1794 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
1795
1796 Use a more backwards-compatible timer format (Bug#12430).
1797 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
1798 vector element, not from the 4th, since PSECS is now at the end.
1799 (Fcurrent_idle_time): Doc fix.
1800
1801 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
1802
1803 Function to mark objects and remove killed buffers at once.
1804 * alloc.c (discard_killed_buffers): Rename to ...
1805 (mark_discard_killed buffers) ... new name. Add marking
1806 of remaining objects. Fix comment. Adjust users.
1807 (mark_object): Do not touch frame buffer lists here.
1808 * frame.c (delete_frame): Reset frame buffer lists here.
1809
1810 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
1811
1812 Better workaround for GNOME bug when --enable-gcc-warnings.
1813 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
1814 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
1815 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
1816
1817 Simplify SIGIO usage (Bug#12408).
1818 The code that dealt with SIGIO was crufty and confusing, e.g., it
1819 played tricks like "#undef SIGIO" but these tricks were not used
1820 consistently. Simplify mostly by not #undeffing standard symbols,
1821 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
1822 or not as we please) rather than "defined SIGIO" (standard symbol
1823 that we probably shouldn't #undef).
1824 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
1825 Modules that need it can include it.
1826 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
1827 * dispextern.h (ignore_sigio): New decl.
1828 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
1829 unconditionally, since it's now a no-op if !USABLE_SIGIO.
1830 * emacs.c (shut_down_emacs):
1831 * keyboard.c (kbd_buffer_store_event_hold):
1832 Use ignore_sigio rather than invoking 'signal' directly.
1833 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
1834 for FIONREAD.
1835 (FIONREAD, SIGIO): Do not #undef.
1836 (tty_read_avail_input): Use #error rather than a syntax error.
1837 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
1838 for I_PIPE, used by SETUP_SLAVE_PTY.
1839 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
1840 * sysdep.c (croak): Remove; no longer needed. This bit of
1841 temporary code, with Fred N. Fish's comment that it's temporary,
1842 has been in Emacs since at least 1992!
1843 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
1844 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
1845 * syssignal.h (croak): Remove decl.
1846 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
1847 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
1848 now that we're termios-only.
1849 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
1850 * term.c (dissociate_if_controlling_tty): Use #error rather than
1851 a run-time error.
1852
1853 Work around GCC and GNOME bugs when --enable-gcc-warnings.
1854 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
1855 to work around GNOME bug 683906.
1856 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
1857 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
1858 This works around GCC bug 54561.
1859
1860 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
1861
1862 More fixes for 'volatile' and setjmp/longjmp.
1863 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
1864 * image.c (struct png_load_context) [HAVE_PNG]: New type.
1865 (png_load_body) [HAVE_PNG]:
1866 (jpeg_load_body) [HAVE_JPEG]:
1867 New function, with most of the old parent function's body.
1868 (png_load) [HAVE_PNG]:
1869 (jpeg_load) [HAVE_JPEG]:
1870 Invoke the new function, to avoid longjmp munging our locals.
1871 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
1872 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
1873 longjmp is passed 2, as the C standard doesn't guarantee this.
1874 Instead, store the failure code into mgr->failure_code.
1875
1876 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1877
1878 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
1879 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
1880 (syms_of_keyboard): Remove support for unread-command-char.
1881
1882 2012-09-12 Eli Zaretskii <eliz@gnu.org>
1883
1884 * w32proc.c (sys_kill): If PID is our process ID and the signal is
1885 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
1886 violation. (Bug#12426)
1887
1888 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
1889
1890 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
1891
1892 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
1893
1894 * eval.c: Add `inhibit-debugger'.
1895 (Qinhibit_debugger): New symbol.
1896 (call_debugger): Bind it instead of Qdebug_on_error.
1897 (maybe_call_debugger): Test Vinhibit_debugger.
1898 (syms_of_eval): Define inhibit-debugger.
1899 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
1900 (syms_of_xdisp): Remove inhibit-debug-on-message.
1901
1902 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
1903
1904 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
1905 If a nonvolatile local variable is written before a _longjmp to
1906 the frame containing the variable, and is read after the _longjmp,
1907 the value read is indeterminate. Some local variables of type
1908 'struct handler' and 'struct catchtag' are used in this way, so
1909 mark each of their slots as volatile if the slot can be set before
1910 _longjmp and read afterwards.
1911 * lisp.h (struct handler): var and chosen_clause are now volatile.
1912 (struct catchtag): val, next, and pdlcount are now volatile.
1913
1914 * bidi.c (bidi_push_it, bidi_pop_it):
1915 * fns.c (copy_hash_table):
1916 * image.c (define_image_type):
1917 * keyboard.c (kbd_buffer_store_event_hold):
1918 * process.c (Fprocess_send_eof):
1919 * xfaces.c (x_create_gc) [HAVE_NS]:
1920 * xgselect.c (xg_select):
1921 Prefer assignment to memcpy when either will do.
1922
1923 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
1924 Use pointer-to-a-pointer to simplify and avoid a NILP check each
1925 time an item is removed. No need to mark this function 'inline';
1926 the compiler knows better than we do.
1927
1928 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
1929
1930 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
1931 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
1932 to change_frame_size (Bug#12388).
1933 (windowDidResize:): Pass YES to updateFrameSize.
1934
1935 * nsterm.h: Add delay parameter to updateFrameSize.
1936
1937 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
1938
1939 Discard killed buffers from deleted window and frame objects.
1940 This reduces an amount of references to killed buffers and
1941 helps GC to reclaim them faster.
1942 * alloc.c (discard_killed_buffers): New function.
1943 (mark_object): Use it for deleted windows and frames.
1944 (mark_object): If symbol's value is set up for a killed buffer
1945 or deleted frame, restore it's global binding.
1946 * data.c (swap_in_global_binding): Add GC notice.
1947 (swap_in_symval_forwarding): Use convenient set_blv_where.
1948 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
1949 * window.h: ... to here.
1950
1951 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
1952
1953 Convenient macro to check whether the buffer is live.
1954 * buffer.h (BUFFER_LIVE_P): New macro.
1955 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
1956 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
1957
1958 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1959
1960 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
1961 composition cases (Bug#12364).
1962
1963 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
1964 overhang of succeeding glyphs overlapping box cursor.
1965
1966 * w32term.c (x_draw_glyph_string): Likewise.
1967
1968 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
1969
1970 Simplify, document, and port floating-point (Bug#12381).
1971 The porting part of this patch fixes bugs on non-IEEE platforms
1972 with frexp, ldexp, logb.
1973 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
1974 Now static.
1975 * floatfns.c: Simplify discussion of functions that Emacs doesn't
1976 support, by removing commented-out code and briefly listing the
1977 C89 functions excluded. The commented-out stuff was confusing
1978 maintenance, e.g., we thought we needed cbrt but it was commented out.
1979 (logb): Remove decl; no longer needed.
1980 (isfinite): New macro, if not already supplied.
1981 (isnan): Don't replace any existing macro.
1982 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
1983 are present on all C89 platforms.
1984 (Ffrexp): Do not special-case zero, as frexp does the right thing
1985 for that case.
1986 (Flogb): Do not use logb, as it doesn't have the desired meaning
1987 on hosts that use non-base-2 floating point. Instead, stick with
1988 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
1989 frexp, to avoid getting an unspecified result.
1990
1991 * xdisp.c (Qinhibit_debug_on_message): Now static.
1992
1993 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
1994
1995 * nsterm.m (ns_update_begin): Set clip path to whole view by using
1996 NSBezierPath (Bug#12131).
1997
1998 2012-09-10 Chong Yidong <cyd@gnu.org>
1999
2000 * fns.c (Fdelq, Fdelete): Doc fix.
2001
2002 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
2003
2004 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
2005 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
2006
2007 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2008
2009 * lisp.h (make_lisp_ptr): New macro to replace XSET.
2010 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
2011 Use it.
2012
2013 2012-09-09 Eli Zaretskii <eliz@gnu.org>
2014
2015 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
2016 left fringe if the window has a left margin. This avoids leaving
2017 traces of the cursor because its leftmost pixel is not drawn over.
2018
2019 * dispnew.c (update_window_line): When the left margin area of a
2020 screen line is updated, set the redraw_fringe_bitmaps_p flag of
2021 that screen line. (Bug#12277)
2022
2023 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
2024
2025 Assume C89 or later for math functions (Bug#12381).
2026 This simplifies the code, and makes it a bit smaller and faster,
2027 and (most important) makes it easier to clean up signal handling
2028 since we can stop worring about floating-point exceptions in
2029 library code. That was a problem before C89, but the problem
2030 went away many years ago on all practical Emacs targets.
2031 * data.c, image.c, lread.c, print.c:
2032 Don't include <math.h>; no longer needed.
2033 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
2034 might be autoconfigured, as that never happens.
2035 * data.c (fmod):
2036 * doprnt.c (DBL_MAX_10_EXP):
2037 * print.c (DBL_DIG):
2038 Remove. C89 or later always defines these.
2039 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
2040 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
2041 (arith_error, domain_error, domain_error2):
2042 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
2043 no longer needed -- we simply return what C returns. All uses removed.
2044 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
2045 the wrapped code.
2046 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
2047 Remove. All uses expanded, as these macros are no longer used
2048 more than once and are now more trouble than they're worth.
2049 (Ftan): Use tan, not sin / cos.
2050 (Flogb): Assume C89 frexp.
2051 (fmod_float): Assume C89 fmod.
2052 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
2053 (init_floatfns): Remove. All uses removed.
2054
2055 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2056
2057 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
2058 compositeToPoint for OSX < 10.6 (Bug#12390).
2059
2060 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
2061
2062 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
2063 This produces more-accurate results.
2064
2065 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2066
2067 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
2068 changes (Bug#12088).
2069
2070 2012-09-08 Chong Yidong <cyd@gnu.org>
2071
2072 * syntax.c (Fstring_to_syntax): Doc fix.
2073
2074 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2075
2076 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
2077 in the internal border.
2078 (x_set_window_size): Remove static variables and their usage.
2079 (ns_redraw_scroll_bars): Fix NSTRACE arg.
2080 (ns_after_update_window_line, ns_draw_fringe_bitmap):
2081 Remove fringe/internal border adjustment (Bug#11052).
2082 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
2083 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
2084 (ns_fix_rect_ibw): Remove.
2085 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
2086 (ns_dumpglyphs_box_or_relief): Ditto.
2087 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
2088 adjustment.
2089 (ns_dumpglyphs_image): Ditto.
2090 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
2091 border adjustment.
2092 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
2093 their usage. Add fringe_extended_p and its use as in other terms.
2094 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
2095 scroll bar was removed.
2096 (updateFrameSize): New function.
2097 (windowDidResize): Move code to updateFrameSize and call it.
2098
2099 * nsterm.h (EmacsView): Add updateFrameSize.
2100
2101 2012-09-07 Chong Yidong <cyd@gnu.org>
2102
2103 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
2104
2105 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
2106
2107 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
2108
2109 More signal-handler cleanup (Bug#12327).
2110 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
2111 Problem introduced when merging patches. Noted by Eli Zaretskii in
2112 <http://bugs.gnu.org/12327#67>.
2113 * floatfns.c: Comment fix.
2114 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
2115 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
2116 and anyway the declaration is harmless even if SIGDANGER is not defined.
2117 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
2118 defined BROKEN_FIONREAD). systty.h formerly did this, but other
2119 source files not surprisingly expected syssignal.h to define, or
2120 not define, SIGIO, and it's cleaner to do it that way, for consistency.
2121 Include <sys/ioctl.h>, for FIONREAD.
2122 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
2123 This eliminates a problem whereby other files mysteriously had
2124 to include "syssignal.h" before including "systty.h" if they
2125 wanted to use "#ifdef SIGIO".
2126
2127 2012-09-07 Eli Zaretskii <eliz@gnu.org>
2128
2129 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
2130
2131 * w32.c (sigemptyset): Empty the set.
2132 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
2133
2134 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
2135
2136 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
2137
2138 * alloc.c (mark_buffer): Revert unsafe marking optimization.
2139 (mark_object): Likewise for frame objects.
2140
2141 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
2142
2143 * syssignal.h (handle_on_main_thread): Always declare,
2144 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
2145 This ports to platforms without HAVE_PTHREAD.
2146
2147 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
2148
2149 Signal-handler cleanup (Bug#12327).
2150 Emacs's signal handlers were written in the old 4.2BSD style with
2151 sigblock and sigmask and so forth, and this led to some
2152 inefficiencies and confusion. Rewrite these to use
2153 pthread_sigmask etc. without copying signal sets around. Also,
2154 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
2155 'signal', and instead use functions that do not attempt to take
2156 over the system name space. This patch causes Emacs's text
2157 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
2158 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
2159 Do not include <signal.h> or "syssignal.h", as these
2160 modules do not use signals.
2161 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
2162 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
2163 Do not include <signal.h>, as "syssignal.h" does that for us now.
2164 * atimer.c (sigmask_atimers): New function.
2165 (block_atimers, unblock_atimers): New functions,
2166 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
2167 All uses replaced.
2168 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
2169 no longer needed here.
2170 * emacs.c (main): Inspect existing signal handler with sigaction,
2171 so that there's no need to block and unblock SIGHUP.
2172 * sysdep.c (struct save_signal): New member 'action', replacing
2173 old member 'handler'.
2174 (save_signal_handlers, restore_signal_handlers):
2175 Use sigaction instead of 'signal' to save and restore.
2176 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
2177 New function. All users of 'signal' modified to use set_sighandler
2178 if they're writeonly, and to use sys_signal if they're read+write.
2179 (emacs_sigaction_init, forwarded_signal): New functions.
2180 (sys_signal): Remove. All uses replaced by calls to sigaction
2181 and emacs_sigaction_init, or by direct calls to 'signal'.
2182 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
2183 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
2184 all uses replaced by pthread_sigmask etc. calls.
2185 * syssignal.h: Include <signal.h>.
2186 (emacs_sigaction_init, forwarded_signal): New decls.
2187 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
2188 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
2189 (sigmask, sys_sigmask): Remove; no longer needed.
2190 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
2191 (sigblock, sigunblock, sigfree):
2192 (sigsetmask) [!defined sigsetmask]:
2193 Remove. All uses replaced by pthread_sigmask.
2194 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
2195 no longer need to be replaced, and its typical old uses
2196 are now done via emacs_sigaction_init and sigaction.
2197 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
2198 (sys_sigdel): Remove; unused.
2199 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
2200
2201 2012-09-06 Eli Zaretskii <eliz@gnu.org>
2202
2203 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
2204 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
2205
2206 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
2207
2208 Explicitly mark buffer_defaults and buffer_local_symbols.
2209 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
2210 mark_local_symbols here.
2211 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
2212 since special buffers aren't marked here any more.
2213 (allocate_buffer): Chain new buffer with all_buffers here...
2214 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
2215 not here.
2216 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
2217 (syms_of_buffer): Remove staticpro of the above.
2218 (init_buffer_once): Set names for buffer_defaults and
2219 buffer_local_symbols.
2220
2221 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
2222
2223 Use bool for booleans in font-related modules.
2224 * font.c (font_intern_prop, font_style_to_value)
2225 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
2226 (generate_otf_features, font_check_otf_features, font_check_otf)
2227 (font_match_p, font_list_entities, font_at):
2228 * fontset.c (fontset_id_valid_p, reorder_font_vector
2229 (fontset_find_font, Fset_fontset_font)
2230 (face_suitable_for_char_p) [0]:
2231 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
2232 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
2233 (m17n_flt_initialized, ftfont_shape_by_flt):
2234 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
2235 * nsfont.m (nsfont_draw):
2236 * w32font.c (w32font_draw):
2237 * w32term.c (x_draw_glyphless_glyph_string_foreground):
2238 Use bool for booleans.
2239 * font.h: Adjust to above API changes.
2240 (struct font, struct font_driver, struct font_driver_list):
2241 Use bool for booleans.
2242 (struct font): Remove useless member encoding_type.
2243 All users removed.
2244 * fontset.c, xftfont.c: Omit unnecessary static decls.
2245
2246 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
2247
2248 * alloc.c (mark_object): Revert window marking code
2249 since it's unsafe for the Fset_window_configuration.
2250
2251 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
2252
2253 Fix race conditions with signal handlers and errno (Bug#12327).
2254 Be more systematic about preserving errno whenever a signal
2255 handler returns, even if it's not in the main thread. Do this by
2256 renaming signal handlers to distinguish between signal delivery
2257 and signal handling. All uses changed.
2258 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
2259 * data.c (deliver_arith_signal): Rename from arith_error.
2260 * dispnew.c (deliver_window_change_signal): Rename from
2261 window_change_signal.
2262 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
2263 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
2264 * keyboard.c (deliver_input_available_signal): Rename from
2265 input_available_signal.
2266 (deliver_user_signal): Rename from handle_user_signal.
2267 (deliver_interrupt_signal): Rename from interrupt_signal.
2268 * process.c (deliver_pipe_signal): Rename from send_process_trap.
2269 (deliver_child_signal): Rename from sigchld_handler.
2270 * atimer.c (handle_alarm_signal):
2271 * data.c (handle_arith_signal):
2272 * dispnew.c (handle_window_change_signal):
2273 * emacs.c (handle_fatal_signal, handle_danger_signal):
2274 * keyboard.c (handle_input_available_signal):
2275 * keyboard.c (handle_user_signal, handle_interrupt_signal):
2276 * process.c (handle_pipe_signal, handle_child_signal):
2277 New functions, with the actual signal-handling code taken from the
2278 original respective signal handlers, sans the sporadic attempts to
2279 preserve errno, since that's now done by handle_on_main_thread.
2280 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
2281 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
2282 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2283 Move to sysdep.c.
2284 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2285 Move initialization of main_thread to sysdep.c's init_signals.
2286 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
2287 our usage, and simplifies the mainline code.
2288 (record_child_status_change): New static function, as a helper
2289 for handle_child_signal, and with most of the old child handler's
2290 contents.
2291 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
2292 (handle_child_signal): Use the above.
2293 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2294 Moved here from emacs.c.
2295 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
2296 code moved here from emacs.c's main function.
2297 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
2298 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
2299 This lets callers save and restore errno properly.
2300
2301 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2302
2303 Remove redundant or unused things here and there.
2304 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
2305 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
2306 * editfns.c (Fcompare_buffer_substrings): Likewise.
2307 * frame.h (struct terminal, struct font_driver_list):
2308 Remove redundant declarations.
2309 * window.h (Qleft, Qright): Likewise.
2310
2311 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2312
2313 Do not mark objects from deleted buffers, windows and frames.
2314 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
2315 (mark_object): Likewise for windows and frames.
2316
2317 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2318
2319 * alloc.c (valid_lisp_object_p): Treat killed buffers,
2320 buffer_defaults and buffer_local_symbols as valid objects.
2321 Return special value to denote them.
2322
2323 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
2324
2325 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
2326 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
2327 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
2328 (file_name_absolute_p, Fsubstitute_in_file_name):
2329 (check_executable, check_writable, Ffile_accessible_directory_p)
2330 (Fset_file_selinux_context, Fdefault_file_modes)
2331 (Finsert_file_contents, choose_write_coding_system)
2332 (Fwrite_region, build_annotations, a_write, e_write)
2333 (Fdo_auto_save):
2334 * filelock.c (boot_time_initialized, get_boot_time)
2335 (get_boot_time_1, lock_file_1, within_one_second):
2336 * floatfns.c (in_float):
2337 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
2338 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
2339 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
2340 * lisp.h (struct Lisp_Hash_Table.cmpfn):
2341 * window.c (compare_window_configurations):
2342 Use bool for booleans.
2343 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
2344 (Fdefault_file_modes): Now mode_t, not int, for modes.
2345 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
2346 (internal_delete_file): Now returns void, not a (boolean) int,
2347 since nobody was looking at the return value.
2348 * lisp.h, window.h: Adjust to above API changes.
2349
2350 * xdisp.c (set_message): Simplify and reindent last change.
2351
2352 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
2353
2354 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
2355
2356 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
2357
2358 * eval.c (call_debugger): Make the function non-static so that we
2359 can call it from set_message.
2360
2361 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
2362 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
2363
2364 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2365
2366 Give more-useful info on a fatal error (Bug#12328).
2367 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
2368 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
2369 of doing the work ourselves.
2370 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
2371 do most of the work.
2372 (fatal_error_backtrace): New function, taken from the guts
2373 of the old fatal_error_signal, but with a new option to output
2374 a backtrace.
2375 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
2376 info about the signal than just its number.
2377 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
2378 * sysdep.c: Include <execinfo.h>
2379 (emacs_backtrace): New function, taken partly from the previous
2380 code of the 'die' function.
2381 (emacs_abort): Call fatal_error_backtrace rather than abort.
2382
2383 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2384
2385 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
2386 eager (load-time) macro-expansion.
2387 * lisp.mk (lisp): Add macroexp.
2388
2389 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2390
2391 Simplify redefinition of 'abort' (Bug#12316).
2392 Do not try to redefine the 'abort' function. Instead, redo
2393 the code so that it calls 'emacs_abort' rather than 'abort'.
2394 This removes the need for the NO_ABORT configure-time macro
2395 and makes it easier to change the abort code to do a backtrace.
2396 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
2397 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
2398 Remove; sysdep.c's emacs_abort now takes its place.
2399 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
2400 'abort' changed to use 'emacs_abort'.
2401 * msdos.c (dos_abort) [defined abort]: Remove; not used.
2402 (abort) [!defined abort]: Rename to ...
2403 (emacs_abort): ... new name.
2404 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
2405 the place of the old 'abort' in emacs.c.
2406 * w32.c, w32fns.c (abort): Do not #undef.
2407 * w32.c (emacs_abort): Rename from w32_abort.
2408
2409 2012-09-04 Eli Zaretskii <eliz@gnu.org>
2410
2411 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
2412 offsets[j].dv, since the y axis of the screen coordinates points
2413 down, while the y axis of the font definition coordinates points
2414 up. This fixes display of Arabic diacritics such as KASRA and
2415 KASRATAN. (Bug#11860)
2416
2417 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2418
2419 Be more systematic about _setjmp vs setjmp.
2420 * alloc.c (test_setjmp, mark_stack):
2421 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
2422 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
2423 (png_load, my_error_exit, jpeg_load):
2424 * process.c (send_process_trap, send_process):
2425 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
2426 The underscored versions are up to 30x faster on some hosts.
2427 Formerly, the code used setjmp+longjmp sometimes and
2428 _setjmp+_longjmp at other times, with no particular reason to
2429 prefer setjmp+longjmp.
2430
2431 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
2432
2433 Fix minor problem found by static checking.
2434 * buffer.c (Fdelete_all_overlays): Return nil.
2435
2436 2012-09-03 Martin Rudalics <rudalics@gmx.at>
2437
2438 * buffer.c (Fdelete_all_overlays): New function.
2439
2440 2012-09-03 Chong Yidong <cyd@gnu.org>
2441
2442 * gtkutil.c: Add extern decl for Qxft.
2443
2444 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
2445
2446 * emacs.c, eval.c: Use bool for boolean.
2447 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
2448 (malloc_using_checking) [DOUG_LEA_MALLOC]:
2449 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
2450 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
2451 (main, decode_env_path, Fdaemon_initialized):
2452 * eval.c (call_debugger, Finteractive_p, interactive_p):
2453 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
2454 (maybe_call_debugger, Fbacktrace):
2455 * process.c (read_process_output, exec_sentinel):
2456 Use bool for booleans.
2457 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
2458 All callers changed.
2459 * eval.c (interactive_p): Omit always-true boolean argument
2460 EXCLUDE_SUBRS_P. All callers changed.
2461 * dispextern.h, lisp.h: Reflect above API changes.
2462 * firstfile.c (dummy): Use the address of 'main', whose signature
2463 won't change, instead of the address of 'initialize', whose
2464 signature just changed from int to bool.
2465 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
2466 * msdos.c (fatal_error_in_progress): ... from here.
2467 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
2468 of incrementing it.
2469 (redisplay_internal, unwind_redisplay): Simply clear
2470 REDISPLAYING_P when unwinding, instead of saving its previous,
2471 always-false value and then restoring it.
2472
2473 Clean up some extern decls.
2474 Mostly, this hoists extern decls out of .c files and into .h files.
2475 That way, we're more likely to catch errors if the interfaces change.
2476 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
2477 declare xg_mark_data.
2478 * dispextern.h (x_frame_parm_handlers):
2479 * font.h (Qxft):
2480 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
2481 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
2482 (Qultra_bold, Qoblique, Qitalic):
2483 Move extern decl here from .c file.
2484 * alloc.c (xg_mark_data) [USE_GTK]:
2485 * doc.c (Qclosure):
2486 * eval.c (Qlexical_binding):
2487 * fns.c (time) [!HAVE_UNISTD_H]:
2488 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
2489 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
2490 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
2491 * lread.c (Qinternal_interpreter_environment):
2492 * minibuf.c (Qbuffer):
2493 * process.c (QCfamily, QCfilter):
2494 * widget.c (free_frame_faces):
2495 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
2496 * xfont.c (x_clear_errors):
2497 * xterm.c (x_frame_parm_handlers):
2498 Remove now-redundant extern decls.
2499 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
2500 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
2501 Now static.
2502 * xfaces.c: Remove unnecessary static decls.
2503 * xterm.c (updating_frame): Remove decl of nonexistent object.
2504
2505 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
2506 when building globals.h, as the objects that are not built on
2507 this host are not needed to compile C files on this host.
2508
2509 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
2510
2511 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
2512
2513 * frame.h: Add missing prototype for x_wm_set_size_hint.
2514
2515 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
2516
2517 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
2518 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
2519 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
2520 (Fsubstitute_command_keys):
2521 * editfns.c (region_limit, find_field, Fconstrain_to_field)
2522 (save_excursion_save, save_excursion_restore)
2523 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
2524 (format_time_string, general_insert_function)
2525 (make_buffer_string, make_buffer_string_both)
2526 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
2527 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
2528 (copy_text, insert_1, insert_1_both, insert_from_string)
2529 (insert_from_string_before_markers, insert_from_string_1)
2530 (insert_from_buffer, insert_from_buffer_1, replace_range)
2531 (replace_range_2, del_range_1, del_range_byte, del_range_both)
2532 (del_range_2, modify_region):
2533 * intervals.c (intervals_equal, balance_possible_root_interval)
2534 (adjust_intervals_for_insertion, merge_properties_sticky)
2535 (graft_intervals_into_buffer, lookup_char_property)
2536 (adjust_for_invis_intang, set_point_both)
2537 (get_property_and_range, compare_string_intervals)
2538 (set_intervals_multibyte_1, set_intervals_multibyte):
2539 * keyboard.c (decode_timer):
2540 Use bool for boolean.
2541 * intervals.h, lisp.h, systime.h: Reflect above API changes.
2542 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
2543
2544 2012-09-02 Chong Yidong <cyd@gnu.org>
2545
2546 * keymap.c (push_key_description): Print M-TAB as C-M-i
2547 (Bug#11758).
2548
2549 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
2550
2551 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
2552 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
2553 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
2554 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
2555 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
2556 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
2557 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
2558
2559 2012-09-01 Eli Zaretskii <eliz@gnu.org>
2560
2561 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
2562 more than one grapheme cluster passed to the shaper: compute the
2563 offset adjustment values separately for each cluster. (Bug#11860)
2564
2565 * image.c: Restore mistakenly removed inclusion of w32.h. Without
2566 it, GCC doesn't see prototypes of w32_delayed_load, and complains
2567 about implicit conversions from integer to pointer.
2568
2569 2012-09-01 Daniel Colascione <dancol@dancol.org>
2570
2571 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
2572 system used too early.
2573
2574 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
2575
2576 Better seed support for (random).
2577 * emacs.c (main): Call init_random.
2578 * fns.c (Frandom): Set the seed from a string argument, if given.
2579 Remove long-obsolete Gentzel cruft.
2580 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
2581 (init_random): New function.
2582
2583 2012-09-01 Daniel Colascione <dancol@dancol.org>
2584
2585 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
2586 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
2587 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
2588 x_wm_set_size_hint, x_query_colors, x_real_positions,
2589 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
2590 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
2591 all of which have been moved to common code.
2592
2593 * xfaces.c: Include TERM_HEADER instead of listing all possible
2594 window-system headers.
2595
2596 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
2597 to match header.
2598
2599 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
2600 directly accessing frame internals.
2601
2602 * w32font.h: Include font.h. Define syms_of_w32font and
2603 globals_of_w32font.
2604
2605 * process.c: Include TERM_HEADER instead of listing all possible
2606 window-system headers.
2607
2608 * nsterm.h: Remove declarations now in frame.h.
2609 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
2610
2611 * menu.c: Include TERM_HEADER instead of listing all possible
2612 window-system headers.
2613
2614 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
2615 window system.
2616
2617 * keyboard.c: Include TERM_HEADER instead of listing all possible
2618 window-system headers.
2619
2620 * image.c: Include TERM_HEADER instead of listing all possible
2621 window-system headers. Declare Vlibrary_cache when compiling for
2622 Windows.
2623
2624 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
2625 window system declarations.
2626
2627 * frame.h: Move common functions here: set_frame_menubar,
2628 x_set_window_size, x_sync, x_get_focus_frame,
2629 x_set_mouse_position, x_set_mouse_pixel_position,
2630 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
2631 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
2632 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
2633 x_activate_menubar, x_real_positions, x_bitmap_icon,
2634 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
2635 and x_query_colors.
2636
2637 * frame.c: Include TERM_HEADER instead of listing all possible
2638 window-system headers.
2639
2640 * font.c: Include TERM_HEADER instead of listing all possible
2641 window-system headers.
2642
2643 * emacs.c: Include TERM_HEADER.
2644
2645 * dispnew.c: Include TERM_HEADER instead of listing all possible
2646 window-system headers.
2647
2648 * ccl.h: Include character.h.
2649
2650 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
2651 the current window system; include in list of objects to link into
2652 Emacs.
2653
2654 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2655
2656 Remove mark_ttys function and fix tty_display_info initialization.
2657 * lisp.h (mark_ttys): Remove prototype.
2658 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
2659 to mark_ttys because all possible values of 'top_frame' slot are
2660 the frames which are reachable from Vframe_list.
2661 * term.c (mark_ttys): Remove.
2662 (init_tty): Safely initialize 'top_frame' slot with Qnil.
2663
2664 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2665
2666 Change struct frame bitfields from unsigned char to unsigned.
2667 * frame.h (struct frame): Change type of 'display_preempted',
2668 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
2669 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
2670 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
2671 bitfields from unsigned char to unsigned.
2672
2673 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2674
2675 Remove unused member of struct x_output and struct w32_output.
2676 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
2677 * w32term.h (struct w32_output): Likewise.
2678
2679 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
2680
2681 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
2682 does not become zero (Bug#12234).
2683
2684 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
2685
2686 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
2687 for GCC 4.7.1 x86-64.
2688
2689 2012-08-30 Glenn Morris <rgm@gnu.org>
2690
2691 * lread.c (init_lread): For out-of-tree builds, only add the
2692 source directory's site-lisp dir to the load-path if it exists,
2693 consistent with in-tree builds. (Bug#12302)
2694
2695 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
2696
2697 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
2698 button_values to NULL. Call setStykeMask so dialogs get a close button.
2699 (windowShouldClose:): Set window_closed.
2700 (dealloc): New member, free button_values.
2701 (process_dialog:): Make member function. Remove window argument,
2702 replace window with self. Count buttons and allocate and store values
2703 in button_values.
2704 (addButton:value:row:): value is int with the name tag. Call setTag
2705 with tag. Remove return self, declare return value as void.
2706 (addString:row:): Remove return self, declare return value as void.
2707 (addSplit): Remove return self, declare return value as void.
2708 (clicked:): Remove return self, declare return value as void.
2709 Set dialog_return to button_values[seltag]. Code formatting change.
2710 (initFromContents:isQuestion:): Adjust call to process_dialog.
2711 Code formatting change.
2712 (timeout_handler:): Set timer_fired to YES.
2713 (runDialogAt:): Set timer_fired to NO.
2714 Handle click on close button as quit.
2715
2716 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
2717 Add window_closed and button_values. Add void as return value for
2718 add(Button|String|Split). addButton takes int instead of Lisp_Object.
2719 Add process_dialog as new member.
2720
2721 2012-08-28 Eli Zaretskii <eliz@gnu.org>
2722
2723 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
2724 is not one of the heaps we manage. (Bug#12242)
2725
2726 2012-08-28 Glenn Morris <rgm@gnu.org>
2727
2728 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
2729
2730 2012-08-28 Martin Rudalics <rudalics@gmx.at>
2731
2732 * window.c (Fset_window_configuration): Remove handling of
2733 auto-buffer-name window parameter. Install revision of reverted
2734 fix.
2735
2736 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2737
2738 Do not allow to set major mode for a dead buffer.
2739 * buffer.c (Fset_buffer_major_mode): Signal an error
2740 if the buffer is dead.
2741 (Fother_buffer, other_buffer_safely): Remove redundant
2742 nested declaration.
2743
2744 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2745
2746 Always use set_buffer_if_live to restore original buffer at unwind.
2747 * buffer.h (record_unwind_current_buffer): New function.
2748 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
2749 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
2750 * undo.c, window.c: Adjust users.
2751 * buffer.c (set_buffer_if_live): Fix comment.
2752
2753 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2754
2755 Fix usage of set_buffer_internal.
2756 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
2757 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
2758 * coding.c (decode_coding): Omit redundant test.
2759 * fileio.c (decide_coding_unwind): Likewise.
2760 * fns.c (secure_hash): Likewise.
2761 * insdel.c (modify_region): Likewise.
2762 * keyboard.c (command_loop_1): Likewise.
2763 * print.c (PRINTFINISH): Likewise.
2764 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
2765
2766 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
2767
2768 * dispnew.c: Use bool for boolean.
2769 (frame_garbaged, display_completed, delayed_size_change)
2770 (fonts_changed_p, add_window_display_history)
2771 (add_frame_display_history, verify_row_hash)
2772 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
2773 (row_equal_p, realloc_glyph_pool)
2774 (allocate_matrices_for_frame_redisplay)
2775 (showing_window_margins_p)
2776 (adjust_frame_glyphs_for_frame_redisplay)
2777 (build_frame_matrix_from_leaf_window, make_current)
2778 (mirrored_line_dance, mirror_line_dance, update_frame)
2779 (update_window_tree, update_single_window)
2780 (check_current_matrix_flags, update_window, update_text_area)
2781 (update_window_line, set_window_update_flags, scrolling_window)
2782 (update_frame_1, scrolling, buffer_posn_from_coords)
2783 (do_pending_window_change, change_frame_size)
2784 (change_frame_size_1, sit_for):
2785 Use bool for boolean.
2786 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
2787 and remove last int (actually boolean) argument, which was always 0.
2788 All callers changed.
2789 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
2790 * dispextern.h (struct composition_it): Use bool for boolean.
2791 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
2792 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
2793 * dired.c (file_name_completion):
2794 Use bool for boolean. (This was missed in an earlier change.)
2795
2796 2012-08-27 Martin Rudalics <rudalics@gmx.at>
2797
2798 * window.c (Fset_window_configuration): Revert first part of
2799 last change.
2800
2801 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
2802
2803 * nsterm.h (NSPanel): New class variable dialog_return.
2804
2805 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
2806 Initialize dialog_return.
2807 (windowShouldClose:): Use stop instead of stopModalWithCode.
2808 (clicked:): Ditto, and also set dialog_return (Bug#12258).
2809 (timeout_handler:): Use stop instead of abortModal. Send a dummy
2810 event.
2811 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
2812 modal loop returns.
2813
2814 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
2815
2816 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
2817 * composite.c (find_composition, composition_gstring_p)
2818 (composition_reseat_it, find_automatic_composition):
2819 * data.c (let_shadows_buffer_binding_p)
2820 (let_shadows_global_binding_p, set_internal, make_blv)
2821 (Fmake_variable_buffer_local, Fmake_local_variable)
2822 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
2823 (cons_to_signed, arith_driver):
2824 * dbusbind.c (xd_in_read_queued_messages):
2825 * dired.c (directory_files_internal, file_name_completion):
2826 Use bool for booleans.
2827 * dired.c (file_name_completion):
2828 * process.h (fd_callback):
2829 Omit int (actually boolean) argument. It wasn't being used.
2830 All uses changed.
2831 * composite.h, lisp.h: Reflect above API changes.
2832
2833 * cmds.c, coding.c: Use bool for booleans.
2834 * cmds.c (move_point, Fself_insert_command):
2835 * coding.h (struct composition status, struct coding_system):
2836 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
2837 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
2838 (emacs_mule_char, decode_coding_emacs_mule)
2839 (encode_coding_emacs_mule, detect_coding_iso_2022)
2840 (decode_coding_iso_2022, encode_invocation_designation)
2841 (encode_designation_at_bol, encode_coding_iso_2022)
2842 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
2843 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
2844 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
2845 (encode_coding_raw_text, detect_coding_charset)
2846 (decode_coding_charset, encode_coding_charset, detect_eol)
2847 (detect_coding, get_translation_table, produce_chars)
2848 (consume_chars, reused_workbuf_in_use)
2849 (make_conversion_work_buffer, code_conversion_save)
2850 (decode_coding_object, encode_coding_object)
2851 (detect_coding_system, char_encodable_p)
2852 (Funencodable_char_position, code_convert_region)
2853 (code_convert_string, code_convert_string_norecord)
2854 (Fset_coding_system_priority):
2855 * fileio.c (Finsert_file_contents):
2856 Use bool for booleans.
2857 * coding.h, lisp.h: Reflect above API changes.
2858 * coding.c: Remove unnecessary static function decls.
2859 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
2860 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
2861 not a boolean 'int', since callers never look at the return value.
2862 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
2863 * coding.h (decoding_buffer_size, encoding_buffer_size)
2864 (emacs_mule_string_char): Remove unused extern decls.
2865 (struct iso_2022_spec, struct coding_system):
2866 Use 'unsigned int : 1' for boolean fields, since there's more than one.
2867 (struct emacs_mule_spec): Remove unused field 'full_support'.
2868 All initializations removed.
2869 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
2870
2871 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
2872
2873 Fix spare memory change (Bug#12286).
2874 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
2875 (valid_lisp_object_p): Likewise.
2876
2877 2012-08-27 Martin Rudalics <rudalics@gmx.at>
2878
2879 * window.c (Fset_window_configuration): Record any window's old
2880 buffer if it's replaced (see Bug#8789). If the new current
2881 buffer doesn't appear in the selected window, go to its old
2882 point (Bug#12208).
2883
2884 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
2885
2886 Special MEM_TYPE_SPARE to denote reserved memory.
2887 * alloc.c (enum mem_type): New memory type.
2888 (refill_memory_reserve): Use new type for spare memory.
2889 This prevents live_cons_p and live_string_p from incorrect
2890 detection of uninitialized objects from spare memory as live.
2891
2892 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
2893
2894 Spelling fixes.
2895 * Makefile.in (.PHONY): versioclean -> versionclean.
2896
2897 Remove unused external symbols.
2898 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
2899 * window.c (Qwindow_valid_p, decode_valid_window):
2900 Now static, not extern.
2901 * data.c (Qinterval): Remove; unused.
2902 (syms_of_data): Do not define 'interval'.
2903 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
2904 * window.h (decode_valid_window):
2905 Remove decls.
2906
2907 * character.c, charset.c, chartab.c: Use bool for booleans.
2908 * character.c (lisp_string_width, string_count_byte8)
2909 (string_escape_byte8):
2910 * charset.c (charset_map_loaded, load_charset_map, read_hex):
2911 (load_charset_map_from_file, map_charset_chars)
2912 (Fdefine_charset_internal, define_charset_internal)
2913 (Fdeclare_equiv_charset, find_charsets_in_text)
2914 (Ffind_charset_region, char_charset, Fiso_charset):
2915 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
2916 (sub_char_table_set, sub_char_table_set_range)
2917 (char_table_set_range, optimize_sub_char_table)
2918 (map_sub_char_table):
2919 Use bool for boolean.
2920 * character.c (str_to_unibyte): Omit last boolean argument; it was
2921 always 0. All callers changed.
2922 * character.h, charset.h: Adjust to match previous changes.
2923 * character.h (char_printable_p): Remove decl of nonexistent function.
2924 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
2925 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
2926 are all boolean, so make them single-bit bitfields.
2927
2928 * lisp.h (ASET): Remove attempt to detect side effects.
2929 It was meant to be temporary and it often doesn't work,
2930 because when IDX has side effects the behavior of IDX==IDX
2931 is undefined. See Stefan Monnier in
2932 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
2933
2934 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
2935
2936 * lisp.h (functionp): New function (extracted from Ffunctionp).
2937 (FUNCTIONP): Use it.
2938 * eval.c (Ffunctionp): Use it.
2939
2940 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
2941
2942 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
2943 as that's faster and simpler than static storage. Don't bother
2944 with the g_main_context_query overhead if g_main_context_pending
2945 says no events are pending.
2946 (gfds, gfds_size): Remove these static vars.
2947 (xgselect_initialize): Remove; no longer needed.
2948 All uses and decls removed.
2949
2950 * emacs.c (fatal_error_signal_hook): Remove.
2951 All uses removed. This leftover from old code was always 0.
2952
2953 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
2954 * casefiddle.c (casify_object, casify_region):
2955 * casetab.c (set_case_table):
2956 * category.c, category.h (word_boundary_p):
2957 * category.h (CHAR_HAS_CATEGORY):
2958 Use bool for booleans, instead of int.
2959
2960 2012-08-25 Eli Zaretskii <eliz@gnu.org>
2961
2962 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
2963
2964 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
2965
2966 On assertion failure, print backtrace if available.
2967 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
2968 (die) [ENABLE_CHECKING]: Print a backtrace if available.
2969 * Makefile.in (LIB_EXECINFO): New macro.
2970 (LIBES): Use it.
2971
2972 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
2973 * bytecode.c (exec_byte_code):
2974 * callint.c (check_mark, Fcall_interactively):
2975 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
2976 (getenv_internal, sync_process_alive, call_process_exited):
2977 * lisp.h (USE_SAFE_ALLOCA):
2978 Use bool for booleans, instead of int.
2979 * lisp.h, process.h: Adjust prototypes to match above changes.
2980 * callint.c (Fcall_interactively): Don't assume the mark's
2981 offset fits in 'int'.
2982
2983 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
2984
2985 * buffer.c, buffer.h: Use bool for boolean.
2986 * buffer.c (reset_buffer_local_variables)
2987 (buffer_lisp_local_variables, Fset_buffer_modified_p)
2988 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
2989 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
2990 (overlay_touches_p, overlay_strings, Foverlay_put)
2991 (report_overlay_modification, call_overlay_mod_hooks):
2992 (mmap_enlarge, mmap_set_vars):
2993 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
2994 Use bool for booleans, instead of int.
2995 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
2996 since the 1-or-0 return value is always ignored anyway.
2997 (mmap_initialized_p):
2998 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
2999 * buffer.h, lisp.h: Adjust prototypes to match above changes.
3000
3001 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3002
3003 * bidi.c: Use bool for boolean.
3004 This is a bit more readable, and makes the text segment of bidi.o
3005 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
3006 Presumably it's faster too.
3007 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
3008 Now bool.
3009 (bidi_cache_find_level_change, bidi_cache_iterator_state)
3010 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
3011 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
3012 (bidi_explicit_dir_char, bidi_level_of_next_char)
3013 (bidi_find_other_level_edge, bidi_move_to_visually_next):
3014 Use bool for booleans, instead of int.
3015 * dispextern.h (bidi_init_it, bidi_paragraph_init)
3016 (bidi_unshelve_cache): Adjust decls to match code.
3017
3018 2012-08-23 Martin Rudalics <rudalics@gmx.at>
3019
3020 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
3021 argument.
3022
3023 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3024
3025 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
3026 * atimer.h: Include <stdbool.h>.
3027
3028 2012-08-22 Dan Nicolaescu <dann@gnu.org>
3029
3030 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
3031 compile time tests instead of run time tests on systems that do
3032 not use them.
3033 (FRAME_MAC_P): Remove leftover from deleted code.
3034 * frame.c (syms_of_frame): Remove leftover from deleted code.
3035
3036 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
3037
3038 * nsterm.m (insertText:): Don't clear modifiers if code is space.
3039
3040 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
3041
3042 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
3043 Otherwise, the compiler complains about (A?B:C) where B is void
3044 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
3045 (fontset_add): Return void, for FONTSET_ADD.
3046
3047 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3048
3049 * alloc.c: Use bool for booleans.
3050 (gc_in_progress, abort_on_gc)
3051 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3052 (dont_register_blocks) [GC_MALLOC_CHECK]:
3053 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
3054 (check_string_bytes, make_specified_string, memory_full)
3055 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
3056 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
3057 (mark_stack, valid_pointer_p, make_pure_string)
3058 (Fgarbage_collect, survives_gc_p, gc_sweep):
3059 Use bool for booleans, instead of int.
3060 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3061 Remove unused local.
3062 * alloc.c (PURE_POINTER_P):
3063 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
3064 * editfns.c (Fformat):
3065 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
3066 (Fdo_auto_save):
3067 * fns.c (sweep_weak_table):
3068 * lisp.h (suppress_checking, push_message, survives_gc_p)
3069 (make_pure_string, gc_in_progress, abort_on_gc):
3070 * lread.c (readchar, read1):
3071 * print.c (Fprin1_to_string):
3072 * xdisp.c (push_message):
3073 Use bool for booleans affected directly or indirectly by
3074 alloc.c's changes.
3075
3076 Make recently-introduced setters macros.
3077 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
3078 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
3079 (set_fontset_default, set_fontset_fallback): Rename from their
3080 upper-case counterparts, and make them functions rather than macros.
3081 This is more consistent with the other recently-introduced setters.
3082 These don't need to be inline, since they're local.
3083
3084 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
3085
3086 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
3087 the loop (Bug#12247).
3088
3089 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3090
3091 * lisp.h (vcopy): Use memcpy rather than our own loop.
3092 This fixes a performance regression introduced by the recent
3093 addition of vcopy. This means 'vcopy' will need to be modified
3094 for a copying collector, but that's OK. Also, tighten the
3095 checking in the assertion.
3096
3097 2012-08-21 Eli Zaretskii <eliz@gnu.org>
3098
3099 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
3100 components for RTL text (Bug#11860). Adjust X-OFFSET of each
3101 non-base glyph for the width of the base character, according to
3102 what x_draw_composite_glyph_string_foreground expects.
3103 Generate WADJUST value according to composition_gstring_width's
3104 expectations, to produce correct width of the composed character.
3105 Reverse the sign of the DU offset produced by ScriptPlace.
3106
3107 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3108
3109 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
3110
3111 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
3112
3113 Avoid direct writes to contents member of struct Lisp_Vector.
3114 * lisp.h (vcopy): New function to copy data into vector.
3115 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
3116 * fns.c (Ffillarray): Use ASET.
3117 * keyboard.c (timer_check_2): Use AREF and ASET.
3118 (append_tool_bar_item, Frecent_keys): Use vcopy.
3119 * lread.c (read_vector): Use ASET.
3120 * msdos.c (Frecent_doskeys): Use vcopy.
3121 * xface.c (Finternal_copy_lisp_face): Use vcopy.
3122 (Finternal_merge_in_global_face): Use ASET and vcopy.
3123 * xfont.c (xfont_list_pattern): Likewise.
3124
3125 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3126
3127 * window.c (Fwindow_point): For the selected window always return
3128 the position of its buffer's point.
3129 (Fset_window_point): For the selected window always go in its
3130 buffer to the specified position.
3131
3132 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
3133
3134 Setter macros for fontsets.
3135 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
3136 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
3137 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
3138 Adjust users.
3139
3140 2012-08-20 Glenn Morris <rgm@gnu.org>
3141
3142 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
3143 Don't assume that `ln -f' works.
3144
3145 2012-08-20 Eli Zaretskii <eliz@gnu.org>
3146
3147 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
3148 and later about non-assignments with no effect. See discussion at
3149 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
3150 details.
3151
3152 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3153
3154 Inline setter functions for Lisp_Objects slots of struct specbinding.
3155 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
3156 Adjust users.
3157
3158 2012-08-20 Martin Rudalics <rudalics@gmx.at>
3159
3160 * window.c (select_window): Always make selected window's buffer
3161 current.
3162
3163 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3164
3165 Use AREF and ASET for docstrings of category tables.
3166 * category.h (CATEGORY_DOCSTRING): Use AREF.
3167 (SET_CATEGORY_DOCSTRING): Use ASET.
3168 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
3169
3170 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3171
3172 Inline setter functions for hash table members.
3173 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
3174 (set_hash_hash, set_hash_index): Rename with _slot suffix.
3175 (set_hash_key_and_value, set_hash_index, set_hash_next)
3176 (set_hash_hash): New functions.
3177 * charset.c, fns.c: Adjust users.
3178
3179 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3180
3181 Inline getter and setter functions for per-buffer values.
3182 * buffer.h (per_buffer_default, set_per_buffer_default)
3183 (per_buffer_value, set_per_buffer_value): New functions.
3184 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
3185 * buffer.c, data.c: Adjust users.
3186
3187 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
3188
3189 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
3190
3191 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
3192
3193 Rely on <config.h> + <unistd.h> to declare 'environ',
3194 as gnulib does this if the system doesn't.
3195 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
3196 Remove declaration. MS-Windows declares it on stdlib.h which is
3197 included by conf_post.h.
3198 * emacs.c (environ) [DOUG_LEA_MALLOC]:
3199 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
3200 * vm-limit.c: Include <unistd.h>, for 'environ'.
3201
3202 * unexaix.c, unexcoff.c: Include "mem-limits.h".
3203 (start_of_data): Remove decl; mem-limits.h provides it.
3204
3205 * xdisp.c (handle_invisible_prop): Make it a bit faster
3206 and avoid a gcc -Wmaybe-uninitialized diagnostic.
3207
3208 2012-08-19 Chong Yidong <cyd@gnu.org>
3209
3210 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
3211 ends (Bug#3874).
3212
3213 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
3214
3215 * .gdbinit: Use call instead of set when calling a function in the
3216 inferior.
3217
3218 * data.c (set_internal): Don't use set_blv_found.
3219 (Fkill_local_variable): Likewise.
3220
3221 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
3222
3223 * nsfont.m (ns_ascii_average_width): Ensure the string
3224 ascii_printable is initialized with a null-terminated character
3225 array. Otherwise, it can contain undesired extra characters.
3226
3227 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
3228
3229 port new setting code to Sun C 5.8 2005/10/13
3230 * chartab.c, lisp.h (char_table_set, char_table_set_range):
3231 Return void, not Lisp_Object. Otherwise, the compiler
3232 complains about (A?B:C) where B is void and C is Lisp_Object
3233 when compiling CHAR_TABLE_SET, due to the recent change to
3234 the API of sub_char_table_set_contents.
3235
3236 2012-08-18 Chong Yidong <cyd@gnu.org>
3237
3238 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
3239 for the string case (Bug#3874).
3240
3241 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
3242
3243 * buffer.h (BSET): Remove (Bug#12215).
3244 Replace all uses with calls to new setter functions.
3245 (bset_bidi_paragraph_direction, bset_case_canon_table)
3246 (bset_case_eqv_table, bset_directory, bset_display_count)
3247 (bset_display_time, bset_downcase_table)
3248 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
3249 (bset_last_selected_window, bset_local_var_alist)
3250 (bset_mark_active, bset_point_before_scroll, bset_read_only)
3251 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
3252 (bset_width_table):
3253 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
3254 (bset_auto_fill_function, bset_auto_save_file_format)
3255 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
3256 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
3257 (bset_cache_long_line_scans, bset_case_fold_search)
3258 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
3259 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
3260 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
3261 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
3262 (bset_header_line_format, bset_indicate_buffer_boundaries)
3263 (bset_indicate_empty_lines, bset_invisibility_spec)
3264 (bset_left_fringe_width, bset_major_mode, bset_mark)
3265 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
3266 (bset_name, bset_overwrite_mode, bset_pt_marker)
3267 (bset_right_fringe_width, bset_save_length)
3268 (bset_scroll_bar_width, bset_scroll_down_aggressively)
3269 (bset_scroll_up_aggressively, bset_selective_display)
3270 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
3271 (bset_word_wrap, bset_zv_marker):
3272 * category.c (bset_category_table):
3273 * syntax.c (bset_syntax_table):
3274 New setter functions.
3275
3276 * process.h (PSET): Remove (Bug#12215).
3277 Replace all uses with calls to new setter functions.
3278 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3279 (PROCESS_INLINE): New macro.
3280 (pset_childp): New setter function.
3281 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
3282 * process.c (PROCESS_INLINE):
3283 Define to EXTERN_INLINE, so that the corresponding functions
3284 are compiled into code.
3285 (pset_buffer, pset_command, pset_decode_coding_system)
3286 (pset_decoding_buf, pset_encode_coding_system)
3287 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
3288 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
3289 (pset_type, pset_write_queue): New setter functions.
3290
3291 * window.h (WSET): Remove (Bug#12215).
3292 Replace all uses with calls to new setter functions.
3293 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3294 (WINDOW_INLINE): New macro.
3295 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
3296 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
3297 (wset_total_lines, wset_vertical_scroll_bar)
3298 (wset_window_end_pos, wset_window_end_valid)
3299 (wset_window_end_vpos): New setter functions.
3300 * window.c (WINDOW_INLINE):
3301 Define to EXTERN_INLINE, so that the corresponding functions
3302 are compiled into code.
3303 (wset_combination_limit, wset_dedicated, wset_display_table)
3304 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
3305 (wset_new_normal, wset_new_total, wset_next_buffers)
3306 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
3307 (wset_prev_buffers, wset_right_fringe_width)
3308 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
3309 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
3310 (wset_window_parameters):
3311 * xdisp.c (wset_base_line_number, wset_base_line_pos)
3312 (wset_column_number_displayed, wset_region_showing):
3313 New setter functions.
3314
3315 * termhooks.h (TSET): Remove (Bug#12215).
3316 Replace all uses with calls to new setter functions.
3317 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3318 (TERMHOOKS_INLINE): New macro.
3319 (tset_charset_list, tset_selection_alist): New setter functions.
3320 * terminal.c (TERMHOOKS_INLINE):
3321 Define to EXTERN_INLINE, so that the corresponding functions
3322 are compiled into code.
3323 (tset_param_alist): New setter function.
3324
3325 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
3326
3327 * keyboard.h (KSET): Remove (Bug#12215).
3328 Replace all uses with calls to new setter functions.
3329 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3330 (KEYBOARD_INLINE): New macro.
3331 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
3332 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
3333 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
3334 New setter functions.
3335 * keyboard.c (KEYBOARD_INLINE):
3336 Define to EXTERN_INLINE, so that the corresponding functions
3337 are compiled into code.
3338 (kset_echo_string, kset_kbd_queue)
3339 (kset_keyboard_translate_table, kset_last_prefix_arg)
3340 (kset_last_repeatable_command, kset_local_function_key_map)
3341 (kset_overriding_terminal_local_map, kset_real_last_command)
3342 (kset_system_key_syms): New setter functions.
3343
3344 * frame.h (FSET): Remove (Bug#12215).
3345 Replace all uses with calls to new setter functions.
3346 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3347 (FRAME_INLINE): New macro.
3348 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
3349 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
3350 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
3351 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
3352 (fset_param_alist, fset_root_window, fset_scroll_bars)
3353 (fset_selected_window, fset_title, fset_tool_bar_items)
3354 (fset_tool_bar_position, fset_tool_bar_window): New functions.
3355 * frame.c (FRAME_INLINE):
3356 Define to EXTERN_INLINE, so that the corresponding functions
3357 are compiled into code.
3358 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
3359
3360 A few more naming-convention fixes for getters and setters.
3361 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
3362 and rename from buffer_overlays_set_before.
3363 (set_buffer_overlays_after): Move here from buffer.h, and rename
3364 from buffer_overlays_set_after.
3365 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
3366 All uses changed.
3367 (set_buffer_intervals): Rename from buffer_set_intervals.
3368 * intervals.c (set_interval_object): Move here from intervals.h,
3369 and rename from interval_set_object.
3370 (set_interval_left): Move here from intervals.h, and rename from
3371 interval_set_left.
3372 (set_interval_right): Move here from intervals.h, and rename from
3373 interval_set_right.
3374 (copy_interval_parent): Move here from intervals.h, and rename from
3375 interval_copy_parent.
3376 * intervals.h (set_interval_parent): Rename from interval_set_parent.
3377 (set_interval_plist): Rename from interval_set_plist.
3378 Return void, not Lisp_Object, since no caller uses the result.
3379 * lisp.h (string_intervals): Rename from string_get_intervals.
3380 (set_string_intervals): Rename from string_set_intervals.
3381
3382 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
3383 (set_char_table_contents): Rename from char_table_set_contents.
3384 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
3385 All uses changed. See the end of
3386 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
3387
3388 * lisp.h (CSET): Remove (Bug#12215).
3389 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
3390 (set_char_table_purpose): New functions,
3391 replacing CSET. All uses changed. For example, replace
3392 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
3393 "set_char_table_parent (char_table, parent);".
3394 The old version was confusing because it used the same name
3395 'parent' for two different things.
3396
3397 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
3398
3399 Functions to get and set Lisp_Object fields of buffer-local variables.
3400 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
3401 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
3402 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
3403 * data.c, eval.c, frame.c: Adjust users.
3404
3405 2012-08-17 Chong Yidong <cyd@gnu.org>
3406
3407 * xfaces.c (merge_face_vectors): If the target font specfies a
3408 font spec, make the font's attributes take precedence over
3409 directly-specified attributes.
3410 (merge_face_ref): Recognize :font.
3411
3412 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
3413
3414 Do not use memcpy for copying intervals.
3415 * intervals.c (reproduce_interval): New function.
3416 (reproduce_tree, reproduce_tree_obj): Use it.
3417 (reproduce_tree_obj): Remove prototype.
3418
3419 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
3420
3421 * lisp.h (duration_to_sec_usec): Remove unused decl.
3422
3423 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
3424
3425 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
3426 to an allocated instance of NSString, not to the class itself.
3427
3428 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
3429
3430 * makefile.w32-in (C_CTYPE_H): New macro.
3431 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
3432 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
3433 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
3434
3435 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
3436
3437 Use ASCII tests for character types.
3438 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
3439 * xfns.c, xterm.c:
3440 Don't include <ctype.h>; was not needed.
3441 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
3442 * sysdep.c, xfaces.c:
3443 Include <c-ctype.h> instead of <ctype.h>.
3444 * nsterm.m: Include <c-ctype.h>.
3445 * charset.c (read_hex):
3446 * doc.c (Fsnarf_documentation):
3447 * fileio.c (IS_DRIVE) [WINDOWSNT]:
3448 (DRIVE_LETTER) [DOS_NT]:
3449 (Ffile_name_directory, Fexpand_file_name)
3450 (Fsubstitute_in_file_name):
3451 * font.c (font_parse_xlfd, font_parse_fcname):
3452 * frame.c (x_set_font_backend):
3453 * gtkutil.c (xg_get_font):
3454 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
3455 * nsimage.m (hexchar):
3456 * nsterm.m (ns_xlfd_to_fontname):
3457 * sysdep.c (system_process_attributes):
3458 * xfaces.c (hash_string_case_insensitive):
3459 Use C-locale tests instead of locale-specific tests for character
3460 types, since we want the ASCII interpretation here, not the
3461 interpretation suitable for whatever happens to be the current locale.
3462
3463 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3464
3465 Consistently check windows for validity/liveness
3466 (Bug#11984, Bug#12025, Bug#12026).
3467 * lisp.h (CHECK_VALID_WINDOW): New macro.
3468 * window.c (decode_window): Rename to decode_live_window.
3469 (decode_valid_window, Fwindow_valid_p): New functions.
3470 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
3471 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
3472 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
3473 (Fwindow_prev_sibling, Fwindow_combination_limit)
3474 (Fset_window_combination_limit, Fwindow_use_time)
3475 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
3476 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
3477 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
3478 (Fwindow_hscroll, Fset_window_hscroll)
3479 (Fwindow_redisplay_end_trigger)
3480 (Fset_window_redisplay_end_trigger, Fwindow_edges)
3481 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
3482 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
3483 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
3484 (Fwindow_end, Fset_window_point, Fset_window_start)
3485 (Fpos_visible_in_window_p, Fwindow_line_height)
3486 (Fwindow_dedicated_p, Fset_window_dedicated_p)
3487 (Fwindow_prev_buffers, Fset_window_prev_buffers)
3488 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
3489 (Fset_window_parameter, Fwindow_display_table)
3490 (Fset_window_display_table, Fdelete_other_windows_internal)
3491 (Fset_window_buffer, Fset_window_new_total)
3492 (Fset_window_new_normal, Fdelete_window_internal)
3493 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
3494 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
3495 (Fwindow_scroll_bars): Check whether argument window is a valid or
3496 live window. Update doc-strings.
3497 (syms_of_window): New symbol Qwindow_valid_p.
3498 * keyboard.c (Fposn_at_x_y): Check whether argument
3499 frame_or_window denotes a valid window.
3500
3501 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
3502
3503 Fix previous char table change.
3504 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
3505 * chartab.c (optimize_sub_char_table): Likewise.
3506
3507 2012-08-16 Chong Yidong <cyd@gnu.org>
3508
3509 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
3510
3511 * xfont.c (xfont_open):
3512 * xftfont.c (xftfont_open): Set the font's max_width field.
3513
3514 * nsfont.m (nsfont_open): Similar to the Xft backend, set
3515 min_width to space_width and average_width to the average over
3516 printable ASCII characters.
3517 (ns_char_width): Code cleanup.
3518 (ns_ascii_average_width): New utility function.
3519
3520 * font.h (struct font): Update comments.
3521
3522 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
3523
3524 Simple interface to set Lisp_Object fields of character tables.
3525 * lisp.h (CSET): New macro.
3526 (char_table_set_extras, char_table_set_contents)
3527 (sub_char_table_set_contents): New function.
3528 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
3529 * syntax.c: Adjust users.
3530
3531 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
3532
3533 * eval.c (eval_sub): Bind lexical-binding.
3534 * lread.c (Qlexical_binding): Make non-static.
3535
3536 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
3537
3538 * nsmenu.m (popupSession): Remove.
3539 (pop_down_menu): Remove endModalSession.
3540 (timeout_handler:): New method.
3541 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
3542 Call runModalForWindow. Check timer_fired when it returns.
3543 If not set, cancel timer and break out of loop.
3544 Otherwise loop again, with a new timeout.
3545
3546 * nsterm.m: Include fcntl.h if present.
3547 (fd_entry, t_readfds, inNsSelect): Remove.
3548 (select_writefds, select_valid, select_timeout, selfds)
3549 (select_mutex, apploopnr): Add.
3550 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
3551 Otherwise call kbd_buffer_store_event.
3552 (ns_send_appdefined): Remove release of fd_entry.
3553 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
3554 Increment and decrement apploopnr.
3555 (ns_select): If no file descriptors, just do a NSTimer.
3556 Otherwise copy read/write masks and start select thread (fd_handler).
3557 Start main loop and wait for application defined event.
3558 Inform select thread to stop selecting after main loop is exited.
3559 (ns_term_init): Create selfds pipe and set non-blocking.
3560 Initialize select_mutex. Start the select thread (fd_handler).
3561 (fd_handler:): Loop forever, wait for info from the main thread
3562 to either start or stop selecting. When select returns, send
3563 and appdefined event.
3564 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
3565 If not call kbd_buffer_store_event.
3566
3567 * nsterm.h (EmacsApp): fd_handler takes id argument.
3568 (EmacsDialogPanel): Add timer_fired and timeout_handler.
3569
3570 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
3571
3572 2012-08-15 Eli Zaretskii <eliz@gnu.org>
3573
3574 * region-cache.c (move_cache_gap): Update gap_len using the actual
3575 growth of the boundaries array. Do not change cache_len.
3576 (Bug#12196)
3577
3578 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
3579
3580 Generalize and cleanup font subsystem checks.
3581 * font.h (FONT_DEBUG, font_assert): Remove.
3582 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
3583 Change font_assert to eassert. Use eassert where appropriate.
3584
3585 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
3586
3587 * gtkutil.c (xg_get_font): Use pango_units_to_double.
3588
3589 2012-08-15 Chong Yidong <cyd@gnu.org>
3590
3591 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
3592 When using the new font chooser, use gtk_font_chooser_get_font_desc to
3593 extract the font descriptor instead of just the font name.
3594 In that case, return a font spec instead of a string.
3595 (x_last_font_name): Move to this file from xfns.c.
3596
3597 * xfns.c (Fx_select_font): The return value can also be a font
3598 spec. Move x_last_font_name management to gtkutil.c.
3599
3600 * xfaces.c: Make font weight and style symbols non-static.
3601
3602 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3603
3604 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
3605 (bug#12117).
3606
3607 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3608
3609 * alloc.c (Fgarbage_collect): Use plural form consistently.
3610
3611 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3612
3613 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
3614 iteration through the command loop. Fixes a problem whereby mouse
3615 movements are ignored until the first mouse click.
3616
3617 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3618
3619 Use bool, not int, for Lisp booleans.
3620 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
3621 makes Emacs a bit smaller and presumably a bit faster.
3622 * lisp.h: Include <stdbool.h>.
3623 (struct Lisp_Boolfwd, defvar_bool):
3624 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
3625 * regex.c [!emacs]: Include <stdbool.h>.
3626 (false, true): Remove; <stdbool.h> does this for us now.
3627
3628 2012-08-14 Chong Yidong <cyd@gnu.org>
3629
3630 * character.c (Fcharacterp): Doc fix (Bug#12076).
3631
3632 * data.c (Findirect_variable): Doc fix (Bug#11040).
3633
3634 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
3635
3636 * editfns.c (Fformat): Doc fix (Bug#12059).
3637 (Fsave_current_buffer): Doc fix (Bug#11542).
3638
3639 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
3640
3641 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
3642 (bug#12022).
3643
3644 2012-08-14 Martin Rudalics <rudalics@gmx.at>
3645
3646 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
3647 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
3648 * minibuf.c (choose_minibuf_frame, read_minibuf):
3649 * w32fns.c (x_create_tip_frame):
3650 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
3651 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
3652
3653 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3654
3655 * intervals.c (offset_intervals): Remove obsolete comment.
3656
3657 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
3658
3659 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
3660
3661 2012-08-14 Gergely Risko <gergely@risko.hu>
3662
3663 * coding.c (decode_coding): Record buffer modification before
3664 disabling undo_list (Bug#11773).
3665
3666 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
3667
3668 Revert and cleanup some recent overlay changes.
3669 * buffer.h (enum overlay_type): Remove.
3670 (buffer_get_overlays, buffer_set_overlays): Likewise.
3671 (buffer_set_overlays_before, buffer_set_overlays_after):
3672 New function. Adjust users.
3673 (unchain_both): Add eassert.
3674
3675 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
3676
3677 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
3678
3679 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3680
3681 * gtkutil.c (xg_mark_data): Don't assume C99.
3682
3683 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
3684
3685 * gtkutil.c (xg_frame_tb_info): New struct.
3686 (TB_INFO_KEY): New define.
3687 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
3688 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
3689 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
3690 if not present.
3691 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
3692 is up to date. Otherwise store new data.
3693 (free_frame_tool_bar): Free xg_frame_tb_info if present.
3694
3695 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
3696
3697 Use KSET for write access to Lisp_Object members of struct kboard.
3698 * keyboard.h (KSET): New macro.
3699 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
3700 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
3701 * xterm.c: Adjust users.
3702
3703 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
3704
3705 Use BSET for write access to Lisp_Object members of struct buffer.
3706 * buffer.h (BSET): New macro.
3707 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
3708 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
3709 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
3710 * window.c, xdisp.c, xfns.c: Adjust users.
3711
3712 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
3713
3714 * lread.c (syms_of_lread): Initialize Vlexical_binding.
3715
3716 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
3717
3718 * nsterm.m (not_in_argv): New function.
3719 (application:openFile, application:openTempFile:):
3720 (application:openFileWithoutUI:, application:openFiles:): Open file
3721 if not_in_argv returns non-zero (bug#12171).
3722
3723 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
3724 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
3725 Define for Gtk+ versions less than 3.2.
3726 (xg_get_font_name): Use those functions/macros here.
3727 Reported by Frans Oilinki <moilinki@gmail.com>.
3728
3729 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3730
3731 * unexmacosx.c (copy_data_segment): Copy initialized data in
3732 statically linked libraries from input file rather than memory.
3733
3734 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
3735 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
3736 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
3737
3738 2012-08-10 Glenn Morris <rgm@gnu.org>
3739
3740 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
3741 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
3742
3743 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3744
3745 Fix last change to allow compilation with low optimization levels.
3746 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
3747 Reported by Jan Djärv <jan.h.d@swipnet.se>.
3748
3749 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3750
3751 Use common inline syntax in intervals.h.
3752 * intervals.h (INTERVALS_INLINE): New macro.
3753 Change all users from LISP_INLINE.
3754
3755 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3756
3757 Define Qnone once for all platforms.
3758 * frame.c (Qnone): Define here.
3759 (syms_of_frame): DEFSYM it.
3760 * lisp.h (Qnone): New declaration.
3761 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
3762 * xfns.c: Remove duplication. Adjust users.
3763
3764 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3765
3766 Remove unused macros from intervals.h.
3767 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
3768 * intervals.c: Adjust comment.
3769
3770 2012-08-10 Eli Zaretskii <eliz@gnu.org>
3771
3772 * w32fns.c <w32_unicode_gui>: New static variable.
3773 (globals_of_w32fns): Initialize it according to os_subtype.
3774 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
3775 testing os_subtype.
3776
3777 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
3778 Eli Zaretskii <eliz@gnu.org>
3779
3780 Fix bug #10299 with Unicode characters sent by customized
3781 keyboards created by MSKLC.
3782 * w32fns.c (INIT_WINDOW_CLASS): New macro.
3783 (w32_init_class): Use it to initialize the Emacs class with either
3784 ANSI or Unicode API calls.
3785 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
3786 later.
3787 (w32_wnd_proc): If the character code sent by WM_CHAR or
3788 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
3789 original message. Call DefWindowProcW on NT and later.
3790
3791 2012-08-10 Glenn Morris <rgm@gnu.org>
3792
3793 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
3794
3795 * lisp.h (DIRECTORY_SEP): Let configure set it.
3796
3797 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
3798
3799 Use TSET for write access to Lisp_Object slots of struct terminal.
3800 * termhooks.h (TSET): New macro.
3801 * coding.c, terminal.c, xselect.c: Adjust users.
3802
3803 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
3804
3805 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
3806 the failing expression, include them in the error message.
3807 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
3808 * lisp.h (internal_condition_case_n): Update declaration.
3809
3810 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
3811
3812 Inline functions to examine and change buffer overlays.
3813 * buffer.c (unchain_both): New function.
3814 * buffer.h (buffer_get_overlays, buffer_set_overlays):
3815 (buffer_has_overlays): New function.
3816 (enum overlay_type): New enum.
3817 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
3818 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
3819
3820 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
3821
3822 Inline functions to examine and change buffer intervals.
3823 * alloc.c (mark_interval_tree): Remove.
3824 (MARK_INTERVAL_TREE): Simplify.
3825 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
3826 * intervals.c (buffer_balance_intervals): New function.
3827 (graft_intervals_into_buffer): Adjust indentation.
3828 (set_intervals_multibyte): Simplify.
3829 * buffer.h (BUF_INTERVALS): Remove.
3830 (buffer_get_intervals, buffer_set_intervals): New function.
3831 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
3832 * intervals.c, textprop.c: Adjust users.
3833
3834 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
3835
3836 Inline functions to examine and change string intervals.
3837 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
3838 (string_get_intervals, string_set_intervals): New function.
3839 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
3840 * lread.c, print.c, textprop.c: Adjust users.
3841
3842 2012-08-08 Glenn Morris <rgm@gnu.org>
3843
3844 * lisp.mk (lisp): Remove language/persian.elc.
3845
3846 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
3847
3848 Cleanup intervals.
3849 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
3850 (NULL_INTERVAL_P): Likewise. Adjust users.
3851 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
3852 Adjust comment. Move under #if 0.
3853 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
3854 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
3855
3856 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
3857
3858 Check total length of intervals with eassert.
3859 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
3860 * intervals.c: Change all users to eassert.
3861
3862 2012-08-07 Eli Zaretskii <eliz@gnu.org>
3863
3864 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
3865 Rename fields to match removal of FGET and WGET and disuse of
3866 INTERNAL_FIELD in Lisp_Cons.
3867
3868 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
3869
3870 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
3871 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
3872 name since all xname users are fixed long time ago. Do not
3873 use INTERNAL_FIELD.
3874 (set_symbol_name, set_symbol_function, set_symbol_plist):
3875 (set_symbol_next, set_overlay_plist): New function.
3876 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
3877 (struct Lisp_Overlay): Likewise.
3878 (CVAR, MVAR, SVAR): Remove.
3879 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
3880 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
3881 * xterm.c: Adjust users.
3882 * .gdbinit: Change to use name field of struct Lisp_Symbol
3883 where appropriate.
3884
3885 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
3886
3887 Basic functions to set Lisp_Object and pointer slots of intervals.
3888 * intervals.h (interval_set_parent, interval_set_object):
3889 (interval_set_left, interval_set_right, interval_set_plist):
3890 (interval_copy_parent): New function.
3891 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
3892 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
3893 Adjust indentation.
3894 (INTERVAL_SIZE): Remove. Adjust users.
3895 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
3896
3897 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
3898
3899 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
3900 * process.h (PGET): Remove.
3901 (struct Lisp_Process): Do not use INTERNAL_FIELD.
3902 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
3903
3904 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
3905
3906 Drop WGET and revert read access to Lisp_Objects slots of struct window.
3907 * window.h (WGET): Remove.
3908 (struct window): Do not use INTERNAL_FIELD.
3909 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
3910 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
3911 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
3912 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
3913 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
3914 Adjust users.
3915
3916 2012-08-07 Chong Yidong <cyd@gnu.org>
3917
3918 * window.c (Fwindow_edges, Fwindow_pixel_edges)
3919 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
3920 (Fdelete_window_internal): Signal an error if the window is not on
3921 a live frame (Bug#12025).
3922
3923 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
3924
3925 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
3926 * frame.h (FGET): Remove.
3927 (struct frame): Do not use INTERNAL_FIELD.
3928 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
3929 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
3930 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
3931 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
3932
3933 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
3934
3935 * w32.c: Silence compiler warnings.
3936 (map_w32_filename): Remove unused variable `is_fat'.
3937 (chase_symlinks): Add parentheses around expression.
3938
3939 2012-08-06 Glenn Morris <rgm@gnu.org>
3940
3941 * sysdep.c: Respect BROKEN_GETWD.
3942
3943 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
3944 Let configure handle it.
3945 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
3946
3947 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3948
3949 Use GCALIGNMENT where appropriate.
3950 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
3951 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
3952 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
3953
3954 2012-08-06 Eli Zaretskii <eliz@gnu.org>
3955
3956 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
3957 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
3958
3959 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
3960
3961 * buffer.h (struct buffer): Revert `indirections' to a simple int;
3962 that should be sufficient for everyone.
3963
3964 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
3965
3966 * keyboard.c (timer_check_2): Add break so timer_check returns next
3967 timeout.
3968
3969 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3970
3971 Fix Windows build errors introduced after converting to WGET and WSET.
3972 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
3973 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
3974
3975 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
3976
3977 * nsterm.m (ns_frame_rehighlight): Use FSET.
3978
3979 * nsmenu.m (ns_update_menubar): Use FSET.
3980
3981 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3982
3983 Separate read and write access to Lisp_Object slots of Lisp_Process.
3984 * process.h (PGET, PSET): New macros similar to AREF and ASET.
3985 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
3986
3987 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3988
3989 Separate read and write access to Lisp_Object slots of struct window.
3990 * window.h (WGET, WSET): New macros similar to AREF and ASET.
3991 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
3992 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
3993 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
3994 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
3995 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
3996 Adjust users.
3997
3998 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3999
4000 Fix Windows build errors introduced after converting to FGET and FSET.
4001 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
4002 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
4003 (w32_judge_scroll_bars): Change to use FSET.
4004 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4005
4006 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4007
4008 Fix replacement typo.
4009 * window.c (replace_window): Set root_window instead of
4010 selected_window. This fixes a total window subsystem
4011 malfunction reported by Bastien Guerry <bzg@gnu.org>.
4012
4013 2012-08-06 Glenn Morris <rgm@gnu.org>
4014
4015 * lisp.mk (lisp): Add language/persian.elc.
4016
4017 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4018
4019 Separate read and write access to Lisp_Object slots of struct frame.
4020 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
4021 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
4022 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
4023 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4024 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
4025
4026 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
4027
4028 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
4029
4030 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
4031
4032 Generalize common compile-time constants.
4033 * lisp.h (header_size, bool_header_size, word_size): Now here.
4034 (struct Lisp_Vector): Add comment.
4035 (struct Lisp_Bool_Vector): Move up to define handy constants.
4036 (VECSIZE, PSEUDOVECSIZE): Simplify.
4037 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
4038 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
4039 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
4040 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
4041 * xfont.c, xmenu.c: Use word_size where appropriate.
4042
4043 2012-08-05 Lawrence Mitchell <wence@gmx.li>
4044
4045 * search.c (Freplace_match): Treat \? in the replacement text
4046 literally (Bug#8161).
4047
4048 2012-08-05 Chong Yidong <cyd@gnu.org>
4049
4050 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
4051 * frame.c (Vdelete_frame_functions):
4052 * emacs.c (Vkill_emacs_hook): Doc fix.
4053
4054 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4055
4056 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
4057 --with-x-toolkit=no builds.
4058 Reported by Carsten Mattner <carstenmattner@gmail.com>.
4059
4060 2012-08-04 Chong Yidong <cyd@gnu.org>
4061
4062 * syntax.c (Fmodify_syntax_entry): Doc fix.
4063
4064 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4065
4066 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
4067 * w32.c (init_environment): Change the default values of many
4068 environment variables in dflt_envvars[] to NULL, to avoid pushing
4069 them into environment when they were not already defined.
4070 Remove the code that deletes site-lisp subdirectories from the default
4071 value of EMACSLOADPATH, as it is no longer needed.
4072 (check_windows_init_file): Now external, not static.
4073 Use Vload_path as is, without adding anything, as this function is now
4074 called when Vload_path is already set up.
4075
4076 * w32.h (check_windows_init_file): Add prototype.
4077
4078 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
4079 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
4080 compatibility with Posix platforms.
4081 (main): Move the call to check_windows_init_file to here from
4082 w32.c.
4083 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
4084 any, in the DEFALT argument into the root of the Emacs build or
4085 installation tree, as appropriate.
4086
4087 * callproc.c (init_callproc_1): Call decode_env_path instead of
4088 doing its equivalent by hand.
4089 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
4090 the code that sets Vexec_path run on MS-Windows.
4091
4092 * lread.c (init_lread): Add comments to #ifdef's.
4093
4094 * msdos.c (dos_set_window_size, IT_update_begin)
4095 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
4096 instead of direct references.
4097
4098 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
4099
4100 Export DEFAULT_REHASH_* to GDB.
4101 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
4102 Now constants, not macros.
4103
4104 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
4105
4106 Remove unnecessary casts involving pointers.
4107 These casts are no longer needed now that we assume C89 or later,
4108 since they involve casting to or from void *.
4109 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
4110 (make_pure_float, make_pure_vector):
4111 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
4112 * macros.c (Fstart_kbd_macro):
4113 * menu.c (find_and_return_menu_selection):
4114 * minibuf.c (read_minibuf_noninteractive):
4115 * sysdep.c (closedir):
4116 * xdisp.c (x_produce_glyphs):
4117 * xfaces.c (compare_fonts_by_sort_order):
4118 * xfns.c (x_real_positions, select_visual):
4119 * xselect.c (x_stop_queuing_selection_requests)
4120 (x_get_window_property, x_get_window_property_as_lisp_data):
4121 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
4122 Remove unnecessary pointer casts.
4123 * alloc.c (record_xmalloc): New function.
4124 * lisp.h (record_xmalloc): New decl.
4125 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
4126 more like a function. This is because the pointer cast is not
4127 needed. All uses changed.
4128 * print.c (print_string, print_error_message): Avoid length recalc.
4129
4130 Improve fix for macroexp crash with debugging (Bug#12118).
4131 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
4132 ARRAY_MARK_FLAG when checking subscripts, because ASET is
4133 not supposed to be invoked from the garbage collector.
4134 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
4135 (gc_aset): New function, which is like ASET but can be
4136 used in the garbage collector.
4137 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
4138 (set_hash_index): Use it instead of ASET.
4139
4140 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4141
4142 Support symlinks on latest versions of MS-Windows.
4143 * w32.c: Include winioctl.h and aclapi.h.
4144 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
4145 (revert_to_self): Forward declarations of static functions.
4146 <static BOOL g_b_init_get_security_info>:
4147 <g_b_init_create_symbolic_link>: New static flags.
4148 (globals_of_w32): Initialize them to zero.
4149 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
4150 (map_w32_filename): Improve commentary. Simplify switch.
4151 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
4152 headers (most versions of MinGW w32api don't).
4153 (get_security_info, create_symbolic_link)
4154 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
4155 New functions.
4156 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
4157 in the argument file name.
4158 (sys_access): Call unc_volume_file_attributes only if
4159 GetFileAttributes fails with network-related error codes.
4160 (sys_rename): Diagnose renaming of a symlink when the user doesn't
4161 have the required privileges.
4162 (get_file_security_desc_by_name): Rename from
4163 get_file_security_desc.
4164 (stat_worker): New function, with most of the guts of 'stat', and
4165 with addition of handling of symlinks and support for 'lstat'.
4166 If possible, get file's attributes and security information by
4167 handle, not by name. Produce S_IFLNK bit for symlinks, when
4168 called from 'lstat'.
4169 (stat, lstat): New functions, call 'stat_worker'.
4170 (symlink, readlink, careadlinkat): Rewritten to create and resolve
4171 symlinks when the underlying filesystem supports them.
4172
4173 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4174
4175 Fix macroexp crash on Windows with debugging (Bug#12118).
4176 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
4177 checking subscripts; problem introduced with the recent
4178 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
4179 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
4180 since it's used in non-static inline functions now.
4181
4182 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
4183 Don't assume buffer size fits in 'int'. Remove unused local.
4184
4185 Use C99-style 'extern inline' if available.
4186 * buffer.h (BUFFER_INLINE):
4187 * category.h (CATEGORY_INLINE):
4188 * character.h (CHARACTER_INLINE):
4189 * charset.h (CHARSET_INLINE):
4190 * composite.h (COMPOSITE_INLINE):
4191 * dispextern.h (DISPEXTERN_INLINE):
4192 * lisp.h (LISP_INLINE):
4193 * systime.h (SYSTIME_INLINE):
4194 New macro, replacing 'static inline' in this header.
4195 * buffer.h, category.h, character.h, charset.h, composite.h:
4196 * dispextern.h, lisp.h, systime.h:
4197 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4198 * alloc.c (LISP_INLINE):
4199 * buffer.c (BUFFER_INLINE):
4200 * category.c (CATEGORY_INLINE):
4201 * character.c (CHARACTER_INLINE):
4202 * charset.c (CHARSET_INLINE):
4203 * composite.c (COMPOSITE_INLINE):
4204 * dispnew.c (DISPEXTERN_INLINE):
4205 * sysdep.c (SYSTIME_INLINE):
4206 Define to EXTERN_INLINE, so that the corresponding functions
4207 are compiled into code.
4208 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
4209 (INLINE_HEADER_END): New macros.
4210 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
4211 since it's used in non-static inline functions now.
4212 (VALMASK) [!USE_LSB_TAG]: Likewise.
4213
4214 2012-08-02 Glenn Morris <rgm@gnu.org>
4215
4216 * s/: Remove empty directory.
4217
4218 * s/ms-w32.h: Move to ../nt/inc.
4219 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
4220 Update for new ms-w32.h location.
4221
4222 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4223
4224 Port to Solaris 8.
4225 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
4226
4227 2012-08-02 Glenn Morris <rgm@gnu.org>
4228
4229 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
4230 hard-coding the path separator.
4231
4232 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
4233
4234 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
4235 This how ASET and AREF are supposed to work, and makes
4236 it easier to think about future improvements. See
4237 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
4238 * charset.h (set_charset_attr): New function.
4239 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
4240 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
4241 (aref_addr): New function. All uses of &AREF(...) changed.
4242 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
4243 (set_hash_index): New functions. All lvalue-style uses of
4244 HASH_KEY etc. changed.
4245 * keyboard.c (set_prop): New function. All lvalue-style uses
4246 of PROP changed.
4247
4248 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
4249
4250 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
4251 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
4252 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
4253 * nsfns.m (ns_set_name_as_filename): Likewise.
4254 * nsmenu.m (ns_update_menubar): Likewise.
4255 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
4256
4257 2012-08-01 Eli Zaretskii <eliz@gnu.org>
4258
4259 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
4260 Adapt to latest changes in field names of the corresponding Lisp
4261 objects.
4262
4263 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
4264
4265 2012-08-01 Glenn Morris <rgm@gnu.org>
4266
4267 * s/msdos.h: Remove file.
4268 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
4269 * Makefile.in (S_FILE): Remove.
4270 (config_h): Remove S_FILE.
4271
4272 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
4273
4274 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
4275 Remove; moved to nt/config.nt.
4276
4277 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4278
4279 Use INTERNAL_FIELD for conses and overlays.
4280 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
4281 Remove obsolete comment.
4282 (MVAR): New macro.
4283 (struct Lisp_Overlay): Use INTERNAL_FIELD.
4284 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
4285
4286 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4287
4288 Use INTERNAL_FIELD for symbols.
4289 * lisp.h (SVAR): New macro. Adjust users.
4290 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
4291 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
4292
4293 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4294
4295 Use INTERNAL_FIELD for processes.
4296 * process.h (PVAR): New macro. Adjust style.
4297 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
4298 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
4299
4300 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4301
4302 Use INTERNAL_FIELD for windows.
4303 * window.h (WVAR): New macro.
4304 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
4305 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4306 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4307 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
4308 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
4309 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
4310
4311 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
4312
4313 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
4314
4315 2012-08-01 Glenn Morris <rgm@gnu.org>
4316
4317 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
4318 Move to configure.ac.
4319
4320 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
4321
4322 * makefile.w32-in (CONFIG_H): Update dependencies.
4323 (CONF_POST_H): New macro.
4324
4325 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
4326
4327 2012-07-31 Glenn Morris <rgm@gnu.org>
4328
4329 * Makefile.in (S_FILE): No longer set by configure.
4330
4331 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
4332 is available.
4333 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
4334
4335 * process.h (NULL_DEVICE):
4336 * emacs.c (SEPCHAR):
4337 * editfns.c (USER_FULL_NAME): Let configure set them.
4338
4339 * s/README, s/template.h: Remove files.
4340
4341 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
4342
4343 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
4344 Move to configure.ac.
4345
4346 2012-07-31 Eli Zaretskii <eliz@gnu.org>
4347
4348 * .gdbinit (xframe): Adapt to introduction of FVAR and the
4349 resulting renaming of 'struct frame' members.
4350
4351 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
4352
4353 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
4354 after introduction of FVAR.
4355
4356 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
4357
4358 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
4359
4360 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
4361 instead of compositeToPoint.
4362 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
4363
4364 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
4365
4366 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
4367
4368 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
4369 * lisp.h (INTERNAL_FIELD): New macro.
4370 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
4371 (BVAR): Change to use INTERNAL_FIELD.
4372 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
4373 (KVAR): Change to use INTERNAL_FIELD.
4374 * frame.h (FVAR): New macro.
4375 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
4376 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
4377 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
4378 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4379 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
4380
4381 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
4382
4383 Miscellaneous fixes for non-default X toolkits.
4384 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
4385 * xterm.c (x_frame_of_widget): Remove redundant prototype.
4386 Move under #ifdef USE_LUCID.
4387 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
4388 definition and usage to avoid warnings.
4389
4390 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
4391
4392 * nsterm.m (openFiles): Fix previous checkin.
4393
4394 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
4395
4396 * indent.c (compute_motion): Remove unused local.
4397
4398 2012-07-31 Glenn Morris <rgm@gnu.org>
4399
4400 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
4401
4402 * conf_post.h [USG5_4]:
4403 Move remaining contents of s/usg5-4-common.h here.
4404 * s/usg5-4-common.h: Remove file.
4405
4406 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
4407 * s/irix6-5.h: Remove file.
4408
4409 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
4410 * s/darwin.h: Remove file.
4411
4412 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
4413 * s/hpux10-20.h: Remove file, which is now empty.
4414
4415 2012-07-30 Glenn Morris <rgm@gnu.org>
4416
4417 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
4418 * Makefile.in (config_h): Add conf_post.h.
4419 * makefile.w32-in (CONFIG_H): Add conf_post.h.
4420
4421 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
4422
4423 * nsterm.m (ns_do_open_file): New variable.
4424 (ns_term_init): Set ns_do_open_file to YES after run returns.
4425 (openFile, openTempFile, openFileWithoutUI, openFiles):
4426 Open files only if ns_do_open_file.
4427
4428 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4429
4430 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
4431 This no-op macro hasn't been needed for many years.
4432 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
4433
4434 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
4435 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
4436 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
4437 gdb_make_enums_visible.
4438 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
4439 (DIRECTORY_SEP): Now a constant, not a macro.
4440
4441 2012-07-30 Eli Zaretskii <eliz@gnu.org>
4442
4443 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
4444 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
4445
4446 * w32term.c <w32_keyboard_codepage>: Renamed from
4447 keyboard_codepage and now external. All users changed.
4448
4449 * w32term.h: Add declaration of w32_keyboard_codepage.
4450
4451 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
4452 the codepage to translate keys to Unicode. If this argument is
4453 -1, use the value returned by GetConsoleCP. All callers changed.
4454
4455 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4456
4457 Update .PHONY listings in makefiles.
4458 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
4459 bootstrap-clean, distclean, maintainer-clean, versioclean,
4460 extraclean, frc.
4461
4462 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
4463 This is a bit clearer. Fix some commentary typos.
4464
4465 2012-07-30 Glenn Morris <rgm@gnu.org>
4466
4467 * s/netbsd.h: Let configure include signal.h if needed.
4468 Remove file, which is now empty.
4469
4470 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
4471 Let configure set them.
4472 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
4473 No more need to undefine.
4474
4475 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
4476
4477 * keymap.c (Fkey_description): Don't remove 0x80 bit from
4478 non-single-byte char when adding meta modifier. (Bug#12090)
4479
4480 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
4481
4482 Convert safe_call to use variable number of arguments.
4483 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
4484 (safe_call2): Fix comment.
4485 * lisp.h (safe_call): Adjust prototype.
4486 * coding.c (encode_coding_object): Change to use safe_call2.
4487 * xfaces.c (merge_face_heights): Change to use safe_call1.
4488
4489 2012-07-30 Glenn Morris <rgm@gnu.org>
4490
4491 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
4492 does that unconditionally. Remove file, which is now empty.
4493
4494 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
4495 Remove empty files.
4496
4497 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4498
4499 Export to GDB most of lisp.h's remaining object-like macros.
4500 * lisp.h (min, max): Move earlier, because they're used earlier now.
4501 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
4502 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
4503 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
4504 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
4505 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
4506 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
4507 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
4508 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
4509 Now constants, for GDB. They need not be macros.
4510 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
4511 Now constants, for GDB, as well as macros, for static initializers.
4512 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
4513 Move to after the definition of struct Lisp_Char_Table,
4514 since the former now needs that type defined.
4515 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
4516 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
4517 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
4518 New enums, for gdb_make_enums_visible.
4519 (GLYPH_MODE_LINE_FACE): Remove; unused.
4520 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
4521 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
4522 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
4523 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
4524 enum maxargs, enum MAX_ALLOCA.
4525 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
4526 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
4527 no longer needed, now that they are done in lisp.h.
4528
4529 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
4530
4531 Cleanup string bytes checking.
4532 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
4533 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
4534 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
4535 (check_sblock, compact_small_strings): Simplify.
4536
4537 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4538
4539 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
4540 These macros are confusing and no longer need to be defined, as
4541 the enum values now suffice. All uses replaced with definiens.
4542 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
4543
4544 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
4545
4546 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
4547 ($(BLD)/w32console.$(O)): Update dependencies.
4548
4549 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4550
4551 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
4552 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
4553 time. Adjust users.
4554 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
4555
4556 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
4557
4558 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
4559 setting sitelisp (Bug#12010).
4560
4561 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4562
4563 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
4564
4565 * w32heap.c (cache_system_info):
4566 * w32.c (sys_rename):
4567 * w32proc.c (find_child_console, sys_kill): All users changed.
4568
4569 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4570
4571 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
4572
4573 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4574
4575 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
4576
4577 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4578
4579 Cleanup statistics calculation in Fgarbage_collect.
4580 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
4581 Fix zombies percentage calculation. Simplify elapsed time calculation.
4582
4583 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4584
4585 Generalize marker debugging code under MARKER_DEBUG and use eassert.
4586 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
4587 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
4588 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
4589 (replace_range, replace_range_2, del_range_2): Change to eassert.
4590 * marker.c (byte_char_debug_check): Adjust style.
4591
4592 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4593
4594 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
4595 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
4596 long-ago-commented-out code that talks about "WIN32".
4597 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
4598 All uses changed.
4599
4600 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
4601
4602 Use Gnulib stdalign module (Bug#9772, Bug#9960).
4603 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
4604 Simplify by using alignof.
4605 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
4606 * lisp.h: Include <stdalign.h>.
4607 (GCALIGNMENT): New macro and constant.
4608 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
4609 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
4610 (stdalign): New macro, if not already defined.
4611
4612 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4613
4614 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
4615 * w32inevt.c: Include w32inevt.h.
4616 (w32_read_console_input): New inline function, calls either
4617 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
4618 w32_console_unicode_input.
4619 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
4620 (w32_kbd_patch_key, key_event): Use the codepage returned by
4621 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
4622 (key_event): use uChar.UnicodeChar only if
4623 w32_console_unicode_input is non-zero.
4624
4625 * w32console.c: Include w32heap.h.
4626 <w32_console_unicode_input>: New global variable.
4627 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
4628 family of Windows, zero otherwise.
4629
4630 * w32inevt.h: Declare w32_console_unicode_input.
4631
4632 * xdisp.c (init_iterator): Don't reference tip_frame in a build
4633 --without-x. (Bug#11742)
4634
4635 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
4636
4637 Adjust GDB to reflect pvec_type changes (Bug#12036).
4638 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
4639 2012-07-04 changes to pseudovector representation.
4640 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
4641
4642 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4643
4644 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
4645 bus address.
4646 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
4647
4648 2012-07-27 Eli Zaretskii <eliz@gnu.org>
4649
4650 * alloc.c (listn): Fix the order the arguments are consed onto the
4651 list.
4652
4653 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
4654 enumeration constants, as PURE and HEAP are too general, and clash
4655 with other headers and sources, such as gmalloc.c and the
4656 MS-Windows system headers. All users changed.
4657
4658 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4659
4660 Revert last save_excursion_save and save_excursion_restore changes.
4661 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
4662 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
4663
4664 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4665
4666 Fix recently-introduced typos in Windows port.
4667 Reported by Martin Rudalics <rudalics@gmx.at>.
4668 * w32.c (init_environment): Replace comma with semicolon.
4669 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
4670
4671 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
4672
4673 Improve GDB symbol export (Bug#12036).
4674 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
4675 arms of an 'if', not using conditional expressions; otherwise GDB
4676 complains about the types in the unevaluated arm when the argument
4677 is an integer literal.
4678 (xgetint): Simplify expression.
4679 * alloc.c (gdb_make_enums_visible): New constant. This ports to
4680 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
4681 Zaretskii in <http://bugs.gnu.org/12036#13>.
4682 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
4683 needed now that we have gdb_make_enums_visible.
4684 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
4685 (enum enum_USE_LSB_TAG):
4686 New enum types, packaging up enums that need to be exported to GDB.
4687
4688 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4689
4690 Utility function to make a list from specified amount of objects.
4691 * lisp.h (enum constype): New datatype.
4692 (listn): New prototype.
4693 * alloc.c (listn): New function.
4694 (Fmemory_use_count, syms_of_alloc): Use it.
4695 * buffer.c (syms_of_buffer): Likewise.
4696 * callint.c (syms_of_callint): Likewise.
4697 * charset.c (define_charset_internal): Likewise.
4698 * coding.c (syms_of_coding): Likewise.
4699 * keymap.c (syms_of_keymap): Likewise.
4700 * search.c (syms_of_search): Likewise.
4701 * syntax.c (syms_of_syntax): Likewise.
4702 * w32.c (init_environment): Likewise.
4703 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
4704 * xdisp.c (syms_of_xdisp): Likewise.
4705 * xfns.c (syms_of_xfns): Likewise.
4706
4707 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4708
4709 Fast save_excursion_save and save_excursion_restore.
4710 * lisp.h (struct Lisp_Excursion): New data type.
4711 (PVEC_EXCURSION): New pseudovector type.
4712 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
4713 to deal with it. Adjust comments.
4714 (init_marker, attach_marker): New prototype.
4715 (unchain_marker): Adjust prototype.
4716 * marker.c (attach_marker): Change to global.
4717 (init_marker): New function.
4718 * alloc.c (Fmake_marker, build_marker): Use it.
4719 (build_marker): More easserts.
4720 (mark_object): Handle struct Lisp_Excursion.
4721 * editfns.c (save_excursion_save, save_excursion_restore):
4722 Reimplement to use struct Lisp_Excursion. Add comments.
4723
4724 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
4725
4726 Fix export of symbols to GDB (Bug#12036).
4727 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
4728 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
4729 emacs.c, as this is a more-suitable home. Had this been done earlier
4730 the fix for 12036 would have avoided some of the problems noted in
4731 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
4732 would have been more obvious.
4733 * emacs.c: Do not include <verify.h>; no longer needed.
4734 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
4735 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
4736 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
4737 Remove; now done in lisp.h.
4738 * lisp.h (PUBLISH_TO_GDB): New macro.
4739 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
4740 (DATA_SEG_BITS): Use it.
4741 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
4742 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
4743 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
4744 not be usable in #if. This simplifies things.
4745
4746 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
4747
4748 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
4749
4750 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
4751
4752 Simplify export of symbols to GDB (Bug#12036).
4753 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
4754 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
4755 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
4756 Adjust to changes in lisp.h and emacs.c, by using
4757 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
4758 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
4759 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
4760 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
4761 instead of gdb_valbits.
4762 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
4763 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
4764 instead of gdb_array_mark_flag.
4765 (xboolvector): Get size from $->size, not $->header.size.
4766 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
4767 (xreload, hook-run, hookpost-run): Remove.
4768 * emacs.c: Include <verify.h>.
4769 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
4770 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
4771 Remove.
4772 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
4773 (gdb_USE_LSB_TAG): New enum constants.
4774 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
4775 Also define these as enum constants, so they're visible to GDB.
4776 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
4777 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
4778 as constants, so they're visible to GDB.
4779 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
4780 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
4781 Now enum constants, not macros, so they're visible to GDB.
4782 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
4783 more convenient now. All uses changed.
4784 (VALMASK) [USE_LSB_TAG]: Also define in this case.
4785 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
4786
4787 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
4788
4789 Explicitly free restriction data that are not needed anymore.
4790 * editfns.c (save_restriction_restore): Free restriction data.
4791
4792 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
4793
4794 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
4795 add argument, tune behavior, and adjust all callers.
4796
4797 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
4798
4799 Use typedef for EMACS_INT, EMACS_UINT.
4800 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
4801 than macros. This simplifies debugging in the usual case, since
4802 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
4803 and it allows expressions involving EMACS_INT casts.
4804 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
4805
4806 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
4807
4808 * nsterm.m (ns_read_socket): Return early if there is a modal
4809 window (Bug#12043).
4810
4811 2012-07-25 Martin Rudalics <rudalics@gmx.at>
4812
4813 * frame.c (Fredirect_frame_focus): In doc-string don't mention
4814 that FOCUS-FRAME can be omitted.
4815
4816 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
4817
4818 Adjust buffer text indirection counters at the end of Fkill_buffer.
4819 * buffer.c (Fkill_buffer): Adjust indirection counters when the
4820 buffer is definitely dead. This should really fix an issue reported
4821 by Christoph Scholtes again. (Bug#12007).
4822 (init_buffer_once): Initialize indirection counters of
4823 buffer_defaults and buffer_local_symbols (for sanity and safety).
4824
4825 2012-07-24 Eli Zaretskii <eliz@gnu.org>
4826
4827 * xdisp.c (init_iterator): Don't compute dimensions of truncation
4828 and continuation glyphs on tooltip frames, leave them at zero.
4829 Avoids continued lines in tooltips. (Bug#11832)
4830
4831 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
4832
4833 Simplify copy_overlay.
4834 * buffer.c (copy_overlay): Simplify. Use build_marker.
4835 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
4836
4837 2012-07-23 Eli Zaretskii <eliz@gnu.org>
4838
4839 * print.c (print_object): Don't crash when a frame's name is nil
4840 or invalid. (Bug#12025)
4841
4842 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
4843 it signals an error when a tooltip frame is being created.
4844
4845 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
4846
4847 Cleanup miscellaneous objects allocation and initialization.
4848 * alloc.c (allocate_misc): Change to static. Add argument to
4849 specify the subtype. Adjust comment and users.
4850 (build_overlay): New function.
4851 * buffer.c (copy_overlays, Fmake_overlay): Use it.
4852 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
4853 (allocate_misc): Remove prototype.
4854 (build_overlay): Add prototype.
4855
4856 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
4857
4858 Swap buffer text indirection counters in Fbuffer_swap_text.
4859 * buffer.c (Fbuffer_swap_text): Swap indirections too.
4860 This avoids crash reported by Christoph Scholtes at
4861 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
4862
4863 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
4864
4865 * nsmenu.m (Popdown_data): New struct.
4866 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
4867 free Popdown_data.
4868 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
4869 (initWithContentRect): Make imgView and contentView non-static
4870 and autorelease them. Also autorelease img and matrix (Bug#12005).
4871 (dealloc): Remove (Bug#12005).
4872
4873 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
4874
4875 Adjust consing_since_gc when objects are explicitly freed.
4876 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
4877 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
4878 (free_cons, free_misc): Subtract object size from consing_since_gc.
4879
4880 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
4881
4882 Simplify and cleanup markers positioning code.
4883 * marker.c (attach_marker): More useful eassert.
4884 (live_buffer, set_marker_internal): New function.
4885 (Fset_marker, set_marker_restricted): Use set_marker_internal.
4886 (set_marker_both, set_marker_restricted_both): Use live_buffer.
4887
4888 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
4889
4890 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
4891 as it's limited by the amount of memory, not by INT_MAX.
4892
4893 2012-07-21 Eli Zaretskii <eliz@gnu.org>
4894
4895 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
4896 in special-event-map. See the discussion at
4897 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
4898 for the reasons.
4899
4900 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
4901 info.dwItemData. Fixes crashes on 64-bit Windows.
4902 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
4903
4904 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
4905
4906 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
4907 (conversationIdentifier): Return value is NSInteger.
4908 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
4909
4910 2012-07-21 Chong Yidong <cyd@gnu.org>
4911
4912 * window.c (decode_any_window): Signal an error if the window is
4913 on a dead frame (Bug#11984).
4914
4915 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4916
4917 Add indirection counting to speed up Fkill_buffer.
4918 * buffer.h (struct buffer): New member.
4919 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
4920 (Fmake_indirect_buffer): Set indirection counter to -1, increment
4921 base buffer indirection counter.
4922 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
4923 (Fkill_buffer): Adjust indirection counters as needed, don't walk
4924 through buffer list if indirection counter is 0.
4925
4926 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4927
4928 Extend the value returned by Fgarbage_collect with heap statistics.
4929 * alloc.c (Qheap): New symbol.
4930 (syms_of_alloc): DEFSYM it.
4931 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
4932 (Fmemory_free): Remove.
4933 (syms_of_alloc): Don't defsubr it.
4934 * buffer.c (Fcompact_buffer): Remove.
4935 (syms_of_buffer): Don't defsubr it.
4936
4937 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4938
4939 Make maybe_gc inline.
4940 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
4941 * lisp.h (consing_since_gc, gc_relative_threshold)
4942 (memory_full_cons_threshold): Revert declaration.
4943 (maybe_gc): Remove prototype, define as inline.
4944 * alloc.c: Remove old commented-out code.
4945 (consing_since_gc, gc_relative_threshold)
4946 (memory_full_cons_threshold): Revert to global.
4947 (maybe_gc): Remove.
4948
4949 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4950
4951 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
4952 * lisp.h (build_unibyte_string): New function.
4953 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
4954 * sysdep.c, w32fns.c, xfns.c: Use it.
4955 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
4956 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
4957 Adjust users accordingly.
4958 * font.h (font_open_by_name): Adjust prototype.
4959
4960 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
4961
4962 Cleanup calls to Fgarbage_collect.
4963 * lisp.h (maybe_gc): New prototype.
4964 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
4965 Remove declarations.
4966 * alloc.c (maybe_gc): New function.
4967 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
4968 Make them static.
4969 * bytecode.c (MAYBE_GC): Use maybe_gc.
4970 * eval.c (eval_sub, Ffuncall): Likewise.
4971 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
4972 to avoid dependency from auto-save feature.
4973
4974 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
4975
4976 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
4977 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
4978 'for_each_per_buffer_object_at'.
4979 All uses changed. It's better to use upper-case for macros that
4980 cannot be implemented as functions, to give the reader a clue
4981 that they're special.
4982
4983 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
4984
4985 * alloc.c (Fgarbage_collect): Tweak docstring.
4986
4987 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4988
4989 Tweak the value returned from Fgarbage_collect again.
4990 * alloc.c (Fgarbage_collect): New return value, as confirmed in
4991 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
4992 Adjust documentation.
4993 (total_vector_bytes): Rename to total_vector_slots, adjust
4994 accounting.
4995 (total_free_vector_bytes): Rename to total_free_vector_slots,
4996 adjust accounting.
4997 (Qstring_bytes, Qvector_slots): New symbols.
4998 (syms_of_alloc): DEFSYM them.
4999
5000 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5001
5002 Buffer compaction primitive which may be used from Lisp.
5003 * buffer.c (compact_buffer, Fcompact_buffer): New function.
5004 (syms_of_buffer): Register Fcompact_buffer.
5005 * alloc.c (Fgarbage_collect): Use compact_buffer.
5006 * buffer.h (compact_buffer): New prototype.
5007 (struct buffer_text): New member.
5008
5009 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5010
5011 New macro to iterate over all buffers, miscellaneous cleanups.
5012 * lisp.h (all_buffers): Remove declaration.
5013 * buffer.h (all_buffers): Add declaration, with comment.
5014 (for_each_buffer): New macro.
5015 * alloc.c (Fgarbage_collect, mark_object): Use it.
5016 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
5017 (init_buffer): Likewise.
5018 * data.c (Fset_default): Likewise.
5019 * coding.c (code_conversion_restore): Remove redundant check
5020 for dead buffer.
5021 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
5022
5023 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5024
5025 Fix bug that created negative-length intervals.
5026 * intervals.c (merge_interval_right, merge_interval_left):
5027 Do not zero out this interval if it is absorbed by its children,
5028 as this interval's total length doesn't change in that case. See
5029 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
5030
5031 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
5032
5033 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
5034 when invoking (make-bool-vector N t) and N is a positive
5035 multiple of 8 -- the last 8 bits were mistakenly cleared.
5036
5037 Remove some struct layout assumptions in bool vectors.
5038 * alloc.c (bool_header_size): New constant.
5039 (header_size, word_size): Move earlier, as they're now used earlier.
5040 Use 'word_size' in a few more places, where it's appropriate.
5041 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
5042 padding before the data member of a bool vector.
5043 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
5044 than doing the check by hand with an abort ().
5045
5046 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5047
5048 * eval.c (Fdefvar): Don't check constants since we only set the var if
5049 it's not yet defined anyway (bug#11904).
5050
5051 * lisp.h (last_undo_boundary): Declare new var.
5052 * keyboard.c (command_loop_1): Set it.
5053 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
5054 were auto-added by the command loop (bug#11774).
5055
5056 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5057
5058 * w32font.c (Qsymbol): Remove local definition.
5059 (syms_of_w32font): Don't DEFSYM it.
5060
5061 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5062
5063 Fix sweep_vectors to handle large bool vectors correctly.
5064 * alloc.c (sweep_vectors): Account total_vector_bytes for
5065 bool vectors larger than VBLOCK_BYTES_MAX.
5066
5067 2012-07-18 Chong Yidong <cyd@gnu.org>
5068
5069 * frame.c (x_set_frame_parameters): Revert bogus change introduced
5070 in 2012-05-25 commit by Paul Eggert (Bug#11738).
5071
5072 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5073
5074 Return more descriptive data from Fgarbage_collect.
5075 Suggested by Stefan Monnier in
5076 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
5077 * alloc.c (bounded_number): New function.
5078 (total_buffers, total_vectors): New variable.
5079 (total_string_size): Rename to total_string_bytes, adjust users.
5080 (total_vector_size): Rename to total_vector_bytes, adjust users.
5081 (sweep_vectors): Account total_vectors and total_vector_bytes.
5082 (Fgarbage_collect): New return value. Adjust documentation.
5083 (gc_sweep): Account total_buffers.
5084 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
5085 (VECTOR_SIZE): Remove.
5086 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
5087 (Qinterval, Qmisc): New symbols.
5088 (syms_of_data): Initialize them.
5089 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
5090 (Qcons, Qbuffer): New declarations.
5091
5092 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
5093
5094 * alloc.c (Fmemory_free): Account for memory-free's own storage.
5095 Round up, not down. Improve doc.
5096
5097 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5098
5099 Restore old code in allocate_string_data to avoid Faset breakage.
5100 Reported by Julien Danjou <julien@danjou.info> in
5101 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
5102 * alloc.c (allocate_string_data): Restore old code with minor
5103 adjustments, fix comment to explain this subtle issue.
5104
5105 2012-07-17 Eli Zaretskii <eliz@gnu.org>
5106
5107 Remove FILE_SYSTEM_CASE.
5108 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
5109
5110 * fileio.c (FILE_SYSTEM_CASE): Don't define.
5111 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
5112 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
5113 call-process-region passes it through expand-file-name.
5114
5115 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
5116
5117 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5118
5119 Fix crash when creating indirect buffer (Bug#11917)
5120 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
5121 Don't handle unbound variables specially if non-zero.
5122 (Fbuffer_local_variables): Pass zero.
5123 (clone_per_buffer_values): Pass non-zero.
5124
5125 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5126
5127 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
5128 to make the loop interruptible.
5129
5130 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5131
5132 * gnutls.c (emacs_gnutls_handshake): Only retry if
5133 GNUTLS_E_INTERRUPTED.
5134
5135 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5136
5137 Cleanup and convert miscellaneous checks to eassert.
5138 * alloc.c (mark_interval): Fix comment, partially rephrase
5139 old comment from intervals.h (see below).
5140 * intervals.c (find_interval, adjust_intervals_for_insertion)
5141 (delete_interval, adjust_intervals_for_deletion)
5142 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
5143 Convert to eassert.
5144 (adjust_intervals_for_insertion, make_new_interval):
5145 Remove obsolete and unused code.
5146 * intervals.h (struct interval): Remove obsolete comment.
5147 * textprotp.c (erase_properties): Remove unused code.
5148 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
5149 (Fremove_list_of_text_properties): Convert to eassert.
5150
5151 2012-07-17 Chong Yidong <cyd@gnu.org>
5152
5153 * editfns.c (Finsert_char): Doc fix.
5154
5155 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5156
5157 Fix previous change to make Fmemory_free always accurate.
5158 * alloc.c (make_interval): Update total_free_intervals.
5159 (make_float): Likewise for total_free_floats.
5160 (free_cons, Fcons): Likewise for total_free_conses.
5161 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
5162 Likewise for total_free_vector_bytes.
5163 (Fmake_symbol): Likewise for total_free_symbols.
5164 (bytes_free): Remove.
5165
5166 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5167
5168 Simple free memory accounting feature.
5169 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
5170 (sweep_vectors): Accumulate size of free vectors.
5171 (Fgarbage_collect): Setup bytes_free.
5172 (Fmemory_free): New function.
5173 (syms_of_alloc): Register it.
5174
5175 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5176
5177 Cleanup overlays checking.
5178 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
5179 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
5180 eassert and OVERLAYP.
5181 (sort_overlays): Change to use OVERLAYP.
5182
5183 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5184
5185 * editfns.c (Finsert_char): Make it interactive, and make the
5186 second arg optional. Copy interactive spec and docstring from
5187 ucs-insert.
5188
5189 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
5190
5191 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
5192 Unlike the other wrapped functions, fabs has an unspecified
5193 effect on errno.
5194
5195 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
5196
5197 * nsterm.m (keyDown): Interpret flags without left/right bits
5198 as the left key (Bug#11670).
5199
5200 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
5201
5202 Remove empty and useless init functions.
5203 * lisp.h (init_character_once, init_fns, init_image)
5204 (init_filelock, init_sound): Remove prototype.
5205 * character.c (init_character_once): Remove.
5206 * filelock.c (init_filelock): Likewise.
5207 * fns.c (init_fns): Likewise.
5208 * image.c (init_image): Likewise.
5209 * sound.c (init_sound): Likewise.
5210 * emacs.c (main): Adjust accordingly.
5211
5212 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
5213
5214 * gtkutil.h: Tiny cleanups.
5215 (use_old_gtk_file_dialog): Remove useless declaration.
5216 (xg_uses_old_file_dialog): Add suggested const attribute.
5217
5218 2012-07-15 Eli Zaretskii <eliz@gnu.org>
5219
5220 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
5221 (bidi_paragraph_init): Use it to limit search forward for a strong
5222 directional character in abnormally large paragraphs full of
5223 neutral or weak characters. (Bug#11943)
5224
5225 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
5226
5227 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
5228 the toolbar (Bug#9451).
5229 (xg_make_tool_item): Give the widget event box a transparent
5230 background.
5231
5232 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
5233
5234 Cleanup basic allocation variables and functions.
5235 * alloc.c (ignore_warnings, init_intervals, init_float)
5236 (init_cons, init_symbol, init_marker): Remove.
5237 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
5238 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
5239 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
5240 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
5241 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
5242 (staticidx, init_alloc_once, init_strings, free_ablock):
5243 Remove redundant initialization.
5244 * fns.c (init_weak_hash_tables): Remove.
5245 * lisp.h (init_weak_hash_tables): Remove prototype.
5246
5247 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
5248
5249 Use zero_vector where appropriate.
5250 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
5251 accordingly.
5252 * lisp.h (zero_vector): New declaration.
5253 * font.c (null_vector): Remove.
5254 (syms_of_font): Remove initialization and staticpro.
5255 (font_list_entities, font_find_for_lface): Change to use zero_vector.
5256 * keymap.c (Faccessible_keymaps): Likewise.
5257
5258 2012-07-15 Leo Liu <sdl.web@gmail.com>
5259
5260 * fringe.c: Fix typo in comments.
5261
5262 2012-07-14 Leo Liu <sdl.web@gmail.com>
5263
5264 * fringe.c: Add a new bitmap exclamation-mark.
5265
5266 2012-07-14 Eli Zaretskii <eliz@gnu.org>
5267
5268 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
5269
5270 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
5271 (HAVE_MENUS): Don't define, defined by editing config.in with
5272 msdos/sed2v2.inp.
5273 (GMALLOC_INHIBIT_VALLOC): Don't define.
5274 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
5275
5276 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
5277
5278 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
5279
5280 2012-07-14 Glenn Morris <rgm@gnu.org>
5281
5282 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
5283 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
5284 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
5285
5286 2012-07-13 Glenn Morris <rgm@gnu.org>
5287
5288 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
5289
5290 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
5291 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
5292
5293 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
5294
5295 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
5296 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
5297 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
5298 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
5299 where appropriate.
5300 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
5301 as boolean expression.
5302 (x_set_window_size): Remove unused variable toolbar.
5303 (ns_get_color_default, ns_mod_to_lisp): Remove.
5304 (ns_mouse_position): Remove unused variables xchar and ychar.
5305 (ns_compute_glyph_string_overhangs): Remove unused variable face.
5306 (ns_set_vertical_scroll_bar): Remove unused variable count.
5307 (ns_delete_terminal): Remove unused variable i.
5308 (ns_term_init): Remove unused variables r, g and b.
5309 (mouseDown): Remove unused variable window.
5310 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
5311 (initFrameFromEmacs): Remove unused variable vbextra.
5312 (mouseEntered): Remove unused variables p and dpyinfo.
5313 (mouseExited): Remove unused variables p and r.
5314 (ns_define_frame_cursor, ns_clear_frame_area)
5315 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
5316 (menuDown): Assign [sender tag] to variable and cast the variable.
5317
5318 * nsterm.h (menuDown): Add id as type to argument sender.
5319 (ns_display_info_for_name): Add Lisp_Object argument.
5320 (ns_term_init): Add Lisp_Object argument.
5321 (ns_map_event_to_object): Add void argument.
5322 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
5323 prototype with arguments and only declare if __OBJC__.
5324 (nxatoms_of_nsselect): Add void argument.
5325 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
5326 (ns_alloc_autorelease_pool): Add void argument.
5327 (ns_release_autorelease_pool): Add void* argument.
5328 (ns_get_defaults_value): Add const char* argument.
5329
5330 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
5331 (initFromContents): Use SSDATA where appropriate.
5332 (ns_update_menubar): Add braces to ambigous if-else.
5333 (initWithTitle): Put () around assignment in if statement.
5334 (ns_menu_show): Remove unused variables window and keymap.
5335 (update_frame_tool_bar): Remove unused variable selected_p.
5336 (initWithContentRect): Remove unused variable this_cmd_name.
5337
5338 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
5339 appropriate.
5340 (setXBMColor): Remove unused variable len.
5341 (setPixmapData): Put () around assignment in loop statement.
5342
5343 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
5344 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
5345 where appropriate.
5346 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
5347 around assignment in loop statement.
5348 (nsfont_open): Remove unused variable i.
5349 (nsfont_open): Remove unused variable len.
5350 (nsfont_draw): Remove unused variable cs.
5351
5352 * nsfns.m (x_set_icon_name, ns_set_name_internal)
5353 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
5354 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
5355 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
5356 (Fns_font_name, Fns_perform_service)
5357 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
5358 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
5359 (ns_set_name): Remove unused variable view.
5360 (x_set_menu_bar_lines): Remove unused variable olines.
5361 (x_set_tool_bar_lines): Remove unused variable root_window.
5362 (Fns_list_colors): Put () around assignment in while statement.
5363 (Fns_perform_service): Remove unused variable len.
5364 (Fns_display_usable_bounds): Remove unused variable top.
5365 (syms_of_nsfns): Remove unused variable i.
5366
5367 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
5368 memcpy (Bug#11907).
5369
5370 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
5371
5372 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
5373 and free it with DestroyExceptionInfo (Bug#11558).
5374
5375 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5376
5377 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
5378 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
5379 Set here, not in nt/config.nt.
5380
5381 2012-07-13 Eli Zaretskii <eliz@gnu.org>
5382
5383 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
5384 cursor overflow into the last glyph on display line when the right
5385 fringe is off. (Bug#11832)
5386
5387 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
5388
5389 * xdisp.c (produce_special_glyphs): Now static.
5390 * dispextern.h (produce_special_glyphs): Remove decl.
5391
5392 2012-07-13 Glenn Morris <rgm@gnu.org>
5393
5394 * s/bsd-common.h, s/cygwin.h: Remove empty files.
5395 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
5396
5397 * s/usg5-4-common.h (USG, USG5):
5398 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
5399 * s/sol2-6.h (SOLARIS2):
5400 * s/irix6-5.h (IRIX6_5):
5401 * s/hpux10-20.h (USG, USG5, HPUX):
5402 * s/gnu-linux.h (USG, GNU_LINUX):
5403 * s/freebsd.h (BSD_SYSTEM):
5404 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
5405 * s/cygwin.h (CYGWIN):
5406 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
5407 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
5408
5409 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
5410
5411 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
5412
5413 2012-07-13 Glenn Morris <rgm@gnu.org>
5414
5415 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
5416
5417 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
5418
5419 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
5420 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
5421
5422 2012-07-12 Glenn Morris <rgm@gnu.org>
5423
5424 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
5425
5426 * process.c (init_process_emacs): Rename from init_process.
5427 The old name is also the name of a Mach system call.
5428 * lisp.h, emacs.c: Update for this name change.
5429 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
5430 longer needed.
5431
5432 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5433
5434 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
5435 memmove call that removes glyphs covered by the left truncation
5436 glyph. Improve commentary.
5437 (display_line): Fix display of continuation glyphs on GUI frames
5438 when the right fringe is turned off and variable-size fonts are
5439 used in the window. Move the code that appends a stretch glyph to
5440 produce_special_glyphs, so that it could be used for truncation
5441 and continuation glyphs alike.
5442 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
5443 glyph of a suitably computed width, to align the special glyphs at
5444 the window margin. Code moved from display_line. (Bug#11832)
5445
5446 2012-07-12 Glenn Morris <rgm@gnu.org>
5447
5448 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
5449
5450 * s/gnu-linux.h, s/hpux10-20.h:
5451 Do not unconditionally define HAVE_XRMSETDATABASE.
5452
5453 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
5454
5455 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
5456
5457 Fix typos that broke OS X build.
5458 Reported by Randal L. Schwartz in
5459 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
5460 * nsterm.m (ns_timeout): Add missing local decl.
5461 (ns_get_color): snprintf -> sprintf, to fix typo.
5462
5463 2012-07-12 Glenn Morris <rgm@gnu.org>
5464
5465 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
5466 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
5467 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
5468 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
5469
5470 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
5471 Move PTY_OPEN to configure.
5472
5473 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
5474 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
5475 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
5476
5477 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
5478
5479 Use empty_unibyte_string where applicable.
5480 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
5481 * lread.c (read1): Likewise.
5482 * xsettings.c (syms_of_xsettings): Likewise.
5483
5484 2012-07-12 Glenn Morris <rgm@gnu.org>
5485
5486 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
5487 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
5488 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
5489 * s/hpux10-20.h (RUN_TIME_REMAP):
5490 * s/bsd-common.h (TABDLY): Move to configure.
5491
5492 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
5493
5494 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
5495
5496 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
5497 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
5498
5499 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
5500
5501 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
5502 * s/template.h: Move NARROWPROTO to configure.
5503
5504 2012-07-11 Glenn Morris <rgm@gnu.org>
5505
5506 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
5507 unused since 2011-01-17 change to systty.h.
5508
5509 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
5510 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
5511 Move HAVE_PTYS and HAVE_SOCKETS to configure.
5512
5513 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
5514
5515 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
5516
5517 2012-07-11 Glenn Morris <rgm@gnu.org>
5518
5519 * s/darwin.h, s/gnu-linux.h, s/template.h:
5520 Move INTERRUPT_INPUT to configure.
5521
5522 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5523
5524 Minor adjustments to interning code.
5525 * lisp.h (intern, intern_c_string): Redefine as static inline
5526 wrappers for intern_1 and intern_c_string_1, respectively.
5527 (intern_1, intern_c_string_1): Rename prototypes.
5528 * lread.c (intern_1, intern_c_string_1, oblookup):
5529 Simplify Vobarray checking.
5530 * font.c (font_intern_prop): Likewise. Adjust comment.
5531 * w32font.c (intern_font_name): Likewise.
5532
5533 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
5534
5535 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
5536
5537 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
5538 of Fcar/Fcdr if possible.
5539 * font.c (check_otf_features): Likewise.
5540 * fontset.c (Fnew_fontset): Likewise.
5541 * gnutls.c (Fgnutls_boot): Likewise.
5542 * minibuf.c (read_minibuf): Likewise.
5543 * msdos.c (IT_set_frame_parameters): Likewise.
5544 * xmenu.c (Fx_popup_dialog): Likewise.
5545 * w32menu.c (Fx_popup_dialog): Likewise.
5546
5547 2012-07-11 Glenn Morris <rgm@gnu.org>
5548
5549 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
5550 since nothing has defined it on these platforms.
5551
5552 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
5553 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
5554
5555 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
5556 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
5557 Move CLASH_DETECTION to configure.
5558
5559 * s/gnu.h: Remove file, which is now empty.
5560
5561 * s/gnu.h, s/gnu-linux.h:
5562 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
5563
5564 2012-07-11 John Wiegley <johnw@newartisans.com>
5565
5566 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
5567 function attribute, so we only use it if it exists in the
5568 compiler.
5569
5570 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5571
5572 Avoid call to strlen in fast_c_string_match_ignore_case.
5573 * search.c (fast_c_string_match_ignore_case): Change to use
5574 length argument. Adjust users accordingly.
5575 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
5576
5577 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
5578
5579 Assume mkdir, rmdir.
5580 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
5581 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
5582
5583 Assume rename.
5584 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
5585
5586 Assume perror.
5587 * s/hpux10-20.h (HAVE_PERROR): Remove.
5588 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
5589 Remove dummy definition, as this problem was obsolete long ago.
5590
5591 Assume strerror.
5592 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
5593
5594 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5595
5596 Avoid calls to strlen in font processing functions.
5597 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
5598 (font_open_by_name): Change to use length argument.
5599 Adjust users accordingly.
5600 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
5601 Adjust prototypes.
5602 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
5603 Change to return ptrdiff_t.
5604 (xfont_list_pattern, xfont_match): Use length returned by
5605 xfont_decode_coding_xlfd.
5606 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
5607
5608 2012-07-11 Glenn Morris <rgm@gnu.org>
5609
5610 * s/darwin.h, s/freebsd.h, s/netbsd.h:
5611 Move DONT_REOPEN_PTY to configure.
5612
5613 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
5614 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
5615
5616 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
5617
5618 Remove "#define unix" that is no longer needed (Bug#11905).
5619 * s/aix4-2.h (unix): Remove; no longer needed.
5620
5621 EMACS_TIME simplification (Bug#11875).
5622 This replaces macros (which typically do not work in GDB)
5623 with functions, typedefs and enums, making the code easier to debug.
5624 The functional style also makes code easier to read and maintain.
5625 * systime.h: Include <sys/time.h> on all hosts, not just if
5626 WINDOWSNT, since 'struct timeval' is needed in general.
5627 (EMACS_TIME): Now a typedef, not a macro.
5628 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
5629 not macros.
5630 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
5631 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
5632 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
5633 (EMACS_TIME_LE): Now functions, not macros.
5634 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
5635 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
5636 which are not functions. All uses rewritten to use:
5637 (make_emacs_time): New function.
5638 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
5639 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
5640 not functions. All uses rewritten to use the following, respectively:
5641 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
5642 (add_emacs_time, sub_emacs_time): New functions.
5643 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
5644 * fileio.c (Fcopy_file):
5645 * xterm.c (XTflash): Get the current time closer to when it's used.
5646 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
5647
5648 * bytecode.c (targets): Suppress -Woverride-init warnings.
5649
5650 Simplify by avoiding confusing use of strncpy etc.
5651 * doc.c (Fsnarf_documentation):
5652 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
5653 * frame.c (Fmake_terminal_frame):
5654 * gtkutil.c (get_utf8_string):
5655 * lread.c (openp):
5656 * nsmenu.m (ns_update_menubar):
5657 * regex.c (regerror):
5658 Prefer memcpy to strncpy and strncat when either will do.
5659 * fileio.c (Fsubstitute_in_file_name):
5660 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
5661 (menu_separator_name_p):
5662 * nsmenu.m (ns_update_menubar):
5663 Prefer memcmp to strncmp when either will do.
5664 * nsterm.m: Include <ftoastr.h>.
5665 (ns_get_color):
5666 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
5667 Prefer snprintf to strncpy.
5668 * nsterm.m (ns_term_init):
5669 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
5670 * nsterm.m (ns_term_init):
5671 Avoid the need for strncpy, by using build_string or
5672 make_unibyte_string directly. Use dtoastr, not snprintf.
5673 * process.c (Fmake_network_process): Diagnose service names that
5674 are too long, rather than silently truncating them or creating
5675 non-null-terminated names.
5676 (Fnetwork_interface_info): Likewise, for interface names.
5677 * sysdep.c (system_process_attributes) [GNU_LINUX]:
5678 Prefer sprintf to strncat.
5679 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
5680 Prefer vsnprintf to vsprintf + strncpy.
5681
5682 2012-07-10 Glenn Morris <rgm@gnu.org>
5683
5684 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
5685 Clarify fallback case.
5686
5687 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5688
5689 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
5690 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
5691 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
5692 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
5693 where argument type is known to be a Lisp_Cons.
5694
5695 2012-07-10 Tom Tromey <tromey@redhat.com>
5696
5697 * bytecode.c (BYTE_CODE_THREADED): New macro.
5698 (BYTE_CODES): New macro. Replaces all old byte-code defines.
5699 (enum byte_code_op): New type.
5700 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
5701 (exec_byte_code): Use them. Use token threading when applicable.
5702
5703 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5704
5705 Optimize pure C strings initialization.
5706 * lisp.h (make_pure_string): Fix prototype.
5707 (build_pure_c_string): New function, defined as static inline. This
5708 provides a better opportunity to optimize away calls to strlen when
5709 the function is called with compile-time constant argument.
5710 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
5711 argument, adjust users accordingly. Use build_pure_c_string where
5712 appropriate.
5713 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
5714 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
5715 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
5716
5717 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5718
5719 Avoid calls to strlen in miscellaneous functions.
5720 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
5721 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
5722 * lread.c (openp): Likewise.
5723
5724 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5725
5726 Avoid calls to strlen in path processing functions.
5727 * fileio.c (file_name_as_directory): Add comment. Change to add
5728 srclen argument and return the length of result. Adjust users
5729 accordingly.
5730 (directory_file_name): Fix comment. Change to add srclen argument,
5731 swap 1st and 2nd arguments to obey the common convention.
5732 Adjust users accordingly.
5733 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
5734
5735 2012-07-10 Glenn Morris <rgm@gnu.org>
5736
5737 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
5738 Move PENDING_OUTPUT_COUNT definition to configure.
5739
5740 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
5741 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
5742 * s/gnu.h (DATA_START): Move definitions to configure.
5743
5744 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
5745 We include usg5-4-common.h, which defines them both.
5746
5747 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
5748 O_RDONLY already includes it).
5749
5750 Stop ns builds setting the EMACSLOADPATH environment variable.
5751 * nsterm.m (ns_load_path): Rename from ns_init_paths.
5752 Now it does not set EMACSLOADPATH, just returns the load-path string.
5753 * nsterm.h: Update accordingly.
5754 * lread.c [HAVE_NS]: Include nsterm.h.
5755 (init_lread) [HAVE_NS]: Use ns_load_path.
5756 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
5757
5758 2012-07-09 Glenn Morris <rgm@gnu.org>
5759
5760 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
5761 since the included bsd-common.h does so.
5762
5763 Stop ns builds setting the EMACSPATH environment variable.
5764 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
5765 (ns_init_paths): Do not set EMACSPATH.
5766 * nsterm.h (ns_exec_path): Add it.
5767 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
5768 Use ns_exec_path.
5769
5770 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
5771
5772 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5773
5774 * process.c (wait_reading_process_output): 'waitchannels' was unset
5775 when read_kbd || !NILP (wait_for_cell); fix this.
5776
5777 Add GCC-style 'const' attribute to functions that can use it.
5778 * character.h (char_resolve_modifier_mask):
5779 * keyboard.h (make_ctrl_char):
5780 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
5781 (init_character_once, next_almost_prime, init_fns, init_image)
5782 (flush_pending_output, init_sound):
5783 * mem-limits.h (start_of_data):
5784 * menu.h (finish_menu_items):
5785 Add ATTRIBUTE_CONST.
5786 * emacs.c (DEFINE_DUMMY_FUNCTION):
5787 Declare the dummy function with ATTRIBUTE_CONST.
5788 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
5789 Add decls with ATTRIBUTE_CONST.
5790
5791 Minor improvements to make_formatted_string.
5792 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
5793 where int is good enough, as vsprintf returns an int.
5794 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
5795
5796 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
5797
5798 Use make_formatted_string to avoid double length calculation.
5799 * lisp.h (make_formatted_string): New prototype.
5800 * alloc.c (make_formatted_string): New function.
5801 * buffer.c (Fgenerate_new_buffer_name): Use it.
5802 * dbus.c (syms_of_dbusbind): Likewise.
5803 * editfns.c (Fcurrent_time_zone): Likewise.
5804 * filelock.c (get_boot_time): Likewise.
5805 * frame.c (make_terminal_frame, set_term_frame_name)
5806 (x_report_frame_params): Likewise.
5807 * image.c (gs_load): Likewise.
5808 * minibuf.c (get_minibuffer): Likewise.
5809 * msdos.c (dos_set_window_size): Likewise.
5810 * process.c (make_process): Likewise.
5811 * xdisp.c (ensure_echo_area_buffers): Likewise.
5812 * xsettings.c (apply_xft_settings): Likewise.
5813
5814 2012-07-09 Glenn Morris <rgm@gnu.org>
5815
5816 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
5817 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
5818 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
5819 * nsterm.h (ns_etc_directory): Add it.
5820 * callproc.c [HAVE_NS]: Include nsterm.h.
5821 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
5822
5823 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
5824
5825 Move marker debugging code under MARKER_DEBUG.
5826 * marker.c (MARKER_DEBUG): Move marker debugging code under
5827 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
5828 for bootstrap with --enable-checking (~3x slowdown reported
5829 by Juanma Barranquero <lekktu@gmail.com>).
5830 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
5831
5832 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
5833
5834 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
5835 See <http://bugs.gnu.org/11825#29>.
5836
5837 2012-07-08 Eli Zaretskii <eliz@gnu.org>
5838
5839 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
5840 has no font, use the frame's font. (Bug#11813)
5841 (display_line): Add commentary about displaying truncation glyphs
5842 on GUI frames.
5843 (produce_special_glyphs): Move here from term.c.
5844
5845 * term.c (produce_special_glyphs): Move to xdisp.c.
5846
5847 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
5848 section.
5849
5850 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
5851
5852 * xdisp.c (display_line): Avoid warning about implicit declaration
5853 of FRAME_FONT.
5854
5855 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
5856
5857 * lisp.h: Remove empty conditional.
5858
5859 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
5860
5861 * lread.c (load_path_check): Now static.
5862
5863 Fix some minor --with-ns problems found by static checking.
5864 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
5865 (x_set_font) [!HAVE_X_WINDOWS]:
5866 * image.c (xpm_load_image) [HAVE_NS]:
5867 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
5868 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
5869 Remove unused local.
5870 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
5871 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
5872 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
5873 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
5874 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
5875 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
5876 Fix pointer signedness problem.
5877 * xfaces.c (FRAME_X_FONT_TABLE):
5878 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
5879
5880 2012-07-07 Glenn Morris <rgm@gnu.org>
5881
5882 * lread.c (load_path_check): New function, split from init_lread.
5883 (init_lread): Reorganize. Motivation:
5884 If EMACSLOADPATH is set, check/warn about that rather than the
5885 defaults, which we are not going to use. Hence we can remove
5886 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
5887 Don't warn if site-lisp directories are missing.
5888 If not installed, start from a blank load-path, since
5889 PATH_LOADSEARCH refers to the eventual installation directories.
5890
5891 2012-07-07 Eli Zaretskii <eliz@gnu.org>
5892
5893 Support truncation and continuation glyphs on GUI frames, when
5894 fringes are disabled. (Bug#11832)
5895 * xdisp.c (init_iterator): Get dimensions of truncation and
5896 continuation glyphs even if on GUI frames.
5897 Adjust it->last_visible_x on GUI frames when the left or right fringes,
5898 or both, are absent.
5899 (start_display, move_it_in_display_line_to): Handle the case of a
5900 GUI frame without a fringe to display continuation or truncation
5901 glyphs.
5902 (insert_left_trunc_glyphs): Support GUI frames: make sure
5903 truncation glyphs overwrite enough glyphs from the current line to
5904 have sufficient space in pixels.
5905 (display_line): Support truncation and continuation glyphs on GUI
5906 frames. If some spare pixels are left on the line after inserting
5907 the truncation glyphs, fill that space with a stretch glyph of a
5908 suitably computed width.
5909
5910 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
5911 produce_glyphs, to support GUI sessions.
5912
5913 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
5914
5915 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
5916
5917 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
5918
5919 Do not require float-time's arg to fit in time_t (Bug#11825).
5920 This works better on hosts where time_t is unsigned, and where
5921 float-time is applied to the (negative) difference between two times.
5922 * editfns.c (decode_time_components): Last arg is now double *,
5923 not int *, and means to store all the result as a double, without
5924 worrying about whether the seconds part fits in time_t.
5925 All callers changed.
5926 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
5927 All callers changed.
5928 (Ffloat_time): Do not fail merely because the specified time falls
5929 outside of time_t range.
5930
5931 2012-07-07 Glenn Morris <rgm@gnu.org>
5932
5933 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
5934 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
5935 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
5936
5937 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
5938
5939 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
5940 Update dependencies.
5941
5942 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
5943
5944 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
5945
5946 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
5947 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
5948 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
5949 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
5950 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
5951 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
5952
5953 * xfont.c (compare_font_names): Redo to omit the need for casts.
5954
5955 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
5956
5957 * xfns.c (Fx_change_window_property): Doc fix.
5958 * w32fns.c (Fx_change_window_property): Doc fix.
5959
5960 * w32fns.c (Fx_window_property): Accept the same arguments as the
5961 X Windows version. Doc fix.
5962 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
5963
5964 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
5965 Eli Zaretskii <eliz@gnu.org>
5966
5967 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
5968 Windows-specific code from nt/config.nt moved here.
5969 Obsolete settings removed.
5970
5971 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
5972
5973 * process.c: Avoid unnecessary calls to gettime.
5974 (wait_reading_process_output): Don't get the time of day
5975 when gobbling data immediately and not waiting, as there's no need
5976 for it in that case. This removes a FIXME.
5977
5978 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
5979
5980 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
5981 is defined (Bug#11768).
5982
5983 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
5984
5985 Fix marker debugging code.
5986 * marker.c (byte_char_debug_check): Do not perform the check
5987 if buffer is not multibyte.
5988 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
5989 Call byte_char_debug_check with correct arguments.
5990
5991 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
5992
5993 Compile marker debugging code only if ENABLE_CHECKING is defined.
5994 * marker.c (byte_char_debug_check, count_markers):
5995 Use only if ENABLE_CHECKING is defined.
5996 (byte_debug_flag): Remove.
5997 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
5998 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
5999
6000 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6001
6002 Avoid code repetition in marker-related functions.
6003 * marker.c (attach_marker): New function.
6004 (Fset_marker, set_marker_restricted, set_marker_both)
6005 (set_marker_restricted_both): Use it.
6006 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
6007 Consistently rename charno to charpos.
6008 (marker_position): Add eassert.
6009 (marker_byte_position): Convert to eassert.
6010
6011 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6012
6013 Simplify list operations in unchain_overlay and unchain_marker.
6014 * buffer.c (unchain_overlay): Simplify. Add comment.
6015 * marker.c (unchain_marker): Simplify. Fix comments.
6016
6017 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6018
6019 Introduce fast path for the widely used marker operation.
6020 * alloc.c (build_marker): New function.
6021 * lisp.h (build_marker): New prototype.
6022 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
6023 * composite.c (autocmp_chars): Likewise.
6024 * editfns.c (buildmark): Remove.
6025 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
6026 (save_restriction_save): Use build_marker.
6027 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
6028 * window.c (save_window_save): Likewise.
6029
6030 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6031
6032 Do not use Fdelete_overlay in delete_all_overlays
6033 to avoid redundant calls to unchain_overlay.
6034 * buffer.c (drop_overlay): New function.
6035 (delete_all_overlays, Fdelete_overlay): Use it.
6036 * minibuf.c (get_minibuffer): Fix comment.
6037
6038 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6039
6040 Port to OpenBSD 5.1 amd64.
6041 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
6042 This is needed for OpenBSD, and should be harmless on all BSD systems.
6043 Also, include <sys/sysctl.h>, as it should be available on all
6044 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
6045 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
6046 use p_pid member, not kp_proc.pid.
6047
6048 2012-07-06 Glenn Morris <rgm@gnu.org>
6049
6050 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
6051
6052 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6053
6054 More xmalloc and related cleanup.
6055 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
6056 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
6057 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
6058 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
6059 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
6060 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
6061 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
6062 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
6063 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
6064 * xterm.c:
6065 Omit needless casts involving void * pointers and allocation.
6066 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
6067 as the former is more robust if P's type is changed.
6068 Prefer xzalloc to xmalloc + memset 0.
6069 Simplify malloc-or-realloc to realloc.
6070 Don't worry about xmalloc returning a null pointer.
6071 Prefer xstrdup to xmalloc + strcpy.
6072 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
6073 growing it.
6074 * keyboard.c (apply_modifiers_uncached): Prefer local array to
6075 alloca of a constant.
6076
6077 2012-07-05 Eli Zaretskii <eliz@gnu.org>
6078
6079 * xdisp.c (display_line): Fix horizontal pixel coordinates when
6080 hscroll is larger than the line width. Fixes long and futile
6081 looping inside extend_face_to_end_of_line (on a TTY) producing
6082 glyphs that are not needed and thrown away.
6083
6084 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
6085
6086 * marker.c (set_marker_restricted_both): Simplify by using
6087 clip_to_bounds.
6088
6089 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6090
6091 * editfns.c (region_limit): Simplify by using clip_to_bounds.
6092
6093 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
6094
6095 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
6096 not defined (Bug#11768).
6097 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
6098 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
6099 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
6100 followed by gtk_box_set_homogeneous (Bug#11768).
6101 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
6102 (update_theme_scrollbar_width, xg_create_scroll_bar):
6103 Use gtk_scrollbar_new (Bug#11768).
6104 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
6105 (is_box_type): New function (Bug#11768).
6106 (xg_tool_item_stale_p): Call is_box_type.
6107 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
6108 with default display (Bug#11768).
6109
6110 2012-07-05 Eli Zaretskii <eliz@gnu.org>
6111
6112 * xdisp.c (window_hscroll_limited): New function.
6113 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
6114 coordinates when window's hscroll is set to insanely large
6115 values. (Bug#11857)
6116
6117 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
6118
6119 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
6120 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
6121
6122 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
6123
6124 Cleanup xmalloc.
6125 * lisp.h (xzalloc): New prototype. Omit needless casts.
6126 * alloc.c (xzalloc): New function. Omit needless casts.
6127 * charset.c: Omit needless casts. Convert all calls to
6128 xmalloc with following memset to xzalloc.
6129 * dispnew.c: Likewise.
6130 * fringe.c: Likewise.
6131 * image.c: Likewise.
6132 * sound.c: Likewise.
6133 * term.c: Likewise.
6134 * w32fns.c: Likewise.
6135 * w32font.c: Likewise.
6136 * w32term.c: Likewise.
6137 * xfaces.c: Likewise.
6138 * xfns.c: Likewise.
6139 * xterm.c: Likewise.
6140 * atimer.c: Omit needless casts.
6141 * buffer.c: Likewise.
6142 * callproc.c: Likewise.
6143 * ccl.c: Likewise.
6144 * coding.c: Likewise.
6145 * composite.c: Likewise.
6146 * doc.c: Likewise.
6147 * doprnt.c: Likewise.
6148 * editfns.c: Likewise.
6149 * emacs.c: Likewise.
6150 * eval.c: Likewise.
6151 * filelock.c: Likewise.
6152 * fns.c: Likewise.
6153 * gtkutil.c: Likewise.
6154 * keyboard.c: Likewise.
6155 * lisp.h: Likewise.
6156 * lread.c: Likewise.
6157 * minibuf.c: Likewise.
6158 * msdos.c: Likewise.
6159 * print.c: Likewise.
6160 * process.c: Likewise.
6161 * region-cache.c: Likewise.
6162 * search.c: Likewise.
6163 * sysdep.c: Likewise.
6164 * termcap.c: Likewise.
6165 * terminal.c: Likewise.
6166 * tparam.c: Likewise.
6167 * w16select.c: Likewise.
6168 * w32.c: Likewise.
6169 * w32reg.c: Likewise.
6170 * w32select.c: Likewise.
6171 * w32uniscribe.c: Likewise.
6172 * widget.c: Likewise.
6173 * xdisp.c: Likewise.
6174 * xmenu.c: Likewise.
6175 * xrdb.c: Likewise.
6176 * xselect.c: Likewise.
6177
6178 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6179
6180 * fileio.c (time_error_value): Check the right error number.
6181 Problem reported by Troels Nielsen in
6182 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
6183
6184 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6185
6186 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
6187 This should be fixed in a better way; see Eli Zaretskii in
6188 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
6189 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
6190
6191 * fileio.c (time_error_value): Rename from special_mtime.
6192 The old name's problems were noted by Eli Zaretskii in
6193 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
6194
6195 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
6196 This variable's comment says Emacs needs at least one GDB-visible
6197 symbol of type enum pvec_type, to work around GDB problems.
6198 The symbol's value doesn't matter.
6199
6200 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
6201 that causes compilation to fail on pre-C99 compilers.
6202
6203 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
6204
6205 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
6206 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
6207
6208 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6209
6210 * buffer.c (init_buffer_once): Fix initialization of
6211 headers for buffer_defaults and buffer_local_symbols.
6212 Reported by Juanma Barranquero <lekktu@gmail.com>.
6213
6214 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
6215
6216 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
6217 * lisp.h (enum pvec_type): Use fewer bits.
6218 (PSEUDOVECTOR_SIZE_BITS): New constant.
6219 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
6220 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
6221 change in pvec_type.
6222 (PSEUDOVECTOR_TYPEP): New macro.
6223 (TYPED_PSEUDOVECTORP): Use it.
6224 * fns.c (internal_equal): Adapt code to extract pvectype.
6225 * emacs.c (gdb_pvec_type): Update type.
6226 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
6227 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
6228 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
6229 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
6230 (sweep_vectors): Use it. Use local var `total_bytes' instead of
6231 abusing vector->header.next.nbytes.
6232 (live_vector_p): Use PVEC_TYPE.
6233 (mark_object): Adapt code to extract pvectype. Use switch.
6234
6235 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6236
6237 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
6238 Tighten new eassert a bit.
6239
6240 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6241
6242 Fix compilation with --enable-gcc-warnings and -O1
6243 optimization level.
6244 * doprnt.c (doprnt): Change type of tem to int, initialize
6245 to avoid compiler warning. Add eassert.
6246 * search.c (simple_search): Initialize match_byte to avoid
6247 compiler warning. Add eassert.
6248
6249 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6250
6251 Avoid weird behavior with large horizontal scrolls.
6252 Without this change, for example, large hscroll values would
6253 mess up Emacs's display on Fedora 15 x86, presumably due to
6254 overflows in int calculations in the display code.
6255 Also, if buffers had long lines, Emacs would freeze.
6256 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
6257 (set_window_hscroll): New function, containing the old guts of
6258 Fset_window_hscroll. Return the clipped value.
6259 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
6260 This avoids the need to check against PTRDIFF_MAX.
6261
6262 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
6263
6264 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6265
6266 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
6267
6268 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6269
6270 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
6271 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
6272 since GCC 4.4.6 issues a bogus warning for them.
6273
6274 Fix bugs in file timestamp newness comparisons.
6275 * fileio.c (Ffile_newer_than_file_p):
6276 * lread.c (Fload): Use full timestamp resolution of files,
6277 not just the 1-second resolution, so that files that are only
6278 slightly newer still count as newer.
6279 * fileio.c (Ffile_newer_than_file_p): Don't assume file
6280 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
6281
6282 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
6283
6284 * fileio.c: Improve handling of file time marker. (Bug#11852)
6285 (special_mtime): New function.
6286 (Finsert_file_contents, Fverify_visited_file_modtime):
6287 Use it to set special mtime values consistently.
6288
6289 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
6290
6291 * fileio.c (Finsert_file_contents): Properly handle st_mtime
6292 marker for non-existing file. (Bug#11852)
6293
6294 2012-07-03 Glenn Morris <rgm@gnu.org>
6295
6296 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
6297 and did not make it into globals.h).
6298
6299 2012-07-03 Tom Tromey <tromey@redhat.com>
6300
6301 * window.c (Fset_window_margins, Fset_window_fringes)
6302 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
6303 * textprop.c (Fprevious_property_change): No longer static.
6304 * syntax.c (Fsyntax_table_p): No longer static.
6305 * process.c (Fget_process, Fprocess_datagram_address): No longer
6306 static.
6307 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
6308 * keyboard.c (Fcommand_execute): No longer static.
6309 Remove EXFUN.
6310 * insdel.c (Fcombine_after_change_execute): No longer static.
6311 * image.c (Finit_image_library): No longer static.
6312 * fileio.c (Fmake_symbolic_link): No longer static.
6313 * eval.c (Ffetch_bytecode): No longer static.
6314 * editfns.c (Fuser_full_name): No longer static.
6315 * doc.c (Fdocumentation_property, Fsnarf_documentation):
6316 No longer static.
6317 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
6318 static.
6319 * dired.c (Ffile_attributes): No longer static.
6320 * composite.c (Fcomposition_get_gstring): No longer static.
6321 * callproc.c (Fgetenv_internal): No longer static.
6322
6323 * ccl.h: Remove EXFUNs.
6324 * buffer.h: Remove EXFUNs.
6325 * dispextern.h: Remove EXFUNs.
6326 * intervals.h: Remove EXFUNs.
6327 * fontset.h: Remove EXFUN.
6328 * font.h: Remove EXFUNs.
6329 * dosfns.c (system_process_attributes): Remove EXFUN.
6330 * keymap.h: Remove EXFUNs.
6331 * lisp.h: Remove EXFUNs.
6332 * w32term.h: Remove EXFUNs.
6333 * window.h: Remove EXFUNs.
6334 * xsettings.h: Remove EXFUN.
6335 * xterm.h: Remove EXFUN.
6336
6337 2012-07-03 Glenn Morris <rgm@gnu.org>
6338
6339 * lisp.h (Frandom): Make it visible to C.
6340 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
6341 buffer for invisible buffers. (Bug#1229)
6342
6343 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6344
6345 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
6346 values which aren't power of 2.
6347 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
6348 Verify it's value and the value of VECTOR_BLOCK_SIZE. Adjust users
6349 accordingly.
6350
6351 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6352
6353 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
6354
6355 * alloc.c (mark_object): Revert part of last patch to use `switch'.
6356
6357 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6358
6359 * alloc.c (allocate_vector_block): Remove redundant
6360 calls to mallopt if DOUG_LEA_MALLOC is defined.
6361 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
6362 avoid calls to mallopt if zero_vector is returned.
6363
6364 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6365
6366 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
6367 is enabled, avoid dereferencing NULL current_sblock if
6368 running undumped.
6369
6370 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6371
6372 Cleanup basic buffer management.
6373 * buffer.h (struct buffer): Change layout to use generic vector
6374 marking code. Fix some comments. Change type of 'clip_changed'
6375 to bitfield. Remove unused #ifndef old.
6376 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
6377 (GET_OVERLAYS_AT): Fix indentation.
6378 (for_each_per_buffer_object_at): New macro.
6379 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
6380 (Fbuffer_local_variables): Use it.
6381 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
6382 * alloc.c (allocate_buffer): Adjust to match new layout of
6383 struct buffer. Fix comment.
6384 (mark_overlay): New function.
6385 (mark_buffer): Use it. Use mark_vectorlike to mark normal
6386 Lisp area of struct buffer.
6387 (mark_object): Use it. Adjust marking of misc objects
6388 and related comments.
6389
6390 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
6391
6392 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
6393 wrapper that is not needed because the wrapped code is a no-op (zero
6394 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
6395 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
6396
6397 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
6398
6399 * alloc.c (mark_buffer): Simplify. Remove prototype.
6400 (mark_object): Add comment. Reorganize marking of vector-like
6401 objects. Use CHECK_LIVE for all vector-like objects except buffers
6402 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
6403 Avoid redundant calls to mark_vectorlike for bool vectors.
6404
6405 2012-06-30 Glenn Morris <rgm@gnu.org>
6406
6407 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
6408
6409 * epaths.in (PATH_SITELOADSEARCH): New.
6410 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
6411 This is rather than relying on --enable-locallisppath elements
6412 having "site-lisp" in their names. (Bug#10208#25, 11658)
6413
6414 2012-06-30 Eli Zaretskii <eliz@gnu.org>
6415
6416 * w32proc.c (sys_select): Accept and ignore one more argument.
6417
6418 * w32.c (emacs_gnutls_pull): Call select with one more argument.
6419
6420 * sysselect.h [DOS_NT]: Don't include sys/select.h.
6421 (pselect) [!MS_DOS]: Redirect to sys_select.
6422
6423 * sysdep.c: Don't include dos.h and dosfns.h.
6424
6425 * process.c (sys_select):
6426 * msdos.c (sys_select): Accept one more argument and ignore it.
6427
6428 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
6429 adapt data types and code to that.
6430
6431 * dosfns.c:
6432 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
6433 which clashes with the gnulib function of the same name.
6434
6435 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
6436
6437 * font.c (font_style_to_value, font_style_symbolic)
6438 (font_prop_validate_style): Add type checks for values in
6439 font_style_table.
6440
6441 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
6442 argument.
6443 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
6444 uses.
6445
6446 2012-06-29 Eli Zaretskii <eliz@gnu.org>
6447
6448 * xdisp.c (try_window_id): Undo last change.
6449
6450 * w32.c (getwd): Adjust commentary about startup_dir.
6451 (init_environment): Always call sys_access, even in non-MSVC
6452 builds. Don't chdir to the directory of the Emacs executable.
6453 This undoes code from 1997 which was justified by the need to
6454 "avoid conflicts when removing and renaming directories". But its
6455 downside was that every relative file name was being interpreted
6456 relative to the directory of the Emacs executable, which can never
6457 be TRT. In particular, it broke sys_access when called with
6458 relative file names.
6459 (sys_access): Map GetLastError to errno.
6460
6461 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6462
6463 * window.h (struct window): Change type of 'fringes_outside_margins'
6464 to bitfield. Fix comment. Adjust users accordingly.
6465 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
6466 Adjust comment.
6467 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
6468 to ptrdiff_t.
6469
6470 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
6471
6472 * gnutls.c (emacs_gnutls_handshake):
6473 Add QUIT to make the loop interruptible.
6474
6475 2012-06-29 Glenn Morris <rgm@gnu.org>
6476
6477 * charset.c (init_charset): Make lack of etc/charsets fatal.
6478
6479 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6480
6481 * editfns.c (region_limit): Fix type mismatch.
6482
6483 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6484
6485 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
6486 undefined. Convert from xassert to eassert.
6487 * nsmenu.m: Convert from xassert to eassert.
6488 * nsterm.m: Likewise.
6489
6490 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6491
6492 * editfns.c (region_limit): Clip to narrowing (bug#11770).
6493
6494 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
6495
6496 Avoid integer overflow on scroll-left and scroll-right.
6497 * window.c (HSCROLL_MAX): New macro.
6498 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
6499 overflow when requested scroll falls outside ptrdiff_t range.
6500
6501 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6502
6503 * window.h (struct window): Change type of 'hscroll',
6504 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
6505 'last_modified' and 'last_overlay_modified' to EMACS_INT.
6506 Adjust users accordingly.
6507 * xdisp.c (try_cursor_movement): Replace type check with eassert.
6508 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
6509 from EMACS_INT to ptrdiff_t.
6510 (make_window): Omit redundant initialization.
6511
6512 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
6513
6514 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
6515
6516 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6517
6518 * window.h (struct window): Change type of 'use_time' and
6519 'sequence_number' from Lisp_Object to int.
6520 * frame.c (make_frame): Adjust users accordingly.
6521 * print.c (print_object): Likewise.
6522 * window.c (select_window, Fwindow_use_time, make_parent_window)
6523 (make_window): Likewise.
6524
6525 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6526
6527 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
6528 enabled with --enable-checking=[all,glyphs] configure option.
6529 Fix GLYPH_DEBUG usage assuming that it may be undefined,
6530 adjust comments accordingly.
6531 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
6532 undefined, adjust comments accordingly.
6533 * image.c: Likewise.
6534 * scroll.c: Likewise.
6535 * w32fns.c: Likewise.
6536 * w32term.c: Likewise.
6537 * xdisp.c: Likewise.
6538 * xfaces.c: Likewise.
6539 * xfns.c: Likewise.
6540 * xterm.c: Likewise.
6541
6542 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6543
6544 Generalize run-time debugging checks.
6545 * dispextern.h (XASSERTS): Remove.
6546 * fontset.c (xassert): Remove.
6547 Convert from xassert to eassert.
6548 * alloc.c: Convert from xassert to eassert.
6549 * bidi.c: Likewise.
6550 * dispnew.c: Likewise.
6551 * fns.c: Likewise.
6552 * fringe.c: Likewise.
6553 * ftfont.c: Likewise.
6554 * gtkutil.c: Likewise.
6555 * image.c: Likewise.
6556 * keyboard.c: Likewise.
6557 * menu.c: Likewise.
6558 * process.c: Likewise.
6559 * scroll.c: Likewise.
6560 * sound.c: Likewise.
6561 * term.c: Likewise.
6562 * w32console.c: Likewise.
6563 * w32fns.c: Likewise.
6564 * w32term.c: Likewise.
6565 * window.c: Likewise.
6566 * xdisp.c: Likewise.
6567 * xfaces.c: Likewise.
6568 * xfns.c: Likewise.
6569 * xselect.c: Likewise.
6570 * xterm.c: Likewise.
6571
6572 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
6573
6574 * fns.c (maybe_resize_hash_table): Output message when growing the
6575 purify-hashtable.
6576
6577 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6578
6579 * alloc.c (allocate_string_data): Remove dead code.
6580 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
6581 avoid GCC warning about unused macro.
6582
6583 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6584
6585 * alloc.c (allocate_string): Omit intervals initialization.
6586 * alloc.c (make_uninit_multibyte_string): Initialize intervals
6587 as in make_pure_string and make_pure_c_string.
6588
6589 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6590
6591 * alloc.c (allocate_string): Fix last change.
6592
6593 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6594
6595 * alloc.c (allocate_string): Remove two redundant calls
6596 to memset, add explicit initialization where appropriate.
6597
6598 2012-06-27 Glenn Morris <rgm@gnu.org>
6599
6600 * lisp.mk (lisp): Remove paths.elc.
6601
6602 2012-06-27 Chong Yidong <cyd@gnu.org>
6603
6604 * doc.c (Fsubstitute_command_keys): Fix punctuation.
6605
6606 2012-06-26 John Wiegley <johnw@newartisans.com>
6607
6608 * unexmacosx.c (copy_data_segment): Add two section names used
6609 on Mac OS X Lion: __mod_init_func and __mod_term_func.
6610
6611 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
6612 when building with Clang.
6613
6614 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6615
6616 * eval.c (Fapply): Allow calling it with a single argument.
6617
6618 2012-06-26 Eli Zaretskii <eliz@gnu.org>
6619
6620 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
6621 _stricmp and _strnicmp.
6622 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
6623
6624 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6625
6626 * alloc.c (allocate_window): Zero out non-Lisp part of newly
6627 allocated window.
6628 (allocate_process): Likewise for new process.
6629 (allocate_terminal): Change to use offsetof.
6630 (allocate_frame): Likewise.
6631 * frame.c (make_frame): Omit redundant initialization.
6632 * window.c (make_parent_window): Use memset.
6633 (make_window): Omit redundant initialization.
6634 * process.c (make_process): Omit redundant initialization.
6635 * terminal.c (create_terminal): Likewise.
6636
6637 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6638
6639 * term.c (delete_tty): Remove redundant call to memset.
6640
6641 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6642
6643 * alloc.c: Remove build_string.
6644 * lisp.h: Define build_string as static inline. This provides
6645 a better opportunity to optimize away calls to strlen when the
6646 function is called with compile-time constant argument.
6647 * image.c (imagemagick_error): Convert to build_string.
6648 * w32proc.c (sys_spawnve): Likewise.
6649 * xterm.c (x_term_init): Likewise.
6650
6651 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
6652
6653 Use sprintf return value instead of invoking strlen on result.
6654 In the old days this wasn't portable, since some sprintf
6655 implementations returned char *. But they died out years ago and
6656 Emacs already assumes sprintf returns int.
6657 Similarly for float_to_string.
6658 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
6659 * ccl.c (ccl_driver):
6660 * character.c (string_escape_byte8):
6661 * data.c (Fnumber_to_string):
6662 * doprnt.c (doprnt):
6663 * print.c (print_object):
6664 * xdisp.c (message_dolog):
6665 * xfns.c (syms_of_xfns):
6666 Use sprintf or float_to_string result to avoid need to call strlen.
6667 * data.c (Fnumber_to_string):
6668 Use make_unibyte_string, since the string must be ASCII.
6669 * lisp.h, print.c (float_to_string): Now returns int length.
6670 * term.c (produce_glyphless_glyph):
6671 Use sprintf result rather than recomputing it.
6672
6673 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
6674 * Makefile.in (ALL_CFLAGS):
6675 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
6676 * gmalloc.c, regex.c: Include <config.h> unconditionally.
6677
6678 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6679
6680 * dispextern.h (xstrcasecmp): Define to library function
6681 strcasecmp if available.
6682 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
6683
6684 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
6685
6686 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
6687 Avoid comma operator.
6688 * menu.c (push_submenu_start, push_submenu_end)
6689 (push_left_right_boundary, push_menu_pane): Likewise.
6690 * msdos.c (dos_rawgetc): Likewise.
6691
6692 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6693
6694 * xfns.c (xic_create_fontsetname): Remove redundant calls
6695 to memset.
6696
6697 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
6698
6699 * gtkutil.c (get_utf8_string): Remove redundant assignment.
6700 sprintf already null-terminates its output.
6701
6702 * xfns.c (x_window): Remove redundant cast.
6703
6704 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6705
6706 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
6707 `const char *' to `char *' to avoid compiler warning.
6708
6709 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6710
6711 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
6712 instead of truncating it to 63 (admittedly a generous limit).
6713
6714 * process.c: Fix spelling and caps in comments.
6715
6716 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
6717
6718 * emacs.c (setpgrp): Remove definition, unused.
6719 * sysdep.c (setpgrp): Remove definition, not used in this file.
6720
6721 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
6722
6723 * makefile.w32-in: Update dependencies.
6724
6725 2012-06-24 Eli Zaretskii <eliz@gnu.org>
6726
6727 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
6728 (SYSTIME_H): Add nt/inc/sys/time.h.
6729
6730 * systime.h [WINDOWSNT]: Include sys/time.h.
6731
6732 * s/ms-w32.h (struct timespec): Definition moved from
6733 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
6734
6735 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6736
6737 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
6738 * buffer.h (buffer_slot_type_mismatch):
6739 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
6740 * eval.c (unwind_to_catch):
6741 * image.c (my_png_error, my_error_exit):
6742 * keyboard.c (quit_throw_to_read_char, user_error)
6743 (Fexit_recursive_edit, Fabort_recursive_edit):
6744 * lisp.h (die, args_out_of_range, args_out_of_range_3)
6745 (wrong_type_argument, buffer_overflow, __executable_start)
6746 (memory_full, buffer_memory_full, string_overflow, Fthrow)
6747 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
6748 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
6749 (fatal):
6750 (child_setup) [!DOS_NT]:
6751 * lread.c (end_of_file_error, invalid_syntax):
6752 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
6753 * puresize.h (pure_write_error):
6754 * search.c (matcher_overflow):
6755 * sound.c (sound_perror, alsa_sound_perror):
6756 * sysdep.c, syssignal.h (croak):
6757 * term.c (maybe_fatal, vfatal):
6758 * textprop.c (text_read_only):
6759 * undo.c (user_error):
6760 * unexmacosx.c (unexec_error):
6761 * xterm.c (x_ins_del_lines, x_delete_glyphs):
6762 Use _Noreturn rather than NO_RETURN.
6763 No need for separate decl merely because of _Noreturn.
6764 * sound.c (sound_warning, parse_sound):
6765 Remove unnecessary forward decls.
6766
6767 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6768
6769 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
6770 * lisp.h (WAIT_READING_MAX): New macro.
6771 * dispnew.c (Fsleep_for, sit_for):
6772 * keyboard.c (kbd_buffer_get_event):
6773 * process.c (Faccept_process_output):
6774 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
6775 This improves on the previous patch, which introduced a bug
6776 when time_t is unsigned and as wide as intmax_t.
6777 See <http://bugs.gnu.org/9000#51>.
6778
6779 2012-06-23 Eli Zaretskii <eliz@gnu.org>
6780
6781 * dispnew.c (sit_for, Fsleep_for):
6782 * keyboard.c (kbd_buffer_get_event):
6783 * process.c (Faccept_process_output): Avoid compiler warnings when
6784 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
6785
6786 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
6787
6788 * makefile.w32-in: Update dependencies.
6789
6790 * w32.c (ltime): Add return type and declare static.
6791 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
6792
6793 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
6794
6795 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
6796 Privately reported by Herbert J. Skuhra.
6797 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
6798 All uses changed.
6799 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
6800 not make_lisp_timeval, when the argument is of type EMACS_TIME.
6801
6802 2012-06-23 Eli Zaretskii <eliz@gnu.org>
6803
6804 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
6805 last argument of make_unibyte_string.
6806
6807 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
6808 language ID in the event parameters.
6809
6810 * w32term.c (w32_read_socket): Put the new keyboard codepage into
6811 event.code, not the obscure "character set ID".
6812
6813 2012-06-23 Chong Yidong <cyd@gnu.org>
6814
6815 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
6816
6817 2012-06-23 Eli Zaretskii <eliz@gnu.org>
6818
6819 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
6820 * w32.c (fdutimens): New function.
6821
6822 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
6823
6824 * s/ms-w32.h (pselect): Redirect to sys_select.
6825
6826 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
6827
6828 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
6829 in the logic of incrementing and decrementing the value of
6830 use_relocatable_buffers.
6831
6832 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
6833
6834 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
6835 Privately reported by Herbert J. Skuhra.
6836 [__FreeBSD__]: Remove "*/" typo after "#include".
6837 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
6838 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
6839 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
6840 Don't assume EMACS_TIME and struct timeval are the same type.
6841
6842 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
6843
6844 Support higher-resolution time stamps (Bug#9000).
6845 The time stamps are only nanosecond-resolution at the C level,
6846 since that's the best that any real-world system supports now.
6847 But they are picosecond-resolution at the Lisp level, as that's
6848 easy, and leaves room for future OS improvements.
6849
6850 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
6851 (LIBES): Use it.
6852
6853 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
6854 Don't get current time unless it's needed.
6855
6856 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
6857 now provides it if it's absent.
6858 (start_atimer): Port to higher-res time stamps.
6859 Check for time stamp overflow. Don't get current time more
6860 often than is needed.
6861
6862 * buffer.h (struct buffer): Buffer modtime now has high resolution.
6863 Include systime.h, not time.h.
6864 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
6865
6866 * dired.c: Include stat-time.h.
6867 (Ffile-attributes): File times now have higher resolution.
6868
6869 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
6870 (struct image): Timestamp now has higher resolution.
6871
6872 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
6873 has at least microseconds now. All uses removed.
6874 (update_frame, update_single_window, update_window, update_frame_1)
6875 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
6876 (duration_to_sec_usec): Remove; no longer needed.
6877
6878 * editfns.c (time_overflow): Now extern.
6879 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
6880 (float-time, Fformat_time_string, Fcurrent_time_string)
6881 (Fcurrent_time_zone): Accept and generate higher-resolution
6882 time stamps.
6883 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
6884 (decode_time_components, lisp_seconds_argument): New functions.
6885 (make_time): Now static.
6886 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
6887 Report an error if the time is invalid, rather than having the caller
6888 do that.
6889
6890 * fileio.c: Include <stat-time.h>
6891 (Fcopy_file): Copy higher-resolution time stamps.
6892 Prefer to set the time stamp via a file descriptor if that works.
6893 (Fset_file_times, Finsert_file_contents, Fwrite_region)
6894 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
6895 (Fvisited_file_modtime, Fset_visited_file_modtime):
6896 Support higher-resolution time stamps.
6897
6898 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
6899
6900 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
6901
6902 * image.c (prepare_image_for_display, clear_image_cache)
6903 (lookup_image): Port to higer-resolution time stamps.
6904
6905 * keyboard.c (start_polling, bind_polling_period):
6906 Check for time stamp overflow.
6907 (read_char, kbd_buffer_get_event, timer_start_idle)
6908 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
6909 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
6910 Port to higher-resolution time stamps. Do not assume time_t is signed.
6911 (decode_timer): New function. Timers are now vectors of length 9,
6912 not 8, to accommodate the picosecond component.
6913 (timer_check_2): Use it.
6914
6915 * nsterm.m (select_timeout, timeval_subtract): Remove.
6916 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
6917 as they're a bit more accurate and handle overflow better.
6918 (ns_select): Change prototype to be compatible with pselect.
6919 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
6920 * nsterm.h (ns_select): Adjust prototype.
6921
6922 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
6923 us-resolution time stamps.
6924 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
6925
6926 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
6927
6928 * lisp.h (time_overflow): New decl.
6929 (wait_reading_process_output): First arg is now intmax_t, not int,
6930 to accommodate larger waits.
6931
6932 * process.h (struct Lisp_Process.read_output_delay):
6933 Now counts nanoseconds, not microseconds.
6934 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
6935 EMACS_HAS_USECS.
6936 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
6937 (wait_reading_process_output):
6938 Port to ns-resolution time stamps.
6939 (Faccept_process_output, wait_reading_process_output):
6940 Check for time stamp overflow. Do not assume time_t is signed.
6941 (select_wrapper): Remove; we now use pselect.
6942 (Fprocess_attributes): Now generates ns-resolution time stamps.
6943
6944 * sysdep.c: Include utimens.h. Don't include utime.h
6945 or worry about struct utimbuf; gnulib does that for us now.
6946 (gettimeofday): Remove; gnulib provides a substitute.
6947 (make_timeval): New function.
6948 (set_file_times): Now sets ns-resolution time stamps.
6949 New arg FD; all uses changed.
6950 (time_from_jiffies, ltime_from_jiffies, get_up_time)
6951 (system_process_attributes):
6952 Now returns ns-resolution time stamp. All uses changed.
6953 Check for time stamp overflow.
6954
6955 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
6956 provides a substitute now.
6957
6958 * systime.h: Include timespec.h rather than sys/time.h and time.h,
6959 since it guarantees struct timespec.
6960 (EMACS_TIME): Now struct timespec, so that we can support
6961 ns-resolution time stamps.
6962 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
6963 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
6964 (EMACS_USECS): Remove.
6965 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
6966 so multiply the arg by 1000 before storing it.
6967 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
6968 New macros.
6969 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
6970 Port to ns-resolution time stamps.
6971 (EMACS_TIME_NEG_P): Remove; replaced by....
6972 (EMACS_TIME_SIGN): New macro.
6973 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
6974 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
6975 (set_file_times, make_time, lisp_time_argument): Adjust signature.
6976 (make_timeval, make_lisp_time, decode_time_components): New decls.
6977 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
6978 that it mishandled time_t overflow. You can't compare by subtracting!
6979 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
6980 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
6981
6982 * term.c: Include <sys/time.h>.
6983 (timeval_to_Time): New function, for proper overflow wraparound.
6984 (term_mouse_position, term_mouse_click): Use it.
6985
6986 * undo.c (record_first_change): Support higher-resolution time stamps
6987 in the undo buffer.
6988 (Fprimitive_undo): Use them when restoring time stamps.
6989
6990 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
6991 (w32_get_internal_run_time):
6992 Port to higher-resolution Emacs time stamps.
6993 (ltime): Now accepts single 64-bit integer, as that's more convenient
6994 for callers.
6995
6996 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
6997
6998 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
6999 for compatibility with pselect. Support ns-resolution time stamps.
7000
7001 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
7002
7003 * xselect.c (wait_for_property_change, x_get_foreign_selection):
7004 Check for time stamp overflow, and support ns-resolution time stamps.
7005
7006 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
7007 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
7008 (timeval_subtract): Remove; no longer needed.
7009 (XTflash, XTring_bell, x_wait_for_event):
7010 Port to ns-resolution time stamps. Don't assume time_t is signed.
7011
7012 2012-06-22 Chong Yidong <cyd@gnu.org>
7013
7014 * xdisp.c (x_consider_frame_title): Revert last change.
7015
7016 2012-06-22 Eli Zaretskii <eliz@gnu.org>
7017
7018 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
7019 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
7020 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
7021 staticidx goes up to 1597 out of 1600 = 0x640.)
7022
7023 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
7024
7025 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
7026 Otherwise, the umask might be mistakenly 0 while handling input signals.
7027
7028 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
7029
7030 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
7031
7032 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
7033
7034 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
7035 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
7036 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
7037 access to `contents' member of Lisp_Vector objects with AREF and ASET
7038 where appropriate.
7039
7040 2012-06-19 Chong Yidong <cyd@gnu.org>
7041
7042 * frame.c (delete_frame): When selecting a frame on a different
7043 text terminal, do not alter the terminal's top-frame.
7044
7045 * xdisp.c (format_mode_line_unwind_data): Record the target
7046 frame's selected window and its terminal's top-frame.
7047 (unwind_format_mode_line): Restore them.
7048 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
7049 Callers changed.
7050 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
7051 since tty frames can be explicitly named.
7052 (prepare_menu_bars): Likewise.
7053
7054 * term.c (Ftty_top_frame): New function.
7055
7056 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
7057
7058 Port byte-code-meter to modern targets.
7059 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
7060 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
7061 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
7062 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
7063 (METER_1, METER_2): Simplify.
7064
7065 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7066
7067 * data.c (Fdefalias): Return `symbol' (bug#11686).
7068
7069 2012-06-18 Martin Rudalics <rudalics@gmx.at>
7070
7071 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
7072 gets killed during executing of this function (Bug#11665).
7073 Try to always return Qt when the buffer has been actually killed.
7074 (Vkill_buffer_query_functions): In doc-string say that functions
7075 run by this hook should not change the current buffer.
7076
7077 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
7078
7079 Fix recently-introduced process.c problems found by static checking.
7080 * process.c (write_queue_push, write_queue_pop, send_process):
7081 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
7082 (write_queue_pop): Fix pointer signedness problem.
7083 (send_process): Remove unused local.
7084
7085 2012-06-17 Chong Yidong <cyd@gnu.org>
7086
7087 * xdisp.c (redisplay_internal): No need to redisplay terminal
7088 frames that are not on top.
7089
7090 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
7091
7092 * process.c (make_process): Initialize write_queue.
7093 (write_queue_push, write_queue_pop): New functions.
7094 (send_process): Use them to maintain correct ordering of process
7095 writes (Bug#10815).
7096
7097 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
7098
7099 * lisp.h (eassert): Assume C89 or later.
7100 This removes the need for CHECK.
7101 (CHECK): Remove. Its comments about always evaluating its
7102 argument were confusing, as 'eassert' typically does not evaluate
7103 its argument.
7104
7105 * coding.c (produce_chars): Use ptrdiff_t, not int.
7106
7107 * xterm.c (x_draw_underwave): Check for integer overflow.
7108 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
7109
7110 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
7111
7112 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
7113 referenced (Bug#11583).
7114
7115 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
7116
7117 Implement wave-style variant of underlining.
7118 * dispextern.h (face_underline_type): New enum.
7119 (face): Add field for underline type.
7120 * nsterm.m (ns_draw_underwave): New function.
7121 (ns_draw_text_decoration): Use it.
7122 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
7123 New functions.
7124 (x_draw_glyph_string): Use them.
7125 * xfaces.c (Qline, Qwave): New Lisp objects.
7126 (check_lface_attrs, merge_face_ref)
7127 (Finternal_set_lisp_face_attribute, realize_x_face):
7128 Handle wave-style underline face attributes.
7129 * xterm.c (x_draw_underwave): New function.
7130 (x_draw_glyph_string): Use it.
7131
7132 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
7133
7134 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
7135 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
7136 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
7137 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
7138 ($(BLD)/w32select.$(O)): Update dependencies.
7139
7140 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
7141
7142 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
7143 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
7144 * character.c (_fetch_multibyte_char_p): Remove.
7145 * alloc.c: Include "character.h" before "buffer.h".
7146 * bidi.c: Likewise.
7147 * buffer.c: Likewise.
7148 * bytecode.c: Likewise.
7149 * callint.c: Likewise.
7150 * callproc.c: Likewise.
7151 * casefiddle.c: Likewise.
7152 * casetab.c: Likewise.
7153 * category.c: Likewise.
7154 * cmds.c: Likewise.
7155 * coding.c: Likewise.
7156 * composite.c: Likewise.
7157 * dired.c: Likewise.
7158 * dispnew.c: Likewise.
7159 * doc.c: Likewise.
7160 * dosfns.c: Likewise.
7161 * editfns.c: Likewise.
7162 * emacs.c: Likewise.
7163 * fileio.c: Likewise.
7164 * filelock.c: Likewise.
7165 * font.c: Likewise.
7166 * fontset.c: Likewise.
7167 * fringe.c: Likewise.
7168 * indent.c: Likewise.
7169 * insdel.c: Likewise.
7170 * intervals.c: Likewise.
7171 * keyboard.c: Likewise.
7172 * keymap.c: Likewise.
7173 * lread.c: Likewise.
7174 * macros.c: Likewise.
7175 * marker.c: Likewise.
7176 * minibuf.c: Likewise.
7177 * nsfns.m: Likewise.
7178 * nsmenu.m: Likewise.
7179 * print.c: Likewise.
7180 * process.c: Likewise.
7181 * regex.c: Likewise.
7182 * region-cache.c: Likewise.
7183 * search.c: Likewise.
7184 * syntax.c: Likewise.
7185 * term.c: Likewise.
7186 * textprop.c: Likewise.
7187 * undo.c: Likewise.
7188 * unexsol.c: Likewise.
7189 * w16select.c: Likewise.
7190 * w32fns.c: Likewise.
7191 * w32menu.c: Likewise.
7192 * window.c: Likewise.
7193 * xdisp.c: Likewise.
7194 * xfns.c: Likewise.
7195 * xmenu.c: Likewise.
7196 * xml.c: Likewise.
7197 * xselect.c: Likewise.
7198
7199 2012-06-16 Eli Zaretskii <eliz@gnu.org>
7200
7201 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
7202 If all the glyphs of the glyph row came from strings, and we have no
7203 cursor positioning clues, put the cursor on the first glyph of the
7204 row.
7205 (handle_face_prop): Use chunk-relative overlay string index when
7206 indexing into it->string_overlays array. (Bug#11653)
7207 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
7208 the rightmost. (Bug#11720)
7209
7210 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
7211
7212 * category.h (CHAR_HAS_CATEGORY): Define as inline.
7213 (CATEGORY_MEMBER): Enforce 1/0 value.
7214 * category.c (_temp_category_set): Remove.
7215
7216 2012-06-16 Eli Zaretskii <eliz@gnu.org>
7217
7218 * window.c (Fdelete_other_windows_internal)
7219 (Fdelete_window_internal): Don't access frame's mouse highlight
7220 info of the initial frame. (Bug#11677)
7221
7222 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
7223
7224 * .gdbinit (xgetint): Fix recently-introduced paren typo.
7225 Assume USE_2_TAGS_FOR_INTS.
7226 (xreload): Adjust $tagmask width to match recent lisp.h change.
7227
7228 Simplify lisp.h in minor ways that should not affect code.
7229 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
7230 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
7231 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
7232 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
7233 (INTTYPEBITS): New macro, for clarity.
7234 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
7235 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
7236 Simplify now that USE_LSB_TAG is always defined.
7237 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
7238 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
7239
7240 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
7241
7242 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
7243
7244 2012-06-13 Glenn Morris <rgm@gnu.org>
7245
7246 * s/bsd-common.h (BSD4_3):
7247 * s/usg5-4-common.h (USG5_4): No longer define; unused.
7248
7249 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
7250
7251 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
7252 instead of union.
7253 (XLI, XIL): Define.
7254 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
7255 Use them.
7256 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
7257 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
7258 * alloc.c (widen_to_Lisp_Object): Remove.
7259 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
7260 * frame.c (delete_frame): Remove outdated comment.
7261 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
7262 USE_LISP_UNION_TYPE.
7263 (Fw32_unregister_hot_key): Likewise.
7264 (Fw32_toggle_lock_key): Likewise.
7265 * w32menu.c (add_menu_item): Likewise.
7266 (w32_menu_display_help): Use XIL instead of checking
7267 USE_LISP_UNION_TYPE.
7268 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
7269 (init_heap): Likewise.
7270 * w32term.c (w32_read_socket): Update comment.
7271
7272 2012-06-13 Glenn Morris <rgm@gnu.org>
7273
7274 * s/usg5-4-common.h, src/s/unixware.h:
7275 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
7276
7277 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
7278
7279 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
7280
7281 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
7282 * alloc.c (make_number) [!defined make_number]:
7283 Remove, as lisp.h always defines this now.
7284 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
7285 (roundup_size): Verify that it is a power of 2.
7286 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
7287 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
7288 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
7289 -DUSE_LSB_TAG=0, to override the automatically-selected default.
7290 USE_LSB_TAG now is always defined to be either 0 or 1.
7291 All uses changed.
7292 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
7293 code works fine either way, and efficiency is not a concern here,
7294 as the union type is for debugging, not for production.
7295 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
7296 Use an inline function on all platforms when using the union type,
7297 since this is simpler and 'static inline' can be used portably
7298 within Emacs now.
7299 (LISP_INITIALLY_ZERO): New macro.
7300 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
7301 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
7302
7303 2012-06-12 Glenn Morris <rgm@gnu.org>
7304
7305 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
7306
7307 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
7308
7309 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
7310 Move BROKEN_SIGIO to configure.
7311
7312 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
7313 Move NO_TERMIO to configure.
7314
7315 2012-06-12 Chong Yidong <cyd@gnu.org>
7316
7317 * image.c (imagemagick_load_image): Use MagickFlattenImage if
7318 MagickMergeImageLayers is undefined. Use pixel pusher loop if
7319 MagickExportImagePixels is undefined.
7320
7321 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
7322
7323 * image.c (imagemagick_load_image): Remove unused label.
7324
7325 2012-06-11 Glenn Morris <rgm@gnu.org>
7326
7327 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7328 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
7329 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
7330 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
7331
7332 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7333
7334 * alloc.c (make_byte_code): New function.
7335 (Fmake_byte_code): Use it. Don't purify here.
7336 * lread.c (read1): Use it as well to avoid extra allocation.
7337
7338 2012-06-11 Chong Yidong <cyd@gnu.org>
7339
7340 * image.c (imagemagick_load_image): Implement transparency.
7341
7342 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
7343
7344 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
7345 account for preceding backslashes. (Bug#11663)
7346
7347 2012-06-09 Chong Yidong <cyd@gnu.org>
7348
7349 * term.c: Support italics in capable terminals (Bug#9652).
7350 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
7351 (turn_on_face): Output using TS_enter_italic_mode if available.
7352 Don't handle unused blinking and alt-charset cases.
7353 (turn_off_face): Handle italic case; discard unused tty_blinking_p
7354 and tty_alt_charset_p cases.
7355 (tty_capable_p, init_tty): Support italics.
7356
7357 * termchar.h (struct tty_display_info): Add field for italics.
7358 Remove unused blink field.
7359
7360 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
7361 Handle slant.
7362
7363 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
7364 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
7365 tty_alt_charset_p. Add tty_italic_p.
7366
7367 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
7368
7369 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
7370 dbus_type_is_basic if available.
7371 (xd_extract_signed, xd_extract_unsigned): Rename from
7372 extract_signed and extract_unsigned, respectively. Adapt callers.
7373
7374 2012-06-09 Chong Yidong <cyd@gnu.org>
7375
7376 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
7377
7378 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
7379 case (Bug#9752).
7380
7381 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
7382
7383 * xdisp.c (vmessage): Treat frame message as multibyte.
7384 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
7385 would generate the diagnostic "Making \302\247 buffer-local while
7386 let-bound!".
7387
7388 2012-06-08 Eli Zaretskii <eliz@gnu.org>
7389
7390 * dispnew.c (showing_window_margins_p): Undo last change, which
7391 was done due to an inadvertent commit.
7392 (adjust_frame_glyphs_for_frame_redisplay): Do call
7393 showing_window_margins_p.
7394
7395 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7396
7397 * eval.c (Fmake_var_non_special): New primitive.
7398 (syms_of_eval): Defsubr it.
7399 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
7400
7401 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
7402
7403 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
7404 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
7405
7406 2012-06-08 Eli Zaretskii <eliz@gnu.org>
7407
7408 * alloc.c (allocate_vectorlike): Fix last change.
7409
7410 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
7411
7412 Block-based vector allocation of small vectors.
7413 * lisp.h (struct vectorlike_header): New field `nbytes',
7414 adjust comment accordingly.
7415 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
7416 to denote vector blocks. Adjust users (live_vector_p,
7417 mark_maybe_pointer, valid_lisp_object_p) accordingly.
7418 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
7419 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
7420 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
7421 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
7422 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
7423 (roundup_size): New constant.
7424 (struct vector_block): New data type.
7425 (vector_blocks, vector_free_lists, zero_vector): New variables.
7426 (all_vectors): Rename to `large_vectors'.
7427 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
7428 (sweep_vectors): New functions.
7429 (allocate_vectorlike): Return `zero_vector' as the only vector of
7430 0 items. Allocate new vector from block if vector size is less than
7431 or equal to VBLOCK_BYTES_MAX.
7432 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
7433 (init_alloc_once): Add call to init_vectors.
7434
7435 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7436
7437 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
7438
7439 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
7440
7441 * doprnt.c (doprnt): Truncate multibyte char correctly.
7442 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
7443 would mishandle a string argument "Xc" if X was a multibyte
7444 character of length 2: it would truncate after X's first byte
7445 rather than including all of X.
7446
7447 2012-06-06 Chong Yidong <cyd@gnu.org>
7448
7449 * buffer.c (word_wrap): Doc fix.
7450
7451 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
7452
7453 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
7454
7455 2012-06-03 Glenn Morris <rgm@gnu.org>
7456
7457 * xdisp.c (tool-bar-style): Doc fix.
7458
7459 2012-06-03 Ulrich Müller <ulm@gentoo.org>
7460
7461 * Makefile.in (PAXCTL): Define.
7462 (temacs$(EXEEXT)): Disable memory randomization for the temacs
7463 binary via PaX flags if the paxctl utility is available.
7464 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7465 Restore PaX flags to their default. (Bug#11398)
7466
7467 2012-06-03 Chong Yidong <cyd@gnu.org>
7468
7469 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
7470 buffer (Bug#11226).
7471
7472 2012-06-03 Chong Yidong <cyd@gnu.org>
7473
7474 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
7475 (note_mode_line_or_margin_highlight): If there is no help echo,
7476 use mode-line-default-help-echo. Handle the case where the mouse
7477 position is past the end of the mode line string.
7478
7479 * buffer.c (buffer_local_value_1): New function, split from
7480 Fbuffer_local_value; can return Qunbound.
7481 (Fbuffer_local_value): Use it.
7482 (Vmode_line_format): Docstring tweaks.
7483
7484 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
7485
7486 * sysdep.c (system_process_attributes): Improve comment.
7487
7488 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7489
7490 * keyboard.c: Export real-this-command to Elisp.
7491 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
7492 and DEFVAR it. Update all users.
7493
7494 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
7495
7496 * minibuf.c (Fassoc_string): Remove duplicate declaration.
7497
7498 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
7499 Convert pctcpu and pctmem to Lisp float properly.
7500 Let the compiler fold better, as 100.0/0x8000 is exact.
7501
7502 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
7503
7504 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
7505 cons_block.
7506
7507 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
7508
7509 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
7510
7511 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
7512
7513 For a 'struct window', replace some Lisp_Object fields to
7514 bitfields where appropriate, remove unused fields.
7515 * window.h (struct window): Remove unused 'last_mark_x' and
7516 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
7517 change it's type from Lisp_Object to bitfield.
7518 Change type of 'force_start', 'optional_new_start',
7519 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
7520 fields from Lisp_Object to bitfield. Adjust users accordingly.
7521
7522 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
7523
7524 Pacify gcc -Wdouble-precision when using Xaw.
7525 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
7526 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
7527 Use 'float' consistently, rather than 'float' in most places
7528 and 'double' in a couple of places.
7529
7530 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7531
7532 * xdisp.c (handle_stop): Detect whether we have overlay strings
7533 loaded by testing it->current.overlay_string_index to be
7534 non-negative, instead of checking whether n_overlay_strings is
7535 positive. (Bug#11587)
7536
7537 2012-05-31 Chong Yidong <cyd@gnu.org>
7538
7539 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
7540
7541 * doc.c (Fsubstitute_command_keys): Doc fix.
7542
7543 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7544
7545 * search.c (search_buffer): Remove calls to
7546 r_alloc_inhibit_buffer_relocation, as it is now called by
7547 maybe_unify_char, which was the cause of relocation of buffer text
7548 in bug#11519.
7549
7550 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7551
7552 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
7553 for the duration of call to load_charset, to avoid problems with
7554 callers of maybe_unify_char that access buffer text through C
7555 pointers.
7556
7557 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
7558 decrement the inhibition flag, instead of just setting or
7559 resetting it.
7560
7561 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
7562
7563 Remove obsolete '#define static' cruft.
7564 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
7565 This #undef was "temporary" in 2000; it is no longer needed
7566 now that '#define static' has gone away.
7567 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
7568 (gray_bitmap_bits): Remove; no longer needed.
7569 All uses replaced with definiens.
7570 * xterm.c: Include "bitmaps/gray.xbm".
7571
7572 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
7573
7574 Clean up __executable_start, monstartup when --enable-profiling.
7575 The following changes affect the code only when profiling.
7576 * dispnew.c (__executable_start): Rename from safe_bcopy.
7577 Define only on platforms that need it.
7578 * emacs.c: Include <sys/gmon.h> when profiling.
7579 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
7580 (__executable_start): Remove decl, since lisp.h does it now.
7581 (safe_bcopy): Remove decl; no longer has that name.
7582 (main): Coalesce #if into single bit of code, for simplicity.
7583 Cast pointers to uintptr_t, since standard libraries want integers
7584 and not pointers.
7585 * lisp.h (__executable_start): New decl.
7586
7587 2012-05-31 Glenn Morris <rgm@gnu.org>
7588
7589 * image.c (Fimagemagick_types): Doc fix.
7590
7591 2012-05-30 Jim Meyering <meyering@redhat.com>
7592
7593 * callproc.c (Fcall_process_region): Include directory component
7594 in mkstemp error message (Bug#11586).
7595
7596 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
7597
7598 * alloc.c, lisp.h (make_pure_vector): Now static.
7599
7600 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7601
7602 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
7603 Move to byte-run.el.
7604 (Fautoload): Do the hash-doc more carefully.
7605 * data.c (Fdefalias): Purify definition, except for keymaps.
7606 (Qdefun): Move from eval.c.
7607 * lisp.h (Qdefun): Remove.
7608 * lread.c (read1): Tiny simplification.
7609
7610 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7611
7612 Do not create empty overlays with the evaporate property (Bug#9642).
7613 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
7614 Bug#9642, but explicitly check that the buffer the overlay would
7615 be moved to is live and rearrange lines to make sure that errors
7616 will not put the overlay in an inconsistent state.
7617 (Fdelete_overlay): Cosmetics.
7618
7619 2012-05-28 Eli Zaretskii <eliz@gnu.org>
7620
7621 * w32term.c (my_bring_window_to_top): New function.
7622 (x_raise_frame): Use handle returned by DeferWindowPos, which
7623 could be different from the original one.
7624 Call my_bring_window_to_top instead of my_set_foreground_window.
7625 (Bug#11513)
7626
7627 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
7628 by calling BringWindowToTop.
7629
7630 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
7631 (WM_EMACS_END): Increase by one.
7632
7633 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
7634
7635 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
7636 This avoids undefined behavior that might cause the eassert
7637 to not catch an out-of-range value.
7638
7639 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
7640
7641 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
7642 Update dependencies.
7643
7644 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7645
7646 * bidi.c (bidi_mirror_char): Fix last change.
7647
7648 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
7649
7650 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
7651 when referring to sectname field in printf format.
7652
7653 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
7654
7655 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
7656 Only r_alloc_inhibit_buffer_relocation needed to be added;
7657 the others were already declared.
7658
7659 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
7660 before checking whether it's out of range. Put the check inside
7661 eassert. See
7662 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
7663
7664 2012-05-27 Ken Brown <kbrown@cornell.edu>
7665
7666 * callproc.c (Fcall_process): Restore a line that was accidentally
7667 commented out in the 2011-02-13 change (bug#11547).
7668
7669 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7670
7671 * lisp.h [REL_ALLOC]: Add prototypes for external functions
7672 defined on ralloc.c.
7673
7674 * buffer.c [REL_ALLOC]: Remove prototypes of
7675 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
7676 they are now on lisp.h.
7677
7678 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
7679
7680 * search.c (search_buffer): Use it to inhibit relocation of buffer
7681 text while re_search_2 is doing its job, because re_search_2 is
7682 passed C pointers to buffer text. (Bug#11519)
7683
7684 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
7685 Update value to 24.
7686
7687 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
7688 state after an additional call to move_it_in_display_line_to, keep
7689 the values of it->max_ascent and it->max_descent found for the
7690 entire line.
7691 (pos_visible_p): Revert the comparison against bottom_y to what it
7692 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
7693 (Bug#11464)
7694
7695 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
7696
7697 Fix coding-related core dumps with gcc -ftrapv.
7698 The code was computing A - B, where A and B are pointers, and B is
7699 random garbage. This can lead to core dumps on platforms that
7700 have special pointer registers, and it also leads to core dumps on
7701 x86-64 when compiled with gcc -ftrapv. The fix is to compute
7702 A - B only when B is initialized properly.
7703 * coding.c (coding_set_source, coding_set_destination): Return void.
7704 (coding_change_source, coding_change_destinations): New functions,
7705 with the old behaviors of coding_set_source and coding_set_destination.
7706 All callers that need an offset changed to use these new functions.
7707
7708 2012-05-26 Glenn Morris <rgm@gnu.org>
7709
7710 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
7711
7712 2012-05-26 Eli Zaretskii <eliz@gnu.org>
7713
7714 Extend mouse support on W32 text-mode console.
7715 * xdisp.c (draw_row_with_mouse_face):
7716 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
7717
7718 * w32console.c: Include window.h.
7719 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
7720 New functions.
7721 (initialize_w32_display): Initialize mouse-highlight data.
7722
7723 * w32inevt.c: Include termchar.h and window.h.
7724 (do_mouse_event): Support mouse-autoselect-window. When the mouse
7725 moves, call note_mouse_highlight. If help_echo changed, call
7726 gen_help_event to produce help-echo message in the echo area.
7727 Call clear_mouse_face if mouse_face_hidden is set in the mouse
7728 highlight info.
7729
7730 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
7731
7732 * lread.c (read1): Simplify slightly to avoid an overflow warning
7733 with GCC 4.7.0 on x86-64.
7734
7735 2012-05-26 Eli Zaretskii <eliz@gnu.org>
7736
7737 * bidi.c (bidi_mirror_char): Revert last change: an int is
7738 definitely wide enough here.
7739
7740 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
7741
7742 Fix integer width and related bugs (Bug#9874).
7743 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
7744 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
7745 (string_bytes, check_sblock, allocate_string_data):
7746 (compact_small_strings, Fmake_bool_vector, make_string)
7747 (make_unibyte_string, make_multibyte_string)
7748 (make_string_from_bytes, make_specified_string)
7749 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
7750 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
7751 (mark_vectorlike):
7752 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7753 (allocate_pseudovector):
7754 Use int, not EMACS_INT, where int is wide enough.
7755 (inhibit_garbage_collection, Fgarbage_collect):
7756 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7757 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
7758 int might not be wide enough.
7759 (bidi_cache_search, bidi_cache_find, bidi_init_it)
7760 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
7761 (bidi_at_paragraph_end, bidi_find_paragraph_start)
7762 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
7763 (bidi_level_of_next_char, bidi_move_to_visually_next):
7764 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7765 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
7766 (Fkill_buffer, Fset_buffer_major_mode)
7767 (advance_to_char_boundary, Fbuffer_swap_text)
7768 (Fset_buffer_multibyte, overlays_at, overlays_in)
7769 (overlay_touches_p, struct sortvec, record_overlay_string)
7770 (overlay_strings, recenter_overlay_lists)
7771 (adjust_overlays_for_insert, adjust_overlays_for_delete)
7772 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
7773 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
7774 (Foverlay_recenter, last_overlay_modification_hooks_used)
7775 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
7776 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7777 (validate_region): Omit unnecessary test for b <= e,
7778 since that's guaranteed by the previous test.
7779 (adjust_overlays_for_delete): Avoid pos + length overflow.
7780 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
7781 (report_overlay_modification):
7782 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7783 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
7784 Omit pointer cast, which isn't needed anyway, and doesn't work
7785 after the EMACS_INT -> ptrdiff_t change.
7786 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
7787 * buffer.h: Adjust decls to match defn changes elsewhere.
7788 (struct buffer_text, struct buffer):
7789 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7790 Use EMACS_INT, not int, where int might not be wide enough.
7791 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
7792 not int, to avoid needless 32-bit limit on 64-bit hosts.
7793 (exec_byte_code): Use tighter memory-full test, one that checks
7794 for alloca overflow. Don't compute the address of the object just
7795 before an array, as that's not portable. Use EMACS_INT, not
7796 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
7797 * callint.c (Fcall_interactively):
7798 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7799 * callproc.c (call_process_kill, Fcall_process):
7800 Don't assume pid_t fits into an Emacs fixnum.
7801 (call_process_cleanup, Fcall_process, child_setup):
7802 Don't assume pid_t fits into int.
7803 (call_process_cleanup, Fcall_process, delete_temp_file)
7804 (Fcall_process_region):
7805 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7806 (Fcall_process): Simplify handling of volatile integers.
7807 Use int, not EMACS_INT, where int will do.
7808 * casefiddle.c (casify_object, casify_region, operate_on_word)
7809 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
7810 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7811 (casify_object): Avoid integer overflow when overallocating buffer.
7812 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
7813 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
7814 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
7815 * category.h (CATEGORYP): Don't assume arg is nonnegative.
7816 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
7817 integers are now checked earlier. All uses replaced with XINT.
7818 (ccl_driver):
7819 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7820 For CCL_MapSingle, check that content and value are in int range.
7821 (ccl_driver, Fregister_code_conversion_map):
7822 Check that Vcode_version_map_vector is a vector.
7823 (resolve_symbol_ccl_program): Check that vector header is in range.
7824 Always copy the vector, so that we can check its contents reliably
7825 now rather than having to recheck each instruction as it's being
7826 executed. Check that vector words fit in 'int'.
7827 (ccl_get_compiled_code, Fregister_ccl_program)
7828 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
7829 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
7830 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
7831 contents are in range.
7832 (Fccl_execute_on_string): Check that status is in range.
7833 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
7834 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
7835 Accept and return EMACS_INT, not int, because callers can pass values
7836 out of 'int' range.
7837 (c_string_width, strwidth, lisp_string_width, chars_in_text)
7838 (multibyte_chars_in_text, parse_str_as_multibyte)
7839 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
7840 (str_as_unibyte, str_to_unibyte, string_count_byte8)
7841 (string_escape_byte8, Fget_byte):
7842 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7843 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
7844 avoid mishandling large integers.
7845 * character.h: Adjust decls to match defn changes elsewhere.
7846 * charset.c (load_charset_map_from_file, find_charsets_in_text)
7847 (Ffind_charset_region):
7848 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7849 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
7850 (load_charset_map_from_vector, Fdefine_charset_internal):
7851 Don't assume fixnum fits in int.
7852 (load_charset_map_from_vector, Fmap_charset_chars):
7853 Remove now-unnecessary CHECK_NATNUMs.
7854 (Fdefine_charset_internal): Check ranges here, more carefully.
7855 Don't rely on undefined behavior with signed left shift overflow.
7856 Don't assume unsigned int fits into fixnum, or that fixnum fits
7857 into unsigned int. Don't require max_code to be a valid fixnum;
7858 that's not true for gb10830 4-byte on a 32-bit host. Allow
7859 invalid_code to be a cons, for the same reason. Require code_offset
7860 to be a character. Avoid int overflow if max_char is close
7861 to INT_MAX.
7862 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
7863 this is intended anyway and avoids some undefined behavior.
7864 (load_charset_map): Pass unsigned, not int, as 2nd arg of
7865 INDEX_TO_CODE_POINT, as that's what it expects.
7866 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
7867 * charset.h (DECODE_CHAR): Return int, not unsigned;
7868 this is what was intended anyway, and it avoids undefined behavior.
7869 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
7870 integer-overflow issues.
7871 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
7872 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
7873 where the argument is EMACS_INT, and this behavior is not intended.
7874 * chartab.c (Fmake_char_table, Fset_char_table_range)
7875 (uniprop_get_decoder, uniprop_get_encoder):
7876 Don't assume fixnum fits in int.
7877 * cmds.c (move_point): New function, that does the gist of
7878 Fforward_char and Fbackward_char, but does so while checking
7879 for integer overflow more accurately.
7880 (Fforward_char, Fbackward_char): Use it.
7881 (Fforward_line, Fend_of_line, internal_self_insert)
7882 (internal_self_insert):
7883 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7884 Fix a FIXME, by checking for integer overflow when calculating
7885 target_clm and actual_clm.
7886 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
7887 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
7888 (ASSURE_DESTINATION, coding_alloc_by_realloc)
7889 (coding_alloc_by_making_gap, alloc_destination)
7890 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
7891 (encode_coding_utf_16, detect_coding_emacs_mule)
7892 (decode_coding_emacs_mule, encode_coding_emacs_mule)
7893 (detect_coding_iso_2022, decode_coding_iso_2022)
7894 (encode_invocation_designation, encode_designation_at_bol)
7895 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
7896 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
7897 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
7898 (encode_coding_ccl, encode_coding_raw_text)
7899 (detect_coding_charset, decode_coding_charset)
7900 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
7901 (produce_composition, produce_charset, produce_annotation)
7902 (decode_coding, handle_composition_annotation)
7903 (handle_charset_annotation, consume_chars, decode_coding_gap)
7904 (decode_coding_object, encode_coding_object, detect_coding_system)
7905 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
7906 (code_convert_region, code_convert_string)
7907 (Fdefine_coding_system_internal)
7908 (coding_set_source, coding_set_destination):
7909 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7910 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
7911 (Fdefine_coding_system_internal):
7912 Don't assume fixnums fit in int.
7913 (decode_coding_gap, decode_coding_object, encode_coding_object)
7914 (Fread_coding_system, Fdetect_coding_region)
7915 (Funencodable_char_position, Fcheck_coding_systems_region)
7916 (get_translation, handle_composition_annotation, consume_chars):
7917 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7918 (consume_chars): Rewrite to not calculate an address outside buffer.
7919 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
7920 Don't access memory outside of the args array.
7921 (Fdefine_coding_system_internal): Check for charset-id overflow.
7922 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
7923 result of ENCODE_CHAR.
7924 * coding.h: Adjust decls to match defn changes elsewhere.
7925 (struct coding_system):
7926 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7927 * composite.c (get_composition_id, find_composition)
7928 (run_composition_function, update_compositions)
7929 (compose_text, composition_gstring_put_cache)
7930 (composition_gstring_p, composition_gstring_width)
7931 (fill_gstring_header, fill_gstring_body, autocmp_chars)
7932 (composition_compute_stop_pos, composition_reseat_it)
7933 (composition_update_it, struct position_record)
7934 (find_automatic_composition, composition_adjust_point)
7935 (Fcomposition_get_gstring, Ffind_composition_internal):
7936 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7937 (update_compositions):
7938 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7939 * composite.h: Adjust decls to match defn changes elsewhere.
7940 (struct composition):
7941 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7942 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
7943 Do not attempt to compute the address of the object just before a
7944 buffer; this is not portable.
7945 (Faref, Faset):
7946 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7947 (Faset): Use int, not EMACS_INT, where int is wide enough.
7948 (Fstring_to_number): Don't assume fixnums fit in int.
7949 (Frem): Don't assume arg is nonnegative.
7950 * dbusbind.c (xd_append_arg): Check for integers out of range.
7951 (Fdbus_call_method): Don't overflow the timeout int.
7952 (extract_signed, extract_unsigned): New functions.
7953 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
7954 (xd_get_connection_references): Return ptrdiff_t, not int.
7955 All uses changed.
7956 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
7957 (xd_read_message_1):
7958 Use int, not unsigned, where the dbus API uses int.
7959 (Fdbus_message_internal): Don't overflow mtype.
7960 (syms_of_dbusbind): Allocate right-sized buffer for integers.
7961 * dired.c (directory_files_internal, file_name_completion, scmp)
7962 (file_name_completion_stat):
7963 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7964 (file_name_completion): Don't overflow matchcount.
7965 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
7966 * dispextern.h: Adjust decls to match defn changes elsewhere.
7967 (struct text_pos, struct glyph, struct bidi_saved_info)
7968 (struct bidi_string_data, struct bidi_it, struct composition_it)
7969 (struct it):
7970 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7971 (struct display_pos, struct composition_it, struct it):
7972 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7973 * dispnew.c (increment_matrix_positions)
7974 (increment_row_positions, mode_line_string)
7975 (marginal_area_string):
7976 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7977 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
7978 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7979 (duration_to_sec_usec): New function, to check for overflow better.
7980 (Fsleep_for, sit_for): Use it.
7981 * doc.c (get_doc_string, store_function_docstring):
7982 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7983 (get_doc_string, Fsnarf_documentation):
7984 Use int, not EMACS_INT, where int is wide enough.
7985 (get_doc_string):
7986 Use SAFE_ALLOCA, not alloca.
7987 Check for overflow when converting EMACS_INT to off_t.
7988 * doprnt.c (doprnt):
7989 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7990 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
7991 Don't assume uid_t fits into fixnum.
7992 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
7993 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
7994 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
7995 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
7996 (general_insert_function)
7997 (Finsert_char, make_buffer_string, make_buffer_string_both)
7998 (update_buffer_properties, Fbuffer_substring)
7999 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
8000 (Fsubst_char_in_region, check_translation)
8001 (Ftranslate_region_internal, save_restriction_restore, Fformat)
8002 (transpose_markers, Ftranspose_regions):
8003 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8004 (clip_to_bounds): Move to lisp.h as an inline function).
8005 (Fconstrain_to_field): Don't assume integers are nonnegative.
8006 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
8007 (Fsubst_char_in_region, Fsave_restriction):
8008 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8009 (Femacs_pid): Don't assume pid_t fits into fixnum.
8010 (lo_time): Use int, not EMACS_INT, when int suffices.
8011 (lisp_time_argument): Check for usec out of range.
8012 (Fencode_time): Don't assume fixnum fits in int.
8013 (Fuser_login_name, Fuser_full_name): Signal an error
8014 if a uid argument is out of range, rather than relying on
8015 undefined behavior.
8016 (Fformat_time_string): Remove now-unnecessary check.
8017 lisp_time_argument checks for out-of-range usec now.
8018 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
8019 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
8020 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
8021 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
8022 (init_cmdargs, Fdump_emacs):
8023 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8024 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
8025 the bottom (typically) 32 bits of the fixnum.
8026 * eval.c (specpdl_size, call_debugger):
8027 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8028 (when_entered_debugger, Fbacktrace_debug):
8029 Don't assume fixnum can fit in int.
8030 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
8031 the object just before a buffer; this is not portable.
8032 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
8033 (grow_specpdl, unbind_to):
8034 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8035 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
8036 (grow_specpdl): Simplify allocation by using xpalloc.
8037 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
8038 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
8039 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
8040 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8041 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
8042 (a_write, e_write):
8043 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8044 (Fcopy_file, non_regular_nbytes, read_non_regular)
8045 (Finsert_file_contents):
8046 Use int, not EMACS_INT, where int is wide enough.
8047 (READ_BUF_SIZE): Verify that it fits in int.
8048 (Finsert_file_contents): Check that counts are in proper range,
8049 rather than assuming fixnums fit into ptrdiff_t etc.
8050 Don't assume fixnums fit into int.
8051 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
8052 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
8053 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
8054 (string_char_to_byte, string_byte_to_char)
8055 (string_make_multibyte, string_to_multibyte)
8056 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
8057 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
8058 (substring_both, Fdelete, internal_equal, Ffillarray)
8059 (Fclear_string, mapcar1)
8060 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
8061 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
8062 (larger_vector, make_hash_table, maybe_resize_hash_table)
8063 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
8064 (Fmaphash, secure_hash):
8065 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8066 (concat): Check for string index and length overflow.
8067 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
8068 (Frequire):
8069 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8070 (larger_vector): New API (vec, incr_min, size_max) replaces old
8071 one (vec, new_size, init). This catches size overflow.
8072 INIT was removed because it was always Qnil.
8073 All callers changed.
8074 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
8075 the upper bound on a hash table index size.
8076 (make_hash_table, maybe_resize_hash_table): Use it.
8077 (secure_hash): Computer start_byte and end_byte only after
8078 they're known to be in ptrdiff_t range.
8079 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
8080 (Ffont_get_glyphs, Ffont_at):
8081 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8082 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
8083 (Flist_fonts, Fopen_font):
8084 Don't assume fixnum can fit in int.
8085 (check_gstring): Don't assume index can fit in int.
8086 (font_match_p): Check that fixnum is a character, not a nonnegative
8087 fixnum, since the later code needs to stuff it into an int.
8088 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
8089 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
8090 conversion overflow issues.
8091 (Fopen_font): Check for integer out of range.
8092 (Ffont_get_glyphs): Don't assume index can fit in int.
8093 * font.h: Adjust decls to match defn changes elsewhere.
8094 * fontset.c (reorder_font_vector): Redo score calculation to avoid
8095 integer overflow.
8096 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
8097 printmax_t, where ptrdiff_t is wide enough.
8098 (Finternal_char_font):
8099 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8100 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
8101 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
8102 (Fset_frame_position, x_set_frame_parameters)
8103 (x_set_line_spacing, x_set_border_width)
8104 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
8105 Check that fixnums are in proper range for system types.
8106 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
8107 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8108 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
8109 Use SAFE_ALLOCA_LISP, not alloca.
8110 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
8111 intptr_t is wide enough.
8112 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
8113 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
8114 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
8115 Check for fixnum out of range.
8116 * ftfont.c (ftfont_list): Don't assume index fits in int.
8117 Check that fixnums are in proper range for system types.
8118 (ftfont_shape_by_flt):
8119 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8120 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
8121 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8122 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
8123 Check that fixnums are in proper range for system types.
8124 * gnutls.h: Adjust decls to match defn changes elsewhere.
8125 * gtkutil.c (xg_dialog_run):
8126 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8127 (update_frame_tool_bar):
8128 Check that fixnums are in proper range for system types.
8129 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
8130 (lookup_image): Check that fixnums are in range for system types.
8131 * indent.c (last_known_column, last_known_column_point):
8132 (current_column_bol_cache):
8133 (skip_invisible, current_column, check_display_width):
8134 (check_display_width, scan_for_column, current_column_1)
8135 (Findent_to, Fcurrent_indentation, position_indentation)
8136 (indented_beyond_p, Fmove_to_column, compute_motion):
8137 (Fcompute_motion, Fvertical_motion):
8138 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8139 (last_known_column_modified): Use EMACS_INT, not int.
8140 (check_display_width):
8141 (Fcompute_motion):
8142 Check that fixnums and floats are in proper range for system types.
8143 (compute_motion): Don't assume index or fixnum fits in int.
8144 (compute_motion, Fcompute_motion):
8145 Use int, not EMACS_INT, when it is wide enough.
8146 (vmotion): Omit local var start_hpos that is always 0; that way
8147 we don't need to worry about overflow in expressions involving it.
8148 * indent.h: Adjust decls to match defn changes elsewhere.
8149 (struct position):
8150 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8151 Use int, not EMACS_INT, where int is wide enough.
8152 Remove unused members ovstring_chars_done and tab_offset;
8153 all uses removed.
8154 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
8155 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
8156 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
8157 (make_gap, copy_text, insert, insert_and_inherit)
8158 (insert_before_markers, insert_before_markers_and_inherit)
8159 (insert_1, count_combining_before, count_combining_after)
8160 (insert_1_both, insert_from_string)
8161 (insert_from_string_before_markers, insert_from_string_1)
8162 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
8163 (adjust_after_replace, adjust_after_insert, replace_range)
8164 (replace_range_2, del_range, del_range_1, del_range_byte)
8165 (del_range_both, del_range_2, modify_region)
8166 (prepare_to_modify_buffer, signal_before_change)
8167 (signal_after_change, Fcombine_after_change_execute):
8168 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8169 * intervals.c (traverse_intervals, rotate_right, rotate_left)
8170 (balance_an_interval, split_interval_right, split_interval_left)
8171 (find_interval, next_interval, update_interval)
8172 (adjust_intervals_for_insertion, delete_node, delete_interval)
8173 (interval_deletion_adjustment, adjust_intervals_for_deletion)
8174 (static_offset_intervals, offset_intervals)
8175 (merge_interval_right, merge_interval_left, make_new_interval)
8176 (graft_intervals_into_buffer, temp_set_point_both)
8177 (temp_set_point, set_point, adjust_for_invis_intang)
8178 (set_point_both, move_if_not_intangible, get_property_and_range)
8179 (get_local_map, copy_intervals, copy_intervals_to_string)
8180 (compare_string_intervals, set_intervals_multibyte_1):
8181 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8182 * intervals.h: Adjust decls to match defn changes elsewhere.
8183 (struct interval):
8184 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8185 * keyboard.c (this_command_key_count, this_single_command_key_start)
8186 (before_command_key_count, before_command_echo_length, echo_now)
8187 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
8188 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
8189 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
8190 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
8191 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8192 (last_non_minibuf_size, last_point_position, echo_truncate)
8193 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
8194 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
8195 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
8196 (stuff_buffered_input):
8197 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8198 (last_auto_save, command_loop_1, read_char):
8199 Use EMACS_INT, not int, to avoid integer overflow.
8200 (record_char): Avoid overflow in total_keys computation.
8201 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
8202 * keyboard.h: Adjust decls to match defn changes elsewhere.
8203 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
8204 (Fkey_description, Fdescribe_vector, Flookup_key):
8205 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8206 (click_position): New function, to check that positions are in range.
8207 (Fcurrent_active_maps):
8208 (describe_command):
8209 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8210 (Faccessible_keymaps, Fkey_description):
8211 (preferred_sequence_p):
8212 Don't assume fixnum can fit into int.
8213 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
8214 Check for integer overflow in size calculations.
8215 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
8216 avoid mishandling large integers.
8217 * lisp.h: Adjust decls to match defn changes elsewhere.
8218 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
8219 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
8220 (struct Lisp_Marker):
8221 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8222 (clip_to_bounds): Now an inline function, moved here from editfns.c.
8223 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
8224 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
8225 All callers changed.
8226 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
8227 Assume the arg has valid form, since it always does.
8228 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
8229 unsigned integer system type.
8230 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
8231 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
8232 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8233 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
8234 (duration_to_sec_usec): New decl.
8235 * lread.c (read_from_string_index, read_from_string_index_byte)
8236 (read_from_string_limit, readchar, unreadchar, openp)
8237 (read_internal_start, read1, oblookup):
8238 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8239 (Fload, readevalloop, Feval_buffer, Feval_region):
8240 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8241 (openp): Check for out-of-range argument to 'access'.
8242 (read1): Use int, not EMACS_INT, where int is wide enough.
8243 Don't assume fixnum fits into int.
8244 Fix off-by-one error that can read outside a buffer.
8245 (read_filtered_event): Use duration_to_sec_usec
8246 to do proper overflow checking on durations.
8247 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
8248 in size calculation.
8249 (Fexecute_kbd_macro):
8250 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8251 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
8252 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
8253 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
8254 (set_marker_both, set_marker_restricted_both, marker_position)
8255 (marker_byte_position, Fbuffer_has_markers_at):
8256 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8257 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
8258 * menu.c (ensure_menu_items): Rename from grow_menu_items.
8259 It now merely ensures that the menu is large enough, without
8260 necessarily growing it, as this avoids some integer overflow issues.
8261 All callers changed.
8262 (keymap_panes, parse_single_submenu, Fx_popup_menu):
8263 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8264 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
8265 Use SAFE_ALLOCA_LISP, not alloca.
8266 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
8267 to EMACS_INT. Check that fixnums are in proper range for system types.
8268 * minibuf.c (minibuf_prompt_width, string_to_object)
8269 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
8270 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
8271 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8272 (get_minibuffer, read_minibuf_unwind):
8273 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8274 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
8275 this simplifies overflow checking. All callers changed.
8276 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
8277 (Ftest_completion):
8278 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8279 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
8280 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
8281 Check that fixnums are in proper range for system types.
8282 (Fx_create_frame, Fx_show_tip):
8283 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8284 * nsfont.m (ns_findfonts, nsfont_list_family):
8285 Don't assume fixnum fits in long.
8286 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
8287 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8288 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
8289 wide enough.
8290 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
8291 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8292 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
8293 (PRINTDECLARE, PRINTPREPARE):
8294 (strout, print_string):
8295 (print, print_preprocess, print_check_string_charset_prop)
8296 (print_object):
8297 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8298 (PRINTDECLARE):
8299 (temp_output_buffer_setup, Fprin1_to_string, print_object):
8300 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8301 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
8302 (printchar, strout): Use xpalloc to catch size calculation overflow.
8303 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
8304 (print_error_message): Use SAFE_ALLOCA, not alloca.
8305 (print_object): Use int, not EMACS_INT, where int is wide enough.
8306 (print_depth, new_backquote_output, print_number_index):
8307 Use ptrdiff_t, not int, where int might not be wide enough.
8308 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
8309 (Fset_process_window_size, Fformat_network_address)
8310 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
8311 (sigchld_handler):
8312 Check that fixnums are in proper range for system types.
8313 (Fsignal_process): Simplify by avoiding a goto.
8314 Check for process-ids out of pid_t range rather than relying on
8315 undefined behavior.
8316 (process_tick, update_tick): Use EMACS_INT, not int.
8317 (Fformat_network_address, read_process_output, send_process)
8318 (Fprocess_send_region, status_notify):
8319 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8320 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
8321 (wait_reading_process_output, read_process_output, exec_sentinel):
8322 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8323 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
8324 (Faccept_process_output): Use duration_to_sec_usec to do proper
8325 overflow checking on durations.
8326 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
8327 Don't assume pid_t fits in int.
8328 * process.h (struct Lisp_Process): Members tick and update_tick
8329 are now of type EMACS_INT, not int.
8330 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
8331 configured --with-wide-int.
8332 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
8333 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
8334 * search.c (looking_at_1, string_match_1):
8335 (fast_string_match, fast_c_string_match_ignore_case)
8336 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
8337 (scan_newline, find_before_next_newline, search_command)
8338 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
8339 (set_search_regs, wordify):
8340 (Freplace_match):
8341 (Fmatch_data):
8342 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8343 (string_match_1, search_buffer, set_search_regs):
8344 (Fmatch_data):
8345 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8346 (wordify): Check for overflow in size calculation.
8347 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
8348 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
8349 Check that fixnums are in proper range for system types.
8350 * sound.c (struct sound_device)
8351 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
8352 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8353 (Fplay_sound_internal):
8354 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8355 * syntax.c (struct lisp_parse_state, find_start_modiff)
8356 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
8357 (Fparse_partial_sexp):
8358 Don't assume fixnums can fit in int.
8359 (struct lisp_parse_state, find_start_pos, find_start_value)
8360 (find_start_value_byte, find_start_begv)
8361 (update_syntax_table, char_quoted, dec_bytepos)
8362 (find_defun_start, prev_char_comend_first, back_comment):
8363 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
8364 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
8365 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8366 (Finternal_describe_syntax_value): Check that match_lisp is a
8367 character, not an integer, since the code stuffs it into int.
8368 (scan_words, scan_sexps_forward):
8369 Check that fixnums are in proper range for system types.
8370 (Fforward_word):
8371 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8372 (scan_sexps_forward):
8373 Use CHARACTERP, not INTEGERP, since the value must fit into int.
8374 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
8375 * syntax.h: Adjust decls to match defn changes elsewhere.
8376 (struct gl_state_s):
8377 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8378 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
8379 MOST_POSITIVE_FIXNUM.
8380 * sysdep.c (wait_for_termination_1, wait_for_termination)
8381 (interruptible_wait_for_termination, mkdir):
8382 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
8383 (emacs_read, emacs_write):
8384 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8385 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
8386 and double all fit in int.
8387 * term.c (set_tty_color_mode):
8388 Check that fixnums are in proper range for system types.
8389 * termhooks.h (struct input_event):
8390 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8391 * textprop.c (validate_interval_range, interval_of)
8392 (Fadd_text_properties, set_text_properties_1)
8393 (Fremove_text_properties, Fremove_list_of_text_properties)
8394 (Ftext_property_any, Ftext_property_not_all)
8395 (copy_text_properties, text_property_list, extend_property_ranges)
8396 (verify_interval_modification):
8397 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8398 (Fnext_single_char_property_change)
8399 (Fprevious_single_char_property_change):
8400 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8401 (copy_text_properties):
8402 Check for integer overflow in index calculation.
8403 * undo.c (last_boundary_position, record_point, record_insert)
8404 (record_delete, record_marker_adjustment, record_change)
8405 (record_property_change):
8406 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8407 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
8408 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8409 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
8410 (Fx_hide_tip, Fx_file_dialog):
8411 * w32menu.c (set_frame_menubar):
8412 Use ptrdiff_t, not int, for consistency with rest of code.
8413 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
8414 (select_window, Fdelete_other_windows_internal)
8415 (window_scroll_pixel_based, window_scroll_line_based)
8416 (Frecenter, Fset_window_configuration):
8417 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8418 (Fset_window_hscroll, run_window_configuration_change_hook)
8419 (set_window_buffer, temp_output_buffer_show, scroll_command)
8420 (Fscroll_other_window, Frecenter):
8421 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8422 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
8423 Don't assume fixnum fits in int.
8424 (Fset_window_scroll_bars):
8425 Check that fixnums are in proper range for system types.
8426 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
8427 (string_pos, c_string_pos, number_of_chars, init_iterator)
8428 (in_ellipses_for_invisible_text_p, init_from_display_pos)
8429 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
8430 (compute_display_string_end, handle_face_prop)
8431 (face_before_or_after_it_pos, handle_invisible_prop)
8432 (handle_display_prop, handle_display_spec, handle_single_display_spec)
8433 (display_prop_intangible_p, string_buffer_position_lim)
8434 (string_buffer_position, handle_composition_prop, load_overlay_strings)
8435 (get_overlay_strings_1, get_overlay_strings)
8436 (iterate_out_of_display_property, forward_to_next_line_start)
8437 (back_to_previous_visible_line_start, reseat, reseat_to_string)
8438 (get_next_display_element, set_iterator_to_next)
8439 (get_visually_first_element, compute_stop_pos_backwards)
8440 (handle_stop_backwards, next_element_from_buffer)
8441 (move_it_in_display_line_to, move_it_in_display_line)
8442 (move_it_to, move_it_vertically_backward, move_it_by_lines)
8443 (add_to_log, message_dolog, message_log_check_duplicate)
8444 (message2, message2_nolog, message3, message3_nolog
8445 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
8446 (current_message_1, truncate_echo_area, truncate_message_1)
8447 (set_message, set_message_1, store_mode_line_noprop)
8448 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
8449 (text_outside_line_unchanged_p, check_point_in_composition)
8450 (reconsider_clip_changes)
8451 (redisplay_internal, set_cursor_from_row, try_scrolling)
8452 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
8453 (redisplay_window, find_last_unchanged_at_beg_row)
8454 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
8455 (trailing_whitespace_p, find_row_edges, display_line)
8456 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
8457 (display_mode_element, store_mode_line_string)
8458 (pint2str, pint2hrstr, decode_mode_spec)
8459 (display_count_lines, display_string, draw_glyphs)
8460 (x_produce_glyphs, x_insert_glyphs)
8461 (rows_from_pos_range, mouse_face_from_buffer_pos)
8462 (fast_find_string_pos, mouse_face_from_string_pos)
8463 (note_mode_line_or_margin_highlight, note_mouse_highlight):
8464 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8465 (safe_call, init_from_display_pos, handle_fontified_prop)
8466 (handle_single_display_spec, load_overlay_strings)
8467 (with_echo_area_buffer, setup_echo_area_for_printing)
8468 (display_echo_area, echo_area_display)
8469 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
8470 (update_tool_bar, hscroll_window_tree, redisplay_internal)
8471 (redisplay_window, dump_glyph_row, display_mode_line)
8472 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
8473 (handle_display_spec, display_prop_string_p):
8474 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8475 (handle_single_display_spec, build_desired_tool_bar_string)
8476 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
8477 (get_specified_cursor_type):
8478 Check that fixnums are in proper range for system types.
8479 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
8480 (Flookup_image_map):
8481 Don't assume fixnums fit in int.
8482 (compare_overlay_entries):
8483 Avoid mishandling comparisons due to subtraction overflow.
8484 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
8485 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
8486 (handle_tool_bar_click):
8487 Use int, not unsigned, since we prefer signed and the signedness
8488 doesn't matter here.
8489 (get_next_display_element, next_element_from_display_vector):
8490 Use int, not EMACS_INT, when int is wide enough.
8491 (start_hourglass): Use duration_to_sec_usec to do proper
8492 overflow checking on durations.
8493 * xfaces.c (Fbitmap_spec_p):
8494 Check that fixnums are in proper range for system types.
8495 (compare_fonts_by_sort_order):
8496 Avoid mishandling comparisons due to subtraction overflow.
8497 (Fx_family_fonts, realize_basic_faces):
8498 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8499 (Fx_family_fonts):
8500 Don't assume fixnum fits in int.
8501 Use SAFE_ALLOCA_LISP, not alloca.
8502 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
8503 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
8504 (face_at_buffer_position, face_for_overlay_string)
8505 (face_at_string_position):
8506 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8507 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
8508 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
8509 (Fx_show_tip):
8510 Check that fixnums are in proper range for system types.
8511 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
8512 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
8513 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8514 (Fx_change_window_property): Don't assume fixnums fit in int.
8515 * xfont.c (xfont_chars_supported):
8516 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8517 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
8518 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
8519 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8520 * xml.c (parse_region):
8521 * xrdb.c (magic_file_p):
8522 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8523 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
8524 (x_get_local_selection, x_reply_selection_request)
8525 (x_handle_selection_request, wait_for_property_change):
8526 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8527 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
8528 short is wide enough.
8529 (x_send_client_event): Don't assume fixnum fits in int.
8530 * xterm.c (x_x_to_emacs_modifiers):
8531 Don't assume EMACS_INT overflows nicely into int.
8532 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
8533 may come from Lisp.
8534 (handle_one_xevent): NATNUMP can eval its arg twice.
8535 (x_connection_closed):
8536 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8537 * xterm.h: Adjust decls to match defn changes elsewhere.
8538 (struct scroll_bar): Use struct vectorlike_header
8539 rather than rolling our own approximation.
8540 (SCROLL_BAR_VEC_SIZE): Remove; not used.
8541
8542 2012-05-25 Glenn Morris <rgm@gnu.org>
8543
8544 * lisp.mk (lisp): Update for more files being compiled now.
8545
8546 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8547
8548 * lread.c: Remove `read_pure' which makes no difference.
8549 (read_pure): Remove var.
8550 (unreadpure): Remove function.
8551 (readevalloop): Don't call read_list with -1 flag.
8552 (read1, read_vector): Don't test read_pure any more.
8553 (read_list): Simplify.
8554
8555 * fileio.c, character.h: Minor style tweaks.
8556
8557 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
8558
8559 * window.h (clip_changed): Remove useless declaration.
8560
8561 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
8562
8563 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
8564 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
8565
8566 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
8567
8568 Remove src/m/*.
8569 This directory predates autoconf and is no longer needed nowadays.
8570 Move its few remaining bits of functionality to where they're needed.
8571 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
8572 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
8573 * m/template.h: Remove.
8574 * Makefile.in (M_FILE): Remove. All uses removed.
8575 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
8576 * lisp.h (USE_LSB_TAG):
8577 * mem-limits.h (EXCEEDS_LISP_PTR):
8578 Use VAL_MAX, not VALBITS, in #if.
8579 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
8580 (EMACS_UINT): Define unconditionally now.
8581 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
8582 (BITS_PER_EMACS_INT): New constants, replacing
8583 what used to be in config.h, but not useful in #if.
8584 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
8585 define them any more.
8586 (VAL_MAX): New macro.
8587 (VALMASK): Use it.
8588 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
8589 BITS_PER_EMACS_INT, in #if.
8590 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
8591 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
8592 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
8593 * s/ms-w32.h (DATA_START):
8594 Move here from removed file m/intel386.h.
8595 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
8596 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
8597
8598 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
8599
8600 Assume C89 or later.
8601 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
8602 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
8603 (xrealloc):
8604 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
8605 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
8606 * textprop.c, tparam.c (NULL): Remove.
8607 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
8608 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
8609 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
8610 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
8611 * xterm.c (input_signal_count): Assume volatile works.
8612
8613 2012-05-21 Ken Brown <kbrown@cornell.edu>
8614
8615 * xgselect.c (xg_select): Fix first argument in call to 'select'
8616 (bug#11508).
8617
8618 2012-05-20 Ken Brown <kbrown@cornell.edu>
8619
8620 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
8621 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
8622
8623 2012-05-19 Ken Brown <kbrown@cornell.edu>
8624
8625 * xfns.c (x_in_use): Remove `static' qualifier.
8626 * xterm.h (x_in_use): Declare.
8627 * xgselect.c: Include xterm.h.
8628 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
8629 and `display_arg' (bug#9754).
8630
8631 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
8632
8633 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
8634
8635 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
8636 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
8637
8638 2012-05-18 Eli Zaretskii <eliz@gnu.org>
8639
8640 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
8641
8642 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
8643 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
8644
8645 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
8646 reference to image_cache->refcount.
8647 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
8648
8649 2012-05-17 Juri Linkov <juri@jurta.org>
8650
8651 * search.c (Fword_search_regexp, Fword_search_backward)
8652 (Fword_search_forward, Fword_search_backward_lax)
8653 (Fword_search_forward_lax): Move functions to isearch.el
8654 (bug#10145, bug#11381).
8655
8656 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
8657
8658 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
8659
8660 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
8661
8662 * lread.c (init_obarray): Declare Qt and Qnil as special.
8663
8664 2012-05-14 Glenn Morris <rgm@gnu.org>
8665
8666 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
8667 Put "libexec" before "bin", for the sake of init_callproc_1.
8668
8669 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
8670
8671 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
8672
8673 * unexaix.c: Port to more-recent AIX compilers.
8674 (report_error, report_error_1, make_hdr, copy_sym)
8675 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
8676 Make arguments const char *, not char *, to avoid violations of C
8677 standard and to fix some AIX warnings reported by Gilles Pion.
8678
8679 2012-05-14 Eli Zaretskii <eliz@gnu.org>
8680
8681 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
8682 already have overlays loaded.
8683 (handle_single_display_spec): Before returning without displaying
8684 fringe bitmap, synchronize the bidi iterator with the main display
8685 iterator, by calling iterate_out_of_display_property.
8686 (iterate_out_of_display_property): Detect buffer iteration by
8687 testing that it->string is a Lisp string.
8688 (get_next_display_element): When the current object is exhausted,
8689 and there's something on it->stack, call set_iterator_to_next to
8690 proceed with what's on the stack, instead of returning zero.
8691 (set_iterator_to_next): If called at the end of a Lisp string,
8692 proceed to consider_string_end without incrementing string
8693 position. Don't increment display vector index past the end of
8694 the display vector. (Bug#11417)
8695 (pos_visible_p): Don't report a position visible when move_it_to
8696 stopped at the last line of window, which happens to be scanned
8697 backwards by the bidi iteration. (Bug#11464)
8698
8699 2012-05-14 Eli Zaretskii <eliz@gnu.org>
8700
8701 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
8702 and right-margin display specs even if the spec is invalid or we
8703 are on a TTY, and thus unable to display on the fringes.
8704 That's because the text with the property will not be displayed anyway,
8705 so we need to signal to the caller that this is a "replacing"
8706 display spec. This fixes display when the spec is invalid or we
8707 are on a TTY.
8708
8709 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
8710
8711 * unexaix.c (make_hdr): Fix typo in prototype.
8712 This bug broke the build on AIX. Problem reported by Gilles Pion.
8713
8714 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
8715
8716 * keyboard.c (kbd_buffer_get_event): Read special events also in
8717 batch mode. (Bug#11415)
8718
8719 2012-05-12 Glenn Morris <rgm@gnu.org>
8720
8721 * ns.mk: Update for ns_appbindir no longer having trailing "/".
8722
8723 2012-05-12 Eli Zaretskii <eliz@gnu.org>
8724
8725 * lisp.mk (lisp): Add newcomment.elc.
8726
8727 2012-05-12 Glenn Morris <rgm@gnu.org>
8728
8729 * Makefile.in (MKDIR_P): New, set by configure.
8730 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
8731
8732 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
8733
8734 Remove unused function hourglass_started.
8735 * dispextern.h (hourglass_started):
8736 * w32fns.c (hourglass_started):
8737 * xdisp.c (hourglass_started): Remove.
8738
8739 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
8740
8741 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
8742 Update dependencies.
8743
8744 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
8745
8746 * xgselect.c (xg_select): Put maxfds+1 into a var.
8747 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
8748
8749 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
8750
8751 2012-05-10 Dave Abrahams <dave@boostpro.com>
8752
8753 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
8754 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
8755
8756 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
8757
8758 * dbusbind.c (xd_registered_buses): New internal Lisp object.
8759 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
8760 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
8761 Initialize xd_registered_buses.
8762
8763 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
8764
8765 Untag more efficiently if USE_LSB_TAG.
8766 This is based on a proposal by YAMAMOTO Mitsuharu in
8767 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
8768 For an admittedly artificial (nth 8000 longlist) benchmark on
8769 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
8770 Emacs's overall text size by 1%.
8771 * lisp.h (XUNTAG): New macro.
8772 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
8773 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
8774 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
8775 * eval.c (Fautoload):
8776 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
8777 * frame.h (XFRAME): Use XUNTAG.
8778
8779 Port recent dbusbind.c changes to 32-bit --with-wide-int.
8780 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
8781 Remove unportable assumptions about print widths of types like
8782 dbus_uint32_t.
8783 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
8784 intptr_t when converting between pointer and integer, to avoid GCC
8785 warnings about wrong width.
8786
8787 2012-05-09 Eli Zaretskii <eliz@gnu.org>
8788
8789 * w32proc.c (new_child): Force Windows to reserve only 64KB of
8790 stack for each reader_thread, instead of defaulting to 8MB
8791 determined by the linker. This avoids failures in creating
8792 subprocesses on Windows 7, see the discussion in this thread:
8793 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
8794
8795 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
8796
8797 Fix up display of the *Minibuf-0* buffer in the mini window.
8798 * keyboard.c (read_char): Don't clear the echo area if there's no
8799 message to clear.
8800 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
8801 contents of *Minibuf-0*) if there's no message displayed in its stead.
8802
8803 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
8804
8805 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
8806 batch mode.
8807
8808 2012-05-06 Chong Yidong <cyd@gnu.org>
8809
8810 * lisp.mk (lisp): Update.
8811
8812 2012-05-05 Jim Meyering <meyering@redhat.com>
8813
8814 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
8815
8816 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
8817
8818 * data.c (PUT_ERROR): New macro.
8819 (syms_of_data): Use it. Add new error type `user-error'.
8820 * undo.c (user_error): New function.
8821 (Fprimitive_undo): Use it.
8822 * print.c (print_error_message): Adjust print style for `user-error'.
8823 * keyboard.c (user_error): New function.
8824 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
8825
8826 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
8827
8828 Do not limit current-time-string to years 1000..9999.
8829 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
8830 (Fcurrent_time_string): Support any year that is supported by the
8831 underlying localtime representation. Don't use asctime, as it
8832 has undefined behavior for years outside the range -999..9999.
8833
8834 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
8835
8836 Fix race conditions involving setenv, gmtime, localtime, asctime.
8837 Without this fix, interrupts could mess up code that uses these
8838 nonreentrant functions, since setting TZ invalidates existing
8839 tm_zone or tzname values, and since most of these functions return
8840 pointers to static storage.
8841 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
8842 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
8843 Grow the critical sections to include not just invoking
8844 localtime/gmtime, but also accessing these functions' results
8845 including their tm_zone values if any, and any related TZ setting.
8846 (format_time_string): Last arg is now struct tm *, not struct tm **,
8847 so that the struct tm is saved in the critical section.
8848 All callers changed. Simplify allocation of initial buffer, partly
8849 motivated by the fact that memory allocation needs to be outside
8850 the critical section.
8851
8852 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
8853
8854 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
8855 with RESET_INTERVAL.
8856
8857 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
8858 Remove duplicated buffer name initialization.
8859
8860 2012-05-02 Jim Meyering <jim@meyering.net>
8861
8862 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
8863
8864 * xfns.c (x_window): Use xstrdup (Bug#11375).
8865
8866 2012-05-02 Eli Zaretskii <eliz@gnu.org>
8867
8868 * xdisp.c (pos_visible_p): If already at a newline from the
8869 display string before the 'while' loop, don't walk back the glyphs
8870 from it3.glyph_row. Solves assertion violation when the display
8871 string begins with a newline (egg.el). (Bug#11367)
8872
8873 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
8874
8875 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
8876 Move to simple.el.
8877
8878 2012-05-01 Glenn Morris <rgm@gnu.org>
8879
8880 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
8881 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
8882 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
8883 All were removed before 23.1.
8884
8885 * dispnew.c: Remove HAVE_LIBNCURSES test;
8886 it is always true on relevant platforms.
8887
8888 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
8889 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
8890
8891 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
8892
8893 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
8894
8895 * .gdbinit (xpr): Remove checks for no longer existing misc types.
8896 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
8897 Remove.
8898
8899 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
8900
8901 Do not avoid creating empty evaporating overlays (Bug#9642).
8902 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
8903 That is, do not delete an evaporating overlay if it becomes
8904 empty after its bounds are adjusted to fit within its buffer.
8905 This fix caused other problems, and I'm reverting it until we get
8906 to the bottom of them.
8907
8908 2012-04-27 Chong Yidong <cyd@gnu.org>
8909
8910 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
8911
8912 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8913
8914 * xdisp.c (pos_visible_p): If the window start position is beyond
8915 ZV, start the display from buffer beginning. Prevents assertion
8916 violation in init_iterator when the minibuffer window is scrolled
8917 via the scroll bar.
8918
8919 * window.c (window_scroll_pixel_based): Likewise.
8920
8921 2012-04-27 Chong Yidong <cyd@gnu.org>
8922
8923 * keymap.c (where_is_internal): Doc fix (Bug#10872).
8924
8925 2012-04-27 Glenn Morris <rgm@gnu.org>
8926
8927 * fileio.c (Fcopy_file, Fset_file_selinux_context):
8928 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
8929
8930 2012-04-27 Eli Zaretskii <eliz@gnu.org>
8931
8932 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
8933 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
8934
8935 2012-04-26 Eli Zaretskii <eliz@gnu.org>
8936
8937 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
8938 display element, check also the underlying string or buffer
8939 character. (Bug#11341)
8940
8941 * w32menu.c: Include w32heap.h.
8942 (add_menu_item): If the call to AppendMenuW (via
8943 unicode_append_menu) fails, disable Unicode menus only if we are
8944 running on Windows 9X/Me.
8945
8946 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
8947
8948 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
8949 (xgetint): Add missing shift for LSB tags.
8950
8951 2012-04-24 Martin Rudalics <rudalics@gmx.at>
8952
8953 * keyboard.c (read_char): Don't wipe echo area for select window
8954 events: These might get delayed via `mouse-autoselect-window'
8955 (Bug#11304).
8956
8957 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
8958
8959 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
8960 manipulation of :loaded-from data.
8961
8962 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
8963
8964 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
8965 now a cons (bug#11311).
8966
8967 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
8968
8969 Do not create empty overlays with the evaporate property (Bug#9642).
8970 * buffer.c (Fmove_overlay): Delete an evaporating overlay
8971 if it becomes empty after its bounds are adjusted to fit within
8972 its buffer. Without this fix, in a nonempty buffer (let ((o
8973 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
8974 yields an empty overlay that has the evaporate property, which is
8975 not supposed to happen.
8976
8977 Fix minor GTK3 problems found by static checking.
8978 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
8979 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
8980 (struct _EmacsFixedClass, emacs_fixed_get_type):
8981 Move decls here from emacsgtkfixed.h, since they needn't be public.
8982 (emacs_fixed_get_type): Now static.
8983 (emacs_fixed_class_init): Omit unused local.
8984 (emacs_fixed_child_type): Remove; unused.
8985 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
8986 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
8987 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
8988 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
8989 (EMACS_FIXED_GET_CLASS): Remove; unused.
8990 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
8991
8992 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
8993 Problem reported by Juanma Barranquero for Windows -Wunused-function.
8994
8995 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
8996
8997 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
8998 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
8999 (__malloc_size_t, __malloc_ptrdiff_t):
9000 Remove. All uses removed, replaced by the definiens if needed,
9001 since we can assume C89 or better now.
9002 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
9003 (protect_malloc_state, align, get_contiguous_space)
9004 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
9005 (malloc_atfork_handler_child, malloc_enable_thread)
9006 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
9007 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
9008 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
9009 (special_realloc, _realloc_internal_nolock, _realloc_internal)
9010 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
9011 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
9012 Define using prototypes, not old style.
9013 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
9014 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
9015 (align): Don't assume that signed integer overflow wraps around.
9016 Omit unused local var.
9017 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
9018 (_free_internal_nolock, memalign, mallochook, reallochook):
9019 Omit no-longer-needed casts.
9020 (valloc): Use getpagesize, not __getpagesize.
9021 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
9022 (struct hdr): The 'magic' member is now size_t, not unsigned long.
9023
9024 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
9025
9026 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
9027
9028 Move functions from C to Lisp. Make non-blocking method calls
9029 the default. Implement further D-Bus standard interfaces.
9030
9031 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
9032 (QCdbus_request_name_allow_replacement)
9033 (QCdbus_request_name_replace_existing)
9034 (QCdbus_request_name_do_not_queue)
9035 (QCdbus_request_name_reply_primary_owner)
9036 (QCdbus_request_name_reply_in_queue)
9037 (QCdbus_request_name_reply_exists)
9038 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
9039 (QCdbus_registered_serial, QCdbus_registered_method)
9040 (QCdbus_registered_signal): New Lisp objects.
9041 (XD_DEBUG_MESSAGE): Use sizeof.
9042 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
9043 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
9044 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
9045 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
9046 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
9047 (xd_signature, xd_append_arg): Allow float for integer types.
9048 (xd_get_connection_references): New function.
9049 (xd_get_connection_address): Rename from xd_initialize.
9050 Return cached address.
9051 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
9052 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
9053 level.
9054 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9055 Return number of refcounts.
9056 (Fdbus_get_unique_name): Make stronger parameter check.
9057 (Fdbus_message_internal): New defun.
9058 (Fdbus_call_method, Fdbus_call_method_asynchronously)
9059 (Fdbus_method_return_internal, Fdbus_method_error_internal)
9060 (Fdbus_send_signal, Fdbus_register_service)
9061 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
9062 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
9063 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
9064 (Vdbus_compiled_version, Vdbus_runtime_version)
9065 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
9066 (Vdbus_message_type_method_return, Vdbus_message_type_error)
9067 (Vdbus_message_type_signal): New defvars.
9068 (Vdbus_registered_buses, Vdbus_registered_objects_table):
9069 Adapt docstring.
9070
9071 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9072
9073 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
9074 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
9075 Do not assume ptrdiff_t is the same width as 'int'.
9076
9077 * alloc.c: Handle unusual debugging option combinations.
9078 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
9079 since the two debugging options are incompatible.
9080 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
9081 is defined.
9082 (mem_init, mem_insert, mem_insert_fixup):
9083 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
9084 (NEED_MEM_INSERT): Remove; no longer needed.
9085
9086 2012-04-22 Leo Liu <sdl.web@gmail.com>
9087
9088 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
9089
9090 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9091
9092 * sysdep.c [__FreeBSD__]: Minor cleanups.
9093 (list_system_processes, system_process_attributes) [__FreeBSD__]:
9094 Use Emacs indenting style more consistently. Avoid some casts.
9095 Use 'double' consistently rather than mixing 'float' and 'double'.
9096
9097 2012-04-21 Eduard Wiebe <usenet@pusto.de>
9098
9099 * sysdep.c (list_system_processes, system_process_attributes):
9100 Add implementation for FreeBSD (Bug#5243).
9101
9102 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
9103
9104 * lisp.mk (lisp): Update.
9105
9106 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
9107
9108 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
9109 It is never used otherwise.
9110
9111 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9112
9113 * print.c (print_preprocess): Only check print_depth if print-circle
9114 is nil.
9115 (print_object): Check for cycles even when print-circle is nil and
9116 print-gensym is t, but only check print_depth if print-circle is nil.
9117
9118 2012-04-20 Chong Yidong <cyd@gnu.org>
9119
9120 * process.c (wait_reading_process_output): If EIO occurs on a pty,
9121 set the status to "failed" and ensure that sentinel is run.
9122
9123 2012-04-20 Glenn Morris <rgm@gnu.org>
9124
9125 * process.c (Fset_process_inherit_coding_system_flag)
9126 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
9127 (Fmake_network_process, Fmake_serial_process): Doc fix.
9128
9129 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9130
9131 * xdisp.c (string_buffer_position_lim): Limit starting position to
9132 BEGV.
9133 (set_cursor_from_row): If called for a mode-line or header-line
9134 row, return zero immediately.
9135 (try_cursor_movement): If inside continuation line, don't back up
9136 farther than the first row after the header line, if any.
9137 Don't consider the header-line row as "partially visible", even if
9138 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
9139
9140 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
9141
9142 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
9143 (bug#11238).
9144
9145 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
9146 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
9147
9148 configure: new option --enable-gcc-warnings (Bug#11207)
9149 * Makefile.in (C_WARNINGS_SWITCH): Remove.
9150 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
9151 (ALL_CFLAGS): Use new macros rather than old.
9152 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
9153 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
9154 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
9155 -Wunused-result, -Wunused-variable. This should go away once
9156 the Emacs and Gnulib regex code is merged.
9157 (xmalloc, xrealloc): Now static.
9158
9159 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
9160
9161 * dired.c (Fsystem_groups): Remove unused local.
9162
9163 2012-04-17 Glenn Morris <rgm@gnu.org>
9164
9165 * dired.c (Fsystem_users): Doc fix.
9166
9167 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9168
9169 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
9170 (syms_of_dired): Add them.
9171
9172 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
9173
9174 Fix minor alloc.c problems found by static checking.
9175 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
9176 New extern decls, to avoid calling undeclared functions.
9177 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
9178 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
9179 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
9180 (NEED_MEM_INSERT): New macro.
9181 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
9182 Remove one incorrect comment and fix another.
9183
9184 Fix minor ralloc.c problems found by static checking.
9185 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
9186 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
9187 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
9188 (r_alloc_sbrk): Now static.
9189
9190 Improve ralloc.c interface checking.
9191 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
9192 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
9193 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
9194 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
9195 [REL_ALLOC]: ... to here, to check interface.
9196 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
9197 Remove decls. This fixes an "It stinks!".
9198
9199 * alloc.c (which_symbols): Fix alignment issue / type clash.
9200
9201 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
9202
9203 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
9204 (struct Lisp_Misc_Any): Likewise.
9205 (struct Lisp_Free): Likewise.
9206 * alloc.c (union aligned_Lisp_Symbol): Define.
9207 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
9208 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
9209 (union aligned_Lisp_Misc): Define.
9210 (MARKER_BLOCK_SIZE, struct marker_block): Use union
9211 aligned_Lisp_Misc instead of union Lisp_Misc.
9212 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
9213
9214 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9215
9216 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
9217 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
9218 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
9219 * s/netbsd.h, s/sol2-6.h:
9220 Remove definition of GC_MARK_STACK, since the default now works.
9221 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
9222 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
9223 no longer the default.
9224 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
9225
9226 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
9227
9228 * lread.c (lisp_file_lexically_bound_p):
9229 Fix hang at ";-*-\n" (bug#11238).
9230
9231 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9232
9233 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
9234 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
9235
9236 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
9237
9238 * nsterm.m (constrainFrameRect): Always constrain when there is only
9239 one screen (Bug#10962).
9240
9241 2012-04-13 Ken Brown <kbrown@cornell.edu>
9242
9243 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
9244
9245 2012-04-13 Reuben Thomas <rrt@sc3d.org>
9246
9247 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
9248
9249 2012-04-11 Daniel Colascione <dancol@dancol.org>
9250
9251 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
9252 against is gone. It's better to use vfork now so that when Cygwin
9253 gains a new, working vfork, we use it automatically (bug#10398).
9254
9255 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9256
9257 * window.c (save_window_save): Obey window-point-insertion-type.
9258
9259 2012-04-11 Glenn Morris <rgm@gnu.org>
9260
9261 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
9262
9263 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9264
9265 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
9266
9267 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
9268
9269 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
9270 (force_quit_count): New var.
9271 (handle_interrupt): Use it.
9272
9273 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9274
9275 * w32.c (w32_delayed_load): Record the full path of the library
9276 being loaded (bug#10424).
9277
9278 2012-04-09 Glenn Morris <rgm@gnu.org>
9279
9280 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
9281 not just in the obarray, before snarfing them. (Bug#11036)
9282
9283 * Makefile.in ($(leimdir)/leim-list.el):
9284 Pass EMACS rather than BUILT_EMACS.
9285
9286 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
9287
9288 * process.c (make_process):
9289 * process.h: Add integer `gnutls_handshakes_tried' member to
9290 process struct.
9291
9292 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
9293 Add convenience `GNUTLS_LOG2i' macro.
9294
9295 * gnutls.c (gnutls_log_function2i): Convenience log function.
9296 (emacs_gnutls_read): Use new log functions,
9297 `gnutls_handshakes_tried' process member, and
9298 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
9299 attempts per process (connection).
9300
9301 2012-04-09 Chong Yidong <cyd@gnu.org>
9302
9303 * eval.c (Fuser_variable_p, user_variable_p_eh)
9304 (lisp_indirect_variable): Functions deleted.
9305 (Fdefvar): Caller changed.
9306
9307 * callint.c (Finteractive, Fcall_interactively):
9308 * minibuf.c (Fread_variable): Callers changed.
9309
9310 2012-04-09 Eli Zaretskii <eliz@gnu.org>
9311
9312 * xdisp.c (set_cursor_from_row): If the display string appears in
9313 the buffer at position that is closer to point than the position
9314 after the display string, display the cursor on the first glyph of
9315 the display string. Fixes cursor display when a 'display' text
9316 property immediately follows invisible text. (Bug#11094)
9317
9318 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
9319
9320 composite.c: use 'double' consistently
9321 * composite.c (get_composition_id): Use 'double' consistently
9322 instead of converting 'float' to 'double' and vice versa; this is
9323 easier to understand and avoids a GCC warning.
9324
9325 2012-04-09 Glenn Morris <rgm@gnu.org>
9326
9327 * Makefile.in: Generate leim-list with bootstrap-emacs, in
9328 preparation for dumping it with emacs. (Bug#4789)
9329 (leimdir): New variable.
9330 ($(leimdir)/leim-list.el): New rule.
9331 (emacs$(EXEEXT)): Depend on leim-list.el.
9332
9333 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
9334 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
9335 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
9336
9337 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
9338
9339 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
9340 proper alignment.
9341
9342 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
9343
9344 * xml.c (init_libxml2_functions) [WINDOWSNT]:
9345 Remove unused local variable.
9346
9347 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
9348
9349 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
9350 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
9351 (mark_memory): Mark Lisp_Objects only if pointers might hide in
9352 objects, as mark_maybe_pointer will catch them otherwise.
9353 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
9354 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
9355
9356 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
9357
9358 Fix typo that broke non-Windows builds.
9359 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
9360
9361 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9362
9363 Support building on MS-Windows with libxml2.
9364
9365 * makefile.w32-in (OBJ2): Add xml.$(O).
9366 (GLOBAL_SOURCES): Add xml.c.
9367 ($(BLD)/xml.$(O)): New dependency list.
9368
9369 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
9370 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
9371 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
9372 [!WINDOWSNT]: New macros.
9373 (init_libxml2_functions, libxml2_loaded_p): New functions.
9374 (parse_region): Call fn_xmlCheckVersion instead of using the macro
9375 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
9376 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
9377 Calls xmlCleanupParser only if libxml2 was loaded (or statically
9378 linked in).
9379 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
9380 Call init_libxml2_functions before calling libxml2 functions.
9381 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
9382
9383 * emacs.c: Don't include libxml/parser.h.
9384 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
9385 xmlCleanupParser directly.
9386
9387 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
9388
9389 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9390
9391 * indent.c (Fvertical_motion): If there is a display string at
9392 point, use it.vpos to compute how many lines to backtrack after
9393 move_it_to point. (Bug#11133)
9394
9395 2012-04-06 Eli Zaretskii <eliz@gnu.org>
9396
9397 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
9398 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
9399 about subtle differences between FETCH_CHAR* and STRING_CHAR*
9400 macros related to unification of CJK characters. For the details,
9401 see the discussion following the message here:
9402 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
9403
9404 2012-04-04 Chong Yidong <cyd@gnu.org>
9405
9406 * keyboard.c (Vdelayed_warnings_list): Doc fix.
9407
9408 2012-04-01 Eli Zaretskii <eliz@gnu.org>
9409
9410 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
9411 instead of alloca. (Bug#11138)
9412
9413 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
9414
9415 * w32menu.c (is_simple_dialog): Properly check lisp types.
9416 (Bug#11141)
9417
9418 2012-03-31 Eli Zaretskii <eliz@gnu.org>
9419
9420 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
9421 position we get to after a call to move_it_to fails the
9422 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
9423 only if we wind up in a string from display property. (Bug#11063)
9424
9425 * window.c (Fdelete_other_windows_internal): Invalidate the row
9426 and column information about mouse highlight, so that redisplay
9427 restores it after reallocating the glyph matrices. (Bug#7464)
9428
9429 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
9430 string comes from a `display' text property, use the buffer
9431 position of that property as if we actually saw that position in
9432 the row's glyphs.
9433 (move_it_by_lines): Remove the assertion that
9434 "it->current_x == 0 && it->hpos == 0" which can be legitimately
9435 violated when there's a before-string at the beginning of a line.
9436 (Bug#11063)
9437
9438 2012-03-30 Eli Zaretskii <eliz@gnu.org>
9439
9440 * xdisp.c (append_space_for_newline): If the default face was
9441 remapped, use the remapped face for the appended newline.
9442 (extend_face_to_end_of_line): Use the remapped default face for
9443 extending the face to the end of the line.
9444 (display_line): Call extend_face_to_end_of_line when the default
9445 face was remapped. (Bug#11068)
9446
9447 2012-03-29 Eli Zaretskii <eliz@gnu.org>
9448
9449 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
9450
9451 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9452
9453 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
9454
9455 2012-03-27 Glenn Morris <rgm@gnu.org>
9456
9457 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
9458 Doc fixes.
9459
9460 2012-03-26 Kenichi Handa <handa@m17n.org>
9461
9462 * dispextern.h (struct glyph): Fix previous change. Change the
9463 bit length of glyphless.ch to 25 (Bug#11082).
9464
9465 2012-03-26 Chong Yidong <cyd@gnu.org>
9466
9467 * keyboard.c (Vselection_inhibit_update_commands): New variable.
9468 (command_loop_1): Use it; inhibit selection update for
9469 handle-select-window too (Bug#8996).
9470
9471 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
9472
9473 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
9474
9475 2012-03-25 Kenichi Handa <handa@m17n.org>
9476
9477 * dispextern.h (struct glyph): Change the bit length of
9478 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
9479
9480 2012-03-24 Eli Zaretskii <eliz@gnu.org>
9481
9482 * s/ms-w32.h (tzname): Include time.h before redirecting to
9483 _tzname. Fixes the MSVC build. (Bug#9960)
9484
9485 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
9486
9487 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
9488 characters.
9489
9490 * xterm.c (XTread_socket): Only modify handling_signal if
9491 !SYNC_INPUT. (Bug#11080)
9492
9493 2012-03-23 Eli Zaretskii <eliz@gnu.org>
9494
9495 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
9496 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
9497 when fetching a multibyte character consumes more bytes than
9498 CHAR_BYTES returns, due to unification of CJK characters in
9499 string_char. (Bug#11073)
9500
9501 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
9502
9503 * process.c (wait_reading_process_output): Handle pty disconnect
9504 by refraining from sending oneself a SIGCHLD (bug#10933).
9505
9506 2012-03-22 Chong Yidong <cyd@gnu.org>
9507
9508 * dispextern.h (struct it): New member string_from_prefix_prop_p.
9509
9510 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9511 Mark string as coming from a prefix property.
9512 (handle_face_prop): Use default face for prefix strings (Bug#4281).
9513 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
9514
9515 2012-03-21 Chong Yidong <cyd@gnu.org>
9516
9517 * xfaces.c (Vface_remapping_alist): Doc fix.
9518
9519 2012-03-20 Eli Zaretskii <eliz@gnu.org>
9520
9521 * w32proc.c (Fw32_set_console_codepage)
9522 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
9523 Doc fixes.
9524
9525 2012-03-20 Chong Yidong <cyd@gnu.org>
9526
9527 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
9528 to reflect default non-nil value of redisplay-dont-pause.
9529
9530 2012-03-19 Kenichi Handa <handa@m17n.org>
9531
9532 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
9533 it fit in a valid range (Bug#11003).
9534
9535 2012-03-18 Eli Zaretskii <eliz@gnu.org>
9536
9537 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
9538 that is not from display property, accept the row as a "cursor
9539 row" if one of the string's character has a non-nil `cursor'
9540 property. Fixes cursor positioning when there are newlines in
9541 overlay strings, e.g. in icomplete.el. (Bug#11035)
9542
9543 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
9544
9545 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
9546
9547 2012-03-12 Chong Yidong <cyd@gnu.org>
9548
9549 * eval.c (inhibit_lisp_code): Rename from
9550 inhibit_window_configuration_change_hook; move from window.c.
9551
9552 * xfns.c (unwind_create_frame_1, Fx_create_frame):
9553 * window.c (run_window_configuration_change_hook)
9554 (syms_of_window): Callers changed.
9555
9556 2012-03-11 Chong Yidong <cyd@gnu.org>
9557
9558 * keymap.c (Fkey_description): Doc fix (Bug#9700).
9559
9560 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
9561
9562 2012-03-10 Chong Yidong <cyd@gnu.org>
9563
9564 * frame.c (other_visible_frames): Don't assume the selected frame
9565 is visible (Bug#10955).
9566
9567 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
9568
9569 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
9570
9571 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
9572
9573 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
9574 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
9575 zero (Bug#10954).
9576
9577 2012-03-03 Glenn Morris <rgm@gnu.org>
9578
9579 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
9580
9581 2012-03-02 Eli Zaretskii <eliz@gnu.org>
9582
9583 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
9584 position past the first glyph_row that ends at ZV. (Bug#10902)
9585 (redisplay_window, next_element_from_string): Fix typos in
9586 comments.
9587 (redisplay_window): Pass to move_it_vertically the margin in
9588 pixels, not in screen lines.
9589
9590 2012-03-02 Glenn Morris <rgm@gnu.org>
9591
9592 * buffer.c (buffer-list-update-hook): Doc fix.
9593
9594 2012-02-29 Eli Zaretskii <eliz@gnu.org>
9595
9596 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
9597 push_it before setting up the iterator for the first overlay
9598 string, even if we have an empty string loaded.
9599 (next_overlay_string): If there's an empty string on the iterator
9600 stack, pop the stack. (Bug#10903)
9601
9602 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
9603
9604 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
9605 Suggested by Stefan Monnier in
9606 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
9607 * alloc.c (widen_to_Lisp_Object): New static function.
9608 (mark_memory): Also mark Lisp_Objects by fetching pointer words
9609 and widening them to Lisp_Objects. This would work even if
9610 USE_LSB_TAG is defined and wide integers are used, which might
9611 happen in a future version of Emacs.
9612
9613 2012-02-25 Chong Yidong <cyd@gnu.org>
9614
9615 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
9616 Doc fix.
9617
9618 * xselect.c (Fx_selection_exists_p): Doc fix.
9619 (x_clipboard_manager_save_all): Print an informative message
9620 before saving to clipboard manager.
9621
9622 2012-02-24 Chong Yidong <cyd@gnu.org>
9623
9624 * keyboard.c (process_special_events): Handle all X selection
9625 requests in kbd_buffer, not just the next one (Bug#8869).
9626
9627 2012-02-23 Chong Yidong <cyd@gnu.org>
9628
9629 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
9630 call when setting menu-bar-lines and tool-bar-lines parameters.
9631 (unwind_create_frame_1): New helper function.
9632
9633 * window.c (inhibit_window_configuration_change_hook): New var.
9634 (run_window_configuration_change_hook): Obey it.
9635 (syms_of_window): Initialize it.
9636
9637 2012-02-22 Chong Yidong <cyd@gnu.org>
9638
9639 * xterm.c (x_draw_image_relief): Add missing type check for
9640 Vtool_bar_button_margin (Bug#10743).
9641
9642 2012-02-21 Chong Yidong <cyd@gnu.org>
9643
9644 * fileio.c (Vfile_name_handler_alist): Doc fix.
9645
9646 * buffer.c (Fget_file_buffer): Protect against invalid file
9647 handler return value.
9648
9649 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
9650
9651 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
9652 when computing $valmask.
9653
9654 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
9655 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
9656 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
9657 It's useless in that case, and it can cause problems on hosts
9658 that allocate halves of EMACS_INT values separately.
9659 Reported by Dan Horák. Diagnosed by Andreas Schwab in
9660 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
9661 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
9662 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
9663 it avoids undefined behavior on hosts where shifting right by more
9664 than the word width has undefined behavior.
9665
9666 2012-02-19 Chong Yidong <cyd@gnu.org>
9667
9668 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
9669 (Funhandled_file_name_directory, Ffile_name_as_directory)
9670 (Fdirectory_file_name, Fexpand_file_name)
9671 (Fsubstitute_in_file_name): Protect against invalid file handler
9672 return values (Bug#10845).
9673
9674 2012-02-18 Eli Zaretskii <eliz@gnu.org>
9675
9676 * .gdbinit (pitx): Fix incorrect references to fields of the
9677 iterator stack.
9678
9679 2012-02-17 Chong Yidong <cyd@gnu.org>
9680
9681 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
9682
9683 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
9684
9685 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
9686 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
9687
9688 2012-02-15 Chong Yidong <cyd@gnu.org>
9689
9690 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
9691 marked as special. Also, starting docstrings with * is obsolete.
9692
9693 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
9694
9695 * gnutls.c (emacs_gnutls_write): Fix last change.
9696
9697 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
9698
9699 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
9700 send_process.
9701
9702 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
9703
9704 * keymap.c (Fsingle_key_description): Handle char ranges.
9705
9706 2012-02-12 Chong Yidong <cyd@gnu.org>
9707
9708 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
9709 as that creates a dangerous corner case.
9710
9711 * window.c (Fdelete_window_internal): Invalidate the mouse
9712 highlight (Bug#9904).
9713
9714 2012-02-12 Glenn Morris <rgm@gnu.org>
9715
9716 * xselect.c (Fx_own_selection_internal)
9717 (Fx_get_selection_internal, Fx_disown_selection_internal)
9718 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
9719 * nsselect.m (Fx_own_selection_internal)
9720 (Fx_disown_selection_internal, Fx_selection_exists_p)
9721 (Fx_selection_owner_p, Fx_get_selection_internal):
9722 Sync docs and argument specs with the xselect.c versions.
9723
9724 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
9725
9726 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
9727
9728 2012-02-11 Eli Zaretskii <eliz@gnu.org>
9729
9730 * w32select.c (Fx_selection_exists_p): Sync doc string and
9731 argument list with xselect.c. (Bug#10783)
9732
9733 * w16select.c (Fx_selection_exists_p): Sync doc string and
9734 argument list with xselect.c. (Bug#10783)
9735
9736 2012-02-10 Glenn Morris <rgm@gnu.org>
9737
9738 * fns.c (Fsecure_hash): Doc fix.
9739
9740 2012-02-09 Kenichi Handa <handa@m17n.org>
9741
9742 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
9743
9744 2012-02-07 Chong Yidong <cyd@gnu.org>
9745
9746 * buffer.c (Fbuffer_local_variables)
9747 (buffer_lisp_local_variables): Handle unbound vars correctly;
9748 don't let Qunbound leak into Lisp.
9749
9750 2012-02-07 Glenn Morris <rgm@gnu.org>
9751
9752 * image.c (Fimagemagick_types): Doc fix.
9753
9754 * image.c (imagemagick-render-type): Change it from a lisp object
9755 to an integer. Move the doc here from the lisp manual.
9756 Treat all values not equal to 0 the same.
9757
9758 2012-02-06 Chong Yidong <cyd@gnu.org>
9759
9760 * doc.c (store_function_docstring): Avoid applying docstring of
9761 alias to base function (Bug#2603).
9762
9763 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
9764
9765 * .gdbinit (pp1, pv1): Remove redundant defines.
9766 (pr): Use pp.
9767
9768 2012-02-04 Chong Yidong <cyd@gnu.org>
9769
9770 * nsterm.m: Declare a global (Bug#10694).
9771
9772 2012-02-04 Eli Zaretskii <eliz@gnu.org>
9773
9774 * w32.c (get_emacs_configuration_options):
9775 Include --enable-checking, if specified, in the return value.
9776
9777 2012-02-04 Martin Rudalics <rudalics@gmx.at>
9778
9779 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
9780 after rounding frame sizes. (Bug#9723)
9781
9782 2012-02-04 Eli Zaretskii <eliz@gnu.org>
9783
9784 * keyboard.c (adjust_point_for_property): Don't position point
9785 before BEGV. (Bug#10696)
9786
9787 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
9788
9789 Handle overflow when computing char display width (Bug#9496).
9790 * character.c (char_width): Return EMACS_INT, not int.
9791 (char_width, c_string_width): Check for overflow when
9792 computing the width; this is possible now that individual
9793 characters can have unbounded width. Problem introduced
9794 by merge from Emacs 23 on 2012-01-19.
9795
9796 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
9797
9798 * dbusbind.c (Fdbus_register_method): Mention the return value
9799 :ignore in the docstring.
9800
9801 2012-02-02 Glenn Morris <rgm@gnu.org>
9802
9803 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
9804
9805 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
9806 Unconditionally set to t. (Bug#10673)
9807 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
9808 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
9809 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
9810
9811 2012-02-02 Kenichi Handa <handa@m17n.org>
9812
9813 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
9814 0, do not call append_composite_glyph.
9815
9816 2012-02-02 Kenichi Handa <handa@m17n.org>
9817
9818 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
9819 NULL (Bug#6988).
9820 (x_produce_glyphs): If the component of a composition is a null
9821 string, set it->pixel_width to 1 to avoid zero-width glyph.
9822
9823 2012-02-01 Eli Zaretskii <eliz@gnu.org>
9824
9825 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
9826 first 2 arguments are identical. This makes inserting large
9827 output from a subprocess an order of magnitude faster on
9828 MS-Windows, where all sbrk'ed memory is always contiguous.
9829
9830 2012-01-31 Glenn Morris <rgm@gnu.org>
9831
9832 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
9833 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
9834 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
9835
9836 2012-01-29 Glenn Morris <rgm@gnu.org>
9837
9838 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
9839
9840 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
9841
9842 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
9843
9844 2012-01-28 Chong Yidong <cyd@gnu.org>
9845
9846 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
9847
9848 2012-01-26 Chong Yidong <cyd@gnu.org>
9849
9850 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
9851
9852 * search.c (Fsearch_forward, Fsearch_backward): Document negative
9853 repeat counts (Bug#10507).
9854
9855 2012-01-26 Glenn Morris <rgm@gnu.org>
9856
9857 * lread.c (syms_of_lread): Doc fix.
9858
9859 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
9860
9861 * coding.c (encode_designation_at_bol): Change return value to
9862 EMACS_INT.
9863
9864 2012-01-25 Chong Yidong <cyd@gnu.org>
9865
9866 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
9867
9868 2012-01-21 Chong Yidong <cyd@gnu.org>
9869
9870 * floatfns.c (Fcopysign): Make the second argument non-optional,
9871 since nil is not allowed anyway.
9872
9873 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
9874
9875 * process.c (read_process_output): Use p instead of XPROCESS (proc).
9876 (send_process): Likewise.
9877
9878 2012-01-19 Martin Rudalics <rudalics@gmx.at>
9879
9880 * window.c (save_window_save, Fcurrent_window_configuration)
9881 (Vwindow_persistent_parameters): Do not use Qstate.
9882 Rewrite doc-strings.
9883
9884 2012-01-19 Kenichi Handa <handa@m17n.org>
9885
9886 * character.c (char_width): New function.
9887 (Fchar_width, c_string_width, lisp_string_width):
9888 Use char_width (Bug#9496).
9889
9890 2012-01-16 Martin Rudalics <rudalics@gmx.at>
9891
9892 * window.c (Vwindow_persistent_parameters): New variable.
9893 (Fset_window_configuration, save_window_save): Handle persistent
9894 window parameters.
9895
9896 2012-01-14 Eli Zaretskii <eliz@gnu.org>
9897
9898 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
9899 thrashing the stack of the thread. (Bug#9087)
9900
9901 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
9902
9903 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
9904
9905 2012-01-11 Eli Zaretskii <eliz@gnu.org>
9906
9907 * xdisp.c (rows_from_pos_range): Handle the case where the
9908 highlight ends on a newline. (Bug#10464)
9909 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
9910 he end column for display of highlight that ends on a newline
9911 before a R2L line.
9912
9913 2012-01-11 Glenn Morris <rgm@gnu.org>
9914
9915 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
9916 from load-path also when installation-directory is nil. (Bug#10208)
9917
9918 2012-01-10 Glenn Morris <rgm@gnu.org>
9919
9920 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
9921
9922 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
9923 Update template values to be closer to their typical values these days.
9924
9925 2012-01-09 Eli Zaretskii <eliz@gnu.org>
9926
9927 * xdisp.c (rows_from_pos_range): Accept additional argument
9928 DISP_STRING, and accept any glyph in a row whose object is that
9929 string as eligible for mouse highlight. Fixes mouse highlight of
9930 display strings from overlays. (Bug#10464)
9931
9932 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
9933
9934 emacs: fix an auto-save permissions race condition (Bug#10400)
9935 * fileio.c (auto_saving_dir_umask): New static var.
9936 (Fmake_directory_internal): Use it.
9937 (do_auto_save_make_dir): Set it, instead of invoking chmod after
9938 creating the directory. The old code temporarily assigns
9939 too-generous permissions to the directory.
9940 (do_auto_save_eh): Clear it.
9941 (Fdo_auto_save): Catch all errors, not just file errors, so
9942 that the var is always cleared.
9943
9944 2012-01-07 Eli Zaretskii <eliz@gnu.org>
9945
9946 * search.c (scan_buffer): Pass character positions to
9947 know_region_cache, not byte positions. (Bug#6540)
9948
9949 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
9950
9951 * w32.c (sys_rename): Report EXDEV when rename of a directory
9952 fails because the target is on another logical disk. (Bug#10284)
9953
9954 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
9955
9956 * xterm.c (x_embed_request_focus): New function.
9957
9958 * xterm.h: Add prototype.
9959
9960 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
9961
9962 2012-01-05 Glenn Morris <rgm@gnu.org>
9963
9964 * emacs.c (emacs_copyright): Update short copyright year to 2012.
9965
9966 2012-01-01 Eli Zaretskii <eliz@gnu.org>
9967
9968 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
9969 Load gnutls_transport_set_lowat only if GnuTLS version is below
9970 2.11.1.
9971 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
9972 GnuTLS versions below 2.11.1.
9973
9974 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
9975
9976 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
9977 to the doc string advising against its use for altering the way
9978 windows are scrolled.
9979
9980 2011-12-28 Kenichi Handa <handa@m17n.org>
9981
9982 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
9983 coding-system ASCII compatible only when it does not produce BOM
9984 on encoding (Bug#10383).
9985
9986 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
9987
9988 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
9989 can scroll.
9990 (create_and_show_popup_menu): Always use menu_position_func for
9991 Gtk3 (Bug#10361).
9992
9993 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
9994
9995 * callint.c (Fcall_interactively): Don't truncate prompt string.
9996
9997 2011-12-23 Eli Zaretskii <eliz@gnu.org>
9998
9999 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
10000 property that ends at ZV, so that the bidi iteration could be
10001 resumed from there (after widening). (Bug#10360)
10002
10003 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
10004
10005 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
10006
10007 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
10008
10009 * nsterm.m (x_free_frame_resources):
10010 Release f->output_data.ns->miniimage.
10011 (ns_index_color): Fix indentation. Do not retain
10012 color_table->colors[i].
10013
10014 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
10015 before returning.
10016
10017 * nsfns.m (x_set_background_color): Assign return value from
10018 ns_index_color to face-background instead of NSColor*.
10019 (ns_implicitly_set_icon_type): Fix indentation.
10020 Change assignment in for loop to comparison.
10021
10022 * emacs.c (ns_pool): New variable.
10023 (main): Assign ns_pool.
10024 (Fkill_emacs): Call ns_release_autorelease_pool.
10025
10026 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
10027 autorelease fdesc, release fdAttrs and tdict.
10028 (ns_get_covering_families): Release charset.
10029 (ns_findfonts): Release NSFontDescriptor created with new.
10030 (ns_uni_to_glyphs): Fix indentation.
10031 (setString): Release attrStr before assigning new value.
10032
10033 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10034
10035 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
10036 and NS_IMPL_COCOA.
10037 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
10038 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
10039
10040 2011-12-18 David Reitter <reitter@cmu.edu>
10041
10042 * nsterm.m (ns_term_init): Subscribe for notifications
10043 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
10044 to method trackingNotification in EmacsMenu.
10045
10046 * nsmenu.m (trackingMenu): New variable.
10047 (trackingNotification): New method (from Aquamacs).
10048 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
10049 from Aquamacs (Bug#7030).
10050
10051 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10052
10053 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
10054 (symbol_to_nsstring): Fix indentation.
10055 (ns_symbol_to_pb): New function.
10056 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
10057 (Fns_rotate_cut_buffers_internal): Remove.
10058 (Fns_store_selection_internal): Rename from
10059 Fns_store_cut_buffer_internal.
10060 (ns_get_foreign_selection, Fx_own_selection_internal)
10061 (Fx_disown_selection_internal, Fx_selection_exists_p)
10062 (Fns_get_selection_internal, Fns_store_selection_internal):
10063 Use ns_symbol_to_pb and check if return value is nil.
10064 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
10065 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
10066 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
10067 renamed to Sns_store_selection_internal.
10068 (ns_handle_selection_request): Move code to Fx_own_selection_internal
10069 and remove this function.
10070 (ns_handle_selection_clear): Remove, never used.
10071 (Fx_own_selection_internal): Move code from ns_handle_selection_request
10072 here.
10073
10074 2011-12-17 Ken Brown <kbrown@cornell.edu>
10075
10076 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
10077 GID is unknown (Bug#10257).
10078
10079 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
10080
10081 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
10082 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
10083 which caused a build failure on GNU/Linux IA-64. This problem was
10084 introduced by my 2011-10-07 patch.
10085
10086 2011-12-15 Juri Linkov <juri@jurta.org>
10087
10088 * image.c (imagemagick_error): New function. (Bug#10112)
10089 (imagemagick_load_image): Comment out `MagickSetResolution' call.
10090 Use `imagemagick_error' where ImageMagick functions return
10091 `MagickFalse'.
10092 (Fimagemagick_types): Add `Fnreverse' to return the list in the
10093 proper order.
10094
10095 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10096
10097 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
10098 fill background (Bug#8992).
10099
10100 2011-12-13 Martin Rudalics <rudalics@gmx.at>
10101
10102 * window.c (Vwindow_combination_resize)
10103 (Vwindow_combination_limit): Use t instead of non-nil in
10104 doc-strings.
10105 (Vrecenter_redisplay): Add first sentence of doc-string on
10106 separate line.
10107 (Frecenter): Fix doc-string typo.
10108
10109 2011-12-11 Kenichi Handa <handa@m17n.org>
10110
10111 * coding.c (Funencodable_char_position): Pay attention to the
10112 buffer text relocation (Bug#9389).
10113
10114 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
10115
10116 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
10117 gtk_init (Bug#10100).
10118
10119 2011-12-10 Eli Zaretskii <eliz@gnu.org>
10120
10121 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
10122 IT->string is nil. (Bug#10263)
10123
10124 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
10125
10126 * nsterm.h (x_free_frame_resources): Declare.
10127
10128 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
10129 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
10130
10131 * nsterm.h (ns_get_defaults_value): Declare.
10132
10133 * nsterm.m (ns_default): Call ns_get_defaults_value.
10134
10135 2011-12-09 Eli Zaretskii <eliz@gnu.org>
10136
10137 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
10138 (Bug#10170)
10139
10140 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10141
10142 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
10143 that where the value of an _OBJC_* symbol points to is in the .bss
10144 section (Bug#10240).
10145
10146 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10147
10148 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
10149 after the loop to call ccl_driver at least once (Bug#8619).
10150
10151 2011-12-08 Kenichi Handa <handa@m17n.org>
10152
10153 * ftfont.c (get_adstyle_property): Fix previous change
10154 (Bug#10233).
10155
10156 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
10157
10158 * w32.c (init_environment): If no_site_lisp, remove site-lisp
10159 dirs from the default value of EMACSLOADPATH (bug#10208).
10160
10161 2011-12-07 Glenn Morris <rgm@gnu.org>
10162
10163 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
10164 installation and source directories as well. (Bug#10208)
10165
10166 2011-12-06 Chong Yidong <cyd@gnu.org>
10167
10168 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
10169
10170 2011-12-06 Glenn Morris <rgm@gnu.org>
10171
10172 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
10173 as an error, not just -1. (Bug#10217)
10174
10175 2011-12-05 Chong Yidong <cyd@gnu.org>
10176
10177 * keyboard.c (process_special_events): New function.
10178 (swallow_events, Finput_pending_p): Use it (Bug#10195).
10179
10180 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
10181
10182 * coding.c (encode_designation_at_bol): Don't use uninitialized
10183 local variable (Bug#9318).
10184
10185 2011-12-05 Kenichi Handa <handa@m17n.org>
10186
10187 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
10188 return Qnil (Bug#8046, Bug#10193).
10189
10190 2011-12-05 Kenichi Handa <handa@m17n.org>
10191
10192 * coding.c (encode_designation_at_bol): New args charbuf_end and
10193 dst. Return the number of produced bytes. Callers changed.
10194 (coding_set_source): Return how many bytes coding->source was
10195 relocated.
10196 (coding_set_destination): Return how many bytes
10197 coding->destination was relocated.
10198 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
10199 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
10200
10201 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10202
10203 * coding.c (CODING_CHAR_CHARSET_P): New macro.
10204 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
10205 macro (Bug#9318).
10206
10207 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
10208
10209 The following changes are to fix Bug#9318.
10210
10211 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
10212 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
10213 (encode_coding_iso_2022, encode_coding_sjis)
10214 (encode_coding_big5, encode_coding_charset): Use the above macros.
10215
10216 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
10217
10218 * lisp.h (process_quit_flag): Fix external declaration.
10219
10220 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
10221
10222 Don't macro-inline non-performance-critical code.
10223 * eval.c (process_quit_flag): New function.
10224 * lisp.h (QUIT): Use it.
10225
10226 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
10227
10228 * nsfns.m (get_geometry_from_preferences): New function.
10229 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
10230
10231 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
10232
10233 * emacs.c (Qkill_emacs): Define.
10234 (syms_of_emacs): Initialize it.
10235 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
10236 Qquit_flag to `kill-emacs' instead.
10237 (quit_throw_to_read_char): Add parameter `from_signal'.
10238 All callers changed. Call Fkill_emacs if requested and safe.
10239 * lisp.h (QUIT): Call Fkill_emacs if requested.
10240
10241 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
10242
10243 * widget.c (update_wm_hints): Return if wmshell is null.
10244 (widget_update_wm_size_hints): New function.
10245
10246 * widget.h (widget_update_wm_size_hints): Declare.
10247
10248 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
10249 widget_update_wm_size_hints (Bug#10104).
10250
10251 2011-12-03 Eli Zaretskii <eliz@gnu.org>
10252
10253 * xdisp.c (handle_invisible_prop): If the invisible text ends just
10254 before a newline, prepare the bidi iterator for consuming the
10255 newline, and keep the current paragraph direction. (Bug#10183)
10256 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
10257
10258 2011-12-02 Juri Linkov <juri@jurta.org>
10259
10260 * search.c (Fword_search_regexp): New Lisp function created from
10261 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
10262 (Fword_search_backward, Fword_search_forward)
10263 (Fword_search_backward_lax, Fword_search_forward_lax):
10264 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
10265 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
10266
10267 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10268
10269 * fileio.c (Finsert_file_contents): Move after-change-function call
10270 to before the "handled:" label, since all "goto handled" appear in
10271 cases where the *-change-functions have already been properly called
10272 (bug#10117).
10273
10274 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
10275
10276 * keyboard.c (interrupt_signal): Don't call kill-emacs when
10277 waiting for input. (Bug#10169)
10278
10279 2011-11-30 Eli Zaretskii <eliz@gnu.org>
10280
10281 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
10282 verifies glyph row's hash code--we have just reallocated the
10283 glyphs, so their contents can be complete garbage. (Bug#10164)
10284
10285 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
10286
10287 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
10288
10289 2011-11-30 Eli Zaretskii <eliz@gnu.org>
10290
10291 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
10292 attributes are tested _before_ calling verify_row_hash, to protect
10293 against GCC re-ordering of the tests. (Bug#10164)
10294
10295 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
10296
10297 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
10298
10299 * xterm.c (handle_one_xevent): Only set async_visible and friends
10300 if net_wm_state_hidden_seen is non-zero (Bug#10002)
10301 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
10302 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
10303
10304 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
10305
10306 Remove GCPRO-related macros that exist only to avoid shadowing locals.
10307 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
10308 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
10309 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
10310 All uses changed to use GCPRO1 etc.
10311 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
10312 Revert to old implementation (i.e., before 2011-03-11).
10313
10314 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10315
10316 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
10317 of scroll runs so as to avoid assigning disabled bogus rows and
10318 unnecessary graphics copy operations.
10319
10320 2011-11-27 Eli Zaretskii <eliz@gnu.org>
10321
10322 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
10323 (snprintf) [_MSC_VER]: Redirect to _snprintf.
10324 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
10325 (malloc, free, realloc, calloc): Redirect to e_* only when
10326 compiling Emacs.
10327
10328 * lisp.h (GCTYPEBITS): Move before first use.
10329 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
10330 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
10331 this macro definition.
10332
10333 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
10334 _MSC_VER.
10335
10336 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
10337
10338 * gtkutil.c (xg_create_frame_widgets):
10339 Call gtk_window_set_has_resize_grip (FALSE) if that function is
10340 present with Gtk+ 2.0.
10341
10342 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
10343
10344 * fileio.c (Finsert_file_contents): Undo previous change; see
10345 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
10346
10347 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
10348
10349 Rename locals to avoid shadowing.
10350 * fileio.c (Finsert_file_contents):
10351 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
10352 * process.c (wait_reading_process_output):
10353 Rename inner 'proc' to 'p' to avoid shadowing.
10354 Indent for consistency with usual Emacs style.
10355
10356 2011-11-25 Eli Zaretskii <eliz@gnu.org>
10357
10358 * xdisp.c (redisplay_window): If cursor row is not fully visible
10359 after recentering, and scroll-conservatively is set to a large
10360 number, scroll window by a few more lines to make the cursor fully
10361 visible and out of scroll-margin. (Bug#10105)
10362 (start_display): Don't move to the next line if the display should
10363 start at a newline that is part of a display vector or an overlay
10364 string. (Bug#10119)
10365
10366 2011-11-24 Juri Linkov <juri@jurta.org>
10367
10368 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
10369 after the `MagickPingImage' call. (Bug#10112)
10370
10371 2011-11-23 Chong Yidong <cyd@gnu.org>
10372
10373 * window.c (Fcoordinates_in_window_p): Accept only live windows.
10374
10375 2011-11-23 Martin Rudalics <rudalics@gmx.at>
10376
10377 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
10378 making another buffer current. (Bug#10114)
10379
10380 2011-11-23 Glenn Morris <rgm@gnu.org>
10381
10382 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
10383
10384 2011-11-23 Chong Yidong <cyd@gnu.org>
10385
10386 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
10387 using it (Bug#5984).
10388
10389 2011-11-22 Eli Zaretskii <eliz@gnu.org>
10390
10391 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
10392 and header-lines, as they don't have one computed for them.
10393 (Bug#10098)
10394
10395 * .gdbinit (prow): Make displayed values more self-explaining.
10396 Add row's hash code.
10397
10398 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10399
10400 * process.c (wait_reading_process_output): Fix asynchrounous
10401 GnuTLS socket handling on some versions of the GnuTLS library.
10402 (wait_reading_process_output): Add comment and URL.
10403
10404 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
10405
10406 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
10407
10408 2011-11-21 Chong Yidong <cyd@gnu.org>
10409
10410 * window.c (Fnext_window, Fprevious_window): Doc fix.
10411
10412 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
10413
10414 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
10415
10416 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
10417
10418 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
10419
10420 2011-11-20 Martin Rudalics <rudalics@gmx.at>
10421
10422 * window.c (Fset_window_combination_limit): Rename argument
10423 STATUS to LIMIT.
10424 (Vwindow_combination_limit): Remove "status" from doc-string.
10425
10426 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
10427
10428 * m/ibms390.h: Remove.
10429 * m/ibms390x.h: Don't include "ibms390.h".
10430
10431 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
10432
10433 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
10434 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
10435
10436 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
10437
10438 * casetab.c (Fset_case_table):
10439 * charset.c (Fcharset_after): Fix typos.
10440
10441 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
10442
10443 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
10444 Otherwise, valgrind does not work on some platforms.
10445 Problem reported by Andreas Schwab in
10446 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
10447 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
10448 is set, removing the need for VIRT_ADDRESS_VARIES.
10449 (PURE_P): Use a more-efficient implementation that needs just one
10450 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
10451 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
10452 to 4 (xorl, subq, cmpq, setbe).
10453 * alloc.c (pure): Always extern now, since that's the
10454 VIRT_ADDR_VARIES behavior.
10455 (PURE_POINTER_P): Use a single comparison, not two, for
10456 consistency with the new puresize.h.
10457 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
10458 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
10459 Remove VIRT_ADDR_VARIES no longer needed.
10460
10461 2011-11-19 Eli Zaretskii <eliz@gnu.org>
10462
10463 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
10464 (erase_phys_cursor, update_window_cursor, show_mouse_face)
10465 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
10466 behave as if the cursor position were at the window margin.
10467
10468 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
10469 and the cursor position is out of bounds, behave as if the cursor
10470 position were at the window margin. (Bug#10075)
10471
10472 2011-11-18 Chong Yidong <cyd@gnu.org>
10473
10474 * window.c (Fwindow_combination_limit): Make first argument
10475 non-optional, since it is meaningless for live windows like the
10476 selected window.
10477
10478 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
10479
10480 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
10481
10482 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
10483
10484 * intervals.c: Fix grafting over the whole buffer (bug#10071).
10485 (graft_intervals_into_buffer): Simplify.
10486
10487 2011-11-18 Eli Zaretskii <eliz@gnu.org>
10488
10489 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
10490 hash values of the two rows.
10491 (copy_row_except_pointers): Preserve the used[] arrays and the
10492 hash values of the two rows. (Bug#10035)
10493 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
10494
10495 * xdisp.c (row_hash): New function, body extracted from
10496 compute_line_metrics.
10497 (compute_line_metrics): Call row_hash, instead of computing the
10498 hash code inline.
10499
10500 * dispnew.c (verify_row_hash): Call row_hash for computing the
10501 hash code of a row, instead of duplicating code from xdisp.c.
10502
10503 * dispextern.h (row_hash): Add prototype.
10504
10505 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
10506
10507 * frame.c (delete_frame): Don't delete the terminal when the last
10508 X frame is closed if emacs is built with GTK toolkit.
10509
10510 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
10511
10512 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
10513
10514 2011-11-17 Martin Rudalics <rudalics@gmx.at>
10515
10516 * window.c (Vwindow_splits): Rename to
10517 Vwindow_combination_resize. Suggested by Juri Linkov.
10518 (Fsplit_window_internal): Use Vwindow_combination_resize instead
10519 of Vwindow_splits.
10520
10521 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
10522
10523 * nsfns.m (Fns_font_name):
10524 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
10525
10526 2011-11-16 Martin Rudalics <rudalics@gmx.at>
10527
10528 * window.h (window): Rename slot "nest" to "combination_limit".
10529 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
10530 (Fset_window_nest): Rename to Fset_window_combination_limit.
10531 (Vwindow_nest): Rename to Vwindow_combination_limit.
10532 (recombine_windows, make_parent_window, make_window)
10533 (Fsplit_window_internal, saved_window)
10534 (Fset_window_configuration, save_window_save): Rename all
10535 occurrences of window_nest to window_combination_limit.
10536
10537 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
10538
10539 * image.c (imagemagick_load_image): Fix typo.
10540
10541 2011-11-14 Eli Zaretskii <eliz@gnu.org>
10542
10543 * xdisp.c (display_line): Move the call to
10544 highlight_trailing_whitespace before the call to
10545 compute_line_metrics, since the latter needs to see the final
10546 faces of all the glyphs to compute ROW's hash value.
10547 Fixes assertion violations in row_equal_p. (Bug#10035)
10548
10549 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
10550
10551 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
10552 just return (bug#10044).
10553
10554 2011-11-12 Eli Zaretskii <eliz@gnu.org>
10555
10556 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
10557 with user-defined heap size. Bump the default size of the temacs
10558 heap to 27MB, to avoid memory warning when running temacs.
10559 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
10560
10561 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
10562 current_matrix and desired_matrix. (Bug#9990)
10563 (verify_row_hash) [XASSERTS]: New function.
10564 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
10565 that the hash value of glyph rows is correct.
10566
10567 2011-11-12 Martin Rudalics <rudalics@gmx.at>
10568
10569 * window.h (window): Remove splits slot.
10570 * window.c (Fwindow_splits, Fset_window_splits): Remove.
10571 (Fdelete_other_windows_internal, make_parent_window)
10572 (make_window, Fsplit_window_internal, Fdelete_window_internal)
10573 (Fset_window_configuration, save_window_save): Don't deal with
10574 split status of windows.
10575 (saved_window): Remove splits slot.
10576 (Vwindow_splits): Rewrite doc-string.
10577
10578 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
10579
10580 * xfns.c (unwind_create_frame):
10581 * nsfns.m (unwind_create_frame):
10582 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
10583 Vframe_list (Bug#9999).
10584
10585 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
10586
10587 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
10588
10589 2011-11-11 Kenichi Handa <handa@m17n.org>
10590
10591 * callproc.c (Fcall_process): Set the member dst_multibyte of
10592 process_coding.
10593
10594 2011-11-11 Johan Bockgård <bojohan@gnu.org>
10595
10596 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
10597 avoid a crash (bug#9496).
10598
10599 2011-11-09 Chong Yidong <cyd@gnu.org>
10600
10601 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
10602 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
10603
10604 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
10605
10606 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
10607
10608 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
10609
10610 Avoid some portability problems by eschewing 'extern inline' functions.
10611 The trivial performance wins aren't worth the portability hassles; see
10612 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
10613 et seq.
10614 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
10615 (window_box_width, window_box_left, window_box_left_offset)
10616 (window_box_right, window_box_right_offset): Undo previous change,
10617 by removing the "extern"s.
10618 * intervals.c (adjust_intervals_for_insertion)
10619 (adjust_intervals_for_deletion): Undo previous change,
10620 making these static again.
10621 (offset_intervals, temp_set_point_both, temp_set_point)
10622 (copy_intervals_to_string): No longer inline.
10623 * xdisp.c (window_text_bottom_y, window_box_width)
10624 (window_box_height, window_box_left_offset)
10625 (window_box_right_offset, window_box_left, window_box_right)
10626 (window_box): No longer inline.
10627
10628 2011-11-08 Chong Yidong <cyd@gnu.org>
10629
10630 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
10631 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
10632 Signal an error if not a live window.
10633 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
10634 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
10635
10636 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
10637
10638 * lisp.h (syms_of_abbrev): Remove declaration.
10639 Reported by CHENG Gao <chenggao@royau.me>.
10640
10641 2011-11-07 Eli Zaretskii <eliz@gnu.org>
10642
10643 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
10644 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
10645 of temacs in GUI mode.
10646
10647 2011-11-07 Martin Rudalics <rudalics@gmx.at>
10648
10649 * window.h: Declare delete_all_child_windows instead of
10650 delete_all_subwindows.
10651 * window.c (Fwindow_nest, Fset_window_nest)
10652 (Fset_window_new_total, Fset_window_new_normal)
10653 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
10654 (delete_all_subwindows): Rename to delete_all_child_windows.
10655 (Fdelete_other_windows_internal, Fset_window_configuration):
10656 Call delete_all_child_windows instead of delete_all_subwindows.
10657 * frame.c (delete_frame): Call delete_all_child_windows instead
10658 of delete_all_subwindows.
10659
10660 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
10661
10662 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
10663 This is also needed for porting to any host where GC_MARK_STACK is
10664 not GC_MAKE_GCPROS_NOOPS.
10665 (which_symbols): Use it.
10666
10667 2011-11-07 Kenichi Handa <handa@m17n.org>
10668
10669 * coding.c (coding_set_destination): Check coding->src_pos only
10670 when coding->src_object is a buffer (bug#9910).
10671
10672 * process.c (send_process): Set the member src_multibyte of coding
10673 to 0 (bug#9911) when sending a unibyte text.
10674
10675 * callproc.c (Fcall_process): Set the member src_multibyte of
10676 process_coding to 0 (bug#9912).
10677
10678 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10679
10680 * xmenu.c (cleanup_widget_value_tree): New function.
10681 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
10682 calling free_menubar_widget_value_tree directly (Bug#9830).
10683
10684 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
10685
10686 Fix some portability problems with 'inline'.
10687 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
10688 (window_box_width, window_box_left, window_box_left_offset)
10689 (window_box_right, window_box_right_offset): Declare extern.
10690 Otherwise, these inline functions do not conform to C99 and
10691 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
10692 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
10693 * intervals.c (adjust_intervals_for_insertion)
10694 (adjust_intervals_for_deletion): Now extern, because otherwise the
10695 extern inline functions 'offset_intervals' couldn't refer to it.
10696 (static_offset_intervals): Remove.
10697 (offset_intervals): Rewrite using the old contents of
10698 static_offset_intervals. The old version didn't conform to C99
10699 because an extern inline function contained a reference to an
10700 identifier with static linkage.
10701
10702 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
10703
10704 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
10705 GC.
10706
10707 2011-11-06 Eli Zaretskii <eliz@gnu.org>
10708
10709 * xdisp.c (init_iterator, reseat_to_string): Don't set the
10710 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
10711 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
10712 return Qleft_to_right.
10713
10714 2011-11-06 Chong Yidong <cyd@gnu.org>
10715
10716 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
10717 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
10718 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
10719 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
10720 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
10721 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
10722 (Fwindow_vscroll): Doc fix.
10723 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
10724 argument, since it makes no sense to pass a live window and for
10725 consistency with window-child.
10726
10727 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
10728
10729 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
10730 support MSVC.
10731
10732 2011-11-05 Jason Rumney <jasonr@gnu.org>
10733
10734 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
10735 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
10736 fonts (Bug#6029).
10737 (add_font_entity_to_list): Fix logic errors in mixed boolean and
10738 bitwise arithmetic preventing use of unicode-sip and non-truetype
10739 opentype fonts.
10740
10741 2011-11-05 Eli Zaretskii <eliz@gnu.org>
10742
10743 * s/ms-w32.h (fstat, stat, utime): Move redirections to
10744 "emacs"-only part.
10745
10746 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
10747 initialization code to keep similarity to xfns.c after changes
10748 from 2011-11-05.
10749
10750 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
10751
10752 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
10753 (unwind_create_frame): New function (Bug#9943).
10754 (Fx_create_frame): Restructure code to be more similar to the one in
10755 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
10756 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
10757 Move terminal->reference_count++ just before making the frame official
10758 (Bug#9943).
10759
10760 * nsterm.m (x_free_frame_resources): New function.
10761 (x_destroy_window): Move code to x_free_frame_resources.
10762
10763 * xfns.c (unwind_create_frame): Fix comment.
10764 (Fx_create_frame, x_create_tip_frame):
10765 Move terminal->reference_count++ just before making the frame
10766 official. Move initialization of image_cache_refcount and
10767 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
10768
10769 2011-11-05 Eli Zaretskii <eliz@gnu.org>
10770
10771 Support MSVC build with newer versions of Visual Studio.
10772 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
10773 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
10774 nt/gmake.defs.
10775
10776 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
10777 which are not supported by MSVC.
10778 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
10779 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
10780 bitfields.
10781 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
10782 types in bitfields.
10783 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
10784
10785 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
10786
10787 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
10788
10789 Support MSVC build with newer versions of Visual Studio.
10790 * w32.c: Don't include w32api.h for MSVC.
10791 (init_environment) [_MSC_VER]: Call sys_access, not _access.
10792
10793 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
10794 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
10795 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
10796 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
10797 e_* cousins.
10798 (alloca) [_MSC_VER]: Define to _alloca.
10799
10800 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
10801
10802 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
10803
10804 2011-11-04 Eli Zaretskii <eliz@gnu.org>
10805
10806 * xdisp.c (note_mouse_highlight): If either of
10807 previous/next-single-property-change returns nil, treat that as
10808 the beginning or the end of the buffer. (Bug#9955)
10809
10810 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
10811
10812 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
10813 label is not null (Bug#9951).
10814 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
10815 may be NULL.
10816
10817 2011-11-04 Eli Zaretskii <eliz@gnu.org>
10818
10819 * window.c (Fwindow_body_size): Mention in the doc string that the
10820 return value is in frame's canonical units. (Bug#9949)
10821
10822 2011-11-03 Eli Zaretskii <eliz@gnu.org>
10823
10824 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
10825
10826 * w32fns.c (unwind_create_frame): If needed, free the glyph
10827 matrices of the partially constructed frame. (Bug#9943)
10828 * xfns.c (unwind_create_frame): Likewise.
10829
10830 2011-11-01 Eli Zaretskii <eliz@gnu.org>
10831
10832 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
10833 Don't stop backward scan on the continuation glyph, even though
10834 its CHARPOS is positive.
10835 (mouse_face_from_buffer_pos, note_mouse_highlight):
10836 Rename cover_string to disp_string.
10837
10838 2011-11-01 Martin Rudalics <rudalics@gmx.at>
10839
10840 * window.c (temp_output_buffer_show): Don't use
10841 Vtemp_buffer_show_specifiers.
10842 (Vtemp_buffer_show_specifiers): Remove unused variable.
10843
10844 2011-10-30 Eli Zaretskii <eliz@gnu.org>
10845
10846 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
10847 past the beginning of the current glyph matrix.
10848
10849 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
10850
10851 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
10852 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
10853 HAVE_GTK3 (Bug#9869).
10854
10855 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
10856 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
10857
10858 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
10859
10860 * xterm.c: Declare x_handle_net_wm_state to return int.
10861 (handle_one_xevent): Check if we are iconified but don't have
10862 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
10863 (get_current_wm_state): Return non-zero if not hidden,
10864 check for _NET_WM_STATE_HIDDEN (Bug#9893).
10865 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
10866 (x_handle_net_wm_state): Return what get_current_wm_state returns.
10867 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
10868
10869 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
10870
10871 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
10872 so that this new function doesn't get optimized away by a
10873 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
10874
10875 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
10876
10877 * frame.h (MOUSE_HL_INFO): Remove excess parens.
10878
10879 2011-10-29 Eli Zaretskii <eliz@gnu.org>
10880
10881 Fix the `xbytecode' command.
10882 * .gdbinit (xprintbytestr): New command.
10883 (xwhichsymbols): Rename from `which'; all callers changed.
10884 (xbytecode): Print the byte-code string as well.
10885
10886 2011-10-29 Kim Storm <storm@cua.dk>
10887
10888 * alloc.c (which_symbols): New function.
10889
10890 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
10891
10892 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
10893 line. (Bug#9903)
10894
10895 2011-10-29 Glenn Morris <rgm@gnu.org>
10896
10897 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
10898 Not clear what it was for, and it causes various bugs. (Bug#9839)
10899
10900 2011-10-28 Eli Zaretskii <eliz@gnu.org>
10901
10902 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
10903 possible random value that matches one of those tested as
10904 condition to clear the mouse face.
10905
10906 2011-10-28 Chong Yidong <cyd@gnu.org>
10907
10908 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
10909
10910 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
10911
10912 * window.c (make_window): Initialize phys_cursor_on_p.
10913
10914 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
10915
10916 * lisp.h (struct Lisp_Symbol): Update comments.
10917
10918 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
10919
10920 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
10921
10922 2011-10-28 Eli Zaretskii <eliz@gnu.org>
10923
10924 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
10925 <oslsachem@gmail.com> for helping to debug this.
10926
10927 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
10928 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
10929 (g_b_init_get_glyph_outline_w): New static variables.
10930 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
10931 (GetGlyphOutlineW_Proc): New typedefs.
10932 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
10933 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
10934 New functions.
10935 (w32font_open_internal, compute_metrics):
10936 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
10937 instead of calling the "wide" APIs directly.
10938
10939 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
10940
10941 * w32.h (syms_of_w32font): Add prototype.
10942
10943 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
10944
10945 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
10946 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
10947 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
10948 (Fmove_to_window_line): Doc fix.
10949
10950 2011-10-27 Chong Yidong <cyd@gnu.org>
10951
10952 * process.c (make_process): Set gnutls_state to NULL.
10953
10954 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
10955 non-NULL, regardless of GNUTLS_INITSTAGE.
10956 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
10957 an error. Set process slots as soon as we allocate them.
10958
10959 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
10960
10961 2011-10-27 Chong Yidong <cyd@gnu.org>
10962
10963 * gnutls.c (emacs_gnutls_deinit): New function.
10964 Deallocate credentials structures as well as calling gnutls_deinit.
10965 (Fgnutls_deinit, Fgnutls_boot): Use it.
10966
10967 * process.c (make_process): Initialize GnuTLS credentials to NULL.
10968 (deactivate_process): Call emacs_gnutls_deinit.
10969
10970 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
10971
10972 * image.c (x_create_x_image_and_pixmap):
10973 * w32.c (sys_rename, w32_delayed_load):
10974 * w32font.c (fill_in_logfont):
10975 * w32reg.c (x_get_string_resource): Silence compiler warnings.
10976
10977 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
10978
10979 * w32fns.c (w32_default_color_map): New function,
10980 extracted from Fw32_default_color_map.
10981 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
10982
10983 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
10984
10985 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
10986
10987 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
10988
10989 * keyboard.c (test_undefined): New function (bug#9751).
10990 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
10991
10992 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
10993
10994 * sysdep.c (init_sys_modes): Fix the check for the controlling
10995 terminal (Bug#6649).
10996
10997 2011-10-20 Eli Zaretskii <eliz@gnu.org>
10998
10999 * dispextern.h (struct bidi_it): New member next_en_type.
11000
11001 * bidi.c (bidi_line_init): Initialize the next_en_type member.
11002 (bidi_resolve_explicit_1): When next_en_pos is valid for the
11003 current character, check also for next_en_type being WEAK_EN.
11004 (bidi_resolve_weak): Don't enter the expensive loop if the current
11005 position is before next_en_pos. Record the bidi type of the first
11006 non-ET, non-BN character we find, in addition to its position.
11007 (bidi_level_of_next_char): Invalidate next_en_type when
11008 next_en_pos is over-stepped.
11009
11010 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
11011
11012 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
11013 * editfns.c: Rewrite current-time-zone so that it invokes
11014 the equivalent of (format-time-string "%Z") to get the time zone name.
11015 This fixes a bug when the time zone name contains characters that
11016 need converting from the system time locale to Emacs internal format.
11017 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
11018 that patch fixed format-time-string to do the conversion, but
11019 I forgot to fix current-time-zone.
11020 (format_time_string): New function, containing most of
11021 what Fformat_time_string used to contain.
11022 (Fformat_time_string): Rewrite in terms of format_time_string.
11023 This doesn't change this function's behavior.
11024 (current-time-zone): Rewrite to use format_time_string.
11025 This fixes the bug reported by Michael Schierl in
11026 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
11027 Jason Rumney's 2007-06-07 change worked around this bug, but
11028 didn't fix it.
11029 * systime.h (tzname, timezone): Remove no-longer-used declarations.
11030
11031 2011-10-19 Eli Zaretskii <eliz@gnu.org>
11032
11033 * xdisp.c (start_display): If the character at POS is displayed
11034 via a display vector, reset IT->current.dpvec_index to zero.
11035 (try_window_reusing_current_matrix): If a line ends in a display
11036 vector or the next line starts in a display vector, continue
11037 redrawing the window even though the character position of
11038 start_row was reached.
11039 (Bug#9771, part 2)
11040
11041 2011-10-18 Chong Yidong <cyd@gnu.org>
11042
11043 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
11044 with nobreak-char-display too.
11045
11046 2011-10-18 Eli Zaretskii <eliz@gnu.org>
11047
11048 Fix part 3 of bug#9771.
11049 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
11050 (bidi_resolve_neutral): Don't enter the expensive loop looking for
11051 non-neutral characters if the current character is a paragraph
11052 separator (a.k.a. Newline). This avoids running the same
11053 expensive loop twice, once when we consume the preceding newline
11054 and the other time when the line actually needs to be displayed.
11055 Avoid the loop when we see neutrals on the base embedding level
11056 following a character whose directionality is the same as the
11057 paragraph's. This avoids running the expensive loop when a line
11058 ends in a long sequence of neutrals, like control characters.
11059 Add assertion against STRONG_AL type. Slightly rearrange code
11060 that determines the type of a neutral given the first non-neutral
11061 that follows it.
11062 (bidi_level_of_next_char): Set next_en_pos to zero when
11063 invalidating its info.
11064
11065 2011-10-17 Eli Zaretskii <eliz@gnu.org>
11066
11067 * xdisp.c (push_display_prop): Determine whether to record string
11068 or buffer position by IT->string, not by IT->method. Allow
11069 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
11070 (move_it_vertically_backward): Don't look for character position
11071 immediately after the newline when in a continuation line.
11072 (Bug#9771, part 1)
11073
11074 2011-10-15 Martin Rudalics <rudalics@gmx.at>
11075
11076 * window.c (coordinates_in_window): Rewrite and delabelize
11077 vertical border check. (Bug#5357) (Bug#9618)
11078
11079 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11080
11081 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
11082 errors in XSetWindowBorder (bug#9310).
11083
11084 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
11085
11086 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
11087 avoid crash when xmalloc overrun checking is enabled.
11088
11089 2011-10-13 Eli Zaretskii <eliz@gnu.org>
11090
11091 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
11092 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
11093 cursor motion with <left> and <right> arrow keys.
11094
11095 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
11096 some callers set that themselves.
11097
11098 2011-10-12 Eli Zaretskii <eliz@gnu.org>
11099
11100 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
11101 display string and the previous row comes from the same string and
11102 is empty. (Bug#9739) (Bug#9738)
11103
11104 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
11105
11106 * doc.c (get_doc_string): Encode file name (bug#9735).
11107
11108 2011-10-12 Eli Zaretskii <eliz@gnu.org>
11109
11110 * bidi.c (bidi_level_of_next_char):
11111 * xdisp.c (get_visually_first_element): Remove old incorrect
11112 comments regarding the Unicode Line Separator character.
11113
11114 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
11115
11116 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
11117
11118 * alloc.c (Fgc_status): Do not access beyond zombies array
11119 boundary if nzombies > MAX_ZOMBIES.
11120 * alloc.c (dump_zombies): Add missing format specifier.
11121
11122 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
11123
11124 * xdisp.c (set_cursor_from_row): Simplify conditionals,
11125 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
11126
11127 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
11128 Some packages use them to denote characters with modifiers.
11129
11130 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
11131
11132 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
11133 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
11134 matching a pp-number. Rename parameter var to var1.
11135
11136 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
11137
11138 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
11139
11140 2011-10-08 Glenn Morris <rgm@gnu.org>
11141
11142 * callint.c (Fcall_interactively): Give a more explicit error for the
11143 'c' case with a non-character input. (Bug#8479)
11144
11145 2011-10-08 Eli Zaretskii <eliz@gnu.org>
11146
11147 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
11148 lines.
11149 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
11150 lines that are hscrolled on the left.
11151
11152 * dispnew.c (buffer_posn_from_coords): Account for a possible
11153 presence of header-line. (Bug#4426)
11154
11155 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
11156
11157 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
11158 Don't advertise functionality which we discourage or doesn't work.
11159
11160 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
11161
11162 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
11163 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
11164 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
11165 this makes Emacs dump core during garbage collection on rare
11166 occasions. sizeof is obviously inferior to offsetof here, so
11167 stick with offsetof.
11168 (GC_POINTER_ALIGNMENT): New macro.
11169 (mark_memory): Omit 3rd (offset) arg; caller changed.
11170 Don't assume EMACS_INT alignment is the same as pointer alignment.
11171
11172 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
11173
11174 * keyboard.c (read_key_sequence_remapped): New var.
11175 (read_key_sequence): Compute remapping in the right buffer.
11176 (command_loop_1): Use read_key_sequence's remapping directly.
11177
11178 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * dired.c (file_name_completion): Don't expand file name.
11181 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
11182 before checking file name handler.
11183
11184 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
11185 they've been requested explicitly (bug#9591).
11186
11187 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
11188
11189 * keymap.c (Fsingle_key_description): Use make_specified_string
11190 instead of build_string to build string from push_key_description.
11191 (Bug#5193)
11192
11193 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
11194
11195 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
11196 This fixes a Y2038 bug on 64-bit hosts.
11197 * buffer.c (reset_buffer):
11198 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
11199 (Fclear_buffer_auto_save_failure):
11200 Use 0, not -1, to represent an unset failure time, since time_t
11201 might not be signed.
11202
11203 Remove dependency on glibc malloc internals.
11204 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11205 Move back here from lisp.h, but with their new implementations.
11206 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11207 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
11208 * charset.c (charset_table_init): New static var.
11209 (syms_of_charset): Use it instead of xmalloc. This removes a
11210 dependency on glibc malloc internals. See Eli Zaretskii's comment in
11211 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
11212 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11213 Move back to alloc.c.
11214 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11215 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
11216
11217 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
11218
11219 * nsterm.m (windowDidResize): Call x_set_window_size only when
11220 ns_in_resize is true. Otherwise set pixelwidth/height and
11221 call change_frame_size (Bug#9628).
11222
11223 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
11224
11225 Port --enable-checking=all to Fedora 14 x86-64.
11226 * charset.c (syms_of_charset): Also account for glibc malloc's
11227 internal overhead when calculating the initial malloc maximum.
11228
11229 Port --enable-checking=all to Fedora 14 x86.
11230 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11231 Move to lisp.h.
11232 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
11233 (overrun_check_realloc, overrun_check_free):
11234 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
11235 That way, xmalloc returns a properly-aligned pointer even if
11236 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
11237 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
11238 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
11239 into account when calculating the initial malloc maximum.
11240 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11241 Move here from alloc.c, so that charset.c can use it too.
11242 Properly align; the old code wasn't right for common 32-bit hosts
11243 when configured with --enable-checking=all.
11244 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11245 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
11246
11247 2011-09-29 Eli Zaretskii <eliz@gnu.org>
11248
11249 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
11250 use EDOM.
11251
11252 2011-09-28 Eli Zaretskii <eliz@gnu.org>
11253
11254 * xdisp.c (compute_display_string_end): If there's no display
11255 string at CHARPOS, return -1.
11256
11257 * bidi.c (bidi_fetch_char): When compute_display_string_end
11258 returns a negative value, treat the character as a normal
11259 character not covered by a display string. (Bug#9624)
11260
11261 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
11262
11263 * lread.c (Fread_from_string): Fix typo in docstring.
11264
11265 2011-09-27 Eli Zaretskii <eliz@gnu.org>
11266
11267 * xdisp.c (handle_invisible_prop): If invisible text ends on a
11268 newline, reseat the iterator instead of bidi-iterating there one
11269 character at a time. (Bug#9610)
11270 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
11271 TO_CHARPOS if the bidi iterator is at base embedding level.
11272
11273 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
11274
11275 * lread.c (readevalloop): Use correct code for NBSP.
11276 (read1): Likewise. (Bug#9608)
11277
11278 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
11279
11280 * dbusbind.c (Fdbus_register_signal): When service is not
11281 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
11282
11283 2011-09-25 Glenn Morris <rgm@gnu.org>
11284
11285 * buffer.c (truncate-lines): Doc fix.
11286
11287 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
11288
11289 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
11290 (Fset_window_next_buffers): Doc fix.
11291
11292 2011-09-24 Glenn Morris <rgm@gnu.org>
11293
11294 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
11295
11296 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
11297
11298 Fix minor problems found by static checking.
11299 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
11300 * indent.c (Fvertical_motion): Fix == vs = typo.
11301
11302 2011-09-24 Eli Zaretskii <eliz@gnu.org>
11303
11304 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
11305 Default value is now t. Doc fix.
11306
11307 * indent.c (Fvertical_motion): Compute and apply the overshoot
11308 logic when moving up, not only when moving down. Fix the
11309 confusing name and values of the it_overshoot_expected variable;
11310 logic changes accordingly. (Bug#9254) (Bug#9549)
11311
11312 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
11313 CHARPOS is covered by a display string which includes newlines.
11314 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
11315 is covered by a display string with embedded newlines.
11316
11317 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
11318
11319 * dbusbind.c (Fdbus_register_signal): Add match rule to
11320 Vdbus_registered_objects_table. (Bug#9581)
11321 (Fdbus_register_method, Vdbus_registered_objects_table):
11322 Fix docstring.
11323
11324 2011-09-24 Jim Meyering <meyering@redhat.com>
11325
11326 do not ignore write error for any output size
11327 The previous change was incomplete.
11328 While it makes emacs --batch detect the vast majority of stdout
11329 write failures, errors were still ignored whenever the output size is
11330 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
11331 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
11332 && echo FAIL: ignored write error
11333 FAIL: ignored write error
11334 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
11335 && echo FAIL: ignored write error
11336 FAIL: ignored write error
11337 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
11338
11339 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
11340
11341 * emacs.c (Fkill_emacs): In noninteractive mode exit
11342 non-successfully if a write error occurred on stdout. (Bug#9574)
11343
11344 2011-09-21 Eli Zaretskii <eliz@gnu.org>
11345
11346 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
11347 the xassert test.
11348
11349 * dispextern.h (struct it): Update the comment documenting what
11350 can it->OBJECT be.
11351
11352 2011-09-20 Eli Zaretskii <eliz@gnu.org>
11353
11354 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
11355 a display string, extend search for cursor position to end of row.
11356 (find_row_edges): If the row ends in a newline from a display
11357 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
11358 Handle the case of a display string with multiple newlines.
11359 (Fcurrent_bidi_paragraph_direction): Fix search for previous
11360 non-empty line. Fixes confusing cursor motion with arrow keys at
11361 the beginning of a line that starts with whitespace.
11362
11363 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11364
11365 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
11366 (bug#9493).
11367
11368 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11369
11370 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
11371 boolean (Bug#9154).
11372
11373 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11374
11375 * xdisp.c (display_line): Record maximum and minimum buffer
11376 positions even if no glyphs were produced (e.g., by a zero-width
11377 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
11378 buffer positions that will be removed from the glyph row because
11379 they don't fit.
11380 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
11381 column is beyond frame width: don't subtract 1 "pixel" when
11382 computing width of the stretch.
11383 (reseat_at_next_visible_line_start): Undo the change made on
11384 2011-09-17 that saved paragraph information and restored it after
11385 the call to `reseat'. (Bug#9545)
11386
11387 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11388
11389 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
11390 and turn window cursor on if cleared (Bug#9415).
11391
11392 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
11393
11394 * search.c (boyer_moore): Take unibyte characters from pattern
11395 literally. (Bug#9458)
11396
11397 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11398
11399 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
11400
11401 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
11402
11403 Fix minor problem found by static checking.
11404 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
11405 initialized, to pacify gcc -Wuninitialized.
11406
11407 * fileio.c: Report proper errno when syscall falls.
11408 (Finsert_file_contents): Save and restore errno,
11409 so that report_file_error outputs the correct diagnostic.
11410 (Fwrite_region) [CLASH_DETECTION]: Likewise.
11411
11412 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11413
11414 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
11415
11416 2011-09-17 Eli Zaretskii <eliz@gnu.org>
11417
11418 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
11419 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
11420
11421 2011-09-17 Eli Zaretskii <eliz@gnu.org>
11422
11423 * xdisp.c (reseat_at_next_visible_line_start): Keep information
11424 about the current paragraph and restore it after the call to reseat.
11425
11426 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
11427 (bidi_find_paragraph_start): Search back for paragraph beginning
11428 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
11429 (bidi_move_to_visually_next): Only trigger paragraph-related
11430 computations when the last character is a newline or at EOB, not
11431 just any NEUTRAL_B. (Bug#9470)
11432
11433 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
11434 truncated lines if point is covered by a display string. (Bug#9524)
11435
11436 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
11437
11438 * xselect.c: Relax test for outgoing X longs (Bug#9498).
11439 (cons_to_x_long): New function.
11440 (lisp_data_to_selection_data): Use it. Correct the test for
11441 short-versus-long data; it was negated. Break out of vector
11442 loop, for efficiency, when a long datum is discovered.
11443
11444 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
11445
11446 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
11447
11448 2011-09-16 Eli Zaretskii <eliz@gnu.org>
11449
11450 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
11451 GCC PR/17406) by declaring this function with external scope.
11452
11453 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
11454
11455 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
11456 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
11457
11458 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
11459
11460 * editfns.c (Fformat): Correctly handle text properties on "%%".
11461
11462 2011-09-15 Eli Zaretskii <eliz@gnu.org>
11463
11464 * xterm.c (x_draw_composite_glyph_string_foreground):
11465 * w32term.c (x_draw_composite_glyph_string_foreground):
11466 * term.c (encode_terminal_code):
11467 * composite.c (composition_update_it, get_composition_id):
11468 * xdisp.c (get_next_display_element)
11469 (fill_composite_glyph_string): Add comments about special meaning
11470 of TAB characters in a composition.
11471
11472 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
11473
11474 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
11475 This occurs when processing a multibyte format.
11476 Problem reported by Wolfgang Jenker.
11477
11478 2011-09-15 Johan Bockgård <bojohan@gnu.org>
11479
11480 * xdisp.c (try_cursor_movement): Only check for exact match if
11481 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
11482
11483 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
11484
11485 Remove unused external symbols.
11486 * dispextern.h (calc_pixel_width_or_height): Remove decl.
11487 * xdisp.c (calc_pixel_width_or_height): Now static.
11488 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
11489 * indent.c (check_display_width):
11490 * w32term.c: Fix comment to match code.
11491 * xterm.c, xterm.h (x_catching_errors): Remove.
11492
11493 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
11494
11495 * xselect.c: Use signed conversions more consistently (Bug#9498).
11496 (selection_data_to_lisp_data): Assume incoming selection data are
11497 signed integers, not unsigned. This is to be consistent with
11498 outgoing selection data, which was modified to use signed integers
11499 in as part of the fix to Bug#9196 in response to Jan D.'s comment
11500 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
11501 expects long, not unsigned long.
11502
11503 2011-09-14 Eli Zaretskii <eliz@gnu.org>
11504
11505 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
11506 computation of loop end. Reported by Johan Bockgård
11507 <bojohan@gnu.org>.
11508
11509 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11510
11511 * frame.c (Fother_visible_frames_p): Function deleted.
11512
11513 2011-09-12 Eli Zaretskii <eliz@gnu.org>
11514
11515 * indent.c (compute_motion): Process display vector front to back
11516 rather than the other way around. (Bug#2496)
11517
11518 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
11519
11520 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
11521
11522 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11523
11524 * minibuf.c (Fread_from_minibuffer): Doc fix.
11525
11526 2011-09-11 Eli Zaretskii <eliz@gnu.org>
11527
11528 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
11529 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
11530
11531 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11532
11533 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
11534 value for non-existent files.
11535
11536 2011-09-11 Eli Zaretskii <eliz@gnu.org>
11537
11538 * fileio.c (Finsert_file_contents): If the file cannot be opened,
11539 set its "size" to -1. This will set the modtime_size field of
11540 the corresponding buffer to -1, which is what
11541 verify-visited-file-modtime expects for files that do not exist.
11542 (Bug#9139)
11543
11544 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
11545
11546 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
11547 here ...
11548 * lisp.h: ... from here. push_key_description is no longer
11549 defined in keyboard.c, so its declaration should not be in
11550 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
11551 logically belongs with push_key_description.
11552
11553 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
11554
11555 * buffer.h: Include <sys/types.h> instead of <time.h>.
11556 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
11557 Problem reported by Herbert J. Skuhra.
11558
11559 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
11560
11561 * xml.c (parse_region): Make the parsing work for
11562 non-comment-starting XML files again (bug#9144).
11563
11564 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
11565
11566 * image.c (gif_load): Fix calculation of bottom and right corner.
11567 (Bug#9468)
11568
11569 2011-09-10 Eli Zaretskii <eliz@gnu.org>
11570
11571 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
11572 redisplay in small windows.
11573
11574 2011-09-09 Eli Zaretskii <eliz@gnu.org>
11575
11576 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
11577
11578 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11579
11580 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
11581 Operate on live windows only.
11582
11583 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
11584
11585 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
11586
11587 2011-09-07 Eli Zaretskii <eliz@gnu.org>
11588
11589 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
11590 only under bidi iteration.
11591
11592 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
11593
11594 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
11595
11596 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11597
11598 isnan: Fix porting problem to Solaris 10 with bundled gcc.
11599 Without this fix, the command to link temacs failed due to an
11600 undefined symbol __builtin_isnan. This is because
11601 /usr/include/iso/math_c99.h #defines isnan(x) to
11602 __builtin_isnan(x), but the bundled gcc, which identifies itself
11603 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
11604 a __builtin_isnan.
11605 * floatfns.c (isnan): #undef, and then #define to a clone of
11606 what's in data.c.
11607 (Fisnan): Always define, since it's always available now.
11608 (syms_of_floatfns): Always define isnan at the Lisp level.
11609
11610 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11611
11612 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
11613
11614 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11615
11616 * fileio.c: Fix bugs with large file offsets (Bug#9428).
11617 The previous code assumed that file offsets (off_t values) fit in
11618 EMACS_INT variables, which is not true on typical 32-bit hosts.
11619 The code messed up by falsely reporting buffer overflow in cases
11620 such as (insert-file-contents "big" nil 1 2) into an empty buffer
11621 when "big" contains more than 2**29 bytes, even though this
11622 inserts just one byte and does not overflow the buffer.
11623 (Finsert_file_contents): Store file offsets as off_t
11624 values, not as EMACS_INT values. Check for overflow when
11625 converting between EMACS_INT and off_t. When checking for
11626 buffer overflow or for overlap, take the offsets into account.
11627 Don't use EMACS_INT for small values where int suffices.
11628 When checking for overlap, fix a typo: ZV was used where
11629 ZV_BYTE was intended.
11630 (Fwrite_region): Don't assume off_t fits into 'long'.
11631 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
11632
11633 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
11634
11635 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
11636
11637 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
11638
11639 sprintf-related integer and memory overflow issues (Bug#9412).
11640
11641 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
11642 (esprintf, exprintf, evxprintf): New functions.
11643 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
11644 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
11645 (modify_event_symbol): Do not assume that the length of
11646 name_alist_or_stem is safe to alloca and fits in int.
11647 (Fexecute_extended_command): Likewise for function name and binding.
11648 (Frecursion_depth): Wrap around reliably on integer overflow.
11649 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
11650 since some callers pass EMACS_INT values.
11651 (Fsingle_key_description): Don't crash if symbol name contains more
11652 than MAX_ALLOCA bytes.
11653 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
11654 (get_minibuffer): Arg is now EMACS_INT, not int.
11655 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
11656 (esprintf, exprintf, evxprintf): New decls.
11657 * window.h (command_loop_level, minibuf_level): Reflect API changes.
11658
11659 * dbusbind.c (signature_cat): New function.
11660 (xd_signature, Fdbus_register_signal):
11661 Do not overrun buffer; instead, report string overflow.
11662
11663 * dispnew.c (add_window_display_history): Don't overrun buffer.
11664 Truncate instead; this is OK since it's just a log.
11665
11666 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
11667 even if the time zone offset is outlandishly large.
11668 Don't mishandle offset == INT_MIN.
11669
11670 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
11671 when creating daemon; the previous buffer-overflow check was incorrect.
11672
11673 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
11674 which has the guts of the old verror function.
11675
11676 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
11677 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
11678
11679 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
11680 (font_unparse_xlfd): Don't blindly alloca long strings.
11681 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
11682 fits in int, when using sprintf. Use single snprintf to count
11683 length of string rather than counting it via multiple sprintfs;
11684 that's simpler and more reliable.
11685 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
11686 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
11687 sprintf, in case result does not fit in int.
11688
11689 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
11690 (fontset_from_font): Print it.
11691
11692 * frame.c (tty_frame_count): Now printmax_t, not int.
11693 (make_terminal_frame, set_term_frame_name): Print it.
11694 (x_report_frame_params): In X, window IDs are unsigned long,
11695 not signed long, so print them as unsigned.
11696 (validate_x_resource_name): Check for implausibly long names,
11697 and don't assume name length fits in 'int'.
11698 (x_get_resource_string): Don't blindly alloca invocation name;
11699 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
11700 not fit in int.
11701
11702 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
11703 (xg_check_special_colors, xg_set_geometry):
11704 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
11705
11706 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
11707 Use esprintf, not sprintf, in case result does not fit in int.
11708
11709 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
11710 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
11711 it as a large positive number.
11712 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
11713 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
11714
11715 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
11716 in case result does not fit in int.
11717
11718 * print.c (float_to_string): Detect width overflow more reliably.
11719 (print_object): Make sprintf buffer a bit bigger, to avoid potential
11720 buffer overrun. Don't assume list length fits in 'int'. Treat
11721 print length of 0 as 0, not as infinity; to be consistent with other
11722 uses of print length in this function. Don't overflow print length
11723 index. Don't assume hash table size fits in 'long', or that
11724 vectorlike size fits in 'unsigned long'.
11725
11726 * process.c (make_process): Use printmax_t, not int, to format
11727 process-name gensyms.
11728
11729 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
11730
11731 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
11732 to avoid potential buffer overrun.
11733
11734 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
11735 if X resource line is longer than 512 bytes.
11736
11737 * xfns.c (x_window): Make sprintf buffer a bit bigger
11738 to avoid potential buffer overrun.
11739
11740 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
11741
11742 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
11743
11744 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
11745
11746 Integer overflow fixes for scrolling, etc.
11747 Without these, Emacs silently mishandles large integers sometimes.
11748 For example, "C-u 4294967297 M-x recenter" was treated as if
11749 it were "C-u 1 M-x recenter" on a typical 64-bit host.
11750
11751 * xdisp.c (try_window_id): Check Emacs fixnum range before
11752 converting to 'int'.
11753
11754 * window.c (window_scroll_line_based, Frecenter):
11755 Check that an Emacs fixnum is in range before assigning it to 'int'.
11756 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
11757 values converted from Emacs fixnums.
11758 (Frecenter): Don't wrap around a line count if it is out of 'int'
11759 range; instead, treat it as an extreme value.
11760 (Fset_window_configuration, compare_window_configurations):
11761 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
11762
11763 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
11764 that can exceed INT_MAX. Check that EMACS_INT value is in range
11765 before assigning it to the (possibly-narrower) index.
11766 (match_limit): Don't assume that a fixnum can fit in 'int'.
11767
11768 * print.c (print_object): Use ptrdiff_t, not int, for index that can
11769 exceed INT_MAX.
11770
11771 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
11772 (Fvertical_motion): Don't wrap around LINES values that don't fit
11773 in 'int'. Instead, treat them as extreme values. This is good
11774 enough for windows, which can't have more than INT_MAX lines anyway.
11775
11776 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11777
11778 * Require libxml/parser.h to avoid compilation warning.
11779
11780 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
11781
11782 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
11783 since this reportedly can destroy thread storage.
11784
11785 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
11786
11787 * syntax.c (find_defun_start): Update all cache variables if
11788 exiting early (Bug#9401).
11789
11790 2011-08-30 Eli Zaretskii <eliz@gnu.org>
11791
11792 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
11793
11794 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
11795 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
11796 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
11797
11798 * term.c (tty_append_glyph): New function.
11799 (produce_stretch_glyph): Static function and its prototype deleted.
11800
11801 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
11802 Add prototypes.
11803
11804 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
11805
11806 * image.c (parse_image_spec): Check for nonnegative, not for positive,
11807 when checking :margin (Bug#9390).
11808 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
11809 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
11810 so that the name doesn't mislead. All uses changed.
11811
11812 2011-08-28 Johan Bockgård <bojohan@gnu.org>
11813
11814 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
11815 set_tty_hooks.
11816
11817 2011-08-27 Eli Zaretskii <eliz@gnu.org>
11818
11819 * xdisp.c (move_it_to): Don't bail out early when reaching
11820 position beyond to_charpos, if we are scanning backwards.
11821 (move_it_vertically_backward): When DY == 0, make sure we get to
11822 the first character in the line after the newline.
11823
11824 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
11825
11826 * ccl.c: Improve and simplify overflow checking (Bug#9196).
11827 (ccl_driver): Do not generate an out-of-range pointer.
11828 (Fccl_execute_on_string): Remove unnecessary check for
11829 integer overflow, noted by Stefan Monnier in
11830 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
11831 Remove a FIXME that didn't need fixing.
11832 Simplify the newly-introduced buffer reallocation code.
11833
11834 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
11835
11836 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
11837
11838 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
11839
11840 Integer and memory overflow issues (Bug#9196).
11841
11842 * doc.c (get_doc_string): Rework so that
11843 get_doc_string_buffer_size is the actual buffer size, rather than
11844 being 1 less than the actual buffer size; this makes xpalloc more
11845 convenient.
11846
11847 * image.c (x_allocate_bitmap_record, cache_image):
11848 * xselect.c (Fx_register_dnd_atom):
11849 Simplify previous changes by using xpalloc.
11850
11851 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
11852 since either will do and ptrdiff_t is convenient with xpalloc.
11853
11854 * charset.c (charset_table_size)
11855 (struct charset_sort_data.priority): Now ptrdiff_t.
11856 (charset_compare): Don't overflow if priorities differ greatly.
11857 (Fsort_charsets): Don't assume list length fits in int.
11858 Check for size-calculation overflow when allocating sort data.
11859 (syms_of_charset): Allocate an initial charset table that is
11860 just under 64 KiB, to avoid problems with glibc malloc and mmap.
11861
11862 * cmds.c (internal_self_insert): Check for size-calculation overflow.
11863
11864 * composite.h (struct composition.glyph_len): Now int, not unsigned.
11865 The actual value is always <= INT_MAX, and leaving it unsigned made
11866 overflow checking harder.
11867
11868 * dispextern.h (struct glyph_matrix.rows_allocated)
11869 (struct face_cache.size): Now ptrdiff_t, for convenience in use
11870 with xpalloc. The values are still always <= INT_MAX.
11871
11872 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
11873
11874 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
11875 (SAFE_NALLOCA): New macro.
11876
11877 * region-cache.c (struct boundary.pos, find_cache_boundary)
11878 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
11879 (set_cache_region, invalidate_region_cache)
11880 (revalidate_region_cache, know_region_cache, region_cache_forward)
11881 (region_cache_backward, pp_cache):
11882 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
11883 so that ptrdiff_t * can be passed to xpalloc.
11884 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
11885 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
11886 (pp_cache): Don't assume cache_len fits in int.
11887 * region-cache.h: Adjust extern decls to match.
11888
11889 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
11890 EMACS_INT, since either will do, for xpalloc.
11891
11892 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
11893 (xnmalloc, xnrealloc, xpalloc): New functions.
11894
11895 * bidi.c (bidi_shelve_header_size): New constant.
11896 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
11897 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
11898
11899 * bidi.c (bidi_cache_shrink):
11900 * buffer.c (overlays_at, overlays_in, record_overlay_string)
11901 (overlay_strings):
11902 Don't update size of array until after memory allocation succeeds,
11903 because xmalloc/xrealloc may not return.
11904 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
11905 now that we have proper integer overflow checking.
11906 (record_overlay_string, overlay_strings): Catch overflows when
11907 calculating size of overlay_str_buf.
11908
11909 * callproc.c (Fcall_process): Check for size overflow when
11910 calculating size of args2.
11911 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
11912 Normally we prefer signed values, but sticking with ptrdiff_t would
11913 require adding more-complicated checks.
11914
11915 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
11916 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
11917 Redo buffer-overflow calculations to avoid integer overflow.
11918 Add a FIXME comment where memory seems to be over-allocated.
11919
11920 * character.c (Fstring): Check for size-calculation overflow.
11921
11922 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
11923 unnecessary integer overflow. Check for size overflow.
11924 (encode_coding_object): Don't update size until xmalloc succeeds.
11925
11926 * composite.c (get_composition_id): Check for overflow in glyph
11927 length calculations.
11928
11929 Integer and memory overflow fixes for display code.
11930 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
11931 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
11932 (scrolling_window): Check for overflow in size calculations.
11933 (line_draw_cost, realloc_glyph_pool, add_row_entry):
11934 Don't assume glyph table len fits in int.
11935 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
11936 (row_table_size): Now ptrdiff_t, not int.
11937 (scrolling_window): Avoid overflow in size calculations.
11938 Don't update size until allocation succeeds.
11939 * fns.c (concat): Check for overflow in size calculations.
11940 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
11941 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
11942 (NEXT_ALMOST_PRIME_LIMIT): New constant.
11943
11944 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
11945 (get_doc_string): Check for size calculation overflow.
11946 Don't update size until allocation succeeds.
11947 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
11948 EMACS_INT, where ptrdiff_t will do.
11949 (Fsubstitute_command_keys): Check for string overflow.
11950
11951 * editfns.c (set_time_zone_rule): Don't assume environment length
11952 fits in int.
11953 (message_length): Now ptrdiff_t, not int.
11954 (Fmessage_box): Don't update size until allocation succeeds.
11955 Don't assume message length fits in int.
11956 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
11957
11958 * emacs.c (main): Do not reallocate argv, since there is a null at
11959 the end that can be overwritten, and this way there's no need to
11960 worry about size-calculation overflow.
11961 (sort_args): Check for size-calculation overflow.
11962
11963 * eval.c (init_eval_once, grow_specpdl): Don't update size until
11964 alloc succeeds.
11965 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
11966
11967 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
11968 (x_set_scroll_bar_width, x_figure_window_size):
11969 Check for integer overflow.
11970 (x_set_alpha): Do not assume XINT fits in int.
11971
11972 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
11973 This is for the members text_lines, text_cols, total_lines, total_cols,
11974 where the system imposes an 'int' limit.
11975
11976 * fringe.c (Fdefine_fringe_bitmap):
11977 Don't update size until alloc works.
11978
11979 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
11980 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
11981
11982 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
11983 Check for size-calculation overflow.
11984 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
11985 do, as we prefer signed integers.
11986 (id_to_widget.max_size, id_to_widget.used)
11987 (xg_store_widget_in_map, xg_remove_widget_from_map)
11988 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
11989 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
11990 Use and return ptrdiff_t, not int.
11991 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
11992 * gtkutil.h: Change prototypes to match the above.
11993
11994 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
11995 are duplicate now that they've been promoted to lisp.h.
11996 (x_allocate_bitmap_record, x_alloc_image_color)
11997 (make_image_cache, cache_image, xpm_load):
11998 Don't update size until alloc is done.
11999 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
12000 (x_detect_edges):
12001 Check for size calculation overflow.
12002 (ct_colors_allocated_max): New constant.
12003 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
12004 overflow.
12005
12006 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
12007 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
12008 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
12009 Use ptrdiff_t, not int, to count maps.
12010 (read_char_minibuf_menu_prompt): Check for overflow in size
12011 calculations. Don't update size until allocation succeeds.
12012 Redo calculations to avoid overflow.
12013 * keyboard.h: Change prototypes to match the above.
12014
12015 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
12016 to count maps.
12017 (current_minor_maps): Check for size calculation overflow.
12018 * keymap.h: Change prototypes to match the above.
12019
12020 * lread.c (read1, init_obarray): Don't update size until alloc done.
12021
12022 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
12023 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
12024
12025 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
12026 Now ptrdiff_t, not int.
12027 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
12028 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
12029
12030 * process.c (Fnetwork_interface_list): Check for overflow
12031 in size calculation.
12032
12033 * region-cache.c (move_cache_gap): Check for size calculation overflow.
12034
12035 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
12036 overflow. Don't bother calling xmalloc when xrealloc will do.
12037
12038 * search.c (Freplace_match): Check for size calculation overflow.
12039 (Fset_match_data): Don't assume list lengths fit in 'int'.
12040
12041 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
12042 for command line length. Do not attempt to address one before the
12043 beginning of an array, as that's not portable.
12044
12045 * term.c (max_frame_lines): Remove; unused.
12046 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
12047 not int.
12048 (encode_terminal_code, calculate_costs): Check for size
12049 calculation overflow.
12050 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
12051 table lengths and related sizes. Don't update size until alloc
12052 done. Redo calculations to avoid overflow.
12053 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
12054
12055 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
12056 subtracting pointers.
12057 (gobble_line): Check for overflow more carefully. Don't update size
12058 until alloc done.
12059
12060 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
12061 Don't update size until alloc done.
12062 Redo size calculations to avoid overflow.
12063 Check for size calculation overflow.
12064 (main) [DEBUG]: Fix typo in invoking tparam1.
12065
12066 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
12067 Use ptrdiff_t, not int, for sizes.
12068 (store_mode_line_noprop_char): Don't update size until alloc done.
12069
12070 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
12071 Use ptrdiff_t, not int, for sizes.
12072 (Finternal_make_lisp_face, cache_face):
12073 Check for size calculation overflow.
12074 (cache_face): Treat size calculation overflows as if they were
12075 memory exhaustion (the usual treatment), rather than aborting.
12076
12077 * xfns.c (x_encode_text, x_set_name_internal)
12078 (Fx_change_window_property): Use ptrdiff_t, not int, to count
12079 sizes, since they can exceed INT_MAX in size. Check for size
12080 calculation overflow.
12081
12082 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
12083 (xg_select): Check for size calculation overflow.
12084 Don't update size until alloc done.
12085
12086 * xrdb.c (get_environ_db): Don't assume path length fits in int,
12087 as sprintf is limited to int lengths.
12088
12089 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
12090 (X_LONG_MIN): New macros.
12091 Use them to make the following changes clearer.
12092 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
12093 This change doesn't affect the value now, but it may help remind
12094 future maintainers not to raise the value too much later.
12095 (SELECTION_QUANTUM): Remove, replacing with ...
12096 (selection_quantum): ... new function, which avoids overflow.
12097 All uses changed.
12098 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
12099 assumption that selection length fits in 'int'.
12100 (x_reply_selection_request, x_handle_selection_request)
12101 (x_get_window_property, receive_incremental_selection)
12102 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
12103 (lisp_data_to_selection_data, clean_local_selection_data):
12104 Use ptrdiff_t, not int, to record length of selection.
12105 (x_reply_selection_request, x_get_window_property)
12106 (receive_incremental_selection, x_property_data_to_lisp):
12107 Redo calculations to avoid overflow.
12108 (x_reply_selection_request): When sending hint, ceiling it at
12109 X_LONG_MAX rather than relying on wraparound overflow to send
12110 something.
12111 (x_get_window_property, receive_incremental_selection)
12112 (lisp_data_to_selection_data, x_property_data_to_lisp):
12113 Check for size-calculation overflow.
12114 (x_get_window_property, receive_incremental_selection)
12115 (lisp_data_to_selection_data, Fx_register_dnd_atom):
12116 Don't store size until memory allocation succeeds.
12117 (x_get_window_property): Plug memory leak on memory exhaustion.
12118 Don't double-block input; malloc is safe here. Don't assume 2**34
12119 - 4 fits in unsigned long. Add an xassert to check
12120 XGetWindowProperty overflow. Be more careful about overflow
12121 calculations, and distinguish size from memory overflow better.
12122 (receive_incremental_selection): When tracing, don't assume
12123 unsigned int is less than INT_MAX.
12124 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
12125 harmful) conversions of unsigned short to int.
12126 (lisp_data_to_selection_data): Don't assume that integers
12127 in the range -65535 through -1 fit in an X unsigned short.
12128 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
12129 result parameters unless successful. Rely on cons_to_unsigned
12130 to report problems with elements; the old code wasn't right anyway.
12131 (x_check_property_data): Check for int overflow; we cannot use
12132 a wider type due to X limits.
12133 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
12134
12135 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
12136
12137 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
12138 (x_term_init): Check for size calculation overflow.
12139 (x_color_cells): Don't store size until memory allocation succeeds.
12140 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
12141 Don't assume alloca size is less than MAX_ALLOCA.
12142 (x_term_init): Don't assume length fits in int (sprintf is limited
12143 to int size).
12144
12145 Use ptrdiff_t for composition IDs.
12146 * character.c (lisp_string_width):
12147 * composite.c (composition_table_size, n_compositions)
12148 (get_composition_id, composition_gstring_from_id):
12149 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
12150 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
12151 * window.c (Frecenter):
12152 Use ptrdiff_t, not int, for composition IDs.
12153 * composite.c (get_composition_id): Check for integer overflow.
12154 * composite.h: Adjust prototypes to match the above changes.
12155
12156 Use ptrdiff_t for hash table indexes.
12157 * category.c (hash_get_category_set):
12158 * ccl.c (ccl_driver):
12159 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
12160 * coding.c (coding_system_charset_list, detect_coding_system):
12161 * coding.h (struct coding_system.id):
12162 * composite.c (get_composition_id, gstring_lookup_cache):
12163 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
12164 * image.c (xpm_get_color_table_h):
12165 * lisp.h (hash_lookup, hash_put):
12166 * minibuf.c (Ftest_completion):
12167 Use ptrdiff_t for hash table indexes, not int (which is too
12168 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
12169 32-bit --with-wide-int hosts).
12170
12171 * charset.c (Fdefine_charset_internal): Check for integer overflow.
12172 Add a FIXME comment about memory leaks.
12173 (syms_of_charset): Don't assume xmalloc returns.
12174
12175 Don't assume that stated character widths fit in int.
12176 * character.c (Fchar_width, c_string_width, lisp_string_width):
12177 * character.h (CHAR_WIDTH):
12178 * indent.c (MULTIBYTE_BYTES_WIDTH):
12179 Use sanitize_char_width to avoid undefined and/or bad behavior
12180 with outlandish widths.
12181 * character.h (sanitize_tab_width): Rename from sanitize_width,
12182 now that we have two such functions. All uses changed.
12183 (sanitize_char_width): New inline function.
12184
12185 Don't assume that tab-width fits in int.
12186 * character.h (sanitize_width): New inline function.
12187 (SANE_TAB_WIDTH): New macro.
12188 (ASCII_CHAR_WIDTH): Use it.
12189 * indent.c (sane_tab_width): Remove. All uses replaced by
12190 SANE_TAB_WIDTH (current_buffer).
12191 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
12192
12193 * fileio.c: Integer overflow issues with file modes.
12194 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
12195
12196 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
12197 Remove unreachable code.
12198 (read_hex, load_charset_map_from_file): Check for integer overflow.
12199
12200 * xterm.c: Don't go over XClientMessageEvent limit.
12201 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
12202 (x_send_scroll_bar_event): Likewise. Check that the size does not
12203 exceed limits imposed by XClientMessageEvent, as well as the usual
12204 ptrdiff_t and size_t limits.
12205
12206 * keyboard.c: Overflow, signedness and related fixes.
12207 (make_lispy_movement): Use same integer type in forward decl
12208 that is used in the definition.
12209 (read_key_sequence, keyremap_step):
12210 Change bufsize argument back to int, undoing my 2011-03-30 change.
12211 We prefer signed types, and int is wide enough here.
12212 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
12213 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
12214 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
12215 length, not size_t. Use ptrdiff_t for index, not int.
12216 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
12217 possibility of integer overflow.
12218
12219 Overflow, signedness and related fixes for images.
12220
12221 * dispextern.h (struct it.stack[0].u.image.image_id)
12222 (struct_it.image_id, struct image.id, struct image_cache.size)
12223 (struct image_cache.used, struct image_cache.ref_count):
12224 * gtkutil.c (update_frame_tool_bar):
12225 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
12226 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
12227 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
12228 * nsmenu.m (update_frame_tool_bar):
12229 * xdisp.c (calc_pixel_width_or_height):
12230 * xfns.c (image_cache_refcount):
12231 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
12232 on typical 64-bit hosts.
12233
12234 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
12235 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
12236 Omit unnecessary casts to int.
12237 (parse_image_spec): Check that integers fall into 'int' range
12238 when the callers expect that.
12239 (image_ascent): Redo ascent calculation to avoid int overflow.
12240 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
12241 (lookup_image): Remove unnecessary tests.
12242 (xbm_image_p): Locals are now of int, not EMACS_INT,
12243 since parse_image_check makes sure they fit into int.
12244 (png_load, gif_load, svg_load_image):
12245 Prefer int to unsigned where either will do.
12246 (tiff_handler): New function, combining the cores of the
12247 old tiff_error_handler and tiff_warning_handler.
12248 This function is rewritten to use vsnprintf and thereby avoid
12249 stack buffer overflows. It uses only the features of vsnprintf
12250 that are common to both POSIX and native Microsoft.
12251 (tiff_error_handler, tiff_warning_handler): Use it.
12252 (tiff_load, gif_load, imagemagick_load_image):
12253 Don't assume :index value fits in 'int'.
12254 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
12255 (imagemagick_load_image): Check that crop parameters fit into
12256 the integer types that MagickCropImage accepts. Don't assume
12257 Vimagemagick_render_type has a nonnegative value. Don't assume
12258 size_t fits in 'long'.
12259 (gs_load): Use printmax_t to print the widest integers possible.
12260 Check for integer overflow when computing image height and width.
12261
12262 2011-08-26 Eli Zaretskii <eliz@gnu.org>
12263
12264 * xdisp.c (redisplay_window): Don't force window start if point
12265 will be invisible in the resulting window. (Bug#9324)
12266
12267 2011-08-25 Eli Zaretskii <eliz@gnu.org>
12268
12269 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
12270 the display spec is of the form `(space ...)'.
12271 (handle_display_spec): Return the value returned by
12272 handle_single_display_spec, not just 1 or zero.
12273 (handle_single_display_spec): If the display spec is of the form
12274 `(space ...)', and specifies display in the text area, return 2
12275 rather than 1.
12276 (try_cursor_movement): Check for the need to scroll more
12277 accurately, and prefer exact match for point under bidi.
12278 Don't advance `row' beyond the last row of the window.
12279
12280 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
12281 into disp_prop; all users changed.
12282
12283 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
12284 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
12285 for the text covered by the display property.
12286
12287 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
12288
12289 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
12290 Change return value to nil.
12291 (Frecord_buffer): Delete unused function.
12292
12293 2011-08-24 Eli Zaretskii <eliz@gnu.org>
12294
12295 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
12296 buffers, return left-to-right.
12297 (set_cursor_from_row): Consider candidate row a win if its glyph
12298 represents a newline and point is on that newline. Fixes cursor
12299 positioning on the newline at EOL of R2L text within L2R
12300 paragraph, and vice versa.
12301 (try_cursor_movement): Check continued rows, in addition to
12302 continuation rows. Fixes unwarranted scroll when point enters a
12303 continued line of R2L text within an L2R paragraph, or vice versa.
12304 (cursor_row_p): Consider the case of point being equal to
12305 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
12306 from the end of a short line to the beginning of a continued line
12307 of R2L text within L2R paragraph.
12308 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
12309 composed characters.
12310
12311 * bidi.c (bidi_check_type): Use xassert.
12312 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
12313 members.
12314
12315 2011-08-23 Eli Zaretskii <eliz@gnu.org>
12316
12317 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
12318 a character.
12319
12320 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
12321
12322 * nsfont.m (ns_otf_to_script): Fix typo.
12323
12324 2011-08-22 Kenichi Handa <handa@m17n.org>
12325
12326 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
12327 extra slot even if the purpose is char-code-property-table.
12328
12329 2011-08-23 Eli Zaretskii <eliz@gnu.org>
12330
12331 * xdisp.c (redisplay_window): When computing centering_position,
12332 account for the height of the header line. (Bug#8874)
12333
12334 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
12335 instead of CHAR_TO_BYTE. Fixes a crash when a completion
12336 candidate is selected by the mouse, and that candidate has a
12337 composed character under the mouse.
12338
12339 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
12340 coordinates reported by pos-visible-in-window-p for a composed
12341 character in column zero.
12342
12343 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
12344
12345 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
12346
12347 2011-08-22 Eli Zaretskii <eliz@gnu.org>
12348
12349 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
12350 consider it a hit if to_charpos is anywhere in the range of the
12351 composed buffer positions.
12352
12353 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
12354
12355 * image.c (gif_load): Don't assume that each subimage has the same
12356 dimensions as the base image. Handle disposal method that is
12357 "undefined" by the gif spec (Bug#9335).
12358
12359 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
12360
12361 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
12362 (Fcondition_case): Document `debug' symbol in error handler.
12363
12364 2011-08-19 Eli Zaretskii <eliz@gnu.org>
12365
12366 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
12367 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
12368 from an Org mode buffer to a Speedbar frame.
12369
12370 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
12371 a composition, take its buffer position from IT->cmp_it.charpos.
12372 Fixes cursor positioning at the beginning of a line that begins
12373 with a composed character.
12374
12375 2011-08-18 Eli Zaretskii <eliz@gnu.org>
12376
12377 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
12378 character bidirectional type, use STRONG_L instead. Fixes crashes
12379 in a buffer produced by `describe-categories'.
12380
12381 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
12382 members before the level stack, so they would be saved and
12383 restored when copying iterator state. Fixes incorrect reordering
12384 around TABs covered by display properties.
12385
12386 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
12387
12388 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
12389
12390 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
12391
12392 * eval.c (internal_condition_case, internal_condition_case_1)
12393 (internal_condition_case_2, internal_condition_case_n):
12394 Remove unnecessary aborts (Bug#9081).
12395
12396 2011-08-17 Eli Zaretskii <eliz@gnu.org>
12397
12398 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
12399 has no `load' handler, try opening the file locally. (Bug#9311)
12400
12401 2011-08-16 Ken Brown <kbrown@cornell.edu>
12402
12403 * gmalloc.c: Expand comment.
12404
12405 2011-08-16 Eli Zaretskii <eliz@gnu.org>
12406
12407 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
12408 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
12409
12410 2011-08-16 Ken Brown <kbrown@cornell.edu>
12411
12412 Fix memory allocation problems in Cygwin build (Bug#9273).
12413
12414 * unexcw.c ( __malloc_initialized): Declare external variable.
12415 (fixup_executable): Force the dumped emacs to reinitialize malloc.
12416
12417 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
12418 New variables.
12419 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
12420 dumped emacs.
12421 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
12422 in the static heap.
12423 [CYGWIN] (special_realloc): New function.
12424 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
12425 requests to realloc storage in the static heap.
12426
12427 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
12428
12429 * bidi.c (bidi_initialize): Remove unused local.
12430
12431 2011-08-15 Eli Zaretskii <eliz@gnu.org>
12432
12433 * bidimirror.h:
12434 * biditype.h: Remove file.
12435 * makefile.w32-in ($(BLD)/bidi.$(O)):
12436 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
12437
12438 * dispextern.h: Fix a typo in the comment to bidi_type_t.
12439
12440 * chartab.c: Improve commentary for the uniprop_table API.
12441
12442 * bidi.c (bidi_paragraph_init): Support zero value of
12443 bidi_ignore_explicit_marks_for_paragraph_level.
12444 (bidi_initialize): Use uniprop_table instead of including
12445 biditype.h and bidimirror.h.
12446
12447 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
12448 coordinates of the iterator when restoring from ppos_it.
12449 (Bug#9296)
12450
12451 2011-08-14 Kenichi Handa <handa@m17n.org>
12452
12453 * process.c (create_process): Call setup_process_coding_systems
12454 after the pid of the process is set to -1 (Bug#8162).
12455
12456 2011-08-14 Eli Zaretskii <eliz@gnu.org>
12457
12458 * xdisp.c (move_it_in_display_line_to): Don't invoke
12459 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
12460 ppos_it. Fixes vertical cursor motion when line beginning is
12461 covered by an image. (Bug#9296)
12462
12463 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
12464
12465 * nsterm.h (ns_run_ascript): Declare.
12466 (NSAPP_DATA2_RUNASSCRIPT): Define.
12467
12468 * nsfns.m (as_script, as_result, as_status): New static variables.
12469 (ns_run_ascript): New function.
12470 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
12471 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
12472 the event loop. Get status from as_status (Bug#7276).
12473
12474 * nsterm.m (sendEvent): If event is NSApplicationDefined and
12475 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
12476 the event loop (Bug#7276).
12477
12478 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
12479
12480 * gnutls.c (QCgnutls_bootprop_priority)
12481 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
12482 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
12483 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
12484 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
12485 (QCgnutls_bootprop_verify_hostname_error)
12486 (QCgnutls_bootprop_callbacks_verify): Rename from
12487 Qgnutls_bootprop_..., all uses changed.
12488
12489 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
12490 uses changed.
12491
12492 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
12493
12494 * xfaces.c (Qframe_set_background_mode): Now static.
12495 * dispextern.h (Qframe_set_background_mode): Remove decl.
12496
12497 * process.c (Fnetwork_interface_info): Declare local only if needed.
12498
12499 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
12500
12501 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
12502 (Fnetwork_interface_list): Allocate in increments of bytes instead
12503 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
12504 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
12505 sockaddr.
12506 (struct ifflag_def): notrailers is smart on OSX.
12507 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
12508 Get hardware address with getifaddrs if available.
12509
12510 2011-08-12 Eli Zaretskii <eliz@gnu.org>
12511
12512 * xdisp.c (iterate_out_of_display_property): xassert that
12513 IT->position is set to within IT->object's boundaries. Break from
12514 the loop as soon as EOB is reached; avoids infloops in redisplay
12515 when IT->position is set up wrongly due to some bug.
12516 Set IT->current to match the bidi iterator unconditionally.
12517 (push_display_prop): Allow GET_FROM_STRING as IT->method on
12518 entry. Force push_it to save on the stack the current
12519 buffer/string position, to be restored by pop_it. Fix flags in
12520 the iterator structure wrt the object coming from a display
12521 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
12522 properties. (Bug#9284)
12523
12524 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
12525
12526 * fontset.c (fontset_get_font_group): Add proper type checks.
12527 (Bug#9172)
12528
12529 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12530
12531 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
12532 and LC_VERSION_MIN_MACOSX.
12533 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
12534 (dump_it) [LC_FUNCTION_STARTS]: Use it.
12535
12536 2011-08-08 Eli Zaretskii <eliz@gnu.org>
12537
12538 * xdisp.c (forward_to_next_line_start): Allow to use the
12539 no-display-properties-and-no-overlays under bidi display.
12540 Set disp_pos in the bidi iterator to avoid searches for display
12541 properties and overlays.
12542
12543 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
12544
12545 * editfns.c (Fset_time_zone_rule): Document relationship with the
12546 setenv function.
12547
12548 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
12549 the font entity extracted from the cache (Bug#8109).
12550
12551 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
12552
12553 * composite.c (autocmp_chars): Don't reset point. That is done by
12554 restore_point_unwind (Bug#5984).
12555
12556 2011-08-07 Juri Linkov <juri@jurta.org>
12557
12558 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
12559 to show the arg `TIME' instead of `TIMEVAL'.
12560
12561 2011-08-06 Eli Zaretskii <eliz@gnu.org>
12562
12563 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
12564 display property strides EOL and includes a newline, as in
12565 longlines-mode. (Bug#9254)
12566 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
12567 word-wrap under bidirectional display. (Bug#9224)
12568
12569 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
12570 is non-zero, even if the data buffer is NULL. Fixes a crash in
12571 vertical-motion with longlines-mode. (Bug#9254)
12572
12573 2011-08-05 Eli Zaretskii <eliz@gnu.org>
12574
12575 * bidi.c <bidi_cache_total_alloc>: Now static.
12576 (bidi_initialize): Initialize bidi_cache_total_alloc.
12577
12578 * xdisp.c (display_line): Release buffer allocated for shelved bidi
12579 cache. (Bug#9221)
12580
12581 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
12582 amount allocated this far in `bidi_cache_total_alloc'.
12583 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
12584 non-zero, only free the data buffer without restoring the cache
12585 contents. All callers changed.
12586
12587 * dispextern.h (bidi_unshelve_cache): Update prototype.
12588
12589 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
12590 (move_it_in_display_line, move_it_to)
12591 (move_it_vertically_backward, move_it_by_lines): Replace the call
12592 to xfree to an equivalent call to bidi_unshelve_cache.
12593 (move_it_in_display_line_to): Fix logic of returning
12594 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
12595
12596 2011-08-05 Eli Zaretskii <eliz@gnu.org>
12597
12598 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
12599 came from a string character with a `cursor' property. (Bug#9229)
12600
12601 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
12602
12603 * Makefile.in (LIB_PTHREAD): New variable.
12604 (LIBES): Add LIB_PTHREAD (Bug#9216).
12605
12606 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
12607 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
12608
12609 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
12610
12611 * regex.c (re_iswctype): Remove some redundant boolean conversions.
12612
12613 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
12614
12615 * xterm.c (x_find_topmost_parent): New function.
12616 (x_set_frame_alpha): Find topmost parent window with
12617 x_find_topmost_parent and set the property there also (bug#9181).
12618 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
12619
12620 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
12621
12622 * callproc.c (Fcall_process): Avoid vfork clobbering
12623 the local vars buffer, coding_systems, current_dir.
12624
12625 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12626
12627 * keymap.c (Fmake_composed_keymap): Move to subr.el.
12628
12629 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
12630
12631 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
12632 so that it is not optimized away.
12633
12634 * xdisp.c (compute_display_string_pos): Remove unused local.
12635
12636 2011-08-02 Eli Zaretskii <eliz@gnu.org>
12637
12638 Fix slow cursor motion and scrolling in large buffers with
12639 selective display, like Org Mode buffers. (Bug#9218)
12640
12641 * dispextern.h (struct bidi_it): New member disp_prop_p.
12642
12643 * xdisp.c: Remove one-slot cache of display string positions.
12644 (compute_display_string_pos): Accept an additional argument
12645 DISP_PROP_P; callers changed. Scan at most 5K characters forward
12646 for a display string or property. If found, set DISP_PROP_P
12647 non-zero.
12648
12649 * bidi.c (bidi_fetch_char): Accept an additional argument
12650 DISP_PROP_P, and pass it to compute_display_string_pos.
12651 Only handle text covered by a display string if DISP_PROP_P is returned
12652 non-zero. All callers of bidi_fetch_char changed.
12653
12654 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
12655
12656 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
12657
12658 2010-12-03 Don March <don@ohspite.net>
12659
12660 * keymap.c (Fdefine_key): Fix non-prefix key error message when
12661 last character M-[char] is translated to ESC [char] (bug#7541).
12662
12663 2011-08-02 Kenichi Handa <handa@m17n.org>
12664
12665 * lisp.h (uniprop_table): Extern it.
12666
12667 * chartab.c (uniprop_table): Make it non-static.
12668
12669 2011-08-01 Eli Zaretskii <eliz@gnu.org>
12670
12671 * xdisp.c (forward_to_next_line_start): Accept additional argument
12672 BIDI_IT_PREV, and store into it the state of the bidi iterator had
12673 on the newline.
12674 (reseat_at_next_visible_line_start): Use the bidi iterator state
12675 returned by forward_to_next_line_start to restore the state of
12676 it->bidi_it after backing up to previous newline. (Bug#9212)
12677
12678 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
12679
12680 * regex.c (re_comp): Protoize.
12681 (re_exec): Fix return type.
12682 (regexec): Fix type of `ret'. (Bug#9203)
12683
12684 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12685
12686 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
12687 This is needed if max-image-size is a floating-point number.
12688
12689 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
12690
12691 * print.c (print_object): Print empty symbol as ##.
12692
12693 * lread.c (read1): Read ## as empty symbol.
12694
12695 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
12696
12697 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
12698 setting frame foreground color (Bug#9175).
12699 (x_set_background_color): Likewise.
12700
12701 * nsmenu.m (-setText): Size tooltip dimensions precisely to
12702 contents (Bug#9176).
12703 (EmacsTooltip -init): Remove bezels and add shadows to
12704 tooltip windows.
12705
12706 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
12707 or scroll bar (Bug#8470).
12708
12709 * nsfont.m (nsfont_open): Remove assignment to voffset and
12710 unnecessary vars hshink, expand, hd, full_height, min_height.
12711 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
12712
12713 * nsterm.h (nsfont_info): Remove voffset field.
12714
12715 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
12716
12717 Implement strike-through and overline on NextStep (Bug#8863).
12718
12719 * nsfont.m (nsfont_open): Use underline position provided by font,
12720 instead of hard-coded value of 2.
12721 (nsfont_draw): Call ns_draw_text_decoration instead.
12722
12723 * nsterm.h: Add declaration for ns_draw_text_decoration.
12724
12725 * nsterm.m (ns_draw_text_decoration): New function for drawing
12726 underline, overline, and strike-through.
12727 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
12728 ns_draw_text_decoration. Change treatment of cursor drawing to
12729 accommodate underlining, etc.
12730
12731 2011-07-28 Eli Zaretskii <eliz@gnu.org>
12732
12733 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
12734 default.
12735
12736 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12737
12738 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
12739 Without this fix, if a signal arrives just after memory fills up,
12740 'malloc' might be invoked reentrantly.
12741
12742 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
12743 In other words, assume that every image size is allowed, on non-X
12744 hosts. This assumption is probably wrong, but it lets Emacs compile.
12745
12746 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
12747
12748 * regex.c (re_iswctype): Convert return values to boolean.
12749
12750 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
12751
12752 * xdisp.c (compute_display_string_pos): Don't use cached display
12753 string position if the buffer had its restriction changed.
12754 (Bug#9184)
12755
12756 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12757
12758 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
12759
12760 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12761
12762 Integer signedness and overflow and related fixes. (Bug#9079)
12763
12764 * bidi.c: Integer size and overflow fixes.
12765 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
12766 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
12767 (bidi_cache_find_level_change, bidi_cache_ensure_space)
12768 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
12769 (bidi_find_other_level_edge):
12770 Use ptrdiff_t instead of EMACS_INT where either will do.
12771 This works better on 32-bit hosts configured --with-wide-int.
12772 (bidi_cache_ensure_space): Check for size-calculation overflow.
12773 Use % rather than repeated addition, for better worst-case speed.
12774 Don't set bidi_cache_size until after xrealloc returns, because it
12775 might not return.
12776 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
12777 (bidi_cache_ensure_space): Also check that the bidi cache size
12778 does not exceed that of the largest Lisp string or buffer. See Eli
12779 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
12780
12781 * alloc.c (__malloc_size_t): Remove.
12782 All uses replaced by size_t. See Andreas Schwab's note
12783 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
12784
12785 * image.c: Improve checking for integer overflow.
12786 (check_image_size): Assume that f is nonnull, since
12787 it is always nonnull in practice. This is one less thing to
12788 worry about when checking for integer overflow later.
12789 (x_check_image_size): New function, which checks for integer
12790 overflow issues inside X.
12791 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
12792 This removes the need for a memory_full check.
12793 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
12794 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
12795 (xbm_read_bitmap_data): Change locals back to 'int', since
12796 their values must fit in 'int'.
12797 (xpm_load_image, png_load, tiff_load):
12798 Invoke x_create_x_image_and_pixmap earlier,
12799 to avoid much needless work if the image is too large.
12800 (tiff_load): Treat overly large images as if
12801 x_create_x_image_and_pixmap failed, not as malloc failures.
12802 (gs_load): Use x_check_image_size.
12803
12804 * gtkutil.c: Omit integer casts.
12805 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
12806 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
12807
12808 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
12809
12810 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
12811 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
12812 would wrongly return t on a 64-bit host.
12813
12814 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
12815 The plain *_OVERFLOW macros run afoul of GCC bug 49705
12816 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
12817 and therefore cause GCC to emit a bogus diagnostic in some cases.
12818
12819 * image.c: Integer signedness and overflow and related fixes.
12820 This is not an exhaustive set of fixes, but it's time to
12821 record what I've got.
12822 (lookup_pixel_color, check_image_size): Remove redundant decls.
12823 (check_image_size): Don't assume that arbitrary EMACS_INT values
12824 fit in 'int', or that arbitrary 'double' values fit in 'int'.
12825 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
12826 (tiff_load, imagemagick_load_image):
12827 Check for overflow in size calculations.
12828 (x_create_x_image_and_pixmap): Remove unnecessary test for
12829 xmalloc returning NULL; that can't happen.
12830 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
12831 (xpm_color_bucket): Use better integer hashing function.
12832 (xpm_cache_color): Don't possibly over-allocate memory.
12833 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
12834 (gif_memory_source):
12835 Use ptrdiff_t, not int or size_t, to record sizes.
12836 (png_load): Don't assume values greater than 2**31 fit in 'int'.
12837 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
12838 either works, as we prefer signed integers.
12839 (tiff_read_from_memory, tiff_write_from_memory):
12840 Return tsize_t, not size_t, since that's what the TIFF API wants.
12841 (tiff_read_from_memory): Don't fail simply because the read would
12842 go past EOF; instead, return a short read.
12843 (tiff_load): Omit no-longer-needed casts.
12844 (Fimagemagick_types): Don't assume size fits into 'int'.
12845
12846 Improve hashing quality when configured --with-wide-int.
12847 * fns.c (hash_string): New function, taken from sxhash_string.
12848 Do not discard information about ASCII character case; this
12849 discarding is no longer needed.
12850 (sxhash-string): Use it. Change sig to match it. Caller changed.
12851 * lisp.h: Declare it.
12852 * lread.c (hash_string): Remove, since we now use fns.c's version.
12853 The fns.c version returns a wider integer if --with-wide-int is
12854 specified, so this should help the quality of the hashing a bit.
12855
12856 * emacs.c: Integer overflow minor fix.
12857 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
12858 Define only if GNU_LINUX.
12859 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
12860
12861 * dispnew.c: Integer signedness and overflow fixes.
12862 Remove unnecessary forward decls, that were a maintenance hassle.
12863 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
12864 All uses changed.
12865 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
12866 (scrolling_window): Use ptrdiff_t, not int, for byte count.
12867 (prepare_desired_row, line_draw_cost):
12868 Use int, not unsigned, where either works.
12869 (save_current_matrix, restore_current_matrix):
12870 Use ptrdiff_t, not size_t, where either works.
12871 (init_display): Check for overflow more accurately, and without
12872 relying on undefined behavior.
12873
12874 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
12875 Remove, replacing with the new symbols in lisp.h. All uses changed.
12876 * fileio.c (make_temp_name):
12877 * filelock.c (lock_file_1, lock_file):
12878 * xdisp.c (message_dolog):
12879 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
12880 Use pMd etc. instead.
12881 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
12882 replacing the pWIDE etc. symbols removed from editfns.c.
12883
12884 * keyboard.h (num_input_events): Now uintmax_t.
12885 This is (very slightly) less likely to mess up due to wraparound.
12886 All uses changed.
12887
12888 * buffer.c: Integer signedness fixes.
12889 (alloc_buffer_text, enlarge_buffer_text):
12890 Use ptrdiff_t rather than size_t when either will do, as we prefer
12891 signed integers.
12892
12893 * alloc.c: Integer signedness and overflow fixes.
12894 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
12895 (__malloc_size_t): Default to size_t, not to int.
12896 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
12897 (Fgarbage_collect, mark_object_loop_halt, mark_object):
12898 Prefer ptrdiff_t to size_t when either would do, as we prefer
12899 signed integers.
12900 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
12901 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
12902 Now const. Initialize with values that are in range even if char
12903 is signed.
12904 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
12905 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
12906 These functions do the right thing with sizes > 2**32.
12907 (check_depth): Now ptrdiff_t, not int.
12908 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
12909 Adjust to new way of storing sizes. Check for size overflow bugs
12910 in rest of code.
12911 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
12912 slightly wrong anyway, as it missed one instance of
12913 XMALLOC_OVERRUN_CHECK_OVERHEAD.
12914 (refill_memory_reserve): Omit needless cast to size_t.
12915 (mark_object_loop_halt): Mark as externally visible.
12916
12917 * xselect.c: Integer signedness and overflow fixes.
12918 (Fx_register_dnd_atom, x_handle_dnd_message):
12919 Use ptrdiff_t, not size_t, since we prefer signed.
12920 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
12921 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
12922 x_dnd_atoms_size and x_dnd_atoms_length.
12923
12924 * doprnt.c: Prefer signed to unsigned when either works.
12925 * eval.c (verror):
12926 * doprnt.c (doprnt):
12927 * lisp.h (doprnt):
12928 * xdisp.c (vmessage):
12929 Use ptrdiff_t, not size_t, when using or implementing doprnt,
12930 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
12931 prefer signed arithmetic to avoid comparison confusion.
12932 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
12933 but is a bit tricky.
12934
12935 Assume freestanding C89 headers, string.h, stdlib.h.
12936 * data.c, doprnt.c, floatfns.c, print.c:
12937 Include float.h unconditionally.
12938 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
12939 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
12940 * regex.c: Likewise for stddef.h, string.h.
12941 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
12942 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
12943 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
12944 (STDC_HEADERS): Remove obsolete defines.
12945 * sysdep.c: Include limits.h unconditionally.
12946
12947 Assume support for memcmp, memcpy, memmove, memset.
12948 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
12949 * regex.c (memcmp, memcpy):
12950 Remove; we assume C89 now.
12951
12952 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
12953 (__malloc_safe_bcopy): Remove; no longer needed.
12954
12955 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
12956 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
12957 well either way, and we prefer signed to unsigned.
12958
12959 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
12960
12961 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
12962 closes the connection while we're reading (bug#9182).
12963
12964 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
12965
12966 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
12967 are specified (Bug#9168).
12968
12969 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
12970
12971 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
12972 Found by GCC static checking and --with-wide-int on a 32-bit host.
12973
12974 2011-07-25 Eli Zaretskii <eliz@gnu.org>
12975
12976 * xdisp.c (compute_display_string_pos): Fix logic of caching
12977 previous display string position. Initialize cached_prev_pos to
12978 -1. Fixes slow-down at the beginning of a buffer.
12979
12980 2011-07-24 Eli Zaretskii <eliz@gnu.org>
12981
12982 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
12983 for attrs[LFACE_FONTSET_INDEX].
12984
12985 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
12986
12987 * xml.c (parse_region): Remove unused local
12988 that was recently introduced.
12989
12990 2011-07-23 Eli Zaretskii <eliz@gnu.org>
12991
12992 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
12993 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
12994
12995 * xdisp.c (move_it_in_display_line_to): Record the best matching
12996 position for TO_CHARPOS while scanning the line, and restore it on
12997 exit if none of the characters scanned was an exact match.
12998 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
12999 when exact match is impossible due to invisible text, and the
13000 lines are truncated.
13001
13002 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
13003
13004 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
13005 for OSX >= 10.7.
13006
13007 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13008
13009 Fix a significant slow-down of cursor motion with C-n, C-p,
13010 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
13011 auto-repeat under bidi redisplay in fontified buffers.
13012 * xdisp.c (compute_stop_pos_backwards): New function.
13013 (next_element_from_buffer): Call compute_stop_pos_backwards to
13014 find a suitable prev_stop when we find ourselves before
13015 base_level_stop.
13016 (reseat): Don't look for prev_stop, as that could mean a very long
13017 run.
13018 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
13019 <cached_disp_overlay_modiff>: Cache for last found display string
13020 position.
13021 (compute_display_string_pos): Return the cached position if asked
13022 about the same buffer in the same area of character positions, and
13023 the buffer wasn't changed since the time the display string
13024 position was cached.
13025
13026 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13027
13028 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
13029 is an integer, which is important for empty lines. (Bug#9149)
13030
13031 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
13032
13033 * frame.c (Fmodify_frame_parameters): In tty case, update the
13034 default face if necessary (Bug#4238).
13035
13036 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
13037
13038 * editfns.c (Fstring_to_char): No need to explain what a character
13039 is in the docstring (Bug#6576).
13040
13041 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13042
13043 * xml.c (parse_region): Make sure we always return a tree.
13044
13045 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
13046
13047 * xml.c (parse_region): If a document contains only comments,
13048 return that, too.
13049
13050 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13051
13052 * xml.c (make_dom): Return comments, too.
13053
13054 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
13055
13056 Port to OpenBSD.
13057 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
13058 and the surrounding thread.
13059 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
13060 rather than fgets, and retry after EINTR. Otherwise, 'emacs
13061 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
13062 timer goes off.
13063 * s/openbsd.h (BROKEN_SIGIO): Define.
13064 * unexelf.c (unexec) [__OpenBSD__]:
13065 Don't update the .mdebug section of the Alpha COFF symbol table.
13066
13067 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13068
13069 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
13070 (bug#8460).
13071
13072 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
13073
13074 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
13075 This fixes some race conditions on the permissions of any newly
13076 created file.
13077
13078 * alloc.c (valid_pointer_p): Use pipe, not open.
13079 This fixes some permissions issues when debugging.
13080
13081 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
13082 If fchown fails to set both uid and gid, try to set just gid,
13083 as that is sometimes allowed. Adjust the file's mode to eliminate
13084 setuid or setgid bits that are inappropriate if fchown fails.
13085
13086 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
13087
13088 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
13089 to compare Lisp_Objects.
13090 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
13091 global_gnutls_log_level, don't mistake it for a Lisp_Object.
13092 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
13093
13094 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
13095
13096 * lread.c (read_integer): Unread even EOF character.
13097 (read1): Likewise. Properly record start position of symbol.
13098
13099 * lread.c (read1): Read `#:' as empty uninterned symbol if no
13100 symbol character follows.
13101
13102 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
13103
13104 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
13105 This works around a problem with the previous change to Fcopy_file.
13106 Recent glibc declares fchown with __attribute__((warn_unused_result)),
13107 and without this change, GCC might complain about discarding
13108 fchown's return value.
13109
13110 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
13111
13112 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
13113
13114 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
13115
13116 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
13117
13118 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
13119
13120 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
13121 it's used from the C level.
13122
13123 * process.c: Use the same condition for POLL_FOR_INPUT in both
13124 keyboard.c and process.c (bug#1858).
13125
13126 2011-07-09 Lawrence Mitchell <wence@gmx.li>
13127
13128 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
13129 (Fgnutls_boot): Use it.
13130
13131 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
13132
13133 * doc.c (Fsubstitute_command_keys): Revert last change.
13134
13135 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13136
13137 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
13138 quotes the next character, and doesn't affect other longer
13139 sequences (bug#8935).
13140
13141 * lread.c (syms_of_lread): Clarify that is isn't only
13142 `eval-buffer' and `eval-defun' that's affected by
13143 `lexical-binding' (bug#8460).
13144
13145 2011-07-15 Eli Zaretskii <eliz@gnu.org>
13146
13147 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
13148 bidi redisplay when a line includes both an image and is truncated.
13149
13150 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
13151
13152 Fix minor problems found by static checking.
13153 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
13154 (elsz): Now a signed constant, not a size_t var. We prefer signed
13155 types to unsigned, to avoid integer comparison confusion. Without
13156 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
13157 "cannot optimize loop, the loop counter may overflow", a symptom
13158 of the confusion.
13159 * indent.c (Fvertical_motion): Mark locals as initialized.
13160 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
13161
13162 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13163
13164 * search.c (Fre_search_backward): Mention `case-fold-search' in
13165 all the re_search_* functions (bug#8138).
13166
13167 * keyboard.c (Fopen_dribble_file): Document when the file is
13168 closed (bug#8056).
13169
13170 2011-07-14 Eli Zaretskii <eliz@gnu.org>
13171
13172 * bidi.c (bidi_dump_cached_states): Fix format of displaying
13173 bidi_cache_idx.
13174
13175 Support bidi reordering of display and overlay strings.
13176 * xdisp.c (compute_display_string_pos)
13177 (compute_display_string_end): Accept additional argument STRING.
13178 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
13179 (reseat_to_string): Initialize bidi_it->string.s and
13180 bidi_it->string.schars.
13181 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
13182 NULL (avoids a crash in bidi_paragraph_init).
13183 Initialize itb.string.lstring.
13184 (init_iterator): Call bidi_init_it only of a valid
13185 buffer position was specified. Initialize paragraph_embedding to
13186 L2R.
13187 (reseat_to_string): Initialize the bidi iterator.
13188 (display_string): If we need to ignore text properties of
13189 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
13190 original value of -1 will not work with bidi.)
13191 (compute_display_string_pos): First arg is now struct
13192 `text_pos *'; all callers changed. Support display properties on
13193 Lisp strings.
13194 (compute_display_string_end): Support display properties on Lisp
13195 strings.
13196 (init_iterator, reseat_1, reseat_to_string): Initialize the
13197 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
13198 when iterating on a string not from display properties).
13199 (compute_display_string_pos, compute_display_string_end):
13200 Fix calculation of the object to scan. Fixes an error when using
13201 arrow keys.
13202 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
13203 base_level_stop; instead, set base_level_stop to BEGV.
13204 Fixes crashes in vertical-motion.
13205 (next_element_from_buffer): Improve commentary for when
13206 the iterator is before prev_stop.
13207 (init_iterator): Initialize bidi_p from the default value of
13208 bidi-display-reordering, not from buffer-local value. Use the
13209 buffer-local value only if initializing for buffer iteration.
13210 (handle_invisible_prop): Support invisible properties on strings
13211 that are being bidi-reordered.
13212 (set_iterator_to_next): Support bidi reordering of C strings and
13213 Lisp strings.
13214 (next_element_from_string): Support bidi reordering of Lisp
13215 strings.
13216 (handle_stop_backwards): Support Lisp strings as well.
13217 (display_string): Support display of R2L glyph rows.
13218 Use IT_STRING_CHARPOS when displaying from a Lisp string.
13219 (init_iterator): Don't initialize it->bidi_p for strings
13220 here.
13221 (reseat_to_string): Initialize it->bidi_p for strings here.
13222 (next_element_from_string, next_element_from_c_string)
13223 (next_element_from_buffer): Add xassert's for correspondence
13224 between IT's object being iterated and it->bidi_it.string
13225 structure.
13226 (face_before_or_after_it_pos): Support bidi iteration.
13227 (next_element_from_c_string): Handle the case of the first string
13228 character that is not the first one in the visual order.
13229 (get_visually_first_element): New function, refactored from common
13230 parts of next_element_from_buffer, next_element_from_string, and
13231 next_element_from_c_string.
13232 (tool_bar_lines_needed, redisplay_tool_bar)
13233 (display_menu_bar): Force left-to-right direction. Add a FIXME
13234 comment for making that be controlled by a user option.
13235 (push_it, pop_it): Save and restore the state of the
13236 bidi iterator. Save and restore the bidi_p flag.
13237 (pop_it): Iterate out of display property for string iteration as
13238 well.
13239 (iterate_out_of_display_property): Support iteration over strings.
13240 (handle_single_display_spec): Set up it->bidi_it for iteration
13241 over a display string, and call bidi_init_it.
13242 (handle_single_display_spec, next_overlay_string)
13243 (get_overlay_strings_1, push_display_prop): Set up the bidi
13244 iterator for displaying display or overlay strings.
13245 (forward_to_next_line_start): Don't use the shortcut if
13246 bidi-iterating.
13247 (back_to_previous_visible_line_start): If handle_display_prop
13248 pushed the iterator stack, restore the internal state of the bidi
13249 iterator by calling bidi_pop_it same number of times.
13250 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
13251 and we are bidi-iterating, don't decrement the iterator position;
13252 instead, set the first_elt flag in the bidi iterator, to produce
13253 the same effect.
13254 (reseat_1): Remove redundant setting of string_from_display_prop_p.
13255 (push_display_prop): xassert that we are iterating a buffer.
13256 (push_it, pop_it): Save and restore paragraph_embedding member.
13257 (handle_single_display_spec, next_overlay_string)
13258 (get_overlay_strings_1, reseat_1, reseat_to_string)
13259 (push_display_prop): Set up the `unibyte' member of bidi_it.string
13260 correctly. Don't assume unibyte strings are not bidi-reordered.
13261 (compute_display_string_pos)
13262 (compute_display_string_end): Fix handling the case of C string.
13263 (push_it, pop_it): Save and restore from_disp_prop_p.
13264 (handle_single_display_spec, push_display_prop): Set the
13265 from_disp_prop_p flag.
13266 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
13267 (pop_it): Call iterate_out_of_display_property only if we are
13268 popping after iteration over a string that came from a display
13269 property. Fix a typo in popping stretch info. Add an assertion
13270 for verifying that the iterator position is in sync with the bidi
13271 iterator.
13272 (handle_single_display_spec, get_overlay_strings_1)
13273 (push_display_prop): Fix initialization of paragraph direction for
13274 string when that of the parent object is not yet determined.
13275 (reseat_1): Call bidi_init_it to resync the bidi
13276 iterator with IT's position. (Bug#7616)
13277 (find_row_edges): If ROW->start.pos gives position
13278 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
13279 (handle_stop, back_to_previous_visible_line_start, reseat_1):
13280 Reset the from_disp_prop_p flag.
13281 (SAVE_IT, RESTORE_IT): New macros.
13282 (pos_visible_p, face_before_or_after_it_pos)
13283 (back_to_previous_visible_line_start)
13284 (move_it_in_display_line_to, move_it_in_display_line)
13285 (move_it_to, move_it_vertically_backward, move_it_by_lines)
13286 (try_scrolling, redisplay_window, display_line): Use them when
13287 saving a temporary copy of the iterator and restoring it back.
13288 (back_to_previous_visible_line_start, reseat_1)
13289 (init_iterator): Empty the bidi cache "stack".
13290 (move_it_in_display_line_to): If iterator ended up at
13291 EOL, but we never saw any buffer positions smaller than
13292 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
13293 motion in bidi-reordered lines.
13294 (move_it_in_display_line_to): Record prev_method and prev_pos
13295 immediately before the call to set_iterator_to_next. Fixes cursor
13296 motion in bidi-reordered lines with stretch glyphs and strings
13297 displayed in margins. (Bug#8133) (Bug#8867)
13298 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
13299 TO_CHARPOS.
13300 (pos_visible_p): Support positions in bidi-reordered lines.
13301 Save and restore bidi cache.
13302
13303 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
13304 (bidi_paragraph_info): Delete unused struct.
13305 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
13306 (bidi_cache_start): New variable.
13307 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
13308 to zero.
13309 (bidi_cache_fetch_state, bidi_cache_search)
13310 (bidi_cache_find_level_change, bidi_cache_iterator_state)
13311 (bidi_cache_find, bidi_peek_at_next_level)
13312 (bidi_level_of_next_char, bidi_find_other_level_edge)
13313 (bidi_move_to_visually_next): Compare cache index with
13314 bidi_cache_start rather than with zero.
13315 (bidi_fetch_char): Accept new argument STRING; all callers
13316 changed. Support iteration over a string. Support strings with
13317 display properties. Support unibyte strings. Fix the type of
13318 `len' according to what STRING_CHAR_AND_LENGTH expects.
13319 (bidi_paragraph_init, bidi_resolve_explicit_1)
13320 (bidi_resolve_explicit, bidi_resolve_weak)
13321 (bidi_level_of_next_char, bidi_move_to_visually_next):
13322 Support iteration over a string.
13323 (bidi_set_sor_type, bidi_resolve_explicit_1)
13324 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
13325 can now be zero (for strings); special values 0 and -1 were
13326 changed to -1 and -2, respectively.
13327 (bidi_char_at_pos): New function.
13328 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
13329 Call it instead of FETCH_MULTIBYTE_CHAR.
13330 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
13331 initialized to valid values.
13332 (bidi_init_it): Don't initialize charpos and bytepos with invalid
13333 values.
13334 (bidi_level_of_next_char): Allow the sentinel "position" to pass
13335 the test for valid cached positions. Fix the logic for looking up
13336 the sentinel state in the cache. GCPRO the Lisp string we are
13337 iterating.
13338 (bidi_push_it, bidi_pop_it): New functions.
13339 (bidi_initialize): Initialize the bidi cache start stack pointer.
13340 (bidi_cache_ensure_space): New function, refactored from part of
13341 bidi_cache_iterator_state. Don't assume the required size is just
13342 one BIDI_CACHE_CHUNK away.
13343 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
13344 (bidi_count_bytes, bidi_char_at_pos): New functions.
13345 (bidi_cache_search): Don't assume bidi_cache_last_idx is
13346 always valid if bidi_cache_idx is valid.
13347 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
13348 is valid if it's going to be used.
13349 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
13350 (bidi_cache_fetch_state, bidi_cache_search)
13351 (bidi_cache_find_level_change, bidi_cache_ensure_space)
13352 (bidi_cache_iterator_state, bidi_cache_find)
13353 (bidi_find_other_level_edge, bidi_cache_start_stack):
13354 All variables related to cache indices are now EMACS_INT.
13355
13356 * dispextern.h (struct bidi_string_data): New structure.
13357 (struct bidi_it): New member `string'. Make flag members be 1-bit
13358 fields, and put them last in the struct.
13359 (compute_display_string_pos, compute_display_string_end):
13360 Update prototypes.
13361 (bidi_push_it, bidi_pop_it): Add prototypes.
13362 (struct iterator_stack_entry): New members bidi_p,
13363 paragraph_embedding, and from_disp_prop_p.
13364 (struct it): Member bidi_p is now a bit field 1 bit wide.
13365 (bidi_shelve_cache, bidi_unshelve_cache):
13366 Declare prototypes.
13367
13368 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
13369 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
13370 and vector-like objects.
13371
13372 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
13373 cache around display iteration.
13374
13375 * window.c (Fwindow_end, window_scroll_pixel_based)
13376 (displayed_window_lines, Frecenter): Save and restore the bidi
13377 cache around display iteration.
13378
13379 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13380
13381 * editfns.c (Fdelete_region): Clarify the use of the named
13382 parameters (bug#6788).
13383
13384 2011-07-14 Martin Rudalics <rudalics@gmx.at>
13385
13386 * indent.c (Fvertical_motion): Set and restore w->pointm when
13387 saving and restoring the window's buffer (Bug#9006).
13388
13389 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13390
13391 * editfns.c (Fstring_to_char): Clarify just what is returned
13392 (bug#6576). Text by Eli Zaretskii.
13393
13394 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
13395
13396 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
13397
13398 2011-07-13 Eli Zaretskii <eliz@gnu.org>
13399
13400 * buffer.c (mmap_find): Fix a typo.
13401
13402 2011-07-13 Johan Bockgård <bojohan@gnu.org>
13403
13404 Fix execution of x selection hooks.
13405 * xselect.c (Qx_lost_selection_functions)
13406 (Qx_sent_selection_functions): New vars.
13407 (syms_of_xselect): DEFSYM them.
13408 (x_handle_selection_request): Pass Qx_sent_selection_functions
13409 rather than Vx_sent_selection_functions to Frun_hook_with_args.
13410 (x_handle_selection_clear,x_clear_frame_selections):
13411 Pass Qx_lost_selection_functions rather than
13412 Vx_lost_selection_functions to Frun_hook_with_args.
13413
13414 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
13415
13416 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
13417 The old code sometimes used this field without initializing it.
13418
13419 * alloc.c (gc_sweep): Don't read past end of array.
13420 In theory, the old code could also have corrupted Emacs internals,
13421 though it'd be very unlikely.
13422
13423 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
13424
13425 * character.c (Fcharacterp): Don't advertise optional ignored
13426 argument. (Bug#4026)
13427
13428 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
13429
13430 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
13431 key" (bug#4257).
13432
13433 * window.c (Fset_window_start): Doc fix (bug#4199).
13434 (Fset_window_hscroll): Ditto.
13435
13436 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
13437
13438 Fix minor new problems caught by GCC 4.6.1.
13439 * term.c (init_tty): Remove unused local.
13440 * xsettings.c (store_monospaced_changed): Define this function only
13441 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
13442 not used otherwise.
13443
13444 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
13445
13446 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
13447
13448 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13449
13450 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
13451 are the mini-buffer and the echo area (bug#3320).
13452
13453 * term.c (init_tty): Remove support for supdup, c10 and perq
13454 terminals, which are no longer supported (bug#1482).
13455
13456 2011-07-10 Johan Bockgård <bojohan@gnu.org>
13457
13458 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
13459
13460 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
13461
13462 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
13463 for non-popups (Bug#3642).
13464
13465 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
13466
13467 * alloc.c (reset_malloc_hooks): Protoize.
13468 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
13469 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
13470 * cm.c (losecursor): Likewise.
13471 * data.c (fmod): Likewise.
13472 * dispnew.c (swap_glyphs_in_rows): Likewise.
13473 * emacs.c (memory_warning_signal): Likewise.
13474 * floatfns.c (float_error): Likewise.
13475 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
13476 (otf_open, font_otf_capability, generate_otf_features)
13477 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
13478 Likewise.
13479 * image.c (pbm_read_file): Likewise.
13480 * indent.c (string_display_width): Likewise.
13481 * intervals.c (check_for_interval, search_for_interval)
13482 (inc_interval_count, count_intervals, root_interval)
13483 (adjust_intervals_for_insertion, make_new_interval): Likewise.
13484 * lread.c (defalias): Likewise.
13485 * ralloc.c (r_alloc_check): Likewise.
13486 * regex.c (set_image_of_range_1, set_image_of_range)
13487 (regex_grow_registers): Likewise.
13488 * sysdep.c (strerror): Likewise.
13489 * termcap.c (valid_filename_p, tprint, main): Likewise.
13490 * tparam.c (main): Likewise.
13491 * unexhp9k800.c (run_time_remap, save_data_space)
13492 (update_file_ptrs, read_header, write_header, calculate_checksum)
13493 (copy_file, copy_rest, display_header): Likewise.
13494 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
13495 Likewise.
13496 * xdisp.c (check_it): Likewise.
13497 * xfaces.c (register_color, unregister_color, unregister_colors):
13498 Likewise.
13499 * xfns.c (print_fontset_result): Likewise.
13500 * xrdb.c (member, fatal, main): Likewise.
13501
13502 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
13503
13504 Fix minor problems found by static checking (Bug#9031).
13505 * chartab.c (char_table_set_range, map_sub_char_table):
13506 Remove unused locals.
13507 (uniprop_table): Now static.
13508 * composite.c (_work_char): Remove unused static var.
13509
13510 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
13511
13512 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
13513
13514 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
13515
13516 * gtkutil.c (qttip_cb): Remove code without function.
13517
13518 2011-07-09 Eli Zaretskii <eliz@gnu.org>
13519
13520 * w32.c (pthread_sigmask): New stub.
13521
13522 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
13523
13524 Use pthread_sigmask, not sigprocmask (Bug#9010).
13525 sigprocmask is portable only for single-threaded applications, and
13526 Emacs can be multi-threaded when it uses GTK.
13527 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
13528 (LIBES): Use it.
13529 * callproc.c (Fcall_process):
13530 * process.c (create_process):
13531 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
13532 Use pthread_sigmask, not sigprocmask.
13533
13534 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13535
13536 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
13537 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
13538 wrong (Bug#8591).
13539
13540 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13541
13542 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
13543 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
13544 (xg_hide_tooltip): Fix comment.
13545
13546 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
13547 in registerServicesMenuSendTypes.
13548 (validRequestorForSendType): Don't check ns_return_types.
13549
13550 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
13551 ns_return_type.
13552
13553 2011-07-08 Jason Rumney <jasonr@gnu.org>
13554
13555 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
13556 SH_SHOW for hidden windows (Bug#5482).
13557
13558 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
13559 frame struct members of non-existent frames (Bug#6284).
13560
13561 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13562
13563 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
13564 variable firstTime not needed on OSX >= 10.6.
13565 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
13566 >= 10.5. Use setKnobProportion, setDoubleValue.
13567
13568 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
13569 (MAC_OS_X_VERSION_10_5): Define if not defined.
13570 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
13571 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
13572 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
13573
13574 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
13575 cString and lossyCString on OSX >= 10.4.
13576
13577 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
13578 sizeToFit on OSX >= 10.2.
13579
13580 * nsimage.m (allocInitFromFile): Don't use deprecated method
13581 bestRepresentationForDevice on OSX >= 10.6.
13582
13583 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
13584 to avoid warning.
13585
13586 * emacs.c: Declare unexec_init_emacs_zone.
13587
13588 * nsgui.h: Fix compiler warning about gnulib redefining verify.
13589
13590 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
13591
13592 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
13593 on svcsMenu (Bug#8842).
13594
13595 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
13596 ns_return_types.
13597 (Fns_list_services): Just return Qnil on 10.6, code not working there.
13598
13599 * nsterm.m (QUTF8_STRING): Declare.
13600 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
13601 (validRequestorForSendType): Return type is (id).
13602 Change indexOfObjectIdenticalTo to indexOfObject.
13603 Check if we have local selection before returning self (Bug#8842).
13604 (writeSelectionToPasteboard): Put local selection into paste board
13605 if we have a local selection (Bug#8842).
13606 (syms_of_nsterm): DEFSYM QUTF8_STRING.
13607
13608 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
13609 (ns_get_local_selection): Declare.
13610
13611 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
13612
13613 * keymap.c (describe_map_tree): Don't insert a double newline at
13614 the end of the buffer (bug#1169) and return whether we inserted
13615 something.
13616
13617 * callint.c (Fcall_interactively): Change "reading args" to
13618 "providing args" to try to clarify what it does (bug#1010).
13619
13620 2011-07-07 Kenichi Handa <handa@m17n.org>
13621
13622 * composite.c (composition_compute_stop_pos): Ignore a static
13623 composition starting before CHARPOS (Bug#8915).
13624
13625 * xdisp.c (handle_composition_prop): Likewise.
13626
13627 2011-07-07 Eli Zaretskii <eliz@gnu.org>
13628
13629 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
13630 (Bug#9015)
13631
13632 2011-07-07 Kenichi Handa <handa@m17n.org>
13633
13634 * character.h (unicode_category_t): New enum type.
13635
13636 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
13637 (Qchar_code_property_table): New variable.
13638 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
13639 (UNIPROP_COMPRESSED_FORM_P): New macros.
13640 (char_table_ascii): Uncompress the compressed values.
13641 (sub_char_table_ref): New arg is_uniprop. Callers changed.
13642 Uncompress the compressed values.
13643 (sub_char_table_ref_and_range): Likewise.
13644 (char_table_ref_and_range): Uncompress the compressed values.
13645 (sub_char_table_set): New arg is_uniprop. Callers changed.
13646 Uncompress the compressed values.
13647 (sub_char_table_set_range): Args changed. Callers changed.
13648 (char_table_set_range): Adjuted for the above change.
13649 (map_sub_char_table): Delete args default_val and parent. Add arg
13650 top. Give decoded values to a Lisp function.
13651 (map_char_table): Adjust for the above change. Give decoded
13652 values to a Lisp function. Gcpro more variables.
13653 (uniprop_table_uncompress)
13654 (uniprop_decode_value_run_length): New functions.
13655 (uniprop_decoder, uniprop_decoder_count): New variables.
13656 (uniprop_get_decoder, uniprop_encode_value_character)
13657 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
13658 New functions.
13659 (uniprop_encoder, uniprop_encoder_count): New variables.
13660 (uniprop_get_encoder, uniprop_table)
13661 (Funicode_property_table_internal, Fget_unicode_property_internal)
13662 (Fput_unicode_property_internal): New functions.
13663 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
13664 Sunicode_property_table_internal, Sget_unicode_property_internal,
13665 and Sput_unicode_property_internal. Defvar_lisp
13666 char-code-property-alist.
13667
13668 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
13669 Vunicode_category_table.
13670
13671 * font.c (font_range): Adjust for the change of
13672 Vunicode_category_table.
13673
13674 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
13675
13676 * m/iris4d.h: Remove file, move contents ...
13677 * s/irix6-5.h: ... here.
13678
13679 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
13680
13681 Remove unportable assumption about struct layout (Bug#8884).
13682 * alloc.c (mark_buffer):
13683 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
13684 (clone_per_buffer_values): Don't assume that
13685 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
13686 This isn't true in general, and it's particularly not true
13687 if Emacs is configured with --with-wide-int.
13688 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
13689 New macros, used in the buffer.c change.
13690
13691 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
13692
13693 * xsettings.c: Use both GConf and GSettings if both are available.
13694 (store_config_changed_event): Add comment.
13695 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
13696 (store_tool_bar_style_changed): New functions.
13697 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
13698 (struct xsettings): Move font inside HAVE_XFT.
13699 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
13700 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
13701 Move inside HAVE_XFT.
13702 (something_changed_gsettingsCB): Rename from something_changedCB.
13703 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
13704 also.
13705 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
13706 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
13707 (something_changed_gconfCB): Rename from something_changedCB.
13708 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
13709 (parse_settings): Move check for font inside HAVE_XFT.
13710 (read_settings, apply_xft_settings): Add comment.
13711 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
13712 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
13713 call store_font_name_changed.
13714 (xft_settings_event): Add comment.
13715 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
13716 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
13717 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
13718 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
13719 (xsettings_initialize): Call init_gsettings last.
13720 (xsettings_get_system_font, xsettings_get_system_normal_font):
13721 Add comment.
13722
13723 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
13724
13725 Random fixes. E.g., (random) never returned negative values.
13726 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
13727 subseconds part to the entropy, as that's a bit more random.
13728 Prefer signed to unsigned, since the signedness doesn't matter and
13729 in general we prefer signed. When given a limit, use a
13730 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
13731 latter isn't right if USE_2_TAGS_FOR_INTS.
13732 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
13733 not 0..VALMASK. Don't discard "excess" bits that random () returns.
13734
13735 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13736
13737 * textprop.c (text_property_stickiness):
13738 Obey Vtext_property_default_nonsticky.
13739 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
13740 * w32fns.c (syms_of_w32fns):
13741 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
13742
13743 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13744
13745 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
13746 This is more efficient than Ffile_directory_p and avoids a minor race.
13747
13748 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13749
13750 * buffer.c (Foverlay_put): Say what the return value is
13751 (bug#7835).
13752
13753 * fileio.c (barf_or_query_if_file_exists): Check first if the file
13754 is a directory before asking whether to use the file name
13755 (bug#7564).
13756 (barf_or_query_if_file_exists): Make the "File is a directory"
13757 error be more correct.
13758
13759 * fns.c (Frequire): Remove the mention of the .gz files, since
13760 that's installation-specific, but keep the mention of
13761 `get-load-suffixes'.
13762
13763 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13764
13765 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
13766 Report string overflow if the output is too long.
13767
13768 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13769
13770 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
13771 (syms_of_gnutls): Remove duplicate DEFSYM for
13772 Qgnutls_bootprop_verify_hostname_error, an error for
13773 Qgnutls_bootprop_verify_error (which is no longer used).
13774
13775 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
13776 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
13777 Also (re)move comments that are misplaced or no longer relevant.
13778
13779 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13780
13781 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
13782
13783 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
13784
13785 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
13786 and background color parameters if they have been changed.
13787
13788 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13789
13790 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
13791
13792 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
13793
13794 * xsettings.c (SYSTEM_FONT): Define only when used.
13795 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
13796
13797 * keymap.c (access_keymap_1): Now static.
13798
13799 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
13800
13801 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
13802 leave any prefix arg for the up event (Bug#1586).
13803
13804 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
13805
13806 * lread.c (syms_of_lread): Mention single symbols defined by
13807 `defvar' or `defconst' (bug#7154).
13808
13809 * fns.c (Frequire): Mention .el.gz files (bug#7314).
13810 (Frequire): Mention get-load-suffixes.
13811
13812 2011-07-02 Martin Rudalics <rudalics@gmx.at>
13813
13814 * window.h (window): Remove clone_number slot.
13815 * window.c (Fwindow_clone_number, Fset_window_clone_number):
13816 Remove.
13817 (make_parent_window, make_window, saved_window)
13818 (Fset_window_configuration, save_window_save): Don't deal with
13819 clone numbers.
13820 * buffer.c (Qclone_number): Remove declaration.
13821 (sort_overlays, overlay_strings): Don't deal with clone numbers.
13822
13823 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
13824
13825 Add multiple inheritance to keymaps.
13826 * keymap.c (Fmake_composed_keymap): New function.
13827 (Fset_keymap_parent): Simplify.
13828 (fix_submap_inheritance): Remove.
13829 (access_keymap_1): New function extracted from access_keymap to handle
13830 embedded parents and handle lists of maps.
13831 (access_keymap): Use it.
13832 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
13833 (Fcopy_keymap): Handle embedded parents.
13834 (Fcommand_remapping, define_as_prefix): Simplify.
13835 (Fkey_binding): Simplify.
13836 (syms_of_keymap): Move minibuffer-local-completion-map,
13837 minibuffer-local-filename-completion-map,
13838 minibuffer-local-must-match-map, and
13839 minibuffer-local-filename-must-match-map to Elisp.
13840 (syms_of_keymap): Defsubr make-composed-keymap.
13841 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
13842 (parse_menu_item): Trivial simplification.
13843
13844 2011-07-01 Glenn Morris <rgm@gnu.org>
13845
13846 * Makefile.in (SETTINGS_LIBS): Fix typo.
13847
13848 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
13849
13850 * coding.c (Fencode_coding_string): Record the last coding system
13851 used, as the function doc string says (bug#8738).
13852
13853 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
13854
13855 * xsettings.c (store_monospaced_changed): Take new font as arg and
13856 check for change against current_mono_font.
13857 (EMACS_TYPE_SETTINGS): Remove this and related defines.
13858 (emacs_settings_constructor, emacs_settings_get_property)
13859 (emacs_settings_set_property, emacs_settings_class_init)
13860 (emacs_settings_init, gsettings_obj): Remove.
13861 (something_changedCB): New function for HAVE_GSETTINGS.
13862 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
13863 with value as argument.
13864 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
13865 g_settings_new (Bug#8967). Do not create gsettings_obj.
13866 Remove calls to g_settings_bind. Connect something_changedCB to
13867 "changed".
13868
13869 * xgselect.c: Add defined (HAVE_GSETTINGS).
13870 (xgselect_initialize): Ditto.
13871
13872 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
13873 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
13874 xg_select.
13875
13876 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
13877
13878 * eval.c (struct backtrace): Simplify and port the data structure.
13879 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
13880 signed bit field, as this assumption is not portable and it makes
13881 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
13882 "char debug_on_exit : 1" as this is not portable either; instead,
13883 use the portable "unsigned int debug_on_exit : 1". Remove unused
13884 member evalargs. Remove obsolete comments about cc bombing out.
13885
13886 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
13887
13888 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
13889 Let HAVE_GSETTINGS override HAVE_GCONF.
13890 (store_monospaced_changed): New function.
13891 (EMACS_SETTINGS): A new type derived from GObject to handle
13892 GSettings notifications.
13893 (emacs_settings_constructor, emacs_settings_get_property)
13894 (emacs_settings_set_property, emacs_settings_class_init):
13895 New functions.
13896 (gsettings_client, gsettings_obj): New variables.
13897 (GSETTINGS_SCHEMA): New define.
13898 (something_changedCB): Call store_monospaced_changed.
13899 (init_gsettings): New function.
13900 (xsettings_initialize): Call init_gsettings.
13901 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
13902 to NULL.
13903
13904 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
13905 GCONF_CFLAGS/LIBS.
13906
13907 2011-06-29 Martin Rudalics <rudalics@gmx.at>
13908
13909 * window.c (resize_root_window, grow_mini_window)
13910 (shrink_mini_window): Rename Qresize_root_window to
13911 Qwindow_resize_root_window and Qresize_root_window_vertically to
13912 Qwindow_resize_root_window_vertically.
13913
13914 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
13915
13916 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
13917
13918 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
13919
13920 * makefile.w32-in: Redesign dependencies so they reflect more
13921 clearly which files are directly included by each source file,
13922 and not through other includes.
13923
13924 2011-06-27 Martin Rudalics <rudalics@gmx.at>
13925
13926 * buffer.c (Qclone_number): Declare static and DEFSYM it.
13927 (sort_overlays, overlay_strings): When an overlay's clone number
13928 matches the window's clone number process the overlay even if
13929 the overlay's window property doesn't match the current window.
13930
13931 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
13932 (Fwindow_hchild): Rename to Fwindow_left_child.
13933 (Fwindow_next): Rename to Fwindow_next_sibling.
13934 (Fwindow_prev): Rename to Fwindow_prev_sibling.
13935 (resize_window_check): Rename to window_resize_check.
13936 (resize_window_apply): Rename to window_resize_apply.
13937 (Fresize_window_apply): Rename to Fwindow_resize_apply.
13938 (Fdelete_other_windows_internal, resize_frame_windows)
13939 (Fsplit_window_internal, Fdelete_window_internal)
13940 (grow_mini_window, shrink_mini_window)
13941 (Fresize_mini_window_internal): Fix callers accordingly.
13942
13943 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
13944
13945 * emacsgtkfixed.h: State that this is only used with Gtk+3.
13946 (emacs_fixed_set_min_size): Remove.
13947 (emacs_fixed_new): Take frame as argument.
13948
13949 * emacsgtkfixed.c: State that this is only used with Gtk+3.
13950 (_EmacsFixedPrivate): Remove minwidth/height.
13951 Add struct frame *f.
13952 (emacs_fixed_init): Initialize priv->f.
13953 (get_parent_class, emacs_fixed_set_min_size): Remove.
13954 (emacs_fixed_new): Set priv->f to argument.
13955 (emacs_fixed_get_preferred_width)
13956 (emacs_fixed_get_preferred_height): Use min_width/height from
13957 frames size_hint to set minimum and natural (Bug#8919).
13958 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
13959 and use min_width/height from frames size_hint to set
13960 min_width/height (Bug#8919).
13961
13962 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
13963 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
13964 Fix indentation.
13965
13966 2011-06-26 Eli Zaretskii <eliz@gnu.org>
13967
13968 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
13969 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
13970 called at ZV.
13971
13972 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
13973
13974 * process.c (wait_reading_process_output): Bypass select if
13975 waiting for a cell while ignoring keyboard input, and input is
13976 pending. Suggested by Jan Djärv (Bug#8869).
13977
13978 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
13979
13980 Use gnulib's dup2 module instead of rolling our own.
13981 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
13982
13983 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13984
13985 * dispnew.c (scrolling_window): Before scrolling, turn off a
13986 mouse-highlight in the window being scrolled.
13987
13988 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
13989
13990 Move DEFSYM to lisp.h and use everywhere.
13991
13992 * character.h (DEFSYM): Move declaration...
13993 * lisp.h (DEFSYM): ...here.
13994
13995 * gnutls.c:
13996 * minibuf.c:
13997 * w32menu.c:
13998 * w32proc.c:
13999 * w32select.c: Don't include character.h.
14000
14001 * alloc.c (syms_of_alloc):
14002 * buffer.c (syms_of_buffer):
14003 * bytecode.c (syms_of_bytecode):
14004 * callint.c (syms_of_callint):
14005 * casefiddle.c (syms_of_casefiddle):
14006 * casetab.c (init_casetab_once):
14007 * category.c (init_category_once, syms_of_category):
14008 * ccl.c (syms_of_ccl):
14009 * cmds.c (syms_of_cmds):
14010 * composite.c (syms_of_composite):
14011 * dbusbind.c (syms_of_dbusbind):
14012 * dired.c (syms_of_dired):
14013 * dispnew.c (syms_of_display):
14014 * doc.c (syms_of_doc):
14015 * editfns.c (syms_of_editfns):
14016 * emacs.c (syms_of_emacs):
14017 * eval.c (syms_of_eval):
14018 * fileio.c (syms_of_fileio):
14019 * fns.c (syms_of_fns):
14020 * frame.c (syms_of_frame):
14021 * fringe.c (syms_of_fringe):
14022 * insdel.c (syms_of_insdel):
14023 * keymap.c (syms_of_keymap):
14024 * lread.c (init_obarray, syms_of_lread):
14025 * macros.c (syms_of_macros):
14026 * msdos.c (syms_of_msdos):
14027 * print.c (syms_of_print):
14028 * process.c (syms_of_process):
14029 * search.c (syms_of_search):
14030 * sound.c (syms_of_sound):
14031 * syntax.c (init_syntax_once, syms_of_syntax):
14032 * terminal.c (syms_of_terminal):
14033 * textprop.c (syms_of_textprop):
14034 * undo.c (syms_of_undo):
14035 * w32.c (globals_of_w32):
14036 * window.c (syms_of_window):
14037 * xdisp.c (syms_of_xdisp):
14038 * xfaces.c (syms_of_xfaces):
14039 * xfns.c (syms_of_xfns):
14040 * xmenu.c (syms_of_xmenu):
14041 * xsettings.c (syms_of_xsettings):
14042 * xterm.c (syms_of_xterm): Use DEFSYM.
14043
14044 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
14045
14046 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
14047
14048 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
14049
14050 Integer and buffer overflow fixes (Bug#8873).
14051
14052 * print.c (printchar, strout): Check for string overflow.
14053 (PRINTPREPARE, printchar, strout):
14054 Don't set size unless allocation succeeds.
14055
14056 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
14057 for sizes. Check for string overflow more accurately.
14058 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
14059
14060 * macros.c: Integer and buffer overflow fixes.
14061 * keyboard.h (struct keyboard.kbd_macro_bufsize):
14062 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
14063 Use ptrdiff_t, not int, for sizes.
14064 Don't increment bufsize until after realloc succeeds.
14065 Check for size-calculation overflow.
14066 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
14067
14068 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
14069
14070 * lread.c: Integer overflow fixes.
14071 (read_integer): Radix is now EMACS_INT, not int,
14072 to improve quality of diagnostics for out-of-range radices.
14073 Calculate buffer size correctly for out-of-range radices.
14074 (read1): Check for integer overflow in radices, and in
14075 read-circle numbers.
14076 (read_escape): Avoid int overflow.
14077 (Fload, openp, read_buffer_size, read1)
14078 (substitute_object_recurse, read_vector, read_list, map_obarray):
14079 Use ptrdiff_t, not int, for sizes.
14080 (read1): Use EMACS_INT, not int, for sizes.
14081 Check for size overflow.
14082
14083 * image.c (cache_image): Check for size arithmetic overflow.
14084
14085 * lread.c: Integer overflow issues.
14086 (saved_doc_string_size, saved_doc_string_length)
14087 (prev_saved_doc_string_size, prev_saved_doc_string_length):
14088 Now ptrdiff_t, not int.
14089 (read1): Don't assume doc string length fits in int. Check for
14090 out-of-range doc string lengths.
14091 (read_list): Don't assume file position fits in int.
14092 (read_escape): Check for hex character overflow.
14093
14094 2011-06-22 Leo Liu <sdl.web@gmail.com>
14095
14096 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
14097 Move to minibuffer.el.
14098
14099 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
14100
14101 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
14102 The following patches are for when GLYPH_DEBUG && !XASSERT.
14103 * dispextern.h (trace_redisplay_p, dump_glyph_string):
14104 * dispnew.c (flush_stdout):
14105 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
14106 Mark as externally visible.
14107 * dispnew.c (check_window_matrix_pointers): Now static.
14108 * dispnew.c (window_to_frame_vpos):
14109 * xfns.c (unwind_create_frame):
14110 * xterm.c (x_check_font): Remove unused local.
14111 * scroll.c (CHECK_BOUNDS):
14112 * xfaces.c (cache_fache): Rename local to avoid shadowing.
14113 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
14114 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
14115 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
14116 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
14117 Now static.
14118 (debug_method_add): Use va_list and vsprintf rather than relying
14119 on undefined behavior with wrong number of arguments.
14120 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
14121 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
14122 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
14123 since we're not interested in debugging glyphs with old libraries.
14124 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
14125 GCC 4.6.0's static checking.
14126
14127 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
14128
14129 Integer overflow and signedness fixes (Bug#8873).
14130 A few related buffer overrun fixes, too.
14131
14132 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
14133
14134 * dispextern.h (struct face.stipple):
14135 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
14136 (x_bitmap_mask, x_allocate_bitmap_record)
14137 (x_create_bitmap_from_data, x_create_bitmap_from_file)
14138 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
14139 (x_create_bitmap_from_xpm_data):
14140 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
14141 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
14142 (.bitmaps_last):
14143 * xfaces.c (load_pixmap):
14144 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
14145 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
14146 (.bitmaps_last, struct x_output.icon_bitmap):
14147 Use ptrdiff_t, not int, for bitmap indexes.
14148 (x_allocate_bitmap_record): Check for size overflow.
14149 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
14150
14151 Use ptrdiff_t, not int, for overlay counts.
14152 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
14153 * editfns.c (overlays_around, get_pos_property):
14154 * textprop.c (get_char_property_and_overlay):
14155 * xdisp.c (next_overlay_change, note_mouse_highlight):
14156 * xfaces.c (face_at_buffer_position):
14157 * buffer.c (OVERLAY_COUNT_MAX): New macro.
14158 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
14159 (Fnext_overlay_change, Fprevious_overlay_change)
14160 (mouse_face_overlay_overlaps, Foverlays_in):
14161 Use ptrdiff_t, not int, for sizes.
14162 (overlays_at, overlays_in): Check for size-calculation overflow.
14163
14164 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
14165
14166 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
14167 (x_session_initialize): Do not assume string length fits in int.
14168
14169 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
14170 This is unlikely, but can occur if DPI is outlandish.
14171
14172 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
14173 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
14174
14175 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
14176 * xrdb.c (magic_file_p, search_magic_path):
14177 Omit last arg SUFFIX; it was always 0. All callers changed.
14178 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
14179
14180 * xfont.c (xfont_match): Avoid need for strlen.
14181
14182 * xfns.c: Don't assume strlen fits in int.
14183 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
14184
14185 * xdisp.c (message_log_check_duplicate): Return intmax_t,
14186 not unsigned long, as we prefer signed integers. All callers changed.
14187 Detect integer overflow in repeat count.
14188 (message_dolog): Don't assume print length fits in 39 bytes.
14189 (display_mode_element): Don't assume strlen fits in int.
14190
14191 * termcap.c: Don't assume sizes fit in int and never overflow.
14192 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
14193 (gobble_line): Check for size-calculation overflow.
14194
14195 * minibuf.c (Fread_buffer):
14196 * lread.c (intern, intern_c_string):
14197 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
14198 Don't assume string length fits in int.
14199
14200 * keyboard.c (parse_tool_bar_item):
14201 * gtkutil.c (style_changed_cb): Avoid need for strlen.
14202
14203 * font.c: Don't assume string length fits in int.
14204 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
14205 Use ptrdiff_t, not int.
14206 (font_intern_prop): Don't assume string length fits in int.
14207 Don't assume integer property fits in fixnum.
14208 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
14209
14210 * filelock.c: Fix some buffer overrun and integer overflow issues.
14211 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
14212 Reformulate so as not to need the command string.
14213 Invoke gzip -cd rather than gunzip, as it's more portable.
14214 (lock_info_type, lock_file_1, lock_file):
14215 Don't assume pid_t and time_t fit in unsigned long.
14216 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
14217 (current_lock_owner): Prefer signed type for sizes.
14218 Use memcpy, not strncpy, where memcpy is what is really wanted.
14219 Don't assume (via atoi) that time_t and pid_t fit in int.
14220 Check for time_t and/or pid_t out of range, e.g., via a network share.
14221 Don't alloca where an auto var works fine.
14222
14223 * fileio.c: Fix some integer overflow issues.
14224 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
14225 Don't assume string length fits in int.
14226 (directory_file_name): Don't assume string length fits in long.
14227 (make_temp_name): Don't assume pid fits in int, or that its print
14228 length is less than 20.
14229
14230 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
14231
14232 * coding.c (make_subsidiaries): Don't assume string length fits in int.
14233
14234 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
14235
14236 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
14237 We prefer signed integers, even for size calculations.
14238
14239 * emacs.c: Don't assume string length fits in 'int'.
14240 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
14241 (main): Don't invoke strlen when not needed.
14242
14243 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
14244 (XD_DEBUG_MESSAGE): Don't waste a byte.
14245
14246 * callproc.c (getenv_internal_1, getenv_internal)
14247 (Fgetenv_internal):
14248 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
14249
14250 * lread.c (invalid_syntax): Omit length argument.
14251 All uses changed. This doesn't fix a bug, but it simplifies the
14252 code away from its former Hollerith-constant appearance, and it's
14253 one less 'int' to worry about when looking at integer-overflow issues.
14254 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
14255
14256 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
14257 This didn't break anything, but it didn't help either.
14258 It's confusing to put a bogus integer in a place where the actual
14259 value does not matter.
14260 (LIST_END_P): Remove unused macro and its bogus comment.
14261 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
14262
14263 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
14264 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
14265 implementation.
14266 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
14267 We prefer signed types, and the value cannot exceed the EMACS_INT
14268 range anyway (because otherwise the length would not be representable).
14269 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
14270 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
14271 This avoids a GCC warning when WIDE_EMACS_INT.
14272
14273 * indent.c (sane_tab_width): New function.
14274 (current_column, scan_for_column, Findent_to, position_indentation)
14275 (compute_motion): Use it. This is just for clarity.
14276 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
14277
14278 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
14279
14280 * lisp.h (lint_assume): New macro.
14281 * composite.c (composition_gstring_put_cache):
14282 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
14283
14284 * editfns.c, insdel.c:
14285 Omit unnecessary forward decls, to simplify future changes.
14286
14287 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
14288
14289 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
14290
14291 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
14292 Use much-faster test for byte-length change.
14293 Don't assume string byte-length fits in 'int'.
14294 Check that character arg fits in 'int'.
14295 (mapcar1): Declare byte as byte, for clarity.
14296
14297 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
14298
14299 * fns.c (concat): Catch string overflow earlier.
14300 Do not rely on integer wraparound.
14301
14302 * dispextern.h (struct it.overlay_strings_charpos)
14303 (struct it.selective): Now EMACS_INT, not int.
14304 * xdisp.c (forward_to_next_line_start)
14305 (back_to_previous_visible_line_start)
14306 (reseat_at_next_visible_line_start, next_element_from_buffer):
14307 Don't arbitrarily truncate the value of 'selective' to int.
14308
14309 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
14310
14311 * composite.c: Don't truncate sizes to 'int'.
14312 (composition_gstring_p, composition_reseat_it)
14313 (composition_adjust_point): Use EMACS_INT, not int.
14314 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
14315 not EMACS_UINT, for indexes.
14316
14317 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
14318
14319 * buffer.c: Include <verify.h>.
14320 (struct sortvec.priority, struct sortstr.priority):
14321 Now EMACS_INT, not int.
14322 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
14323 (struct sortstr.size, record_overlay_string)
14324 (struct sortstrlist.size, struct sortlist.used):
14325 Don't truncate size to int.
14326 (record_overlay_string): Check for size-calculation overflow.
14327 (init_buffer_once): Check at compile-time, not run-time.
14328
14329 2011-06-22 Jim Meyering <meyering@redhat.com>
14330
14331 Don't leak an XBM-image-sized buffer
14332 * image.c (xbm_load): Free the image buffer after using it.
14333
14334 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
14335
14336 Port to Sun C.
14337 * composite.c (find_automatic_composition): Omit needless 'return 0;'
14338 that Sun C diagnosed.
14339 * fns.c (secure_hash): Fix pointer signedness issue.
14340 * intervals.c (static_offset_intervals): New function.
14341 (offset_intervals): Use it.
14342
14343 2011-06-21 Leo Liu <sdl.web@gmail.com>
14344
14345 * deps.mk (fns.o):
14346 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
14347 sha512.h.
14348
14349 * fns.c (secure_hash): Rename from crypto_hash_function and change
14350 the first arg to accept symbols.
14351 (Fsecure_hash): New primitive.
14352 (syms_of_fns): New symbols.
14353
14354 2011-06-20 Deniz Dogan <deniz@dogan.se>
14355
14356 * process.c (Fset_process_buffer): Clarify return value in
14357 docstring.
14358
14359 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
14360
14361 * dispnew.c (add_window_display_history): Use BVAR.
14362
14363 * xdisp.c (debug_method_add): Use BVAR.
14364 (check_window_end, dump_glyph_matrix, dump_glyph)
14365 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
14366
14367 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
14368 Likewise.
14369
14370 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
14371 check till after the cache is created in init_frame_faces.
14372
14373 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
14374
14375 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
14376
14377 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
14378
14379 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
14380 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
14381 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
14382
14383 Improve buffer-overflow checking (Bug#8873).
14384 * fileio.c (Finsert_file_contents):
14385 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
14386 Remove the old (too-loose) buffer overflow checks.
14387 They weren't needed, since make_gap checks for buffer overflow.
14388 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
14389 The old code merely checked for Emacs fixnum overflow, and relied
14390 on undefined (wraparound) behavior. The new code avoids undefined
14391 behavior, and also checks for ptrdiff_t and/or size_t overflow.
14392
14393 * editfns.c (Finsert_char): Don't dump core with very negative counts.
14394 Tune. Don't use wider integers than needed. Don't use alloca.
14395 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
14396
14397 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
14398
14399 * insdel.c, lisp.h (buffer_overflow): New function.
14400 (insert_from_buffer_1, replace_range, replace_range_2):
14401 * insdel.c (make_gap_larger):
14402 * editfns.c (Finsert_char):
14403 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
14404
14405 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
14406
14407 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
14408
14409 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
14410
14411 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
14412 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
14413
14414 * fileio.c: Don't assume EMACS_INT fits in off_t.
14415 (emacs_lseek): New static function.
14416 (Finsert_file_contents, Fwrite_region): Use it.
14417 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
14418
14419 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
14420
14421 * fns.c: Don't overflow int when computing a list length.
14422 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
14423 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
14424 truncation on 64-bit hosts. Check for QUIT every
14425 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
14426 faster and is responsive enough.
14427 (Flength): Report an error instead of overflowing an integer.
14428 (Fsafe_length): Return a float if the value is not representable
14429 as a fixnum. This shouldn't happen except in contrived situations.
14430 (Fnthcdr, Fsort): Don't assume list length fits in int.
14431 (Fcopy_sequence): Don't assume vector length fits in int.
14432
14433 * alloc.c: Check that resized vectors' lengths fit in fixnums.
14434 (header_size, word_size): New constants.
14435 (allocate_vectorlike): Don't check size overflow here.
14436 (allocate_vector): Check it here instead, since this is the only
14437 caller of allocate_vectorlike that could cause overflow.
14438 Check that the new vector's length is representable as a fixnum.
14439
14440 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
14441 The previous code was bogus. For example, next_almost_prime (32)
14442 returned 39, which is undesirable as it is a multiple of 3; and
14443 next_almost_prime (24) returned 25, which is a multiple of 5 so
14444 why was the code bothering to check for multiples of 7?
14445
14446 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
14447
14448 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
14449
14450 Variadic C functions now count arguments with ptrdiff_t.
14451 This partly undoes my 2011-03-30 change, which replaced int with size_t.
14452 Back then I didn't know that the Emacs coding style prefers signed int.
14453 Also, in the meantime I found a few more instances where arguments
14454 were being counted with int, which may truncate counts on 64-bit
14455 machines, or EMACS_INT, which may be unnecessarily wide.
14456 * lisp.h (struct Lisp_Subr.function.aMANY)
14457 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
14458 Arg counts are now ptrdiff_t, not size_t.
14459 All variadic functions and their callers changed accordingly.
14460 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
14461 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
14462 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
14463 * callint.c (Fcall_interactively): Check arg count for overflow,
14464 to avoid potential buffer overrun. Use signed char, not 'int',
14465 for 'varies' array, so that we needn't bother to check its size
14466 calculation for overflow.
14467 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
14468 * eval.c (apply_lambda):
14469 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
14470 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
14471 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
14472
14473 * callint.c (Fcall_interactively): Don't use index var as event count.
14474
14475 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
14476 * mem-limits.h (SIZE): Remove; no longer used.
14477
14478 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
14479
14480 Remove unnecessary casts.
14481 * xterm.c (x_term_init):
14482 * xfns.c (x_set_border_pixel):
14483 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
14484 These aren't needed now that we assume ANSI C.
14485
14486 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
14487 It's more likely to cause problems (due to unsigned overflow)
14488 than to cure them.
14489
14490 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
14491
14492 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
14493
14494 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
14495
14496 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
14497
14498 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
14499
14500 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
14501
14502 GLYPH_CODE_FACE returns EMACS_INT, not int.
14503 * dispextern.h (merge_faces):
14504 * xfaces.c (merge_faces):
14505 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14506 Don't assume EMACS_INT fits in int.
14507
14508 * character.h (CHAR_VALID_P): Remove unused parameter.
14509 * fontset.c, lisp.h, xdisp.c: All uses changed.
14510
14511 * editfns.c (Ftranslate_region_internal): Omit redundant test.
14512
14513 * fns.c (concat): Minor tuning based on overflow analysis.
14514 This doesn't fix any bugs. Use int to hold character, instead
14515 of constantly refetching from Emacs object. Use XFASTINT, not
14516 XINT, for value known to be a character. Don't bother comparing
14517 a single byte to 0400, as it's always less.
14518
14519 * floatfns.c (Fexpt):
14520 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
14521
14522 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
14523 for characters.
14524
14525 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
14526
14527 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
14528 Without this fix, on a 64-bit host (aset S 0 4294967386) would
14529 incorrectly succeed when S was a string, because 4294967386 was
14530 truncated before it was used.
14531
14532 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
14533 Otherwise, an out-of-range integer could cause undefined behavior
14534 on a 64-bit host.
14535
14536 * composite.c: Use int, not EMACS_INT, for characters.
14537 (fill_gstring_body, composition_compute_stop_pos): Use int, not
14538 EMACS_INT, for values that are known to be in character range.
14539 This doesn't fix any bugs but is the usual style inside Emacs and
14540 may generate better code on 32-bit machines.
14541
14542 Make sure a 64-bit char is never passed to ENCODE_CHAR.
14543 This is for reasons similar to the recent CHAR_STRING fix.
14544 * charset.c (Fencode_char): Check that character arg is actually
14545 a character. Pass an int to ENCODE_CHAR.
14546 * charset.h (ENCODE_CHAR): Verify that the character argument is no
14547 wider than 'int', as a compile-time check to prevent future regressions
14548 in this area.
14549
14550 * character.c (char_string): Remove unnecessary casts.
14551
14552 Make sure a 64-bit char is never passed to CHAR_STRING.
14553 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
14554 by silently ignoring the top 32 bits, allowing some values
14555 that were far too large to be valid characters.
14556 * character.h: Include <verify.h>.
14557 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
14558 arguments are no wider than unsigned, as a compile-time check
14559 to prevent future regressions in this area.
14560 * data.c (Faset):
14561 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
14562 (Fsubst_char_in_region):
14563 * fns.c (concat):
14564 * xdisp.c (decode_mode_spec_coding):
14565 Adjust to CHAR_STRING's new requirement.
14566 * editfns.c (Finsert_char, Fsubst_char_in_region):
14567 * fns.c (concat): Check that character args are actually
14568 characters. Without this test, these functions did the wrong
14569 thing with wildly out-of-range values on 64-bit hosts.
14570
14571 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
14572 These casts should not be needed on 32-bit hosts, either.
14573 * keyboard.c (read_char):
14574 * lread.c (Fload): Remove casts to unsigned.
14575
14576 * lisp.h (UNSIGNED_CMP): New macro.
14577 This fixes comparison bugs on 64-bit hosts.
14578 (ASCII_CHAR_P): Use it.
14579 * casefiddle.c (casify_object):
14580 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
14581 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
14582 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
14583 * dispextern.h (FACE_FROM_ID):
14584 * keyboard.c (read_char): Use UNSIGNED_CMP.
14585
14586 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
14587 not to EMACS_INT, to avoid GCC warning.
14588
14589 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
14590
14591 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
14592 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
14593 isn't needed on 32-bit machines.
14594
14595 * buffer.c (Fgenerate_new_buffer_name):
14596 Use EMACS_INT for count, not int.
14597 (advance_to_char_boundary): Return EMACS_INT, not int.
14598
14599 * data.c (Qcompiled_function): Now static.
14600
14601 * window.c (window_body_lines): Now static.
14602
14603 * image.c (gif_load): Rename local to avoid shadowing.
14604
14605 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
14606 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
14607 * alloc.c (make_save_value): Integer argument is now of type
14608 ptrdiff_t, not int.
14609 (mark_object): Use ptrdiff_t, not int.
14610 * lisp.h (pD): New macro.
14611 * print.c (print_object): Use it.
14612
14613 * alloc.c: Use EMACS_INT, not int, to count objects.
14614 (total_conses, total_markers, total_symbols, total_vector_size)
14615 (total_free_conses, total_free_markers, total_free_symbols)
14616 (total_free_floats, total_floats, total_free_intervals)
14617 (total_intervals, total_strings, total_free_strings):
14618 Now EMACS_INT, not int. All uses changed.
14619 (Fgarbage_collect): Compute overall total using a double, so that
14620 integer overflow is less likely to be a problem. Check for overflow
14621 when converting back to an integer.
14622 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
14623 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
14624 These were 'int' variables that could overflow on 64-bit hosts;
14625 they were never used, so remove them instead of repairing them.
14626 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
14627 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
14628 Previously, this ceilinged at INT_MAX, but that doesn't work on
14629 64-bit machines.
14630 (allocate_pseudovector): Don't use EMACS_INT when int would do.
14631
14632 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
14633 (allocate_vectorlike): Check for ptrdiff_t overflow.
14634 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
14635 when a (possibly-narrower) signed value would do just as well.
14636 We prefer using signed arithmetic, to avoid comparison confusion.
14637
14638 * alloc.c: Catch some string size overflows that we were missing.
14639 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
14640 for convenience in STRING_BYTES_MAX.
14641 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
14642 The definition here is exact; the one in lisp.h was approximate.
14643 (allocate_string_data): Check for string overflow. This catches
14644 some instances we weren't catching before. Also, it catches
14645 size_t overflow on (unusual) hosts where SIZE_MAX <= min
14646 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
14647 and ptrdiff_t and EMACS_INT are both 64 bits.
14648
14649 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
14650 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
14651 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
14652
14653 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
14654
14655 * alloc.c (Fmake_string): Check for out-of-range init.
14656
14657 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14658
14659 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
14660
14661 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
14662
14663 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
14664 xg_get_default_scrollbar_width.
14665
14666 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
14667 (int_gtk_range_get_value): Move to the scroll bar part of the file.
14668 (style_changed_cb): Call update_theme_scrollbar_width and call
14669 x_set_scroll_bar_default_width and xg_frame_set_char_size for
14670 all frames (Bug#8505).
14671 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
14672 Call gtk_window_set_resizable if HAVE_GTK3.
14673 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
14674 and height if HAVE_GTK3 (Bug#8505).
14675 (scroll_bar_width_for_theme): New variable.
14676 (update_theme_scrollbar_width): New function.
14677 (xg_get_default_scrollbar_width): Move code to
14678 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
14679 (xg_initialize): Call update_theme_scrollbar_width.
14680
14681 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
14682
14683 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
14684
14685 2011-06-12 Martin Rudalics <rudalics@gmx.at>
14686
14687 * frame.c (make_frame): Call other_buffer_safely instead of
14688 other_buffer.
14689
14690 * window.c (temp_output_buffer_show): Call display_buffer with
14691 second argument Vtemp_buffer_show_specifiers and reset latter
14692 immediately after the call.
14693 (Vtemp_buffer_show_specifiers): New variable.
14694 (auto_window_vscroll_p, next_screen_context_lines)
14695 (Vscroll_preserve_screen_position): Remove leading asterisks from
14696 doc-strings.
14697
14698 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
14699
14700 Fix minor problems found by GCC 4.6.0 static checking.
14701 * buffer.c (Qclone_number): Remove for now, as it's unused.
14702 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
14703 (record_buffer): Remove unused local.
14704 * frame.c (other_visible_frames, frame_buffer_list): Now static.
14705 (set_frame_buffer_list): Remove; unused.
14706 * frame.h (other_visible_frames): Remove decl.
14707 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
14708 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
14709 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
14710 if HAVE_GPM.
14711 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
14712 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
14713 Define only if HAVE_GPM.
14714 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
14715 (update_hints_inhibit): Remove; never set. All uses removed.
14716 * widgetprv.h (emacsFrameClassRec): Remove decl.
14717 * window.c (delete_deletable_window): Now returns void, since it
14718 wasn't returning anything.
14719 (compare_window_configurations): Remove unused locals.
14720 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
14721 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
14722 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
14723 the same widths as pointers. This follows up on the 2011-05-06 patch.
14724 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
14725 * xterm.h: Likewise.
14726 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
14727
14728 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
14729
14730 * makefile.w32-in: Update dependencies.
14731 (LISP_H): Add lib/intprops.h.
14732
14733 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
14734
14735 * image.c (gif_load): Add animation frame delay to the metadata.
14736 (syms_of_image): Use DEFSYM. New symbol `delay'.
14737
14738 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14739
14740 * window.c (delete_deletable_window): Re-add.
14741 (Fset_window_configuration): Rewrite to handle dead buffers and
14742 consequently deletable windows.
14743 (window_tree, Fwindow_tree): Remove. Supply functionality in
14744 window.el.
14745 (compare_window_configurations): Simplify code.
14746
14747 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
14748
14749 * image.c (imagemagick_load_image): Fix type mismatch.
14750 (Fimagemagick_types): Likewise.
14751
14752 * window.h (replace_buffer_in_windows): Declare.
14753
14754 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14755
14756 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
14757 Qclone_number. Remove external declaration of Qdelete_window.
14758 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
14759 code.
14760 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
14761 Run Qbuffer_list_update_hook if allowed.
14762 (Fother_buffer): Rewrite doc-string. Major rewrite for new
14763 buffer list implementation.
14764 (other_buffer_safely): New function.
14765 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
14766 calls to replace_buffer_in_windows and
14767 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
14768 if allowed.
14769 (record_buffer): Inhibit quitting and rewrite using quittable
14770 functions. Run Qbuffer_list_update_hook if allowed.
14771 (Frecord_buffer, Funrecord_buffer): New functions.
14772 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
14773 Move switch-to-buffer to window.el.
14774 (bury-buffer): Move to window.el.
14775 (Vbuffer_list_update_hook): New variable.
14776
14777 * lisp.h (other_buffer_safely): Add prototype in buffer.c
14778 section.
14779
14780 * window.h (resize_frame_windows): Move up in code.
14781 (Fwindow_frame): Remove EXFUN.
14782 (replace_buffer_in_all_windows): Remove prototype.
14783 (replace_buffer_in_windows_safely): Add prototype.
14784
14785 * window.c: Declare Qdelete_window static again. Move down
14786 declaration of select_count.
14787 (Fnext_window, Fprevious_window): Rewrite doc-strings.
14788 (Fother_window): Move to window.el.
14789 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
14790 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
14791 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
14792 window.el.
14793 (replace_buffer_in_windows): Implement by calling
14794 Qreplace_buffer_in_windows.
14795 (replace_buffer_in_all_windows): Remove with some functionality
14796 moved into replace_buffer_in_windows_safely.
14797 (replace_buffer_in_windows_safely): New function.
14798 (select_window_norecord, select_frame_norecord): Move in front
14799 of run_window_configuration_change_hook. Remove now obsolete
14800 declarations.
14801 (Fset_window_buffer): Rewrite doc-string.
14802 Call Qrecord_window_buffer.
14803 (keys_of_window): Move binding for other-window to window.el.
14804
14805 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
14806
14807 * dispextern.h (struct image): Replace data member, whose int_val
14808 and ptr_val fields were not used by anything, with a single
14809 lisp_val object.
14810
14811 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
14812 (gif_clear_image, gif_load, imagemagick_load_image)
14813 (gs_clear_image, gs_load): Callers changed.
14814
14815 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
14816
14817 * buffer.h: Include <time.h>, for time_t.
14818 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
14819
14820 Fix minor problems found by static checking.
14821
14822 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
14823
14824 Make identifiers static if they are not used in other modules.
14825 * data.c (Qcompiled_function, Qframe, Qvector):
14826 * image.c (QimageMagick, Qsvg):
14827 * minibuf.c (Qmetadata):
14828 * window.c (resize_window_check, resize_root_window): Now static.
14829 * window.h (resize_window_check, resize_root_window): Remove decls.
14830
14831 * window.c (window_deletion_count, delete_deletable_window):
14832 Remove; unused.
14833 (window_body_lines): Now static.
14834 (Fdelete_other_windows_internal): Mark vars as initialized.
14835 Make sure 'resize_failed' is initialized.
14836 (run_window_configuration_change_hook): Rename local to avoid shadowing.
14837 (resize_window_apply): Remove unused local.
14838 * window.h (delete_deletable_window): Remove decl.
14839
14840 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
14841 (imagemagick_load_image): Fix pointer signedness problem by changing
14842 last arg from unsigned char * to char *. All uses changed.
14843 Also, fix a local for similar reasons.
14844 Remove unused locals. Remove locals to avoid shadowing.
14845 (fn_rsvg_handle_free): Remove; unused.
14846 (svg_load, svg_load_image): Fix pointer signedness problem.
14847 (imagemagick_load_image): Don't use garbage pointer image_wand.
14848
14849 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
14850
14851 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
14852
14853 * image.c (gif_load): Fix omitted cast error introduced by
14854 2011-06-06 change.
14855
14856 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14857
14858 * window.h (resize_proportionally, orig_total_lines)
14859 (orig_top_line): Remove from window structure.
14860 (set_window_height, set_window_width, change_window_heights)
14861 (Fdelete_window): Remove prototypes.
14862 (resize_frame_windows): Remove duplicate declaration.
14863
14864 2011-06-10 Eli Zaretskii <eliz@gnu.org>
14865
14866 * window.h (resize_frame_windows, resize_window_check)
14867 (delete_deletable_window, resize_root_window)
14868 (resize_frame_windows): Declare prototypes.
14869
14870 * window.c (resize_window_apply): Make definition be "static" to
14871 match the prototype.
14872
14873 2011-06-10 Martin Rudalics <rudalics@gmx.at>
14874
14875 * window.c: Remove declarations of Qwindow_size_fixed,
14876 window_min_size_1, window_min_size_2, window_min_size,
14877 size_window, window_fixed_size_p, enlarge_window, delete_window.
14878 Remove static from declaration of Qdelete_window, it's
14879 temporarily needed by Fbury_buffer.
14880 (replace_window): Don't assign orig_top_line and
14881 orig_total_lines.
14882 (Fdelete_window, delete_window): Remove. Window deletion is
14883 handled by window.el.
14884 (window_loop): Remove DELETE_OTHER_WINDOWS case.
14885 Replace Fdelete_window calls with calls to Qdelete_window.
14886 (Fdelete_other_windows): Remove. Deleting other windows is
14887 handled by window.el.
14888 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
14889 handled in window.el.
14890 (window_min_size_2, window_min_size_1, window_min_size): Remove.
14891 Window minimum sizes are handled in window.el.
14892 (shrink_windows, size_window, set_window_height)
14893 (set_window_width, change_window_heights, window_height)
14894 (window_width, CURBEG, CURSIZE, enlarge_window)
14895 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
14896 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
14897 handled in window.el.
14898 (make_dummy_parent): Rename to make_parent_window and give it a
14899 second argument horflag.
14900 (make_window): Don't set resize_proportionally any more.
14901 (Fsplit_window): Remove. Windows are split in window.el.
14902 (save_restore_action, save_restore_orig_size)
14903 (shrink_window_lowest_first, save_restore_orig_size): Remove.
14904 Resize mini windows in window.el.
14905 (grow_mini_window, shrink_mini_window): Implement by calling
14906 Qresize_root_window_vertically, resize_window_check and
14907 resize_window_apply.
14908 (saved_window, Fset_window_configuration, save_window_save):
14909 Do not handle orig_top_line, orig_total_lines, and
14910 resize_proportionally.
14911 (window_min_height, window_min_width): Move to window.el.
14912 (keys_of_window): Move bindings for delete-other-windows,
14913 split-window, delete-window and enlarge-window to window.el.
14914
14915 * buffer.c: Temporarily extern Qdelete_window.
14916 (Fbury_buffer): Temporarily call Qdelete_window instead of
14917 Fdelete_window (Fbury_buffer will move to window.el soon).
14918
14919 * frame.c (set_menu_bar_lines_1): Remove code handling
14920 orig_top_line and orig_total_lines.
14921
14922 * dispnew.c (adjust_frame_glyphs_initially): Don't use
14923 set_window_height but set heights directly.
14924 (change_frame_size_1): Use resize_frame_windows.
14925
14926 * xdisp.c (init_xdisp): Don't use set_window_height but set
14927 heights directly.
14928
14929 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
14930 Use resize_frame_windows instead of change_window_heights and run
14931 run_window_configuration_change_hook.
14932
14933 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
14934 instead of change_window_heights and run
14935 run_window_configuration_change_hook.
14936
14937 2011-06-09 Martin Rudalics <rudalics@gmx.at>
14938
14939 * window.c (replace_window): Rename second argument REPLACEMENT to
14940 NEW. New third argument SETFLAG. Rewrite.
14941 (delete_window, make_dummy_parent): Call replace_window with
14942 third argument 1.
14943 (window_list_1): Move down in code.
14944 (run_window_configuration_change_hook): Move set_buffer part
14945 before select_frame_norecord part in order to unwind correctly.
14946 Rename count1 to count.
14947 (recombine_windows, delete_deletable_window, resize_root_window)
14948 (Fdelete_other_windows_internal)
14949 (Frun_window_configuration_change_hook, make_parent_window)
14950 (resize_window_check, resize_window_apply, Fresize_window_apply)
14951 (resize_frame_windows, Fsplit_window_internal)
14952 (Fdelete_window_internal, Fresize_mini_window_internal):
14953 New functions.
14954 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
14955
14956 2011-06-08 Martin Rudalics <rudalics@gmx.at>
14957
14958 * window.h (window): Add some new members to window structure -
14959 normal_lines, normal_cols, new_total, new_normal, clone_number,
14960 splits, nest, prev_buffers, next_buffers.
14961 (WINDOW_TOTAL_SIZE): Move here from window.c.
14962 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
14963
14964 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
14965 Remove.
14966 (make_dummy_parent): Set new members of windows structure.
14967 (make_window): Move down in code. Handle new members of window
14968 structure.
14969 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
14970 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
14971 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
14972 (Fset_window_prev_buffers, Fwindow_next_buffers)
14973 (Fset_window_next_buffers, Fset_window_clone_number):
14974 New functions.
14975 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
14976 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
14977 Doc-string fixes.
14978 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
14979 Argument WINDOW can be now internal window too.
14980 (Fwindow_use_time): Move up in code.
14981 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
14982 Rewrite doc-string.
14983 (Fset_window_configuration, saved_window)
14984 (Fcurrent_window_configuration, save_window_save): Handle new
14985 members of window structure.
14986 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
14987 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
14988 (syms_of_window): New Lisp objects Qrecord_window_buffer,
14989 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
14990 Qget_mru_window, Qresize_root_window,
14991 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
14992 Qauto_buffer_name; staticpro them.
14993
14994 2011-06-07 Martin Rudalics <rudalics@gmx.at>
14995
14996 * window.c (Fwindow_total_size, Fwindow_left_column)
14997 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
14998 (Fwindow_list_1): New functions.
14999 (window_box_text_cols): Replace with window_body_cols.
15000 (Fwindow_width, Fscroll_left, Fscroll_right):
15001 Use window_body_cols instead of window_box_text_cols.
15002 (delete_window, Fset_window_configuration):
15003 Call delete_all_subwindows with window as argument.
15004 (delete_all_subwindows): Take a window as argument and not a
15005 structure. Rewrite.
15006 (window_loop): Remove handling of GET_LRU_WINDOW and
15007 GET_LARGEST_WINDOW.
15008 (Fget_lru_window, Fget_largest_window): Move to window.el.
15009
15010 * window.h: Extern window_body_cols instead of
15011 window_box_text_cols. delete_all_subwindows now takes a
15012 Lisp_Object as argument.
15013
15014 * indent.c (compute_motion, Fcompute_motion):
15015 Use window_body_cols instead of window_box_text_cols.
15016
15017 * frame.c (delete_frame): Call delete_all_subwindows with root
15018 window as argument.
15019
15020 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
15021
15022 * fns.c (Fputhash): Document return value.
15023
15024 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
15025
15026 * image.c (gif_load): Implement gif89a spec "no disposal" method.
15027
15028 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15029
15030 Cons<->int and similar integer overflow fixes (Bug#8794).
15031
15032 Check for overflow when converting integer to cons and back.
15033 * charset.c (Fdefine_charset_internal, Fdecode_char):
15034 Use cons_to_unsigned to catch overflow.
15035 (Fencode_char): Use INTEGER_TO_CONS.
15036 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
15037 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
15038 * data.c (long_to_cons, cons_to_long): Remove.
15039 (cons_to_unsigned, cons_to_signed): New functions.
15040 These signal an error for invalid or out-of-range values.
15041 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
15042 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
15043 * font.c (Ffont_variation_glyphs):
15044 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
15045 * lisp.h: Include <intprops.h>.
15046 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
15047 (cons_to_signed, cons_to_unsigned): New decls.
15048 (long_to_cons, cons_to_long): Remove decls.
15049 * undo.c (record_first_change): Use INTEGER_TO_CONS.
15050 (Fprimitive_undo): Use CONS_TO_INTEGER.
15051 * xfns.c (Fx_window_property): Likewise.
15052 * xselect.c: Include <limits.h>.
15053 (x_own_selection, selection_data_to_lisp_data):
15054 Use INTEGER_TO_CONS.
15055 (x_handle_selection_request, x_handle_selection_clear)
15056 (x_get_foreign_selection, Fx_disown_selection_internal)
15057 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
15058 (lisp_data_to_selection_data): Use cons_to_unsigned.
15059 (x_fill_property_data): Use cons_to_signed.
15060 Report values out of range.
15061
15062 Check for buffer and string overflow more precisely.
15063 * buffer.h (BUF_BYTES_MAX): New macro.
15064 * lisp.h (STRING_BYTES_MAX): New macro.
15065 * alloc.c (Fmake_string):
15066 * character.c (string_escape_byte8):
15067 * coding.c (coding_alloc_by_realloc):
15068 * doprnt.c (doprnt):
15069 * editfns.c (Fformat):
15070 * eval.c (verror):
15071 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
15072 since they may not be the same number.
15073 * editfns.c (Finsert_char):
15074 * fileio.c (Finsert_file_contents):
15075 Likewise for BUF_BYTES_MAX.
15076
15077 * image.c: Use ptrdiff_t, not int, for sizes.
15078 (slurp_file): Switch from int to ptrdiff_t.
15079 All uses changed.
15080 (slurp_file): Check that file size fits in both size_t (for
15081 malloc) and ptrdiff_t (for sanity and safety).
15082
15083 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
15084 if b->modtime has its maximal value.
15085
15086 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
15087
15088 Don't assume time_t can fit into int.
15089 * buffer.h (struct buffer.modtime): Now time_t, not int.
15090 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
15091 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
15092
15093 Minor fixes for signed vs unsigned integers.
15094 * character.h (MAYBE_UNIFY_CHAR):
15095 * charset.c (maybe_unify_char):
15096 * keyboard.c (read_char, reorder_modifiers):
15097 XINT -> XFASTINT, since the integer must be nonnegative.
15098 * ftfont.c (ftfont_spec_pattern):
15099 * keymap.c (access_keymap, silly_event_symbol_error):
15100 XUINT -> XFASTINT, since the integer must be nonnegative.
15101 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
15102 since it makes no difference and we prefer signed.
15103 * keyboard.c (record_char): Use XUINT when all the neighbors do.
15104 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
15105 nonnegative.
15106
15107 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
15108
15109 * window.h (Fwindow_frame): Declare.
15110
15111 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15112
15113 * alloc.c: Simplify handling of large-request failures (Bug#8800).
15114 (SPARE_MEMORY): Always define.
15115 (LARGE_REQUEST): Remove.
15116 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
15117
15118 2011-06-06 Martin Rudalics <rudalics@gmx.at>
15119
15120 * lisp.h: Move EXFUNS for Fframe_root_window,
15121 Fframe_first_window and Fset_frame_selected_window to window.h.
15122
15123 * window.h: Move EXFUNS for Fframe_root_window,
15124 Fframe_first_window and Fset_frame_selected_window here from
15125 lisp.h.
15126
15127 * frame.c (Fwindow_frame, Fframe_first_window)
15128 (Fframe_root_window, Fframe_selected_window)
15129 (Fset_frame_selected_window): Move to window.c.
15130 (Factive_minibuffer_window): Move to minibuf.c.
15131 (Fother_visible_frames_p): New function.
15132
15133 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
15134
15135 * window.c (decode_window, decode_any_window): Move up in code.
15136 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
15137 (inhibit_frame_unsplittable): Remove unused variable.
15138 (Fwindow_buffer): Move up and rewrite doc-string.
15139 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
15140 (Fwindow_prev): New functions.
15141 (Fwindow_frame): Move here from frame.c. Accept any window as
15142 argument.
15143 (Fframe_root_window, Fframe_first_window)
15144 (Fframe_selected_window): Move here from frame.c. Accept frame
15145 or arbitrary window as argument. Update doc-strings.
15146 (Fminibuffer_window): Move up in code.
15147 (Fwindow_minibuffer_p): Move up in code and simplify.
15148 (Fset_frame_selected_window): Move here from frame.c.
15149 Marginal rewrite.
15150 (Fselected_window, select_window, Fselect_window): Move up in
15151 code. Minor doc-string fixes.
15152
15153 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15154
15155 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
15156 Do not assume that spare memory exists; that assumption is valid
15157 only if SYSTEM_MALLOC.
15158 (LARGE_REQUEST): New macro, so that the issue of large requests
15159 is separated from the issue of spare memory.
15160
15161 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
15162
15163 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
15164 format. (Bug#8806)
15165
15166 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
15167
15168 * xfns.c (x_set_scroll_bar_default_width): Move declarations
15169 before statements.
15170
15171 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
15172
15173 * gtkutil.c (xg_get_default_scrollbar_width): New function.
15174
15175 * gtkutil.h: Declare xg_get_default_scrollbar_width.
15176
15177 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
15178 min width by calling x_set_scroll_bar_default_width (Bug#8505).
15179
15180 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
15181
15182 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
15183
15184 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
15185
15186 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
15187 (x_clipboard_manager_save): Add return value.
15188 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
15189 New error handlers.
15190 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
15191 Obey Vx_select_enable_clipboard_manager. Catch errors in
15192 x_clipboard_manager_save (Bug#8779).
15193 (Vx_select_enable_clipboard_manager): New variable.
15194 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
15195
15196 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
15197
15198 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
15199
15200 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15201
15202 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
15203 in the current matrix if keep_current_p is non-zero.
15204
15205 2011-06-04 Eli Zaretskii <eliz@gnu.org>
15206
15207 * bidi.c (bidi_level_of_next_char): Fix last change.
15208
15209 2011-06-03 Eli Zaretskii <eliz@gnu.org>
15210
15211 Support bidi reordering of text covered by display properties.
15212
15213 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
15214 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
15215 (bidi_cache_search, bidi_cache_iterator_state)
15216 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
15217 (bidi_level_of_next_char, bidi_move_to_visually_next):
15218 Support character positions inside a run of characters covered by a
15219 display string.
15220 (bidi_paragraph_init, bidi_resolve_explicit_1)
15221 (bidi_level_of_next_char): Call bidi_fetch_char and
15222 bidi_fetch_char_advance instead of FETCH_CHAR and
15223 FETCH_CHAR_ADVANCE.
15224 (bidi_init_it): Initialize new members.
15225 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
15226 definitions.
15227 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
15228 instead of using explicit *_CHAR codes.
15229 (bidi_resolve_explicit, bidi_resolve_weak):
15230 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
15231 bidirectional text is supported only in multibyte buffers.
15232 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
15233 it to initialize the frame_window_p member of struct bidi_it.
15234 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
15235 (bidi_resolve_explicit, bidi_resolve_weak)
15236 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
15237 bidi_it->nchars is non-positive.
15238 (bidi_level_of_next_char): Don't try to lookup the cache for the
15239 next/previous character if nothing is cached there yet, or if we
15240 were just reseat()'ed to a new position.
15241
15242 * xdisp.c (set_cursor_from_row): Set start and stop points
15243 according to the row's direction when priming the loop that looks
15244 for the glyph on which to display cursor.
15245 (single_display_spec_intangible_p): Function deleted.
15246 (display_prop_intangible_p): Reimplement to call
15247 handle_display_spec instead of single_display_spec_intangible_p.
15248 Accept 3 additional arguments needed by handle_display_spec.
15249 This fixes incorrect cursor motion across display property with complex
15250 values: lists, `(when COND...)' forms, etc.
15251 (single_display_spec_string_p): Support property values that are
15252 lists with the argument STRING its top-level element.
15253 (display_prop_string_p): Fix the condition for processing a
15254 property that is a list to be consistent with handle_display_spec.
15255 (handle_display_spec): New function, refactored from the
15256 last portion of handle_display_prop.
15257 (compute_display_string_pos): Accept additional argument
15258 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
15259 value of a `display' property is a "replacing spec".
15260 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
15261 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
15262 the display property, but just return a value indicating whether
15263 the display property will replace the characters it covers.
15264 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
15265 frame_window_p members of struct bidi_it.
15266 (compute_display_string_pos, compute_display_string_end):
15267 New functions.
15268 (push_it): Accept second argument POSITION, where pop_it should
15269 jump to continue iteration.
15270 (reseat_1): Initialize bidi_it.disp_pos.
15271
15272 * keyboard.c (adjust_point_for_property): Adjust the call to
15273 display_prop_intangible_p to its new signature.
15274
15275 * dispextern.h (struct bidi_it): New member frame_window_p.
15276 (bidi_init_it): Update prototypes.
15277 (display_prop_intangible_p): Update prototype.
15278 (compute_display_string_pos, compute_display_string_end):
15279 Declare prototypes.
15280 (struct bidi_it): New members nchars and disp_pos. ch_len is now
15281 EMACS_INT.
15282
15283 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
15284
15285 Malloc failure behavior now depends on size of allocation.
15286 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
15287 * lisp.h: Change signatures accordingly.
15288 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
15289 All callers changed. (Bug#8762)
15290
15291 * gnutls.c: Use Emacs's memory allocators.
15292 Without this change, the gnutls library would invoke malloc etc.
15293 directly, which causes problems on non-SYNC_INPUT hosts, and which
15294 runs afoul of improving memory_full behavior. (Bug#8761)
15295 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
15296 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
15297 xfree instead of the default malloc, realloc, free.
15298 (Fgnutls_boot): No need to check for memory allocation failure,
15299 since xmalloc does that for us.
15300
15301 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
15302 * category.c (hash_get_category_set):
15303 * ccl.c (ccl_driver):
15304 * charset.c (Fdefine_charset_internal):
15305 * charset.h (struct charset.hash_index):
15306 * composite.c (get_composition_id, gstring_lookup_cache)
15307 (composition_gstring_put_cache):
15308 * composite.h (struct composition.hash_index):
15309 * dispextern.h (struct image.hash):
15310 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
15311 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
15312 (hashfn_equal, hashfn_user_defined, make_hash_table)
15313 (maybe_resize_hash_table, hash_lookup, hash_put)
15314 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
15315 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
15316 (Fsxhash, Fgethash, Fputhash, Fmaphash):
15317 * image.c (make_image, search_image_cache, lookup_image)
15318 (xpm_put_color_table_h):
15319 * lisp.h (struct Lisp_Hash_Table):
15320 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
15321 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
15322 for hashes and hash indexes, instead of 'unsigned' and 'int'.
15323 * alloc.c (allocate_vectorlike):
15324 Check for overflow in vector size calculations.
15325 * ccl.c (ccl_driver):
15326 Check for overflow when converting EMACS_INT to int.
15327 * fns.c, image.c: Remove unnecessary static decls that would otherwise
15328 need to be updated by these changes.
15329 * fns.c (make_hash_table, maybe_resize_hash_table):
15330 Check for integer overflow with large hash tables.
15331 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
15332 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
15333 (SXHASH_REDUCE): New macro.
15334 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
15335 Use it instead of discarding useful hash info with large hash values.
15336 (sxhash_float): New function.
15337 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
15338 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
15339 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
15340 Rewrite to use FIXNUM_BITS, as this simplifies things.
15341 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
15342 Adjust signatures to match updated version of code.
15343 (consing_since_gc): Now EMACS_INT, since a single hash table can
15344 use more than INT_MAX bytes.
15345
15346 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
15347
15348 Make it possible to build with GCC-4.6+ -O2 -flto.
15349
15350 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
15351
15352 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15353
15354 * minibuf.c (get_minibuffer, read_minibuf_unwind):
15355 Call minibuffer-inactive-mode.
15356
15357 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
15358
15359 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
15360 Update dependencies.
15361
15362 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15363
15364 * data.c (init_data): Remove code for UTS, this system is not
15365 supported anymore.
15366
15367 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15368
15369 Don't force ./temacs to start in terminal mode.
15370
15371 * frame.c (make_initial_frame): Initialize faces in all cases, not
15372 only when CANNOT_DUMP is defined.
15373 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
15374
15375 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15376
15377 * dispnew.c (add_window_display_history): Use const for the string
15378 pointer. Remove declaration, not needed.
15379
15380 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
15381
15382 Use 'inline', not 'INLINE'.
15383 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
15384 * alloc.c, fontset.c (INLINE): Remove.
15385 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
15386 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
15387 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
15388 * gmalloc.c (register_heapinfo): Use inline unconditionally.
15389 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
15390
15391 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15392
15393 Make it possible to run ./temacs.
15394
15395 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
15396 syms_of_callproc does the same thing. Remove test for
15397 "initialized", do it in the caller.
15398 * emacs.c (main): Avoid calling set_initial_environment when dumping.
15399
15400 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15401
15402 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
15403 (read_minibuf): Use get_minibuffer.
15404 (syms_of_minibuf): Use DEFSYM.
15405 (Qmetadata): New var.
15406 * data.c (Qbuffer): Don't make it static.
15407 (syms_of_data): Use DEFSYM.
15408
15409 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
15410
15411 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
15412 (CCL_CODE_MIN): New macro.
15413
15414 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
15415
15416 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
15417
15418 * eval.c (Qdebug): Now static.
15419 * lisp.h (Qdebug): Remove decl. This reverts a part of the
15420 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
15421 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
15422
15423 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15424
15425 * image.c: Various fixes to ImageMagick code comments.
15426 (Fimagemagick_types): Doc fix.
15427
15428 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
15429
15430 Minor fixes prompted by GCC 4.6.0 warnings.
15431
15432 * xselect.c (converted_selections, conversion_fail_tag): Now static.
15433
15434 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
15435 (x_clipboard_manager_save_all): Move extern decl to ...
15436 * xterm.h: ... here, so that it can be checked for consistency.
15437
15438 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15439
15440 * xselect.c (x_clipboard_manager_save_frame)
15441 (x_clipboard_manager_save_all): New functions.
15442 (Fx_clipboard_manager_save): Lisp function deleted.
15443
15444 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
15445 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
15446
15447 * xterm.h: Update prototype.
15448
15449 2011-05-28 William Xu <william.xwl@gmail.com>
15450
15451 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
15452 exiting (Bug#8239).
15453
15454 2011-05-28 Jim Meyering <meyering@redhat.com>
15455
15456 Avoid a sign-extension bug in crypto_hash_function.
15457 * fns.c (to_uchar): Define.
15458 (crypto_hash_function): Use it to convert some newly-signed
15459 variables to unsigned, to avoid sign-extension bugs. For example,
15460 without this change, (md5 "truc") would evaluate to
15461 45723a2aff78ff4fff7fff1114760e62 rather than the expected
15462 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
15463 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
15464
15465 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
15466
15467 Integer overflow fixes.
15468
15469 * dbusbind.c: Serial number integer overflow fixes.
15470 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
15471 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
15472 to hold a serial number that is too large for a fixnum.
15473 (Fdbus_method_return_internal, Fdbus_method_error_internal):
15474 Check for serial numbers out of range. Decode any serial number
15475 that was so large that it became a float. (Bug#8722)
15476
15477 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
15478 (Fdbus_call_method, Fdbus_call_method_asynchronously):
15479 Use XFASTINT rather than XUINT when numbers are nonnegative.
15480 (xd_append_arg, Fdbus_method_return_internal):
15481 (Fdbus_method_error_internal): Likewise. Also, for unsigned
15482 arguments, check that Lisp number is nonnegative, rather than
15483 silently wrapping negative numbers around. (Bug#8722)
15484 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
15485 (Bug#8722)
15486
15487 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
15488
15489 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
15490
15491 ccl: Add integer overflow checks.
15492 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
15493 (IN_INT_RANGE): New macros.
15494 (ccl_driver): Use them to check for integer overflow when
15495 decoding a CCL program. Many of the new checks are whether XINT (x)
15496 fits in int; it doesn't always, on 64-bit hosts. The new version
15497 doesn't catch all possible integer overflows, but it's an
15498 improvement. (Bug#8719)
15499
15500 * alloc.c (make_event_array): Use XINT, not XUINT.
15501 There's no need for unsigned here.
15502
15503 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
15504 This follows up to the 2011-05-06 change that substituted uintptr_t
15505 for EMACS_INT. This case wasn't caught back then.
15506
15507 Rework Fformat to avoid integer overflow issues.
15508 * editfns.c: Include <float.h> unconditionally, as it's everywhere
15509 now (part of C89). Include <verify.h>.
15510 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
15511 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
15512 (Fformat): Avoid the prepass trying to compute sizes; it was only
15513 approximate and thus did not catch overflow reliably. Instead, walk
15514 through the format just once, formatting and computing sizes as we go,
15515 checking for integer overflow at every step, and allocating a larger
15516 buffer as needed. Keep track separately whether the format is
15517 multibyte. Keep only the most-recently calculated precision, rather
15518 than them all. Record whether each argument has been converted to
15519 string. Use EMACS_INT, not int, for byte and char and arg counts.
15520 Support field widths and precisions larger than INT_MAX. Avoid
15521 sprintf's undefined behavior with conversion specifications such as %#d
15522 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
15523 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
15524 formatting out-of-range floating point numbers with int
15525 formats. (Bug#8668)
15526
15527 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
15528
15529 * data.c: Avoid integer truncation in expressions involving floats.
15530 * data.c: Include <intprops.h>.
15531 (arith_driver): When there's an integer overflow in an expression
15532 involving floating point, convert the integers to floating point
15533 so that the resulting value does not suffer from catastrophic
15534 integer truncation. For example, on a 64-bit host (* 4
15535 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
15536 Do not rely on undefined behavior after integer overflow.
15537
15538 merge count_size_as_multibyte, parse_str_to_multibyte
15539 * character.c, character.h (count_size_as_multibyte):
15540 Rename from parse_str_to_multibyte; all uses changed.
15541 Check for integer overflow.
15542 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
15543 since it's now a duplicate of the other. This is more of
15544 a character than a buffer op, so better that it's in character.c.
15545 * fns.c, print.c: Adjust to above changes.
15546
15547 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
15548
15549 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
15550
15551 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
15552
15553 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
15554 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
15555 (x_clipboard_manager_save): Now static.
15556 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
15557
15558 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
15559 (crypto_hash_function): Now static.
15560 Fix pointer signedness problems. Avoid unnecessary initializations.
15561
15562 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
15563
15564 * termhooks.h (Vselection_alist): Make it terminal-local.
15565
15566 * terminal.c (create_terminal): Initialize it.
15567
15568 * xselect.c: Support for clipboard managers.
15569 (Vselection_alist): Move to termhooks.h as terminal-local var.
15570 (LOCAL_SELECTION): New macro.
15571 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
15572 (symbol_to_x_atom): Remove gratuitous arg.
15573 (x_handle_selection_request, lisp_data_to_selection_data)
15574 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
15575 (x_own_selection, x_get_local_selection, x_convert_selection):
15576 New arg, specifying work frame. Use terminal-local Vselection_alist.
15577 (some_frame_on_display): Delete unused function.
15578 (Fx_own_selection_internal, Fx_get_selection_internal)
15579 (Fx_disown_selection_internal, Fx_selection_owner_p)
15580 (Fx_selection_exists_p): New optional frame arg.
15581 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
15582 (x_handle_selection_clear): Don't treat other terminals with the
15583 same keyboard specially. Use the terminal-local Vselection_alist.
15584 (x_clear_frame_selections): Use Frun_hook_with_args.
15585
15586 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
15587
15588 * xterm.h: Add support for those atoms.
15589
15590 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
15591
15592 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
15593 (converted_selections, conversion_fail_tag): New global variables.
15594 (x_selection_request_lisp_error): Free the above.
15595 (x_get_local_selection): Remove unnecessary code.
15596 (x_reply_selection_request): Args changed; handle arbitrary array
15597 of converted selections stored in converted_selections.
15598 Separate the XChangeProperty and SelectionNotify steps.
15599 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
15600 (x_convert_selection): New function.
15601 (x_handle_selection_event): Simplify.
15602 (x_get_foreign_selection): Don't ignore incoming requests while
15603 waiting for an answer; this will fail when we implement
15604 SAVE_TARGETS, and seems unnecessary anyway.
15605 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
15606 (Vx_sent_selection_functions): Doc fix.
15607
15608 2011-05-26 Leo Liu <sdl.web@gmail.com>
15609
15610 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
15611
15612 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15613
15614 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
15615
15616 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
15617 for fringe update if it has periodic bitmap.
15618 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
15619 and fringe_bitmap_periodic_p.
15620
15621 * fringe.c (get_fringe_bitmap_data): New function.
15622 (draw_fringe_bitmap_1, update_window_fringes): Use it.
15623 (update_window_fringes): Record periodicity of fringe bitmap in glyph
15624 row. Mark glyph row for fringe update if periodicity changed.
15625
15626 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
15627 for fringe update unless it has periodic bitmap.
15628
15629 2011-05-25 Kenichi Handa <handa@m17n.org>
15630
15631 * xdisp.c (get_next_display_element): Set correct it->face_id for
15632 a static composition.
15633
15634 2011-05-24 Leo Liu <sdl.web@gmail.com>
15635
15636 * deps.mk (fns.o):
15637 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
15638
15639 * fns.c (crypto_hash_function, Fsha1): New function.
15640 (Fmd5): Use crypto_hash_function.
15641 (syms_of_fns): Add Ssha1.
15642
15643 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
15644
15645 * gnutls.c: Remove unused macros.
15646 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
15647 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
15648 Remove macros that are defined and never used.
15649 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
15650
15651 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15652
15653 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
15654 (Fx_get_selection_internal): Minor cleanup.
15655 (Fx_own_selection_internal): Rename arguments for consistency with
15656 select.el.
15657
15658 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
15659
15660 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
15661
15662 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15663
15664 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
15665
15666 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15667
15668 * dispnew.c (scrolling_window): Don't exclude the case that the
15669 last enabled row in the desired matrix touches the bottom boundary.
15670
15671 2011-05-21 Glenn Morris <rgm@gnu.org>
15672
15673 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
15674 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
15675 and add some more files.
15676
15677 2011-05-20 Eli Zaretskii <eliz@gnu.org>
15678
15679 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
15680 report_file_error introduced by the change from 2011-05-07.
15681
15682 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
15683
15684 * systime.h (Time): Define only if emacs is defined.
15685 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
15686 where the include path doesn't have X11/X.h by default. See
15687 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
15688
15689 2011-05-20 Kenichi Handa <handa@m17n.org>
15690
15691 * composite.c (find_automatic_composition): Fix previous change.
15692
15693 2011-05-20 Glenn Morris <rgm@gnu.org>
15694
15695 * lisp.mk: New file, split from Makefile.in.
15696 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
15697 (shortlisp): Remove.
15698 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
15699
15700 2011-05-19 Glenn Morris <rgm@gnu.org>
15701
15702 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
15703 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
15704 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
15705 (lisp): Set the order to that of loadup.el.
15706 (shortlisp): Make it a copy of $lisp.
15707 (SOME_MACHINE_LISP): Remove.
15708 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
15709 Use just $shortlisp, not $SOME_MACHINE_LISP too.
15710
15711 2011-05-18 Kenichi Handa <handa@m17n.org>
15712
15713 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
15714 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
15715 (find_automatic_composition): Mostly rewrite for efficiency.
15716
15717 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
15718
15719 * makefile.w32-in: Update dependencies.
15720
15721 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
15722
15723 * menu.c: Include limits.h (fixes the MS-Windows build broken by
15724 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
15725
15726 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
15727
15728 Fix some integer overflow issues, such as string length overflow.
15729
15730 * insdel.c (count_size_as_multibyte): Check for string overflow.
15731
15732 * character.c (lisp_string_width): Check for string overflow.
15733 Use EMACS_INT, not int, for string indexes and lengths; in
15734 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
15735 the resulting string length overflows an EMACS_INT; instead,
15736 report a string overflow if no precision given. When checking for
15737 precision exhaustion, use a check that cannot possibly have
15738 integer overflow. (Bug#8675)
15739 * character.h (lisp_string_width): Adjust to new signature.
15740
15741 * alloc.c (string_overflow): New function.
15742 (Fmake_string): Use it. This doesn't change behavior, but saves
15743 a few bytes and will simplify future changes.
15744 * character.c (string_escape_byte8): Likewise.
15745 * lisp.h (string_overflow): New decl.
15746
15747 Fixups, following up to the user-interface timestamp change.
15748 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
15749 for UI timestamps, instead of unsigned long.
15750 * msdos.c (mouse_get_pos): Likewise.
15751 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
15752 * w32gui.h (Time): Define by including "systime.h" rather than by
15753 declaring it ourselves. (Bug#8664)
15754
15755 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
15756 * image.c (clear_image_cache): Likewise.
15757
15758 * term.c (term_mouse_position): Don't assume time_t wraparound.
15759
15760 Be more systematic about user-interface timestamps.
15761 Before, the code sometimes used 'Time', sometimes 'unsigned long',
15762 and sometimes 'EMACS_UINT', to represent these timestamps.
15763 This change causes it to use 'Time' uniformly, as that's what X uses.
15764 This makes the code easier to follow, and makes it easier to catch
15765 integer overflow bugs such as Bug#8664.
15766 * frame.c (Fmouse_position, Fmouse_pixel_position):
15767 Use Time, not unsigned long, for user-interface timestamps.
15768 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
15769 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
15770 * keyboard.h (last_event_timestamp): Likewise.
15771 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
15772 * menu.h (xmenu_show): Likewise.
15773 * term.c (term_mouse_position): Likewise.
15774 * termhooks.h (struct input_event.timestamp): Likewise.
15775 (struct terminal.mouse_position_hook): Likewise.
15776 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
15777 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
15778 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
15779 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
15780 what it was before.
15781 * menu.h, termhooks.h: Include "systime.h", for Time.
15782
15783 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
15784 Don't assume that the difference between two unsigned long values
15785 can fit into an integer. At this point, we know button_down_time
15786 <= event->timestamp, so the difference must be nonnegative, so
15787 there's no need to cast the result if double-click-time is
15788 nonnegative, as it should be; check that it's nonnegative, just in
15789 case. This bug is triggered when events are more than 2**31 ms
15790 apart (about 25 days). (Bug#8664)
15791
15792 * xselect.c (last_event_timestamp): Remove duplicate decl.
15793 (x_own_selection): Remove needless cast to unsigned long.
15794
15795 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
15796 that always fit in int. Use a sentinel instead of a counter, to
15797 avoid a temp and to allay GCC's concerns about possible int overflow.
15798 * frame.h (struct frame): Use int for menu_bar_items_used
15799 instead of EMACS_INT, since it always fits in int.
15800
15801 * menu.c (grow_menu_items): Check for int overflow.
15802
15803 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
15804
15805 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
15806 Before, the code was not consistent. These values cannot exceed
15807 2**31 - 1 so there's no need to make them unsigned.
15808 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
15809 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
15810 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
15811 as modifiers.
15812 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
15813
15814 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
15815 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
15816 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
15817 presumably because the widths might not match.
15818
15819 * window.c (size_window): Avoid needless test at loop start.
15820
15821 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
15822
15823 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
15824
15825 2011-05-12 Drew Adams <drew.adams@oracle.com>
15826
15827 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
15828
15829 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15830
15831 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
15832 `width' to `bar_area_x' and `bar_area_width', respectively.
15833 (x_scroll_run): Take account of fringe background extension.
15834
15835 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
15836 Rename local vars `left' and `width' to `bar_area_x' and
15837 `bar_area_width', respectively.
15838 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
15839 background extension.
15840
15841 2011-05-10 Jim Meyering <meyering@redhat.com>
15842
15843 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
15844
15845 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
15846
15847 * image.c (Finit_image_library): Return t for built-in image types,
15848 like pbm and xbm. (Bug#8640)
15849
15850 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
15851
15852 * w32menu.c (set_frame_menubar): Fix submenu allocation.
15853
15854 2011-05-07 Eli Zaretskii <eliz@gnu.org>
15855
15856 * w32console.c (Fset_screen_color): Doc fix.
15857 (Fget_screen_color): New function.
15858 (syms_of_ntterm): Defsubr it.
15859
15860 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
15861 unlink the temporary file if Fcall_process didn't create it in the
15862 first place.
15863 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
15864 child process will be redirected to a file specified with `:file'.
15865 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
15866 cue to call_process_cleanup not to close that handle.
15867
15868 2011-05-07 Ben Key <bkey76@gmail.com>
15869
15870 * makefile.w32-in: The bootstrap-temacs rule now makes use of
15871 one of two shell specific rules, either bootstrap-temacs-CMD or
15872 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
15873 to the previous implementation of the bootstrap-temacs rule.
15874 The bootstrap-temacs-CMD rule is similar to the previous
15875 implementation of the bootstrap-temacs rule except that it
15876 makes use of the ESC_CFLAGS variable instead of the CFLAGS
15877 variable.
15878
15879 These changes, along with some changes to nt/configure.bat,
15880 nt/gmake.defs, and nt/nmake.defs, are required to extend my
15881 earlier fix to add support for --cflags and --ldflags options
15882 that include quotes so that it works whether make uses cmd or
15883 sh as the shell.
15884
15885 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
15886
15887 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
15888 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
15889 is a constant.
15890 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
15891 a string. Handle both cases.
15892 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
15893 (Fdbus_register_method): Use Qinvalid_function.
15894
15895 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
15896
15897 * makefile.w32-in: Update dependencies.
15898 (LISP_H): Add inttypes.h and stdin.h.
15899 (PROCESS_H): Add unistd.h.
15900
15901 2011-05-06 Eli Zaretskii <eliz@gnu.org>
15902
15903 * lread.c: Include limits.h (fixes the MS-Windows build broken by
15904 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
15905
15906 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
15907
15908 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
15909
15910 * term.c (vfatal): Remove stray call to va_end.
15911 It's not needed and the C Standard doesn't allow it here anyway.
15912
15913 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
15914 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
15915
15916 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
15917 bytes.
15918
15919 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
15920
15921 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
15922
15923 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
15924
15925 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
15926
15927 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
15928
15929 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
15930 * charset.c (Fdefine_charset_internal): Don't initialize
15931 charset.code_space[15]. The value was garbage, on hosts with
15932 32-bit int (Bug#8600).
15933
15934 * lread.c (read_integer): Be more consistent with string-to-number.
15935 Use string_to_number to do the actual conversion; this avoids
15936 rounding errors and fixes some other screwups. Without this fix,
15937 for example, #x1fffffffffffffff was misread as -2305843009213693952.
15938 (digit_to_number): Move earlier, for benefit of read_integer.
15939 Return -1 if the digit is out of range for the base, -2 if it is
15940 not a digit in any supported base. (Bug#8602)
15941
15942 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
15943
15944 * dispnew.c (scrolling_window): Return 1 if we scrolled,
15945 to match comment at start of function. This also removes a
15946 GCC warning about overflow in a 32+64-bit port.
15947
15948 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
15949
15950 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
15951 Reported by Stefan Monnier in
15952 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
15953 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
15954 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
15955
15956 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
15957 (EMACS_UINTPTR): Likewise, with uintptr_t.
15958
15959 * lisp.h: Prefer 64-bit EMACS_INT if available.
15960 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
15961 on 32-bit hosts that have 64-bit int, so that they can access
15962 large files.
15963 However, temporarily disable this change unless the temporary
15964 symbol WIDE_EMACS_INT is defined.
15965
15966 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
15967
15968 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
15969 This removes an assumption that EMACS_INT and long are the same
15970 width as pointers. The assumption is true for Emacs porting targets
15971 now, but we want to make other targets possible.
15972 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
15973 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
15974 In the rest of the code, change types of integers that hold casted
15975 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
15976 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
15977 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
15978 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
15979 No need to cast type when ORing.
15980 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
15981 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
15982 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
15983 assume EMACS_INT is the same width as char *.
15984 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
15985 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
15986 Remove no-longer-needed casts.
15987 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
15988 (xg_tool_bar_help_callback, xg_make_tool_item):
15989 Use EMACS_INTPTR to hold an integer
15990 that will be cast to void *; this can avoid a GCC warning
15991 if EMACS_INT is not the same width as void *.
15992 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
15993 * xdisp.c (display_echo_area_1, resize_mini_window_1):
15994 (current_message_1, set_message_1):
15995 Use a local to convert to proper width without a cast.
15996 * xmenu.c (dialog_selection_callback): Likewise.
15997
15998 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
15999 Also, don't assume VALBITS / RAND_BITS is less than 5,
16000 and don't rely on undefined behavior when shifting a 1 left into
16001 the sign bit.
16002 * lisp.h (get_random): Change signature to match.
16003
16004 * lread.c (hash_string): Use size_t, not int, for hash computation.
16005 Normally we prefer signed values; but hashing is special, because
16006 it's better to use unsigned division on hash table sizes so that
16007 the remainder is nonnegative. Also, size_t is the natural width
16008 for hashing into memory. The previous code used 'int', which doesn't
16009 retain enough info to hash well into very large tables.
16010 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
16011
16012 * dbusbind.c: Don't possibly lose pointer info when converting.
16013 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
16014 Use XPNTR rather than XHASH, so that the high-order bits of
16015 the pointer aren't lost when converting through void *.
16016
16017 * eval.c (Fautoload): Don't double-shift a pointer.
16018
16019 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
16020
16021 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16022
16023 * gnutls.c (DEF_GNUTLS_FN):
16024 * image.c (DEF_IMGLIB_FN): Make function pointers static.
16025
16026 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
16027
16028 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
16029 marker. (Bug#8610)
16030
16031 2011-05-05 Eli Zaretskii <eliz@gnu.org>
16032
16033 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
16034 New version that can reserve upto 2GB of heap space.
16035
16036 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
16037
16038 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
16039
16040 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
16041
16042 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
16043 `gnutls_certificate_set_x509_key_file'.
16044
16045 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
16046
16047 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
16048 Update dependencies.
16049
16050 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16051
16052 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
16053 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
16054 Remove unused parameter `fildes'.
16055 * process.c (read_process_output, send_process): Don't pass it.
16056
16057 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16058
16059 Fix previous change: the library cache is defined in w32.c.
16060 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
16061 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
16062
16063 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16064
16065 Implement dynamic loading of GnuTLS on Windows.
16066
16067 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
16068 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
16069 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
16070 Declare.
16071
16072 * gnutls.c (Qgnutls_dll): Define.
16073 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
16074 (gnutls_*): Declare function pointers.
16075 (init_gnutls_functions): New function to initialize function pointers.
16076 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
16077 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
16078 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
16079 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
16080 (emacs_gnutls_write, emacs_gnutls_read)
16081 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
16082 (Fgnutls_available_p): New function.
16083 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
16084 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
16085 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
16086
16087 * image.c: Include w32.h.
16088 (Vimage_type_cache): Delete.
16089 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
16090 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
16091 (w32_delayed_load): Move to w32.c.
16092
16093 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
16094
16095 * w32.c (QCloaded_from, Vlibrary_cache): Define.
16096 (w32_delayed_load): Move from image.c. When loading a library, record
16097 its filename in the :loaded-from property of the library id.
16098 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
16099 Initialize and staticpro them.
16100 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
16101
16102 * process.c: Include lisp.h before w32.h, not after.
16103 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
16104 instead of gnutls_record_check_pending.
16105
16106 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
16107
16108 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
16109
16110 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
16111 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
16112 as passed in.
16113
16114 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
16115
16116 * xterm.c (x_set_frame_alpha): Do not set property on anything
16117 else than FRAME_X_OUTER_WINDOW (Bug#8608).
16118
16119 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
16120
16121 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
16122
16123 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
16124
16125 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
16126 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
16127 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
16128 (gnutls_global_initialized, Qgnutls_bootprop_priority)
16129 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
16130 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
16131 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
16132 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
16133 (Qgnutls_bootprop_callbacks_verify): Make static.
16134
16135 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
16136
16137 * callproc.c: Indentation fixup.
16138
16139 * sysdep.c (wait_for_termination_1): Make static.
16140 (wait_for_termination, interruptible_wait_for_termination):
16141 Move after wait_for_termination_1.
16142
16143 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16144
16145 * sysdep.c (interruptible_wait_for_termination): New function
16146 which is like wait_for_termination, but allows keyboard
16147 interruptions.
16148
16149 * callproc.c (Fcall_process): Add (:file "file") as an option for
16150 the STDOUT buffer.
16151 (Fcall_process_region): Ditto.
16152
16153 2011-04-30 Eli Zaretskii <eliz@gnu.org>
16154
16155 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
16156 rather than `XVECTOR (FOO)->size'.
16157
16158 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
16159 inttypes.h, as a gnulib replacement is used if it not available in
16160 system headers.
16161
16162 2011-04-21 Eli Zaretskii <eliz@gnu.org>
16163
16164 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
16165 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
16166 of MOST_POSITIVE_FIXNUM. (Bug#8528)
16167
16168 * coding.c (coding_alloc_by_realloc): Error out if destination
16169 will grow beyond MOST_POSITIVE_FIXNUM.
16170 (decode_coding_emacs_mule): Abort if there isn't enough place in
16171 charbuf for the composition carryover bytes. Reserve an extra
16172 space for up to 2 characters produced in a loop.
16173 (decode_coding_iso_2022): Abort if there isn't enough place in
16174 charbuf for the composition carryover bytes.
16175
16176 2011-04-21 Eli Zaretskii <eliz@gnu.org>
16177
16178 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
16179 aborting when %lld or %lll format is passed.
16180 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
16181 %llo or %llx format is passed. (Bug#8545)
16182
16183 * window.c (window_scroll_line_based): Use a marker instead of
16184 simple variables to record original value of point. (Bug#7952)
16185
16186 * doprnt.c (doprnt): Fix the case where a multibyte sequence
16187 produced by %s or %c overflows available buffer space. (Bug#8545)
16188
16189 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
16190
16191 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
16192 (SIZE_MAX): Move defn after all includes, as they might #define it.
16193
16194 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16195
16196 * w32.c (init_environment): Warn about defaulting HOME to C:\.
16197
16198 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16199
16200 * keyboard.c (Qdelayed_warnings_hook): Define.
16201 (command_loop_1): Run `delayed-warnings-hook'
16202 if Vdelayed_warnings_list is non-nil.
16203 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
16204 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
16205
16206 2011-04-28 Eli Zaretskii <eliz@gnu.org>
16207
16208 * doprnt.c (doprnt): Don't return value smaller than the buffer
16209 size if the message was truncated. (Bug#8545).
16210
16211 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16212
16213 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
16214 (Fx_window_property): #if-0 the whole functions, not just the bodies.
16215
16216 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
16217
16218 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
16219
16220 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
16221
16222 * makefile.w32-in: Update dependencies.
16223
16224 2011-04-27 Eli Zaretskii <eliz@gnu.org>
16225
16226 Improve `doprnt' and its usage. (Bug#8545)
16227 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
16228 `format_end'. Remove support for %l as a conversion specifier.
16229 Don't use xrealloc. Improve diagnostics when the %l size modifier
16230 is used. Update the commentary.
16231
16232 * eval.c (verror): Simplify calculation of size_t.
16233
16234 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
16235 messages.
16236
16237 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
16238
16239 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
16240 change.
16241
16242 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
16243
16244 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
16245 This makes this file independent of the recent pseudovector change.
16246
16247 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
16248
16249 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
16250
16251 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
16252 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
16253 Remove unused local.
16254 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
16255
16256 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
16257 GCC 4.6.0 optimizes based on type-based alias analysis.
16258 For example, if b is of type struct buffer * and v of type struct
16259 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
16260 != &v->size, and therefore "v->size = 1; b->size = 2; return
16261 v->size;" must therefore return 1. This assumption is incorrect
16262 for Emacs, since it type-puns struct Lisp_Vector * with many other
16263 types. To fix this problem, this patch adds a new type struct
16264 vectorlike_header that documents the constraints on layout of vectors
16265 and pseudovectors, and helps optimizing compilers not get fooled
16266 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
16267 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
16268 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
16269 the size member.
16270 (XSETPVECTYPE): Rewrite in terms of new macro.
16271 (XSETPVECTYPESIZE): New macro, specifying both type and size.
16272 This is a bit clearer, and further avoids the possibility of
16273 undesirable aliasing.
16274 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
16275 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
16276 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
16277 since Lisp_Subr is a special case (no "next" field).
16278 (ASIZE): Now uses header.size rather than size.
16279 All previous uses of XVECTOR (foo)->size replaced to use this macro,
16280 to avoid the hassle of writing XVECTOR (foo)->header.size.
16281 (struct vectorlike_header): New type.
16282 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
16283 object, to help avoid aliasing.
16284 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
16285 (SUBRP): Likewise, since Lisp_Subr is a special case.
16286 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
16287 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
16288 (struct Lisp_Hash_Table): Combine first two members into a single
16289 struct vectorlike_header member. All uses of "size" and "next" members
16290 changed to be "header.size" and "header.next".
16291 * buffer.h (struct buffer): Likewise.
16292 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
16293 * frame.h (struct frame): Likewise.
16294 * process.h (struct Lisp_Process): Likewise.
16295 * termhooks.h (struct terminal): Likewise.
16296 * window.c (struct save_window_data, struct saved_window): Likewise.
16297 * window.h (struct window): Likewise.
16298 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
16299 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
16300 * buffer.c (init_buffer_once): Likewise.
16301 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
16302 special case.
16303 * process.c (Fformat_network_address): Use local var for size,
16304 for brevity.
16305
16306 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
16307
16308 Make the Lisp reader and string-to-float more consistent (Bug#8525)
16309 * data.c (atof): Remove decl; no longer used or needed.
16310 (digit_to_number): Move to lread.c.
16311 (Fstring_to_number): Use new string_to_number function, to be
16312 consistent with how the Lisp reader treats infinities and NaNs.
16313 Do not assume that floating-point numbers represent EMACS_INT
16314 without losing information; this is not true on most 64-bit hosts.
16315 Avoid double-rounding errors, by insisting on integers when
16316 parsing non-base-10 numbers, as the documentation specifies.
16317 * lisp.h (string_to_number): New decl, replacing ...
16318 (isfloat_string): Remove.
16319 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
16320 (read1): Do not accept +. and -. as integers; this
16321 appears to have been a coding error. Similarly, do not accept
16322 strings like +-1e0 as floating point numbers. Do not report
16323 overflow for integer overflows unless the base is not 10 which
16324 means we have no simple and reliable way to continue.
16325 Break out the floating-point parsing into a new
16326 function string_to_number, so that Fstring_to_number parses
16327 floating point numbers consistently with the Lisp reader.
16328 (digit_to_number): Move here from data.c. Make it static inline.
16329 (E_CHAR, EXP_INT): Remove, replacing with ...
16330 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
16331 (string_to_number): New function, replacing isfloat_string.
16332 This function checks for valid syntax and produces the resulting
16333 Lisp float number too. Rework it so that string-to-number
16334 no longer mishandles examples like "1.0e+". Use strtoumax,
16335 so that overflow for non-base-10 numbers is reported only when
16336 there's no portable and simple way to convert to floating point.
16337
16338 * textprop.c (set_text_properties_1): Rewrite for clarity,
16339 and to avoid GCC warning about integer overflow.
16340
16341 * intervals.h (struct interval): Use EMACS_INT for members
16342 where EMACS_UINT might cause problems. See
16343 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
16344 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
16345 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
16346 All uses changed.
16347 (offset_intervals): Tell GCC not to worry about length overflow
16348 when negating a negative length.
16349
16350 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
16351 (overrun_check_free): Likewise.
16352
16353 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
16354 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
16355 word size.
16356
16357 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
16358 (gnutls_make_error): Rename local to avoid shadowing.
16359 (gnutls_emacs_global_deinit): ifdef out; not used.
16360 (Fgnutls_boot): Use const for pointer to readonly storage.
16361 Comment out unused local. Fix pointer signedness problems.
16362
16363 * lread.c (openp): Don't stuff size_t into an 'int'.
16364 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
16365 about possible signed overflow.
16366
16367 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
16368 (GDK_KEY_g): Don't define if already defined.
16369 (xg_prepare_tooltip): Avoid pointer signedness problem.
16370 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
16371
16372 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
16373 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
16374
16375 * xfns.c (Fx_window_property): Simplify a bit,
16376 to make a bit faster and to avoid GCC 4.6.0 warning.
16377 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
16378
16379 * fns.c (internal_equal): Don't assume size_t fits in int.
16380
16381 * alloc.c (compact_small_strings): Tighten assertion a little.
16382
16383 Replace pEd with more-general pI, and fix some printf arg casts.
16384 * lisp.h (pI): New macro, generalizing old pEd macro to other
16385 conversion specifiers. For example, use "...%"pI"d..." rather
16386 than "...%"pEd"...".
16387 (pEd): Remove. All uses replaced with similar uses of pI.
16388 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
16389 * alloc.c (check_pure_size): Don't overflow by converting size to int.
16390 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
16391 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
16392 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
16393 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
16394 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
16395 64-bit hosts.
16396 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
16397 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
16398 * print.c (safe_debug_print, print_object): Likewise.
16399 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
16400 to int.
16401 Use pI instead of if-then-else-abort. Use %p to avoid casts,
16402 avoiding the 0 flag, which is not portable.
16403 * process.c (Fmake_network_process): Use pI to avoid cast.
16404 * region-cache.c (pp_cache): Likewise.
16405 * xdisp.c (decode_mode_spec): Likewise.
16406 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
16407 behavior on 64-bit hosts with printf arg.
16408 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
16409 (x_stop_queuing_selection_requests): Likewise.
16410 (x_get_window_property): Don't truncate byte count to an 'int'
16411 when tracing.
16412
16413 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
16414 here, since it parses constructs like leading '-' and spaces,
16415 which are not wanted; and it overflows with large numbers.
16416 Instead, simply match F[0-9]+, which is what is wanted anyway.
16417
16418 * alloc.c: Remove unportable assumptions about struct layout.
16419 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
16420 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
16421 (allocate_vectorlike, make_pure_vector): Use the new macros,
16422 plus offsetof, to remove unportable assumptions about struct layout.
16423 These assumptions hold on all porting targets that I know of, but
16424 they are not guaranteed, they're easy to remove, and removing them
16425 makes further changes easier.
16426
16427 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
16428 This doesn't fix a bug but makes the code clearer.
16429 (string_overrun_cookie): Now const. Use initializers that
16430 don't formally overflow signed char, to avoid warnings.
16431 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
16432 can cause Emacs to crash when string overrun checking is enabled.
16433 (allocate_buffer): Don't assume sizeof (struct buffer) is a
16434 multiple of sizeof (EMACS_INT); it need not be, if
16435 alignof(EMACS_INT) < sizeof (EMACS_INT).
16436 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
16437
16438 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
16439
16440 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
16441
16442 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
16443
16444 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
16445 supposed to be handshaking. (Bug#8556)
16446 Reported by Paul Eggert <eggert@cs.ucla.edu>.
16447
16448 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16449
16450 * lisp.h (Qdebug): List symbol.
16451 * eval.c (Qdebug): Restore global linkage.
16452 * keyboard.c (debug-on-event): New variable.
16453 (handle_user_signal): Break into debugger when debug-on-event
16454 matches the current signal symbol.
16455
16456 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
16457
16458 * alloc.c (check_sblock, check_string_bytes)
16459 (check_string_free_list): Convert to standard C.
16460
16461 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
16462
16463 * w32.c (emacs_gnutls_push): Fix typo.
16464
16465 2011-04-25 Eli Zaretskii <eliz@gnu.org>
16466
16467 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
16468 "cast to pointer from integer of different size".
16469
16470 Improve doprnt and its use in verror. (Bug#8545)
16471 * doprnt.c (doprnt): Document the set of format control sequences
16472 supported by the function. Use SAFE_ALLOCA instead of always
16473 using `alloca'.
16474
16475 * eval.c (verror): Don't limit the buffer size at size_max-1, that
16476 is one byte too soon. Don't use xrealloc; instead xfree and
16477 xmalloc anew.
16478
16479 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
16480
16481 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
16482 callbacks stage.
16483
16484 * gnutls.c: Renamed global_initialized to
16485 gnutls_global_initialized. Added internals for the
16486 :verify-hostname-error, :verify-error, and :verify-flags
16487 parameters of `gnutls-boot' and documented those parameters in the
16488 docstring. Start callback support.
16489 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
16490 unless a fatal error occurred. Call gnutls_alert_send_appropriate
16491 on error. Return error code.
16492 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
16493 (emacs_gnutls_read): Likewise.
16494 (Fgnutls_boot): Return handshake error code.
16495 (emacs_gnutls_handle_error): New function.
16496 (wsaerror_to_errno): Likewise.
16497
16498 * w32.h (emacs_gnutls_pull): Add prototype.
16499 (emacs_gnutls_push): Likewise.
16500
16501 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
16502 (emacs_gnutls_push): Likewise.
16503
16504 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
16505
16506 * process.c (wait_reading_process_output): Check if GnuTLS
16507 buffered some data internally if no FDs are set for TLS
16508 connections.
16509
16510 * makefile.w32-in (OBJ2): Add gnutls.$(O).
16511 (LIBS): Link to USER_LIBS.
16512 ($(BLD)/gnutls.$(0)): New target.
16513
16514 2011-04-24 Eli Zaretskii <eliz@gnu.org>
16515
16516 * xdisp.c (handle_single_display_spec): Rename the
16517 display_replaced_before_p argument into display_replaced_p, to
16518 make it consistent with the commentary. Fix typos in the
16519 commentary.
16520
16521 * textprop.c (syms_of_textprop): Remove dead code.
16522 (copy_text_properties): Delete obsolete commentary about an
16523 interface that was deleted long ago. Fix typos in the description
16524 of arguments.
16525
16526 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
16527 to changes in oldXMenu/XMenu.h from 2011-04-16.
16528 <menu_help_message, prev_menu_help_message>: Constify.
16529 (IT_menu_make_room): menu->help_text is now `const char **';
16530 adjust.
16531
16532 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
16533 to changes in oldXMenu/XMenu.h from 2011-04-16.
16534 (struct XMenu): Declare `help_text' `const char **'.
16535
16536 * xfaces.c <Qunspecified>: Make extern again.
16537
16538 * syntax.c: Include sys/types.h before including regex.h, as
16539 required by POSIX.
16540
16541 * doc.c (get_doc_string): Improve the format passed to `error'.
16542
16543 * doprnt.c (doprnt): Improve commentary.
16544
16545 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
16546
16547 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
16548 them with etags.
16549
16550 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
16551 changes in globals.h immediately force recompilation.
16552 (TAGS): Depend on $(CURDIR)/m/intel386.h and
16553 $(CURDIR)/s/ms-w32.h.
16554 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
16555
16556 * character.c (Fchar_direction): Function deleted.
16557 (syms_of_character): Don't defsubr it.
16558 <char-direction-table>: Deleted.
16559
16560 2011-04-23 Eli Zaretskii <eliz@gnu.org>
16561
16562 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
16563 * doprnt.c: Include limits.h.
16564 (SIZE_MAX): New macro.
16565 (doprnt): Return a size_t value. 2nd arg is now size_t.
16566 Many local variables are now size_t instead of int or unsigned.
16567 Improve overflow protection. Support `l' modifier for integer
16568 conversions. Support %l conversion. Don't assume an EMACS_INT
16569 argument for integer conversions and for %c.
16570
16571 * lisp.h (doprnt): Restore prototype.
16572
16573 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
16574 $(SRC)/character.h.
16575
16576 * Makefile.in (base_obj): Add back doprnt.o.
16577
16578 * deps.mk (doprnt.o): Add back prerequisites.
16579 (callint.o): Depend on character.h.
16580
16581 * eval.c (internal_lisp_condition_case): Include the handler
16582 representation in the error message.
16583 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
16584 when breaking from the loop.
16585
16586 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
16587
16588 * callint.c (Fcall_interactively): When displaying error message
16589 about invalid control letter, pass the character's codepoint, not
16590 a pointer to its multibyte form. Improve display of the character
16591 in octal and display also its hex code.
16592
16593 * character.c (char_string): Use %x to display the (unsigned)
16594 codepoint of an invalid character, to avoid displaying a bogus
16595 negative value.
16596
16597 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
16598 `error', not SYMBOL_NAME itself.
16599
16600 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
16601 character arguments to `error'.
16602
16603 * charset.c (check_iso_charset_parameter): Fix incorrect argument
16604 to `error' in error message about FINAL_CHAR argument. Make sure
16605 FINAL_CHAR is a character, and use %c when it is passed as
16606 argument to `error'.
16607
16608 2011-04-23 Eli Zaretskii <eliz@gnu.org>
16609
16610 * s/ms-w32.h (localtime): Redirect to sys_localtime.
16611
16612 * w32.c: Include <time.h>.
16613 (sys_localtime): New function.
16614
16615 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
16616
16617 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
16618
16619 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
16620
16621 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
16622
16623 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
16624 zombies (Bug#8467).
16625
16626 2011-04-19 Eli Zaretskii <eliz@gnu.org>
16627
16628 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
16629 gl_state.e_property when gl_state.object is Qt.
16630
16631 * insdel.c (make_gap_larger): Remove limitation of buffer size
16632 to <= INT_MAX.
16633
16634 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
16635
16636 * xdisp.c (lookup_glyphless_char_display)
16637 (produce_glyphless_glyph): Handle cons cell entry in
16638 glyphless-char-display.
16639 (Vglyphless_char_display): Document it.
16640
16641 * term.c (produce_glyphless_glyph): Handle cons cell entry in
16642 glyphless-char-display.
16643
16644 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
16645
16646 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
16647
16648 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
16649
16650 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
16651 definition for no-X builds.
16652
16653 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
16654
16655 Static checks with GCC 4.6.0 and non-default toolkits.
16656
16657 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
16658
16659 * process.c (keyboard_bit_set): Define only if SIGIO.
16660 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
16661 (send_process): Repair possible setjmp clobbering.
16662
16663 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
16664
16665 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
16666
16667 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
16668
16669 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
16670 Define only if needed.
16671
16672 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
16673 by pacifying GCC about it. Maybe it's time to retire it?
16674 * xfaces.c (USG, __TIMEVAL__): Likewise.
16675
16676 * dispextern.h (struct redisplay_interface): Rename param
16677 to avoid shadowing.
16678 * termhooks.h (struct terminal): Likewise.
16679 * xterm.c (xembed_send_message): Likewise.
16680
16681 * insdel.c (make_gap_smaller): Define only if
16682 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
16683
16684 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
16685 it.
16686
16687 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
16688 so that we aren't warned about unused symbols.
16689
16690 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
16691
16692 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
16693
16694 * xfns.c (x_real_positions): Mark locals as initialized.
16695
16696 * xmenu.c (xmenu_show): Don't use uninitialized vars.
16697
16698 * xterm.c: Fix problems found by static analysis with other toolkits.
16699 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
16700 (x_dispatch_event): Declare static if USE_GTK, and
16701 define if USE_GTK || USE_X_TOOLKIT.
16702 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
16703 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
16704 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
16705 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
16706
16707 * xmenu.c (menu_help_callback): Pointer type fixes.
16708 Use const pointers when pointing at readonly data. Avoid pointer
16709 signedness clashes.
16710 (FALSE): Remove unused macro.
16711 (update_frame_menubar): Remove unused decl.
16712
16713 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
16714
16715 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
16716 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
16717 (single_menu_item): Rename local to avoid shadowing.
16718
16719 * keyboard.c (make_lispy_event): Remove unused local var.
16720
16721 * frame.c, frame.h (x_get_resource_string): Bring this back, but
16722 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
16723
16724 * bitmaps: Change bitmaps from unsigned char back to the X11
16725 compatible char. Avoid the old compiler warnings about
16726 out-of-range initializers by using, for example, '\xab' rather
16727 than 0xab.
16728
16729 * xgselect.c (xgselect_initialize): Check vs interface
16730 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
16731
16732 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
16733
16734 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
16735 to read-only memory.
16736
16737 * fns.c (vector): Remove; this old hack is no longer needed.
16738
16739 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
16740 Remove unused var.
16741 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
16742
16743 * xrdb.c (x_load_resources): Omit unused local.
16744
16745 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
16746 (x_window): Rename locals to avoid shadowing.
16747 (USG): Use the kludged USG macro, to pacify gcc.
16748
16749 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
16750 (x_term_init): Remove local to avoid shadowing.
16751
16752 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
16753
16754 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
16755 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
16756
16757 2011-04-16 Eli Zaretskii <eliz@gnu.org>
16758
16759 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
16760
16761 Fix regex.c, syntax.c and friends for buffers > 2GB.
16762 * syntax.h (struct gl_state_s): Declare character position members
16763 EMACS_INT.
16764
16765 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
16766
16767 * textprop.c (verify_interval_modification, interval_of):
16768 Declare arguments EMACS_INT.
16769
16770 * intervals.c (adjust_intervals_for_insertion): Declare arguments
16771 EMACS_INT.
16772
16773 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
16774
16775 * indent.c (Fvertical_motion): Local variable it_start is now
16776 EMACS_INT.
16777
16778 * regex.c (re_match, re_match_2, re_match_2_internal)
16779 (bcmp_translate, regcomp, regexec, print_double_string)
16780 (group_in_compile_stack, re_search, re_search_2, regex_compile)
16781 (re_compile_pattern, re_exec): Declare arguments and local
16782 variables `size_t' and `ssize_t' and return values `regoff_t', as
16783 appropriate.
16784 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
16785 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
16786 <compile_stack_type>: `size' and `avail' are now `size_t'.
16787
16788 * regex.h <regoff_t>: Use ssize_t, not int.
16789 (re_search, re_search_2, re_match, re_match_2): Arguments that
16790 specify buffer/string position and length are now ssize_t and
16791 size_t. Return type is regoff_t.
16792
16793 2011-04-16 Ben Key <bkey76@gmail.com>
16794
16795 * nsfont.m: Fixed bugs in ns_get_family and
16796 ns_descriptor_to_entity that were caused by using free to
16797 deallocate memory blocks that were allocated by xmalloc (via
16798 xstrdup). This caused Emacs to crash when compiled with
16799 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
16800 --enable-checking=xmallocoverrun). xfree is now used to
16801 deallocate these memory blocks.
16802
16803 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
16804
16805 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
16806
16807 emacs_write: Accept and return EMACS_INT for sizes.
16808 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
16809 et seq.
16810 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
16811 Accept and return EMACS_INT.
16812 (emacs_gnutls_write): Return the number of bytes written on
16813 partial writes.
16814 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
16815 (emacs_read, emacs_write): Remove check for negative size, as the
16816 Emacs source code has been audited now.
16817 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
16818 (emacs_read, emacs_write): Use it.
16819 * process.c (send_process): Adjust to the new signatures of
16820 emacs_write and emacs_gnutls_write. Do not attempt to store
16821 a byte offset into an 'int'; it might overflow.
16822 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
16823
16824 * sound.c: Don't assume sizes fit in 'int'.
16825 (struct sound_device.period_size, alsa_period_size):
16826 Return EMACS_INT, not int.
16827 (struct sound_device.write, vox_write, alsa_write):
16828 Accept EMACS_INT, not int.
16829 (wav_play, au_play): Use EMACS_INT to store sizes and to
16830 record read return values.
16831
16832 2011-04-15 Ben Key <bkey76@gmail.com>
16833
16834 * keyboard.c (Qundefined): Don't declare static since it is used
16835 in nsfns.m.
16836 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
16837 static since they are used in nsfont.m.
16838
16839 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
16840
16841 * process.c (Qprocessp): Don't declare static.
16842 * lisp.h (Qprocessp): Declare again.
16843
16844 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
16845
16846 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
16847
16848 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
16849
16850 Improve C-level modularity by making more things 'static'.
16851
16852 Don't publish debugger-only interfaces to other modules.
16853 * lisp.h (safe_debug_print, debug_output_compilation_hack):
16854 (verify_bytepos, count_markers): Move decls to the only modules
16855 that need them.
16856 * region-cache.h (pp_cache): Likewise.
16857 * window.h (check_all_windows): Likewise.
16858 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
16859
16860 * sysdep.c (croak): Now static, if
16861 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
16862 * syssignal.h (croak): Declare only if not static.
16863
16864 * alloc.c (refill_memory_reserve): Now static if
16865 !defined REL_ALLOC || defined SYSTEM_MALLOC.
16866 * lisp.h (refill_memory_reserve): Declare only if not static.
16867
16868 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
16869 Define only if USE_LUCID.
16870
16871 * xrdb.c (x_customization_string, x_rm_string): Now static.
16872
16873 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
16874 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
16875
16876 * xdisp.c (draw_row_with_mouse_face): Now static.
16877 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
16878
16879 * window.h (check_all_windows): Mark externally visible.
16880
16881 * window.c (window_deletion_count): Now static.
16882
16883 * undo.c: Make symbols static if they're not exported.
16884 (last_undo_buffer, last_boundary_position, pending_boundary):
16885 Now static.
16886
16887 * textprop.c (interval_insert_behind_hooks): Now static.
16888 (interval_insert_in_front_hooks): Likewise.
16889
16890 * term.c: Make symbols static if they're not exported.
16891 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
16892 (max_frame_lines, tty_set_terminal_modes):
16893 (tty_reset_terminal_modes, tty_turn_off_highlight):
16894 (get_tty_terminal): Now static.
16895 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
16896 * termhooks.h (term_mouse_moveto): Do not declare if
16897 HAVE_WINDOW_SYSTEM.
16898 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
16899 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
16900
16901 * sysdep.c: Make symbols static if they're not exported.
16902 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
16903 Now static.
16904 (sigprocmask_set, full_mask): Remove; unused.
16905 (wait_debugging): Mark as visible.
16906 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
16907 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
16908
16909 * syntax.c (syntax_temp): Define only if !__GNUC__.
16910
16911 * sound.c (current_sound_device, current_sound): Now static.
16912
16913 * search.c (searchbufs, searchbuf_head): Now static.
16914
16915 * scroll.c (scroll_cost): Remove; unused.
16916 * dispextern.h (scroll_cost): Remove decl.
16917
16918 * region-cache.h (pp_cache): Mark as externally visible.
16919
16920 * process.c: Make symbols static if they're not exported.
16921 (process_tick, update_tick, create_process, chan_process):
16922 (Vprocess_alist, proc_buffered_char, datagram_access):
16923 (fd_callback_data, send_process_frame, process_sent_to): Now static.
16924 (deactivate_process): Mark defn as static, as well as decl.
16925 * lisp.h (create_process): Remove decl.
16926 * process.h (chan_process, Vprocess_alist): Remove decls.
16927
16928 * print.c: Make symbols static if they're not exported.
16929 (print_depth, new_backquote_output, being_printed, print_buffer):
16930 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
16931 (print_interval, print_number_index, initial_stderr_stream):
16932 Now static.
16933 * lisp.h (Fprinc): Remove decl.
16934 (debug_output_compilation_hack): Mark as externally visible.
16935
16936 * sysdep.c (croak): Move decl from here to syssignal.h.
16937 * syssignal.h (croak): Put it here, so the API can be checked when
16938 'croak' is called from dissociate_if_controlling_tty.
16939
16940 * minibuf.c: Make symbols static if they're not exported.
16941 (minibuf_save_list, choose_minibuf_frame): Now static.
16942 * lisp.h (choose_minibuf_frame): Remove decl.
16943
16944 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
16945
16946 * lread.c: Make symbols static if they're not exported.
16947 (read_objects, initial_obarray, oblookup_last_bucket_number):
16948 Now static.
16949 (make_symbol): Remove; unused.
16950 * lisp.h (initial_obarray, make_symbol): Remove decls.
16951
16952 * keyboard.c: Make symbols static if they're not exported.
16953 (single_kboard, recent_keys_index, total_keys, recent_keys):
16954 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
16955 (this_single_command_key_start, echoing, last_auto_save):
16956 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
16957 (command_loop, echo_now, keyboard_init_hook, help_char_p):
16958 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
16959 (Vlispy_mouse_stem, double_click_count):
16960 Now static.
16961 (force_auto_save_soon): Define only if SIGDANGER.
16962 (ignore_mouse_drag_p): Now static if
16963 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
16964 (print_help): Remove; unused.
16965 (stop_character, last_timer_event): Mark as externally visible.
16966 * keyboard.h (ignore_mouse_drag_p): Declare only if
16967 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
16968 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
16969 * lisp.h (echoing): Remove decl.
16970 (force_auto_save_soon): Declare only if SIGDANGER.
16971 * xdisp.c (redisplay_window): Simplify code, to make it more
16972 obvious that ignore_mouse_drag_p is not accessed if !defined
16973 USE_GTK && !defined HAVE_NS.
16974
16975 * intervals.c: Make symbols static if they're not exported.
16976 (merge_properties_sticky, merge_interval_right, delete_interval):
16977 Now static.
16978 * intervals.h (merge_interval_right, delete_interval): Remove decls.
16979
16980 * insdel.c: Make symbols static if they're not exported.
16981 However, leave prepare_to_modify_buffer alone. It's never
16982 called from outside this function, but that appears to be a bug.
16983 (combine_after_change_list, combine_after_change_buffer):
16984 (adjust_after_replace, signal_before_change): Now static.
16985 (adjust_after_replace_noundo): Remove; unused.
16986 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
16987 (signal_before_change): Remove decls.
16988
16989 * indent.c (val_compute_motion, val_vmotion): Now static.
16990
16991 * image.c: Make symbols static if they're not exported.
16992 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
16993 if USE_GTK.
16994 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
16995 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
16996
16997 * fringe.c (standard_bitmaps): Now static.
16998 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
16999
17000 * frame.c: Make symbols static if they're not exported.
17001 (x_report_frame_params, make_terminal_frame): Now static.
17002 (get_frame_param): Now static, unless HAVE_NS.
17003 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
17004 (x_get_resource_string): Remove; not used.
17005 * frame.h (make_terminal_frame, x_report_frame_params):
17006 (x_get_resource_string); Remove decls.
17007 (x_fullscreen_adjust): Declare only if WINDOWSNT.
17008 * lisp.h (get_frame_param): Declare only if HAVE_NS.
17009
17010 * font.c, fontset.c: Make symbols static if they're not exported.
17011 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
17012 (FACE_SUITABLE_FOR_CHAR_P): Use it.
17013 * font.c (font_close_object): Now static.
17014 * font.h (font_close_object): Remove.
17015 * fontset.c (FONTSET_OBJLIST): Remove.
17016 (free_realized_fontset) #if-0 the body, which does nothing.
17017 (face_suitable_for_char_p): #if-0, as it's never called.
17018 * fontset.h (face_suitable_for_char_p): Remove decl.
17019 * xfaces.c (face_at_string_position):
17020 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
17021 since 0 is always ASCII.
17022
17023 * fns.c (weak_hash_tables): Now static.
17024
17025 * fileio.c: Make symbols static if they're not exported.
17026 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
17027 (Vwrite_region_annotation_buffers): Now static.
17028
17029 * eval.c: Make symbols static if they're not exported.
17030 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
17031 * lisp.h (backtrace_list): Remove decl.
17032
17033 * emacs.c: Make symbols static if they're not exported.
17034 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
17035 (fatal_error_code, fatal_error_signal_hook, standard_args):
17036 Now static.
17037 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
17038 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
17039 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
17040 * lisp.h (fatal_error_signal_hook): Remove decl.
17041 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
17042
17043 * editfns.c: Move a (normally-unused) function to its only use.
17044 * editfns.c, lisp.h (get_operating_system_release): Remove.
17045 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
17046 worth the hassle of breaking this out.
17047
17048 * xterm.c: Make symbols static if they're not exported.
17049 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
17050 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
17051 (x_destroy_window, x_delete_display):
17052 Now static.
17053 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
17054 (x_mouse_leave): Remove; unused.
17055 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
17056 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
17057 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
17058 Remove decls.
17059 (x_mouse_leave): Declare only if WINDOWSNT.
17060 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
17061 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
17062 USE_X_TOOLKIT.
17063
17064 * ftxfont.c: Make symbols static if they're not exported.
17065 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
17066 HAVE_FREETYPE.
17067 * font.h (ftxfont_driver): Likewise.
17068
17069 * xfns.c: Make symbols static if they're not exported.
17070 (x_last_font_name, x_display_info_for_name):
17071 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
17072 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
17073 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
17074 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
17075 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
17076 (last_show_tip_args): Now static.
17077 (xic_defaut_fontset, xic_create_fontsetname): Define only if
17078 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
17079 (x_screen_planes): Remove; unused.
17080 * dispextern.h (x_screen_planes): Remove decl.
17081
17082 * dispnew.c: Make symbols static if they're not exported.
17083 * dispextern.h (redraw_garbaged_frames, scrolling):
17084 (increment_row_positions): Remove.
17085 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
17086 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
17087 Now static.
17088 (redraw_garbaged_frames): Remove; unused.
17089
17090 * xfaces.c: Make symbols static if they're not exported.
17091 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
17092 Remove decls.
17093 * xterm.h (defined_color): Remove decls.
17094 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
17095 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
17096 (menu_face_changed_default, defined_color, free_realized_face):
17097 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
17098 (ascii_face_of_lisp_face): Remove; unused.
17099
17100 * xdisp.c: Make symbols static if they're not exported.
17101 * dispextern.h (scratch_glyph_row, window_box_edges):
17102 (glyph_to_pixel_coords, set_cursor_from_row):
17103 (get_next_display_element, set_iterator_to_next):
17104 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
17105 (show_mouse_face): Remove decls
17106 * frame.h (message_buf_print): Likewise.
17107 * lisp.h (pop_message, set_message, check_point_in_composition):
17108 Likewise.
17109 * xterm.h (set_vertical_scroll_bar): Likewise.
17110 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
17111 (message_buf_print, scratch_glyph_row, displayed_buffer):
17112 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
17113 (get_next_display_element, show_mouse_face, window_box_edges):
17114 (frame_to_window_pixel_xy, check_point_in_composition):
17115 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
17116 (glyph_to_pixel_coords): Remove; unused.
17117
17118 * dired.c (file_name_completion): Now static.
17119
17120 * dbusbind.c (xd_in_read_queued_messages): Now static.
17121
17122 * lisp.h (circular_list_error, FOREACH): Remove; unused.
17123 * data.c (circular_list_error): Remove.
17124
17125 * commands.h (last_point_position, last_point_position_buffer):
17126 (last_point_position_window): Remove decls.
17127 * keyboard.c: Make these variables static.
17128
17129 * coding.h (coding, code_convert_region, encode_coding_gap):
17130 Remove decls.
17131 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
17132 (iso_code_class, detect_coding, code_convert_region): Now static.
17133 (encode_coding_gap): Remove; unused.
17134
17135 * chartab.c (chartab_chars, chartab_bits): Now static.
17136
17137 * charset.h (charset_iso_8859_1): Remove decl.
17138 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
17139 Now static.
17140
17141 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
17142 * ccl.c (Vccl_program_table): Now static.
17143 (check_ccl_update): Remove; unused.
17144
17145 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
17146 * category.h: ... from here.
17147 * category.c (check_category_table, set_category_set): Now static.
17148
17149 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
17150 * lisp.h: Remove these decls.
17151
17152 * buffer.c (buffer_count): Remove unused var.
17153
17154 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
17155 so that it's not optimized away.
17156 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
17157 * dispextern.h (bidi_dump_cached_states): Remove, since it's
17158 exported only to the debugger.
17159
17160 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
17161 * atimer.h (run_all_atimers): Remove; not exported.
17162
17163 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
17164 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
17165 was inaccessible from Lisp.
17166 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
17167 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
17168
17169 alloc.c: Import and export fewer symbols, and remove unused items.
17170 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
17171 is defined.
17172 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
17173 it's not optimized away by whole-program optimization.
17174 (message_enable_multibyte, free_misc): Remove.
17175 (catchlist, handlerlist, mark_backtrace):
17176 Declare only if BYTE_MARK_STACK.
17177 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
17178 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
17179 (message_enable_multibyte): Remove decl.
17180 (free_misc, interval_free_list, float_block, float_block_index):
17181 (n_float_blocks, float_free_list, cons_block, cons_block_index):
17182 (cons_free_list, last_marked_index):
17183 Now static.
17184 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
17185 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
17186 (mark_backtrace): Define only if BYTE_MARK_STACK.
17187 * xdisp.c (message_enable_multibyte): Now static.
17188
17189 Declare Lisp_Object Q* variables to be 'static' if not exported.
17190 This makes it easier for human readers (and static analyzers)
17191 to see whether these variables are used from other modules.
17192 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
17193 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
17194 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
17195 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
17196 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
17197 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
17198 * xmenu.c, xselect.c:
17199 Declare Q* vars static if they are not used in other modules.
17200 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
17201 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
17202 Remove decls of unexported vars.
17203 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
17204
17205 * lisp.h (DEFINE_FUNC): Make sname 'static'.
17206
17207 Make Emacs functions such as Fatom 'static' by default.
17208 This makes it easier for human readers (and static analyzers)
17209 to see whether these functions can be called from other modules.
17210 DEFUN now defines a static function. To make the function external
17211 so that it can be used in other C modules, use the new macro DEFUE.
17212 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
17213 (Finit_image_library):
17214 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
17215 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
17216 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
17217 Remove decls, since these functions are now static.
17218 (Funintern, Fget_internal_run_time): New decls, since these functions
17219 were already external.
17220
17221 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
17222 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
17223 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
17224 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
17225 * keyboard.c, keymap.c, lread.c:
17226 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
17227 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
17228 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
17229 Mark functions with DEFUE instead of DEFUN,
17230 if they are used in other modules.
17231 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
17232 decls for now-static functions.
17233 * buffer.h (Fdelete_overlay): Remove decl.
17234 * callproc.c (Fgetenv_internal): Mark as internal.
17235 * composite.c (Fremove_list_of_text_properties): Remove decl.
17236 (Fcomposition_get_gstring): New forward static decl.
17237 * composite.h (Fcomposite_get_gstring): Remove decl.
17238 * dired.c (Ffile_attributes): New forward static decl.
17239 * doc.c (Fdocumntation_property): New forward static decl.
17240 * eval.c (Ffetch_bytecode): New forward static decl.
17241 (Funintern): Remove extern decl; now in .h file where it belongs.
17242 * fileio.c (Fmake_symbolic_link): New forward static decl.
17243 * image.c (Finit_image_library): New forward static decl.
17244 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
17245 * intervals.h (Fprevious_property_change):
17246 (Fremove_list_of_text_properties): Remove decls.
17247 * keyboard.c (Fthis_command_keys): Remove decl.
17248 (Fcommand_execute): New forward static decl.
17249 * keymap.c (Flookup_key): New forward static decl.
17250 (Fcopy_keymap): Now static.
17251 * keymap.h (Flookup_key): Remove decl.
17252 * process.c (Fget_process): New forward static decl.
17253 (Fprocess_datagram_address): Mark as internal.
17254 * syntax.c (Fsyntax_table_p): New forward static decl.
17255 (skip_chars): Remove duplicate decl.
17256 * textprop.c (Fprevious_property_change): New forward static decl.
17257 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
17258 Now internal.
17259 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
17260 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
17261
17262 * editfns.c (Fformat): Remove unreachable code.
17263
17264 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
17265
17266 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
17267 change. (Bug#8496)
17268
17269 2011-04-13 Eli Zaretskii <eliz@gnu.org>
17270
17271 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
17272 when at ZV. (Bug#8487)
17273
17274 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
17275
17276 * charset.c (Fclear_charset_maps): Use xfree instead of free.
17277 (Bug#8437)
17278 * keyboard.c (parse_tool_bar_item): Likewise.
17279 * sound.c (sound_cleanup, alsa_close): Likewise.
17280 * termcap.c (tgetent): Likewise.
17281 * xfns.c (x_default_font_parameter): Likewise.
17282 * xsettings.c (read_and_apply_settings): Likewise.
17283
17284 * alloc.c (overrun_check_malloc, overrun_check_realloc)
17285 (overrun_check_free): Protoize.
17286
17287 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
17288
17289 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
17290 since callers should never pass a negative size.
17291 Change the signature to match that of plain 'read' and 'write'; see
17292 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
17293 * lisp.h: Update prototypes of emacs_write and emacs_read.
17294
17295 2011-04-11 Eli Zaretskii <eliz@gnu.org>
17296
17297 * xdisp.c (redisplay_window): Don't try to determine the character
17298 position of the scroll margin if the window start point w->startp
17299 is outside the buffer's accessible region. (Bug#8468)
17300
17301 2011-04-10 Eli Zaretskii <eliz@gnu.org>
17302
17303 Fix write-region and its subroutines for buffers > 2GB.
17304 * fileio.c (a_write, e_write): Modify declaration of arguments and
17305 local variables to support buffers larger than 2GB.
17306 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
17307
17308 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
17309 argument, local variables, and return value.
17310
17311 * lisp.h: Update prototypes of emacs_write and emacs_read.
17312
17313 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
17314
17315 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
17316
17317 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
17318
17319 Fix more problems found by GCC 4.6.0's static checks.
17320
17321 * xdisp.c (vmessage): Use a better test for character truncation.
17322
17323 * charset.c (load_charset_map): <, not <=, for optimization,
17324 and to avoid potential problems with integer overflow.
17325 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
17326 * casetab.c (set_identity, shuffle): Likewise.
17327 * editfns.c (Fformat): Likewise.
17328 * syntax.c (skip_chars): Likewise.
17329
17330 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
17331 This also lets GCC 4.6.0 generate slightly better loop code.
17332
17333 * callint.c (Fcall_interactively): <, not <=, for optimization.
17334 (Fcall_interactively): Count the number of arguments produced,
17335 not the number of arguments given. This is simpler and lets GCC
17336 4.6.0 generate slightly better code.
17337
17338 * ftfont.c: Distingish more carefully between FcChar8 and char.
17339 The previous code passed unsigned char * to a functions like
17340 strlen and xstrcasecmp that expect char *, which does not
17341 conform to the C standard.
17342 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
17343 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
17344 char * when the C standard requires it.
17345
17346 * keyboard.c (read_char): Remove unused var.
17347
17348 * eval.c: Port to Windows vsnprintf (Bug#8435).
17349 Include <limits.h>.
17350 (SIZE_MAX): Define if the headers do not.
17351 (verror): Do not give up if vsnprintf returns a negative count.
17352 Instead, grow the buffer. This ports to Windows vsnprintf, which
17353 does not conform to C99. Problem reported by Eli Zaretskii.
17354 Also, simplify the allocation scheme, by avoiding the need for
17355 calling realloc, and removing the ALLOCATED variable.
17356
17357 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
17358
17359 Remove invocations of doprnt, as Emacs now uses vsnprintf.
17360 But keep the doprint source code for now, as we might revamp it
17361 and use it again (Bug#8435).
17362 * lisp.h (doprnt): Remove.
17363 * Makefile.in (base_obj): Remove doprnt.o.
17364 * deps.mk (doprnt.o): Remove.
17365
17366 error: Print 32- and 64-bit integers portably (Bug#8435).
17367 Without this change, on typical 64-bit hosts error ("...%d...", N)
17368 was used to print both 32- and 64-bit integers N, which relied on
17369 undefined behavior.
17370 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
17371 * lisp.h (error, verror): Mark as printf-like functions.
17372 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
17373 Report overflow in size calculations when allocating printf buffer.
17374 Do not truncate output string at its first null byte.
17375 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
17376 Truncate the output at a character boundary, since vsnprintf does not
17377 do that.
17378 * charset.c (check_iso_charset_parameter): Convert internal
17379 character to string before calling 'error', since %c now has the
17380 printf meaning.
17381 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
17382 overflow when computing char to be passed to 'error'. Do not
17383 pass Lisp_Object to 'error'; pass the integer instead.
17384 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
17385 formatted with plain %d.
17386
17387 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
17388
17389 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
17390
17391 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
17392
17393 * xterm.c (x_catch_errors): Remove duplicate declaration.
17394
17395 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
17396
17397 * xdisp.c, lisp.h (message_nolog): Remove; unused.
17398
17399 2011-04-10 Jim Meyering <meyering@redhat.com>
17400
17401 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
17402 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
17403 return ssize_t not "int", and use size_t as the buffer length.
17404 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
17405 * gnutls.h: Update declarations.
17406 * process.c (read_process_output): Use ssize_t, to match.
17407 (send_process): Likewise.
17408
17409 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17410
17411 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
17412
17413 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17414
17415 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
17416 Use unsigned char, to match FcChar8 type definition.
17417
17418 * xterm.c (handle_one_xevent):
17419 * xmenu.c (create_and_show_popup_menu):
17420 * xselect.c (x_decline_selection_request)
17421 (x_reply_selection_request): Avoid type-punned deref of X events.
17422
17423 2011-04-09 Eli Zaretskii <eliz@gnu.org>
17424
17425 Fix some uses of `int' instead of EMACS_INT.
17426 * search.c (string_match_1, fast_string_match)
17427 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
17428 (scan_buffer, find_next_newline_no_quit)
17429 (find_before_next_newline, search_command, Freplace_match)
17430 (Fmatch_data): Make some `int' variables be EMACS_INT.
17431
17432 * xdisp.c (display_count_lines): 3rd argument and return value now
17433 EMACS_INT. All callers changed.
17434 (pint2hrstr): Last argument is now EMACS_INT.
17435
17436 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
17437 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
17438 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
17439 (decode_coding_utf_16, decode_coding_emacs_mule)
17440 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17441 (decode_coding_ccl, decode_coding_charset)
17442 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
17443 (decode_coding_iso_2022, decode_coding_emacs_mule)
17444 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
17445 <char_offset, last_offset>: Declare EMACS_INT.
17446 (encode_coding_utf_8, encode_coding_utf_16)
17447 (encode_coding_emacs_mule, encode_invocation_designation)
17448 (encode_designation_at_bol, encode_coding_iso_2022)
17449 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
17450 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
17451 Declare EMACS_INT.
17452 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
17453 (encode_invocation_designation): Last argument P_NCHARS is now
17454 EMACS_INT.
17455 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
17456 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
17457
17458 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
17459 All users changed.
17460
17461 * ccl.c (Fccl_execute_on_string): Declare some variables
17462 EMACS_INT.
17463
17464 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
17465
17466 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
17467
17468 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
17469
17470 * process.c (Fformat_network_address): Doc fix.
17471
17472 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
17473
17474 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
17475
17476 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
17477
17478 * keyboard.c (read_char): Call Lisp function help-form-show,
17479 instead of using internal_with_output_to_temp_buffer.
17480 (Qhelp_form_show): New var.
17481 (syms_of_keyboard): Use DEFSYM macro.
17482
17483 * print.c (internal_with_output_to_temp_buffer): Function deleted.
17484
17485 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
17486
17487 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17488
17489 * process.c (Flist_processes): Remove to Lisp.
17490 (list_processes_1): Delete.
17491
17492 2011-04-06 Eli Zaretskii <eliz@gnu.org>
17493
17494 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
17495
17496 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
17497
17498 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
17499
17500 Fix more problems found by GCC 4.6.0's static checks.
17501
17502 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
17503
17504 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
17505
17506 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
17507
17508 * xdisp.c (vmessage): Mark as a printf-like function.
17509
17510 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
17511
17512 * sound.c (sound_warning): Don't crash if arg contains a printf format.
17513
17514 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
17515 printf-like functions.
17516 (tiff_load): Add casts to remove these marks before passing them
17517 to system-supplied API.
17518
17519 * eval.c (Fsignal): Remove excess argument to 'fatal'.
17520
17521 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
17522 This avoids several warnings with gcc -Wstrict-overflow.
17523 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
17524 directly, rather than having caller test rule sign. This avoids
17525 some unnecessary tests.
17526 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
17527 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
17528 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
17529
17530 * xfont.c (xfont_text_extents): Remove var that was set but not used.
17531 (xfont_open): Avoid unnecessary tests.
17532
17533 * composite.c (composition_gstring_put_cache): Use unsigned integer.
17534
17535 * composite.h, composite.c (composition_gstring_put_cache):
17536 Use EMACS_INT, not int, for length.
17537
17538 * composite.h (COMPOSITION_DECODE_REFS): New macro,
17539 breaking out part of COMPOSITION_DECODE_RULE.
17540 (COMPOSITION_DECODE_RULE): Use it.
17541 * composite.c (get_composition_id): Remove unused local vars,
17542 by using the new macro.
17543
17544 * textprop.c (set_text_properties_1): Change while to do-while,
17545 since the condition is always true at first.
17546
17547 * intervals.c (graft_intervals_into_buffer): Mark var as used.
17548 (interval_deletion_adjustment): Return unsigned value.
17549 All uses changed.
17550
17551 * process.c (list_processes_1, create_pty, read_process_output):
17552 (exec_sentinel): Remove vars that were set but not used.
17553 (create_pty): Remove unnecessary "volatile"s.
17554 (Fnetwork_interface_info): Avoid possibility of int overflow.
17555 (read_process_output): Do adaptive read buffering even if carryover.
17556 (read_process_output): Simplify nbytes computation if buffered.
17557
17558 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
17559
17560 * syntax.c (scan_words): Remove var that was set but not used.
17561 (update_syntax_table): Use unsigned instead of int.
17562
17563 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
17564 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
17565 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
17566
17567 * print.c (print_error_message): Avoid int overflow.
17568
17569 * font.c (font_list_entities): Redo for clarity,
17570 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
17571
17572 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
17573 (font_score): Avoid potential overflow in diff calculation.
17574
17575 * fns.c (substring_both): Remove var that is set but not used.
17576 (sxhash): Redo loop for clarity and to avoid wraparound warning.
17577
17578 * eval.c (funcall_lambda): Rename local to avoid shadowing.
17579
17580 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
17581 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
17582 can always succeed if overflow has undefined behavior.
17583
17584 * search.c (boyer_moore, wordify): Remove vars set but not used.
17585 (wordify): Omit three unnecessary tests.
17586
17587 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
17588 All callers changed. This avoids the need for an unused var.
17589
17590 * casefiddle.c (casify_region): Remove var that is set but not used.
17591
17592 * dired.c (file_name_completion): Remove var that is set but not used.
17593
17594 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
17595
17596 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
17597 (Finsert_file_contents): Remove unnecessary code checking fd.
17598
17599 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
17600 Check for integer overflow on size calculations.
17601
17602 * buffer.c (Fprevious_overlay_change): Remove var that is set
17603 but not used.
17604
17605 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
17606 Remove vars that are set but not used.
17607 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
17608 (timer_check_2): Mark vars as initialized.
17609
17610 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
17611
17612 * image.c (lookup_image): Remove var that is set but not used.
17613 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
17614
17615 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
17616 that are set but not used.
17617
17618 * xfns.c (make_invisible_cursor): Don't return garbage
17619 if XCreateBitmapFromData fails (Bug#8410).
17620
17621 * xselect.c (x_get_local_selection, x_handle_property_notify):
17622 Remove vars that are set but not used.
17623
17624 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
17625 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
17626
17627 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
17628 Remove var that is set but not used.
17629 (scroll_bar_windows_size): Now size_t, not int.
17630 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
17631 Check for overflow.
17632
17633 * xfaces.c (realize_named_face): Remove vars that are set but not used.
17634 (map_tty_color) [!defined MSDOS]: Likewise.
17635
17636 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
17637
17638 * coding.c: Remove vars that are set but not used.
17639 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
17640 All callers changed.
17641 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
17642 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
17643 (decode_coding_charset): Remove vars that are set but not used.
17644
17645 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
17646 that is set but not used.
17647
17648 * print.c (print_object): Remove var that is set but not used.
17649
17650 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
17651 The gnulib version avoids calling malloc in the usual case,
17652 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
17653 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
17654 * filelock.c (current_lock_owner): Likewise.
17655 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
17656 * sysdep.c: Include allocator.h, careadlinkat.h.
17657 (emacs_no_realloc_allocator): New static constant.
17658 (emacs_readlink): New function.
17659 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
17660 ../lib/careadlinkat.h.
17661
17662 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
17663
17664 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
17665 first non-nil return value).
17666
17667 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
17668
17669 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
17670 if not defined (Bug#8403).
17671
17672 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
17673
17674 * xdisp.c (display_count_lines): Remove parameter `start',
17675 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
17676 (get_char_face_and_encoding): Remove parameter `multibyte_p',
17677 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
17678 (fill_stretch_glyph_string): Remove parameters `row' and `area',
17679 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
17680 and thereabouts. All callers changed.
17681 (get_per_char_metric): Remove parameter `f', unused since
17682 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
17683
17684 2011-04-02 Jim Meyering <meyering@redhat.com>
17685
17686 do not dereference NULL upon failed strdup
17687 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
17688 (ns_get_family): Likewise.
17689
17690 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
17691
17692 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
17693
17694 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
17695
17696 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
17697 later (Bug#8403).
17698
17699 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
17700
17701 Add lexical binding.
17702
17703 * window.c (Ftemp_output_buffer_show): New fun.
17704 (Fsave_window_excursion):
17705 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
17706
17707 * lread.c (lisp_file_lexically_bound_p): New function.
17708 (Fload): Bind Qlexical_binding.
17709 (readevalloop): Remove `evalfun' arg.
17710 Bind Qinternal_interpreter_environment.
17711 (Feval_buffer): Bind Qlexical_binding.
17712 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
17713 Mark as dynamic.
17714 (syms_of_lread): Declare `lexical-binding'.
17715
17716 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
17717
17718 * keyboard.c (eval_dyn): New fun.
17719 (menu_item_eval_property): Use it.
17720
17721 * image.c (parse_image_spec): Use Ffunctionp.
17722
17723 * fns.c (concat, mapcar1): Accept byte-code-functions.
17724
17725 * eval.c (Fsetq): Handle lexical vars.
17726 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
17727 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
17728 (FletX, Flet): Obey lexical binding.
17729 (Fcommandp): Handle closures.
17730 (Feval): New `lexical' arg.
17731 (eval_sub): New function extracted from Feval. Use it almost
17732 everywhere where Feval was used. Look up vars in lexical env.
17733 Handle closures.
17734 (Ffunctionp): Move from subr.el.
17735 (Ffuncall): Handle closures.
17736 (apply_lambda): Remove `eval_flags'.
17737 (funcall_lambda): Handle closures and new byte-code-functions.
17738 (Fspecial_variable_p): New function.
17739 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
17740 but without exporting it to Lisp.
17741
17742 * doc.c (Fdocumentation, store_function_docstring):
17743 * data.c (Finteractive_form): Handle closures.
17744
17745 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
17746 interactive spec.
17747
17748 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
17749 New byte-codes.
17750 (exec_byte_code): New function extracted from Fbyte_code to handle new
17751 calling convention for byte-code-functions. Add new byte-codes.
17752
17753 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
17754
17755 * alloc.c (Fmake_symbol): Init new `declared_special' field.
17756
17757 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
17758
17759 * xdisp.c (redisplay_internal): Fix prototype.
17760
17761 2011-03-31 Eli Zaretskii <eliz@gnu.org>
17762
17763 * xdisp.c (SCROLL_LIMIT): New macro.
17764 (try_scrolling): Use it when setting scroll_limit.
17765 Limit scrolling to 100 screen lines.
17766 (redisplay_window): Even when falling back on "recentering",
17767 position point in the window according to scroll-conservatively,
17768 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
17769
17770 (try_scrolling): When point is above the window, allow searching
17771 as far as scroll_max, or one screenful, to compute vertical
17772 distance from PT to the scroll margin position. This prevents
17773 try_scrolling from unnecessarily failing when
17774 scroll-conservatively is set to a value slightly larger than the
17775 window height. Clean up the case of PT below the margin at bottom
17776 of window: scroll_max can no longer be INT_MAX. When aggressive
17777 scrolling is in use, don't let point enter the opposite scroll
17778 margin as result of the scroll.
17779 (syms_of_xdisp) <scroll-conservatively>: Document the
17780 threshold of 100 lines for never-recentering scrolling.
17781
17782 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
17783
17784 * dispextern.h (move_it_by_lines):
17785 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
17786 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
17787 (message_log_check_duplicate): Remove parameters `prev_bol' and
17788 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
17789 (redisplay_internal): Remove parameter `preserve_echo_area',
17790 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
17791
17792 * indent.c (Fvertical_motion):
17793 * window.c (window_scroll_pixel_based, Frecenter):
17794 Don't pass `need_y_p' to `move_it_by_lines'.
17795
17796 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
17797
17798 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
17799 steal a few bits to be more compact.
17800 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
17801 Remove unneeded casts.
17802
17803 * bytecode.c (Fbyte_code): CAR and CDR can GC.
17804
17805 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
17806
17807 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
17808 binding" message (bug#7967).
17809
17810 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
17811
17812 Fix more problems found by GCC 4.6.0's static checks.
17813
17814 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
17815 Remove unused local var.
17816
17817 * editfns.c (Fmessage_box): Remove unused local var.
17818
17819 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
17820 (note_mode_line_or_margin_highlight, note_mouse_highlight):
17821 Omit unused local vars.
17822 * window.c (shrink_windows): Omit unused local var.
17823 * menu.c (digest_single_submenu): Omit unused local var.
17824 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
17825 Omit unused local var.
17826
17827 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
17828 Don't assume string length fits in int.
17829 (keyremap_step, read_key_sequence): Use size_t for sizes.
17830 (read_key_sequence): Don't check last_real_key_start redundantly.
17831
17832 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
17833 instead of alloca (Bug#8344).
17834
17835 * eval.c (Fbacktrace): Don't assume nargs fits in int.
17836 (Fbacktrace_frame): Don't assume nframes fits in int.
17837
17838 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
17839
17840 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
17841 concerns.
17842
17843 * term.c (produce_glyphless_glyph): Remove unnecessary test.
17844
17845 * cm.c (calccost): Turn while-do into do-while, for clarity.
17846
17847 * keyboard.c (syms_of_keyboard): Use the same style as later
17848 in this function when indexing through an array. This also
17849 works around GCC bug 48267.
17850
17851 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
17852
17853 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
17854
17855 * chartab.c (sub_char_table_ref_and_range): Redo for slight
17856 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
17857
17858 * keyboard.c, keyboard.h (num_input_events): Now size_t.
17859 This avoids undefined behavior on integer overflow, and is a bit
17860 more convenient anyway since it is compared to a size_t variable.
17861
17862 Variadic C functions now count arguments with size_t, not int.
17863 This avoids an unnecessary limitation on 64-bit machines, which
17864 caused (substring ...) to crash on large vectors (Bug#8344).
17865 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
17866 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
17867 All variadic functions and their callers changed accordingly.
17868 (struct gcpro.nvars): Now size_t, not int. All uses changed.
17869 * data.c (arith_driver, float_arith_driver): Likewise.
17870 * editfns.c (general_insert_function): Likewise.
17871 * eval.c (struct backtrace.nargs, interactive_p)
17872 (internal_condition_case_n, run_hook_with_args, apply_lambda)
17873 (funcall_lambda, mark_backtrace): Likewise.
17874 * fns.c (concat): Likewise.
17875 * frame.c (x_set_frame_parameters): Likewise.
17876 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
17877 0 if not found, not -1. All callers changed.
17878
17879 * alloc.c (garbage_collect): Don't assume stack size fits in int.
17880 (stack_copy_size): Now size_t, not int.
17881 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
17882
17883 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
17884
17885 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
17886 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
17887 All callers changed.
17888
17889 * lisp.h (multibyte_char_to_unibyte):
17890 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
17891 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
17892 * character.h (CHAR_TO_BYTE8):
17893 * cmds.c (internal_self_insert):
17894 * editfns.c (general_insert_function):
17895 * keymap.c (push_key_description):
17896 * search.c (Freplace_match):
17897 * xdisp.c (message_dolog, set_message_1): All callers changed.
17898
17899 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
17900
17901 * keyboard.c (safe_run_hook_funcall): New function.
17902 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
17903 don't set the hook to nil, but remove the offending function instead.
17904 (Qcommand_hook_internal): Remove, unused.
17905 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
17906 Vcommand_hook_internal.
17907
17908 * eval.c (enum run_hooks_condition): Remove.
17909 (funcall_nil, funcall_not): New functions.
17910 (run_hook_with_args): Call each function through a `funcall' argument.
17911 Remove `cond' argument, now redundant.
17912 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
17913 (Frun_hook_with_args_until_failure): Adjust accordingly.
17914 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
17915
17916 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
17917
17918 * dispextern.h (string_buffer_position): Remove declaration.
17919
17920 * print.c (strout): Remove parameter `multibyte', unused since
17921 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
17922
17923 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
17924 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
17925 All callers changed.
17926
17927 * w32.c (_wsa_errlist): Use braces for struct initializers.
17928
17929 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
17930 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
17931 All callers changed.
17932 (string_buffer_position): Likewise. Also, make static (it's never
17933 used outside xdisp.c).
17934 (cursor_row_p): Remove parameter `w', unused since
17935 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
17936 (decode_mode_spec): Remove parameter `precision', introduced during
17937 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
17938 All callers changed.
17939
17940 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
17941
17942 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
17943
17944 2011-03-27 Anders Lindgren <andlind@gmail.com>
17945
17946 * nsterm.m (ns_menu_bar_is_hidden): New variable.
17947 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
17948 (ns_update_auto_hide_menu_bar): New functions.
17949 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
17950 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
17951 ns_constrain_all_frames.
17952 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
17953 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
17954
17955 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
17956
17957 * nsmenu.m (runDialogAt): Remove argument to timer_check.
17958
17959 2011-03-27 Glenn Morris <rgm@gnu.org>
17960
17961 * syssignal.h: Replace RETSIGTYPE with void.
17962 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
17963 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
17964 Replace SIGTYPE with void everywhere.
17965 * s/usg5-4-common.h (SIGTYPE): Remove definition.
17966 * s/template.h (SIGTYPE): Remove commented out definition.
17967
17968 2011-03-26 Eli Zaretskii <eliz@gnu.org>
17969
17970 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
17971 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
17972
17973 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
17974
17975 * w32.c (read_unc_volume): Use parameter `henum', instead of
17976 global variable `wget_enum_handle'.
17977
17978 * keymap.c (describe_vector): Remove parameters `indices' and
17979 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
17980 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
17981
17982 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
17983
17984 * keyboard.c (timer_check): Remove parameter `do_it_now',
17985 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
17986 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
17987 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
17988
17989 * keyboard.c (read_char):
17990 * w32menu.c (w32_menu_display_help):
17991 * xmenu.c (show_help_event, menu_help_callback):
17992 Adjust calls to `show_help_echo'.
17993
17994 * gtkutil.c (xg_maybe_add_timer):
17995 * keyboard.c (readable_events):
17996 * process.c (wait_reading_process_output):
17997 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
17998
17999 * insdel.c (adjust_markers_gap_motion):
18000 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
18001 (gap_left, gap_right): Don't call it.
18002
18003 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
18004
18005 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
18006 incurred during fontification.
18007
18008 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18009
18010 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
18011 (DEFVAR_PER_BUFFER): Don't pass it.
18012
18013 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
18014 (scrolling_window): Don't pass it.
18015
18016 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18017
18018 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
18019
18020 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
18021 and `suffix'.
18022 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
18023 of variables specific to SELinux and computation of `encoded_absname'.
18024
18025 * image.c (XPutPixel): Remove unused variable `height'.
18026
18027 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
18028
18029 * unexw32.c (get_section_info): Remove unused variable `section'.
18030
18031 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
18032 (system_process_attributes): Remove unused variable `sess'.
18033 (sys_read): Remove unused variable `err'.
18034
18035 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
18036 (w32_wnd_proc): Remove unused variable `isdead'.
18037 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
18038 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
18039 (x_create_tip_frame): Remove unused variable `tem'.
18040
18041 * w32inevt.c (w32_console_read_socket):
18042 Remove unused variable `no_events'.
18043
18044 * w32term.c (x_draw_composite_glyph_string_foreground):
18045 Remove unused variable `width'.
18046
18047 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
18048
18049 * w32term.c (x_set_glyph_string_clipping):
18050 Don't pass uninitialized region to CombineRgn.
18051
18052 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
18053
18054 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
18055 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
18056 (Fx_close_connection): Remove unused variable `i'.
18057
18058 * w32font.c (w32font_draw): Return number of glyphs.
18059 (w32font_open_internal): Remove unused variable `i'.
18060 (w32font_driver): Add missing initializer.
18061
18062 * w32menu.c (utf8to16): Remove unused variable `utf16'.
18063 (fill_in_menu): Remove unused variable `items_added'.
18064
18065 * w32term.c (last_mouse_press_frame): Remove static global variable.
18066 (w32_clip_to_row): Remove unused variable `f'.
18067 (x_delete_terminal): Remove unused variable `i'.
18068
18069 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
18070 (NOTHING): Remove unused static global variable.
18071 (uniscribe_check_otf): Remove unused variable `table'.
18072 (uniscribe_font_driver): Add missing initializers.
18073
18074 2011-03-23 Julien Danjou <julien@danjou.info>
18075
18076 * term.c (Fsuspend_tty, Fresume_tty):
18077 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
18078 * window.c (temp_output_buffer_show):
18079 * insdel.c (signal_before_change):
18080 * frame.c (Fhandle_switch_frame):
18081 * fileio.c (Fdo_auto_save):
18082 * emacs.c (Fkill_emacs):
18083 * editfns.c (save_excursion_restore):
18084 * cmds.c (internal_self_insert):
18085 * callint.c (Fcall_interactively):
18086 * buffer.c (Fkill_all_local_variables):
18087 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
18088 Use Frun_hooks.
18089 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
18090 unconditionally since it does the check itself.
18091
18092 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
18093
18094 Fix more problems found by GCC 4.5.2's static checks.
18095
18096 * coding.c (encode_coding_raw_text): Avoid unnecessary test
18097 the first time through the loop, since we know p0 < p1 then.
18098 This also avoids a gcc -Wstrict-overflow warning.
18099
18100 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
18101 leading to a memory leak, possible in functions like
18102 load_charset_map_from_file that can allocate an unbounded number
18103 of objects (Bug#8318).
18104
18105 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
18106 that could (at least in theory) be that large.
18107
18108 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
18109 This is less likely to overflow, and avoids undefined behavior if
18110 overflow does occur. All callers changed. Use strtoul to scan
18111 for the unsigned long integer.
18112 (pint2hrstr): Simplify and tune code slightly.
18113 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
18114
18115 * scroll.c (do_scrolling): Work around GCC bug 48228.
18116 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
18117
18118 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
18119 This also avoids a warning with gcc -Wstrict-overflow.
18120 (validate_x_resource_name): Simplify count usage.
18121 This also avoids a warning with gcc -Wstrict-overflow.
18122
18123 * fileio.c (Fcopy_file): Report error if fchown or fchmod
18124 fail (Bug#8306).
18125
18126 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
18127
18128 * process.c (Fmake_network_process): Use socklen_t, not int,
18129 where POSIX says socklen_t is required in portable programs.
18130 This fixes a porting bug on hosts like 64-bit HP-UX, where
18131 socklen_t is wider than int (Bug#8277).
18132 (Fmake_network_process, server_accept_connection):
18133 (wait_reading_process_output, read_process_output):
18134 Likewise.
18135
18136 * process.c: Rename or move locals to avoid shadowing.
18137 (list_processes_1, Fmake_network_process):
18138 (read_process_output_error_handler, exec_sentinel_error_handler):
18139 Rename or move locals.
18140 (Fmake_network_process): Define label "retry_connect" only if needed.
18141 (Fnetwork_interface_info): Fix pointer signedness.
18142 (process_send_signal): Add cast to avoid pointer signedness problem.
18143 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
18144 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
18145
18146 Make tparam.h and terminfo.c consistent.
18147 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
18148 Include tparam.h instead, since it declares them.
18149 * cm.h (PC): Remove extern decl; tparam.h now does this.
18150 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
18151 * terminfo.c: Include tparam.h, to check interfaces.
18152 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
18153 (tparam): Adjust signature to match interface in tparam.h;
18154 this removes some undefined behavior. Check that outstring and len
18155 are zero, which they always are with Emacs.
18156 * tparam.h (PC, BC, UP): New extern decls.
18157
18158 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
18159 (xftfont_open): Rename locals to avoid shadowing.
18160
18161 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
18162 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
18163 (OTF_TAG_SYM): Omit macro if not needed.
18164 (ftfont_list): Remove unused local.
18165 (get_adstyle_property, ftfont_pattern_entity):
18166 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
18167 Rename locals to avoid shadowing.
18168
18169 * xfont.c (xfont_list_family): Mark var as initialized.
18170
18171 * xml.c (make_dom): Now static.
18172
18173 * composite.c (composition_compute_stop_pos): Rename local to
18174 avoid shadowing.
18175 (composition_reseat_it): Remove unused locals.
18176 (find_automatic_composition, composition_adjust_point): Likewise.
18177 (composition_update_it): Mark var as initialized.
18178 (find_automatic_composition): Mark vars as initialized,
18179 with a FIXME (Bug#8290).
18180
18181 character.h: Rename locals to avoid shadowing.
18182 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
18183 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
18184 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
18185 (BUF_DEC_POS): Be more systematic about renaming local temporaries
18186 to avoid shadowing.
18187
18188 * textprop.c (property_change_between_p): Remove; unused.
18189
18190 * intervals.c (interval_start_pos): Now static.
18191
18192 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
18193
18194 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
18195 Rename locals to avoid shadowing.
18196
18197 * sound.c (wav_play, au_play, Fplay_sound_internal):
18198 Fix pointer signedness.
18199 (alsa_choose_format): Remove unused local var.
18200 (wav_play): Initialize a variable to 0, to prevent undefined
18201 behavior (Bug#8278).
18202
18203 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
18204
18205 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
18206
18207 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
18208 clobbering (Bug#8298).
18209 * sysdep.c (sys_subshell): Likewise.
18210 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
18211
18212 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
18213 This should get cleaned up, so that child_setup has the
18214 same signature on all platforms.
18215
18216 * callproc.c (call_process_cleanup): Now static.
18217 (relocate_fd): Rename locals to avoid shadowing.
18218
18219 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
18220
18221 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
18222 not to be necessary, and produces flickering.
18223
18224 2011-03-20 Glenn Morris <rgm@gnu.org>
18225
18226 * config.in: Remove file.
18227
18228 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
18229
18230 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
18231 are now in src/globals.h.
18232 (syms_of_minibuf): Remove spurious & from previous change.
18233
18234 2011-03-20 Leo Liu <sdl.web@gmail.com>
18235
18236 * minibuf.c (completing-read-function): New variable.
18237 (completing-read-default): Rename from completing-read.
18238 (completing-read): Call completing-read-function.
18239
18240 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
18241
18242 * xfaces.c (Fx_load_color_file):
18243 Read color file from absolute filename (bug#8250).
18244
18245 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
18246
18247 * makefile.w32-in: Update dependencies.
18248
18249 2011-03-17 Eli Zaretskii <eliz@gnu.org>
18250
18251 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
18252
18253 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
18254
18255 Fix more problems found by GCC 4.5.2's static checks.
18256
18257 * process.c (make_serial_process_unwind, send_process_trap):
18258 (sigchld_handler): Now static.
18259
18260 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
18261 That way, the code declares only the vars that it needs.
18262 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
18263 * s/cygwin.h (PTY_ITERATION): Likewise.
18264 * s/darwin.h (PTY_ITERATION): Likewise.
18265 * s/gnu-linux.h (PTY_ITERATION): Likewise.
18266
18267 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
18268 * process.c (allocate_pty): Don't declare stb unless it's needed.
18269
18270 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
18271 (CONSTANTLIM): Remove; unused.
18272 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
18273 Define only if needed.
18274
18275 * unexelf.c (unexec): Name an expression,
18276 to avoid gcc -Wbad-function-cast warning.
18277 Use a different way to cause a compilation error if anyone uses
18278 n rather than nn, a way that does not involve shadowing.
18279 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
18280
18281 * deps.mk (unexalpha.o): Remove; unused.
18282
18283 New file unexec.h, the (simple) interface for unexec (Bug#8267).
18284 * unexec.h: New file.
18285 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
18286 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
18287 Depend on unexec.h.
18288 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
18289 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
18290 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
18291 Change as necessary to match prototype in unexec.h.
18292
18293 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
18294 shadowing.
18295 (back_comment, skip_chars): Mark vars as initialized.
18296
18297 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
18298 Rename locals to avoid shadowing.
18299
18300 * lread.c (read1): Rewrite so as not to use empty "else".
18301 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
18302
18303 * print.c (Fredirect_debugging_output): Fix pointer signedess.
18304
18305 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
18306 warning when compiling print.c.
18307
18308 * font.c (font_unparse_fcname): Abort in an "impossible" situation
18309 instead of using an uninitialized var.
18310 (font_sort_entities): Mark var as initialized.
18311
18312 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
18313
18314 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
18315 pointers to constants.
18316 (font_parse_fcname): Remove unused vars.
18317 (font_delete_unmatched): Now static.
18318 (font_get_spec): Remove; unused.
18319 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
18320 (font_update_drivers, Ffont_get_glyphs, font_add_log):
18321 Rename or move locals to avoid shadowing.
18322
18323 * fns.c (require_nesting_list, require_unwind): Now static.
18324 (Ffillarray): Rename locals to avoid shadowing.
18325
18326 * floatfns.c (domain_error2): Define only if needed.
18327 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
18328
18329 * alloc.c (mark_backtrace): Move decl from here ...
18330 * lisp.h: ... to here, so that it can be checked.
18331
18332 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
18333 (Fdefvar): Rewrite so as not to use empty "else".
18334 (lisp_indirect_variable): Name an expression,
18335 to avoid gcc -Wbad-function-cast warning.
18336 (Fdefvar): Rename locals to avoid shadowing.
18337
18338 * callint.c (quotify_arg, quotify_args): Now static.
18339 (Fcall_interactively): Rename locals to avoid shadowing.
18340 Use const pointer when appropriate.
18341
18342 * lisp.h (get_system_name, get_operating_system_release):
18343 Move decls here, to check interfaces.
18344 * process.c (get_operating_system_release): Move decl to lisp.h.
18345 * xrdb.c (get_system_name): Likewise.
18346 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
18347 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
18348 some of which prompt warnings from gcc -Wbad-function-cast.
18349 (Fformat_time_string, Fencode_time, Finsert_char):
18350 (Ftranslate_region_internal, Fformat):
18351 Rename or remove local vars to avoid shadowing.
18352 (Ftranslate_region_internal): Mark var as initialized.
18353
18354 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
18355 avoid shadowing.
18356
18357 * lisp.h (eassert): Check that the argument compiles, even if
18358 ENABLE_CHECKING is not defined.
18359
18360 * data.c (Findirect_variable): Name an expression, to avoid
18361 gcc -Wbad-function-cast warning.
18362 (default_value, arithcompare, arith_driver, arith_error): Now static.
18363 (store_symval_forwarding): Rename local to avoid shadowing.
18364 (Fmake_variable_buffer_local, Fmake_local_variable):
18365 Mark variables as initialized.
18366 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
18367
18368 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
18369 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
18370 Rename locals to avoid shadowing.
18371 (mark_stack): Move local variables into the #ifdef region where
18372 they're used.
18373 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
18374 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
18375 needed otherwise.
18376 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
18377 (GC_STRING_CHARS): Remove; not used.
18378 (Fmemory_limit): Cast sbrk's returned value to char *.
18379
18380 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
18381 avoids undefined behavior in theory.
18382
18383 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
18384
18385 Use functions, not macros, for up- and down-casing (Bug#8254).
18386 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
18387 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
18388 to use the following functions instead of these macros.
18389 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
18390 EMACS_INT, since callers assume the returned value fits in int.
18391 (upcase1): Likewise, for UPCASE_TABLE.
18392 (uppercasep, lowercasep, upcase): New static inline functions.
18393 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
18394 the race-condition problem in the old DOWNCASE.
18395
18396 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
18397 Rename locals to avoid shadowing.
18398 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
18399 (regex_compile, re_search_2, re_match_2_internal):
18400 Remove unused local vars.
18401 (FREE_VAR): Rewrite so as not to use empty "else",
18402 which gcc can warn about.
18403 (regex_compile, re_match_2_internal): Mark locals as initialized.
18404 (RETALLOC_IF): Define only if needed.
18405 (WORDCHAR_P): Likewise. This one is never needed, but is used
18406 only in a comment talking about a compiler bug, so put inside
18407 the #if 0 of that comment.
18408 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
18409 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
18410 Remove; unused.
18411
18412 * search.c (boyer_moore): Rename locals to avoid shadowing.
18413 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
18414 (PREV_CHAR_BOUNDARY): Likewise.
18415
18416 * search.c (simple_search): Remove unused var.
18417
18418 * dired.c (compile_pattern): Move decl from here ...
18419 * lisp.h: ... to here, so that it can be checked.
18420 (struct re_registers): New forward decl.
18421
18422 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
18423
18424 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
18425 All uses changed.
18426 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
18427 Rename locals to avoid shadowing.
18428 (Fvertical_motion): Mark locals as initialized.
18429
18430 * casefiddle.c (casify_object, casify_region): Now static.
18431 (casify_region): Mark local as initialized.
18432
18433 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
18434
18435 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
18436 New macros, so that the caller can use some names other than
18437 gcpro1, gcpro2, etc.
18438 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
18439 of the new macros.
18440 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
18441 argument, for consistency with GCPRO2_VAR, etc: it is now the
18442 prefix of the variable, not the variable itself. All uses
18443 changed.
18444 * dired.c (directory_files_internal, file_name_completion):
18445 Rename locals to avoid shadowing.
18446
18447 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
18448 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
18449 dired.c's scmp function, had undefined behavior.
18450 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
18451 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
18452 * buffer.h: ... to here, because these macros use current_buffer,
18453 and the new implementation with inline functions needs to have
18454 current_buffer in scope now, rather than later when the macros
18455 are used.
18456 (downcase, upcase1): New static inline functions.
18457 (DOWNCASE, UPCASE1): Reimplement using these functions.
18458 This avoids undefined behavior in expressions like
18459 DOWNCASE (x) == DOWNCASE (y), which previously suffered
18460 from race conditions in accessing the global variables
18461 case_temp1 and case_temp2.
18462 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
18463 * lisp.h (case_temp1, case_temp2): Remove their decls.
18464 * character.h (ASCII_CHAR_P): Move from here ...
18465 * lisp.h: ... to here, so that the inline functions mentioned
18466 above can use them.
18467
18468 * dired.c (directory_files_internal_unwind): Now static.
18469
18470 * fileio.c (file_name_as_directory, directory_file_name):
18471 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
18472 Now static.
18473 (file_name_as_directory): Use const pointers when appropriate.
18474 (Fexpand_file_name): Likewise. In particular, newdir might
18475 point at constant storage, so make it a const pointer.
18476 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
18477 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
18478 signedness issues.
18479 (Fset_file_times, Finsert_file_contents, auto_save_error):
18480 Rename locals to avoid shadowing.
18481
18482 * minibuf.c (choose_minibuf_frame_1): Now static.
18483 (Ftry_completion, Fall_completions): Rename or remove locals
18484 to avoid shadowing.
18485
18486 * marker.c (bytepos_to_charpos): Remove; unused.
18487
18488 * lisp.h (verify_bytepos, count_markers): New decls,
18489 so that gcc does not warn that these functions aren't declared.
18490
18491 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
18492 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
18493 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
18494 (copy_text): Remove unused local var.
18495
18496 * filelock.c (within_one_second): Now static.
18497 (lock_file_1): Rename local to avoid shadowing.
18498
18499 * buffer.c (fix_overlays_before): Mark locals as initialized.
18500 (fix_start_end_in_overlays): Likewise. This function should be
18501 simplified by using pointers-to-pointers, but that's a different
18502 matter.
18503 (switch_to_buffer_1): Now static.
18504 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
18505 (report_overlay_modification): Rename locals to avoid shadowing.
18506
18507 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
18508 Fix pointer signedness issue.
18509 (sys_subshell): Mark local as volatile if checking for lint,
18510 to suppress a gcc -Wclobbered warning that does not seem to be right.
18511 (MAXPATHLEN): Define only if needed.
18512
18513 * process.c (serial_open, serial_configure): Move decls from here ...
18514 * systty.h: ... to here, so that they can be checked.
18515
18516 * fns.c (get_random, seed_random): Move extern decls from here ...
18517 * lisp.h: ... to here, so that they can be checked.
18518
18519 * sysdep.c (reset_io): Now static.
18520 (wait_for_termination_signal): Remove; unused.
18521
18522 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
18523 (copy_keymap_item, append_key, push_text_char_description):
18524 Now static.
18525 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
18526 (DENSE_TABLE_SIZE): Remove; unused.
18527 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
18528 (describe_map_tree):
18529 Rename locals to avoid shadowing.
18530
18531 * keyboard.c: Declare functions static if they are not used elsewhere.
18532 (echo_char, echo_dash, cmd_error, top_level_2):
18533 (poll_for_input, handle_async_input): Now static.
18534 (read_char, kbd_buffer_get_event, make_lispy_position):
18535 (make_lispy_event, make_lispy_movement, apply_modifiers):
18536 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
18537 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
18538 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
18539 (read_key_sequence, read_char): Mark locals as initialized.
18540 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
18541
18542 * keyboard.h (make_ctrl_char): New decl.
18543 (mark_kboards): Move decl here ...
18544 * alloc.c (mark_kboards): ... from here.
18545
18546 * lisp.h (force_auto_save_soon): New decl.
18547
18548 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
18549 (DEFINE_DUMMY_FUNCTION): New macro.
18550 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
18551 Use it.
18552 (main): Add casts to avoid warnings
18553 if GCC considers string literals to be constants.
18554
18555 * lisp.h (fatal_error_signal): Add decl, since it's exported.
18556
18557 * dbusbind.c: Pointer signedness fixes.
18558 (xd_signature, xd_append_arg, xd_initialize):
18559 (Fdbus_call_method, Fdbus_call_method_asynchronously):
18560 (Fdbus_method_return_internal, Fdbus_method_error_internal):
18561 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
18562 (Fdbus_register_signal): Use SSDATA when the context wants char *.
18563
18564 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
18565 if GCC considers string literals to be constants.
18566 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
18567
18568 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
18569
18570 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
18571 (print_preprocess, print_object): New macro to fix last change.
18572
18573 * print.c (print_preprocess): Don't forget font objects.
18574
18575 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
18576
18577 * emacs.c (USAGE3): Doc fixes.
18578
18579 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
18580
18581 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
18582 structure.
18583
18584 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
18585
18586 * lisp.h (VWindow_system, Qfile_name_history):
18587 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
18588 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
18589 (w32_system_caret_x, w32_system_caret_y): Declare extern.
18590
18591 * w32select.c: Don't #include "keyboard.h".
18592 (run_protected): Add extern declaration for waiting_for_input.
18593
18594 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
18595 * w32console.c (detect_input_pending, read_input_pending)
18596 (encode_terminal_code):
18597 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
18598 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
18599 (w32_system_caret_y, Qfile_name_history):
18600 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
18601 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
18602 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
18603 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
18604 * w32proc.c (Qlocal, report_file_error):
18605 * w32term.c (Vwindow_system, updating_frame):
18606 * w32uniscribe.c (initialized, uniscribe_font_driver):
18607 Remove unneeded extern declarations.
18608
18609 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
18610
18611 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
18612
18613 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
18614
18615 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
18616 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
18617 These macros can no longer be used for assignment.
18618
18619 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
18620 Assign struct members directly, instead of using BUF_BEGV etc.
18621 (record_buffer_markers, fetch_buffer_markers): New functions for
18622 recording and fetching special buffer markers.
18623 (set_buffer_internal_1, set_buffer_temp): Use them.
18624
18625 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
18626
18627 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
18628
18629 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
18630 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
18631
18632 * xdisp.c (hscroll_window_tree):
18633 (reconsider_clip_changes): Use PT instead of BUF_PT.
18634
18635 2011-03-13 Eli Zaretskii <eliz@gnu.org>
18636
18637 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
18638 $(EMACS_ROOT)/lib/intprops.h.
18639
18640 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
18641
18642 Fix more problems found by GCC 4.5.2's static checks.
18643
18644 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
18645 to unsigned char * to avoid compiler diagnostic.
18646 (xg_free_frame_widgets): Make it clear that a local variable is
18647 needed only if USE_GTK_TOOLTIP.
18648 (gdk_window_get_screen): Make it clear that this macro is needed
18649 only if USE_GTK_TOOLTIP.
18650 (int_gtk_range_get_value): New function, which avoids a diagnostic
18651 from gcc -Wbad-function-cast.
18652 (xg_set_toolkit_scroll_bar_thumb): Use it.
18653 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
18654 diagnostic from gcc -Wbad-function-cast.
18655 (get_utf8_string, xg_get_file_with_chooser):
18656 Rename locals to avoid shadowing.
18657 (create_dialog): Move locals to avoid shadowing.
18658
18659 * xgselect.c (xg_select): Remove unused var.
18660
18661 * image.c (four_corners_best): Mark locals as initialized.
18662 (gif_load): Initialize transparent_p to zero (Bug#8238).
18663 Mark another local as initialized.
18664 (my_png_error, my_error_exit): Mark with NO_RETURN.
18665
18666 * image.c (clear_image_cache): Now static.
18667 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
18668 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
18669 (x_edge_detection): Remove unnecessary cast that
18670 gcc -Wbad-function-cast diagnoses.
18671 (gif_load): Fix pointer signedness.
18672 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
18673 (jpeg_load, gif_load): Rename locals to avoid shadowing.
18674
18675 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
18676
18677 Improve quality of tests for time stamp overflow.
18678 For example, without this patch (encode-time 0 0 0 1 1
18679 1152921504606846976) returns the obviously-bogus value (-948597
18680 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
18681 reports time overflow. See
18682 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
18683 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
18684 * editfns.c: Include limits.h and intprops.h.
18685 (TIME_T_MIN, TIME_T_MAX): New macros.
18686 (time_overflow): Move earlier, to before first use.
18687 (hi_time, lo_time): New functions, for an accurate test for
18688 out-of-range times.
18689 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
18690 (Fget_internal_run_time): Don't assume time_t fits in int.
18691 (make_time): Use list2 instead of Fcons twice.
18692 (Fdecode_time): More accurate test for out-of-range times.
18693 (check_tm_member): New function.
18694 (Fencode_time): Use it, to test for out-of-range times.
18695 (lisp_time_argument): Don't rely on undefined left-shift and
18696 right-shift behavior when checking for time stamp overflow.
18697
18698 * editfns.c (time_overflow): New function, refactoring common code.
18699 (Fformat_time_string, Fdecode_time, Fencode_time):
18700 (Fcurrent_time_string): Use it.
18701
18702 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
18703 * dired.c (make_time): Move to ...
18704 * editfns.c (make_time): ... here.
18705 * systime.h: Note the move.
18706
18707 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18708
18709 * fringe.c (update_window_fringes): Remove unused variables.
18710
18711 * unexmacosx.c (copy_data_segment): Also copy __got section.
18712 (Bug#8223)
18713
18714 2011-03-12 Eli Zaretskii <eliz@gnu.org>
18715
18716 * termcap.c [MSDOS]: Include "msdos.h".
18717 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
18718 Constify `char *' arguments and their references according to
18719 prototypes in tparam.h.
18720
18721 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
18722
18723 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
18724 Adapt all references accordingly.
18725
18726 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
18727
18728 2011-03-11 Tom Tromey <tromey@redhat.com>
18729
18730 * buffer.c (syms_of_buffer): Remove obsolete comment.
18731
18732 2011-03-11 Eli Zaretskii <eliz@gnu.org>
18733
18734 * termhooks.h (encode_terminal_code): Declare prototype.
18735
18736 * msdos.c (encode_terminal_code): Don't declare prototype.
18737
18738 * term.c (encode_terminal_code): Now external again, used by
18739 w32console.c and msdos.c.
18740
18741 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
18742 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
18743
18744 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
18745
18746 Fix some minor problems found by GCC 4.5.2's static checks.
18747
18748 * fringe.c (update_window_fringes): Mark locals as initialized
18749 (Bug#8227).
18750 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
18751
18752 * alloc.c (mark_fringe_data): Move decl from here ...
18753 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
18754 to check its interface.
18755 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
18756
18757 * fontset.c (free_realized_fontset): Now static.
18758 (Fset_fontset_font): Rename local to avoid shadowing.
18759 (fontset_font): Mark local as initialized.
18760 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
18761
18762 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
18763
18764 * xselect.c (x_disown_buffer_selections): Remove; not used.
18765 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
18766 (x_own_selection, Fx_disown_selection_internal): Rename locals
18767 to avoid shadowing.
18768 (x_handle_dnd_message): Remove local to avoid shadowing.
18769
18770 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
18771 so that the caller can use some name other than gcpro1.
18772 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
18773 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
18774 (Fx_backspace_delete_keys_p):
18775 Use them to avoid shadowing, and rename vars to avoid shadowing.
18776 (x_decode_color, x_set_name, x_window): Now static.
18777 (Fx_create_frame): Add braces to silence GCC warning.
18778 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
18779 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
18780 Remove unused locals.
18781 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
18782 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
18783 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
18784 macros.
18785
18786 * xterm.h (x_mouse_leave): New decl.
18787
18788 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
18789 Remove unused functions.
18790 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
18791 (x_calc_absolute_position): Now static.
18792 (XTread_socket): Don't define label "out" unless it's used.
18793 Don't declare local "event" unless it's used.
18794 (x_iconify_frame, x_free_frame_resources): Don't declare locals
18795 unless they are used.
18796 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
18797 (x_fatal_error_signal): Remove; not used.
18798 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
18799 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
18800 (x_error_catcher, x_connection_closed, x_error_handler):
18801 (x_error_quitter, xembed_send_message, x_iconify_frame):
18802 (my_log_handler): Rename locals to avoid shadowing.
18803 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
18804 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
18805
18806 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
18807 Rename or move locals to avoid shadowing.
18808 (tty_defined_color, merge_face_heights): Now static.
18809 (free_realized_faces_for_fontset): Remove; not used.
18810 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
18811 does not deduce is never used uninitialized.
18812 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
18813 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
18814
18815 * terminal.c (store_terminal_param): Now static.
18816
18817 * xmenu.c (menu_highlight_callback): Now static.
18818 (set_frame_menubar): Remove unused local.
18819 (xmenu_show): Rename parameter to avoid shadowing.
18820 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
18821 since they might point to immutable storage.
18822 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
18823 since it's unused otherwise.
18824
18825 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
18826 Add a FIXME, since the code still doesn't look right. (Bug#8215)
18827 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
18828 avoids a gcc -Wuninitialized diagnostic.
18829 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
18830 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
18831 does not deduce are never used uninitialized.
18832
18833 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
18834
18835 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
18836 * window.c (window_loop, size_window):
18837 (run_window_configuration_change_hook, enlarge_window): Likewise.
18838
18839 * window.c (display_buffer): Now static.
18840 (size_window): Mark variables that gcc -Wuninitialized
18841 does not deduce are never used uninitialized.
18842 * window.h (check_all_windows): New decl, to forestall
18843 gcc -Wmissing-prototypes diagnostic.
18844 * dispextern.h (bidi_dump_cached_states): Likewise.
18845
18846 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
18847 shadowing.
18848 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
18849 Include <limits.h>.
18850 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
18851 and to avoid gcc -Wuninitialized warning.
18852 (load_charset_map): Mark variables that gcc -Wuninitialized
18853 does not deduce are never used uninitialized.
18854 (load_charset): Abort instead of using uninitialized var (Bug#8229).
18855
18856 * coding.c (coding_set_source, coding_set_destination):
18857 Use "else { /* comment */ }" rather than "else /* comment */;"
18858 for clarity, and to avoid gcc -Wempty-body warning.
18859 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
18860 a block, when the outer 'i' will do.
18861 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
18862 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
18863 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
18864 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
18865 (Fdecode_sjis_char, Fdefine_coding_system_internal):
18866 Rename locals to avoid shadowing.
18867 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
18868 * coding.c (emacs_mule_char, encode_invocation_designation):
18869 Now static, since they're not used elsewhere.
18870 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
18871 (decode_coding_object, encode_coding_object, detect_coding_system):
18872 (decode_coding_emacs_mule): Mark variables that gcc
18873 -Wuninitialized does not deduce are never used uninitialized.
18874 (detect_coding_iso_2022): Initialize a local variable that might
18875 be used uninitialized. Leave a FIXME because it's not clear that
18876 this initialization is needed. (Bug#8211)
18877 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
18878 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
18879 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
18880 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
18881 Remove unused macros.
18882
18883 * category.c (hash_get_category_set): Remove unused local var.
18884 (copy_category_table): Now static, since it's not used elsewhere.
18885 * character.c (string_count_byte8): Likewise.
18886
18887 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
18888 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
18889
18890 * chartab.c (copy_sub_char_table): Now static, since it's not used
18891 elsewhere.
18892 (sub_char_table_ref_and_range, char_table_ref_and_range):
18893 Rename locals to avoid shadowing.
18894 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
18895
18896 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
18897 (BIDI_BOB): Remove unused macro.
18898
18899 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
18900 deduce are never used uninitialized.
18901 * term.c (encode_terminal_code): Likewise.
18902
18903 * term.c (encode_terminal_code): Now static. Remove unused local.
18904
18905 * tparam.h: New file.
18906 * term.c, tparam.h: Include it.
18907 * deps.mk (term.o, tparam.o): Depend on tparam.h.
18908 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
18909 Move these decls to tparam.h, and make them agree with what
18910 is actually in tparam.c. The previous trick of using incompatible
18911 decls in different modules does not conform to the C standard.
18912 All callers of tparam changed to use tparam's actual API.
18913 * tparam.c (tparam1, tparam, tgoto):
18914 Use const pointers where appropriate.
18915
18916 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
18917 * cm.h (struct cm): Likewise.
18918 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
18919 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
18920 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
18921 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
18922 (turn_on_face, init_tty): Likewise.
18923 * termchar.h (struct tty_display_info): Likewise.
18924
18925 * term.c (term_mouse_position): Rename local to avoid shadowing.
18926
18927 * alloc.c (mark_ttys): Move decl from here ...
18928 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
18929
18930 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
18931
18932 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
18933
18934 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
18935
18936 * search.c (compile_pattern_1): Remove argument regp, unused since
18937 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
18938 (compile_pattern): Don't pass it.
18939
18940 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
18941
18942 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
18943 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
18944 for ! HAVE_GTK3.
18945 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
18946
18947 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
18948
18949 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
18950 gdk_window_get_screen, gdk_window_get_geometry,
18951 gdk_x11_window_lookup_for_display and GDK_KEY_g.
18952 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
18953 (xg_get_pixbuf_from_pixmap): New function.
18954 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
18955 to Pixmap, take frame as parameter, remove GdkColormap parameter.
18956 Call xg_get_pixbuf_from_pixmap instead of
18957 gdk_pixbuf_get_from_drawable.
18958 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
18959 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
18960 (xg_check_special_colors): Use GtkStyleContext and its functions
18961 for HAVE_GTK3.
18962 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
18963 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
18964 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
18965 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
18966 Call gtk_widget_get_preferred_size.
18967 (xg_frame_resized): gdk_window_get_geometry only takes 5
18968 parameters.
18969 (xg_win_to_widget, xg_event_is_for_menubar):
18970 Call gdk_x11_window_lookup_for_display.
18971 (xg_set_widget_bg): New function.
18972 (delete_cb): New function.
18973 (xg_create_frame_widgets): Connect delete-event to delete_cb.
18974 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
18975 (xg_set_background_color): Call xg_set_widget_bg.
18976 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
18977 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
18978 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
18979 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
18980 if ! HAVE_GTK3.
18981 (update_frame_tool_bar): Call gtk_widget_hide.
18982 (xg_initialize): Use GDK_KEY_g.
18983
18984 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
18985 if ! HAVE_GTK3
18986 (x_session_initialize): Call gdk_x11_set_sm_client_id.
18987
18988 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
18989 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
18990 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
18991
18992 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
18993
18994 * w32xfns.c (select_palette): Check success of RealizePalette against
18995 GDI_ERROR, not zero.
18996
18997 See ChangeLog.11 for earlier changes.
18998
18999 ;; Local Variables:
19000 ;; coding: utf-8
19001 ;; End:
19002
19003 Copyright (C) 2011-2012 Free Software Foundation, Inc.
19004
19005 This file is part of GNU Emacs.
19006
19007 GNU Emacs is free software: you can redistribute it and/or modify
19008 it under the terms of the GNU General Public License as published by
19009 the Free Software Foundation, either version 3 of the License, or
19010 (at your option) any later version.
19011
19012 GNU Emacs is distributed in the hope that it will be useful,
19013 but WITHOUT ANY WARRANTY; without even the implied warranty of
19014 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19015 GNU General Public License for more details.
19016
19017 You should have received a copy of the GNU General Public License
19018 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.