bf519556334dfa01799a9aa381124d3b0a3ec49f
[bpt/emacs.git] / src / ChangeLog
1 2012-10-26 Eli Zaretskii <eliz@gnu.org>
2
3 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
4 mouse movement events if the menu bar is active. This avoids
5 producing a busy "hour-glass" cursor by Windows if the mouse
6 pointer is positioned over a tooltip shown for some menu item.
7
8 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
9
10 Don't assume process IDs fit in int.
11 * emacs.c (shut_down_emacs) [!DOS_NT]:
12 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
13 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
14 Use pid_t, not int, to store process IDs, as 'int'
15 is not wide enough on a few platforms (e.g., AIX and IRIX).
16
17 2012-10-23 Kenichi Handa <handa@gnu.org>
18
19 The following change is to make face-font-rescale-alist work
20 correctly for non-ASCII fonts.
21
22 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
23 (font_open_for_lface): Handle Vface_font_rescale_alist.
24
25 2012-10-23 Chong Yidong <cyd@gnu.org>
26
27 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
28
29 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
30
31 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
32 for screen font.
33 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
34
35 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
36 event (Bug#12681).
37
38 2012-10-21 Glenn Morris <rgm@gnu.org>
39
40 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
41
42 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
43
44 Port to OpenBSD 5.1.
45 * frame.c (Fmouse_position, Fmouse_pixel_position):
46 * xdisp.c (produce_stretch_glyph):
47 Declare local vars only when they're needed.
48 This is clearer and avoids a warning on OpenBSD about unused vars.
49 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
50 This is safer, and avoids OpenBSD warnings about unused vars.
51 * keyboard.c (record_menu_key): Remove unnecessary decl.
52 (poll_timer): Define only if POLL_FOR_INPUT is defined.
53 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
54 as our definition clashes with OpenBSD's.
55 * xfaces.c (load_face_colors, check_lface_attrs)
56 (get_lface_attributes_no_remap, get_lface_attributes)
57 (lface_fully_specified_p, x_supports_face_attributes_p)
58 (tty_supports_face_attributes_p, face_fontset, realize_face)
59 (realize_x_face, realize_tty_face):
60 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
61 merely Lisp_Object *. This is more informative and avoids
62 a warning on OpenBSD about accessing beyond an object's size.
63
64 2012-10-20 Chong Yidong <cyd@gnu.org>
65
66 * lread.c (Fload): Doc fix (Bug#12592).
67
68 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
69
70 * font.c (Ffont_at): Fix previous change.
71
72 2012-10-19 Eli Zaretskii <eliz@gnu.org>
73
74 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000. See
75 http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
76 for the reasons.
77
78 * alloc.c (NSTATICS): Decrease to 0x800.
79
80 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
81
82 * fns.c (Fnreverse): Include the problem element when signalling an
83 error (bug#12677).
84
85 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
86
87 * nsterm.m (ns_select): Check writefds before call to
88 FD_ISSET (Bug#12668).
89
90 2012-10-18 Daniel Colascione <dancol@dancol.org>
91
92 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
93 (staticpro): If we run out of staticpro slots, die with an
94 informative error instead of just calling emacs_abort.
95
96 2012-10-18 Martin Rudalics <rudalics@gmx.at>
97
98 Fix two flaws reported by Dmitry Antipov.
99 * window.c (Ftemp_output_buffer_show): Remove.
100 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
101 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
102
103 2012-10-17 Eli Zaretskii <eliz@gnu.org>
104
105 * makefile.w32-in ($(BLD)/w32.$(O)):
106 ($(BLD)/vm-limit.$(O)):
107 ($(BLD)/term.$(O)):
108 ($(BLD)/unexw32.$(O)):
109 ($(BLD)/fileio.$(O)):
110 ($(BLD)/dispnew.$(O)): Update dependencies.
111
112 * w32term.h (w32_initialize_display_info, initialize_w32_display):
113 Add prototypes.
114
115 * w32proc.c: Include ctype.h.
116
117 * w32.h (init_environment, check_windows_init_file)
118 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
119 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
120 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
121 (sys_link): Add prototypes.
122
123 * w32.c: Include w32select.h.
124 (sys_access, e_malloc, sys_select): Add prototypes.
125 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
126
127 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
128
129 * unexw32.c: Include lisp.h and w32.h.
130
131 * term.c [WINDOWSNT]: Include w32term.h.
132
133 * process.c [WINDOWSNT]: Add prototype of sys_select.
134
135 * fileio.c [WINDOWSNT]: Include w32.h.
136
137 * dispnew.c [WINDOWSNT]: Include w32.h.
138
139 * cygw32.c (Fcygwin_convert_path_to_windows)
140 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
141 Lisp_Object values. (Bug#12661)
142
143 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
144 to Lisp_Object. (Bug#12661)
145
146 2012-10-17 Kenichi Handa <handa@gnu.org>
147
148 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
149 invalidate.
150
151 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
152
153 * buffer.c (Fkill_buffer): When unchaining the marker,
154 reset its buffer pointer to NULL (Bug#12652).
155
156 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
157
158 Do not verify indirection counters of killed buffers (Bug#12579).
159 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
160 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
161
162 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
163
164 * alloc.c (Fmake_byte_code): Fix typo in comment.
165 * print.c (print_interval): Define as static to match prototype.
166 * indent.c (disptab_matches_widthtab, recompute_width_table):
167 Convert to eassert.
168
169 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
170
171 * editfns.c (get_system_name): Remove.
172 * lisp.h (get_system_name): Remove prototype.
173 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
174 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
175
176 2012-10-15 Daniel Colascione <dancol@dancol.org>
177
178 * dbusbind.c: Add comment explaining reason for previous change.
179
180 2012-10-15 Martin Rudalics <rudalics@gmx.at>
181
182 * window.c (Fwindow_end): Rewrite check whether cached position
183 can be used (Bug#12600).
184 (resize_frame_windows, grow_mini_window, shrink_mini_window):
185 Set windows_or_buffers_changed.
186
187 2012-10-15 Daniel Colascione <dancol@dancol.org>
188
189 * dbusbind.c: Fix cygw32 build break when compiling with dbus
190 enabled by undefining the symbol "interface", which the platform
191 headers define to something incompatible.
192
193 2012-10-14 Daniel Colascione <dancol@dancol.org>
194
195 * image.c (init_tiff_functions, init_imagemagick_functions)
196 (init_svg_functions): Fix cygw32 build break by using these
197 functions only when WINDOWSNT _and_ HAVE_NTGUI.
198
199 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
200
201 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
202
203 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
204
205 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
206
207 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
208
209 * coding.c (detect_coding): Set coding->id before calling
210 this->detector.
211
212 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
213
214 * fileio.c: Formatting fixes.
215
216 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
217
218 Fix some stat-related races.
219 * fileio.c (Fwrite_region): Avoid race condition if a file is
220 removed or renamed by some other process immediately after Emacs
221 writes it but before Emacs stats it. Do not assume that stat (or
222 fstat) succeeds.
223 * image.c (slurp_file): Resolve the file name with fopen + fstat
224 rather than stat + fopen.
225 (pbm_read_file) [0]: Remove unused code with stat race.
226 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
227 Remove ineffective code with stat race.
228
229 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
230
231 * doc.c (get_doc_string): Don't signal an error if the file is missing.
232
233 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
234
235 * nsterm.m (hold_event_q): New static variable.
236 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
237 ! q_event_ptr.
238 (hold_event): New function.
239 (ns_read_socket): If hold_event_q have events, store them and
240 return (Bug#12384).
241 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
242 is zero (Bug#12384).
243
244 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
245
246 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
247
248 2012-10-12 Eli Zaretskii <eliz@gnu.org>
249
250 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
251
252 * fileio.c (check_existing): New function.
253 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
254 instead of calling 'stat', when what's needed is to check whether
255 a file exists. This avoids expensive system calls on MS-Windows.
256 (Bug#12587)
257
258 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
259
260 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
261 determine whether a file exists and is not a directory.
262
263 * lisp.h (check_existing): Add prototype.
264
265 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
266
267 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
268
269 2012-10-12 Glenn Morris <rgm@gnu.org>
270
271 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
272
273 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
274
275 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
276
277 * eval.c (Fautoload): Remember previous autoload status in load-history.
278
279 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
280
281 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
282 * lread.c (load_each_byte, new_backquote_flag, readchar)
283 (read_filtered_event, lisp_file_lexically_bound_p)
284 (safe_to_load_version, Fload, complete_filename_p, openp)
285 (build_load_history, readevalloop, read_escape, read1)
286 (string_to_number, read_vector, read_list):
287 * macros.c (Fstart_kbd_macro):
288 * marker.c (CONSIDER):
289 * menu.c (parse_single_submenu, digest_single_submenu)
290 (find_and_return_menu_selection, Fx_popup_menu):
291 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
292 (Ftry_completion):
293 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
294 (ns_menu_show):
295 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
296 (xmenu_show, xdialog_show):
297 Use bool for booleans.
298 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
299 as it's not a predicate. All uses changed. Omit unnecessary
300 buffer termination.
301
302 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
303
304 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
305 (save_excursion_restore): Do not restore mark if it was not saved.
306
307 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
308
309 * marker.c (cached_modiff): EMACS_INT, not int.
310
311 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
312 instead of having a wrong decl.
313 * nsmenu.m (waiting_for_input): Remove wrong decl.
314
315 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
316
317 keyboard.c, keymap.c: Use bool for booleans.
318 * dispnew.c (sit_for): Distinguish between 3-way display_option
319 and boolean do_display.
320 * keyboard.c (single_kboard, this_command_key_count_reset)
321 (waiting_for_input, echoing, immediate_quit, input_pending)
322 (interrupt_input, interrupts_deferred, pop_kboard)
323 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
324 (command_loop_1, adjust_point_for_property)
325 (safe_run_hooks_error, input_polling_used, read_char):
326 (help_char_p, readable_events, kbd_buffer_events_waiting)
327 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
328 (lucid_event_type_list_p, get_input_pending):
329 (gobble_input, menu_separator_name_p, menu_bar_item)
330 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
331 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
332 (keyremap_step, test_undefined, read_key_sequence)
333 (detect_input_pending, detect_input_pending_ignore_squeezables)
334 (detect_input_pending_run_timers, requeued_events_pending_p)
335 (quit_throw_to_read_char, Fset_input_interrupt_mode):
336 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
337 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
338 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
339 (accessible_keymaps_1, Fkey_description, push_key_description):
340 (shadow_lookup, struct where_is_internal_data)
341 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
342 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
343 (describe_map, describe_vector):
344 * menu.c (single_menu_item):
345 * nsmenu.m (ns_update_menubar):
346 * process.c (wait_reading_process_output):
347 * search.c (scan_buffer, scan_newline):
348 Use bool for boolean.
349 * keyboard.c (timers_run, swallow_events)
350 (detect_input_pending_run_timers):
351 * process.c (wait_reading_process_output):
352 Use unsigned for counter where wraparound-on-overflow is desired,
353 since unsigned is guaranteed to have that behavior and signed is not.
354 (read_char): Use ptrdiff_t for string length.
355 (get_input_pending): Remove first argument, since it was always
356 the same pointer-to-int (now pointer-to-boolean) &input_pending,
357 and behave as if it had that value. Return new value of
358 input_pending. All callers changed.
359 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
360 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
361 a string length.
362 * keymap.c (push_key_description): Omit last arg, which was always 1.
363 All callers changed.
364
365 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
366
367 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
368
369 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
370 ($(BLD)/term.$(O)): Update dependencies.
371
372 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
373
374 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
375 * lisp.h (enum pvec_type): Adjust comments and omit explicit
376 initializer for PVEC_NORMAL_VECTOR.
377
378 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
379
380 Clean out old termopts cruft.
381 * termopts.h (flow_control, meta_key): Remove unused decls.
382 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
383 Don't include termopts.h.
384
385 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
386
387 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
388
389 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
390
391 * commands.h (immediate_quit): Remove duplicate decl.
392
393 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
394
395 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
396 caching.
397 (nsfont_open): Remove setting of Vfonts_in_cache.
398 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
399
400 2012-10-09 Eli Zaretskii <eliz@gnu.org>
401
402 * w32fns.c (w32_last_error): Change the return value to DWORD, to
403 match what GetLastError returns. Explain why the function is
404 needed.
405
406 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
407 'is_tooltip_frame', to avoid confusion with its global namesake.
408
409 2012-10-08 Daniel Colascione <dancol@dancol.org>
410
411 * xdisp.c (start_hourglass): Call w32_note_current_window when
412 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
413 build that caused Emacs to display the hourglass cursor forever.
414
415 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
416 which is broken under remote desktop, calculate the number of
417 colors available for a display based on the display's number of
418 planes and number of bits per pixel per plane. (bug#10397).
419
420 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
421
422 * nsfont.m (Vfonts_in_cache): New variable.
423 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
424 are used. Add cached fonts to Vfonts_in_cache.
425 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
426
427 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
428
429 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
430 in nt/config.nt.
431 (FONT_H): Define after FRAME_H.
432 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
433 Update dependencies.
434
435 * w32term.c: Remove leftover declaration of keyboard_codepage.
436
437 2012-10-08 Eli Zaretskii <eliz@gnu.org>
438
439 * makefile.w32-in (FONT_H): Add $(FRAME_H).
440 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
441 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
442 (GLOBAL_SOURCES): Add cygw32.c.
443 ($(BLD)/unexw32.$(O)):
444 ($(BLD)/w32.$(O)):
445 ($(BLD)/w32console.$(O)):
446 ($(BLD)/w32fns.$(O)):
447 ($(BLD)/w32heap.$(O)):
448 ($(BLD)/w32menu.$(O)):
449 ($(BLD)/w32proc.$(O)): Add w32common.h.
450
451 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
452 'const char *'.
453 (x_to_w32_color): Don't modify the argument, modify a copy instead.
454
455 2012-10-08 Daniel Colascione <dancol@dancol.org>
456
457 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
458 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
459 accidental message numbering hole. Change other messages to
460 match.
461
462 * w32select.h (HAVE_W32SELECT): Remove.
463
464 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
465 w32common.h instead of w32heap.h.
466
467 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
468 (get_allocation_unit, get_processor_type, get_w32_major_version)
469 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
470 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
471 (OS_NT, os_subtype, cache_system_info): Move declarations to
472 w32common.
473
474 * w32heap.c: Include w32common.h.
475 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
476 (w32_minor_version, w32_build_number, w32_subtype):
477 Remove duplicate definitions.
478
479 * w32fns.c: Include w32common.h; include w32heap.h only in
480 WINDOWSNT.
481
482 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
483 Use `report_file_error' instead of `error' in order to better
484 inform users of what went wrong. Increase NTGUI_UNICODE file
485 dialog box file name length to 32k, the maximum allowed by the NT
486 kernel.
487
488 * w32common.h: New file.
489 (ROUND_UP, ROUND_DOWN, get_page_size)
490 (get_allocation_unit, get_processor_type, get_w32_major_version)
491 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
492 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
493 (OS_NT, os_subtype, cache_system_info): Move here.
494
495 * unexw32.c, unexcw.c: Include w32common.h.
496
497 * emacs.c (main): Use (defined (WINDOWSNT) || defined
498 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
499 to call syms_of_w32select.
500
501 * cygw32.h: Remove obsolete EXFUN declarations.
502
503 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
504
505 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
506 of w32inevt.o from SOME_MACHINE_OBJECTS.
507
508 2012-10-08 Daniel Colascione <dancol@dancol.org>
509
510 * image.c: Permanent fix for JPEG compilation issue --- limit
511 jpeglib `boolean' redefinition to Cygwin builds.
512
513 2012-10-08 Eli Zaretskii <eliz@gnu.org>
514
515 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
516
517 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
518 Cygwin.
519
520 2012-10-08 Daniel Colascione <dancol@dancol.org>
521
522 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
523 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
524 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
525 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
526 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
527 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
528 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
529 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
530 now a supported configuration.
531
532 * Makefile.in: consolidate image variables into LIBIMAGE; add
533 W32_OBJ and W32_LIBS. Compile new files.
534
535 * conf_post.h:
536 (_DebPrint) declare tracing facility for W32 debugging. We need
537 to unify tracing later.
538
539 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
540 unconditional use of W32 Unicode functions. Cygwin runs only on
541 100% Unicode operating systems.
542
543 * cygw32.c: New file. Define Cygwin-specific facilities.
544 (Fcygwin_convert_path_to_windows)
545 (Fcygwin_convert_path_from_windows): New user functions for
546 accessing Cygwin path-munging routines.
547
548 * cygw32.h: New file.
549 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
550 UTF-16LE strings temporarily inside non-Lisp-visible string
551 objects.
552
553 (w32_strerror): Just what it says on the tin.
554
555 * emacs.c: Make the NS fork-then-exec code for daemon-launching
556 also run for Cygwin; both systems have the same problem with using
557 GUI facilities in a forked child. Also call syms_of_cygw32,
558 syms_of_w32select in correct places.
559
560 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
561 needs fork-then-exec for daemon launching.
562
563 * font.h: Include frame.h.
564
565 * image.c: Use the image library cache machinery only when we're
566 compiling for native WINDOWSNT; Cygwin can use shared libraries
567 like any other Unixlike system.
568
569 * keyboard.c: Clarify a comment regarding the input loop.
570
571 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
572 functions directly instead of trying to detect at runtime that our
573 host operating system supports them. We make this change for two
574 reasons: Cygwin lacks support for the multibyte character
575 conversion functions used by the legacy menu code, and Cygwin
576 never needs to rely on non-Unicode APIs.
577
578 * unexw32.c (hinst): Declare extern.
579
580 * w32.c: Change header order;
581 (w32_strerror): Move to w32fns.c because we need it for
582 non-WINDOWSNT builds.
583
584 * w32.h: Add #error macro to make sure we don't include w32.h for
585 Cygwin builds. Remove w32select declarations.
586
587 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
588 w32fns.c. w32console.c is WINDOWSNT-only.
589
590 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
591 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
592 POSIXy alternative.
593 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
594 (w32_major_version, w32_minor_version, w32_build_number)
595 (os_subtype, sound_type): Define here
596 (w32_defined_color): Make color parameter const for consistency
597 with other _defined_color functions.
598 (w32_createwindow): Unconditionally call w32_init_class instead of
599 doing so only when hprevinst is non-NULL. Plumbing hprevinst
600 through the code is complex and unnecessary because class
601 registration is practically free.
602 (w32_name_of_message): New EMACSDEBUG-only function.
603 (Fset_message_beep): Move here
604 (Fx_open_connection): Require that the display name for Windows be
605 "w32" for consistency, emacsclient disambiguation, and maybe, one
606 day, multi-window-system support.
607 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
608 Cygwin files for W32 GUI facilities, since these clearly don't
609 expect Cygwin names.
610 (_DebPrint): Define.
611 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
612 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
613 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
614 (w32_last_error): Remove.
615
616 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
617
618 * w32heap.c (syspage_mask): Declare here.
619 (cache_system_info): Remove.
620
621 * w32inevt.c (faked_key): Define globally, not statically.
622 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
623 (w32_console_toggle_lock_key): Move to w32fns.c.
624
625 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
626
627 * w32proc.c (_DebPrint): Move to w32fns.c.
628 * w32select.c: Include string.h, stdio.h for Cygwin.
629 * w32select.h: New File.
630
631 * w32term.c: Include io.h for non-CYGWIN builds; needed for
632 get_osfhandle.
633 (w32_message_fd): New variable. Under Cygwin, holds the file
634 descriptor the system used to tell us about pending thread
635 messages.
636
637 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
638 that prevented compilation under non-WINDOWSNT systems.
639
640 (w32_initialize): Open /dev/windows and assign it to
641 w32_message_fd. Provide w32 feature.
642
643 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
644 (WM_EMACS_INPUT_READY): add.
645 (prepend_msg, w32_message_fd): Declare globally.
646
647 * w32xfns.c:
648 (keyboard_handle): Use only when WINDOWSNT.
649 (notify_msg_ready): New function. Posts a message to the main
650 thread's message queue under CYGWIN, which wakes up the main
651 thread from select(2) by making the /dev/windows file descriptor
652 ready. Under WINDOWSNT, it sets an event the same way the old
653 code did.
654
655 (post, prepend_msg): Actually call notify_msg_ready instead of
656 setting the input event directly.
657
658 2012-10-07 Eli Zaretskii <eliz@gnu.org>
659
660 * ralloc.c (relinquish): If a heap is ready to be relinquished,
661 but it still has blocs in it, don't return it to the system,
662 instead of aborting. (Bug#12402)
663
664 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
665
666 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
667
668 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
669 MAC_OS_X_VERSION_10_6.
670 (syms_of_nsterm): Remove comment about Panther and above for
671 ns-antialias-text.
672 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
673 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
674 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
675
676 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
677 MAC_OS_X_VERSION_10_4.
678
679 * nsmenu.m (fillWithWidgetValue:): Remove code for <
680 MAC_OS_X_VERSION_10_2.
681
682 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
683
684 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
685 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
686
687 * nsterm.m (ns_in_resize): Remove (Bug#12479).
688 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
689 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
690 Remove ns_in_resize check.
691 (ns_clear_frame_area): Remove resize handle code.
692
693 * nsfns.m (ns_in_resize): Remove.
694 (x_set_icon_name, ns_set_name, ns_set_name_as_filename): Remove
695 ns_in_resize check.
696
697 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
698
699 Improve sys_siglist detection.
700 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
701 defined as a macro, as is done in Solaris.
702 (sys_siglist_entries): New macro.
703 (save_strsignal): Use it.
704 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
705 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
706
707 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
708
709 * nsfns.m (Fx_create_frame): Call x_default_parameter with
710 fullscreen/Fullscreen.
711
712 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
713 tobar_height is new.
714
715 * nsterm.m (x_make_frame_visible): Check for fullscreen.
716 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
717 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
718 (windowDidResize:): Check for correct window if old style fullscreen.
719 Capitalize word in comment. Remove incorrect comment.
720 (initFrameFromEmacs:): tbar_height renamed tibar_height.
721 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
722 error in drawing background.
723 (toggleFullScreen:): Remove comment. Rearrange calls.
724 Set toolbar values to zero, save old height in tobar_height.
725 Restore tool bar height when leaving fullscreen.
726 (canBecomeMainWindow): New function.
727
728 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
729
730 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
731
732 2012-10-05 Eli Zaretskii <eliz@gnu.org>
733
734 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
735
736 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
737 that time stamps of directories could also be changed.
738 Don't request the too broad GENERIC_WRITE, only the more restrictive
739 FILE_WRITE_ATTRIBUTES access rights.
740
741 * fileio.c (Fset_file_times): Special-case ignoring errors for
742 directories only on MSDOS, not on MS-Windows.
743
744 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
745
746 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
747
748 2012-10-04 Eli Zaretskii <eliz@gnu.org>
749
750 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
751 see whether CreateFile failed.
752
753 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
754
755 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
756 to avoid similar races.
757 * keyboard.c (pending_signals): Now bool, not int.
758
759 Port timers to OpenBSD, plus check for timer failures.
760 OpenBSD problem reported by Han Boetes.
761 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
762 and/or setitimer.
763 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
764 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
765 like OpenBSD, which has timer_settime but does not declare it.
766 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
767 whether to use itimerspec-related primitives. All uses of
768 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
769
770 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
771
772 * profiler.c (handle_profiler_signal): Fix a malloc race
773 that caused Emacs to hang on Fedora 17 when profiling Lisp.
774
775 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
776
777 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
778
779 2012-10-02 Eli Zaretskii <eliz@gnu.org>
780
781 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
782 consistent with the change in return value of 'safe_strsignal'.
783
784 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
785
786 Prefer plain 'static' to 'static inline' (Bug#12541).
787 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
788 (bidi_set_sor_type, bidi_push_embedding_level)
789 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
790 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
791 (bidi_cache_search, bidi_cache_ensure_space)
792 (bidi_cache_iterator_state, bidi_cache_find)
793 (bidi_peek_at_next_level, bidi_set_paragraph_end)
794 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
795 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
796 Now 'static', not 'static inline'.
797
798 Count overruns when profiling; change units to ns.
799 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
800 Give extra weight to samples after overruns, to attempt to count
801 the time more accurately.
802 (setup_cpu_timer): Change sampling interval units from ms to ns, since
803 the underlying primitives nominally do ns.
804 (Fprofiler_cpu_start): Document the change. Mention that
805 the sampling intervals are only approximate.
806
807 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
808
809 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
810
811 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
812 case for the special 0 coding-system.
813
814 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
815 (Fmake_overlay): Remove redundant tests.
816 (fix_start_end_in_overlays): Remove redundant recentering.
817
818 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
819
820 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
821 Update dependencies.
822
823 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
824
825 Fix a malloc race condition involving strsignal.
826 A signal can arrive in the middle of a malloc, and Emacs's signal
827 handler can invoke strsignal, which can invoke malloc, which is
828 not portable. This race condition bug makes Emacs hang on GNU/Linux.
829 Fix it by altering the signal handler so that it does not invoke
830 strsignal.
831 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
832 * process.c (status_message): Use const pointer, in case strsignal
833 is #defined to safe_strsignal.
834 * sysdep.c (sys_siglist, init_signals): Always define and
835 initialize a substitute sys_siglist if the system does not define
836 one, even if HAVE_STRSIGNAL.
837 (safe_strsignal): Rename from strsignal. Always define,
838 using sys_siglist. Return a const pointer.
839 * syssignal.h (safe_strsignal): New decl.
840 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
841
842 2012-10-01 Eli Zaretskii <eliz@gnu.org>
843
844 * w32proc.c (timer_loop): Fix code that waits for timer
845 expiration, to avoid high CPU usage.
846
847 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
848
849 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
850 (sweep_weak_table): Remove redundant prototypes.
851
852 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
853
854 * emacs.c: Move the inclusion of TERM_HEADER after including
855 windows.h on WINDOWSNT. This avoids compilation problems with
856 MSVC.
857
858 2012-10-01 Eli Zaretskii <eliz@gnu.org>
859
860 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
861 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
862 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
863 as the previous version used 'void *'.
864
865 * ralloc.c (ROUNDUP): Fix last change.
866 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
867 'size_t'.
868
869 * w32proc.c <disable_itimers>: New static flag.
870 (init_timers): Initialize it to zero, after creating the critical
871 sections used by the timer threads.
872 (term_timers): Set to 1 before deleting the critical sections.
873 (getitimer, setitimer): If disable_itimers is non-zero, return an
874 error indication without doing anything. Reported by Fabrice
875 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
876 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
877 return results.
878 [!HAVE_SETITIMER]: Behave as the previous version that didn't
879 support timers.
880
881 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
882 term_ntproc after all the other bookkeeping, to get timers working
883 as long as possible.
884
885 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
886
887 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
888 Suggested by Juri Linkov in
889 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
890
891 Prefer plain 'static' to 'static inline' (Bug#12541).
892 With static functions, modern compilers inline pretty well by
893 themselves; advice from programmers often hurts as much as it helps.
894 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
895 this change shrinks the text size of the Emacs executable by 1.1%
896 without affecting CPU significantly in my benchmark.
897 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
898 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
899 (mark_maybe_object, mark_maybe_pointer, bounded_number):
900 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
901 (bset_auto_fill_function, bset_auto_save_file_format)
902 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
903 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
904 (bset_cache_long_line_scans, bset_case_fold_search)
905 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
906 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
907 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
908 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
909 (bset_header_line_format, bset_indicate_buffer_boundaries)
910 (bset_indicate_empty_lines, bset_invisibility_spec)
911 (bset_left_fringe_width, bset_major_mode, bset_mark)
912 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
913 (bset_name, bset_overwrite_mode, bset_pt_marker)
914 (bset_right_fringe_width, bset_save_length)
915 (bset_scroll_bar_width, bset_scroll_down_aggressively)
916 (bset_scroll_up_aggressively, bset_selective_display)
917 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
918 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
919 (set_buffer_overlays_after):
920 * category.c (bset_category_table):
921 * charset.c (read_hex):
922 * coding.c (produce_composition, produce_charset)
923 (handle_composition_annotation, handle_charset_annotation)
924 (char_encodable_p):
925 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
926 (assign_row, set_frame_matrix_frame, make_current)
927 (add_row_entry):
928 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
929 * fns.c (maybe_resize_hash_table):
930 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
931 * gmalloc.c (register_heapinfo):
932 * image.c (lookup_image_type):
933 * intervals.c (set_interval_object, set_interval_left)
934 (set_interval_right, copy_interval_parent, rotate_right)
935 (rotate_left, balance_possible_root_interval):
936 * keyboard.c (kset_echo_string, kset_kbd_queue)
937 (kset_keyboard_translate_table, kset_last_prefix_arg)
938 (kset_last_repeatable_command, kset_local_function_key_map)
939 (kset_overriding_terminal_local_map, kset_real_last_command)
940 (kset_system_key_syms, clear_event, set_prop):
941 * lread.c (digit_to_number):
942 * marker.c (attach_marker, live_buffer, set_marker_internal):
943 * nsterm.m (ns_compute_glyph_string_overhangs):
944 * process.c (pset_buffer, pset_command)
945 (pset_decode_coding_system, pset_decoding_buf)
946 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
947 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
948 (pset_status, pset_tty_name, pset_type, pset_write_queue):
949 * syntax.c (bset_syntax_table, dec_bytepos):
950 * terminal.c (tset_param_alist):
951 * textprop.c (interval_has_some_properties)
952 (interval_has_some_properties_list):
953 * window.c (wset_combination_limit, wset_dedicated)
954 (wset_display_table, wset_hchild, wset_left_fringe_width)
955 (wset_left_margin_cols, wset_new_normal, wset_new_total)
956 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
957 (wset_right_fringe_width, wset_right_margin_cols)
958 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
959 (wset_vertical_scroll_bar_type, wset_window_parameters):
960 * xdisp.c (wset_base_line_number, wset_base_line_pos)
961 (wset_column_number_displayed, wset_region_showing)
962 (window_box_edges, run_window_scroll_functions)
963 (append_glyph_string_lists, prepend_glyph_string_lists)
964 (append_glyph_string, set_glyph_string_background_width)
965 (append_glyph, append_composite_glyph)
966 (take_vertical_position_into_account):
967 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
968 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
969 (lface_hash, lface_same_font_attributes_p, lookup_face):
970 * xml.c (libxml2_loaded_p):
971 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
972 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
973 Now 'static', not 'static inline'.
974
975 * bidi.c: Tune.
976 (bidi_copy_it): Do the whole copy with a single memcpy.
977 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
978
979 Revert the FOLLOW-SYMLINKS change for file-attributes.
980 Doing it right would require several changes to Tramp, and there's
981 not enough time to get that tested before the freeze today.
982 * dired.c (directory_files_internal, Ffile_attributes):
983 Undo last change.
984
985 * frame.c (x_report_frame_params): Port better to wider ints.
986 Do not assume that EMACS_UINT is the same width as uprintmax_t,
987 or that pointers can be printed in 15 decimal digits.
988 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
989
990 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
991
992 Support x64 build on MS-Windows.
993 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
994 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
995 compatibility with x64.
996 (x_get_focus_frame): Add prototype.
997
998 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
999 defining an XRectangle structure.
1000
1001 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
1002 arithmetics for compatibility with x64.
1003
1004 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
1005 compatibility with x64.
1006
1007 * w32heap.h: Adjust prototypes and declarations.
1008
1009 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
1010 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
1011 DWORD, long, and unsigned long, for compatibility with x64.
1012 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
1013 (sbrk): Argument is now of type ptrdiff_t.
1014
1015 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
1016 less than 0x0500.
1017 (w32_msg_pump): Use WPARAM type for 'result'.
1018
1019 * w32.c (init_environment, get_emacs_configuration): Support AMD64
1020 architecture.
1021 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
1022 compatibility with x64.
1023
1024 * vm-limit.c (lim_data): Now size_t.
1025 (check_memory_limits): Adjust prototypes of real_morecore and
1026 __morecore to receive argument of type ptrdiff_t. Use size_t for
1027 five_percent and data_size.
1028
1029 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
1030 variables, for compatibility with x64.
1031 (rva_to_section, offset_to_section, relocate_offset)
1032 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
1033 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
1034 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
1035 for compatibility with x64.
1036
1037 * sysdep.c (STDERR_FILENO): Define if not already defined.
1038
1039 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
1040 (__morecore): Argument type is now ptrdiff_t.
1041 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
1042 (relinquish): Use ptrdiff_t type for 'excess'.
1043 (r_alloc_sbrk): Argument type is now ptrdiff_t.
1044
1045 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
1046 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
1047 instead of a literal number.
1048
1049 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
1050 (min): Define only if not already defined.
1051
1052 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
1053 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
1054 hosts.
1055
1056 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
1057 'bitmaps' is a pointer.
1058
1059 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
1060
1061 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
1062
1063 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1064
1065 file-attributes has a new optional arg FOLLOW-SYMLINKS.
1066 * dired.c (directory_files_internal, Ffile_attributes):
1067 New arg follow_symlinks. All uses changed.
1068
1069 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
1070
1071 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
1072
1073 2012-09-30 Eli Zaretskii <eliz@gnu.org>
1074
1075 Support atimers and CPU profiler via profile.c on MS-Windows.
1076 * w32proc.c (sig_mask, crit_sig): New static variables.
1077 (sys_signal): Support SIGALRM and SIGPROF.
1078 (sigemptyset, sigaddset, sigfillset, sigprocmask)
1079 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
1080 sigfillset, and sigprocmask are no longer no-ops.
1081 (sigismember): New function.
1082 (struct itimer_data): New definition.
1083 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
1084 (crit_prof): New static variables.
1085 (MAX_SINGLE_SLEEP): New definition.
1086 (timer_loop, stop_timer_thread, term_timers, init_timers)
1087 (start_timer_thread, getitimer, setitimer): New functions.
1088 (alarm): No longer a no-op, calls setitimer.
1089
1090 * w32.c (term_ntproc): Call term_timers.
1091 (init_ntproc): Make sure all signals are unblocked at startup, to
1092 erase any traces of dumping. Call init_timers.
1093
1094 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
1095 Windows-specific code to display the hourglass mouse pointer is no
1096 longer used.
1097 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
1098 to hourglass timer expiration.
1099 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
1100 Remove, no longer used.
1101 (w32_note_current_window, show_hourglass, hide_hourglass):
1102 New functions, in support of hourglass cursor display similar to other
1103 window systems.
1104 (syms_of_w32fns): Don't initialize hourglass_timer.
1105
1106 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
1107 WINDOWSNT as well.
1108 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
1109
1110 * w32.h (init_timers, term_timers): Add prototypes.
1111
1112 2012-09-30 Kenichi Handa <handa@gnu.org>
1113
1114 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
1115 to the buffer relocation which may be caused by ccl_driver.
1116
1117 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
1118
1119 * xfns.c (Fx_file_dialog): Update comment.
1120
1121 * w32fns.c (Fx_file_dialog): Update comment.
1122
1123 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
1124 Initialize panel name field if OSX >= 10.6.
1125
1126 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
1127
1128 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
1129
1130 * nsterm.m (NEW_STYLE_FS): New define.
1131 (ns_fullscreen_hook, windowWillEnterFullScreen)
1132 (windowDidEnterFullScreen, windowWillExitFullScreen)
1133 (windowDidExitFullScreen, toggleFullScreen, handleFS)
1134 (setFSValue): New functions.
1135 (EmacsFSWindow): New implementation.
1136 (canBecomeKeyWindow): New function for EmacsFSWindow.
1137 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
1138 (dealloc): Release nonfs_window if in fullscreen.
1139 (updateFrameSize:): Call windowDidMove to update top/left.
1140 (windowWillResize:toSize:): Check if frame is still maximized.
1141 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
1142 next_maximized, maximized_width, maximized_height and nonfs_window.
1143 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
1144 tbar_height.
1145 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
1146 fullscreen. Set maximized_width/height. Act on next_maximized.
1147
1148 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
1149 (EmacsView): Add variables for fullscreen.
1150 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
1151 (EmacsFSWindow): New interface for fullscreen.
1152
1153 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
1154
1155 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1156
1157 2012-09-30 Chong Yidong <cyd@gnu.org>
1158
1159 * fns.c (Frandom): Doc fix.
1160
1161 2012-09-30 Martin Rudalics <rudalics@gmx.at>
1162
1163 * window.c (Vwindow_combination_limit): New default value.
1164 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
1165
1166 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1167
1168 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
1169 Suggested by Eli Zaretskii in
1170 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
1171
1172 2012-09-30 Eli Zaretskii <eliz@gnu.org>
1173
1174 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
1175 HAVE_TIMER_SETTIME is defined.
1176
1177 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
1178
1179 Profiler improvements: more-accurate timers, overflow checks.
1180 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
1181 signal.h, setjmp.h. Include systime.h instead.
1182 (saturated_add): New function.
1183 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
1184 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
1185 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
1186 New static vars.
1187 (enum profiler_cpu_running): New enum.
1188 (profiler_cpu_running): Now of that enum type, not bool.
1189 All uses changed to store the new value.
1190 (handle_profiler_signal): Rename from sigprof_handler_1,
1191 for consistency with other handlers. Do not check whether
1192 cpu_log is a hash-table if garbage collecting, since it
1193 doesn't matter in that case.
1194 (deliver_profiler_signal): Rename from sigprof_handler,
1195 for consistency with other handlers.
1196 (setup_cpu_timer): New function, with much of what used to be in
1197 Fprofiler_cpu_start. Check for out-of-range argument.
1198 Prefer timer_settime if available, and prefer
1199 thread cputime clocks, then process cputime clocks, then
1200 monotonic clocks, to the old realtime clock. Use make_timeval
1201 to round more-correctly when falling back to setitimer.
1202 (Fprofiler_cpu_start): Use it.
1203 (Fprofiler_cpu_stop): Prefer timer_settime if available.
1204 Don't assume that passing NULL as the 2nd argument of setitimer
1205 is the same as passing a pointer to all-zero storage.
1206 Ignore SIGPROF afterwards.
1207 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
1208 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
1209 non-fatal signal handlers. Ignore SIGPROF on startup.
1210 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
1211 in profiler.c, since sysdep.c now uses it.
1212
1213 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
1214 Suggested by Eli Zaretskii in
1215 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1216
1217 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
1218
1219 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1220
1221 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
1222
1223 * lisp.h (struct backtrace): Remove indirection for `function' field.
1224 * xdisp.c (redisplay_internal):
1225 * profiler.c (record_backtrace, sigprof_handler_1):
1226 * alloc.c (Fgarbage_collect):
1227 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
1228 (Fbacktrace_frame): Adjust accordingly.
1229
1230 2012-09-28 Glenn Morris <rgm@gnu.org>
1231
1232 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
1233 (Frun_hook_with_args_until_failure): Doc fixes.
1234
1235 2012-09-28 Eli Zaretskii <eliz@gnu.org>
1236
1237 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
1238 Qautomatic_redisplay and change the symbol name. All users changed.
1239
1240 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
1241
1242 * profiler.c (sigprof_handler): Fix race condition.
1243
1244 2012-09-28 Glenn Morris <rgm@gnu.org>
1245
1246 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
1247
1248 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
1249
1250 Check more robustly for timer_settime.
1251 * Makefile.in (LIB_TIMER_TIME): New macro.
1252 (LIBES): Add it.
1253 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
1254 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
1255 call timer_settime.
1256
1257 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1258
1259 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
1260
1261 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
1262
1263 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
1264
1265 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
1266
1267 * character.h (MAYBE_UNIFY_CHAR): Remove.
1268 * charset.c, charset.h (maybe_unify_char): Now static.
1269 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
1270 Since this stuff is now private to charset.c, there's no need for
1271 a public macro and no need to inline by hand.
1272
1273 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
1274 Stefan Monnier <monnier@iro.umontreal.ca>
1275 Juanma Barranquero <lekktu@gmail.com>
1276
1277 * profiler.c: New file.
1278 * Makefile.in (base_obj): Add profiler.o.
1279 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
1280 ($(BLD)/profiler.$(O)): New target.
1281 * emacs.c (main): Call syms_of_profiler.
1282 * alloc.c (Qautomatic_gc): New constant.
1283 (MALLOC_PROBE): New macro.
1284 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
1285 (total_bytes_of_live_objects): New function.
1286 (Fgarbage_collect): Use it. Record itself in backtrace_list.
1287 Call malloc_probe for the memory profiler.
1288 (syms_of_alloc): Define Qautomatic_gc.
1289 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
1290 race condition.
1291 (struct backtrace): Move definition...
1292 * lisp.h (struct backtrace): ..here.
1293 (Qautomatic_gc, profiler_memory_running): Declare vars.
1294 (malloc_probe, syms_of_profiler): Declare functions.
1295 * xdisp.c (Qautomatic_redisplay): New constant.
1296 (redisplay_internal): Record itself in backtrace_list.
1297 (syms_of_xdisp): Define Qautomatic_redisplay.
1298
1299 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1300 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
1301
1302 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
1303
1304 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
1305
1306 Prefer POSIX timers if available.
1307 They avoid a race if the timer is too close to the current time.
1308 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
1309 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
1310 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
1311
1312 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1313
1314 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
1315 CHAR_STRING_ADVANCE.
1316 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
1317 STRING_CHAR_ADVANCE.
1318
1319 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
1320
1321 Move Vlibrary_cache to emacs.c and reset before dumping.
1322
1323 * lisp.h (reset_image_types): Declare.
1324 [WINDOWSNT] (Vlibrary_cache): Declare.
1325
1326 * image.c (reset_image_types): New function.
1327
1328 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
1329 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
1330 (Fdump_emacs): Reset Vlibrary_cache and image_types.
1331
1332 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
1333 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
1334
1335 * w32.h (Vlibrary_cache): Do not declare.
1336
1337 2012-09-25 Eli Zaretskii <eliz@gnu.org>
1338
1339 * w32proc.c (sys_signal): Handle all signals defined by the
1340 MS-Windows runtime, not just SIGCHLD. Actually install the signal
1341 handlers for signals supported by Windows. Don't override
1342 term_ntproc as the handler for SIGABRT.
1343 (sigaction): Rewrite to call sys_signal instead of duplicating its
1344 code.
1345 (sys_kill): Improve commentary.
1346
1347 * w32.c (term_ntproc): Accept (and ignore) one argument, for
1348 consistency with a signature of a signal handler. All callers
1349 changed.
1350 (init_ntproc): Accept an argument DUMPING. If dumping, don't
1351 install term_ntproc as a signal handler for SIGABRT, as that
1352 should be done by the dumped Emacs.
1353
1354 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
1355
1356 * w32select.c (term_w32select): Protect against repeated
1357 invocation by setting clipboard_owner to NULL after calling
1358 DestroyWindow.
1359
1360 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
1361 and term_ntproc to their modified signatures.
1362
1363 * character.c (char_string, string_char): Remove calls to
1364 MAYBE_UNIFY_CHAR. See the discussion starting at
1365 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
1366 for the details.
1367
1368 2012-09-25 Chong Yidong <cyd@gnu.org>
1369
1370 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
1371
1372 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
1373
1374 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
1375 when encountering an unknown bytecode.
1376
1377 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
1378
1379 image.c, indent.c: Use bool for booleans.
1380 * dispextern.h (struct image_type): Members valid_p, load, init
1381 now return bool, not int. All uses changed.
1382 * image.c: Omit unnecessary static decls.
1383 (x_create_bitmap_mask, x_build_heuristic_mask):
1384 Return void, not int, since callers don't care about the return value.
1385 (x_create_bitmap_mask, define_image_type, valid_image_p)
1386 (struct image_keyword, parse_image_spec, image_spec_value)
1387 (check_image_size, image_background)
1388 (image_background_transparent, x_clear_image_1)
1389 (postprocess_image, lookup_image, x_check_image_size)
1390 (x_create_x_image_and_pixmap, xbm_image_p)
1391 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
1392 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
1393 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
1394 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
1395 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
1396 (png_image_p, init_png_functions, png_load_body, png_load)
1397 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
1398 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
1399 (init_gif_functions, gif_load, imagemagick_image_p)
1400 (imagemagick_load_image, imagemagick_load, svg_image_p)
1401 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
1402 (gs_load):
1403 * nsimage.m (ns_load_image):
1404 * nsterm.m (ns_defined_color):
1405 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
1406 * xfns.c (x_defined_color):
1407 * xterm.c (x_alloc_lighter_color_for_widget)
1408 (x_alloc_nearest_color_1, x_alloc_nearest_color)
1409 (x_alloc_lighter_color):
1410 * indent.c (disptab_matches_widthtab, current_column)
1411 (scan_for_column, string_display_width, indented_beyond_p)
1412 (compute_motion, vmotion, Fvertical_motion):
1413 Use bool for booleans.
1414
1415 2012-09-24 Chong Yidong <cyd@gnu.org>
1416
1417 * chartab.c (Fset_char_table_default): Obsolete function removed.
1418
1419 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1420
1421 Move pid_t related decls out of lisp.h.
1422 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
1423 (interruptible_wait_for_termination):
1424 Move these decls from lisp.h to syswait.h, since they use pid_t.
1425 Needed on FreeBSD; see Herbert J. Skuhra in
1426 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
1427 * callproc.c: Include syswait.h.
1428
1429 gnutls.c, gtkutil.c: Use bool for boolean.
1430 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
1431 (emacs_gnutls_handle_error):
1432 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
1433 (xg_hide_tooltip, xg_create_frame_widgets)
1434 (create_dialog, xg_uses_old_file_dialog)
1435 (xg_get_file_with_chooser, xg_get_file_with_selection)
1436 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
1437 (xg_item_label_same_p, xg_update_menubar)
1438 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
1439 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
1440 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
1441 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
1442 (update_frame_tool_bar, free_frame_tool_bar):
1443 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
1444 * nsmenu.m (ns_update_menubar):
1445 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
1446 * xfns.c (Fx_show_tip) [USE_GTK]:
1447 Use bool for boolean.
1448 * gtkutil.c (xg_update_frame_menubar):
1449 * xmenu.c (update_frame_menubar):
1450 Return void, not int, since caller ignores return value.
1451 * gtkutil.c (xg_change_toolbar_position):
1452 Return void, not 1.
1453
1454 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
1455
1456 * makefile.w32-in (BLOCKINPUT_H): Remove.
1457 (SYSSIGNAL_H): New macro.
1458 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
1459 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
1460 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
1461 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
1462 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
1463 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
1464 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
1465 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
1466 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
1467 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
1468 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
1469 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
1470 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
1471 ($(BLD)/w32xfns.$(O)): Update dependencies.
1472
1473 2012-09-23 Eli Zaretskii <eliz@gnu.org>
1474
1475 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
1476 fatal_error_backtrace.
1477
1478 * w32proc.c (sys_kill): Undo last change: don't do anything when
1479 invoked to deliver SIGABRT to our own process. This is now
1480 handled by emacs_raise.
1481
1482 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
1483
1484 * w32term.c (w32_read_socket): Remove leftover reference to
1485 interrupt_input_pending.
1486
1487 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1488
1489 Do not use SA_NODEFER.
1490 Problem reported by Dani Moncayo in
1491 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
1492 * alloc.c (die):
1493 * sysdep.c (emacs_abort): Do not reset signal handler.
1494 * emacs.c (terminate_due_to_signal): Reset signal handler here.
1495 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
1496 wanted even on POSIXish hosts, and it doesn't work on Windows.
1497
1498 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
1499
1500 * xterm.c (x_term_init): Call fixup_locale before and after calling
1501 gtk_init (Bug#12392).
1502
1503 2012-09-23 Chong Yidong <cyd@gnu.org>
1504
1505 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
1506 Vdynamic_library_alist.
1507
1508 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
1509 (Fgnutls_available_p): Caller changed.
1510
1511 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
1512 (Flibxml_parse_xml_region): Likewise.
1513
1514 * dispextern.h (struct image_type): Remove arg from init function.
1515
1516 * image.c (Finit_image_library, lookup_image_type)
1517 (define_image_type): Remove now-unneeded second arg.
1518 (init_xpm_functions, init_png_functions, init_jpeg_functions)
1519 (init_tiff_functions, init_gif_functions, init_svg_functions):
1520 Arglist and w32_delayed_load calling convention changed.
1521 (gs_type): Remove init_gs_functions; there is no such function.
1522 (valid_image_p, make_image): Fix caller to lookup_image_type.
1523
1524 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
1525
1526 Simplify and avoid signal-handling races (Bug#12471).
1527 * alloc.c (die):
1528 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
1529 Avoid recursive loop if there's a fatal error in the function itself.
1530 * atimer.c (pending_atimers):
1531 * blockinput.h: Don't include "atimer.h"; no longer needed.
1532 (interrupt_input_pending): Remove. All uses removed.
1533 pending_signals now counts both atimers and ordinary interrupts.
1534 This is less racy than having three separate pending-signal flags.
1535 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
1536 (input_blocked_p):
1537 Rename from their upper-case counterparts BLOCK_INPUT,
1538 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
1539 INPUT_BLOCKED_P, and turn into functions. All uses changed.
1540 This makes it easier to access volatile variables more accurately.
1541 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
1542 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
1543 that's more reliable if the code is buggy and sets
1544 interrupt_input_blocked to a negative value. All uses changed.
1545 * atimer.c (deliver_alarm_signal):
1546 Remove. No need to deliver this to the parent; any thread can
1547 handle this signal now. All uses replaced by underlying handler.
1548 * atimer.c (turn_on_atimers):
1549 * dispnew.c (handle_window_change_signal):
1550 * emacs.c (handle_danger_signal):
1551 * keyboard.c (kbd_buffer_get_event):
1552 Don't reestablish signal handler; not needed with sigaction.
1553 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
1554 (UNBLOCK_INPUT_TO):
1555 Rework to avoid unnecessary accesses to volatile variables.
1556 (UNBLOCK_INPUT_TO): Now a function.
1557 (totally_unblock_input, unblock_input): New decls.
1558 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
1559 (init_data): Remove. Necessary stuff now done in init_signal.
1560 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
1561 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
1562 (fatal_error_code): Remove; no longer needed.
1563 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
1564 it doesn't always backtrace. All uses changed. No need to reset
1565 signal to default, since sigaction and/or die does that for us now.
1566 Use emacs_raise (FOO), not kill (getpid (), FOO).
1567 (main): Check more-accurately whether we're dumping.
1568 Move fatal-error setup to sysdep.c
1569 * floatfns.c: Do not include "syssignal.h"; no longer needed.
1570 * gtkutil.c (xg_get_file_name, xg_get_font):
1571 Remove no-longer-needed signal-mask manipulation.
1572 * keyboard.c, process.c (POLL_FOR_INPUT):
1573 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
1574 * keyboard.c (read_avail_input): Remove.
1575 All uses replaced by gobble_input.
1576 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
1577 (kbd_buffer_store_event_hold, gobble_input):
1578 (record_asynch_buffer_change) [USABLE_SIGIO]:
1579 (store_user_signal_events):
1580 No need to mess with signal mask.
1581 (gobble_input): If blocking input and there are terminals, simply
1582 set pending_signals to 1 and return. All hooks changed to not
1583 worry about whether input is blocked.
1584 (process_pending_signals): Clear pending_signals before processing
1585 them, in case a signal comes in while we're processing.
1586 By convention callers now test pending_signals before calling us.
1587 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
1588 New functions, to support changes to blockinput.h.
1589 (handle_input_available_signal): Now extern.
1590 (reinvoke_input_signal): Remove. All uses replaced by
1591 handle_async_input.
1592 (quit_count): Now volatile, since a signal handler uses it.
1593 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
1594 All callers changed. Block SIGINT only if not already blocked.
1595 Clear sigmask reliably, even if Fsignal returns, which it can.
1596 Omit unnecessary accesses to volatile var.
1597 (quit_throw_to_read_char): No need to restore sigmask.
1598 * keyboard.c (gobble_input, handle_user_signal):
1599 * process.c (wait_reading_process_output):
1600 Call signal-handling code rather than killing ourselves.
1601 * lisp.h: Include <float.h>, for...
1602 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
1603 (pending_signals): Now volatile.
1604 (syms_of_data): Now const if IEEE floating point.
1605 (handle_input_available_signal) [USABLE_SIGIO]:
1606 (terminate_due_to_signal, record_child_status_change): New decls.
1607 * process.c (create_process): Avoid disaster if memory is exhausted
1608 while we're processing a vfork, by tightening the critical section
1609 around the vfork.
1610 (send_process_frame, process_sent_to, handle_pipe_signal)
1611 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
1612 ignores SIGPIPE.
1613 (send_process): No need for setjmp/longjmp any more, since the
1614 SIGPIPE stuff is now gone. Instead, report an error if errno
1615 is EPIPE.
1616 (record_child_status_change): Now extern. PID and W are now args.
1617 Return void, not bool. All callers changed.
1618 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
1619 Remove. All uses removed. This bug should be fixed now in a
1620 different way.
1621 (wait_for_termination_1): Use waitpid rather than sigsuspend,
1622 and record the child status change directly. This avoids the
1623 need to futz with the signal mask.
1624 (process_fatal_action): Move here from emacs.c.
1625 (emacs_sigaction_flags): New function, containing
1626 much of what used to be in emacs_sigaction_init.
1627 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
1628 caught by emacs, to make races less likely.
1629 (deliver_process_signal): Rename from handle_on_main_thread.
1630 All uses changed.
1631 (BACKTRACE_LIMIT_MAX): Now at top level.
1632 (thread_backtrace_buffer, threadback_backtrace_pointers):
1633 New static vars.
1634 (deliver_thread_signal, deliver_fatal_thread_signal):
1635 New functions, for more-accurate delivery of thread-specific signals.
1636 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
1637 (deliver_arith_signal): Handle in this thread, not
1638 in the main thread, since it's triggered by this thread.
1639 (maybe_fatal_sig): New function.
1640 (init_signals): New arg DUMPING so that we can be more accurate
1641 about whether we're dumping. Caller changed.
1642 Treat thread-specific signals differently from process-general signals.
1643 Block all signals while handling fatal error; that's safer.
1644 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
1645 on IEEE hosts.
1646 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
1647 Ignore SIGPIPE unless batch.
1648 (emacs_backtrace): Output backtrace for the appropriate thread,
1649 which is not necessarily the main thread.
1650 * syssignal.h: Include <stdbool.h>.
1651 (emacs_raise): New macro.
1652 * xterm.c (x_connection_signal): Remove; no longer needed
1653 now that we use sigaction.
1654 (x_connection_closed): No need to mess with sigmask now.
1655 (x_initialize): No need to reset SIGPIPE handler here, since
1656 init_signals does this for us now.
1657
1658 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
1659
1660 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
1661 background rect may be larger (Bug#12245).
1662
1663 2012-09-23 Chong Yidong <cyd@gnu.org>
1664
1665 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
1666
1667 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1668
1669 * .gdbinit: Just stop at fatal_error_backtrace.
1670 See Stefan Monnier's request in
1671 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
1672 Remove no-longer-used query of system type.
1673
1674 2012-09-22 Chong Yidong <cyd@gnu.org>
1675
1676 * search.c (Freplace_match): Doc fix (Bug#12325).
1677
1678 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
1679
1680 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
1681 (Fline_end_position): Doc fix.
1682
1683 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
1684
1685 2012-09-22 Chong Yidong <cyd@gnu.org>
1686
1687 * dispextern.h (struct image_type): Add new slot, storing a type
1688 initialization function.
1689
1690 * image.c (define_image_type): Call the image initializer function
1691 if it is defined. Arguments and return value changed.
1692 (valid_image_p, make_image): Callers changed.
1693 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
1694 (gif_type, imagemagick_type, svg_type, gs_type):
1695 Add initialization functions.
1696 (Finit_image_library): Call lookup_image_type.
1697 (CHECK_LIB_AVAILABLE): Macro deleted.
1698 (lookup_image_type): Call define_image_type here, rather than via
1699 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
1700 (syms_of_image): Move define_image_type calls for xbm_type and
1701 pbm_type to lookup_image_type.
1702
1703 2012-09-22 Eli Zaretskii <eliz@gnu.org>
1704
1705 * keyboard.c (timer_check_2): Move calculation of 'timers' and
1706 'idle_timers' from here ...
1707 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
1708 lists, to avoid infloops when the timer does something stupid,
1709 like reinvoke itself with the same or smaller time-out.
1710 (Bug#12447)
1711
1712 2012-09-22 Martin Rudalics <rudalics@gmx.at>
1713
1714 * window.c (Fsplit_window_internal): Handle only Qt value of
1715 Vwindow_combination_limit separately.
1716 (Qtemp_buffer_resize): New symbol.
1717 (Vwindow_combination_limit): New default value.
1718 Rewrite doc-string.
1719
1720 2012-09-22 Eli Zaretskii <eliz@gnu.org>
1721
1722 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
1723 the new overlay string. (Bug#10159)
1724
1725 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
1726
1727 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
1728 or that fprintf is async-signal-safe. POSIX doesn't require
1729 either assumption.
1730
1731 2012-09-22 Chong Yidong <cyd@gnu.org>
1732
1733 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
1734 (Bug#8207).
1735
1736 2012-09-22 Kenichi Handa <handa@gnu.org>
1737
1738 * composite.c (composition_reseat_it): Handle the case that a
1739 grapheme cluster is not covered by a single font (Bug#12352).
1740
1741 2012-09-21 Chong Yidong <cyd@gnu.org>
1742
1743 * image.c (define_image_type): Avoid adding duplicate types to
1744 image_types (Bug#12463). Suggested by Jörg Walter.
1745
1746 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1747
1748 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
1749 (print_load_command_name): Add case LC_DATA_IN_CODE.
1750 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
1751
1752 2012-09-21 Glenn Morris <rgm@gnu.org>
1753
1754 * eval.c (Frun_hook_with_args_until_success)
1755 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
1756
1757 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
1758
1759 * fileio.c (Ffile_selinux_context): Only call freecon when
1760 lgetfilecon succeeded.
1761 (Fset_file_selinux_context): Likewise. (Bug#12444)
1762
1763 2012-09-21 Eli Zaretskii <eliz@gnu.org>
1764
1765 * xdisp.c (try_window_reusing_current_matrix): Under bidi
1766 reordering, locate the cursor by calling set_cursor_from_row; if
1767 that fails, clear the desired glyph matrix before returning a
1768 failure indication to the caller. Fixes leaving garbled display
1769 when fast scrolling with a down-key. (Bug#12403)
1770 (compute_stop_pos_backwards): Fix a typo that caused crashes while
1771 scrolling through multibyte text.
1772
1773 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
1774
1775 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
1776 calling mark_vectorlike since that's the one that marks the window.
1777 (mark_discard_killed_buffers): Mark the final cdr.
1778 * window.h (struct window): Move prev/next_buffers to the
1779 non-standard fields.
1780 * window.c (make_window): Initialize prev/next_buffers manually.
1781
1782 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
1783
1784 Omit unused arg EXPECTED from socket hooks.
1785 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
1786 * nsterm.m (ns_term_init):
1787 * termhooks.h (struct terminal.read_socket_hook):
1788 * w32inevt.c (w32_console_read_socket):
1789 * w32term.c (w32_read_socket):
1790 * xterm.c (XTread_socket):
1791 Omit unused arg EXPECTED. All callers changed.
1792 (store_user_signal_events): Return void, not int, since callers no
1793 longer care about the return value. All uses changed.
1794
1795 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
1796
1797 * w32gui.h (XParseGeometry): Do not declare.
1798
1799 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
1800
1801 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
1802 Ignore 'expected'. See Eli Zaretskii in
1803 <http://bugs.gnu.org/12471#8> (last line).
1804
1805 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
1806 (XParseGeometry): Now static. Substitute extremal values for
1807 values that are out of range.
1808
1809 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
1810
1811 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
1812
1813 * nsfns.m (XParseGeometry): Remove.
1814 (Fx_create_frame): Call x_set_offset to correctly interpret
1815 top_pos in geometry.
1816
1817 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
1818 (Fx_parse_geometry): If there is a space in string, call
1819 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
1820
1821 2012-09-17 Eli Zaretskii <eliz@gnu.org>
1822
1823 * search.c (scan_buffer): Use character positions in calls to
1824 region_cache_forward and region_cache_backward, not byte
1825 positions. (Bug#12196)
1826
1827 * w32term.c (w32_read_socket): Set pending_signals to 1, like
1828 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
1829
1830 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
1831 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
1832 emacs_blocked_malloc, now deleted.
1833
1834 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
1835
1836 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
1837 The workaround was for improving performance on Solaris 2.4, but
1838 is getting in the way now. Emacs will still work if someone is
1839 still running Solaris 2.4 in a museum somewhere; Sun dropped
1840 support for Solaris 2.4 in 2003.
1841 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
1842 * process.c (create_process) [HAVE_WORKING_VFORK]:
1843 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
1844 since Emacs no longer uses vfork on that platform.
1845
1846 2012-09-17 Glenn Morris <rgm@gnu.org>
1847
1848 * emacs.c: Use COPYRIGHT.
1849
1850 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
1851
1852 Remove configure's --without-sync-input option (Bug#12450).
1853 When auditing signal-handling in preparation for cleaning it up,
1854 I found that SYNC_INPUT has race conditions and would be a real
1855 pain to fix. Since it's an undocumented and deprecated
1856 configure-time option, now seems like a good time to remove it.
1857 Also see <http://bugs.gnu.org/11080#16>.
1858 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
1859 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
1860 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
1861 (malloc_hysteresis):
1862 (check_depth) [XMALLOC_OVERRUN_CHECK]:
1863 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
1864 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
1865 (dont_register_blocks, bytes_used_when_reconsidered)
1866 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
1867 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
1868 [!SYSTEM_MALLOC && !SYNC_INPUT]:
1869 Remove. All uses removed.
1870 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
1871 implementation, one that depends on whether the new macro
1872 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
1873 is defined.
1874 * atimer.c (run_timers, handle_alarm_signal):
1875 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
1876 (handle_async_input, process_pending_signals)
1877 (handle_input_available_signal, init_keyboard):
1878 * nsterm.m (ns_read_socket):
1879 * process.c (wait_reading_process_output):
1880 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
1881 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
1882 (emacs_write):
1883 * xterm.c (XTread_socket):
1884 Assume SYNC_INPUT.
1885 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
1886 * eval.c (handling_signal): Remove. All uses removed.
1887 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
1888 All uses replaced with the SYNC_INPUT version.
1889 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
1890 Remove decls.
1891 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1892 Now static.
1893
1894 * font.c (Ffont_shape_gstring): Remove unused local.
1895
1896 2012-09-16 Glenn Morris <rgm@gnu.org>
1897
1898 * Makefile.in (clean): No longer run nextstep's clean.
1899
1900 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
1901 (ns_frag): Remove.
1902 (ns-app): Move here from ns.mk, and simplify.
1903 (clean): Simplify nextstep entry.
1904 * ns.mk: Remove file.
1905
1906 2012-09-17 Kenichi Handa <handa@gnu.org>
1907
1908 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
1909 not covert the last few charactes.
1910
1911 2012-09-16 Kenichi Handa <handa@gnu.org>
1912
1913 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
1914 here, but just check the validity of glyphs in the glyph-string.
1915
1916 2012-09-16 Martin Rudalics <rudalics@gmx.at>
1917
1918 * window.c (Fwindow_parameter, Fset_window_parameter):
1919 Accept any window as argument (Bug#12452).
1920
1921 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
1922
1923 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
1924 to ns_term_init to avoid memory leak.
1925
1926 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
1927 explicit retain/release.
1928 (ns_term_init): Only allow one display. Initialize outerpool and
1929 ns_*_types.
1930
1931 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1932
1933 Port _setjmp fix to POSIXish hosts as well as Microsoft.
1934 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
1935 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
1936 the Microsoft problem in a different way, by altering ../nt/config.nt.
1937
1938 2012-09-15 Eli Zaretskii <eliz@gnu.org>
1939
1940 * w32xfns.c:
1941 * w32uniscribe.c:
1942 * w32term.c:
1943 * w32select.c:
1944 * w32reg.c:
1945 * w32proc.c:
1946 * w32menu.c:
1947 * w32inevt.c:
1948 * w32heap.c:
1949 * w32font.c:
1950 * w32fns.c:
1951 * w32console.c:
1952 * w32.c:
1953 * w16select.c: Remove inclusion of setjmp.h, as it is now included
1954 by lisp.h. This completes removal of setjmp.h inclusion
1955 erroneously announced in the previous commit. (Bug#12446)
1956
1957 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
1958 more accurate.
1959
1960 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
1961 not defined as a macro. The latter happens on MS-Windows.
1962 (Bug#12446)
1963
1964 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
1965
1966 Port better to POSIX hosts lacking _setjmp (Bug#12446).
1967 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
1968 Some instances of '#include <setjmp.h>' removed, if the
1969 only reason for the instance was because "lisp.h" was included.
1970 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
1971 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
1972 and _longjmp with the new symbols. Emacs already uses _setjmp if
1973 available, so this change affects only POSIXish hosts that have
1974 sigsetjmp but not _setjmp, such as some versions of Solaris and
1975 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
1976 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
1977 (png_load_body) [HAVE_PNG]:
1978 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
1979 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
1980 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
1981 since PNG requires jmp_buf. This is the only exception to the
1982 general rule that we now use sys_setjmp and sys_longjmp.
1983 This exception is OK since this code does not change the signal
1984 mask or longjmp out of a signal handler.
1985
1986 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
1987
1988 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
1989 Include "syssignal.h", for 'main_thread'.
1990
1991 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
1992
1993 Avoid out-of-range marker position (Bug#12426).
1994 * insdel.c (replace_range, replace_range_2):
1995 Adjust markers before overlays, as suggested by comments.
1996 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
1997 Remove redundant check before calling offset_intervals.
1998
1999 2012-09-14 Martin Rudalics <rudalics@gmx.at>
2000
2001 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
2002 current buffer (Bug#12387).
2003
2004 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
2005
2006 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
2007
2008 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2009
2010 Use a more backwards-compatible timer format (Bug#12430).
2011 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
2012 vector element, not from the 4th, since PSECS is now at the end.
2013 (Fcurrent_idle_time): Doc fix.
2014
2015 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
2016
2017 Function to mark objects and remove killed buffers at once.
2018 * alloc.c (discard_killed_buffers): Rename to ...
2019 (mark_discard_killed buffers) ... new name. Add marking
2020 of remaining objects. Fix comment. Adjust users.
2021 (mark_object): Do not touch frame buffer lists here.
2022 * frame.c (delete_frame): Reset frame buffer lists here.
2023
2024 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
2025
2026 Better workaround for GNOME bug when --enable-gcc-warnings.
2027 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
2028 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
2029 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
2030
2031 Simplify SIGIO usage (Bug#12408).
2032 The code that dealt with SIGIO was crufty and confusing, e.g., it
2033 played tricks like "#undef SIGIO" but these tricks were not used
2034 consistently. Simplify mostly by not #undeffing standard symbols,
2035 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
2036 or not as we please) rather than "defined SIGIO" (standard symbol
2037 that we probably shouldn't #undef).
2038 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
2039 Modules that need it can include it.
2040 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
2041 * dispextern.h (ignore_sigio): New decl.
2042 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
2043 unconditionally, since it's now a no-op if !USABLE_SIGIO.
2044 * emacs.c (shut_down_emacs):
2045 * keyboard.c (kbd_buffer_store_event_hold):
2046 Use ignore_sigio rather than invoking 'signal' directly.
2047 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
2048 for FIONREAD.
2049 (FIONREAD, SIGIO): Do not #undef.
2050 (tty_read_avail_input): Use #error rather than a syntax error.
2051 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
2052 for I_PIPE, used by SETUP_SLAVE_PTY.
2053 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
2054 * sysdep.c (croak): Remove; no longer needed. This bit of
2055 temporary code, with Fred N. Fish's comment that it's temporary,
2056 has been in Emacs since at least 1992!
2057 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
2058 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
2059 * syssignal.h (croak): Remove decl.
2060 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
2061 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
2062 now that we're termios-only.
2063 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
2064 * term.c (dissociate_if_controlling_tty): Use #error rather than
2065 a run-time error.
2066
2067 Work around GCC and GNOME bugs when --enable-gcc-warnings.
2068 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
2069 to work around GNOME bug 683906.
2070 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
2071 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
2072 This works around GCC bug 54561.
2073
2074 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
2075
2076 More fixes for 'volatile' and setjmp/longjmp.
2077 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
2078 * image.c (struct png_load_context) [HAVE_PNG]: New type.
2079 (png_load_body) [HAVE_PNG]:
2080 (jpeg_load_body) [HAVE_JPEG]:
2081 New function, with most of the old parent function's body.
2082 (png_load) [HAVE_PNG]:
2083 (jpeg_load) [HAVE_JPEG]:
2084 Invoke the new function, to avoid longjmp munging our locals.
2085 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
2086 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
2087 longjmp is passed 2, as the C standard doesn't guarantee this.
2088 Instead, store the failure code into mgr->failure_code.
2089
2090 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2091
2092 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
2093 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
2094 (syms_of_keyboard): Remove support for unread-command-char.
2095
2096 2012-09-12 Eli Zaretskii <eliz@gnu.org>
2097
2098 * w32proc.c (sys_kill): If PID is our process ID and the signal is
2099 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
2100 violation. (Bug#12426)
2101
2102 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
2103
2104 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
2105
2106 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
2107
2108 * eval.c: Add `inhibit-debugger'.
2109 (Qinhibit_debugger): New symbol.
2110 (call_debugger): Bind it instead of Qdebug_on_error.
2111 (maybe_call_debugger): Test Vinhibit_debugger.
2112 (syms_of_eval): Define inhibit-debugger.
2113 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
2114 (syms_of_xdisp): Remove inhibit-debug-on-message.
2115
2116 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
2117
2118 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
2119 If a nonvolatile local variable is written before a _longjmp to
2120 the frame containing the variable, and is read after the _longjmp,
2121 the value read is indeterminate. Some local variables of type
2122 'struct handler' and 'struct catchtag' are used in this way, so
2123 mark each of their slots as volatile if the slot can be set before
2124 _longjmp and read afterwards.
2125 * lisp.h (struct handler): var and chosen_clause are now volatile.
2126 (struct catchtag): val, next, and pdlcount are now volatile.
2127
2128 * bidi.c (bidi_push_it, bidi_pop_it):
2129 * fns.c (copy_hash_table):
2130 * image.c (define_image_type):
2131 * keyboard.c (kbd_buffer_store_event_hold):
2132 * process.c (Fprocess_send_eof):
2133 * xfaces.c (x_create_gc) [HAVE_NS]:
2134 * xgselect.c (xg_select):
2135 Prefer assignment to memcpy when either will do.
2136
2137 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
2138 Use pointer-to-a-pointer to simplify and avoid a NILP check each
2139 time an item is removed. No need to mark this function 'inline';
2140 the compiler knows better than we do.
2141
2142 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
2143
2144 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
2145 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
2146 to change_frame_size (Bug#12388).
2147 (windowDidResize:): Pass YES to updateFrameSize.
2148
2149 * nsterm.h: Add delay parameter to updateFrameSize.
2150
2151 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2152
2153 Discard killed buffers from deleted window and frame objects.
2154 This reduces an amount of references to killed buffers and
2155 helps GC to reclaim them faster.
2156 * alloc.c (discard_killed_buffers): New function.
2157 (mark_object): Use it for deleted windows and frames.
2158 (mark_object): If symbol's value is set up for a killed buffer
2159 or deleted frame, restore its global binding.
2160 * data.c (swap_in_global_binding): Add GC notice.
2161 (swap_in_symval_forwarding): Use convenient set_blv_where.
2162 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
2163 * window.h: ... to here.
2164
2165 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
2166
2167 Convenient macro to check whether the buffer is live.
2168 * buffer.h (BUFFER_LIVE_P): New macro.
2169 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
2170 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
2171
2172 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2173
2174 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
2175 composition cases (Bug#12364).
2176
2177 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
2178 overhang of succeeding glyphs overlapping box cursor.
2179
2180 * w32term.c (x_draw_glyph_string): Likewise.
2181
2182 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
2183
2184 Simplify, document, and port floating-point (Bug#12381).
2185 The porting part of this patch fixes bugs on non-IEEE platforms
2186 with frexp, ldexp, logb.
2187 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
2188 Now static.
2189 * floatfns.c: Simplify discussion of functions that Emacs doesn't
2190 support, by removing commented-out code and briefly listing the
2191 C89 functions excluded. The commented-out stuff was confusing
2192 maintenance, e.g., we thought we needed cbrt but it was commented out.
2193 (logb): Remove decl; no longer needed.
2194 (isfinite): New macro, if not already supplied.
2195 (isnan): Don't replace any existing macro.
2196 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
2197 are present on all C89 platforms.
2198 (Ffrexp): Do not special-case zero, as frexp does the right thing
2199 for that case.
2200 (Flogb): Do not use logb, as it doesn't have the desired meaning
2201 on hosts that use non-base-2 floating point. Instead, stick with
2202 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
2203 frexp, to avoid getting an unspecified result.
2204
2205 * xdisp.c (Qinhibit_debug_on_message): Now static.
2206
2207 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
2208
2209 * nsterm.m (ns_update_begin): Set clip path to whole view by using
2210 NSBezierPath (Bug#12131).
2211
2212 2012-09-10 Chong Yidong <cyd@gnu.org>
2213
2214 * fns.c (Fdelq, Fdelete): Doc fix.
2215
2216 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
2217
2218 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
2219 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
2220
2221 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
2222
2223 * lisp.h (make_lisp_ptr): New macro to replace XSET.
2224 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
2225 Use it.
2226
2227 2012-09-09 Eli Zaretskii <eliz@gnu.org>
2228
2229 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
2230 left fringe if the window has a left margin. This avoids leaving
2231 traces of the cursor because its leftmost pixel is not drawn over.
2232
2233 * dispnew.c (update_window_line): When the left margin area of a
2234 screen line is updated, set the redraw_fringe_bitmaps_p flag of
2235 that screen line. (Bug#12277)
2236
2237 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
2238
2239 Assume C89 or later for math functions (Bug#12381).
2240 This simplifies the code, and makes it a bit smaller and faster,
2241 and (most important) makes it easier to clean up signal handling
2242 since we can stop worring about floating-point exceptions in
2243 library code. That was a problem before C89, but the problem
2244 went away many years ago on all practical Emacs targets.
2245 * data.c, image.c, lread.c, print.c:
2246 Don't include <math.h>; no longer needed.
2247 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
2248 might be autoconfigured, as that never happens.
2249 * data.c (fmod):
2250 * doprnt.c (DBL_MAX_10_EXP):
2251 * print.c (DBL_DIG):
2252 Remove. C89 or later always defines these.
2253 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
2254 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
2255 (arith_error, domain_error, domain_error2):
2256 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
2257 no longer needed -- we simply return what C returns. All uses removed.
2258 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
2259 the wrapped code.
2260 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
2261 Remove. All uses expanded, as these macros are no longer used
2262 more than once and are now more trouble than they're worth.
2263 (Ftan): Use tan, not sin / cos.
2264 (Flogb): Assume C89 frexp.
2265 (fmod_float): Assume C89 fmod.
2266 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
2267 (init_floatfns): Remove. All uses removed.
2268
2269 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2270
2271 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
2272 compositeToPoint for OSX < 10.6 (Bug#12390).
2273
2274 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
2275
2276 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
2277 This produces more-accurate results.
2278
2279 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2280
2281 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
2282 changes (Bug#12088).
2283
2284 2012-09-08 Chong Yidong <cyd@gnu.org>
2285
2286 * syntax.c (Fstring_to_syntax): Doc fix.
2287
2288 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
2289
2290 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
2291 in the internal border.
2292 (x_set_window_size): Remove static variables and their usage.
2293 (ns_redraw_scroll_bars): Fix NSTRACE arg.
2294 (ns_after_update_window_line, ns_draw_fringe_bitmap):
2295 Remove fringe/internal border adjustment (Bug#11052).
2296 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
2297 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
2298 (ns_fix_rect_ibw): Remove.
2299 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
2300 (ns_dumpglyphs_box_or_relief): Ditto.
2301 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
2302 adjustment.
2303 (ns_dumpglyphs_image): Ditto.
2304 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
2305 border adjustment.
2306 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
2307 their usage. Add fringe_extended_p and its use as in other terms.
2308 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
2309 scroll bar was removed.
2310 (updateFrameSize): New function.
2311 (windowDidResize): Move code to updateFrameSize and call it.
2312
2313 * nsterm.h (EmacsView): Add updateFrameSize.
2314
2315 2012-09-07 Chong Yidong <cyd@gnu.org>
2316
2317 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
2318
2319 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
2320
2321 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
2322
2323 More signal-handler cleanup (Bug#12327).
2324 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
2325 Problem introduced when merging patches. Noted by Eli Zaretskii in
2326 <http://bugs.gnu.org/12327#67>.
2327 * floatfns.c: Comment fix.
2328 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
2329 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
2330 and anyway the declaration is harmless even if SIGDANGER is not defined.
2331 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
2332 defined BROKEN_FIONREAD). systty.h formerly did this, but other
2333 source files not surprisingly expected syssignal.h to define, or
2334 not define, SIGIO, and it's cleaner to do it that way, for consistency.
2335 Include <sys/ioctl.h>, for FIONREAD.
2336 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
2337 This eliminates a problem whereby other files mysteriously had
2338 to include "syssignal.h" before including "systty.h" if they
2339 wanted to use "#ifdef SIGIO".
2340
2341 2012-09-07 Eli Zaretskii <eliz@gnu.org>
2342
2343 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
2344
2345 * w32.c (sigemptyset): Empty the set.
2346 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
2347
2348 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
2349
2350 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
2351
2352 * alloc.c (mark_buffer): Revert unsafe marking optimization.
2353 (mark_object): Likewise for frame objects.
2354
2355 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
2356
2357 * syssignal.h (handle_on_main_thread): Always declare,
2358 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
2359 This ports to platforms without HAVE_PTHREAD.
2360
2361 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
2362
2363 Signal-handler cleanup (Bug#12327).
2364 Emacs's signal handlers were written in the old 4.2BSD style with
2365 sigblock and sigmask and so forth, and this led to some
2366 inefficiencies and confusion. Rewrite these to use
2367 pthread_sigmask etc. without copying signal sets around. Also,
2368 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
2369 'signal', and instead use functions that do not attempt to take
2370 over the system name space. This patch causes Emacs's text
2371 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
2372 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
2373 Do not include <signal.h> or "syssignal.h", as these
2374 modules do not use signals.
2375 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
2376 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
2377 Do not include <signal.h>, as "syssignal.h" does that for us now.
2378 * atimer.c (sigmask_atimers): New function.
2379 (block_atimers, unblock_atimers): New functions,
2380 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
2381 All uses replaced.
2382 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
2383 no longer needed here.
2384 * emacs.c (main): Inspect existing signal handler with sigaction,
2385 so that there's no need to block and unblock SIGHUP.
2386 * sysdep.c (struct save_signal): New member 'action', replacing
2387 old member 'handler'.
2388 (save_signal_handlers, restore_signal_handlers):
2389 Use sigaction instead of 'signal' to save and restore.
2390 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
2391 New function. All users of 'signal' modified to use set_sighandler
2392 if they're writeonly, and to use sys_signal if they're read+write.
2393 (emacs_sigaction_init, forwarded_signal): New functions.
2394 (sys_signal): Remove. All uses replaced by calls to sigaction
2395 and emacs_sigaction_init, or by direct calls to 'signal'.
2396 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
2397 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
2398 all uses replaced by pthread_sigmask etc. calls.
2399 * syssignal.h: Include <signal.h>.
2400 (emacs_sigaction_init, forwarded_signal): New decls.
2401 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
2402 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
2403 (sigmask, sys_sigmask): Remove; no longer needed.
2404 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
2405 (sigblock, sigunblock, sigfree):
2406 (sigsetmask) [!defined sigsetmask]:
2407 Remove. All uses replaced by pthread_sigmask.
2408 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
2409 no longer need to be replaced, and its typical old uses
2410 are now done via emacs_sigaction_init and sigaction.
2411 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
2412 (sys_sigdel): Remove; unused.
2413 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
2414
2415 2012-09-06 Eli Zaretskii <eliz@gnu.org>
2416
2417 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
2418 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
2419
2420 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
2421
2422 Explicitly mark buffer_defaults and buffer_local_symbols.
2423 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
2424 mark_local_symbols here.
2425 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
2426 since special buffers aren't marked here any more.
2427 (allocate_buffer): Chain new buffer with all_buffers here...
2428 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
2429 not here.
2430 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
2431 (syms_of_buffer): Remove staticpro of the above.
2432 (init_buffer_once): Set names for buffer_defaults and
2433 buffer_local_symbols.
2434
2435 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
2436
2437 Use bool for booleans in font-related modules.
2438 * font.c (font_intern_prop, font_style_to_value)
2439 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
2440 (generate_otf_features, font_check_otf_features, font_check_otf)
2441 (font_match_p, font_list_entities, font_at):
2442 * fontset.c (fontset_id_valid_p, reorder_font_vector
2443 (fontset_find_font, Fset_fontset_font)
2444 (face_suitable_for_char_p) [0]:
2445 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
2446 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
2447 (m17n_flt_initialized, ftfont_shape_by_flt):
2448 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
2449 * nsfont.m (nsfont_draw):
2450 * w32font.c (w32font_draw):
2451 * w32term.c (x_draw_glyphless_glyph_string_foreground):
2452 Use bool for booleans.
2453 * font.h: Adjust to above API changes.
2454 (struct font, struct font_driver, struct font_driver_list):
2455 Use bool for booleans.
2456 (struct font): Remove useless member encoding_type.
2457 All users removed.
2458 * fontset.c, xftfont.c: Omit unnecessary static decls.
2459
2460 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
2461
2462 * alloc.c (mark_object): Revert window marking code
2463 since it's unsafe for the Fset_window_configuration.
2464
2465 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
2466
2467 Fix race conditions with signal handlers and errno (Bug#12327).
2468 Be more systematic about preserving errno whenever a signal
2469 handler returns, even if it's not in the main thread. Do this by
2470 renaming signal handlers to distinguish between signal delivery
2471 and signal handling. All uses changed.
2472 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
2473 * data.c (deliver_arith_signal): Rename from arith_error.
2474 * dispnew.c (deliver_window_change_signal): Rename from
2475 window_change_signal.
2476 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
2477 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
2478 * keyboard.c (deliver_input_available_signal): Rename from
2479 input_available_signal.
2480 (deliver_user_signal): Rename from handle_user_signal.
2481 (deliver_interrupt_signal): Rename from interrupt_signal.
2482 * process.c (deliver_pipe_signal): Rename from send_process_trap.
2483 (deliver_child_signal): Rename from sigchld_handler.
2484 * atimer.c (handle_alarm_signal):
2485 * data.c (handle_arith_signal):
2486 * dispnew.c (handle_window_change_signal):
2487 * emacs.c (handle_fatal_signal, handle_danger_signal):
2488 * keyboard.c (handle_input_available_signal):
2489 * keyboard.c (handle_user_signal, handle_interrupt_signal):
2490 * process.c (handle_pipe_signal, handle_child_signal):
2491 New functions, with the actual signal-handling code taken from the
2492 original respective signal handlers, sans the sporadic attempts to
2493 preserve errno, since that's now done by handle_on_main_thread.
2494 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
2495 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
2496 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2497 Move to sysdep.c.
2498 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2499 Move initialization of main_thread to sysdep.c's init_signals.
2500 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
2501 our usage, and simplifies the mainline code.
2502 (record_child_status_change): New static function, as a helper
2503 for handle_child_signal, and with most of the old child handler's
2504 contents.
2505 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
2506 (handle_child_signal): Use the above.
2507 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
2508 Moved here from emacs.c.
2509 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
2510 code moved here from emacs.c's main function.
2511 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
2512 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
2513 This lets callers save and restore errno properly.
2514
2515 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2516
2517 Remove redundant or unused things here and there.
2518 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
2519 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
2520 * editfns.c (Fcompare_buffer_substrings): Likewise.
2521 * frame.h (struct terminal, struct font_driver_list):
2522 Remove redundant declarations.
2523 * window.h (Qleft, Qright): Likewise.
2524
2525 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2526
2527 Do not mark objects from deleted buffers, windows and frames.
2528 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
2529 (mark_object): Likewise for windows and frames.
2530
2531 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
2532
2533 * alloc.c (valid_lisp_object_p): Treat killed buffers,
2534 buffer_defaults and buffer_local_symbols as valid objects.
2535 Return special value to denote them.
2536
2537 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
2538
2539 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
2540 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
2541 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
2542 (file_name_absolute_p, Fsubstitute_in_file_name):
2543 (check_executable, check_writable, Ffile_accessible_directory_p)
2544 (Fset_file_selinux_context, Fdefault_file_modes)
2545 (Finsert_file_contents, choose_write_coding_system)
2546 (Fwrite_region, build_annotations, a_write, e_write)
2547 (Fdo_auto_save):
2548 * filelock.c (boot_time_initialized, get_boot_time)
2549 (get_boot_time_1, lock_file_1, within_one_second):
2550 * floatfns.c (in_float):
2551 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
2552 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
2553 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
2554 * lisp.h (struct Lisp_Hash_Table.cmpfn):
2555 * window.c (compare_window_configurations):
2556 Use bool for booleans.
2557 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
2558 (Fdefault_file_modes): Now mode_t, not int, for modes.
2559 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
2560 (internal_delete_file): Now returns void, not a (boolean) int,
2561 since nobody was looking at the return value.
2562 * lisp.h, window.h: Adjust to above API changes.
2563
2564 * xdisp.c (set_message): Simplify and reindent last change.
2565
2566 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
2567
2568 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
2569
2570 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
2571
2572 * eval.c (call_debugger): Make the function non-static so that we
2573 can call it from set_message.
2574
2575 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
2576 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
2577
2578 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2579
2580 Give more-useful info on a fatal error (Bug#12328).
2581 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
2582 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
2583 of doing the work ourselves.
2584 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
2585 do most of the work.
2586 (fatal_error_backtrace): New function, taken from the guts
2587 of the old fatal_error_signal, but with a new option to output
2588 a backtrace.
2589 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
2590 info about the signal than just its number.
2591 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
2592 * sysdep.c: Include <execinfo.h>
2593 (emacs_backtrace): New function, taken partly from the previous
2594 code of the 'die' function.
2595 (emacs_abort): Call fatal_error_backtrace rather than abort.
2596
2597 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
2598
2599 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
2600 eager (load-time) macro-expansion.
2601 * lisp.mk (lisp): Add macroexp.
2602
2603 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2604
2605 Simplify redefinition of 'abort' (Bug#12316).
2606 Do not try to redefine the 'abort' function. Instead, redo
2607 the code so that it calls 'emacs_abort' rather than 'abort'.
2608 This removes the need for the NO_ABORT configure-time macro
2609 and makes it easier to change the abort code to do a backtrace.
2610 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
2611 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
2612 Remove; sysdep.c's emacs_abort now takes its place.
2613 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
2614 'abort' changed to use 'emacs_abort'.
2615 * msdos.c (dos_abort) [defined abort]: Remove; not used.
2616 (abort) [!defined abort]: Rename to ...
2617 (emacs_abort): ... new name.
2618 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
2619 the place of the old 'abort' in emacs.c.
2620 * w32.c, w32fns.c (abort): Do not #undef.
2621 * w32.c (emacs_abort): Rename from w32_abort.
2622
2623 2012-09-04 Eli Zaretskii <eliz@gnu.org>
2624
2625 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
2626 offsets[j].dv, since the y axis of the screen coordinates points
2627 down, while the y axis of the font definition coordinates points
2628 up. This fixes display of Arabic diacritics such as KASRA and
2629 KASRATAN. (Bug#11860)
2630
2631 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
2632
2633 Be more systematic about _setjmp vs setjmp.
2634 * alloc.c (test_setjmp, mark_stack):
2635 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
2636 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
2637 (png_load, my_error_exit, jpeg_load):
2638 * process.c (send_process_trap, send_process):
2639 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
2640 The underscored versions are up to 30x faster on some hosts.
2641 Formerly, the code used setjmp+longjmp sometimes and
2642 _setjmp+_longjmp at other times, with no particular reason to
2643 prefer setjmp+longjmp.
2644
2645 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
2646
2647 Fix minor problem found by static checking.
2648 * buffer.c (Fdelete_all_overlays): Return nil.
2649
2650 2012-09-03 Martin Rudalics <rudalics@gmx.at>
2651
2652 * buffer.c (Fdelete_all_overlays): New function.
2653
2654 2012-09-03 Chong Yidong <cyd@gnu.org>
2655
2656 * gtkutil.c: Add extern decl for Qxft.
2657
2658 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
2659
2660 * emacs.c, eval.c: Use bool for boolean.
2661 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
2662 (malloc_using_checking) [DOUG_LEA_MALLOC]:
2663 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
2664 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
2665 (main, decode_env_path, Fdaemon_initialized):
2666 * eval.c (call_debugger, Finteractive_p, interactive_p):
2667 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
2668 (maybe_call_debugger, Fbacktrace):
2669 * process.c (read_process_output, exec_sentinel):
2670 Use bool for booleans.
2671 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
2672 All callers changed.
2673 * eval.c (interactive_p): Omit always-true boolean argument
2674 EXCLUDE_SUBRS_P. All callers changed.
2675 * dispextern.h, lisp.h: Reflect above API changes.
2676 * firstfile.c (dummy): Use the address of 'main', whose signature
2677 won't change, instead of the address of 'initialize', whose
2678 signature just changed from int to bool.
2679 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
2680 * msdos.c (fatal_error_in_progress): ... from here.
2681 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
2682 of incrementing it.
2683 (redisplay_internal, unwind_redisplay): Simply clear
2684 REDISPLAYING_P when unwinding, instead of saving its previous,
2685 always-false value and then restoring it.
2686
2687 Clean up some extern decls.
2688 Mostly, this hoists extern decls out of .c files and into .h files.
2689 That way, we're more likely to catch errors if the interfaces change.
2690 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
2691 declare xg_mark_data.
2692 * dispextern.h (x_frame_parm_handlers):
2693 * font.h (Qxft):
2694 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
2695 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
2696 (Qultra_bold, Qoblique, Qitalic):
2697 Move extern decl here from .c file.
2698 * alloc.c (xg_mark_data) [USE_GTK]:
2699 * doc.c (Qclosure):
2700 * eval.c (Qlexical_binding):
2701 * fns.c (time) [!HAVE_UNISTD_H]:
2702 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
2703 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
2704 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
2705 * lread.c (Qinternal_interpreter_environment):
2706 * minibuf.c (Qbuffer):
2707 * process.c (QCfamily, QCfilter):
2708 * widget.c (free_frame_faces):
2709 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
2710 * xfont.c (x_clear_errors):
2711 * xterm.c (x_frame_parm_handlers):
2712 Remove now-redundant extern decls.
2713 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
2714 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
2715 Now static.
2716 * xfaces.c: Remove unnecessary static decls.
2717 * xterm.c (updating_frame): Remove decl of nonexistent object.
2718
2719 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
2720 when building globals.h, as the objects that are not built on
2721 this host are not needed to compile C files on this host.
2722
2723 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
2724
2725 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
2726
2727 * frame.h: Add missing prototype for x_wm_set_size_hint.
2728
2729 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
2730
2731 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
2732 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
2733 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
2734 (Fsubstitute_command_keys):
2735 * editfns.c (region_limit, find_field, Fconstrain_to_field)
2736 (save_excursion_save, save_excursion_restore)
2737 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
2738 (format_time_string, general_insert_function)
2739 (make_buffer_string, make_buffer_string_both)
2740 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
2741 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
2742 (copy_text, insert_1, insert_1_both, insert_from_string)
2743 (insert_from_string_before_markers, insert_from_string_1)
2744 (insert_from_buffer, insert_from_buffer_1, replace_range)
2745 (replace_range_2, del_range_1, del_range_byte, del_range_both)
2746 (del_range_2, modify_region):
2747 * intervals.c (intervals_equal, balance_possible_root_interval)
2748 (adjust_intervals_for_insertion, merge_properties_sticky)
2749 (graft_intervals_into_buffer, lookup_char_property)
2750 (adjust_for_invis_intang, set_point_both)
2751 (get_property_and_range, compare_string_intervals)
2752 (set_intervals_multibyte_1, set_intervals_multibyte):
2753 * keyboard.c (decode_timer):
2754 Use bool for boolean.
2755 * intervals.h, lisp.h, systime.h: Reflect above API changes.
2756 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
2757
2758 2012-09-02 Chong Yidong <cyd@gnu.org>
2759
2760 * keymap.c (push_key_description): Print M-TAB as C-M-i
2761 (Bug#11758).
2762
2763 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
2764
2765 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
2766 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
2767 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
2768 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
2769 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
2770 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
2771 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
2772
2773 2012-09-01 Eli Zaretskii <eliz@gnu.org>
2774
2775 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
2776 more than one grapheme cluster passed to the shaper: compute the
2777 offset adjustment values separately for each cluster. (Bug#11860)
2778
2779 * image.c: Restore mistakenly removed inclusion of w32.h. Without
2780 it, GCC doesn't see prototypes of w32_delayed_load, and complains
2781 about implicit conversions from integer to pointer.
2782
2783 2012-09-01 Daniel Colascione <dancol@dancol.org>
2784
2785 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
2786 system used too early.
2787
2788 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
2789
2790 Better seed support for (random).
2791 * emacs.c (main): Call init_random.
2792 * fns.c (Frandom): Set the seed from a string argument, if given.
2793 Remove long-obsolete Gentzel cruft.
2794 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
2795 (init_random): New function.
2796
2797 2012-09-01 Daniel Colascione <dancol@dancol.org>
2798
2799 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
2800 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
2801 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
2802 x_wm_set_size_hint, x_query_colors, x_real_positions,
2803 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
2804 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
2805 all of which have been moved to common code.
2806
2807 * xfaces.c: Include TERM_HEADER instead of listing all possible
2808 window-system headers.
2809
2810 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
2811 to match header.
2812
2813 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
2814 directly accessing frame internals.
2815
2816 * w32font.h: Include font.h. Define syms_of_w32font and
2817 globals_of_w32font.
2818
2819 * process.c: Include TERM_HEADER instead of listing all possible
2820 window-system headers.
2821
2822 * nsterm.h: Remove declarations now in frame.h.
2823 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
2824
2825 * menu.c: Include TERM_HEADER instead of listing all possible
2826 window-system headers.
2827
2828 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
2829 window system.
2830
2831 * keyboard.c: Include TERM_HEADER instead of listing all possible
2832 window-system headers.
2833
2834 * image.c: Include TERM_HEADER instead of listing all possible
2835 window-system headers. Declare Vlibrary_cache when compiling for
2836 Windows.
2837
2838 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
2839 window system declarations.
2840
2841 * frame.h: Move common functions here: set_frame_menubar,
2842 x_set_window_size, x_sync, x_get_focus_frame,
2843 x_set_mouse_position, x_set_mouse_pixel_position,
2844 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
2845 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
2846 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
2847 x_activate_menubar, x_real_positions, x_bitmap_icon,
2848 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
2849 and x_query_colors.
2850
2851 * frame.c: Include TERM_HEADER instead of listing all possible
2852 window-system headers.
2853
2854 * font.c: Include TERM_HEADER instead of listing all possible
2855 window-system headers.
2856
2857 * emacs.c: Include TERM_HEADER.
2858
2859 * dispnew.c: Include TERM_HEADER instead of listing all possible
2860 window-system headers.
2861
2862 * ccl.h: Include character.h.
2863
2864 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
2865 the current window system; include in list of objects to link into
2866 Emacs.
2867
2868 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2869
2870 Remove mark_ttys function and fix tty_display_info initialization.
2871 * lisp.h (mark_ttys): Remove prototype.
2872 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
2873 to mark_ttys because all possible values of 'top_frame' slot are
2874 the frames which are reachable from Vframe_list.
2875 * term.c (mark_ttys): Remove.
2876 (init_tty): Safely initialize 'top_frame' slot with Qnil.
2877
2878 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2879
2880 Change struct frame bitfields from unsigned char to unsigned.
2881 * frame.h (struct frame): Change type of 'display_preempted',
2882 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
2883 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
2884 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
2885 bitfields from unsigned char to unsigned.
2886
2887 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
2888
2889 Remove unused member of struct x_output and struct w32_output.
2890 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
2891 * w32term.h (struct w32_output): Likewise.
2892
2893 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
2894
2895 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
2896 does not become zero (Bug#12234).
2897
2898 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
2899
2900 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
2901 for GCC 4.7.1 x86-64.
2902
2903 2012-08-30 Glenn Morris <rgm@gnu.org>
2904
2905 * lread.c (init_lread): For out-of-tree builds, only add the
2906 source directory's site-lisp dir to the load-path if it exists,
2907 consistent with in-tree builds. (Bug#12302)
2908
2909 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
2910
2911 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
2912 button_values to NULL. Call setStykeMask so dialogs get a close button.
2913 (windowShouldClose:): Set window_closed.
2914 (dealloc): New member, free button_values.
2915 (process_dialog:): Make member function. Remove window argument,
2916 replace window with self. Count buttons and allocate and store values
2917 in button_values.
2918 (addButton:value:row:): value is int with the name tag. Call setTag
2919 with tag. Remove return self, declare return value as void.
2920 (addString:row:): Remove return self, declare return value as void.
2921 (addSplit): Remove return self, declare return value as void.
2922 (clicked:): Remove return self, declare return value as void.
2923 Set dialog_return to button_values[seltag]. Code formatting change.
2924 (initFromContents:isQuestion:): Adjust call to process_dialog.
2925 Code formatting change.
2926 (timeout_handler:): Set timer_fired to YES.
2927 (runDialogAt:): Set timer_fired to NO.
2928 Handle click on close button as quit.
2929
2930 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
2931 Add window_closed and button_values. Add void as return value for
2932 add(Button|String|Split). addButton takes int instead of Lisp_Object.
2933 Add process_dialog as new member.
2934
2935 2012-08-28 Eli Zaretskii <eliz@gnu.org>
2936
2937 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
2938 is not one of the heaps we manage. (Bug#12242)
2939
2940 2012-08-28 Glenn Morris <rgm@gnu.org>
2941
2942 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
2943
2944 2012-08-28 Martin Rudalics <rudalics@gmx.at>
2945
2946 * window.c (Fset_window_configuration): Remove handling of
2947 auto-buffer-name window parameter. Install revision of reverted
2948 fix.
2949
2950 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2951
2952 Do not allow to set major mode for a dead buffer.
2953 * buffer.c (Fset_buffer_major_mode): Signal an error
2954 if the buffer is dead.
2955 (Fother_buffer, other_buffer_safely): Remove redundant
2956 nested declaration.
2957
2958 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2959
2960 Always use set_buffer_if_live to restore original buffer at unwind.
2961 * buffer.h (record_unwind_current_buffer): New function.
2962 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
2963 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
2964 * undo.c, window.c: Adjust users.
2965 * buffer.c (set_buffer_if_live): Fix comment.
2966
2967 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
2968
2969 Fix usage of set_buffer_internal.
2970 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
2971 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
2972 * coding.c (decode_coding): Omit redundant test.
2973 * fileio.c (decide_coding_unwind): Likewise.
2974 * fns.c (secure_hash): Likewise.
2975 * insdel.c (modify_region): Likewise.
2976 * keyboard.c (command_loop_1): Likewise.
2977 * print.c (PRINTFINISH): Likewise.
2978 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
2979
2980 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
2981
2982 * dispnew.c: Use bool for boolean.
2983 (frame_garbaged, display_completed, delayed_size_change)
2984 (fonts_changed_p, add_window_display_history)
2985 (add_frame_display_history, verify_row_hash)
2986 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
2987 (row_equal_p, realloc_glyph_pool)
2988 (allocate_matrices_for_frame_redisplay)
2989 (showing_window_margins_p)
2990 (adjust_frame_glyphs_for_frame_redisplay)
2991 (build_frame_matrix_from_leaf_window, make_current)
2992 (mirrored_line_dance, mirror_line_dance, update_frame)
2993 (update_window_tree, update_single_window)
2994 (check_current_matrix_flags, update_window, update_text_area)
2995 (update_window_line, set_window_update_flags, scrolling_window)
2996 (update_frame_1, scrolling, buffer_posn_from_coords)
2997 (do_pending_window_change, change_frame_size)
2998 (change_frame_size_1, sit_for):
2999 Use bool for boolean.
3000 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
3001 and remove last int (actually boolean) argument, which was always 0.
3002 All callers changed.
3003 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
3004 * dispextern.h (struct composition_it): Use bool for boolean.
3005 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
3006 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
3007 * dired.c (file_name_completion):
3008 Use bool for boolean. (This was missed in an earlier change.)
3009
3010 2012-08-27 Martin Rudalics <rudalics@gmx.at>
3011
3012 * window.c (Fset_window_configuration): Revert first part of
3013 last change.
3014
3015 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
3016
3017 * nsterm.h (NSPanel): New class variable dialog_return.
3018
3019 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
3020 Initialize dialog_return.
3021 (windowShouldClose:): Use stop instead of stopModalWithCode.
3022 (clicked:): Ditto, and also set dialog_return (Bug#12258).
3023 (timeout_handler:): Use stop instead of abortModal. Send a dummy
3024 event.
3025 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
3026 modal loop returns.
3027
3028 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
3029
3030 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
3031 * composite.c (find_composition, composition_gstring_p)
3032 (composition_reseat_it, find_automatic_composition):
3033 * data.c (let_shadows_buffer_binding_p)
3034 (let_shadows_global_binding_p, set_internal, make_blv)
3035 (Fmake_variable_buffer_local, Fmake_local_variable)
3036 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
3037 (cons_to_signed, arith_driver):
3038 * dbusbind.c (xd_in_read_queued_messages):
3039 * dired.c (directory_files_internal, file_name_completion):
3040 Use bool for booleans.
3041 * dired.c (file_name_completion):
3042 * process.h (fd_callback):
3043 Omit int (actually boolean) argument. It wasn't being used.
3044 All uses changed.
3045 * composite.h, lisp.h: Reflect above API changes.
3046
3047 * cmds.c, coding.c: Use bool for booleans.
3048 * cmds.c (move_point, Fself_insert_command):
3049 * coding.h (struct composition status, struct coding_system):
3050 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
3051 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
3052 (emacs_mule_char, decode_coding_emacs_mule)
3053 (encode_coding_emacs_mule, detect_coding_iso_2022)
3054 (decode_coding_iso_2022, encode_invocation_designation)
3055 (encode_designation_at_bol, encode_coding_iso_2022)
3056 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
3057 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
3058 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
3059 (encode_coding_raw_text, detect_coding_charset)
3060 (decode_coding_charset, encode_coding_charset, detect_eol)
3061 (detect_coding, get_translation_table, produce_chars)
3062 (consume_chars, reused_workbuf_in_use)
3063 (make_conversion_work_buffer, code_conversion_save)
3064 (decode_coding_object, encode_coding_object)
3065 (detect_coding_system, char_encodable_p)
3066 (Funencodable_char_position, code_convert_region)
3067 (code_convert_string, code_convert_string_norecord)
3068 (Fset_coding_system_priority):
3069 * fileio.c (Finsert_file_contents):
3070 Use bool for booleans.
3071 * coding.h, lisp.h: Reflect above API changes.
3072 * coding.c: Remove unnecessary static function decls.
3073 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
3074 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
3075 not a boolean 'int', since callers never look at the return value.
3076 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
3077 * coding.h (decoding_buffer_size, encoding_buffer_size)
3078 (emacs_mule_string_char): Remove unused extern decls.
3079 (struct iso_2022_spec, struct coding_system):
3080 Use 'unsigned int : 1' for boolean fields, since there's more than one.
3081 (struct emacs_mule_spec): Remove unused field 'full_support'.
3082 All initializations removed.
3083 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
3084
3085 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
3086
3087 Fix spare memory change (Bug#12286).
3088 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
3089 (valid_lisp_object_p): Likewise.
3090
3091 2012-08-27 Martin Rudalics <rudalics@gmx.at>
3092
3093 * window.c (Fset_window_configuration): Record any window's old
3094 buffer if it's replaced (see Bug#8789). If the new current
3095 buffer doesn't appear in the selected window, go to its old
3096 point (Bug#12208).
3097
3098 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
3099
3100 Special MEM_TYPE_SPARE to denote reserved memory.
3101 * alloc.c (enum mem_type): New memory type.
3102 (refill_memory_reserve): Use new type for spare memory.
3103 This prevents live_cons_p and live_string_p from incorrect
3104 detection of uninitialized objects from spare memory as live.
3105
3106 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
3107
3108 Spelling fixes.
3109 * Makefile.in (.PHONY): versioclean -> versionclean.
3110
3111 Remove unused external symbols.
3112 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
3113 * window.c (Qwindow_valid_p, decode_valid_window):
3114 Now static, not extern.
3115 * data.c (Qinterval): Remove; unused.
3116 (syms_of_data): Do not define 'interval'.
3117 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
3118 * window.h (decode_valid_window):
3119 Remove decls.
3120
3121 * character.c, charset.c, chartab.c: Use bool for booleans.
3122 * character.c (lisp_string_width, string_count_byte8)
3123 (string_escape_byte8):
3124 * charset.c (charset_map_loaded, load_charset_map, read_hex):
3125 (load_charset_map_from_file, map_charset_chars)
3126 (Fdefine_charset_internal, define_charset_internal)
3127 (Fdeclare_equiv_charset, find_charsets_in_text)
3128 (Ffind_charset_region, char_charset, Fiso_charset):
3129 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
3130 (sub_char_table_set, sub_char_table_set_range)
3131 (char_table_set_range, optimize_sub_char_table)
3132 (map_sub_char_table):
3133 Use bool for boolean.
3134 * character.c (str_to_unibyte): Omit last boolean argument; it was
3135 always 0. All callers changed.
3136 * character.h, charset.h: Adjust to match previous changes.
3137 * character.h (char_printable_p): Remove decl of nonexistent function.
3138 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
3139 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
3140 are all boolean, so make them single-bit bitfields.
3141
3142 * lisp.h (ASET): Remove attempt to detect side effects.
3143 It was meant to be temporary and it often doesn't work,
3144 because when IDX has side effects the behavior of IDX==IDX
3145 is undefined. See Stefan Monnier in
3146 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
3147
3148 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
3149
3150 * lisp.h (functionp): New function (extracted from Ffunctionp).
3151 (FUNCTIONP): Use it.
3152 * eval.c (Ffunctionp): Use it.
3153
3154 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
3155
3156 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
3157 as that's faster and simpler than static storage. Don't bother
3158 with the g_main_context_query overhead if g_main_context_pending
3159 says no events are pending.
3160 (gfds, gfds_size): Remove these static vars.
3161 (xgselect_initialize): Remove; no longer needed.
3162 All uses and decls removed.
3163
3164 * emacs.c (fatal_error_signal_hook): Remove.
3165 All uses removed. This leftover from old code was always 0.
3166
3167 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
3168 * casefiddle.c (casify_object, casify_region):
3169 * casetab.c (set_case_table):
3170 * category.c, category.h (word_boundary_p):
3171 * category.h (CHAR_HAS_CATEGORY):
3172 Use bool for booleans, instead of int.
3173
3174 2012-08-25 Eli Zaretskii <eliz@gnu.org>
3175
3176 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
3177
3178 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
3179
3180 On assertion failure, print backtrace if available.
3181 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
3182 (die) [ENABLE_CHECKING]: Print a backtrace if available.
3183 * Makefile.in (LIB_EXECINFO): New macro.
3184 (LIBES): Use it.
3185
3186 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
3187 * bytecode.c (exec_byte_code):
3188 * callint.c (check_mark, Fcall_interactively):
3189 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
3190 (getenv_internal, sync_process_alive, call_process_exited):
3191 * lisp.h (USE_SAFE_ALLOCA):
3192 Use bool for booleans, instead of int.
3193 * lisp.h, process.h: Adjust prototypes to match above changes.
3194 * callint.c (Fcall_interactively): Don't assume the mark's
3195 offset fits in 'int'.
3196
3197 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
3198
3199 * buffer.c, buffer.h: Use bool for boolean.
3200 * buffer.c (reset_buffer_local_variables)
3201 (buffer_lisp_local_variables, Fset_buffer_modified_p)
3202 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
3203 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
3204 (overlay_touches_p, overlay_strings, Foverlay_put)
3205 (report_overlay_modification, call_overlay_mod_hooks):
3206 (mmap_enlarge, mmap_set_vars):
3207 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
3208 Use bool for booleans, instead of int.
3209 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
3210 since the 1-or-0 return value is always ignored anyway.
3211 (mmap_initialized_p):
3212 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
3213 * buffer.h, lisp.h: Adjust prototypes to match above changes.
3214
3215 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3216
3217 * bidi.c: Use bool for boolean.
3218 This is a bit more readable, and makes the text segment of bidi.o
3219 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
3220 Presumably it's faster too.
3221 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
3222 Now bool.
3223 (bidi_cache_find_level_change, bidi_cache_iterator_state)
3224 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
3225 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
3226 (bidi_explicit_dir_char, bidi_level_of_next_char)
3227 (bidi_find_other_level_edge, bidi_move_to_visually_next):
3228 Use bool for booleans, instead of int.
3229 * dispextern.h (bidi_init_it, bidi_paragraph_init)
3230 (bidi_unshelve_cache): Adjust decls to match code.
3231
3232 2012-08-23 Martin Rudalics <rudalics@gmx.at>
3233
3234 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
3235 argument.
3236
3237 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
3238
3239 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
3240 * atimer.h: Include <stdbool.h>.
3241
3242 2012-08-22 Dan Nicolaescu <dann@gnu.org>
3243
3244 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
3245 compile time tests instead of run time tests on systems that do
3246 not use them.
3247 (FRAME_MAC_P): Remove leftover from deleted code.
3248 * frame.c (syms_of_frame): Remove leftover from deleted code.
3249
3250 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
3251
3252 * nsterm.m (insertText:): Don't clear modifiers if code is space.
3253
3254 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
3255
3256 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
3257 Otherwise, the compiler complains about (A?B:C) where B is void
3258 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
3259 (fontset_add): Return void, for FONTSET_ADD.
3260
3261 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3262
3263 * alloc.c: Use bool for booleans.
3264 (gc_in_progress, abort_on_gc)
3265 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3266 (dont_register_blocks) [GC_MALLOC_CHECK]:
3267 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
3268 (check_string_bytes, make_specified_string, memory_full)
3269 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
3270 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
3271 (mark_stack, valid_pointer_p, make_pure_string)
3272 (Fgarbage_collect, survives_gc_p, gc_sweep):
3273 Use bool for booleans, instead of int.
3274 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
3275 Remove unused local.
3276 * alloc.c (PURE_POINTER_P):
3277 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
3278 * editfns.c (Fformat):
3279 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
3280 (Fdo_auto_save):
3281 * fns.c (sweep_weak_table):
3282 * lisp.h (suppress_checking, push_message, survives_gc_p)
3283 (make_pure_string, gc_in_progress, abort_on_gc):
3284 * lread.c (readchar, read1):
3285 * print.c (Fprin1_to_string):
3286 * xdisp.c (push_message):
3287 Use bool for booleans affected directly or indirectly by
3288 alloc.c's changes.
3289
3290 Make recently-introduced setters macros.
3291 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
3292 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
3293 (set_fontset_default, set_fontset_fallback): Rename from their
3294 upper-case counterparts, and make them functions rather than macros.
3295 This is more consistent with the other recently-introduced setters.
3296 These don't need to be inline, since they're local.
3297
3298 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
3299
3300 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
3301 the loop (Bug#12247).
3302
3303 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3304
3305 * lisp.h (vcopy): Use memcpy rather than our own loop.
3306 This fixes a performance regression introduced by the recent
3307 addition of vcopy. This means 'vcopy' will need to be modified
3308 for a copying collector, but that's OK. Also, tighten the
3309 checking in the assertion.
3310
3311 2012-08-21 Eli Zaretskii <eliz@gnu.org>
3312
3313 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
3314 components for RTL text (Bug#11860). Adjust X-OFFSET of each
3315 non-base glyph for the width of the base character, according to
3316 what x_draw_composite_glyph_string_foreground expects.
3317 Generate WADJUST value according to composition_gstring_width's
3318 expectations, to produce correct width of the composed character.
3319 Reverse the sign of the DU offset produced by ScriptPlace.
3320
3321 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
3322
3323 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
3324
3325 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
3326
3327 Avoid direct writes to contents member of struct Lisp_Vector.
3328 * lisp.h (vcopy): New function to copy data into vector.
3329 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
3330 * fns.c (Ffillarray): Use ASET.
3331 * keyboard.c (timer_check_2): Use AREF and ASET.
3332 (append_tool_bar_item, Frecent_keys): Use vcopy.
3333 * lread.c (read_vector): Use ASET.
3334 * msdos.c (Frecent_doskeys): Use vcopy.
3335 * xface.c (Finternal_copy_lisp_face): Use vcopy.
3336 (Finternal_merge_in_global_face): Use ASET and vcopy.
3337 * xfont.c (xfont_list_pattern): Likewise.
3338
3339 2012-08-21 Martin Rudalics <rudalics@gmx.at>
3340
3341 * window.c (Fwindow_point): For the selected window always return
3342 the position of its buffer's point.
3343 (Fset_window_point): For the selected window always go in its
3344 buffer to the specified position.
3345
3346 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
3347
3348 Setter macros for fontsets.
3349 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
3350 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
3351 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
3352 Adjust users.
3353
3354 2012-08-20 Glenn Morris <rgm@gnu.org>
3355
3356 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
3357 Don't assume that `ln -f' works.
3358
3359 2012-08-20 Eli Zaretskii <eliz@gnu.org>
3360
3361 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
3362 and later about non-assignments with no effect. See discussion at
3363 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
3364 details.
3365
3366 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3367
3368 Inline setter functions for Lisp_Objects slots of struct specbinding.
3369 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
3370 Adjust users.
3371
3372 2012-08-20 Martin Rudalics <rudalics@gmx.at>
3373
3374 * window.c (select_window): Always make selected window's buffer
3375 current.
3376
3377 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3378
3379 Use AREF and ASET for docstrings of category tables.
3380 * category.h (CATEGORY_DOCSTRING): Use AREF.
3381 (SET_CATEGORY_DOCSTRING): Use ASET.
3382 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
3383
3384 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3385
3386 Inline setter functions for hash table members.
3387 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
3388 (set_hash_hash, set_hash_index): Rename with _slot suffix.
3389 (set_hash_key_and_value, set_hash_index, set_hash_next)
3390 (set_hash_hash): New functions.
3391 * charset.c, fns.c: Adjust users.
3392
3393 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
3394
3395 Inline getter and setter functions for per-buffer values.
3396 * buffer.h (per_buffer_default, set_per_buffer_default)
3397 (per_buffer_value, set_per_buffer_value): New functions.
3398 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
3399 * buffer.c, data.c: Adjust users.
3400
3401 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
3402
3403 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
3404
3405 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
3406
3407 Rely on <config.h> + <unistd.h> to declare 'environ',
3408 as gnulib does this if the system doesn't.
3409 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
3410 Remove declaration. MS-Windows declares it on stdlib.h which is
3411 included by conf_post.h.
3412 * emacs.c (environ) [DOUG_LEA_MALLOC]:
3413 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
3414 * vm-limit.c: Include <unistd.h>, for 'environ'.
3415
3416 * unexaix.c, unexcoff.c: Include "mem-limits.h".
3417 (start_of_data): Remove decl; mem-limits.h provides it.
3418
3419 * xdisp.c (handle_invisible_prop): Make it a bit faster
3420 and avoid a gcc -Wmaybe-uninitialized diagnostic.
3421
3422 2012-08-19 Chong Yidong <cyd@gnu.org>
3423
3424 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
3425 ends (Bug#3874).
3426
3427 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
3428
3429 * .gdbinit: Use call instead of set when calling a function in the
3430 inferior.
3431
3432 * data.c (set_internal): Don't use set_blv_found.
3433 (Fkill_local_variable): Likewise.
3434
3435 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
3436
3437 * nsfont.m (ns_ascii_average_width): Ensure the string
3438 ascii_printable is initialized with a null-terminated character
3439 array. Otherwise, it can contain undesired extra characters.
3440
3441 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
3442
3443 port new setting code to Sun C 5.8 2005/10/13
3444 * chartab.c, lisp.h (char_table_set, char_table_set_range):
3445 Return void, not Lisp_Object. Otherwise, the compiler
3446 complains about (A?B:C) where B is void and C is Lisp_Object
3447 when compiling CHAR_TABLE_SET, due to the recent change to
3448 the API of sub_char_table_set_contents.
3449
3450 2012-08-18 Chong Yidong <cyd@gnu.org>
3451
3452 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
3453 for the string case (Bug#3874).
3454
3455 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
3456
3457 * buffer.h (BSET): Remove (Bug#12215).
3458 Replace all uses with calls to new setter functions.
3459 (bset_bidi_paragraph_direction, bset_case_canon_table)
3460 (bset_case_eqv_table, bset_directory, bset_display_count)
3461 (bset_display_time, bset_downcase_table)
3462 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
3463 (bset_last_selected_window, bset_local_var_alist)
3464 (bset_mark_active, bset_point_before_scroll, bset_read_only)
3465 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
3466 (bset_width_table):
3467 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
3468 (bset_auto_fill_function, bset_auto_save_file_format)
3469 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
3470 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
3471 (bset_cache_long_line_scans, bset_case_fold_search)
3472 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
3473 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
3474 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
3475 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
3476 (bset_header_line_format, bset_indicate_buffer_boundaries)
3477 (bset_indicate_empty_lines, bset_invisibility_spec)
3478 (bset_left_fringe_width, bset_major_mode, bset_mark)
3479 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
3480 (bset_name, bset_overwrite_mode, bset_pt_marker)
3481 (bset_right_fringe_width, bset_save_length)
3482 (bset_scroll_bar_width, bset_scroll_down_aggressively)
3483 (bset_scroll_up_aggressively, bset_selective_display)
3484 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
3485 (bset_word_wrap, bset_zv_marker):
3486 * category.c (bset_category_table):
3487 * syntax.c (bset_syntax_table):
3488 New setter functions.
3489
3490 * process.h (PSET): Remove (Bug#12215).
3491 Replace all uses with calls to new setter functions.
3492 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3493 (PROCESS_INLINE): New macro.
3494 (pset_childp): New setter function.
3495 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
3496 * process.c (PROCESS_INLINE):
3497 Define to EXTERN_INLINE, so that the corresponding functions
3498 are compiled into code.
3499 (pset_buffer, pset_command, pset_decode_coding_system)
3500 (pset_decoding_buf, pset_encode_coding_system)
3501 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
3502 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
3503 (pset_type, pset_write_queue): New setter functions.
3504
3505 * window.h (WSET): Remove (Bug#12215).
3506 Replace all uses with calls to new setter functions.
3507 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3508 (WINDOW_INLINE): New macro.
3509 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
3510 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
3511 (wset_total_lines, wset_vertical_scroll_bar)
3512 (wset_window_end_pos, wset_window_end_valid)
3513 (wset_window_end_vpos): New setter functions.
3514 * window.c (WINDOW_INLINE):
3515 Define to EXTERN_INLINE, so that the corresponding functions
3516 are compiled into code.
3517 (wset_combination_limit, wset_dedicated, wset_display_table)
3518 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
3519 (wset_new_normal, wset_new_total, wset_next_buffers)
3520 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
3521 (wset_prev_buffers, wset_right_fringe_width)
3522 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
3523 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
3524 (wset_window_parameters):
3525 * xdisp.c (wset_base_line_number, wset_base_line_pos)
3526 (wset_column_number_displayed, wset_region_showing):
3527 New setter functions.
3528
3529 * termhooks.h (TSET): Remove (Bug#12215).
3530 Replace all uses with calls to new setter functions.
3531 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3532 (TERMHOOKS_INLINE): New macro.
3533 (tset_charset_list, tset_selection_alist): New setter functions.
3534 * terminal.c (TERMHOOKS_INLINE):
3535 Define to EXTERN_INLINE, so that the corresponding functions
3536 are compiled into code.
3537 (tset_param_alist): New setter function.
3538
3539 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
3540
3541 * keyboard.h (KSET): Remove (Bug#12215).
3542 Replace all uses with calls to new setter functions.
3543 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3544 (KEYBOARD_INLINE): New macro.
3545 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
3546 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
3547 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
3548 New setter functions.
3549 * keyboard.c (KEYBOARD_INLINE):
3550 Define to EXTERN_INLINE, so that the corresponding functions
3551 are compiled into code.
3552 (kset_echo_string, kset_kbd_queue)
3553 (kset_keyboard_translate_table, kset_last_prefix_arg)
3554 (kset_last_repeatable_command, kset_local_function_key_map)
3555 (kset_overriding_terminal_local_map, kset_real_last_command)
3556 (kset_system_key_syms): New setter functions.
3557
3558 * frame.h (FSET): Remove (Bug#12215).
3559 Replace all uses with calls to new setter functions.
3560 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3561 (FRAME_INLINE): New macro.
3562 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
3563 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
3564 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
3565 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
3566 (fset_param_alist, fset_root_window, fset_scroll_bars)
3567 (fset_selected_window, fset_title, fset_tool_bar_items)
3568 (fset_tool_bar_position, fset_tool_bar_window): New functions.
3569 * frame.c (FRAME_INLINE):
3570 Define to EXTERN_INLINE, so that the corresponding functions
3571 are compiled into code.
3572 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
3573
3574 A few more naming-convention fixes for getters and setters.
3575 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
3576 and rename from buffer_overlays_set_before.
3577 (set_buffer_overlays_after): Move here from buffer.h, and rename
3578 from buffer_overlays_set_after.
3579 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
3580 All uses changed.
3581 (set_buffer_intervals): Rename from buffer_set_intervals.
3582 * intervals.c (set_interval_object): Move here from intervals.h,
3583 and rename from interval_set_object.
3584 (set_interval_left): Move here from intervals.h, and rename from
3585 interval_set_left.
3586 (set_interval_right): Move here from intervals.h, and rename from
3587 interval_set_right.
3588 (copy_interval_parent): Move here from intervals.h, and rename from
3589 interval_copy_parent.
3590 * intervals.h (set_interval_parent): Rename from interval_set_parent.
3591 (set_interval_plist): Rename from interval_set_plist.
3592 Return void, not Lisp_Object, since no caller uses the result.
3593 * lisp.h (string_intervals): Rename from string_get_intervals.
3594 (set_string_intervals): Rename from string_set_intervals.
3595
3596 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
3597 (set_char_table_contents): Rename from char_table_set_contents.
3598 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
3599 All uses changed. See the end of
3600 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
3601
3602 * lisp.h (CSET): Remove (Bug#12215).
3603 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
3604 (set_char_table_purpose): New functions,
3605 replacing CSET. All uses changed. For example, replace
3606 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
3607 "set_char_table_parent (char_table, parent);".
3608 The old version was confusing because it used the same name
3609 'parent' for two different things.
3610
3611 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
3612
3613 Functions to get and set Lisp_Object fields of buffer-local variables.
3614 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
3615 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
3616 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
3617 * data.c, eval.c, frame.c: Adjust users.
3618
3619 2012-08-17 Chong Yidong <cyd@gnu.org>
3620
3621 * xfaces.c (merge_face_vectors): If the target font specfies a
3622 font spec, make the font's attributes take precedence over
3623 directly-specified attributes.
3624 (merge_face_ref): Recognize :font.
3625
3626 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
3627
3628 Do not use memcpy for copying intervals.
3629 * intervals.c (reproduce_interval): New function.
3630 (reproduce_tree, reproduce_tree_obj): Use it.
3631 (reproduce_tree_obj): Remove prototype.
3632
3633 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
3634
3635 * lisp.h (duration_to_sec_usec): Remove unused decl.
3636
3637 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
3638
3639 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
3640 to an allocated instance of NSString, not to the class itself.
3641
3642 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
3643
3644 * makefile.w32-in (C_CTYPE_H): New macro.
3645 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
3646 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
3647 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
3648
3649 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
3650
3651 Use ASCII tests for character types.
3652 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
3653 * xfns.c, xterm.c:
3654 Don't include <ctype.h>; was not needed.
3655 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
3656 * sysdep.c, xfaces.c:
3657 Include <c-ctype.h> instead of <ctype.h>.
3658 * nsterm.m: Include <c-ctype.h>.
3659 * charset.c (read_hex):
3660 * doc.c (Fsnarf_documentation):
3661 * fileio.c (IS_DRIVE) [WINDOWSNT]:
3662 (DRIVE_LETTER) [DOS_NT]:
3663 (Ffile_name_directory, Fexpand_file_name)
3664 (Fsubstitute_in_file_name):
3665 * font.c (font_parse_xlfd, font_parse_fcname):
3666 * frame.c (x_set_font_backend):
3667 * gtkutil.c (xg_get_font):
3668 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
3669 * nsimage.m (hexchar):
3670 * nsterm.m (ns_xlfd_to_fontname):
3671 * sysdep.c (system_process_attributes):
3672 * xfaces.c (hash_string_case_insensitive):
3673 Use C-locale tests instead of locale-specific tests for character
3674 types, since we want the ASCII interpretation here, not the
3675 interpretation suitable for whatever happens to be the current locale.
3676
3677 2012-08-16 Martin Rudalics <rudalics@gmx.at>
3678
3679 Consistently check windows for validity/liveness
3680 (Bug#11984, Bug#12025, Bug#12026).
3681 * lisp.h (CHECK_VALID_WINDOW): New macro.
3682 * window.c (decode_window): Rename to decode_live_window.
3683 (decode_valid_window, Fwindow_valid_p): New functions.
3684 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
3685 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
3686 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
3687 (Fwindow_prev_sibling, Fwindow_combination_limit)
3688 (Fset_window_combination_limit, Fwindow_use_time)
3689 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
3690 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
3691 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
3692 (Fwindow_hscroll, Fset_window_hscroll)
3693 (Fwindow_redisplay_end_trigger)
3694 (Fset_window_redisplay_end_trigger, Fwindow_edges)
3695 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
3696 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
3697 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
3698 (Fwindow_end, Fset_window_point, Fset_window_start)
3699 (Fpos_visible_in_window_p, Fwindow_line_height)
3700 (Fwindow_dedicated_p, Fset_window_dedicated_p)
3701 (Fwindow_prev_buffers, Fset_window_prev_buffers)
3702 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
3703 (Fset_window_parameter, Fwindow_display_table)
3704 (Fset_window_display_table, Fdelete_other_windows_internal)
3705 (Fset_window_buffer, Fset_window_new_total)
3706 (Fset_window_new_normal, Fdelete_window_internal)
3707 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
3708 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
3709 (Fwindow_scroll_bars): Check whether argument window is a valid or
3710 live window. Update doc-strings.
3711 (syms_of_window): New symbol Qwindow_valid_p.
3712 * keyboard.c (Fposn_at_x_y): Check whether argument
3713 frame_or_window denotes a valid window.
3714
3715 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
3716
3717 Fix previous char table change.
3718 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
3719 * chartab.c (optimize_sub_char_table): Likewise.
3720
3721 2012-08-16 Chong Yidong <cyd@gnu.org>
3722
3723 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
3724
3725 * xfont.c (xfont_open):
3726 * xftfont.c (xftfont_open): Set the font's max_width field.
3727
3728 * nsfont.m (nsfont_open): Similar to the Xft backend, set
3729 min_width to space_width and average_width to the average over
3730 printable ASCII characters.
3731 (ns_char_width): Code cleanup.
3732 (ns_ascii_average_width): New utility function.
3733
3734 * font.h (struct font): Update comments.
3735
3736 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
3737
3738 Simple interface to set Lisp_Object fields of character tables.
3739 * lisp.h (CSET): New macro.
3740 (char_table_set_extras, char_table_set_contents)
3741 (sub_char_table_set_contents): New function.
3742 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
3743 * syntax.c: Adjust users.
3744
3745 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
3746
3747 * eval.c (eval_sub): Bind lexical-binding.
3748 * lread.c (Qlexical_binding): Make non-static.
3749
3750 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
3751
3752 * nsmenu.m (popupSession): Remove.
3753 (pop_down_menu): Remove endModalSession.
3754 (timeout_handler:): New method.
3755 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
3756 Call runModalForWindow. Check timer_fired when it returns.
3757 If not set, cancel timer and break out of loop.
3758 Otherwise loop again, with a new timeout.
3759
3760 * nsterm.m: Include fcntl.h if present.
3761 (fd_entry, t_readfds, inNsSelect): Remove.
3762 (select_writefds, select_valid, select_timeout, selfds)
3763 (select_mutex, apploopnr): Add.
3764 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
3765 Otherwise call kbd_buffer_store_event.
3766 (ns_send_appdefined): Remove release of fd_entry.
3767 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
3768 Increment and decrement apploopnr.
3769 (ns_select): If no file descriptors, just do a NSTimer.
3770 Otherwise copy read/write masks and start select thread (fd_handler).
3771 Start main loop and wait for application defined event.
3772 Inform select thread to stop selecting after main loop is exited.
3773 (ns_term_init): Create selfds pipe and set non-blocking.
3774 Initialize select_mutex. Start the select thread (fd_handler).
3775 (fd_handler:): Loop forever, wait for info from the main thread
3776 to either start or stop selecting. When select returns, send
3777 and appdefined event.
3778 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
3779 If not call kbd_buffer_store_event.
3780
3781 * nsterm.h (EmacsApp): fd_handler takes id argument.
3782 (EmacsDialogPanel): Add timer_fired and timeout_handler.
3783
3784 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
3785
3786 2012-08-15 Eli Zaretskii <eliz@gnu.org>
3787
3788 * region-cache.c (move_cache_gap): Update gap_len using the actual
3789 growth of the boundaries array. Do not change cache_len.
3790 (Bug#12196)
3791
3792 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
3793
3794 Generalize and cleanup font subsystem checks.
3795 * font.h (FONT_DEBUG, font_assert): Remove.
3796 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
3797 Change font_assert to eassert. Use eassert where appropriate.
3798
3799 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
3800
3801 * gtkutil.c (xg_get_font): Use pango_units_to_double.
3802
3803 2012-08-15 Chong Yidong <cyd@gnu.org>
3804
3805 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
3806 When using the new font chooser, use gtk_font_chooser_get_font_desc to
3807 extract the font descriptor instead of just the font name.
3808 In that case, return a font spec instead of a string.
3809 (x_last_font_name): Move to this file from xfns.c.
3810
3811 * xfns.c (Fx_select_font): The return value can also be a font
3812 spec. Move x_last_font_name management to gtkutil.c.
3813
3814 * xfaces.c: Make font weight and style symbols non-static.
3815
3816 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
3817
3818 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
3819 (bug#12117).
3820
3821 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
3822
3823 * alloc.c (Fgarbage_collect): Use plural form consistently.
3824
3825 2012-08-14 Eli Zaretskii <eliz@gnu.org>
3826
3827 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
3828 iteration through the command loop. Fixes a problem whereby mouse
3829 movements are ignored until the first mouse click.
3830
3831 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3832
3833 Use bool, not int, for Lisp booleans.
3834 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
3835 makes Emacs a bit smaller and presumably a bit faster.
3836 * lisp.h: Include <stdbool.h>.
3837 (struct Lisp_Boolfwd, defvar_bool):
3838 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
3839 * regex.c [!emacs]: Include <stdbool.h>.
3840 (false, true): Remove; <stdbool.h> does this for us now.
3841
3842 2012-08-14 Chong Yidong <cyd@gnu.org>
3843
3844 * character.c (Fcharacterp): Doc fix (Bug#12076).
3845
3846 * data.c (Findirect_variable): Doc fix (Bug#11040).
3847
3848 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
3849
3850 * editfns.c (Fformat): Doc fix (Bug#12059).
3851 (Fsave_current_buffer): Doc fix (Bug#11542).
3852
3853 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
3854
3855 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
3856 (bug#12022).
3857
3858 2012-08-14 Martin Rudalics <rudalics@gmx.at>
3859
3860 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
3861 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
3862 * minibuf.c (choose_minibuf_frame, read_minibuf):
3863 * w32fns.c (x_create_tip_frame):
3864 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
3865 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
3866
3867 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3868
3869 * intervals.c (offset_intervals): Remove obsolete comment.
3870
3871 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
3872
3873 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
3874
3875 2012-08-14 Gergely Risko <gergely@risko.hu>
3876
3877 * coding.c (decode_coding): Record buffer modification before
3878 disabling undo_list (Bug#11773).
3879
3880 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
3881
3882 Revert and cleanup some recent overlay changes.
3883 * buffer.h (enum overlay_type): Remove.
3884 (buffer_get_overlays, buffer_set_overlays): Likewise.
3885 (buffer_set_overlays_before, buffer_set_overlays_after):
3886 New function. Adjust users.
3887 (unchain_both): Add eassert.
3888
3889 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
3890
3891 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
3892
3893 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
3894
3895 * gtkutil.c (xg_mark_data): Don't assume C99.
3896
3897 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
3898
3899 * gtkutil.c (xg_frame_tb_info): New struct.
3900 (TB_INFO_KEY): New define.
3901 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
3902 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
3903 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
3904 if not present.
3905 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
3906 is up to date. Otherwise store new data.
3907 (free_frame_tool_bar): Free xg_frame_tb_info if present.
3908
3909 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
3910
3911 Use KSET for write access to Lisp_Object members of struct kboard.
3912 * keyboard.h (KSET): New macro.
3913 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
3914 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
3915 * xterm.c: Adjust users.
3916
3917 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
3918
3919 Use BSET for write access to Lisp_Object members of struct buffer.
3920 * buffer.h (BSET): New macro.
3921 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
3922 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
3923 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
3924 * window.c, xdisp.c, xfns.c: Adjust users.
3925
3926 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
3927
3928 * lread.c (syms_of_lread): Initialize Vlexical_binding.
3929
3930 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
3931
3932 * nsterm.m (not_in_argv): New function.
3933 (application:openFile, application:openTempFile:):
3934 (application:openFileWithoutUI:, application:openFiles:): Open file
3935 if not_in_argv returns non-zero (bug#12171).
3936
3937 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
3938 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
3939 Define for Gtk+ versions less than 3.2.
3940 (xg_get_font_name): Use those functions/macros here.
3941 Reported by Frans Oilinki <moilinki@gmail.com>.
3942
3943 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3944
3945 * unexmacosx.c (copy_data_segment): Copy initialized data in
3946 statically linked libraries from input file rather than memory.
3947
3948 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
3949 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
3950 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
3951
3952 2012-08-10 Glenn Morris <rgm@gnu.org>
3953
3954 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
3955 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
3956
3957 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3958
3959 Fix last change to allow compilation with low optimization levels.
3960 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
3961 Reported by Jan Djärv <jan.h.d@swipnet.se>.
3962
3963 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3964
3965 Use common inline syntax in intervals.h.
3966 * intervals.h (INTERVALS_INLINE): New macro.
3967 Change all users from LISP_INLINE.
3968
3969 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3970
3971 Define Qnone once for all platforms.
3972 * frame.c (Qnone): Define here.
3973 (syms_of_frame): DEFSYM it.
3974 * lisp.h (Qnone): New declaration.
3975 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
3976 * xfns.c: Remove duplication. Adjust users.
3977
3978 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
3979
3980 Remove unused macros from intervals.h.
3981 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
3982 * intervals.c: Adjust comment.
3983
3984 2012-08-10 Eli Zaretskii <eliz@gnu.org>
3985
3986 * w32fns.c <w32_unicode_gui>: New static variable.
3987 (globals_of_w32fns): Initialize it according to os_subtype.
3988 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
3989 testing os_subtype.
3990
3991 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
3992 Eli Zaretskii <eliz@gnu.org>
3993
3994 Fix bug #10299 with Unicode characters sent by customized
3995 keyboards created by MSKLC.
3996 * w32fns.c (INIT_WINDOW_CLASS): New macro.
3997 (w32_init_class): Use it to initialize the Emacs class with either
3998 ANSI or Unicode API calls.
3999 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
4000 later.
4001 (w32_wnd_proc): If the character code sent by WM_CHAR or
4002 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
4003 original message. Call DefWindowProcW on NT and later.
4004
4005 2012-08-10 Glenn Morris <rgm@gnu.org>
4006
4007 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
4008
4009 * lisp.h (DIRECTORY_SEP): Let configure set it.
4010
4011 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
4012
4013 Use TSET for write access to Lisp_Object slots of struct terminal.
4014 * termhooks.h (TSET): New macro.
4015 * coding.c, terminal.c, xselect.c: Adjust users.
4016
4017 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
4018
4019 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
4020 the failing expression, include them in the error message.
4021 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
4022 * lisp.h (internal_condition_case_n): Update declaration.
4023
4024 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4025
4026 Inline functions to examine and change buffer overlays.
4027 * buffer.c (unchain_both): New function.
4028 * buffer.h (buffer_get_overlays, buffer_set_overlays):
4029 (buffer_has_overlays): New function.
4030 (enum overlay_type): New enum.
4031 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
4032 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
4033
4034 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4035
4036 Inline functions to examine and change buffer intervals.
4037 * alloc.c (mark_interval_tree): Remove.
4038 (MARK_INTERVAL_TREE): Simplify.
4039 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
4040 * intervals.c (buffer_balance_intervals): New function.
4041 (graft_intervals_into_buffer): Adjust indentation.
4042 (set_intervals_multibyte): Simplify.
4043 * buffer.h (BUF_INTERVALS): Remove.
4044 (buffer_get_intervals, buffer_set_intervals): New function.
4045 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
4046 * intervals.c, textprop.c: Adjust users.
4047
4048 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4049
4050 Inline functions to examine and change string intervals.
4051 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
4052 (string_get_intervals, string_set_intervals): New function.
4053 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
4054 * lread.c, print.c, textprop.c: Adjust users.
4055
4056 2012-08-08 Glenn Morris <rgm@gnu.org>
4057
4058 * lisp.mk (lisp): Remove language/persian.elc.
4059
4060 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4061
4062 Cleanup intervals.
4063 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
4064 (NULL_INTERVAL_P): Likewise. Adjust users.
4065 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
4066 Adjust comment. Move under #if 0.
4067 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
4068 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
4069
4070 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
4071
4072 Check total length of intervals with eassert.
4073 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
4074 * intervals.c: Change all users to eassert.
4075
4076 2012-08-07 Eli Zaretskii <eliz@gnu.org>
4077
4078 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
4079 Rename fields to match removal of FGET and WGET and disuse of
4080 INTERNAL_FIELD in Lisp_Cons.
4081
4082 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4083
4084 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
4085 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
4086 name since all xname users are fixed long time ago. Do not
4087 use INTERNAL_FIELD.
4088 (set_symbol_name, set_symbol_function, set_symbol_plist):
4089 (set_symbol_next, set_overlay_plist): New function.
4090 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
4091 (struct Lisp_Overlay): Likewise.
4092 (CVAR, MVAR, SVAR): Remove.
4093 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
4094 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
4095 * xterm.c: Adjust users.
4096 * .gdbinit: Change to use name field of struct Lisp_Symbol
4097 where appropriate.
4098
4099 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4100
4101 Basic functions to set Lisp_Object and pointer slots of intervals.
4102 * intervals.h (interval_set_parent, interval_set_object):
4103 (interval_set_left, interval_set_right, interval_set_plist):
4104 (interval_copy_parent): New function.
4105 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
4106 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
4107 Adjust indentation.
4108 (INTERVAL_SIZE): Remove. Adjust users.
4109 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
4110
4111 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4112
4113 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
4114 * process.h (PGET): Remove.
4115 (struct Lisp_Process): Do not use INTERNAL_FIELD.
4116 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
4117
4118 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4119
4120 Drop WGET and revert read access to Lisp_Objects slots of struct window.
4121 * window.h (WGET): Remove.
4122 (struct window): Do not use INTERNAL_FIELD.
4123 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4124 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4125 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
4126 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
4127 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
4128 Adjust users.
4129
4130 2012-08-07 Chong Yidong <cyd@gnu.org>
4131
4132 * window.c (Fwindow_edges, Fwindow_pixel_edges)
4133 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
4134 (Fdelete_window_internal): Signal an error if the window is not on
4135 a live frame (Bug#12025).
4136
4137 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
4138
4139 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
4140 * frame.h (FGET): Remove.
4141 (struct frame): Do not use INTERNAL_FIELD.
4142 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
4143 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
4144 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4145 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
4146
4147 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
4148
4149 * w32.c: Silence compiler warnings.
4150 (map_w32_filename): Remove unused variable `is_fat'.
4151 (chase_symlinks): Add parentheses around expression.
4152
4153 2012-08-06 Glenn Morris <rgm@gnu.org>
4154
4155 * sysdep.c: Respect BROKEN_GETWD.
4156
4157 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
4158 Let configure handle it.
4159 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
4160
4161 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4162
4163 Use GCALIGNMENT where appropriate.
4164 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
4165 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
4166 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
4167
4168 2012-08-06 Eli Zaretskii <eliz@gnu.org>
4169
4170 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
4171 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
4172
4173 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
4174
4175 * buffer.h (struct buffer): Revert `indirections' to a simple int;
4176 that should be sufficient for everyone.
4177
4178 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
4179
4180 * keyboard.c (timer_check_2): Add break so timer_check returns next
4181 timeout.
4182
4183 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4184
4185 Fix Windows build errors introduced after converting to WGET and WSET.
4186 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
4187 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4188
4189 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
4190
4191 * nsterm.m (ns_frame_rehighlight): Use FSET.
4192
4193 * nsmenu.m (ns_update_menubar): Use FSET.
4194
4195 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4196
4197 Separate read and write access to Lisp_Object slots of Lisp_Process.
4198 * process.h (PGET, PSET): New macros similar to AREF and ASET.
4199 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
4200
4201 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4202
4203 Separate read and write access to Lisp_Object slots of struct window.
4204 * window.h (WGET, WSET): New macros similar to AREF and ASET.
4205 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4206 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4207 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
4208 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
4209 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
4210 Adjust users.
4211
4212 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4213
4214 Fix Windows build errors introduced after converting to FGET and FSET.
4215 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
4216 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
4217 (w32_judge_scroll_bars): Change to use FSET.
4218 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
4219
4220 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4221
4222 Fix replacement typo.
4223 * window.c (replace_window): Set root_window instead of
4224 selected_window. This fixes a total window subsystem
4225 malfunction reported by Bastien Guerry <bzg@gnu.org>.
4226
4227 2012-08-06 Glenn Morris <rgm@gnu.org>
4228
4229 * lisp.mk (lisp): Add language/persian.elc.
4230
4231 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
4232
4233 Separate read and write access to Lisp_Object slots of struct frame.
4234 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
4235 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
4236 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
4237 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4238 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
4239
4240 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
4241
4242 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
4243
4244 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
4245
4246 Generalize common compile-time constants.
4247 * lisp.h (header_size, bool_header_size, word_size): Now here.
4248 (struct Lisp_Vector): Add comment.
4249 (struct Lisp_Bool_Vector): Move up to define handy constants.
4250 (VECSIZE, PSEUDOVECSIZE): Simplify.
4251 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
4252 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
4253 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
4254 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
4255 * xfont.c, xmenu.c: Use word_size where appropriate.
4256
4257 2012-08-05 Lawrence Mitchell <wence@gmx.li>
4258
4259 * search.c (Freplace_match): Treat \? in the replacement text
4260 literally (Bug#8161).
4261
4262 2012-08-05 Chong Yidong <cyd@gnu.org>
4263
4264 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
4265 * frame.c (Vdelete_frame_functions):
4266 * emacs.c (Vkill_emacs_hook): Doc fix.
4267
4268 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4269
4270 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
4271 --with-x-toolkit=no builds.
4272 Reported by Carsten Mattner <carstenmattner@gmail.com>.
4273
4274 2012-08-04 Chong Yidong <cyd@gnu.org>
4275
4276 * syntax.c (Fmodify_syntax_entry): Doc fix.
4277
4278 2012-08-04 Eli Zaretskii <eliz@gnu.org>
4279
4280 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
4281 * w32.c (init_environment): Change the default values of many
4282 environment variables in dflt_envvars[] to NULL, to avoid pushing
4283 them into environment when they were not already defined.
4284 Remove the code that deletes site-lisp subdirectories from the default
4285 value of EMACSLOADPATH, as it is no longer needed.
4286 (check_windows_init_file): Now external, not static.
4287 Use Vload_path as is, without adding anything, as this function is now
4288 called when Vload_path is already set up.
4289
4290 * w32.h (check_windows_init_file): Add prototype.
4291
4292 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
4293 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
4294 compatibility with Posix platforms.
4295 (main): Move the call to check_windows_init_file to here from
4296 w32.c.
4297 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
4298 any, in the DEFALT argument into the root of the Emacs build or
4299 installation tree, as appropriate.
4300
4301 * callproc.c (init_callproc_1): Call decode_env_path instead of
4302 doing its equivalent by hand.
4303 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
4304 the code that sets Vexec_path run on MS-Windows.
4305
4306 * lread.c (init_lread): Add comments to #ifdef's.
4307
4308 * msdos.c (dos_set_window_size, IT_update_begin)
4309 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
4310 instead of direct references.
4311
4312 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
4313
4314 Export DEFAULT_REHASH_* to GDB.
4315 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
4316 Now constants, not macros.
4317
4318 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
4319
4320 Remove unnecessary casts involving pointers.
4321 These casts are no longer needed now that we assume C89 or later,
4322 since they involve casting to or from void *.
4323 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
4324 (make_pure_float, make_pure_vector):
4325 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
4326 * macros.c (Fstart_kbd_macro):
4327 * menu.c (find_and_return_menu_selection):
4328 * minibuf.c (read_minibuf_noninteractive):
4329 * sysdep.c (closedir):
4330 * xdisp.c (x_produce_glyphs):
4331 * xfaces.c (compare_fonts_by_sort_order):
4332 * xfns.c (x_real_positions, select_visual):
4333 * xselect.c (x_stop_queuing_selection_requests)
4334 (x_get_window_property, x_get_window_property_as_lisp_data):
4335 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
4336 Remove unnecessary pointer casts.
4337 * alloc.c (record_xmalloc): New function.
4338 * lisp.h (record_xmalloc): New decl.
4339 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
4340 more like a function. This is because the pointer cast is not
4341 needed. All uses changed.
4342 * print.c (print_string, print_error_message): Avoid length recalc.
4343
4344 Improve fix for macroexp crash with debugging (Bug#12118).
4345 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
4346 ARRAY_MARK_FLAG when checking subscripts, because ASET is
4347 not supposed to be invoked from the garbage collector.
4348 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
4349 (gc_aset): New function, which is like ASET but can be
4350 used in the garbage collector.
4351 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
4352 (set_hash_index): Use it instead of ASET.
4353
4354 2012-08-03 Eli Zaretskii <eliz@gnu.org>
4355
4356 Support symlinks on latest versions of MS-Windows.
4357 * w32.c: Include winioctl.h and aclapi.h.
4358 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
4359 (revert_to_self): Forward declarations of static functions.
4360 <static BOOL g_b_init_get_security_info>:
4361 <g_b_init_create_symbolic_link>: New static flags.
4362 (globals_of_w32): Initialize them to zero.
4363 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
4364 (map_w32_filename): Improve commentary. Simplify switch.
4365 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
4366 headers (most versions of MinGW w32api don't).
4367 (get_security_info, create_symbolic_link)
4368 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
4369 New functions.
4370 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
4371 in the argument file name.
4372 (sys_access): Call unc_volume_file_attributes only if
4373 GetFileAttributes fails with network-related error codes.
4374 (sys_rename): Diagnose renaming of a symlink when the user doesn't
4375 have the required privileges.
4376 (get_file_security_desc_by_name): Rename from
4377 get_file_security_desc.
4378 (stat_worker): New function, with most of the guts of 'stat', and
4379 with addition of handling of symlinks and support for 'lstat'.
4380 If possible, get file's attributes and security information by
4381 handle, not by name. Produce S_IFLNK bit for symlinks, when
4382 called from 'lstat'.
4383 (stat, lstat): New functions, call 'stat_worker'.
4384 (symlink, readlink, careadlinkat): Rewritten to create and resolve
4385 symlinks when the underlying filesystem supports them.
4386
4387 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4388
4389 Fix macroexp crash on Windows with debugging (Bug#12118).
4390 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
4391 checking subscripts; problem introduced with the recent
4392 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
4393 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
4394 since it's used in non-static inline functions now.
4395
4396 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
4397 Don't assume buffer size fits in 'int'. Remove unused local.
4398
4399 Use C99-style 'extern inline' if available.
4400 * buffer.h (BUFFER_INLINE):
4401 * category.h (CATEGORY_INLINE):
4402 * character.h (CHARACTER_INLINE):
4403 * charset.h (CHARSET_INLINE):
4404 * composite.h (COMPOSITE_INLINE):
4405 * dispextern.h (DISPEXTERN_INLINE):
4406 * lisp.h (LISP_INLINE):
4407 * systime.h (SYSTIME_INLINE):
4408 New macro, replacing 'static inline' in this header.
4409 * buffer.h, category.h, character.h, charset.h, composite.h:
4410 * dispextern.h, lisp.h, systime.h:
4411 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
4412 * alloc.c (LISP_INLINE):
4413 * buffer.c (BUFFER_INLINE):
4414 * category.c (CATEGORY_INLINE):
4415 * character.c (CHARACTER_INLINE):
4416 * charset.c (CHARSET_INLINE):
4417 * composite.c (COMPOSITE_INLINE):
4418 * dispnew.c (DISPEXTERN_INLINE):
4419 * sysdep.c (SYSTIME_INLINE):
4420 Define to EXTERN_INLINE, so that the corresponding functions
4421 are compiled into code.
4422 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
4423 (INLINE_HEADER_END): New macros.
4424 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
4425 since it's used in non-static inline functions now.
4426 (VALMASK) [!USE_LSB_TAG]: Likewise.
4427
4428 2012-08-02 Glenn Morris <rgm@gnu.org>
4429
4430 * s/: Remove empty directory.
4431
4432 * s/ms-w32.h: Move to ../nt/inc.
4433 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
4434 Update for new ms-w32.h location.
4435
4436 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
4437
4438 Port to Solaris 8.
4439 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
4440
4441 2012-08-02 Glenn Morris <rgm@gnu.org>
4442
4443 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
4444 hard-coding the path separator.
4445
4446 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
4447
4448 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
4449 This how ASET and AREF are supposed to work, and makes
4450 it easier to think about future improvements. See
4451 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
4452 * charset.h (set_charset_attr): New function.
4453 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
4454 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
4455 (aref_addr): New function. All uses of &AREF(...) changed.
4456 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
4457 (set_hash_index): New functions. All lvalue-style uses of
4458 HASH_KEY etc. changed.
4459 * keyboard.c (set_prop): New function. All lvalue-style uses
4460 of PROP changed.
4461
4462 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
4463
4464 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
4465 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
4466 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
4467 * nsfns.m (ns_set_name_as_filename): Likewise.
4468 * nsmenu.m (ns_update_menubar): Likewise.
4469 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
4470
4471 2012-08-01 Eli Zaretskii <eliz@gnu.org>
4472
4473 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
4474 Adapt to latest changes in field names of the corresponding Lisp
4475 objects.
4476
4477 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
4478
4479 2012-08-01 Glenn Morris <rgm@gnu.org>
4480
4481 * s/msdos.h: Remove file.
4482 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
4483 * Makefile.in (S_FILE): Remove.
4484 (config_h): Remove S_FILE.
4485
4486 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
4487
4488 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
4489 Remove; moved to nt/config.nt.
4490
4491 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4492
4493 Use INTERNAL_FIELD for conses and overlays.
4494 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
4495 Remove obsolete comment.
4496 (MVAR): New macro.
4497 (struct Lisp_Overlay): Use INTERNAL_FIELD.
4498 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
4499
4500 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4501
4502 Use INTERNAL_FIELD for symbols.
4503 * lisp.h (SVAR): New macro. Adjust users.
4504 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
4505 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
4506
4507 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4508
4509 Use INTERNAL_FIELD for processes.
4510 * process.h (PVAR): New macro. Adjust style.
4511 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
4512 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
4513
4514 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
4515
4516 Use INTERNAL_FIELD for windows.
4517 * window.h (WVAR): New macro.
4518 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
4519 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
4520 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
4521 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
4522 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
4523 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
4524
4525 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
4526
4527 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
4528
4529 2012-08-01 Glenn Morris <rgm@gnu.org>
4530
4531 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
4532 Move to configure.ac.
4533
4534 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
4535
4536 * makefile.w32-in (CONFIG_H): Update dependencies.
4537 (CONF_POST_H): New macro.
4538
4539 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
4540
4541 2012-07-31 Glenn Morris <rgm@gnu.org>
4542
4543 * Makefile.in (S_FILE): No longer set by configure.
4544
4545 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
4546 is available.
4547 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
4548
4549 * process.h (NULL_DEVICE):
4550 * emacs.c (SEPCHAR):
4551 * editfns.c (USER_FULL_NAME): Let configure set them.
4552
4553 * s/README, s/template.h: Remove files.
4554
4555 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
4556
4557 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
4558 Move to configure.ac.
4559
4560 2012-07-31 Eli Zaretskii <eliz@gnu.org>
4561
4562 * .gdbinit (xframe): Adapt to introduction of FVAR and the
4563 resulting renaming of 'struct frame' members.
4564
4565 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
4566
4567 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
4568 after introduction of FVAR.
4569
4570 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
4571
4572 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
4573
4574 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
4575 instead of compositeToPoint.
4576 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
4577
4578 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
4579
4580 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
4581
4582 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
4583 * lisp.h (INTERNAL_FIELD): New macro.
4584 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
4585 (BVAR): Change to use INTERNAL_FIELD.
4586 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
4587 (KVAR): Change to use INTERNAL_FIELD.
4588 * frame.h (FVAR): New macro.
4589 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
4590 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
4591 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
4592 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
4593 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
4594
4595 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
4596
4597 Miscellaneous fixes for non-default X toolkits.
4598 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
4599 * xterm.c (x_frame_of_widget): Remove redundant prototype.
4600 Move under #ifdef USE_LUCID.
4601 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
4602 definition and usage to avoid warnings.
4603
4604 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
4605
4606 * nsterm.m (openFiles): Fix previous checkin.
4607
4608 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
4609
4610 * indent.c (compute_motion): Remove unused local.
4611
4612 2012-07-31 Glenn Morris <rgm@gnu.org>
4613
4614 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
4615
4616 * conf_post.h [USG5_4]:
4617 Move remaining contents of s/usg5-4-common.h here.
4618 * s/usg5-4-common.h: Remove file.
4619
4620 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
4621 * s/irix6-5.h: Remove file.
4622
4623 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
4624 * s/darwin.h: Remove file.
4625
4626 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
4627 * s/hpux10-20.h: Remove file, which is now empty.
4628
4629 2012-07-30 Glenn Morris <rgm@gnu.org>
4630
4631 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
4632 * Makefile.in (config_h): Add conf_post.h.
4633 * makefile.w32-in (CONFIG_H): Add conf_post.h.
4634
4635 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
4636
4637 * nsterm.m (ns_do_open_file): New variable.
4638 (ns_term_init): Set ns_do_open_file to YES after run returns.
4639 (openFile, openTempFile, openFileWithoutUI, openFiles):
4640 Open files only if ns_do_open_file.
4641
4642 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4643
4644 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
4645 This no-op macro hasn't been needed for many years.
4646 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
4647
4648 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
4649 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
4650 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
4651 gdb_make_enums_visible.
4652 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
4653 (DIRECTORY_SEP): Now a constant, not a macro.
4654
4655 2012-07-30 Eli Zaretskii <eliz@gnu.org>
4656
4657 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
4658 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
4659
4660 * w32term.c <w32_keyboard_codepage>: Renamed from
4661 keyboard_codepage and now external. All users changed.
4662
4663 * w32term.h: Add declaration of w32_keyboard_codepage.
4664
4665 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
4666 the codepage to translate keys to Unicode. If this argument is
4667 -1, use the value returned by GetConsoleCP. All callers changed.
4668
4669 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4670
4671 Update .PHONY listings in makefiles.
4672 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
4673 bootstrap-clean, distclean, maintainer-clean, versioclean,
4674 extraclean, frc.
4675
4676 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
4677 This is a bit clearer. Fix some commentary typos.
4678
4679 2012-07-30 Glenn Morris <rgm@gnu.org>
4680
4681 * s/netbsd.h: Let configure include signal.h if needed.
4682 Remove file, which is now empty.
4683
4684 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
4685 Let configure set them.
4686 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
4687 No more need to undefine.
4688
4689 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
4690
4691 * keymap.c (Fkey_description): Don't remove 0x80 bit from
4692 non-single-byte char when adding meta modifier. (Bug#12090)
4693
4694 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
4695
4696 Convert safe_call to use variable number of arguments.
4697 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
4698 (safe_call2): Fix comment.
4699 * lisp.h (safe_call): Adjust prototype.
4700 * coding.c (encode_coding_object): Change to use safe_call2.
4701 * xfaces.c (merge_face_heights): Change to use safe_call1.
4702
4703 2012-07-30 Glenn Morris <rgm@gnu.org>
4704
4705 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
4706 does that unconditionally. Remove file, which is now empty.
4707
4708 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
4709 Remove empty files.
4710
4711 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
4712
4713 Export to GDB most of lisp.h's remaining object-like macros.
4714 * lisp.h (min, max): Move earlier, because they're used earlier now.
4715 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
4716 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
4717 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
4718 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
4719 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
4720 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
4721 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
4722 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
4723 Now constants, for GDB. They need not be macros.
4724 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
4725 Now constants, for GDB, as well as macros, for static initializers.
4726 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
4727 Move to after the definition of struct Lisp_Char_Table,
4728 since the former now needs that type defined.
4729 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
4730 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
4731 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
4732 New enums, for gdb_make_enums_visible.
4733 (GLYPH_MODE_LINE_FACE): Remove; unused.
4734 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
4735 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
4736 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
4737 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
4738 enum maxargs, enum MAX_ALLOCA.
4739 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
4740 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
4741 no longer needed, now that they are done in lisp.h.
4742
4743 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
4744
4745 Cleanup string bytes checking.
4746 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
4747 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
4748 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
4749 (check_sblock, compact_small_strings): Simplify.
4750
4751 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4752
4753 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
4754 These macros are confusing and no longer need to be defined, as
4755 the enum values now suffice. All uses replaced with definiens.
4756 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
4757
4758 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
4759
4760 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
4761 ($(BLD)/w32console.$(O)): Update dependencies.
4762
4763 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4764
4765 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
4766 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
4767 time. Adjust users.
4768 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
4769
4770 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
4771
4772 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
4773 setting sitelisp (Bug#12010).
4774
4775 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4776
4777 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
4778
4779 * w32heap.c (cache_system_info):
4780 * w32.c (sys_rename):
4781 * w32proc.c (find_child_console, sys_kill): All users changed.
4782
4783 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4784
4785 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
4786
4787 2012-07-29 Eli Zaretskii <eliz@gnu.org>
4788
4789 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
4790
4791 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4792
4793 Cleanup statistics calculation in Fgarbage_collect.
4794 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
4795 Fix zombies percentage calculation. Simplify elapsed time calculation.
4796
4797 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
4798
4799 Generalize marker debugging code under MARKER_DEBUG and use eassert.
4800 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
4801 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
4802 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
4803 (replace_range, replace_range_2, del_range_2): Change to eassert.
4804 * marker.c (byte_char_debug_check): Adjust style.
4805
4806 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
4807
4808 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
4809 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
4810 long-ago-commented-out code that talks about "WIN32".
4811 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
4812 All uses changed.
4813
4814 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
4815
4816 Use Gnulib stdalign module (Bug#9772, Bug#9960).
4817 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
4818 Simplify by using alignof.
4819 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
4820 * lisp.h: Include <stdalign.h>.
4821 (GCALIGNMENT): New macro and constant.
4822 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
4823 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
4824 (stdalign): New macro, if not already defined.
4825
4826 2012-07-28 Eli Zaretskii <eliz@gnu.org>
4827
4828 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
4829 * w32inevt.c: Include w32inevt.h.
4830 (w32_read_console_input): New inline function, calls either
4831 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
4832 w32_console_unicode_input.
4833 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
4834 (w32_kbd_patch_key, key_event): Use the codepage returned by
4835 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
4836 (key_event): use uChar.UnicodeChar only if
4837 w32_console_unicode_input is non-zero.
4838
4839 * w32console.c: Include w32heap.h.
4840 <w32_console_unicode_input>: New global variable.
4841 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
4842 family of Windows, zero otherwise.
4843
4844 * w32inevt.h: Declare w32_console_unicode_input.
4845
4846 * xdisp.c (init_iterator): Don't reference tip_frame in a build
4847 --without-x. (Bug#11742)
4848
4849 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
4850
4851 Adjust GDB to reflect pvec_type changes (Bug#12036).
4852 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
4853 2012-07-04 changes to pseudovector representation.
4854 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
4855
4856 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
4857
4858 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
4859 bus address.
4860 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
4861
4862 2012-07-27 Eli Zaretskii <eliz@gnu.org>
4863
4864 * alloc.c (listn): Fix the order the arguments are consed onto the
4865 list.
4866
4867 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
4868 enumeration constants, as PURE and HEAP are too general, and clash
4869 with other headers and sources, such as gmalloc.c and the
4870 MS-Windows system headers. All users changed.
4871
4872 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4873
4874 Revert last save_excursion_save and save_excursion_restore changes.
4875 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
4876 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
4877
4878 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4879
4880 Fix recently-introduced typos in Windows port.
4881 Reported by Martin Rudalics <rudalics@gmx.at>.
4882 * w32.c (init_environment): Replace comma with semicolon.
4883 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
4884
4885 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
4886
4887 Improve GDB symbol export (Bug#12036).
4888 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
4889 arms of an 'if', not using conditional expressions; otherwise GDB
4890 complains about the types in the unevaluated arm when the argument
4891 is an integer literal.
4892 (xgetint): Simplify expression.
4893 * alloc.c (gdb_make_enums_visible): New constant. This ports to
4894 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
4895 Zaretskii in <http://bugs.gnu.org/12036#13>.
4896 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
4897 needed now that we have gdb_make_enums_visible.
4898 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
4899 (enum enum_USE_LSB_TAG):
4900 New enum types, packaging up enums that need to be exported to GDB.
4901
4902 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4903
4904 Utility function to make a list from specified amount of objects.
4905 * lisp.h (enum constype): New datatype.
4906 (listn): New prototype.
4907 * alloc.c (listn): New function.
4908 (Fmemory_use_count, syms_of_alloc): Use it.
4909 * buffer.c (syms_of_buffer): Likewise.
4910 * callint.c (syms_of_callint): Likewise.
4911 * charset.c (define_charset_internal): Likewise.
4912 * coding.c (syms_of_coding): Likewise.
4913 * keymap.c (syms_of_keymap): Likewise.
4914 * search.c (syms_of_search): Likewise.
4915 * syntax.c (syms_of_syntax): Likewise.
4916 * w32.c (init_environment): Likewise.
4917 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
4918 * xdisp.c (syms_of_xdisp): Likewise.
4919 * xfns.c (syms_of_xfns): Likewise.
4920
4921 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
4922
4923 Fast save_excursion_save and save_excursion_restore.
4924 * lisp.h (struct Lisp_Excursion): New data type.
4925 (PVEC_EXCURSION): New pseudovector type.
4926 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
4927 to deal with it. Adjust comments.
4928 (init_marker, attach_marker): New prototype.
4929 (unchain_marker): Adjust prototype.
4930 * marker.c (attach_marker): Change to global.
4931 (init_marker): New function.
4932 * alloc.c (Fmake_marker, build_marker): Use it.
4933 (build_marker): More easserts.
4934 (mark_object): Handle struct Lisp_Excursion.
4935 * editfns.c (save_excursion_save, save_excursion_restore):
4936 Reimplement to use struct Lisp_Excursion. Add comments.
4937
4938 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
4939
4940 Fix export of symbols to GDB (Bug#12036).
4941 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
4942 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
4943 emacs.c, as this is a more-suitable home. Had this been done earlier
4944 the fix for 12036 would have avoided some of the problems noted in
4945 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
4946 would have been more obvious.
4947 * emacs.c: Do not include <verify.h>; no longer needed.
4948 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
4949 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
4950 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
4951 Remove; now done in lisp.h.
4952 * lisp.h (PUBLISH_TO_GDB): New macro.
4953 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
4954 (DATA_SEG_BITS): Use it.
4955 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
4956 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
4957 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
4958 not be usable in #if. This simplifies things.
4959
4960 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
4961
4962 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
4963
4964 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
4965
4966 Simplify export of symbols to GDB (Bug#12036).
4967 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
4968 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
4969 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
4970 Adjust to changes in lisp.h and emacs.c, by using
4971 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
4972 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
4973 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
4974 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
4975 instead of gdb_valbits.
4976 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
4977 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
4978 instead of gdb_array_mark_flag.
4979 (xboolvector): Get size from $->size, not $->header.size.
4980 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
4981 (xreload, hook-run, hookpost-run): Remove.
4982 * emacs.c: Include <verify.h>.
4983 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
4984 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
4985 Remove.
4986 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
4987 (gdb_USE_LSB_TAG): New enum constants.
4988 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
4989 Also define these as enum constants, so they're visible to GDB.
4990 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
4991 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
4992 as constants, so they're visible to GDB.
4993 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
4994 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
4995 Now enum constants, not macros, so they're visible to GDB.
4996 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
4997 more convenient now. All uses changed.
4998 (VALMASK) [USE_LSB_TAG]: Also define in this case.
4999 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
5000
5001 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
5002
5003 Explicitly free restriction data that are not needed anymore.
5004 * editfns.c (save_restriction_restore): Free restriction data.
5005
5006 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
5007
5008 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
5009 add argument, tune behavior, and adjust all callers.
5010
5011 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
5012
5013 Use typedef for EMACS_INT, EMACS_UINT.
5014 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
5015 than macros. This simplifies debugging in the usual case, since
5016 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
5017 and it allows expressions involving EMACS_INT casts.
5018 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
5019
5020 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
5021
5022 * nsterm.m (ns_read_socket): Return early if there is a modal
5023 window (Bug#12043).
5024
5025 2012-07-25 Martin Rudalics <rudalics@gmx.at>
5026
5027 * frame.c (Fredirect_frame_focus): In doc-string don't mention
5028 that FOCUS-FRAME can be omitted.
5029
5030 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
5031
5032 Adjust buffer text indirection counters at the end of Fkill_buffer.
5033 * buffer.c (Fkill_buffer): Adjust indirection counters when the
5034 buffer is definitely dead. This should really fix an issue reported
5035 by Christoph Scholtes again. (Bug#12007).
5036 (init_buffer_once): Initialize indirection counters of
5037 buffer_defaults and buffer_local_symbols (for sanity and safety).
5038
5039 2012-07-24 Eli Zaretskii <eliz@gnu.org>
5040
5041 * xdisp.c (init_iterator): Don't compute dimensions of truncation
5042 and continuation glyphs on tooltip frames, leave them at zero.
5043 Avoids continued lines in tooltips. (Bug#11832)
5044
5045 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
5046
5047 Simplify copy_overlay.
5048 * buffer.c (copy_overlay): Simplify. Use build_marker.
5049 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
5050
5051 2012-07-23 Eli Zaretskii <eliz@gnu.org>
5052
5053 * print.c (print_object): Don't crash when a frame's name is nil
5054 or invalid. (Bug#12025)
5055
5056 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
5057 it signals an error when a tooltip frame is being created.
5058
5059 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
5060
5061 Cleanup miscellaneous objects allocation and initialization.
5062 * alloc.c (allocate_misc): Change to static. Add argument to
5063 specify the subtype. Adjust comment and users.
5064 (build_overlay): New function.
5065 * buffer.c (copy_overlays, Fmake_overlay): Use it.
5066 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
5067 (allocate_misc): Remove prototype.
5068 (build_overlay): Add prototype.
5069
5070 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
5071
5072 Swap buffer text indirection counters in Fbuffer_swap_text.
5073 * buffer.c (Fbuffer_swap_text): Swap indirections too.
5074 This avoids crash reported by Christoph Scholtes at
5075 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
5076
5077 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
5078
5079 * nsmenu.m (Popdown_data): New struct.
5080 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
5081 free Popdown_data.
5082 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
5083 (initWithContentRect): Make imgView and contentView non-static
5084 and autorelease them. Also autorelease img and matrix (Bug#12005).
5085 (dealloc): Remove (Bug#12005).
5086
5087 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
5088
5089 Adjust consing_since_gc when objects are explicitly freed.
5090 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
5091 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
5092 (free_cons, free_misc): Subtract object size from consing_since_gc.
5093
5094 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
5095
5096 Simplify and cleanup markers positioning code.
5097 * marker.c (attach_marker): More useful eassert.
5098 (live_buffer, set_marker_internal): New function.
5099 (Fset_marker, set_marker_restricted): Use set_marker_internal.
5100 (set_marker_both, set_marker_restricted_both): Use live_buffer.
5101
5102 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
5103
5104 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
5105 as it's limited by the amount of memory, not by INT_MAX.
5106
5107 2012-07-21 Eli Zaretskii <eliz@gnu.org>
5108
5109 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
5110 in special-event-map. See the discussion at
5111 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
5112 for the reasons.
5113
5114 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
5115 info.dwItemData. Fixes crashes on 64-bit Windows.
5116 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
5117
5118 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
5119
5120 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
5121 (conversationIdentifier): Return value is NSInteger.
5122 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
5123
5124 2012-07-21 Chong Yidong <cyd@gnu.org>
5125
5126 * window.c (decode_any_window): Signal an error if the window is
5127 on a dead frame (Bug#11984).
5128
5129 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5130
5131 Add indirection counting to speed up Fkill_buffer.
5132 * buffer.h (struct buffer): New member.
5133 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
5134 (Fmake_indirect_buffer): Set indirection counter to -1, increment
5135 base buffer indirection counter.
5136 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
5137 (Fkill_buffer): Adjust indirection counters as needed, don't walk
5138 through buffer list if indirection counter is 0.
5139
5140 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5141
5142 Extend the value returned by Fgarbage_collect with heap statistics.
5143 * alloc.c (Qheap): New symbol.
5144 (syms_of_alloc): DEFSYM it.
5145 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
5146 (Fmemory_free): Remove.
5147 (syms_of_alloc): Don't defsubr it.
5148 * buffer.c (Fcompact_buffer): Remove.
5149 (syms_of_buffer): Don't defsubr it.
5150
5151 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5152
5153 Make maybe_gc inline.
5154 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
5155 * lisp.h (consing_since_gc, gc_relative_threshold)
5156 (memory_full_cons_threshold): Revert declaration.
5157 (maybe_gc): Remove prototype, define as inline.
5158 * alloc.c: Remove old commented-out code.
5159 (consing_since_gc, gc_relative_threshold)
5160 (memory_full_cons_threshold): Revert to global.
5161 (maybe_gc): Remove.
5162
5163 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5164
5165 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
5166 * lisp.h (build_unibyte_string): New function.
5167 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
5168 * sysdep.c, w32fns.c, xfns.c: Use it.
5169 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
5170 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
5171 Adjust users accordingly.
5172 * font.h (font_open_by_name): Adjust prototype.
5173
5174 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
5175
5176 Cleanup calls to Fgarbage_collect.
5177 * lisp.h (maybe_gc): New prototype.
5178 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
5179 Remove declarations.
5180 * alloc.c (maybe_gc): New function.
5181 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
5182 Make them static.
5183 * bytecode.c (MAYBE_GC): Use maybe_gc.
5184 * eval.c (eval_sub, Ffuncall): Likewise.
5185 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
5186 to avoid dependency from auto-save feature.
5187
5188 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
5189
5190 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
5191 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
5192 'for_each_per_buffer_object_at'.
5193 All uses changed. It's better to use upper-case for macros that
5194 cannot be implemented as functions, to give the reader a clue
5195 that they're special.
5196
5197 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
5198
5199 * alloc.c (Fgarbage_collect): Tweak docstring.
5200
5201 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5202
5203 Tweak the value returned from Fgarbage_collect again.
5204 * alloc.c (Fgarbage_collect): New return value, as confirmed in
5205 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
5206 Adjust documentation.
5207 (total_vector_bytes): Rename to total_vector_slots, adjust
5208 accounting.
5209 (total_free_vector_bytes): Rename to total_free_vector_slots,
5210 adjust accounting.
5211 (Qstring_bytes, Qvector_slots): New symbols.
5212 (syms_of_alloc): DEFSYM them.
5213
5214 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5215
5216 Buffer compaction primitive which may be used from Lisp.
5217 * buffer.c (compact_buffer, Fcompact_buffer): New function.
5218 (syms_of_buffer): Register Fcompact_buffer.
5219 * alloc.c (Fgarbage_collect): Use compact_buffer.
5220 * buffer.h (compact_buffer): New prototype.
5221 (struct buffer_text): New member.
5222
5223 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
5224
5225 New macro to iterate over all buffers, miscellaneous cleanups.
5226 * lisp.h (all_buffers): Remove declaration.
5227 * buffer.h (all_buffers): Add declaration, with comment.
5228 (for_each_buffer): New macro.
5229 * alloc.c (Fgarbage_collect, mark_object): Use it.
5230 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
5231 (init_buffer): Likewise.
5232 * data.c (Fset_default): Likewise.
5233 * coding.c (code_conversion_restore): Remove redundant check
5234 for dead buffer.
5235 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
5236
5237 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5238
5239 Fix bug that created negative-length intervals.
5240 * intervals.c (merge_interval_right, merge_interval_left):
5241 Do not zero out this interval if it is absorbed by its children,
5242 as this interval's total length doesn't change in that case. See
5243 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
5244
5245 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
5246
5247 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
5248 when invoking (make-bool-vector N t) and N is a positive
5249 multiple of 8 -- the last 8 bits were mistakenly cleared.
5250
5251 Remove some struct layout assumptions in bool vectors.
5252 * alloc.c (bool_header_size): New constant.
5253 (header_size, word_size): Move earlier, as they're now used earlier.
5254 Use 'word_size' in a few more places, where it's appropriate.
5255 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
5256 padding before the data member of a bool vector.
5257 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
5258 than doing the check by hand with an abort ().
5259
5260 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
5261
5262 * eval.c (Fdefvar): Don't check constants since we only set the var if
5263 it's not yet defined anyway (bug#11904).
5264
5265 * lisp.h (last_undo_boundary): Declare new var.
5266 * keyboard.c (command_loop_1): Set it.
5267 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
5268 were auto-added by the command loop (bug#11774).
5269
5270 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
5271
5272 * w32font.c (Qsymbol): Remove local definition.
5273 (syms_of_w32font): Don't DEFSYM it.
5274
5275 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5276
5277 Fix sweep_vectors to handle large bool vectors correctly.
5278 * alloc.c (sweep_vectors): Account total_vector_bytes for
5279 bool vectors larger than VBLOCK_BYTES_MAX.
5280
5281 2012-07-18 Chong Yidong <cyd@gnu.org>
5282
5283 * frame.c (x_set_frame_parameters): Revert bogus change introduced
5284 in 2012-05-25 commit by Paul Eggert (Bug#11738).
5285
5286 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
5287
5288 Return more descriptive data from Fgarbage_collect.
5289 Suggested by Stefan Monnier in
5290 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
5291 * alloc.c (bounded_number): New function.
5292 (total_buffers, total_vectors): New variable.
5293 (total_string_size): Rename to total_string_bytes, adjust users.
5294 (total_vector_size): Rename to total_vector_bytes, adjust users.
5295 (sweep_vectors): Account total_vectors and total_vector_bytes.
5296 (Fgarbage_collect): New return value. Adjust documentation.
5297 (gc_sweep): Account total_buffers.
5298 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
5299 (VECTOR_SIZE): Remove.
5300 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
5301 (Qinterval, Qmisc): New symbols.
5302 (syms_of_data): Initialize them.
5303 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
5304 (Qcons, Qbuffer): New declarations.
5305
5306 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
5307
5308 * alloc.c (Fmemory_free): Account for memory-free's own storage.
5309 Round up, not down. Improve doc.
5310
5311 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5312
5313 Restore old code in allocate_string_data to avoid Faset breakage.
5314 Reported by Julien Danjou <julien@danjou.info> in
5315 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
5316 * alloc.c (allocate_string_data): Restore old code with minor
5317 adjustments, fix comment to explain this subtle issue.
5318
5319 2012-07-17 Eli Zaretskii <eliz@gnu.org>
5320
5321 Remove FILE_SYSTEM_CASE.
5322 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
5323
5324 * fileio.c (FILE_SYSTEM_CASE): Don't define.
5325 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
5326 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
5327 call-process-region passes it through expand-file-name.
5328
5329 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
5330
5331 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5332
5333 Fix crash when creating indirect buffer (Bug#11917)
5334 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
5335 Don't handle unbound variables specially if non-zero.
5336 (Fbuffer_local_variables): Pass zero.
5337 (clone_per_buffer_values): Pass non-zero.
5338
5339 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5340
5341 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
5342 to make the loop interruptible.
5343
5344 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
5345
5346 * gnutls.c (emacs_gnutls_handshake): Only retry if
5347 GNUTLS_E_INTERRUPTED.
5348
5349 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5350
5351 Cleanup and convert miscellaneous checks to eassert.
5352 * alloc.c (mark_interval): Fix comment, partially rephrase
5353 old comment from intervals.h (see below).
5354 * intervals.c (find_interval, adjust_intervals_for_insertion)
5355 (delete_interval, adjust_intervals_for_deletion)
5356 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
5357 Convert to eassert.
5358 (adjust_intervals_for_insertion, make_new_interval):
5359 Remove obsolete and unused code.
5360 * intervals.h (struct interval): Remove obsolete comment.
5361 * textprotp.c (erase_properties): Remove unused code.
5362 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
5363 (Fremove_list_of_text_properties): Convert to eassert.
5364
5365 2012-07-17 Chong Yidong <cyd@gnu.org>
5366
5367 * editfns.c (Finsert_char): Doc fix.
5368
5369 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5370
5371 Fix previous change to make Fmemory_free always accurate.
5372 * alloc.c (make_interval): Update total_free_intervals.
5373 (make_float): Likewise for total_free_floats.
5374 (free_cons, Fcons): Likewise for total_free_conses.
5375 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
5376 Likewise for total_free_vector_bytes.
5377 (Fmake_symbol): Likewise for total_free_symbols.
5378 (bytes_free): Remove.
5379
5380 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5381
5382 Simple free memory accounting feature.
5383 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
5384 (sweep_vectors): Accumulate size of free vectors.
5385 (Fgarbage_collect): Setup bytes_free.
5386 (Fmemory_free): New function.
5387 (syms_of_alloc): Register it.
5388
5389 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
5390
5391 Cleanup overlays checking.
5392 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
5393 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
5394 eassert and OVERLAYP.
5395 (sort_overlays): Change to use OVERLAYP.
5396
5397 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
5398
5399 * editfns.c (Finsert_char): Make it interactive, and make the
5400 second arg optional. Copy interactive spec and docstring from
5401 ucs-insert.
5402
5403 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
5404
5405 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
5406 Unlike the other wrapped functions, fabs has an unspecified
5407 effect on errno.
5408
5409 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
5410
5411 * nsterm.m (keyDown): Interpret flags without left/right bits
5412 as the left key (Bug#11670).
5413
5414 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
5415
5416 Remove empty and useless init functions.
5417 * lisp.h (init_character_once, init_fns, init_image)
5418 (init_filelock, init_sound): Remove prototype.
5419 * character.c (init_character_once): Remove.
5420 * filelock.c (init_filelock): Likewise.
5421 * fns.c (init_fns): Likewise.
5422 * image.c (init_image): Likewise.
5423 * sound.c (init_sound): Likewise.
5424 * emacs.c (main): Adjust accordingly.
5425
5426 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
5427
5428 * gtkutil.h: Tiny cleanups.
5429 (use_old_gtk_file_dialog): Remove useless declaration.
5430 (xg_uses_old_file_dialog): Add suggested const attribute.
5431
5432 2012-07-15 Eli Zaretskii <eliz@gnu.org>
5433
5434 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
5435 (bidi_paragraph_init): Use it to limit search forward for a strong
5436 directional character in abnormally large paragraphs full of
5437 neutral or weak characters. (Bug#11943)
5438
5439 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
5440
5441 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
5442 the toolbar (Bug#9451).
5443 (xg_make_tool_item): Give the widget event box a transparent
5444 background.
5445
5446 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
5447
5448 Cleanup basic allocation variables and functions.
5449 * alloc.c (ignore_warnings, init_intervals, init_float)
5450 (init_cons, init_symbol, init_marker): Remove.
5451 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
5452 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
5453 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
5454 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
5455 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
5456 (staticidx, init_alloc_once, init_strings, free_ablock):
5457 Remove redundant initialization.
5458 * fns.c (init_weak_hash_tables): Remove.
5459 * lisp.h (init_weak_hash_tables): Remove prototype.
5460
5461 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
5462
5463 Use zero_vector where appropriate.
5464 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
5465 accordingly.
5466 * lisp.h (zero_vector): New declaration.
5467 * font.c (null_vector): Remove.
5468 (syms_of_font): Remove initialization and staticpro.
5469 (font_list_entities, font_find_for_lface): Change to use zero_vector.
5470 * keymap.c (Faccessible_keymaps): Likewise.
5471
5472 2012-07-15 Leo Liu <sdl.web@gmail.com>
5473
5474 * fringe.c: Fix typo in comments.
5475
5476 2012-07-14 Leo Liu <sdl.web@gmail.com>
5477
5478 * fringe.c: Add a new bitmap exclamation-mark.
5479
5480 2012-07-14 Eli Zaretskii <eliz@gnu.org>
5481
5482 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
5483
5484 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
5485 (HAVE_MENUS): Don't define, defined by editing config.in with
5486 msdos/sed2v2.inp.
5487 (GMALLOC_INHIBIT_VALLOC): Don't define.
5488 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
5489
5490 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
5491
5492 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
5493
5494 2012-07-14 Glenn Morris <rgm@gnu.org>
5495
5496 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
5497 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
5498 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
5499
5500 2012-07-13 Glenn Morris <rgm@gnu.org>
5501
5502 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
5503
5504 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
5505 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
5506
5507 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
5508
5509 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
5510 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
5511 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
5512 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
5513 where appropriate.
5514 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
5515 as boolean expression.
5516 (x_set_window_size): Remove unused variable toolbar.
5517 (ns_get_color_default, ns_mod_to_lisp): Remove.
5518 (ns_mouse_position): Remove unused variables xchar and ychar.
5519 (ns_compute_glyph_string_overhangs): Remove unused variable face.
5520 (ns_set_vertical_scroll_bar): Remove unused variable count.
5521 (ns_delete_terminal): Remove unused variable i.
5522 (ns_term_init): Remove unused variables r, g and b.
5523 (mouseDown): Remove unused variable window.
5524 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
5525 (initFrameFromEmacs): Remove unused variable vbextra.
5526 (mouseEntered): Remove unused variables p and dpyinfo.
5527 (mouseExited): Remove unused variables p and r.
5528 (ns_define_frame_cursor, ns_clear_frame_area)
5529 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
5530 (menuDown): Assign [sender tag] to variable and cast the variable.
5531
5532 * nsterm.h (menuDown): Add id as type to argument sender.
5533 (ns_display_info_for_name): Add Lisp_Object argument.
5534 (ns_term_init): Add Lisp_Object argument.
5535 (ns_map_event_to_object): Add void argument.
5536 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
5537 prototype with arguments and only declare if __OBJC__.
5538 (nxatoms_of_nsselect): Add void argument.
5539 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
5540 (ns_alloc_autorelease_pool): Add void argument.
5541 (ns_release_autorelease_pool): Add void* argument.
5542 (ns_get_defaults_value): Add const char* argument.
5543
5544 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
5545 (initFromContents): Use SSDATA where appropriate.
5546 (ns_update_menubar): Add braces to ambigous if-else.
5547 (initWithTitle): Put () around assignment in if statement.
5548 (ns_menu_show): Remove unused variables window and keymap.
5549 (update_frame_tool_bar): Remove unused variable selected_p.
5550 (initWithContentRect): Remove unused variable this_cmd_name.
5551
5552 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
5553 appropriate.
5554 (setXBMColor): Remove unused variable len.
5555 (setPixmapData): Put () around assignment in loop statement.
5556
5557 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
5558 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
5559 where appropriate.
5560 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
5561 around assignment in loop statement.
5562 (nsfont_open): Remove unused variable i.
5563 (nsfont_open): Remove unused variable len.
5564 (nsfont_draw): Remove unused variable cs.
5565
5566 * nsfns.m (x_set_icon_name, ns_set_name_internal)
5567 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
5568 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
5569 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
5570 (Fns_font_name, Fns_perform_service)
5571 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
5572 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
5573 (ns_set_name): Remove unused variable view.
5574 (x_set_menu_bar_lines): Remove unused variable olines.
5575 (x_set_tool_bar_lines): Remove unused variable root_window.
5576 (Fns_list_colors): Put () around assignment in while statement.
5577 (Fns_perform_service): Remove unused variable len.
5578 (Fns_display_usable_bounds): Remove unused variable top.
5579 (syms_of_nsfns): Remove unused variable i.
5580
5581 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
5582 memcpy (Bug#11907).
5583
5584 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
5585
5586 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
5587 and free it with DestroyExceptionInfo (Bug#11558).
5588
5589 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
5590
5591 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
5592 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
5593 Set here, not in nt/config.nt.
5594
5595 2012-07-13 Eli Zaretskii <eliz@gnu.org>
5596
5597 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
5598 cursor overflow into the last glyph on display line when the right
5599 fringe is off. (Bug#11832)
5600
5601 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
5602
5603 * xdisp.c (produce_special_glyphs): Now static.
5604 * dispextern.h (produce_special_glyphs): Remove decl.
5605
5606 2012-07-13 Glenn Morris <rgm@gnu.org>
5607
5608 * s/bsd-common.h, s/cygwin.h: Remove empty files.
5609 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
5610
5611 * s/usg5-4-common.h (USG, USG5):
5612 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
5613 * s/sol2-6.h (SOLARIS2):
5614 * s/irix6-5.h (IRIX6_5):
5615 * s/hpux10-20.h (USG, USG5, HPUX):
5616 * s/gnu-linux.h (USG, GNU_LINUX):
5617 * s/freebsd.h (BSD_SYSTEM):
5618 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
5619 * s/cygwin.h (CYGWIN):
5620 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
5621 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
5622
5623 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
5624
5625 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
5626
5627 2012-07-13 Glenn Morris <rgm@gnu.org>
5628
5629 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
5630
5631 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
5632
5633 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
5634 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
5635
5636 2012-07-12 Glenn Morris <rgm@gnu.org>
5637
5638 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
5639
5640 * process.c (init_process_emacs): Rename from init_process.
5641 The old name is also the name of a Mach system call.
5642 * lisp.h, emacs.c: Update for this name change.
5643 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
5644 longer needed.
5645
5646 2012-07-12 Eli Zaretskii <eliz@gnu.org>
5647
5648 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
5649 memmove call that removes glyphs covered by the left truncation
5650 glyph. Improve commentary.
5651 (display_line): Fix display of continuation glyphs on GUI frames
5652 when the right fringe is turned off and variable-size fonts are
5653 used in the window. Move the code that appends a stretch glyph to
5654 produce_special_glyphs, so that it could be used for truncation
5655 and continuation glyphs alike.
5656 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
5657 glyph of a suitably computed width, to align the special glyphs at
5658 the window margin. Code moved from display_line. (Bug#11832)
5659
5660 2012-07-12 Glenn Morris <rgm@gnu.org>
5661
5662 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
5663
5664 * s/gnu-linux.h, s/hpux10-20.h:
5665 Do not unconditionally define HAVE_XRMSETDATABASE.
5666
5667 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
5668
5669 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
5670
5671 Fix typos that broke OS X build.
5672 Reported by Randal L. Schwartz in
5673 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
5674 * nsterm.m (ns_timeout): Add missing local decl.
5675 (ns_get_color): snprintf -> sprintf, to fix typo.
5676
5677 2012-07-12 Glenn Morris <rgm@gnu.org>
5678
5679 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
5680 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
5681 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
5682 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
5683
5684 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
5685 Move PTY_OPEN to configure.
5686
5687 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
5688 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
5689 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
5690
5691 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
5692
5693 Use empty_unibyte_string where applicable.
5694 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
5695 * lread.c (read1): Likewise.
5696 * xsettings.c (syms_of_xsettings): Likewise.
5697
5698 2012-07-12 Glenn Morris <rgm@gnu.org>
5699
5700 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
5701 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
5702 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
5703 * s/hpux10-20.h (RUN_TIME_REMAP):
5704 * s/bsd-common.h (TABDLY): Move to configure.
5705
5706 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
5707
5708 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
5709
5710 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
5711 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
5712
5713 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
5714
5715 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
5716 * s/template.h: Move NARROWPROTO to configure.
5717
5718 2012-07-11 Glenn Morris <rgm@gnu.org>
5719
5720 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
5721 unused since 2011-01-17 change to systty.h.
5722
5723 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
5724 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
5725 Move HAVE_PTYS and HAVE_SOCKETS to configure.
5726
5727 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
5728
5729 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
5730
5731 2012-07-11 Glenn Morris <rgm@gnu.org>
5732
5733 * s/darwin.h, s/gnu-linux.h, s/template.h:
5734 Move INTERRUPT_INPUT to configure.
5735
5736 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5737
5738 Minor adjustments to interning code.
5739 * lisp.h (intern, intern_c_string): Redefine as static inline
5740 wrappers for intern_1 and intern_c_string_1, respectively.
5741 (intern_1, intern_c_string_1): Rename prototypes.
5742 * lread.c (intern_1, intern_c_string_1, oblookup):
5743 Simplify Vobarray checking.
5744 * font.c (font_intern_prop): Likewise. Adjust comment.
5745 * w32font.c (intern_font_name): Likewise.
5746
5747 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
5748
5749 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
5750
5751 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
5752 of Fcar/Fcdr if possible.
5753 * font.c (check_otf_features): Likewise.
5754 * fontset.c (Fnew_fontset): Likewise.
5755 * gnutls.c (Fgnutls_boot): Likewise.
5756 * minibuf.c (read_minibuf): Likewise.
5757 * msdos.c (IT_set_frame_parameters): Likewise.
5758 * xmenu.c (Fx_popup_dialog): Likewise.
5759 * w32menu.c (Fx_popup_dialog): Likewise.
5760
5761 2012-07-11 Glenn Morris <rgm@gnu.org>
5762
5763 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
5764 since nothing has defined it on these platforms.
5765
5766 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
5767 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
5768
5769 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
5770 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
5771 Move CLASH_DETECTION to configure.
5772
5773 * s/gnu.h: Remove file, which is now empty.
5774
5775 * s/gnu.h, s/gnu-linux.h:
5776 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
5777
5778 2012-07-11 John Wiegley <johnw@newartisans.com>
5779
5780 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
5781 function attribute, so we only use it if it exists in the
5782 compiler.
5783
5784 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5785
5786 Avoid call to strlen in fast_c_string_match_ignore_case.
5787 * search.c (fast_c_string_match_ignore_case): Change to use
5788 length argument. Adjust users accordingly.
5789 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
5790
5791 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
5792
5793 Assume mkdir, rmdir.
5794 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
5795 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
5796
5797 Assume rename.
5798 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
5799
5800 Assume perror.
5801 * s/hpux10-20.h (HAVE_PERROR): Remove.
5802 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
5803 Remove dummy definition, as this problem was obsolete long ago.
5804
5805 Assume strerror.
5806 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
5807
5808 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
5809
5810 Avoid calls to strlen in font processing functions.
5811 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
5812 (font_open_by_name): Change to use length argument.
5813 Adjust users accordingly.
5814 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
5815 Adjust prototypes.
5816 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
5817 Change to return ptrdiff_t.
5818 (xfont_list_pattern, xfont_match): Use length returned by
5819 xfont_decode_coding_xlfd.
5820 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
5821
5822 2012-07-11 Glenn Morris <rgm@gnu.org>
5823
5824 * s/darwin.h, s/freebsd.h, s/netbsd.h:
5825 Move DONT_REOPEN_PTY to configure.
5826
5827 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
5828 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
5829
5830 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
5831
5832 Remove "#define unix" that is no longer needed (Bug#11905).
5833 * s/aix4-2.h (unix): Remove; no longer needed.
5834
5835 EMACS_TIME simplification (Bug#11875).
5836 This replaces macros (which typically do not work in GDB)
5837 with functions, typedefs and enums, making the code easier to debug.
5838 The functional style also makes code easier to read and maintain.
5839 * systime.h: Include <sys/time.h> on all hosts, not just if
5840 WINDOWSNT, since 'struct timeval' is needed in general.
5841 (EMACS_TIME): Now a typedef, not a macro.
5842 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
5843 not macros.
5844 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
5845 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
5846 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
5847 (EMACS_TIME_LE): Now functions, not macros.
5848 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
5849 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
5850 which are not functions. All uses rewritten to use:
5851 (make_emacs_time): New function.
5852 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
5853 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
5854 not functions. All uses rewritten to use the following, respectively:
5855 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
5856 (add_emacs_time, sub_emacs_time): New functions.
5857 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
5858 * fileio.c (Fcopy_file):
5859 * xterm.c (XTflash): Get the current time closer to when it's used.
5860 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
5861
5862 * bytecode.c (targets): Suppress -Woverride-init warnings.
5863
5864 Simplify by avoiding confusing use of strncpy etc.
5865 * doc.c (Fsnarf_documentation):
5866 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
5867 * frame.c (Fmake_terminal_frame):
5868 * gtkutil.c (get_utf8_string):
5869 * lread.c (openp):
5870 * nsmenu.m (ns_update_menubar):
5871 * regex.c (regerror):
5872 Prefer memcpy to strncpy and strncat when either will do.
5873 * fileio.c (Fsubstitute_in_file_name):
5874 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
5875 (menu_separator_name_p):
5876 * nsmenu.m (ns_update_menubar):
5877 Prefer memcmp to strncmp when either will do.
5878 * nsterm.m: Include <ftoastr.h>.
5879 (ns_get_color):
5880 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
5881 Prefer snprintf to strncpy.
5882 * nsterm.m (ns_term_init):
5883 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
5884 * nsterm.m (ns_term_init):
5885 Avoid the need for strncpy, by using build_string or
5886 make_unibyte_string directly. Use dtoastr, not snprintf.
5887 * process.c (Fmake_network_process): Diagnose service names that
5888 are too long, rather than silently truncating them or creating
5889 non-null-terminated names.
5890 (Fnetwork_interface_info): Likewise, for interface names.
5891 * sysdep.c (system_process_attributes) [GNU_LINUX]:
5892 Prefer sprintf to strncat.
5893 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
5894 Prefer vsnprintf to vsprintf + strncpy.
5895
5896 2012-07-10 Glenn Morris <rgm@gnu.org>
5897
5898 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
5899 Clarify fallback case.
5900
5901 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5902
5903 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
5904 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
5905 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
5906 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
5907 where argument type is known to be a Lisp_Cons.
5908
5909 2012-07-10 Tom Tromey <tromey@redhat.com>
5910
5911 * bytecode.c (BYTE_CODE_THREADED): New macro.
5912 (BYTE_CODES): New macro. Replaces all old byte-code defines.
5913 (enum byte_code_op): New type.
5914 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
5915 (exec_byte_code): Use them. Use token threading when applicable.
5916
5917 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5918
5919 Optimize pure C strings initialization.
5920 * lisp.h (make_pure_string): Fix prototype.
5921 (build_pure_c_string): New function, defined as static inline. This
5922 provides a better opportunity to optimize away calls to strlen when
5923 the function is called with compile-time constant argument.
5924 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
5925 argument, adjust users accordingly. Use build_pure_c_string where
5926 appropriate.
5927 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
5928 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
5929 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
5930
5931 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5932
5933 Avoid calls to strlen in miscellaneous functions.
5934 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
5935 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
5936 * lread.c (openp): Likewise.
5937
5938 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
5939
5940 Avoid calls to strlen in path processing functions.
5941 * fileio.c (file_name_as_directory): Add comment. Change to add
5942 srclen argument and return the length of result. Adjust users
5943 accordingly.
5944 (directory_file_name): Fix comment. Change to add srclen argument,
5945 swap 1st and 2nd arguments to obey the common convention.
5946 Adjust users accordingly.
5947 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
5948
5949 2012-07-10 Glenn Morris <rgm@gnu.org>
5950
5951 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
5952 Move PENDING_OUTPUT_COUNT definition to configure.
5953
5954 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
5955 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
5956 * s/gnu.h (DATA_START): Move definitions to configure.
5957
5958 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
5959 We include usg5-4-common.h, which defines them both.
5960
5961 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
5962 O_RDONLY already includes it).
5963
5964 Stop ns builds setting the EMACSLOADPATH environment variable.
5965 * nsterm.m (ns_load_path): Rename from ns_init_paths.
5966 Now it does not set EMACSLOADPATH, just returns the load-path string.
5967 * nsterm.h: Update accordingly.
5968 * lread.c [HAVE_NS]: Include nsterm.h.
5969 (init_lread) [HAVE_NS]: Use ns_load_path.
5970 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
5971
5972 2012-07-09 Glenn Morris <rgm@gnu.org>
5973
5974 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
5975 since the included bsd-common.h does so.
5976
5977 Stop ns builds setting the EMACSPATH environment variable.
5978 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
5979 (ns_init_paths): Do not set EMACSPATH.
5980 * nsterm.h (ns_exec_path): Add it.
5981 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
5982 Use ns_exec_path.
5983
5984 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
5985
5986 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
5987
5988 * process.c (wait_reading_process_output): 'waitchannels' was unset
5989 when read_kbd || !NILP (wait_for_cell); fix this.
5990
5991 Add GCC-style 'const' attribute to functions that can use it.
5992 * character.h (char_resolve_modifier_mask):
5993 * keyboard.h (make_ctrl_char):
5994 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
5995 (init_character_once, next_almost_prime, init_fns, init_image)
5996 (flush_pending_output, init_sound):
5997 * mem-limits.h (start_of_data):
5998 * menu.h (finish_menu_items):
5999 Add ATTRIBUTE_CONST.
6000 * emacs.c (DEFINE_DUMMY_FUNCTION):
6001 Declare the dummy function with ATTRIBUTE_CONST.
6002 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
6003 Add decls with ATTRIBUTE_CONST.
6004
6005 Minor improvements to make_formatted_string.
6006 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
6007 where int is good enough, as vsprintf returns an int.
6008 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
6009
6010 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
6011
6012 Use make_formatted_string to avoid double length calculation.
6013 * lisp.h (make_formatted_string): New prototype.
6014 * alloc.c (make_formatted_string): New function.
6015 * buffer.c (Fgenerate_new_buffer_name): Use it.
6016 * dbus.c (syms_of_dbusbind): Likewise.
6017 * editfns.c (Fcurrent_time_zone): Likewise.
6018 * filelock.c (get_boot_time): Likewise.
6019 * frame.c (make_terminal_frame, set_term_frame_name)
6020 (x_report_frame_params): Likewise.
6021 * image.c (gs_load): Likewise.
6022 * minibuf.c (get_minibuffer): Likewise.
6023 * msdos.c (dos_set_window_size): Likewise.
6024 * process.c (make_process): Likewise.
6025 * xdisp.c (ensure_echo_area_buffers): Likewise.
6026 * xsettings.c (apply_xft_settings): Likewise.
6027
6028 2012-07-09 Glenn Morris <rgm@gnu.org>
6029
6030 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
6031 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
6032 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
6033 * nsterm.h (ns_etc_directory): Add it.
6034 * callproc.c [HAVE_NS]: Include nsterm.h.
6035 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
6036
6037 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
6038
6039 Move marker debugging code under MARKER_DEBUG.
6040 * marker.c (MARKER_DEBUG): Move marker debugging code under
6041 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
6042 for bootstrap with --enable-checking (~3x slowdown reported
6043 by Juanma Barranquero <lekktu@gmail.com>).
6044 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
6045
6046 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
6047
6048 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
6049 See <http://bugs.gnu.org/11825#29>.
6050
6051 2012-07-08 Eli Zaretskii <eliz@gnu.org>
6052
6053 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
6054 has no font, use the frame's font. (Bug#11813)
6055 (display_line): Add commentary about displaying truncation glyphs
6056 on GUI frames.
6057 (produce_special_glyphs): Move here from term.c.
6058
6059 * term.c (produce_special_glyphs): Move to xdisp.c.
6060
6061 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
6062 section.
6063
6064 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
6065
6066 * xdisp.c (display_line): Avoid warning about implicit declaration
6067 of FRAME_FONT.
6068
6069 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
6070
6071 * lisp.h: Remove empty conditional.
6072
6073 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
6074
6075 * lread.c (load_path_check): Now static.
6076
6077 Fix some minor --with-ns problems found by static checking.
6078 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
6079 (x_set_font) [!HAVE_X_WINDOWS]:
6080 * image.c (xpm_load_image) [HAVE_NS]:
6081 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
6082 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
6083 Remove unused local.
6084 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
6085 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
6086 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
6087 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
6088 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
6089 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
6090 Fix pointer signedness problem.
6091 * xfaces.c (FRAME_X_FONT_TABLE):
6092 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
6093
6094 2012-07-07 Glenn Morris <rgm@gnu.org>
6095
6096 * lread.c (load_path_check): New function, split from init_lread.
6097 (init_lread): Reorganize. Motivation:
6098 If EMACSLOADPATH is set, check/warn about that rather than the
6099 defaults, which we are not going to use. Hence we can remove
6100 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
6101 Don't warn if site-lisp directories are missing.
6102 If not installed, start from a blank load-path, since
6103 PATH_LOADSEARCH refers to the eventual installation directories.
6104
6105 2012-07-07 Eli Zaretskii <eliz@gnu.org>
6106
6107 Support truncation and continuation glyphs on GUI frames, when
6108 fringes are disabled. (Bug#11832)
6109 * xdisp.c (init_iterator): Get dimensions of truncation and
6110 continuation glyphs even if on GUI frames.
6111 Adjust it->last_visible_x on GUI frames when the left or right fringes,
6112 or both, are absent.
6113 (start_display, move_it_in_display_line_to): Handle the case of a
6114 GUI frame without a fringe to display continuation or truncation
6115 glyphs.
6116 (insert_left_trunc_glyphs): Support GUI frames: make sure
6117 truncation glyphs overwrite enough glyphs from the current line to
6118 have sufficient space in pixels.
6119 (display_line): Support truncation and continuation glyphs on GUI
6120 frames. If some spare pixels are left on the line after inserting
6121 the truncation glyphs, fill that space with a stretch glyph of a
6122 suitably computed width.
6123
6124 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
6125 produce_glyphs, to support GUI sessions.
6126
6127 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
6128
6129 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
6130
6131 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
6132
6133 Do not require float-time's arg to fit in time_t (Bug#11825).
6134 This works better on hosts where time_t is unsigned, and where
6135 float-time is applied to the (negative) difference between two times.
6136 * editfns.c (decode_time_components): Last arg is now double *,
6137 not int *, and means to store all the result as a double, without
6138 worrying about whether the seconds part fits in time_t.
6139 All callers changed.
6140 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
6141 All callers changed.
6142 (Ffloat_time): Do not fail merely because the specified time falls
6143 outside of time_t range.
6144
6145 2012-07-07 Glenn Morris <rgm@gnu.org>
6146
6147 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
6148 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
6149 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
6150
6151 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
6152
6153 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
6154 Update dependencies.
6155
6156 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
6157
6158 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6159
6160 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
6161 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
6162 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
6163 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
6164 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
6165 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
6166
6167 * xfont.c (compare_font_names): Redo to omit the need for casts.
6168
6169 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
6170
6171 * xfns.c (Fx_change_window_property): Doc fix.
6172 * w32fns.c (Fx_change_window_property): Doc fix.
6173
6174 * w32fns.c (Fx_window_property): Accept the same arguments as the
6175 X Windows version. Doc fix.
6176 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
6177
6178 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
6179 Eli Zaretskii <eliz@gnu.org>
6180
6181 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
6182 Windows-specific code from nt/config.nt moved here.
6183 Obsolete settings removed.
6184
6185 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6186
6187 * process.c: Avoid unnecessary calls to gettime.
6188 (wait_reading_process_output): Don't get the time of day
6189 when gobbling data immediately and not waiting, as there's no need
6190 for it in that case. This removes a FIXME.
6191
6192 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
6193
6194 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
6195 is defined (Bug#11768).
6196
6197 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6198
6199 Fix marker debugging code.
6200 * marker.c (byte_char_debug_check): Do not perform the check
6201 if buffer is not multibyte.
6202 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6203 Call byte_char_debug_check with correct arguments.
6204
6205 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6206
6207 Compile marker debugging code only if ENABLE_CHECKING is defined.
6208 * marker.c (byte_char_debug_check, count_markers):
6209 Use only if ENABLE_CHECKING is defined.
6210 (byte_debug_flag): Remove.
6211 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
6212 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
6213
6214 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6215
6216 Avoid code repetition in marker-related functions.
6217 * marker.c (attach_marker): New function.
6218 (Fset_marker, set_marker_restricted, set_marker_both)
6219 (set_marker_restricted_both): Use it.
6220 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
6221 Consistently rename charno to charpos.
6222 (marker_position): Add eassert.
6223 (marker_byte_position): Convert to eassert.
6224
6225 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6226
6227 Simplify list operations in unchain_overlay and unchain_marker.
6228 * buffer.c (unchain_overlay): Simplify. Add comment.
6229 * marker.c (unchain_marker): Simplify. Fix comments.
6230
6231 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6232
6233 Introduce fast path for the widely used marker operation.
6234 * alloc.c (build_marker): New function.
6235 * lisp.h (build_marker): New prototype.
6236 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
6237 * composite.c (autocmp_chars): Likewise.
6238 * editfns.c (buildmark): Remove.
6239 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
6240 (save_restriction_save): Use build_marker.
6241 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
6242 * window.c (save_window_save): Likewise.
6243
6244 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
6245
6246 Do not use Fdelete_overlay in delete_all_overlays
6247 to avoid redundant calls to unchain_overlay.
6248 * buffer.c (drop_overlay): New function.
6249 (delete_all_overlays, Fdelete_overlay): Use it.
6250 * minibuf.c (get_minibuffer): Fix comment.
6251
6252 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
6253
6254 Port to OpenBSD 5.1 amd64.
6255 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
6256 This is needed for OpenBSD, and should be harmless on all BSD systems.
6257 Also, include <sys/sysctl.h>, as it should be available on all
6258 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
6259 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
6260 use p_pid member, not kp_proc.pid.
6261
6262 2012-07-06 Glenn Morris <rgm@gnu.org>
6263
6264 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
6265
6266 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6267
6268 More xmalloc and related cleanup.
6269 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
6270 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
6271 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
6272 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
6273 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
6274 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
6275 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
6276 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
6277 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
6278 * xterm.c:
6279 Omit needless casts involving void * pointers and allocation.
6280 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
6281 as the former is more robust if P's type is changed.
6282 Prefer xzalloc to xmalloc + memset 0.
6283 Simplify malloc-or-realloc to realloc.
6284 Don't worry about xmalloc returning a null pointer.
6285 Prefer xstrdup to xmalloc + strcpy.
6286 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
6287 growing it.
6288 * keyboard.c (apply_modifiers_uncached): Prefer local array to
6289 alloca of a constant.
6290
6291 2012-07-05 Eli Zaretskii <eliz@gnu.org>
6292
6293 * xdisp.c (display_line): Fix horizontal pixel coordinates when
6294 hscroll is larger than the line width. Fixes long and futile
6295 looping inside extend_face_to_end_of_line (on a TTY) producing
6296 glyphs that are not needed and thrown away.
6297
6298 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
6299
6300 * marker.c (set_marker_restricted_both): Simplify by using
6301 clip_to_bounds.
6302
6303 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6304
6305 * editfns.c (region_limit): Simplify by using clip_to_bounds.
6306
6307 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
6308
6309 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
6310 not defined (Bug#11768).
6311 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
6312 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
6313 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
6314 followed by gtk_box_set_homogeneous (Bug#11768).
6315 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
6316 (update_theme_scrollbar_width, xg_create_scroll_bar):
6317 Use gtk_scrollbar_new (Bug#11768).
6318 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
6319 (is_box_type): New function (Bug#11768).
6320 (xg_tool_item_stale_p): Call is_box_type.
6321 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
6322 with default display (Bug#11768).
6323
6324 2012-07-05 Eli Zaretskii <eliz@gnu.org>
6325
6326 * xdisp.c (window_hscroll_limited): New function.
6327 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
6328 coordinates when window's hscroll is set to insanely large
6329 values. (Bug#11857)
6330
6331 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
6332
6333 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
6334 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
6335
6336 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
6337
6338 Cleanup xmalloc.
6339 * lisp.h (xzalloc): New prototype. Omit needless casts.
6340 * alloc.c (xzalloc): New function. Omit needless casts.
6341 * charset.c: Omit needless casts. Convert all calls to
6342 xmalloc with following memset to xzalloc.
6343 * dispnew.c: Likewise.
6344 * fringe.c: Likewise.
6345 * image.c: Likewise.
6346 * sound.c: Likewise.
6347 * term.c: Likewise.
6348 * w32fns.c: Likewise.
6349 * w32font.c: Likewise.
6350 * w32term.c: Likewise.
6351 * xfaces.c: Likewise.
6352 * xfns.c: Likewise.
6353 * xterm.c: Likewise.
6354 * atimer.c: Omit needless casts.
6355 * buffer.c: Likewise.
6356 * callproc.c: Likewise.
6357 * ccl.c: Likewise.
6358 * coding.c: Likewise.
6359 * composite.c: Likewise.
6360 * doc.c: Likewise.
6361 * doprnt.c: Likewise.
6362 * editfns.c: Likewise.
6363 * emacs.c: Likewise.
6364 * eval.c: Likewise.
6365 * filelock.c: Likewise.
6366 * fns.c: Likewise.
6367 * gtkutil.c: Likewise.
6368 * keyboard.c: Likewise.
6369 * lisp.h: Likewise.
6370 * lread.c: Likewise.
6371 * minibuf.c: Likewise.
6372 * msdos.c: Likewise.
6373 * print.c: Likewise.
6374 * process.c: Likewise.
6375 * region-cache.c: Likewise.
6376 * search.c: Likewise.
6377 * sysdep.c: Likewise.
6378 * termcap.c: Likewise.
6379 * terminal.c: Likewise.
6380 * tparam.c: Likewise.
6381 * w16select.c: Likewise.
6382 * w32.c: Likewise.
6383 * w32reg.c: Likewise.
6384 * w32select.c: Likewise.
6385 * w32uniscribe.c: Likewise.
6386 * widget.c: Likewise.
6387 * xdisp.c: Likewise.
6388 * xmenu.c: Likewise.
6389 * xrdb.c: Likewise.
6390 * xselect.c: Likewise.
6391
6392 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
6393
6394 * fileio.c (time_error_value): Check the right error number.
6395 Problem reported by Troels Nielsen in
6396 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
6397
6398 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6399
6400 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
6401 This should be fixed in a better way; see Eli Zaretskii in
6402 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
6403 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
6404
6405 * fileio.c (time_error_value): Rename from special_mtime.
6406 The old name's problems were noted by Eli Zaretskii in
6407 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
6408
6409 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
6410 This variable's comment says Emacs needs at least one GDB-visible
6411 symbol of type enum pvec_type, to work around GDB problems.
6412 The symbol's value doesn't matter.
6413
6414 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
6415 that causes compilation to fail on pre-C99 compilers.
6416
6417 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
6418
6419 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
6420 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
6421
6422 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6423
6424 * buffer.c (init_buffer_once): Fix initialization of
6425 headers for buffer_defaults and buffer_local_symbols.
6426 Reported by Juanma Barranquero <lekktu@gmail.com>.
6427
6428 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
6431 * lisp.h (enum pvec_type): Use fewer bits.
6432 (PSEUDOVECTOR_SIZE_BITS): New constant.
6433 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
6434 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
6435 change in pvec_type.
6436 (PSEUDOVECTOR_TYPEP): New macro.
6437 (TYPED_PSEUDOVECTORP): Use it.
6438 * fns.c (internal_equal): Adapt code to extract pvectype.
6439 * emacs.c (gdb_pvec_type): Update type.
6440 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
6441 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
6442 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
6443 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
6444 (sweep_vectors): Use it. Use local var `total_bytes' instead of
6445 abusing vector->header.next.nbytes.
6446 (live_vector_p): Use PVEC_TYPE.
6447 (mark_object): Adapt code to extract pvectype. Use switch.
6448
6449 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6450
6451 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
6452 Tighten new eassert a bit.
6453
6454 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6455
6456 Fix compilation with --enable-gcc-warnings and -O1
6457 optimization level.
6458 * doprnt.c (doprnt): Change type of tem to int, initialize
6459 to avoid compiler warning. Add eassert.
6460 * search.c (simple_search): Initialize match_byte to avoid
6461 compiler warning. Add eassert.
6462
6463 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6464
6465 Avoid weird behavior with large horizontal scrolls.
6466 Without this change, for example, large hscroll values would
6467 mess up Emacs's display on Fedora 15 x86, presumably due to
6468 overflows in int calculations in the display code.
6469 Also, if buffers had long lines, Emacs would freeze.
6470 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
6471 (set_window_hscroll): New function, containing the old guts of
6472 Fset_window_hscroll. Return the clipped value.
6473 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
6474 This avoids the need to check against PTRDIFF_MAX.
6475
6476 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
6477
6478 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
6479
6480 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
6481
6482 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
6483
6484 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
6485 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
6486 since GCC 4.4.6 issues a bogus warning for them.
6487
6488 Fix bugs in file timestamp newness comparisons.
6489 * fileio.c (Ffile_newer_than_file_p):
6490 * lread.c (Fload): Use full timestamp resolution of files,
6491 not just the 1-second resolution, so that files that are only
6492 slightly newer still count as newer.
6493 * fileio.c (Ffile_newer_than_file_p): Don't assume file
6494 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
6495
6496 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
6497
6498 * fileio.c: Improve handling of file time marker. (Bug#11852)
6499 (special_mtime): New function.
6500 (Finsert_file_contents, Fverify_visited_file_modtime):
6501 Use it to set special mtime values consistently.
6502
6503 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
6504
6505 * fileio.c (Finsert_file_contents): Properly handle st_mtime
6506 marker for non-existing file. (Bug#11852)
6507
6508 2012-07-03 Glenn Morris <rgm@gnu.org>
6509
6510 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
6511 and did not make it into globals.h).
6512
6513 2012-07-03 Tom Tromey <tromey@redhat.com>
6514
6515 * window.c (Fset_window_margins, Fset_window_fringes)
6516 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
6517 * textprop.c (Fprevious_property_change): No longer static.
6518 * syntax.c (Fsyntax_table_p): No longer static.
6519 * process.c (Fget_process, Fprocess_datagram_address): No longer
6520 static.
6521 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
6522 * keyboard.c (Fcommand_execute): No longer static.
6523 Remove EXFUN.
6524 * insdel.c (Fcombine_after_change_execute): No longer static.
6525 * image.c (Finit_image_library): No longer static.
6526 * fileio.c (Fmake_symbolic_link): No longer static.
6527 * eval.c (Ffetch_bytecode): No longer static.
6528 * editfns.c (Fuser_full_name): No longer static.
6529 * doc.c (Fdocumentation_property, Fsnarf_documentation):
6530 No longer static.
6531 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
6532 static.
6533 * dired.c (Ffile_attributes): No longer static.
6534 * composite.c (Fcomposition_get_gstring): No longer static.
6535 * callproc.c (Fgetenv_internal): No longer static.
6536
6537 * ccl.h: Remove EXFUNs.
6538 * buffer.h: Remove EXFUNs.
6539 * dispextern.h: Remove EXFUNs.
6540 * intervals.h: Remove EXFUNs.
6541 * fontset.h: Remove EXFUN.
6542 * font.h: Remove EXFUNs.
6543 * dosfns.c (system_process_attributes): Remove EXFUN.
6544 * keymap.h: Remove EXFUNs.
6545 * lisp.h: Remove EXFUNs.
6546 * w32term.h: Remove EXFUNs.
6547 * window.h: Remove EXFUNs.
6548 * xsettings.h: Remove EXFUN.
6549 * xterm.h: Remove EXFUN.
6550
6551 2012-07-03 Glenn Morris <rgm@gnu.org>
6552
6553 * lisp.h (Frandom): Make it visible to C.
6554 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
6555 buffer for invisible buffers. (Bug#1229)
6556
6557 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6558
6559 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
6560 values which aren't power of 2.
6561 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
6562 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
6563 accordingly.
6564
6565 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
6566
6567 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
6568
6569 * alloc.c (mark_object): Revert part of last patch to use `switch'.
6570
6571 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6572
6573 * alloc.c (allocate_vector_block): Remove redundant
6574 calls to mallopt if DOUG_LEA_MALLOC is defined.
6575 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
6576 avoid calls to mallopt if zero_vector is returned.
6577
6578 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6579
6580 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
6581 is enabled, avoid dereferencing NULL current_sblock if
6582 running undumped.
6583
6584 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
6585
6586 Cleanup basic buffer management.
6587 * buffer.h (struct buffer): Change layout to use generic vector
6588 marking code. Fix some comments. Change type of 'clip_changed'
6589 to bitfield. Remove unused #ifndef old.
6590 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
6591 (GET_OVERLAYS_AT): Fix indentation.
6592 (for_each_per_buffer_object_at): New macro.
6593 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
6594 (Fbuffer_local_variables): Use it.
6595 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
6596 * alloc.c (allocate_buffer): Adjust to match new layout of
6597 struct buffer. Fix comment.
6598 (mark_overlay): New function.
6599 (mark_buffer): Use it. Use mark_vectorlike to mark normal
6600 Lisp area of struct buffer.
6601 (mark_object): Use it. Adjust marking of misc objects
6602 and related comments.
6603
6604 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
6605
6606 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
6607 wrapper that is not needed because the wrapped code is a no-op (zero
6608 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
6609 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
6610
6611 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
6612
6613 * alloc.c (mark_buffer): Simplify. Remove prototype.
6614 (mark_object): Add comment. Reorganize marking of vector-like
6615 objects. Use CHECK_LIVE for all vector-like objects except buffers
6616 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
6617 Avoid redundant calls to mark_vectorlike for bool vectors.
6618
6619 2012-06-30 Glenn Morris <rgm@gnu.org>
6620
6621 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
6622
6623 * epaths.in (PATH_SITELOADSEARCH): New.
6624 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
6625 This is rather than relying on --enable-locallisppath elements
6626 having "site-lisp" in their names. (Bug#10208#25, 11658)
6627
6628 2012-06-30 Eli Zaretskii <eliz@gnu.org>
6629
6630 * w32proc.c (sys_select): Accept and ignore one more argument.
6631
6632 * w32.c (emacs_gnutls_pull): Call select with one more argument.
6633
6634 * sysselect.h [DOS_NT]: Don't include sys/select.h.
6635 (pselect) [!MS_DOS]: Redirect to sys_select.
6636
6637 * sysdep.c: Don't include dos.h and dosfns.h.
6638
6639 * process.c (sys_select):
6640 * msdos.c (sys_select): Accept one more argument and ignore it.
6641
6642 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
6643 adapt data types and code to that.
6644
6645 * dosfns.c:
6646 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
6647 which clashes with the gnulib function of the same name.
6648
6649 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
6650
6651 * font.c (font_style_to_value, font_style_symbolic)
6652 (font_prop_validate_style): Add type checks for values in
6653 font_style_table.
6654
6655 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
6656 argument.
6657 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
6658 uses.
6659
6660 2012-06-29 Eli Zaretskii <eliz@gnu.org>
6661
6662 * xdisp.c (try_window_id): Undo last change.
6663
6664 * w32.c (getwd): Adjust commentary about startup_dir.
6665 (init_environment): Always call sys_access, even in non-MSVC
6666 builds. Don't chdir to the directory of the Emacs executable.
6667 This undoes code from 1997 which was justified by the need to
6668 "avoid conflicts when removing and renaming directories". But its
6669 downside was that every relative file name was being interpreted
6670 relative to the directory of the Emacs executable, which can never
6671 be TRT. In particular, it broke sys_access when called with
6672 relative file names.
6673 (sys_access): Map GetLastError to errno.
6674
6675 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6676
6677 * window.h (struct window): Change type of 'fringes_outside_margins'
6678 to bitfield. Fix comment. Adjust users accordingly.
6679 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
6680 Adjust comment.
6681 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
6682 to ptrdiff_t.
6683
6684 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
6685
6686 * gnutls.c (emacs_gnutls_handshake):
6687 Add QUIT to make the loop interruptible.
6688
6689 2012-06-29 Glenn Morris <rgm@gnu.org>
6690
6691 * charset.c (init_charset): Make lack of etc/charsets fatal.
6692
6693 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6694
6695 * editfns.c (region_limit): Fix type mismatch.
6696
6697 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
6698
6699 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
6700 undefined. Convert from xassert to eassert.
6701 * nsmenu.m: Convert from xassert to eassert.
6702 * nsterm.m: Likewise.
6703
6704 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
6705
6706 * editfns.c (region_limit): Clip to narrowing (bug#11770).
6707
6708 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
6709
6710 Avoid integer overflow on scroll-left and scroll-right.
6711 * window.c (HSCROLL_MAX): New macro.
6712 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
6713 overflow when requested scroll falls outside ptrdiff_t range.
6714
6715 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6716
6717 * window.h (struct window): Change type of 'hscroll',
6718 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
6719 'last_modified' and 'last_overlay_modified' to EMACS_INT.
6720 Adjust users accordingly.
6721 * xdisp.c (try_cursor_movement): Replace type check with eassert.
6722 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
6723 from EMACS_INT to ptrdiff_t.
6724 (make_window): Omit redundant initialization.
6725
6726 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
6727
6728 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
6729
6730 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6731
6732 * window.h (struct window): Change type of 'use_time' and
6733 'sequence_number' from Lisp_Object to int.
6734 * frame.c (make_frame): Adjust users accordingly.
6735 * print.c (print_object): Likewise.
6736 * window.c (select_window, Fwindow_use_time, make_parent_window)
6737 (make_window): Likewise.
6738
6739 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6740
6741 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
6742 enabled with --enable-checking=[all,glyphs] configure option.
6743 Fix GLYPH_DEBUG usage assuming that it may be undefined,
6744 adjust comments accordingly.
6745 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
6746 undefined, adjust comments accordingly.
6747 * image.c: Likewise.
6748 * scroll.c: Likewise.
6749 * w32fns.c: Likewise.
6750 * w32term.c: Likewise.
6751 * xdisp.c: Likewise.
6752 * xfaces.c: Likewise.
6753 * xfns.c: Likewise.
6754 * xterm.c: Likewise.
6755
6756 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
6757
6758 Generalize run-time debugging checks.
6759 * dispextern.h (XASSERTS): Remove.
6760 * fontset.c (xassert): Remove.
6761 Convert from xassert to eassert.
6762 * alloc.c: Convert from xassert to eassert.
6763 * bidi.c: Likewise.
6764 * dispnew.c: Likewise.
6765 * fns.c: Likewise.
6766 * fringe.c: Likewise.
6767 * ftfont.c: Likewise.
6768 * gtkutil.c: Likewise.
6769 * image.c: Likewise.
6770 * keyboard.c: Likewise.
6771 * menu.c: Likewise.
6772 * process.c: Likewise.
6773 * scroll.c: Likewise.
6774 * sound.c: Likewise.
6775 * term.c: Likewise.
6776 * w32console.c: Likewise.
6777 * w32fns.c: Likewise.
6778 * w32term.c: Likewise.
6779 * window.c: Likewise.
6780 * xdisp.c: Likewise.
6781 * xfaces.c: Likewise.
6782 * xfns.c: Likewise.
6783 * xselect.c: Likewise.
6784 * xterm.c: Likewise.
6785
6786 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
6787
6788 * fns.c (maybe_resize_hash_table): Output message when growing the
6789 purify-hashtable.
6790
6791 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6792
6793 * alloc.c (allocate_string_data): Remove dead code.
6794 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
6795 avoid GCC warning about unused macro.
6796
6797 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6798
6799 * alloc.c (allocate_string): Omit intervals initialization.
6800 * alloc.c (make_uninit_multibyte_string): Initialize intervals
6801 as in make_pure_string and make_pure_c_string.
6802
6803 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6804
6805 * alloc.c (allocate_string): Fix last change.
6806
6807 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
6808
6809 * alloc.c (allocate_string): Remove two redundant calls
6810 to memset, add explicit initialization where appropriate.
6811
6812 2012-06-27 Glenn Morris <rgm@gnu.org>
6813
6814 * lisp.mk (lisp): Remove paths.elc.
6815
6816 2012-06-27 Chong Yidong <cyd@gnu.org>
6817
6818 * doc.c (Fsubstitute_command_keys): Fix punctuation.
6819
6820 2012-06-26 John Wiegley <johnw@newartisans.com>
6821
6822 * unexmacosx.c (copy_data_segment): Add two section names used
6823 on Mac OS X Lion: __mod_init_func and __mod_term_func.
6824
6825 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
6826 when building with Clang.
6827
6828 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
6829
6830 * eval.c (Fapply): Allow calling it with a single argument.
6831
6832 2012-06-26 Eli Zaretskii <eliz@gnu.org>
6833
6834 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
6835 _stricmp and _strnicmp.
6836 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
6837
6838 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6839
6840 * alloc.c (allocate_window): Zero out non-Lisp part of newly
6841 allocated window.
6842 (allocate_process): Likewise for new process.
6843 (allocate_terminal): Change to use offsetof.
6844 (allocate_frame): Likewise.
6845 * frame.c (make_frame): Omit redundant initialization.
6846 * window.c (make_parent_window): Use memset.
6847 (make_window): Omit redundant initialization.
6848 * process.c (make_process): Omit redundant initialization.
6849 * terminal.c (create_terminal): Likewise.
6850
6851 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6852
6853 * term.c (delete_tty): Remove redundant call to memset.
6854
6855 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
6856
6857 * alloc.c: Remove build_string.
6858 * lisp.h: Define build_string as static inline. This provides
6859 a better opportunity to optimize away calls to strlen when the
6860 function is called with compile-time constant argument.
6861 * image.c (imagemagick_error): Convert to build_string.
6862 * w32proc.c (sys_spawnve): Likewise.
6863 * xterm.c (x_term_init): Likewise.
6864
6865 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
6866
6867 Use sprintf return value instead of invoking strlen on result.
6868 In the old days this wasn't portable, since some sprintf
6869 implementations returned char *. But they died out years ago and
6870 Emacs already assumes sprintf returns int.
6871 Similarly for float_to_string.
6872 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
6873 * ccl.c (ccl_driver):
6874 * character.c (string_escape_byte8):
6875 * data.c (Fnumber_to_string):
6876 * doprnt.c (doprnt):
6877 * print.c (print_object):
6878 * xdisp.c (message_dolog):
6879 * xfns.c (syms_of_xfns):
6880 Use sprintf or float_to_string result to avoid need to call strlen.
6881 * data.c (Fnumber_to_string):
6882 Use make_unibyte_string, since the string must be ASCII.
6883 * lisp.h, print.c (float_to_string): Now returns int length.
6884 * term.c (produce_glyphless_glyph):
6885 Use sprintf result rather than recomputing it.
6886
6887 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
6888 * Makefile.in (ALL_CFLAGS):
6889 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
6890 * gmalloc.c, regex.c: Include <config.h> unconditionally.
6891
6892 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6893
6894 * dispextern.h (xstrcasecmp): Define to library function
6895 strcasecmp if available.
6896 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
6897
6898 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
6899
6900 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
6901 Avoid comma operator.
6902 * menu.c (push_submenu_start, push_submenu_end)
6903 (push_left_right_boundary, push_menu_pane): Likewise.
6904 * msdos.c (dos_rawgetc): Likewise.
6905
6906 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6907
6908 * xfns.c (xic_create_fontsetname): Remove redundant calls
6909 to memset.
6910
6911 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
6912
6913 * gtkutil.c (get_utf8_string): Remove redundant assignment.
6914 sprintf already null-terminates its output.
6915
6916 * xfns.c (x_window): Remove redundant cast.
6917
6918 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
6919
6920 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
6921 `const char *' to `char *' to avoid compiler warning.
6922
6923 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6924
6925 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
6926 instead of truncating it to 63 (admittedly a generous limit).
6927
6928 * process.c: Fix spelling and caps in comments.
6929
6930 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
6931
6932 * emacs.c (setpgrp): Remove definition, unused.
6933 * sysdep.c (setpgrp): Remove definition, not used in this file.
6934
6935 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
6936
6937 * makefile.w32-in: Update dependencies.
6938
6939 2012-06-24 Eli Zaretskii <eliz@gnu.org>
6940
6941 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
6942 (SYSTIME_H): Add nt/inc/sys/time.h.
6943
6944 * systime.h [WINDOWSNT]: Include sys/time.h.
6945
6946 * s/ms-w32.h (struct timespec): Definition moved from
6947 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
6948
6949 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6950
6951 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
6952 * buffer.h (buffer_slot_type_mismatch):
6953 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
6954 * eval.c (unwind_to_catch):
6955 * image.c (my_png_error, my_error_exit):
6956 * keyboard.c (quit_throw_to_read_char, user_error)
6957 (Fexit_recursive_edit, Fabort_recursive_edit):
6958 * lisp.h (die, args_out_of_range, args_out_of_range_3)
6959 (wrong_type_argument, buffer_overflow, __executable_start)
6960 (memory_full, buffer_memory_full, string_overflow, Fthrow)
6961 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
6962 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
6963 (fatal):
6964 (child_setup) [!DOS_NT]:
6965 * lread.c (end_of_file_error, invalid_syntax):
6966 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
6967 * puresize.h (pure_write_error):
6968 * search.c (matcher_overflow):
6969 * sound.c (sound_perror, alsa_sound_perror):
6970 * sysdep.c, syssignal.h (croak):
6971 * term.c (maybe_fatal, vfatal):
6972 * textprop.c (text_read_only):
6973 * undo.c (user_error):
6974 * unexmacosx.c (unexec_error):
6975 * xterm.c (x_ins_del_lines, x_delete_glyphs):
6976 Use _Noreturn rather than NO_RETURN.
6977 No need for separate decl merely because of _Noreturn.
6978 * sound.c (sound_warning, parse_sound):
6979 Remove unnecessary forward decls.
6980
6981 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
6982
6983 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
6984 * lisp.h (WAIT_READING_MAX): New macro.
6985 * dispnew.c (Fsleep_for, sit_for):
6986 * keyboard.c (kbd_buffer_get_event):
6987 * process.c (Faccept_process_output):
6988 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
6989 This improves on the previous patch, which introduced a bug
6990 when time_t is unsigned and as wide as intmax_t.
6991 See <http://bugs.gnu.org/9000#51>.
6992
6993 2012-06-23 Eli Zaretskii <eliz@gnu.org>
6994
6995 * dispnew.c (sit_for, Fsleep_for):
6996 * keyboard.c (kbd_buffer_get_event):
6997 * process.c (Faccept_process_output): Avoid compiler warnings when
6998 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
6999
7000 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
7001
7002 * makefile.w32-in: Update dependencies.
7003
7004 * w32.c (ltime): Add return type and declare static.
7005 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
7006
7007 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
7008
7009 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
7010 Privately reported by Herbert J. Skuhra.
7011 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
7012 All uses changed.
7013 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
7014 not make_lisp_timeval, when the argument is of type EMACS_TIME.
7015
7016 2012-06-23 Eli Zaretskii <eliz@gnu.org>
7017
7018 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
7019 last argument of make_unibyte_string.
7020
7021 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
7022 language ID in the event parameters.
7023
7024 * w32term.c (w32_read_socket): Put the new keyboard codepage into
7025 event.code, not the obscure "character set ID".
7026
7027 2012-06-23 Chong Yidong <cyd@gnu.org>
7028
7029 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
7030
7031 2012-06-23 Eli Zaretskii <eliz@gnu.org>
7032
7033 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
7034 * w32.c (fdutimens): New function.
7035
7036 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
7037
7038 * s/ms-w32.h (pselect): Redirect to sys_select.
7039
7040 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
7041
7042 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
7043 in the logic of incrementing and decrementing the value of
7044 use_relocatable_buffers.
7045
7046 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
7047
7048 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
7049 Privately reported by Herbert J. Skuhra.
7050 [__FreeBSD__]: Remove "*/" typo after "#include".
7051 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
7052 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
7053 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
7054 Don't assume EMACS_TIME and struct timeval are the same type.
7055
7056 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
7057
7058 Support higher-resolution time stamps (Bug#9000).
7059 The time stamps are only nanosecond-resolution at the C level,
7060 since that's the best that any real-world system supports now.
7061 But they are picosecond-resolution at the Lisp level, as that's
7062 easy, and leaves room for future OS improvements.
7063
7064 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
7065 (LIBES): Use it.
7066
7067 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
7068 Don't get current time unless it's needed.
7069
7070 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
7071 now provides it if it's absent.
7072 (start_atimer): Port to higher-res time stamps.
7073 Check for time stamp overflow. Don't get current time more
7074 often than is needed.
7075
7076 * buffer.h (struct buffer): Buffer modtime now has high resolution.
7077 Include systime.h, not time.h.
7078 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
7079
7080 * dired.c: Include stat-time.h.
7081 (Ffile-attributes): File times now have higher resolution.
7082
7083 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
7084 (struct image): Timestamp now has higher resolution.
7085
7086 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
7087 has at least microseconds now. All uses removed.
7088 (update_frame, update_single_window, update_window, update_frame_1)
7089 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
7090 (duration_to_sec_usec): Remove; no longer needed.
7091
7092 * editfns.c (time_overflow): Now extern.
7093 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
7094 (float-time, Fformat_time_string, Fcurrent_time_string)
7095 (Fcurrent_time_zone): Accept and generate higher-resolution
7096 time stamps.
7097 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
7098 (decode_time_components, lisp_seconds_argument): New functions.
7099 (make_time): Now static.
7100 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
7101 Report an error if the time is invalid, rather than having the caller
7102 do that.
7103
7104 * fileio.c: Include <stat-time.h>
7105 (Fcopy_file): Copy higher-resolution time stamps.
7106 Prefer to set the time stamp via a file descriptor if that works.
7107 (Fset_file_times, Finsert_file_contents, Fwrite_region)
7108 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
7109 (Fvisited_file_modtime, Fset_visited_file_modtime):
7110 Support higher-resolution time stamps.
7111
7112 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
7113
7114 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
7115
7116 * image.c (prepare_image_for_display, clear_image_cache)
7117 (lookup_image): Port to higer-resolution time stamps.
7118
7119 * keyboard.c (start_polling, bind_polling_period):
7120 Check for time stamp overflow.
7121 (read_char, kbd_buffer_get_event, timer_start_idle)
7122 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
7123 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
7124 Port to higher-resolution time stamps. Do not assume time_t is signed.
7125 (decode_timer): New function. Timers are now vectors of length 9,
7126 not 8, to accommodate the picosecond component.
7127 (timer_check_2): Use it.
7128
7129 * nsterm.m (select_timeout, timeval_subtract): Remove.
7130 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
7131 as they're a bit more accurate and handle overflow better.
7132 (ns_select): Change prototype to be compatible with pselect.
7133 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
7134 * nsterm.h (ns_select): Adjust prototype.
7135
7136 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
7137 us-resolution time stamps.
7138 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
7139
7140 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
7141
7142 * lisp.h (time_overflow): New decl.
7143 (wait_reading_process_output): First arg is now intmax_t, not int,
7144 to accommodate larger waits.
7145
7146 * process.h (struct Lisp_Process.read_output_delay):
7147 Now counts nanoseconds, not microseconds.
7148 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
7149 EMACS_HAS_USECS.
7150 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
7151 (wait_reading_process_output):
7152 Port to ns-resolution time stamps.
7153 (Faccept_process_output, wait_reading_process_output):
7154 Check for time stamp overflow. Do not assume time_t is signed.
7155 (select_wrapper): Remove; we now use pselect.
7156 (Fprocess_attributes): Now generates ns-resolution time stamps.
7157
7158 * sysdep.c: Include utimens.h. Don't include utime.h
7159 or worry about struct utimbuf; gnulib does that for us now.
7160 (gettimeofday): Remove; gnulib provides a substitute.
7161 (make_timeval): New function.
7162 (set_file_times): Now sets ns-resolution time stamps.
7163 New arg FD; all uses changed.
7164 (time_from_jiffies, ltime_from_jiffies, get_up_time)
7165 (system_process_attributes):
7166 Now returns ns-resolution time stamp. All uses changed.
7167 Check for time stamp overflow.
7168
7169 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
7170 provides a substitute now.
7171
7172 * systime.h: Include timespec.h rather than sys/time.h and time.h,
7173 since it guarantees struct timespec.
7174 (EMACS_TIME): Now struct timespec, so that we can support
7175 ns-resolution time stamps.
7176 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
7177 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
7178 (EMACS_USECS): Remove.
7179 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
7180 so multiply the arg by 1000 before storing it.
7181 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
7182 New macros.
7183 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
7184 Port to ns-resolution time stamps.
7185 (EMACS_TIME_NEG_P): Remove; replaced by....
7186 (EMACS_TIME_SIGN): New macro.
7187 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
7188 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
7189 (set_file_times, make_time, lisp_time_argument): Adjust signature.
7190 (make_timeval, make_lisp_time, decode_time_components): New decls.
7191 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
7192 that it mishandled time_t overflow. You can't compare by subtracting!
7193 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
7194 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
7195
7196 * term.c: Include <sys/time.h>.
7197 (timeval_to_Time): New function, for proper overflow wraparound.
7198 (term_mouse_position, term_mouse_click): Use it.
7199
7200 * undo.c (record_first_change): Support higher-resolution time stamps
7201 in the undo buffer.
7202 (Fprimitive_undo): Use them when restoring time stamps.
7203
7204 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
7205 (w32_get_internal_run_time):
7206 Port to higher-resolution Emacs time stamps.
7207 (ltime): Now accepts single 64-bit integer, as that's more convenient
7208 for callers.
7209
7210 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
7211
7212 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
7213 for compatibility with pselect. Support ns-resolution time stamps.
7214
7215 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
7216
7217 * xselect.c (wait_for_property_change, x_get_foreign_selection):
7218 Check for time stamp overflow, and support ns-resolution time stamps.
7219
7220 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
7221 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
7222 (timeval_subtract): Remove; no longer needed.
7223 (XTflash, XTring_bell, x_wait_for_event):
7224 Port to ns-resolution time stamps. Don't assume time_t is signed.
7225
7226 2012-06-22 Chong Yidong <cyd@gnu.org>
7227
7228 * xdisp.c (x_consider_frame_title): Revert last change.
7229
7230 2012-06-22 Eli Zaretskii <eliz@gnu.org>
7231
7232 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
7233 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
7234 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
7235 staticidx goes up to 1597 out of 1600 = 0x640.)
7236
7237 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
7238
7239 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
7240 Otherwise, the umask might be mistakenly 0 while handling input signals.
7241
7242 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
7243
7244 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
7245
7246 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
7247
7248 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
7249 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
7250 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
7251 access to `contents' member of Lisp_Vector objects with AREF and ASET
7252 where appropriate.
7253
7254 2012-06-19 Chong Yidong <cyd@gnu.org>
7255
7256 * frame.c (delete_frame): When selecting a frame on a different
7257 text terminal, do not alter the terminal's top-frame.
7258
7259 * xdisp.c (format_mode_line_unwind_data): Record the target
7260 frame's selected window and its terminal's top-frame.
7261 (unwind_format_mode_line): Restore them.
7262 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
7263 Callers changed.
7264 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
7265 since tty frames can be explicitly named.
7266 (prepare_menu_bars): Likewise.
7267
7268 * term.c (Ftty_top_frame): New function.
7269
7270 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
7271
7272 Port byte-code-meter to modern targets.
7273 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
7274 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
7275 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
7276 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
7277 (METER_1, METER_2): Simplify.
7278
7279 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
7280
7281 * data.c (Fdefalias): Return `symbol' (bug#11686).
7282
7283 2012-06-18 Martin Rudalics <rudalics@gmx.at>
7284
7285 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
7286 gets killed during executing of this function (Bug#11665).
7287 Try to always return Qt when the buffer has been actually killed.
7288 (Vkill_buffer_query_functions): In doc-string say that functions
7289 run by this hook should not change the current buffer.
7290
7291 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
7292
7293 Fix recently-introduced process.c problems found by static checking.
7294 * process.c (write_queue_push, write_queue_pop, send_process):
7295 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
7296 (write_queue_pop): Fix pointer signedness problem.
7297 (send_process): Remove unused local.
7298
7299 2012-06-17 Chong Yidong <cyd@gnu.org>
7300
7301 * xdisp.c (redisplay_internal): No need to redisplay terminal
7302 frames that are not on top.
7303
7304 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
7305
7306 * process.c (make_process): Initialize write_queue.
7307 (write_queue_push, write_queue_pop): New functions.
7308 (send_process): Use them to maintain correct ordering of process
7309 writes (Bug#10815).
7310
7311 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
7312
7313 * lisp.h (eassert): Assume C89 or later.
7314 This removes the need for CHECK.
7315 (CHECK): Remove. Its comments about always evaluating its
7316 argument were confusing, as 'eassert' typically does not evaluate
7317 its argument.
7318
7319 * coding.c (produce_chars): Use ptrdiff_t, not int.
7320
7321 * xterm.c (x_draw_underwave): Check for integer overflow.
7322 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
7323
7324 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
7325
7326 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
7327 referenced (Bug#11583).
7328
7329 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
7330
7331 Implement wave-style variant of underlining.
7332 * dispextern.h (face_underline_type): New enum.
7333 (face): Add field for underline type.
7334 * nsterm.m (ns_draw_underwave): New function.
7335 (ns_draw_text_decoration): Use it.
7336 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
7337 New functions.
7338 (x_draw_glyph_string): Use them.
7339 * xfaces.c (Qline, Qwave): New Lisp objects.
7340 (check_lface_attrs, merge_face_ref)
7341 (Finternal_set_lisp_face_attribute, realize_x_face):
7342 Handle wave-style underline face attributes.
7343 * xterm.c (x_draw_underwave): New function.
7344 (x_draw_glyph_string): Use it.
7345
7346 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
7347
7348 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
7349 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
7350 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
7351 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
7352 ($(BLD)/w32select.$(O)): Update dependencies.
7353
7354 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
7355
7356 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
7357 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
7358 * character.c (_fetch_multibyte_char_p): Remove.
7359 * alloc.c: Include "character.h" before "buffer.h".
7360 * bidi.c: Likewise.
7361 * buffer.c: Likewise.
7362 * bytecode.c: Likewise.
7363 * callint.c: Likewise.
7364 * callproc.c: Likewise.
7365 * casefiddle.c: Likewise.
7366 * casetab.c: Likewise.
7367 * category.c: Likewise.
7368 * cmds.c: Likewise.
7369 * coding.c: Likewise.
7370 * composite.c: Likewise.
7371 * dired.c: Likewise.
7372 * dispnew.c: Likewise.
7373 * doc.c: Likewise.
7374 * dosfns.c: Likewise.
7375 * editfns.c: Likewise.
7376 * emacs.c: Likewise.
7377 * fileio.c: Likewise.
7378 * filelock.c: Likewise.
7379 * font.c: Likewise.
7380 * fontset.c: Likewise.
7381 * fringe.c: Likewise.
7382 * indent.c: Likewise.
7383 * insdel.c: Likewise.
7384 * intervals.c: Likewise.
7385 * keyboard.c: Likewise.
7386 * keymap.c: Likewise.
7387 * lread.c: Likewise.
7388 * macros.c: Likewise.
7389 * marker.c: Likewise.
7390 * minibuf.c: Likewise.
7391 * nsfns.m: Likewise.
7392 * nsmenu.m: Likewise.
7393 * print.c: Likewise.
7394 * process.c: Likewise.
7395 * regex.c: Likewise.
7396 * region-cache.c: Likewise.
7397 * search.c: Likewise.
7398 * syntax.c: Likewise.
7399 * term.c: Likewise.
7400 * textprop.c: Likewise.
7401 * undo.c: Likewise.
7402 * unexsol.c: Likewise.
7403 * w16select.c: Likewise.
7404 * w32fns.c: Likewise.
7405 * w32menu.c: Likewise.
7406 * window.c: Likewise.
7407 * xdisp.c: Likewise.
7408 * xfns.c: Likewise.
7409 * xmenu.c: Likewise.
7410 * xml.c: Likewise.
7411 * xselect.c: Likewise.
7412
7413 2012-06-16 Eli Zaretskii <eliz@gnu.org>
7414
7415 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
7416 If all the glyphs of the glyph row came from strings, and we have no
7417 cursor positioning clues, put the cursor on the first glyph of the
7418 row.
7419 (handle_face_prop): Use chunk-relative overlay string index when
7420 indexing into it->string_overlays array. (Bug#11653)
7421 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
7422 the rightmost. (Bug#11720)
7423
7424 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
7425
7426 * category.h (CHAR_HAS_CATEGORY): Define as inline.
7427 (CATEGORY_MEMBER): Enforce 1/0 value.
7428 * category.c (_temp_category_set): Remove.
7429
7430 2012-06-16 Eli Zaretskii <eliz@gnu.org>
7431
7432 * window.c (Fdelete_other_windows_internal)
7433 (Fdelete_window_internal): Don't access frame's mouse highlight
7434 info of the initial frame. (Bug#11677)
7435
7436 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
7437
7438 * .gdbinit (xgetint): Fix recently-introduced paren typo.
7439 Assume USE_2_TAGS_FOR_INTS.
7440 (xreload): Adjust $tagmask width to match recent lisp.h change.
7441
7442 Simplify lisp.h in minor ways that should not affect code.
7443 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
7444 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
7445 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
7446 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
7447 (INTTYPEBITS): New macro, for clarity.
7448 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
7449 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
7450 Simplify now that USE_LSB_TAG is always defined.
7451 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
7452 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
7453
7454 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
7455
7456 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
7457
7458 2012-06-13 Glenn Morris <rgm@gnu.org>
7459
7460 * s/bsd-common.h (BSD4_3):
7461 * s/usg5-4-common.h (USG5_4): No longer define; unused.
7462
7463 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
7464
7465 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
7466 instead of union.
7467 (XLI, XIL): Define.
7468 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
7469 Use them.
7470 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
7471 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
7472 * alloc.c (widen_to_Lisp_Object): Remove.
7473 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
7474 * frame.c (delete_frame): Remove outdated comment.
7475 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
7476 USE_LISP_UNION_TYPE.
7477 (Fw32_unregister_hot_key): Likewise.
7478 (Fw32_toggle_lock_key): Likewise.
7479 * w32menu.c (add_menu_item): Likewise.
7480 (w32_menu_display_help): Use XIL instead of checking
7481 USE_LISP_UNION_TYPE.
7482 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
7483 (init_heap): Likewise.
7484 * w32term.c (w32_read_socket): Update comment.
7485
7486 2012-06-13 Glenn Morris <rgm@gnu.org>
7487
7488 * s/usg5-4-common.h, src/s/unixware.h:
7489 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
7490
7491 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
7492
7493 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
7494
7495 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
7496 * alloc.c (make_number) [!defined make_number]:
7497 Remove, as lisp.h always defines this now.
7498 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
7499 (roundup_size): Verify that it is a power of 2.
7500 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
7501 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
7502 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
7503 -DUSE_LSB_TAG=0, to override the automatically-selected default.
7504 USE_LSB_TAG now is always defined to be either 0 or 1.
7505 All uses changed.
7506 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
7507 code works fine either way, and efficiency is not a concern here,
7508 as the union type is for debugging, not for production.
7509 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
7510 Use an inline function on all platforms when using the union type,
7511 since this is simpler and 'static inline' can be used portably
7512 within Emacs now.
7513 (LISP_INITIALLY_ZERO): New macro.
7514 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
7515 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
7516
7517 2012-06-12 Glenn Morris <rgm@gnu.org>
7518
7519 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
7520
7521 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
7522
7523 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
7524 Move BROKEN_SIGIO to configure.
7525
7526 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
7527 Move NO_TERMIO to configure.
7528
7529 2012-06-12 Chong Yidong <cyd@gnu.org>
7530
7531 * image.c (imagemagick_load_image): Use MagickFlattenImage if
7532 MagickMergeImageLayers is undefined. Use pixel pusher loop if
7533 MagickExportImagePixels is undefined.
7534
7535 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
7536
7537 * image.c (imagemagick_load_image): Remove unused label.
7538
7539 2012-06-11 Glenn Morris <rgm@gnu.org>
7540
7541 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
7542 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
7543 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
7544 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
7545
7546 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
7547
7548 * alloc.c (make_byte_code): New function.
7549 (Fmake_byte_code): Use it. Don't purify here.
7550 * lread.c (read1): Use it as well to avoid extra allocation.
7551
7552 2012-06-11 Chong Yidong <cyd@gnu.org>
7553
7554 * image.c (imagemagick_load_image): Implement transparency.
7555
7556 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
7557
7558 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
7559 account for preceding backslashes. (Bug#11663)
7560
7561 2012-06-09 Chong Yidong <cyd@gnu.org>
7562
7563 * term.c: Support italics in capable terminals (Bug#9652).
7564 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
7565 (turn_on_face): Output using TS_enter_italic_mode if available.
7566 Don't handle unused blinking and alt-charset cases.
7567 (turn_off_face): Handle italic case; discard unused tty_blinking_p
7568 and tty_alt_charset_p cases.
7569 (tty_capable_p, init_tty): Support italics.
7570
7571 * termchar.h (struct tty_display_info): Add field for italics.
7572 Remove unused blink field.
7573
7574 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
7575 Handle slant.
7576
7577 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
7578 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
7579 tty_alt_charset_p. Add tty_italic_p.
7580
7581 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
7582
7583 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
7584 dbus_type_is_basic if available.
7585 (xd_extract_signed, xd_extract_unsigned): Rename from
7586 extract_signed and extract_unsigned, respectively. Adapt callers.
7587
7588 2012-06-09 Chong Yidong <cyd@gnu.org>
7589
7590 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
7591
7592 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
7593 case (Bug#9752).
7594
7595 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
7596
7597 * xdisp.c (vmessage): Treat frame message as multibyte.
7598 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
7599 would generate the diagnostic "Making \302\247 buffer-local while
7600 let-bound!".
7601
7602 2012-06-08 Eli Zaretskii <eliz@gnu.org>
7603
7604 * dispnew.c (showing_window_margins_p): Undo last change, which
7605 was done due to an inadvertent commit.
7606 (adjust_frame_glyphs_for_frame_redisplay): Do call
7607 showing_window_margins_p.
7608
7609 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7610
7611 * eval.c (Fmake_var_non_special): New primitive.
7612 (syms_of_eval): Defsubr it.
7613 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
7614
7615 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
7616
7617 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
7618 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
7619
7620 2012-06-08 Eli Zaretskii <eliz@gnu.org>
7621
7622 * alloc.c (allocate_vectorlike): Fix last change.
7623
7624 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
7625
7626 Block-based vector allocation of small vectors.
7627 * lisp.h (struct vectorlike_header): New field `nbytes',
7628 adjust comment accordingly.
7629 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
7630 to denote vector blocks. Adjust users (live_vector_p,
7631 mark_maybe_pointer, valid_lisp_object_p) accordingly.
7632 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
7633 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
7634 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
7635 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
7636 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
7637 (roundup_size): New constant.
7638 (struct vector_block): New data type.
7639 (vector_blocks, vector_free_lists, zero_vector): New variables.
7640 (all_vectors): Rename to `large_vectors'.
7641 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
7642 (sweep_vectors): New functions.
7643 (allocate_vectorlike): Return `zero_vector' as the only vector of
7644 0 items. Allocate new vector from block if vector size is less than
7645 or equal to VBLOCK_BYTES_MAX.
7646 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
7647 (init_alloc_once): Add call to init_vectors.
7648
7649 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
7650
7651 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
7652
7653 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
7654
7655 * doprnt.c (doprnt): Truncate multibyte char correctly.
7656 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
7657 would mishandle a string argument "Xc" if X was a multibyte
7658 character of length 2: it would truncate after X's first byte
7659 rather than including all of X.
7660
7661 2012-06-06 Chong Yidong <cyd@gnu.org>
7662
7663 * buffer.c (word_wrap): Doc fix.
7664
7665 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
7666
7667 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
7668
7669 2012-06-03 Glenn Morris <rgm@gnu.org>
7670
7671 * xdisp.c (tool-bar-style): Doc fix.
7672
7673 2012-06-03 Ulrich Müller <ulm@gentoo.org>
7674
7675 * Makefile.in (PAXCTL): Define.
7676 (temacs$(EXEEXT)): Disable memory randomization for the temacs
7677 binary via PaX flags if the paxctl utility is available.
7678 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7679 Restore PaX flags to their default. (Bug#11398)
7680
7681 2012-06-03 Chong Yidong <cyd@gnu.org>
7682
7683 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
7684 buffer (Bug#11226).
7685
7686 2012-06-03 Chong Yidong <cyd@gnu.org>
7687
7688 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
7689 (note_mode_line_or_margin_highlight): If there is no help echo,
7690 use mode-line-default-help-echo. Handle the case where the mouse
7691 position is past the end of the mode line string.
7692
7693 * buffer.c (buffer_local_value_1): New function, split from
7694 Fbuffer_local_value; can return Qunbound.
7695 (Fbuffer_local_value): Use it.
7696 (Vmode_line_format): Docstring tweaks.
7697
7698 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
7699
7700 * sysdep.c (system_process_attributes): Improve comment.
7701
7702 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
7703
7704 * keyboard.c: Export real-this-command to Elisp.
7705 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
7706 and DEFVAR it. Update all users.
7707
7708 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
7709
7710 * minibuf.c (Fassoc_string): Remove duplicate declaration.
7711
7712 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
7713 Convert pctcpu and pctmem to Lisp float properly.
7714 Let the compiler fold better, as 100.0/0x8000 is exact.
7715
7716 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
7717
7718 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
7719 cons_block.
7720
7721 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
7722
7723 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
7724
7725 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
7726
7727 For a 'struct window', replace some Lisp_Object fields to
7728 bitfields where appropriate, remove unused fields.
7729 * window.h (struct window): Remove unused 'last_mark_x' and
7730 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
7731 change its type from Lisp_Object to bitfield.
7732 Change type of 'force_start', 'optional_new_start',
7733 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
7734 fields from Lisp_Object to bitfield. Adjust users accordingly.
7735
7736 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
7737
7738 Pacify gcc -Wdouble-precision when using Xaw.
7739 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
7740 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
7741 Use 'float' consistently, rather than 'float' in most places
7742 and 'double' in a couple of places.
7743
7744 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7745
7746 * xdisp.c (handle_stop): Detect whether we have overlay strings
7747 loaded by testing it->current.overlay_string_index to be
7748 non-negative, instead of checking whether n_overlay_strings is
7749 positive. (Bug#11587)
7750
7751 2012-05-31 Chong Yidong <cyd@gnu.org>
7752
7753 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
7754
7755 * doc.c (Fsubstitute_command_keys): Doc fix.
7756
7757 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7758
7759 * search.c (search_buffer): Remove calls to
7760 r_alloc_inhibit_buffer_relocation, as it is now called by
7761 maybe_unify_char, which was the cause of relocation of buffer text
7762 in bug#11519.
7763
7764 2012-05-31 Eli Zaretskii <eliz@gnu.org>
7765
7766 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
7767 for the duration of call to load_charset, to avoid problems with
7768 callers of maybe_unify_char that access buffer text through C
7769 pointers.
7770
7771 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
7772 decrement the inhibition flag, instead of just setting or
7773 resetting it.
7774
7775 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
7776
7777 Remove obsolete '#define static' cruft.
7778 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
7779 This #undef was "temporary" in 2000; it is no longer needed
7780 now that '#define static' has gone away.
7781 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
7782 (gray_bitmap_bits): Remove; no longer needed.
7783 All uses replaced with definiens.
7784 * xterm.c: Include "bitmaps/gray.xbm".
7785
7786 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
7787
7788 Clean up __executable_start, monstartup when --enable-profiling.
7789 The following changes affect the code only when profiling.
7790 * dispnew.c (__executable_start): Rename from safe_bcopy.
7791 Define only on platforms that need it.
7792 * emacs.c: Include <sys/gmon.h> when profiling.
7793 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
7794 (__executable_start): Remove decl, since lisp.h does it now.
7795 (safe_bcopy): Remove decl; no longer has that name.
7796 (main): Coalesce #if into single bit of code, for simplicity.
7797 Cast pointers to uintptr_t, since standard libraries want integers
7798 and not pointers.
7799 * lisp.h (__executable_start): New decl.
7800
7801 2012-05-31 Glenn Morris <rgm@gnu.org>
7802
7803 * image.c (Fimagemagick_types): Doc fix.
7804
7805 2012-05-30 Jim Meyering <meyering@redhat.com>
7806
7807 * callproc.c (Fcall_process_region): Include directory component
7808 in mkstemp error message (Bug#11586).
7809
7810 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
7811
7812 * alloc.c, lisp.h (make_pure_vector): Now static.
7813
7814 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
7815
7816 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
7817 Move to byte-run.el.
7818 (Fautoload): Do the hash-doc more carefully.
7819 * data.c (Fdefalias): Purify definition, except for keymaps.
7820 (Qdefun): Move from eval.c.
7821 * lisp.h (Qdefun): Remove.
7822 * lread.c (read1): Tiny simplification.
7823
7824 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
7825
7826 Do not create empty overlays with the evaporate property (Bug#9642).
7827 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
7828 Bug#9642, but explicitly check that the buffer the overlay would
7829 be moved to is live and rearrange lines to make sure that errors
7830 will not put the overlay in an inconsistent state.
7831 (Fdelete_overlay): Cosmetics.
7832
7833 2012-05-28 Eli Zaretskii <eliz@gnu.org>
7834
7835 * w32term.c (my_bring_window_to_top): New function.
7836 (x_raise_frame): Use handle returned by DeferWindowPos, which
7837 could be different from the original one.
7838 Call my_bring_window_to_top instead of my_set_foreground_window.
7839 (Bug#11513)
7840
7841 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
7842 by calling BringWindowToTop.
7843
7844 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
7845 (WM_EMACS_END): Increase by one.
7846
7847 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
7848
7849 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
7850 This avoids undefined behavior that might cause the eassert
7851 to not catch an out-of-range value.
7852
7853 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
7854
7855 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
7856 Update dependencies.
7857
7858 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7859
7860 * bidi.c (bidi_mirror_char): Fix last change.
7861
7862 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
7863
7864 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
7865 when referring to sectname field in printf format.
7866
7867 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
7868
7869 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
7870 Only r_alloc_inhibit_buffer_relocation needed to be added;
7871 the others were already declared.
7872
7873 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
7874 before checking whether it's out of range. Put the check inside
7875 eassert. See
7876 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
7877
7878 2012-05-27 Ken Brown <kbrown@cornell.edu>
7879
7880 * callproc.c (Fcall_process): Restore a line that was accidentally
7881 commented out in the 2011-02-13 change (bug#11547).
7882
7883 2012-05-27 Eli Zaretskii <eliz@gnu.org>
7884
7885 * lisp.h [REL_ALLOC]: Add prototypes for external functions
7886 defined on ralloc.c.
7887
7888 * buffer.c [REL_ALLOC]: Remove prototypes of
7889 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
7890 they are now on lisp.h.
7891
7892 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
7893
7894 * search.c (search_buffer): Use it to inhibit relocation of buffer
7895 text while re_search_2 is doing its job, because re_search_2 is
7896 passed C pointers to buffer text. (Bug#11519)
7897
7898 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
7899 Update value to 24.
7900
7901 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
7902 state after an additional call to move_it_in_display_line_to, keep
7903 the values of it->max_ascent and it->max_descent found for the
7904 entire line.
7905 (pos_visible_p): Revert the comparison against bottom_y to what it
7906 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
7907 (Bug#11464)
7908
7909 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
7910
7911 Fix coding-related core dumps with gcc -ftrapv.
7912 The code was computing A - B, where A and B are pointers, and B is
7913 random garbage. This can lead to core dumps on platforms that
7914 have special pointer registers, and it also leads to core dumps on
7915 x86-64 when compiled with gcc -ftrapv. The fix is to compute
7916 A - B only when B is initialized properly.
7917 * coding.c (coding_set_source, coding_set_destination): Return void.
7918 (coding_change_source, coding_change_destinations): New functions,
7919 with the old behaviors of coding_set_source and coding_set_destination.
7920 All callers that need an offset changed to use these new functions.
7921
7922 2012-05-26 Glenn Morris <rgm@gnu.org>
7923
7924 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
7925
7926 2012-05-26 Eli Zaretskii <eliz@gnu.org>
7927
7928 Extend mouse support on W32 text-mode console.
7929 * xdisp.c (draw_row_with_mouse_face):
7930 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
7931
7932 * w32console.c: Include window.h.
7933 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
7934 New functions.
7935 (initialize_w32_display): Initialize mouse-highlight data.
7936
7937 * w32inevt.c: Include termchar.h and window.h.
7938 (do_mouse_event): Support mouse-autoselect-window. When the mouse
7939 moves, call note_mouse_highlight. If help_echo changed, call
7940 gen_help_event to produce help-echo message in the echo area.
7941 Call clear_mouse_face if mouse_face_hidden is set in the mouse
7942 highlight info.
7943
7944 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
7945
7946 * lread.c (read1): Simplify slightly to avoid an overflow warning
7947 with GCC 4.7.0 on x86-64.
7948
7949 2012-05-26 Eli Zaretskii <eliz@gnu.org>
7950
7951 * bidi.c (bidi_mirror_char): Revert last change: an int is
7952 definitely wide enough here.
7953
7954 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
7955
7956 Fix integer width and related bugs (Bug#9874).
7957 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
7958 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
7959 (string_bytes, check_sblock, allocate_string_data):
7960 (compact_small_strings, Fmake_bool_vector, make_string)
7961 (make_unibyte_string, make_multibyte_string)
7962 (make_string_from_bytes, make_specified_string)
7963 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
7964 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
7965 (mark_vectorlike):
7966 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7967 (allocate_pseudovector):
7968 Use int, not EMACS_INT, where int is wide enough.
7969 (inhibit_garbage_collection, Fgarbage_collect):
7970 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7971 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
7972 int might not be wide enough.
7973 (bidi_cache_search, bidi_cache_find, bidi_init_it)
7974 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
7975 (bidi_at_paragraph_end, bidi_find_paragraph_start)
7976 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
7977 (bidi_level_of_next_char, bidi_move_to_visually_next):
7978 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7979 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
7980 (Fkill_buffer, Fset_buffer_major_mode)
7981 (advance_to_char_boundary, Fbuffer_swap_text)
7982 (Fset_buffer_multibyte, overlays_at, overlays_in)
7983 (overlay_touches_p, struct sortvec, record_overlay_string)
7984 (overlay_strings, recenter_overlay_lists)
7985 (adjust_overlays_for_insert, adjust_overlays_for_delete)
7986 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
7987 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
7988 (Foverlay_recenter, last_overlay_modification_hooks_used)
7989 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
7990 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7991 (validate_region): Omit unnecessary test for b <= e,
7992 since that's guaranteed by the previous test.
7993 (adjust_overlays_for_delete): Avoid pos + length overflow.
7994 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
7995 (report_overlay_modification):
7996 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7997 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
7998 Omit pointer cast, which isn't needed anyway, and doesn't work
7999 after the EMACS_INT -> ptrdiff_t change.
8000 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
8001 * buffer.h: Adjust decls to match defn changes elsewhere.
8002 (struct buffer_text, struct buffer):
8003 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8004 Use EMACS_INT, not int, where int might not be wide enough.
8005 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
8006 not int, to avoid needless 32-bit limit on 64-bit hosts.
8007 (exec_byte_code): Use tighter memory-full test, one that checks
8008 for alloca overflow. Don't compute the address of the object just
8009 before an array, as that's not portable. Use EMACS_INT, not
8010 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
8011 * callint.c (Fcall_interactively):
8012 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8013 * callproc.c (call_process_kill, Fcall_process):
8014 Don't assume pid_t fits into an Emacs fixnum.
8015 (call_process_cleanup, Fcall_process, child_setup):
8016 Don't assume pid_t fits into int.
8017 (call_process_cleanup, Fcall_process, delete_temp_file)
8018 (Fcall_process_region):
8019 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8020 (Fcall_process): Simplify handling of volatile integers.
8021 Use int, not EMACS_INT, where int will do.
8022 * casefiddle.c (casify_object, casify_region, operate_on_word)
8023 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
8024 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8025 (casify_object): Avoid integer overflow when overallocating buffer.
8026 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
8027 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
8028 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
8029 * category.h (CATEGORYP): Don't assume arg is nonnegative.
8030 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
8031 integers are now checked earlier. All uses replaced with XINT.
8032 (ccl_driver):
8033 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8034 For CCL_MapSingle, check that content and value are in int range.
8035 (ccl_driver, Fregister_code_conversion_map):
8036 Check that Vcode_version_map_vector is a vector.
8037 (resolve_symbol_ccl_program): Check that vector header is in range.
8038 Always copy the vector, so that we can check its contents reliably
8039 now rather than having to recheck each instruction as it's being
8040 executed. Check that vector words fit in 'int'.
8041 (ccl_get_compiled_code, Fregister_ccl_program)
8042 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
8043 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
8044 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
8045 contents are in range.
8046 (Fccl_execute_on_string): Check that status is in range.
8047 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
8048 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
8049 Accept and return EMACS_INT, not int, because callers can pass values
8050 out of 'int' range.
8051 (c_string_width, strwidth, lisp_string_width, chars_in_text)
8052 (multibyte_chars_in_text, parse_str_as_multibyte)
8053 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
8054 (str_as_unibyte, str_to_unibyte, string_count_byte8)
8055 (string_escape_byte8, Fget_byte):
8056 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8057 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
8058 avoid mishandling large integers.
8059 * character.h: Adjust decls to match defn changes elsewhere.
8060 * charset.c (load_charset_map_from_file, find_charsets_in_text)
8061 (Ffind_charset_region):
8062 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8063 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
8064 (load_charset_map_from_vector, Fdefine_charset_internal):
8065 Don't assume fixnum fits in int.
8066 (load_charset_map_from_vector, Fmap_charset_chars):
8067 Remove now-unnecessary CHECK_NATNUMs.
8068 (Fdefine_charset_internal): Check ranges here, more carefully.
8069 Don't rely on undefined behavior with signed left shift overflow.
8070 Don't assume unsigned int fits into fixnum, or that fixnum fits
8071 into unsigned int. Don't require max_code to be a valid fixnum;
8072 that's not true for gb10830 4-byte on a 32-bit host. Allow
8073 invalid_code to be a cons, for the same reason. Require code_offset
8074 to be a character. Avoid int overflow if max_char is close
8075 to INT_MAX.
8076 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
8077 this is intended anyway and avoids some undefined behavior.
8078 (load_charset_map): Pass unsigned, not int, as 2nd arg of
8079 INDEX_TO_CODE_POINT, as that's what it expects.
8080 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
8081 * charset.h (DECODE_CHAR): Return int, not unsigned;
8082 this is what was intended anyway, and it avoids undefined behavior.
8083 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
8084 integer-overflow issues.
8085 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
8086 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
8087 where the argument is EMACS_INT, and this behavior is not intended.
8088 * chartab.c (Fmake_char_table, Fset_char_table_range)
8089 (uniprop_get_decoder, uniprop_get_encoder):
8090 Don't assume fixnum fits in int.
8091 * cmds.c (move_point): New function, that does the gist of
8092 Fforward_char and Fbackward_char, but does so while checking
8093 for integer overflow more accurately.
8094 (Fforward_char, Fbackward_char): Use it.
8095 (Fforward_line, Fend_of_line, internal_self_insert)
8096 (internal_self_insert):
8097 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8098 Fix a FIXME, by checking for integer overflow when calculating
8099 target_clm and actual_clm.
8100 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
8101 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
8102 (ASSURE_DESTINATION, coding_alloc_by_realloc)
8103 (coding_alloc_by_making_gap, alloc_destination)
8104 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
8105 (encode_coding_utf_16, detect_coding_emacs_mule)
8106 (decode_coding_emacs_mule, encode_coding_emacs_mule)
8107 (detect_coding_iso_2022, decode_coding_iso_2022)
8108 (encode_invocation_designation, encode_designation_at_bol)
8109 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
8110 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
8111 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
8112 (encode_coding_ccl, encode_coding_raw_text)
8113 (detect_coding_charset, decode_coding_charset)
8114 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
8115 (produce_composition, produce_charset, produce_annotation)
8116 (decode_coding, handle_composition_annotation)
8117 (handle_charset_annotation, consume_chars, decode_coding_gap)
8118 (decode_coding_object, encode_coding_object, detect_coding_system)
8119 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
8120 (code_convert_region, code_convert_string)
8121 (Fdefine_coding_system_internal)
8122 (coding_set_source, coding_set_destination):
8123 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8124 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
8125 (Fdefine_coding_system_internal):
8126 Don't assume fixnums fit in int.
8127 (decode_coding_gap, decode_coding_object, encode_coding_object)
8128 (Fread_coding_system, Fdetect_coding_region)
8129 (Funencodable_char_position, Fcheck_coding_systems_region)
8130 (get_translation, handle_composition_annotation, consume_chars):
8131 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8132 (consume_chars): Rewrite to not calculate an address outside buffer.
8133 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
8134 Don't access memory outside of the args array.
8135 (Fdefine_coding_system_internal): Check for charset-id overflow.
8136 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
8137 result of ENCODE_CHAR.
8138 * coding.h: Adjust decls to match defn changes elsewhere.
8139 (struct coding_system):
8140 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8141 * composite.c (get_composition_id, find_composition)
8142 (run_composition_function, update_compositions)
8143 (compose_text, composition_gstring_put_cache)
8144 (composition_gstring_p, composition_gstring_width)
8145 (fill_gstring_header, fill_gstring_body, autocmp_chars)
8146 (composition_compute_stop_pos, composition_reseat_it)
8147 (composition_update_it, struct position_record)
8148 (find_automatic_composition, composition_adjust_point)
8149 (Fcomposition_get_gstring, Ffind_composition_internal):
8150 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8151 (update_compositions):
8152 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8153 * composite.h: Adjust decls to match defn changes elsewhere.
8154 (struct composition):
8155 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8156 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
8157 Do not attempt to compute the address of the object just before a
8158 buffer; this is not portable.
8159 (Faref, Faset):
8160 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8161 (Faset): Use int, not EMACS_INT, where int is wide enough.
8162 (Fstring_to_number): Don't assume fixnums fit in int.
8163 (Frem): Don't assume arg is nonnegative.
8164 * dbusbind.c (xd_append_arg): Check for integers out of range.
8165 (Fdbus_call_method): Don't overflow the timeout int.
8166 (extract_signed, extract_unsigned): New functions.
8167 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
8168 (xd_get_connection_references): Return ptrdiff_t, not int.
8169 All uses changed.
8170 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
8171 (xd_read_message_1):
8172 Use int, not unsigned, where the dbus API uses int.
8173 (Fdbus_message_internal): Don't overflow mtype.
8174 (syms_of_dbusbind): Allocate right-sized buffer for integers.
8175 * dired.c (directory_files_internal, file_name_completion, scmp)
8176 (file_name_completion_stat):
8177 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8178 (file_name_completion): Don't overflow matchcount.
8179 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
8180 * dispextern.h: Adjust decls to match defn changes elsewhere.
8181 (struct text_pos, struct glyph, struct bidi_saved_info)
8182 (struct bidi_string_data, struct bidi_it, struct composition_it)
8183 (struct it):
8184 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8185 (struct display_pos, struct composition_it, struct it):
8186 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8187 * dispnew.c (increment_matrix_positions)
8188 (increment_row_positions, mode_line_string)
8189 (marginal_area_string):
8190 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8191 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
8192 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8193 (duration_to_sec_usec): New function, to check for overflow better.
8194 (Fsleep_for, sit_for): Use it.
8195 * doc.c (get_doc_string, store_function_docstring):
8196 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8197 (get_doc_string, Fsnarf_documentation):
8198 Use int, not EMACS_INT, where int is wide enough.
8199 (get_doc_string):
8200 Use SAFE_ALLOCA, not alloca.
8201 Check for overflow when converting EMACS_INT to off_t.
8202 * doprnt.c (doprnt):
8203 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8204 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
8205 Don't assume uid_t fits into fixnum.
8206 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
8207 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
8208 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
8209 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
8210 (general_insert_function)
8211 (Finsert_char, make_buffer_string, make_buffer_string_both)
8212 (update_buffer_properties, Fbuffer_substring)
8213 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
8214 (Fsubst_char_in_region, check_translation)
8215 (Ftranslate_region_internal, save_restriction_restore, Fformat)
8216 (transpose_markers, Ftranspose_regions):
8217 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8218 (clip_to_bounds): Move to lisp.h as an inline function).
8219 (Fconstrain_to_field): Don't assume integers are nonnegative.
8220 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
8221 (Fsubst_char_in_region, Fsave_restriction):
8222 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8223 (Femacs_pid): Don't assume pid_t fits into fixnum.
8224 (lo_time): Use int, not EMACS_INT, when int suffices.
8225 (lisp_time_argument): Check for usec out of range.
8226 (Fencode_time): Don't assume fixnum fits in int.
8227 (Fuser_login_name, Fuser_full_name): Signal an error
8228 if a uid argument is out of range, rather than relying on
8229 undefined behavior.
8230 (Fformat_time_string): Remove now-unnecessary check.
8231 lisp_time_argument checks for out-of-range usec now.
8232 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
8233 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
8234 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
8235 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
8236 (init_cmdargs, Fdump_emacs):
8237 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8238 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
8239 the bottom (typically) 32 bits of the fixnum.
8240 * eval.c (specpdl_size, call_debugger):
8241 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8242 (when_entered_debugger, Fbacktrace_debug):
8243 Don't assume fixnum can fit in int.
8244 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
8245 the object just before a buffer; this is not portable.
8246 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
8247 (grow_specpdl, unbind_to):
8248 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8249 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
8250 (grow_specpdl): Simplify allocation by using xpalloc.
8251 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
8252 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
8253 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
8254 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8255 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
8256 (a_write, e_write):
8257 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8258 (Fcopy_file, non_regular_nbytes, read_non_regular)
8259 (Finsert_file_contents):
8260 Use int, not EMACS_INT, where int is wide enough.
8261 (READ_BUF_SIZE): Verify that it fits in int.
8262 (Finsert_file_contents): Check that counts are in proper range,
8263 rather than assuming fixnums fit into ptrdiff_t etc.
8264 Don't assume fixnums fit into int.
8265 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
8266 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
8267 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
8268 (string_char_to_byte, string_byte_to_char)
8269 (string_make_multibyte, string_to_multibyte)
8270 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
8271 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
8272 (substring_both, Fdelete, internal_equal, Ffillarray)
8273 (Fclear_string, mapcar1)
8274 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
8275 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
8276 (larger_vector, make_hash_table, maybe_resize_hash_table)
8277 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
8278 (Fmaphash, secure_hash):
8279 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8280 (concat): Check for string index and length overflow.
8281 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
8282 (Frequire):
8283 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8284 (larger_vector): New API (vec, incr_min, size_max) replaces old
8285 one (vec, new_size, init). This catches size overflow.
8286 INIT was removed because it was always Qnil.
8287 All callers changed.
8288 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
8289 the upper bound on a hash table index size.
8290 (make_hash_table, maybe_resize_hash_table): Use it.
8291 (secure_hash): Computer start_byte and end_byte only after
8292 they're known to be in ptrdiff_t range.
8293 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
8294 (Ffont_get_glyphs, Ffont_at):
8295 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8296 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
8297 (Flist_fonts, Fopen_font):
8298 Don't assume fixnum can fit in int.
8299 (check_gstring): Don't assume index can fit in int.
8300 (font_match_p): Check that fixnum is a character, not a nonnegative
8301 fixnum, since the later code needs to stuff it into an int.
8302 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
8303 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
8304 conversion overflow issues.
8305 (Fopen_font): Check for integer out of range.
8306 (Ffont_get_glyphs): Don't assume index can fit in int.
8307 * font.h: Adjust decls to match defn changes elsewhere.
8308 * fontset.c (reorder_font_vector): Redo score calculation to avoid
8309 integer overflow.
8310 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
8311 printmax_t, where ptrdiff_t is wide enough.
8312 (Finternal_char_font):
8313 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8314 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
8315 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
8316 (Fset_frame_position, x_set_frame_parameters)
8317 (x_set_line_spacing, x_set_border_width)
8318 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
8319 Check that fixnums are in proper range for system types.
8320 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
8321 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8322 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
8323 Use SAFE_ALLOCA_LISP, not alloca.
8324 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
8325 intptr_t is wide enough.
8326 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
8327 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
8328 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
8329 Check for fixnum out of range.
8330 * ftfont.c (ftfont_list): Don't assume index fits in int.
8331 Check that fixnums are in proper range for system types.
8332 (ftfont_shape_by_flt):
8333 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8334 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
8335 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8336 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
8337 Check that fixnums are in proper range for system types.
8338 * gnutls.h: Adjust decls to match defn changes elsewhere.
8339 * gtkutil.c (xg_dialog_run):
8340 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8341 (update_frame_tool_bar):
8342 Check that fixnums are in proper range for system types.
8343 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
8344 (lookup_image): Check that fixnums are in range for system types.
8345 * indent.c (last_known_column, last_known_column_point):
8346 (current_column_bol_cache):
8347 (skip_invisible, current_column, check_display_width):
8348 (check_display_width, scan_for_column, current_column_1)
8349 (Findent_to, Fcurrent_indentation, position_indentation)
8350 (indented_beyond_p, Fmove_to_column, compute_motion):
8351 (Fcompute_motion, Fvertical_motion):
8352 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8353 (last_known_column_modified): Use EMACS_INT, not int.
8354 (check_display_width):
8355 (Fcompute_motion):
8356 Check that fixnums and floats are in proper range for system types.
8357 (compute_motion): Don't assume index or fixnum fits in int.
8358 (compute_motion, Fcompute_motion):
8359 Use int, not EMACS_INT, when it is wide enough.
8360 (vmotion): Omit local var start_hpos that is always 0; that way
8361 we don't need to worry about overflow in expressions involving it.
8362 * indent.h: Adjust decls to match defn changes elsewhere.
8363 (struct position):
8364 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8365 Use int, not EMACS_INT, where int is wide enough.
8366 Remove unused members ovstring_chars_done and tab_offset;
8367 all uses removed.
8368 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
8369 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
8370 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
8371 (make_gap, copy_text, insert, insert_and_inherit)
8372 (insert_before_markers, insert_before_markers_and_inherit)
8373 (insert_1, count_combining_before, count_combining_after)
8374 (insert_1_both, insert_from_string)
8375 (insert_from_string_before_markers, insert_from_string_1)
8376 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
8377 (adjust_after_replace, adjust_after_insert, replace_range)
8378 (replace_range_2, del_range, del_range_1, del_range_byte)
8379 (del_range_both, del_range_2, modify_region)
8380 (prepare_to_modify_buffer, signal_before_change)
8381 (signal_after_change, Fcombine_after_change_execute):
8382 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8383 * intervals.c (traverse_intervals, rotate_right, rotate_left)
8384 (balance_an_interval, split_interval_right, split_interval_left)
8385 (find_interval, next_interval, update_interval)
8386 (adjust_intervals_for_insertion, delete_node, delete_interval)
8387 (interval_deletion_adjustment, adjust_intervals_for_deletion)
8388 (static_offset_intervals, offset_intervals)
8389 (merge_interval_right, merge_interval_left, make_new_interval)
8390 (graft_intervals_into_buffer, temp_set_point_both)
8391 (temp_set_point, set_point, adjust_for_invis_intang)
8392 (set_point_both, move_if_not_intangible, get_property_and_range)
8393 (get_local_map, copy_intervals, copy_intervals_to_string)
8394 (compare_string_intervals, set_intervals_multibyte_1):
8395 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8396 * intervals.h: Adjust decls to match defn changes elsewhere.
8397 (struct interval):
8398 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8399 * keyboard.c (this_command_key_count, this_single_command_key_start)
8400 (before_command_key_count, before_command_echo_length, echo_now)
8401 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
8402 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
8403 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
8404 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
8405 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8406 (last_non_minibuf_size, last_point_position, echo_truncate)
8407 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
8408 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
8409 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
8410 (stuff_buffered_input):
8411 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8412 (last_auto_save, command_loop_1, read_char):
8413 Use EMACS_INT, not int, to avoid integer overflow.
8414 (record_char): Avoid overflow in total_keys computation.
8415 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
8416 * keyboard.h: Adjust decls to match defn changes elsewhere.
8417 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
8418 (Fkey_description, Fdescribe_vector, Flookup_key):
8419 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8420 (click_position): New function, to check that positions are in range.
8421 (Fcurrent_active_maps):
8422 (describe_command):
8423 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8424 (Faccessible_keymaps, Fkey_description):
8425 (preferred_sequence_p):
8426 Don't assume fixnum can fit into int.
8427 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
8428 Check for integer overflow in size calculations.
8429 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
8430 avoid mishandling large integers.
8431 * lisp.h: Adjust decls to match defn changes elsewhere.
8432 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
8433 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
8434 (struct Lisp_Marker):
8435 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8436 (clip_to_bounds): Now an inline function, moved here from editfns.c.
8437 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
8438 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
8439 All callers changed.
8440 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
8441 Assume the arg has valid form, since it always does.
8442 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
8443 unsigned integer system type.
8444 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
8445 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
8446 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8447 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
8448 (duration_to_sec_usec): New decl.
8449 * lread.c (read_from_string_index, read_from_string_index_byte)
8450 (read_from_string_limit, readchar, unreadchar, openp)
8451 (read_internal_start, read1, oblookup):
8452 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8453 (Fload, readevalloop, Feval_buffer, Feval_region):
8454 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8455 (openp): Check for out-of-range argument to 'access'.
8456 (read1): Use int, not EMACS_INT, where int is wide enough.
8457 Don't assume fixnum fits into int.
8458 Fix off-by-one error that can read outside a buffer.
8459 (read_filtered_event): Use duration_to_sec_usec
8460 to do proper overflow checking on durations.
8461 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
8462 in size calculation.
8463 (Fexecute_kbd_macro):
8464 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8465 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
8466 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
8467 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
8468 (set_marker_both, set_marker_restricted_both, marker_position)
8469 (marker_byte_position, Fbuffer_has_markers_at):
8470 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8471 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
8472 * menu.c (ensure_menu_items): Rename from grow_menu_items.
8473 It now merely ensures that the menu is large enough, without
8474 necessarily growing it, as this avoids some integer overflow issues.
8475 All callers changed.
8476 (keymap_panes, parse_single_submenu, Fx_popup_menu):
8477 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8478 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
8479 Use SAFE_ALLOCA_LISP, not alloca.
8480 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
8481 to EMACS_INT. Check that fixnums are in proper range for system types.
8482 * minibuf.c (minibuf_prompt_width, string_to_object)
8483 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
8484 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
8485 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8486 (get_minibuffer, read_minibuf_unwind):
8487 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8488 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
8489 this simplifies overflow checking. All callers changed.
8490 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
8491 (Ftest_completion):
8492 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8493 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
8494 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
8495 Check that fixnums are in proper range for system types.
8496 (Fx_create_frame, Fx_show_tip):
8497 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8498 * nsfont.m (ns_findfonts, nsfont_list_family):
8499 Don't assume fixnum fits in long.
8500 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
8501 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8502 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
8503 wide enough.
8504 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
8505 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8506 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
8507 (PRINTDECLARE, PRINTPREPARE):
8508 (strout, print_string):
8509 (print, print_preprocess, print_check_string_charset_prop)
8510 (print_object):
8511 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8512 (PRINTDECLARE):
8513 (temp_output_buffer_setup, Fprin1_to_string, print_object):
8514 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8515 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
8516 (printchar, strout): Use xpalloc to catch size calculation overflow.
8517 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
8518 (print_error_message): Use SAFE_ALLOCA, not alloca.
8519 (print_object): Use int, not EMACS_INT, where int is wide enough.
8520 (print_depth, new_backquote_output, print_number_index):
8521 Use ptrdiff_t, not int, where int might not be wide enough.
8522 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
8523 (Fset_process_window_size, Fformat_network_address)
8524 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
8525 (sigchld_handler):
8526 Check that fixnums are in proper range for system types.
8527 (Fsignal_process): Simplify by avoiding a goto.
8528 Check for process-ids out of pid_t range rather than relying on
8529 undefined behavior.
8530 (process_tick, update_tick): Use EMACS_INT, not int.
8531 (Fformat_network_address, read_process_output, send_process)
8532 (Fprocess_send_region, status_notify):
8533 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8534 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
8535 (wait_reading_process_output, read_process_output, exec_sentinel):
8536 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8537 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
8538 (Faccept_process_output): Use duration_to_sec_usec to do proper
8539 overflow checking on durations.
8540 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
8541 Don't assume pid_t fits in int.
8542 * process.h (struct Lisp_Process): Members tick and update_tick
8543 are now of type EMACS_INT, not int.
8544 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
8545 configured --with-wide-int.
8546 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
8547 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
8548 * search.c (looking_at_1, string_match_1):
8549 (fast_string_match, fast_c_string_match_ignore_case)
8550 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
8551 (scan_newline, find_before_next_newline, search_command)
8552 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
8553 (set_search_regs, wordify):
8554 (Freplace_match):
8555 (Fmatch_data):
8556 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8557 (string_match_1, search_buffer, set_search_regs):
8558 (Fmatch_data):
8559 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8560 (wordify): Check for overflow in size calculation.
8561 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
8562 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
8563 Check that fixnums are in proper range for system types.
8564 * sound.c (struct sound_device)
8565 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
8566 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8567 (Fplay_sound_internal):
8568 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8569 * syntax.c (struct lisp_parse_state, find_start_modiff)
8570 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
8571 (Fparse_partial_sexp):
8572 Don't assume fixnums can fit in int.
8573 (struct lisp_parse_state, find_start_pos, find_start_value)
8574 (find_start_value_byte, find_start_begv)
8575 (update_syntax_table, char_quoted, dec_bytepos)
8576 (find_defun_start, prev_char_comend_first, back_comment):
8577 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
8578 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
8579 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8580 (Finternal_describe_syntax_value): Check that match_lisp is a
8581 character, not an integer, since the code stuffs it into int.
8582 (scan_words, scan_sexps_forward):
8583 Check that fixnums are in proper range for system types.
8584 (Fforward_word):
8585 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8586 (scan_sexps_forward):
8587 Use CHARACTERP, not INTEGERP, since the value must fit into int.
8588 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
8589 * syntax.h: Adjust decls to match defn changes elsewhere.
8590 (struct gl_state_s):
8591 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8592 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
8593 MOST_POSITIVE_FIXNUM.
8594 * sysdep.c (wait_for_termination_1, wait_for_termination)
8595 (interruptible_wait_for_termination, mkdir):
8596 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
8597 (emacs_read, emacs_write):
8598 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8599 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
8600 and double all fit in int.
8601 * term.c (set_tty_color_mode):
8602 Check that fixnums are in proper range for system types.
8603 * termhooks.h (struct input_event):
8604 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8605 * textprop.c (validate_interval_range, interval_of)
8606 (Fadd_text_properties, set_text_properties_1)
8607 (Fremove_text_properties, Fremove_list_of_text_properties)
8608 (Ftext_property_any, Ftext_property_not_all)
8609 (copy_text_properties, text_property_list, extend_property_ranges)
8610 (verify_interval_modification):
8611 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8612 (Fnext_single_char_property_change)
8613 (Fprevious_single_char_property_change):
8614 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8615 (copy_text_properties):
8616 Check for integer overflow in index calculation.
8617 * undo.c (last_boundary_position, record_point, record_insert)
8618 (record_delete, record_marker_adjustment, record_change)
8619 (record_property_change):
8620 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8621 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
8622 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8623 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
8624 (Fx_hide_tip, Fx_file_dialog):
8625 * w32menu.c (set_frame_menubar):
8626 Use ptrdiff_t, not int, for consistency with rest of code.
8627 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
8628 (select_window, Fdelete_other_windows_internal)
8629 (window_scroll_pixel_based, window_scroll_line_based)
8630 (Frecenter, Fset_window_configuration):
8631 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8632 (Fset_window_hscroll, run_window_configuration_change_hook)
8633 (set_window_buffer, temp_output_buffer_show, scroll_command)
8634 (Fscroll_other_window, Frecenter):
8635 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8636 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
8637 Don't assume fixnum fits in int.
8638 (Fset_window_scroll_bars):
8639 Check that fixnums are in proper range for system types.
8640 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
8641 (string_pos, c_string_pos, number_of_chars, init_iterator)
8642 (in_ellipses_for_invisible_text_p, init_from_display_pos)
8643 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
8644 (compute_display_string_end, handle_face_prop)
8645 (face_before_or_after_it_pos, handle_invisible_prop)
8646 (handle_display_prop, handle_display_spec, handle_single_display_spec)
8647 (display_prop_intangible_p, string_buffer_position_lim)
8648 (string_buffer_position, handle_composition_prop, load_overlay_strings)
8649 (get_overlay_strings_1, get_overlay_strings)
8650 (iterate_out_of_display_property, forward_to_next_line_start)
8651 (back_to_previous_visible_line_start, reseat, reseat_to_string)
8652 (get_next_display_element, set_iterator_to_next)
8653 (get_visually_first_element, compute_stop_pos_backwards)
8654 (handle_stop_backwards, next_element_from_buffer)
8655 (move_it_in_display_line_to, move_it_in_display_line)
8656 (move_it_to, move_it_vertically_backward, move_it_by_lines)
8657 (add_to_log, message_dolog, message_log_check_duplicate)
8658 (message2, message2_nolog, message3, message3_nolog
8659 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
8660 (current_message_1, truncate_echo_area, truncate_message_1)
8661 (set_message, set_message_1, store_mode_line_noprop)
8662 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
8663 (text_outside_line_unchanged_p, check_point_in_composition)
8664 (reconsider_clip_changes)
8665 (redisplay_internal, set_cursor_from_row, try_scrolling)
8666 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
8667 (redisplay_window, find_last_unchanged_at_beg_row)
8668 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
8669 (trailing_whitespace_p, find_row_edges, display_line)
8670 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
8671 (display_mode_element, store_mode_line_string)
8672 (pint2str, pint2hrstr, decode_mode_spec)
8673 (display_count_lines, display_string, draw_glyphs)
8674 (x_produce_glyphs, x_insert_glyphs)
8675 (rows_from_pos_range, mouse_face_from_buffer_pos)
8676 (fast_find_string_pos, mouse_face_from_string_pos)
8677 (note_mode_line_or_margin_highlight, note_mouse_highlight):
8678 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8679 (safe_call, init_from_display_pos, handle_fontified_prop)
8680 (handle_single_display_spec, load_overlay_strings)
8681 (with_echo_area_buffer, setup_echo_area_for_printing)
8682 (display_echo_area, echo_area_display)
8683 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
8684 (update_tool_bar, hscroll_window_tree, redisplay_internal)
8685 (redisplay_window, dump_glyph_row, display_mode_line)
8686 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
8687 (handle_display_spec, display_prop_string_p):
8688 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8689 (handle_single_display_spec, build_desired_tool_bar_string)
8690 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
8691 (get_specified_cursor_type):
8692 Check that fixnums are in proper range for system types.
8693 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
8694 (Flookup_image_map):
8695 Don't assume fixnums fit in int.
8696 (compare_overlay_entries):
8697 Avoid mishandling comparisons due to subtraction overflow.
8698 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
8699 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
8700 (handle_tool_bar_click):
8701 Use int, not unsigned, since we prefer signed and the signedness
8702 doesn't matter here.
8703 (get_next_display_element, next_element_from_display_vector):
8704 Use int, not EMACS_INT, when int is wide enough.
8705 (start_hourglass): Use duration_to_sec_usec to do proper
8706 overflow checking on durations.
8707 * xfaces.c (Fbitmap_spec_p):
8708 Check that fixnums are in proper range for system types.
8709 (compare_fonts_by_sort_order):
8710 Avoid mishandling comparisons due to subtraction overflow.
8711 (Fx_family_fonts, realize_basic_faces):
8712 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8713 (Fx_family_fonts):
8714 Don't assume fixnum fits in int.
8715 Use SAFE_ALLOCA_LISP, not alloca.
8716 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
8717 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
8718 (face_at_buffer_position, face_for_overlay_string)
8719 (face_at_string_position):
8720 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8721 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
8722 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
8723 (Fx_show_tip):
8724 Check that fixnums are in proper range for system types.
8725 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
8726 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
8727 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8728 (Fx_change_window_property): Don't assume fixnums fit in int.
8729 * xfont.c (xfont_chars_supported):
8730 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8731 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
8732 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
8733 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8734 * xml.c (parse_region):
8735 * xrdb.c (magic_file_p):
8736 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
8737 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
8738 (x_get_local_selection, x_reply_selection_request)
8739 (x_handle_selection_request, wait_for_property_change):
8740 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8741 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
8742 short is wide enough.
8743 (x_send_client_event): Don't assume fixnum fits in int.
8744 * xterm.c (x_x_to_emacs_modifiers):
8745 Don't assume EMACS_INT overflows nicely into int.
8746 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
8747 may come from Lisp.
8748 (handle_one_xevent): NATNUMP can eval its arg twice.
8749 (x_connection_closed):
8750 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
8751 * xterm.h: Adjust decls to match defn changes elsewhere.
8752 (struct scroll_bar): Use struct vectorlike_header
8753 rather than rolling our own approximation.
8754 (SCROLL_BAR_VEC_SIZE): Remove; not used.
8755
8756 2012-05-25 Glenn Morris <rgm@gnu.org>
8757
8758 * lisp.mk (lisp): Update for more files being compiled now.
8759
8760 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
8761
8762 * lread.c: Remove `read_pure' which makes no difference.
8763 (read_pure): Remove var.
8764 (unreadpure): Remove function.
8765 (readevalloop): Don't call read_list with -1 flag.
8766 (read1, read_vector): Don't test read_pure any more.
8767 (read_list): Simplify.
8768
8769 * fileio.c, character.h: Minor style tweaks.
8770
8771 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
8772
8773 * window.h (clip_changed): Remove useless declaration.
8774
8775 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
8776
8777 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
8778 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
8779
8780 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
8781
8782 Remove src/m/*.
8783 This directory predates autoconf and is no longer needed nowadays.
8784 Move its few remaining bits of functionality to where they're needed.
8785 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
8786 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
8787 * m/template.h: Remove.
8788 * Makefile.in (M_FILE): Remove. All uses removed.
8789 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
8790 * lisp.h (USE_LSB_TAG):
8791 * mem-limits.h (EXCEEDS_LISP_PTR):
8792 Use VAL_MAX, not VALBITS, in #if.
8793 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
8794 (EMACS_UINT): Define unconditionally now.
8795 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
8796 (BITS_PER_EMACS_INT): New constants, replacing
8797 what used to be in config.h, but not useful in #if.
8798 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
8799 define them any more.
8800 (VAL_MAX): New macro.
8801 (VALMASK): Use it.
8802 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
8803 BITS_PER_EMACS_INT, in #if.
8804 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
8805 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
8806 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
8807 * s/ms-w32.h (DATA_START):
8808 Move here from removed file m/intel386.h.
8809 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
8810 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
8811
8812 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
8813
8814 Assume C89 or later.
8815 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
8816 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
8817 (xrealloc):
8818 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
8819 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
8820 * textprop.c, tparam.c (NULL): Remove.
8821 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
8822 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
8823 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
8824 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
8825 * xterm.c (input_signal_count): Assume volatile works.
8826
8827 2012-05-21 Ken Brown <kbrown@cornell.edu>
8828
8829 * xgselect.c (xg_select): Fix first argument in call to 'select'
8830 (bug#11508).
8831
8832 2012-05-20 Ken Brown <kbrown@cornell.edu>
8833
8834 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
8835 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
8836
8837 2012-05-19 Ken Brown <kbrown@cornell.edu>
8838
8839 * xfns.c (x_in_use): Remove `static' qualifier.
8840 * xterm.h (x_in_use): Declare.
8841 * xgselect.c: Include xterm.h.
8842 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
8843 and `display_arg' (bug#9754).
8844
8845 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
8846
8847 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
8848
8849 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
8850 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
8851
8852 2012-05-18 Eli Zaretskii <eliz@gnu.org>
8853
8854 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
8855
8856 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
8857 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
8858
8859 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
8860 reference to image_cache->refcount.
8861 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
8862
8863 2012-05-17 Juri Linkov <juri@jurta.org>
8864
8865 * search.c (Fword_search_regexp, Fword_search_backward)
8866 (Fword_search_forward, Fword_search_backward_lax)
8867 (Fword_search_forward_lax): Move functions to isearch.el
8868 (bug#10145, bug#11381).
8869
8870 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
8871
8872 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
8873
8874 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
8875
8876 * lread.c (init_obarray): Declare Qt and Qnil as special.
8877
8878 2012-05-14 Glenn Morris <rgm@gnu.org>
8879
8880 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
8881 Put "libexec" before "bin", for the sake of init_callproc_1.
8882
8883 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
8884
8885 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
8886
8887 * unexaix.c: Port to more-recent AIX compilers.
8888 (report_error, report_error_1, make_hdr, copy_sym)
8889 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
8890 Make arguments const char *, not char *, to avoid violations of C
8891 standard and to fix some AIX warnings reported by Gilles Pion.
8892
8893 2012-05-14 Eli Zaretskii <eliz@gnu.org>
8894
8895 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
8896 already have overlays loaded.
8897 (handle_single_display_spec): Before returning without displaying
8898 fringe bitmap, synchronize the bidi iterator with the main display
8899 iterator, by calling iterate_out_of_display_property.
8900 (iterate_out_of_display_property): Detect buffer iteration by
8901 testing that it->string is a Lisp string.
8902 (get_next_display_element): When the current object is exhausted,
8903 and there's something on it->stack, call set_iterator_to_next to
8904 proceed with what's on the stack, instead of returning zero.
8905 (set_iterator_to_next): If called at the end of a Lisp string,
8906 proceed to consider_string_end without incrementing string
8907 position. Don't increment display vector index past the end of
8908 the display vector. (Bug#11417)
8909 (pos_visible_p): Don't report a position visible when move_it_to
8910 stopped at the last line of window, which happens to be scanned
8911 backwards by the bidi iteration. (Bug#11464)
8912
8913 2012-05-14 Eli Zaretskii <eliz@gnu.org>
8914
8915 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
8916 and right-margin display specs even if the spec is invalid or we
8917 are on a TTY, and thus unable to display on the fringes.
8918 That's because the text with the property will not be displayed anyway,
8919 so we need to signal to the caller that this is a "replacing"
8920 display spec. This fixes display when the spec is invalid or we
8921 are on a TTY.
8922
8923 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
8924
8925 * unexaix.c (make_hdr): Fix typo in prototype.
8926 This bug broke the build on AIX. Problem reported by Gilles Pion.
8927
8928 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
8929
8930 * keyboard.c (kbd_buffer_get_event): Read special events also in
8931 batch mode. (Bug#11415)
8932
8933 2012-05-12 Glenn Morris <rgm@gnu.org>
8934
8935 * ns.mk: Update for ns_appbindir no longer having trailing "/".
8936
8937 2012-05-12 Eli Zaretskii <eliz@gnu.org>
8938
8939 * lisp.mk (lisp): Add newcomment.elc.
8940
8941 2012-05-12 Glenn Morris <rgm@gnu.org>
8942
8943 * Makefile.in (MKDIR_P): New, set by configure.
8944 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
8945
8946 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
8947
8948 Remove unused function hourglass_started.
8949 * dispextern.h (hourglass_started):
8950 * w32fns.c (hourglass_started):
8951 * xdisp.c (hourglass_started): Remove.
8952
8953 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
8954
8955 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
8956 Update dependencies.
8957
8958 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
8959
8960 * xgselect.c (xg_select): Put maxfds+1 into a var.
8961 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
8962
8963 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
8964
8965 2012-05-10 Dave Abrahams <dave@boostpro.com>
8966
8967 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
8968 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
8969
8970 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
8971
8972 * dbusbind.c (xd_registered_buses): New internal Lisp object.
8973 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
8974 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
8975 Initialize xd_registered_buses.
8976
8977 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
8978
8979 Untag more efficiently if USE_LSB_TAG.
8980 This is based on a proposal by YAMAMOTO Mitsuharu in
8981 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
8982 For an admittedly artificial (nth 8000 longlist) benchmark on
8983 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
8984 Emacs's overall text size by 1%.
8985 * lisp.h (XUNTAG): New macro.
8986 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
8987 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
8988 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
8989 * eval.c (Fautoload):
8990 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
8991 * frame.h (XFRAME): Use XUNTAG.
8992
8993 Port recent dbusbind.c changes to 32-bit --with-wide-int.
8994 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
8995 Remove unportable assumptions about print widths of types like
8996 dbus_uint32_t.
8997 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
8998 intptr_t when converting between pointer and integer, to avoid GCC
8999 warnings about wrong width.
9000
9001 2012-05-09 Eli Zaretskii <eliz@gnu.org>
9002
9003 * w32proc.c (new_child): Force Windows to reserve only 64KB of
9004 stack for each reader_thread, instead of defaulting to 8MB
9005 determined by the linker. This avoids failures in creating
9006 subprocesses on Windows 7, see the discussion in this thread:
9007 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
9008
9009 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
9010
9011 Fix up display of the *Minibuf-0* buffer in the mini window.
9012 * keyboard.c (read_char): Don't clear the echo area if there's no
9013 message to clear.
9014 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
9015 contents of *Minibuf-0*) if there's no message displayed in its stead.
9016
9017 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
9018
9019 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
9020 batch mode.
9021
9022 2012-05-06 Chong Yidong <cyd@gnu.org>
9023
9024 * lisp.mk (lisp): Update.
9025
9026 2012-05-05 Jim Meyering <meyering@redhat.com>
9027
9028 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
9029
9030 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
9031
9032 * data.c (PUT_ERROR): New macro.
9033 (syms_of_data): Use it. Add new error type `user-error'.
9034 * undo.c (user_error): New function.
9035 (Fprimitive_undo): Use it.
9036 * print.c (print_error_message): Adjust print style for `user-error'.
9037 * keyboard.c (user_error): New function.
9038 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
9039
9040 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
9041
9042 Do not limit current-time-string to years 1000..9999.
9043 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
9044 (Fcurrent_time_string): Support any year that is supported by the
9045 underlying localtime representation. Don't use asctime, as it
9046 has undefined behavior for years outside the range -999..9999.
9047
9048 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
9049
9050 Fix race conditions involving setenv, gmtime, localtime, asctime.
9051 Without this fix, interrupts could mess up code that uses these
9052 nonreentrant functions, since setting TZ invalidates existing
9053 tm_zone or tzname values, and since most of these functions return
9054 pointers to static storage.
9055 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
9056 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
9057 Grow the critical sections to include not just invoking
9058 localtime/gmtime, but also accessing these functions' results
9059 including their tm_zone values if any, and any related TZ setting.
9060 (format_time_string): Last arg is now struct tm *, not struct tm **,
9061 so that the struct tm is saved in the critical section.
9062 All callers changed. Simplify allocation of initial buffer, partly
9063 motivated by the fact that memory allocation needs to be outside
9064 the critical section.
9065
9066 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
9067
9068 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
9069 with RESET_INTERVAL.
9070
9071 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
9072 Remove duplicated buffer name initialization.
9073
9074 2012-05-02 Jim Meyering <jim@meyering.net>
9075
9076 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
9077
9078 * xfns.c (x_window): Use xstrdup (Bug#11375).
9079
9080 2012-05-02 Eli Zaretskii <eliz@gnu.org>
9081
9082 * xdisp.c (pos_visible_p): If already at a newline from the
9083 display string before the 'while' loop, don't walk back the glyphs
9084 from it3.glyph_row. Solves assertion violation when the display
9085 string begins with a newline (egg.el). (Bug#11367)
9086
9087 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
9088
9089 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
9090 Move to simple.el.
9091
9092 2012-05-01 Glenn Morris <rgm@gnu.org>
9093
9094 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
9095 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
9096 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
9097 All were removed before 23.1.
9098
9099 * dispnew.c: Remove HAVE_LIBNCURSES test;
9100 it is always true on relevant platforms.
9101
9102 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
9103 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
9104
9105 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
9106
9107 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
9108
9109 * .gdbinit (xpr): Remove checks for no longer existing misc types.
9110 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
9111 Remove.
9112
9113 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
9114
9115 Do not avoid creating empty evaporating overlays (Bug#9642).
9116 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
9117 That is, do not delete an evaporating overlay if it becomes
9118 empty after its bounds are adjusted to fit within its buffer.
9119 This fix caused other problems, and I'm reverting it until we get
9120 to the bottom of them.
9121
9122 2012-04-27 Chong Yidong <cyd@gnu.org>
9123
9124 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
9125
9126 2012-04-27 Eli Zaretskii <eliz@gnu.org>
9127
9128 * xdisp.c (pos_visible_p): If the window start position is beyond
9129 ZV, start the display from buffer beginning. Prevents assertion
9130 violation in init_iterator when the minibuffer window is scrolled
9131 via the scroll bar.
9132
9133 * window.c (window_scroll_pixel_based): Likewise.
9134
9135 2012-04-27 Chong Yidong <cyd@gnu.org>
9136
9137 * keymap.c (where_is_internal): Doc fix (Bug#10872).
9138
9139 2012-04-27 Glenn Morris <rgm@gnu.org>
9140
9141 * fileio.c (Fcopy_file, Fset_file_selinux_context):
9142 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
9143
9144 2012-04-27 Eli Zaretskii <eliz@gnu.org>
9145
9146 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
9147 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
9148
9149 2012-04-26 Eli Zaretskii <eliz@gnu.org>
9150
9151 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
9152 display element, check also the underlying string or buffer
9153 character. (Bug#11341)
9154
9155 * w32menu.c: Include w32heap.h.
9156 (add_menu_item): If the call to AppendMenuW (via
9157 unicode_append_menu) fails, disable Unicode menus only if we are
9158 running on Windows 9X/Me.
9159
9160 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
9161
9162 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
9163 (xgetint): Add missing shift for LSB tags.
9164
9165 2012-04-24 Martin Rudalics <rudalics@gmx.at>
9166
9167 * keyboard.c (read_char): Don't wipe echo area for select window
9168 events: These might get delayed via `mouse-autoselect-window'
9169 (Bug#11304).
9170
9171 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
9172
9173 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
9174 manipulation of :loaded-from data.
9175
9176 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
9177
9178 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
9179 now a cons (bug#11311).
9180
9181 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
9182
9183 Do not create empty overlays with the evaporate property (Bug#9642).
9184 * buffer.c (Fmove_overlay): Delete an evaporating overlay
9185 if it becomes empty after its bounds are adjusted to fit within
9186 its buffer. Without this fix, in a nonempty buffer (let ((o
9187 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
9188 yields an empty overlay that has the evaporate property, which is
9189 not supposed to happen.
9190
9191 Fix minor GTK3 problems found by static checking.
9192 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
9193 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
9194 (struct _EmacsFixedClass, emacs_fixed_get_type):
9195 Move decls here from emacsgtkfixed.h, since they needn't be public.
9196 (emacs_fixed_get_type): Now static.
9197 (emacs_fixed_class_init): Omit unused local.
9198 (emacs_fixed_child_type): Remove; unused.
9199 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
9200 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
9201 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
9202 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
9203 (EMACS_FIXED_GET_CLASS): Remove; unused.
9204 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
9205
9206 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
9207 Problem reported by Juanma Barranquero for Windows -Wunused-function.
9208
9209 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9210
9211 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
9212 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
9213 (__malloc_size_t, __malloc_ptrdiff_t):
9214 Remove. All uses removed, replaced by the definiens if needed,
9215 since we can assume C89 or better now.
9216 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
9217 (protect_malloc_state, align, get_contiguous_space)
9218 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
9219 (malloc_atfork_handler_child, malloc_enable_thread)
9220 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
9221 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
9222 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
9223 (special_realloc, _realloc_internal_nolock, _realloc_internal)
9224 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
9225 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
9226 Define using prototypes, not old style.
9227 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
9228 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
9229 (align): Don't assume that signed integer overflow wraps around.
9230 Omit unused local var.
9231 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
9232 (_free_internal_nolock, memalign, mallochook, reallochook):
9233 Omit no-longer-needed casts.
9234 (valloc): Use getpagesize, not __getpagesize.
9235 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
9236 (struct hdr): The 'magic' member is now size_t, not unsigned long.
9237
9238 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
9239
9240 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
9241
9242 Move functions from C to Lisp. Make non-blocking method calls
9243 the default. Implement further D-Bus standard interfaces.
9244
9245 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
9246 (QCdbus_request_name_allow_replacement)
9247 (QCdbus_request_name_replace_existing)
9248 (QCdbus_request_name_do_not_queue)
9249 (QCdbus_request_name_reply_primary_owner)
9250 (QCdbus_request_name_reply_in_queue)
9251 (QCdbus_request_name_reply_exists)
9252 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
9253 (QCdbus_registered_serial, QCdbus_registered_method)
9254 (QCdbus_registered_signal): New Lisp objects.
9255 (XD_DEBUG_MESSAGE): Use sizeof.
9256 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
9257 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
9258 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
9259 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
9260 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
9261 (xd_signature, xd_append_arg): Allow float for integer types.
9262 (xd_get_connection_references): New function.
9263 (xd_get_connection_address): Rename from xd_initialize.
9264 Return cached address.
9265 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
9266 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
9267 level.
9268 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9269 Return number of refcounts.
9270 (Fdbus_get_unique_name): Make stronger parameter check.
9271 (Fdbus_message_internal): New defun.
9272 (Fdbus_call_method, Fdbus_call_method_asynchronously)
9273 (Fdbus_method_return_internal, Fdbus_method_error_internal)
9274 (Fdbus_send_signal, Fdbus_register_service)
9275 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
9276 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
9277 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
9278 (Vdbus_compiled_version, Vdbus_runtime_version)
9279 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
9280 (Vdbus_message_type_method_return, Vdbus_message_type_error)
9281 (Vdbus_message_type_signal): New defvars.
9282 (Vdbus_registered_buses, Vdbus_registered_objects_table):
9283 Adapt docstring.
9284
9285 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9286
9287 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
9288 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
9289 Do not assume ptrdiff_t is the same width as 'int'.
9290
9291 * alloc.c: Handle unusual debugging option combinations.
9292 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
9293 since the two debugging options are incompatible.
9294 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
9295 is defined.
9296 (mem_init, mem_insert, mem_insert_fixup):
9297 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
9298 (NEED_MEM_INSERT): Remove; no longer needed.
9299
9300 2012-04-22 Leo Liu <sdl.web@gmail.com>
9301
9302 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
9303
9304 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
9305
9306 * sysdep.c [__FreeBSD__]: Minor cleanups.
9307 (list_system_processes, system_process_attributes) [__FreeBSD__]:
9308 Use Emacs indenting style more consistently. Avoid some casts.
9309 Use 'double' consistently rather than mixing 'float' and 'double'.
9310
9311 2012-04-21 Eduard Wiebe <usenet@pusto.de>
9312
9313 * sysdep.c (list_system_processes, system_process_attributes):
9314 Add implementation for FreeBSD (Bug#5243).
9315
9316 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
9317
9318 * lisp.mk (lisp): Update.
9319
9320 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
9321
9322 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
9323 It is never used otherwise.
9324
9325 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
9326
9327 * print.c (print_preprocess): Only check print_depth if print-circle
9328 is nil.
9329 (print_object): Check for cycles even when print-circle is nil and
9330 print-gensym is t, but only check print_depth if print-circle is nil.
9331
9332 2012-04-20 Chong Yidong <cyd@gnu.org>
9333
9334 * process.c (wait_reading_process_output): If EIO occurs on a pty,
9335 set the status to "failed" and ensure that sentinel is run.
9336
9337 2012-04-20 Glenn Morris <rgm@gnu.org>
9338
9339 * process.c (Fset_process_inherit_coding_system_flag)
9340 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
9341 (Fmake_network_process, Fmake_serial_process): Doc fix.
9342
9343 2012-04-20 Eli Zaretskii <eliz@gnu.org>
9344
9345 * xdisp.c (string_buffer_position_lim): Limit starting position to
9346 BEGV.
9347 (set_cursor_from_row): If called for a mode-line or header-line
9348 row, return zero immediately.
9349 (try_cursor_movement): If inside continuation line, don't back up
9350 farther than the first row after the header line, if any.
9351 Don't consider the header-line row as "partially visible", even if
9352 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
9353
9354 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
9355
9356 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
9357 (bug#11238).
9358
9359 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
9360 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
9361
9362 configure: new option --enable-gcc-warnings (Bug#11207)
9363 * Makefile.in (C_WARNINGS_SWITCH): Remove.
9364 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
9365 (ALL_CFLAGS): Use new macros rather than old.
9366 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
9367 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
9368 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
9369 -Wunused-result, -Wunused-variable. This should go away once
9370 the Emacs and Gnulib regex code is merged.
9371 (xmalloc, xrealloc): Now static.
9372
9373 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
9374
9375 * dired.c (Fsystem_groups): Remove unused local.
9376
9377 2012-04-17 Glenn Morris <rgm@gnu.org>
9378
9379 * dired.c (Fsystem_users): Doc fix.
9380
9381 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
9382
9383 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
9384 (syms_of_dired): Add them.
9385
9386 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
9387
9388 Fix minor alloc.c problems found by static checking.
9389 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
9390 New extern decls, to avoid calling undeclared functions.
9391 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
9392 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
9393 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
9394 (NEED_MEM_INSERT): New macro.
9395 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
9396 Remove one incorrect comment and fix another.
9397
9398 Fix minor ralloc.c problems found by static checking.
9399 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
9400 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
9401 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
9402 (r_alloc_sbrk): Now static.
9403
9404 Improve ralloc.c interface checking.
9405 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
9406 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
9407 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
9408 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
9409 [REL_ALLOC]: ... to here, to check interface.
9410 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
9411 Remove decls. This fixes an "It stinks!".
9412
9413 * alloc.c (which_symbols): Fix alignment issue / type clash.
9414
9415 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
9416
9417 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
9418 (struct Lisp_Misc_Any): Likewise.
9419 (struct Lisp_Free): Likewise.
9420 * alloc.c (union aligned_Lisp_Symbol): Define.
9421 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
9422 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
9423 (union aligned_Lisp_Misc): Define.
9424 (MARKER_BLOCK_SIZE, struct marker_block): Use union
9425 aligned_Lisp_Misc instead of union Lisp_Misc.
9426 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
9427
9428 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
9429
9430 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
9431 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
9432 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
9433 * s/netbsd.h, s/sol2-6.h:
9434 Remove definition of GC_MARK_STACK, since the default now works.
9435 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
9436 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
9437 no longer the default.
9438 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
9439
9440 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
9441
9442 * lread.c (lisp_file_lexically_bound_p):
9443 Fix hang at ";-*-\n" (bug#11238).
9444
9445 2012-04-14 Eli Zaretskii <eliz@gnu.org>
9446
9447 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
9448 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
9449
9450 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
9451
9452 * nsterm.m (constrainFrameRect): Always constrain when there is only
9453 one screen (Bug#10962).
9454
9455 2012-04-13 Ken Brown <kbrown@cornell.edu>
9456
9457 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
9458
9459 2012-04-13 Reuben Thomas <rrt@sc3d.org>
9460
9461 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
9462
9463 2012-04-11 Daniel Colascione <dancol@dancol.org>
9464
9465 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
9466 against is gone. It's better to use vfork now so that when Cygwin
9467 gains a new, working vfork, we use it automatically (bug#10398).
9468
9469 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9470
9471 * window.c (save_window_save): Obey window-point-insertion-type.
9472
9473 2012-04-11 Glenn Morris <rgm@gnu.org>
9474
9475 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
9476
9477 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
9478
9479 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
9480
9481 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
9482
9483 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
9484 (force_quit_count): New var.
9485 (handle_interrupt): Use it.
9486
9487 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
9488
9489 * w32.c (w32_delayed_load): Record the full path of the library
9490 being loaded (bug#10424).
9491
9492 2012-04-09 Glenn Morris <rgm@gnu.org>
9493
9494 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
9495 not just in the obarray, before snarfing them. (Bug#11036)
9496
9497 * Makefile.in ($(leimdir)/leim-list.el):
9498 Pass EMACS rather than BUILT_EMACS.
9499
9500 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
9501
9502 * process.c (make_process):
9503 * process.h: Add integer `gnutls_handshakes_tried' member to
9504 process struct.
9505
9506 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
9507 Add convenience `GNUTLS_LOG2i' macro.
9508
9509 * gnutls.c (gnutls_log_function2i): Convenience log function.
9510 (emacs_gnutls_read): Use new log functions,
9511 `gnutls_handshakes_tried' process member, and
9512 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
9513 attempts per process (connection).
9514
9515 2012-04-09 Chong Yidong <cyd@gnu.org>
9516
9517 * eval.c (Fuser_variable_p, user_variable_p_eh)
9518 (lisp_indirect_variable): Functions deleted.
9519 (Fdefvar): Caller changed.
9520
9521 * callint.c (Finteractive, Fcall_interactively):
9522 * minibuf.c (Fread_variable): Callers changed.
9523
9524 2012-04-09 Eli Zaretskii <eliz@gnu.org>
9525
9526 * xdisp.c (set_cursor_from_row): If the display string appears in
9527 the buffer at position that is closer to point than the position
9528 after the display string, display the cursor on the first glyph of
9529 the display string. Fixes cursor display when a 'display' text
9530 property immediately follows invisible text. (Bug#11094)
9531
9532 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
9533
9534 composite.c: use 'double' consistently
9535 * composite.c (get_composition_id): Use 'double' consistently
9536 instead of converting 'float' to 'double' and vice versa; this is
9537 easier to understand and avoids a GCC warning.
9538
9539 2012-04-09 Glenn Morris <rgm@gnu.org>
9540
9541 * Makefile.in: Generate leim-list with bootstrap-emacs, in
9542 preparation for dumping it with emacs. (Bug#4789)
9543 (leimdir): New variable.
9544 ($(leimdir)/leim-list.el): New rule.
9545 (emacs$(EXEEXT)): Depend on leim-list.el.
9546
9547 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
9548 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
9549 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
9550
9551 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
9552
9553 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
9554 proper alignment.
9555
9556 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
9557
9558 * xml.c (init_libxml2_functions) [WINDOWSNT]:
9559 Remove unused local variable.
9560
9561 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
9562
9563 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
9564 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
9565 (mark_memory): Mark Lisp_Objects only if pointers might hide in
9566 objects, as mark_maybe_pointer will catch them otherwise.
9567 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
9568 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
9569
9570 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
9571
9572 Fix typo that broke non-Windows builds.
9573 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
9574
9575 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9576
9577 Support building on MS-Windows with libxml2.
9578
9579 * makefile.w32-in (OBJ2): Add xml.$(O).
9580 (GLOBAL_SOURCES): Add xml.c.
9581 ($(BLD)/xml.$(O)): New dependency list.
9582
9583 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
9584 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
9585 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
9586 [!WINDOWSNT]: New macros.
9587 (init_libxml2_functions, libxml2_loaded_p): New functions.
9588 (parse_region): Call fn_xmlCheckVersion instead of using the macro
9589 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
9590 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
9591 Calls xmlCleanupParser only if libxml2 was loaded (or statically
9592 linked in).
9593 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
9594 Call init_libxml2_functions before calling libxml2 functions.
9595 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
9596
9597 * emacs.c: Don't include libxml/parser.h.
9598 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
9599 xmlCleanupParser directly.
9600
9601 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
9602
9603 2012-04-07 Eli Zaretskii <eliz@gnu.org>
9604
9605 * indent.c (Fvertical_motion): If there is a display string at
9606 point, use it.vpos to compute how many lines to backtrack after
9607 move_it_to point. (Bug#11133)
9608
9609 2012-04-06 Eli Zaretskii <eliz@gnu.org>
9610
9611 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
9612 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
9613 about subtle differences between FETCH_CHAR* and STRING_CHAR*
9614 macros related to unification of CJK characters. For the details,
9615 see the discussion following the message here:
9616 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
9617
9618 2012-04-04 Chong Yidong <cyd@gnu.org>
9619
9620 * keyboard.c (Vdelayed_warnings_list): Doc fix.
9621
9622 2012-04-01 Eli Zaretskii <eliz@gnu.org>
9623
9624 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
9625 instead of alloca. (Bug#11138)
9626
9627 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
9628
9629 * w32menu.c (is_simple_dialog): Properly check lisp types.
9630 (Bug#11141)
9631
9632 2012-03-31 Eli Zaretskii <eliz@gnu.org>
9633
9634 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
9635 position we get to after a call to move_it_to fails the
9636 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
9637 only if we wind up in a string from display property. (Bug#11063)
9638
9639 * window.c (Fdelete_other_windows_internal): Invalidate the row
9640 and column information about mouse highlight, so that redisplay
9641 restores it after reallocating the glyph matrices. (Bug#7464)
9642
9643 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
9644 string comes from a `display' text property, use the buffer
9645 position of that property as if we actually saw that position in
9646 the row's glyphs.
9647 (move_it_by_lines): Remove the assertion that
9648 "it->current_x == 0 && it->hpos == 0" which can be legitimately
9649 violated when there's a before-string at the beginning of a line.
9650 (Bug#11063)
9651
9652 2012-03-30 Eli Zaretskii <eliz@gnu.org>
9653
9654 * xdisp.c (append_space_for_newline): If the default face was
9655 remapped, use the remapped face for the appended newline.
9656 (extend_face_to_end_of_line): Use the remapped default face for
9657 extending the face to the end of the line.
9658 (display_line): Call extend_face_to_end_of_line when the default
9659 face was remapped. (Bug#11068)
9660
9661 2012-03-29 Eli Zaretskii <eliz@gnu.org>
9662
9663 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
9664
9665 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
9666
9667 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
9668
9669 2012-03-27 Glenn Morris <rgm@gnu.org>
9670
9671 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
9672 Doc fixes.
9673
9674 2012-03-26 Kenichi Handa <handa@m17n.org>
9675
9676 * dispextern.h (struct glyph): Fix previous change. Change the
9677 bit length of glyphless.ch to 25 (Bug#11082).
9678
9679 2012-03-26 Chong Yidong <cyd@gnu.org>
9680
9681 * keyboard.c (Vselection_inhibit_update_commands): New variable.
9682 (command_loop_1): Use it; inhibit selection update for
9683 handle-select-window too (Bug#8996).
9684
9685 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
9686
9687 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
9688
9689 2012-03-25 Kenichi Handa <handa@m17n.org>
9690
9691 * dispextern.h (struct glyph): Change the bit length of
9692 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
9693
9694 2012-03-24 Eli Zaretskii <eliz@gnu.org>
9695
9696 * s/ms-w32.h (tzname): Include time.h before redirecting to
9697 _tzname. Fixes the MSVC build. (Bug#9960)
9698
9699 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
9700
9701 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
9702 characters.
9703
9704 * xterm.c (XTread_socket): Only modify handling_signal if
9705 !SYNC_INPUT. (Bug#11080)
9706
9707 2012-03-23 Eli Zaretskii <eliz@gnu.org>
9708
9709 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
9710 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
9711 when fetching a multibyte character consumes more bytes than
9712 CHAR_BYTES returns, due to unification of CJK characters in
9713 string_char. (Bug#11073)
9714
9715 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
9716
9717 * process.c (wait_reading_process_output): Handle pty disconnect
9718 by refraining from sending oneself a SIGCHLD (bug#10933).
9719
9720 2012-03-22 Chong Yidong <cyd@gnu.org>
9721
9722 * dispextern.h (struct it): New member string_from_prefix_prop_p.
9723
9724 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9725 Mark string as coming from a prefix property.
9726 (handle_face_prop): Use default face for prefix strings (Bug#4281).
9727 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
9728
9729 2012-03-21 Chong Yidong <cyd@gnu.org>
9730
9731 * xfaces.c (Vface_remapping_alist): Doc fix.
9732
9733 2012-03-20 Eli Zaretskii <eliz@gnu.org>
9734
9735 * w32proc.c (Fw32_set_console_codepage)
9736 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
9737 Doc fixes.
9738
9739 2012-03-20 Chong Yidong <cyd@gnu.org>
9740
9741 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
9742 to reflect default non-nil value of redisplay-dont-pause.
9743
9744 2012-03-19 Kenichi Handa <handa@m17n.org>
9745
9746 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
9747 it fit in a valid range (Bug#11003).
9748
9749 2012-03-18 Eli Zaretskii <eliz@gnu.org>
9750
9751 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
9752 that is not from display property, accept the row as a "cursor
9753 row" if one of the string's character has a non-nil `cursor'
9754 property. Fixes cursor positioning when there are newlines in
9755 overlay strings, e.g. in icomplete.el. (Bug#11035)
9756
9757 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
9758
9759 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
9760
9761 2012-03-12 Chong Yidong <cyd@gnu.org>
9762
9763 * eval.c (inhibit_lisp_code): Rename from
9764 inhibit_window_configuration_change_hook; move from window.c.
9765
9766 * xfns.c (unwind_create_frame_1, Fx_create_frame):
9767 * window.c (run_window_configuration_change_hook)
9768 (syms_of_window): Callers changed.
9769
9770 2012-03-11 Chong Yidong <cyd@gnu.org>
9771
9772 * keymap.c (Fkey_description): Doc fix (Bug#9700).
9773
9774 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
9775
9776 2012-03-10 Chong Yidong <cyd@gnu.org>
9777
9778 * frame.c (other_visible_frames): Don't assume the selected frame
9779 is visible (Bug#10955).
9780
9781 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
9782
9783 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
9784
9785 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
9786
9787 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
9788 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
9789 zero (Bug#10954).
9790
9791 2012-03-03 Glenn Morris <rgm@gnu.org>
9792
9793 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
9794
9795 2012-03-02 Eli Zaretskii <eliz@gnu.org>
9796
9797 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
9798 position past the first glyph_row that ends at ZV. (Bug#10902)
9799 (redisplay_window, next_element_from_string): Fix typos in
9800 comments.
9801 (redisplay_window): Pass to move_it_vertically the margin in
9802 pixels, not in screen lines.
9803
9804 2012-03-02 Glenn Morris <rgm@gnu.org>
9805
9806 * buffer.c (buffer-list-update-hook): Doc fix.
9807
9808 2012-02-29 Eli Zaretskii <eliz@gnu.org>
9809
9810 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
9811 push_it before setting up the iterator for the first overlay
9812 string, even if we have an empty string loaded.
9813 (next_overlay_string): If there's an empty string on the iterator
9814 stack, pop the stack. (Bug#10903)
9815
9816 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
9817
9818 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
9819 Suggested by Stefan Monnier in
9820 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
9821 * alloc.c (widen_to_Lisp_Object): New static function.
9822 (mark_memory): Also mark Lisp_Objects by fetching pointer words
9823 and widening them to Lisp_Objects. This would work even if
9824 USE_LSB_TAG is defined and wide integers are used, which might
9825 happen in a future version of Emacs.
9826
9827 2012-02-25 Chong Yidong <cyd@gnu.org>
9828
9829 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
9830 Doc fix.
9831
9832 * xselect.c (Fx_selection_exists_p): Doc fix.
9833 (x_clipboard_manager_save_all): Print an informative message
9834 before saving to clipboard manager.
9835
9836 2012-02-24 Chong Yidong <cyd@gnu.org>
9837
9838 * keyboard.c (process_special_events): Handle all X selection
9839 requests in kbd_buffer, not just the next one (Bug#8869).
9840
9841 2012-02-23 Chong Yidong <cyd@gnu.org>
9842
9843 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
9844 call when setting menu-bar-lines and tool-bar-lines parameters.
9845 (unwind_create_frame_1): New helper function.
9846
9847 * window.c (inhibit_window_configuration_change_hook): New var.
9848 (run_window_configuration_change_hook): Obey it.
9849 (syms_of_window): Initialize it.
9850
9851 2012-02-22 Chong Yidong <cyd@gnu.org>
9852
9853 * xterm.c (x_draw_image_relief): Add missing type check for
9854 Vtool_bar_button_margin (Bug#10743).
9855
9856 2012-02-21 Chong Yidong <cyd@gnu.org>
9857
9858 * fileio.c (Vfile_name_handler_alist): Doc fix.
9859
9860 * buffer.c (Fget_file_buffer): Protect against invalid file
9861 handler return value.
9862
9863 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
9864
9865 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
9866 when computing $valmask.
9867
9868 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
9869 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
9870 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
9871 It's useless in that case, and it can cause problems on hosts
9872 that allocate halves of EMACS_INT values separately.
9873 Reported by Dan Horák. Diagnosed by Andreas Schwab in
9874 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
9875 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
9876 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
9877 it avoids undefined behavior on hosts where shifting right by more
9878 than the word width has undefined behavior.
9879
9880 2012-02-19 Chong Yidong <cyd@gnu.org>
9881
9882 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
9883 (Funhandled_file_name_directory, Ffile_name_as_directory)
9884 (Fdirectory_file_name, Fexpand_file_name)
9885 (Fsubstitute_in_file_name): Protect against invalid file handler
9886 return values (Bug#10845).
9887
9888 2012-02-18 Eli Zaretskii <eliz@gnu.org>
9889
9890 * .gdbinit (pitx): Fix incorrect references to fields of the
9891 iterator stack.
9892
9893 2012-02-17 Chong Yidong <cyd@gnu.org>
9894
9895 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
9896
9897 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
9898
9899 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
9900 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
9901
9902 2012-02-15 Chong Yidong <cyd@gnu.org>
9903
9904 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
9905 marked as special. Also, starting docstrings with * is obsolete.
9906
9907 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
9908
9909 * gnutls.c (emacs_gnutls_write): Fix last change.
9910
9911 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
9912
9913 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
9914 send_process.
9915
9916 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
9917
9918 * keymap.c (Fsingle_key_description): Handle char ranges.
9919
9920 2012-02-12 Chong Yidong <cyd@gnu.org>
9921
9922 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
9923 as that creates a dangerous corner case.
9924
9925 * window.c (Fdelete_window_internal): Invalidate the mouse
9926 highlight (Bug#9904).
9927
9928 2012-02-12 Glenn Morris <rgm@gnu.org>
9929
9930 * xselect.c (Fx_own_selection_internal)
9931 (Fx_get_selection_internal, Fx_disown_selection_internal)
9932 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
9933 * nsselect.m (Fx_own_selection_internal)
9934 (Fx_disown_selection_internal, Fx_selection_exists_p)
9935 (Fx_selection_owner_p, Fx_get_selection_internal):
9936 Sync docs and argument specs with the xselect.c versions.
9937
9938 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
9939
9940 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
9941
9942 2012-02-11 Eli Zaretskii <eliz@gnu.org>
9943
9944 * w32select.c (Fx_selection_exists_p): Sync doc string and
9945 argument list with xselect.c. (Bug#10783)
9946
9947 * w16select.c (Fx_selection_exists_p): Sync doc string and
9948 argument list with xselect.c. (Bug#10783)
9949
9950 2012-02-10 Glenn Morris <rgm@gnu.org>
9951
9952 * fns.c (Fsecure_hash): Doc fix.
9953
9954 2012-02-09 Kenichi Handa <handa@m17n.org>
9955
9956 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
9957
9958 2012-02-07 Chong Yidong <cyd@gnu.org>
9959
9960 * buffer.c (Fbuffer_local_variables)
9961 (buffer_lisp_local_variables): Handle unbound vars correctly;
9962 don't let Qunbound leak into Lisp.
9963
9964 2012-02-07 Glenn Morris <rgm@gnu.org>
9965
9966 * image.c (Fimagemagick_types): Doc fix.
9967
9968 * image.c (imagemagick-render-type): Change it from a lisp object
9969 to an integer. Move the doc here from the lisp manual.
9970 Treat all values not equal to 0 the same.
9971
9972 2012-02-06 Chong Yidong <cyd@gnu.org>
9973
9974 * doc.c (store_function_docstring): Avoid applying docstring of
9975 alias to base function (Bug#2603).
9976
9977 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
9978
9979 * .gdbinit (pp1, pv1): Remove redundant defines.
9980 (pr): Use pp.
9981
9982 2012-02-04 Chong Yidong <cyd@gnu.org>
9983
9984 * nsterm.m: Declare a global (Bug#10694).
9985
9986 2012-02-04 Eli Zaretskii <eliz@gnu.org>
9987
9988 * w32.c (get_emacs_configuration_options):
9989 Include --enable-checking, if specified, in the return value.
9990
9991 2012-02-04 Martin Rudalics <rudalics@gmx.at>
9992
9993 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
9994 after rounding frame sizes. (Bug#9723)
9995
9996 2012-02-04 Eli Zaretskii <eliz@gnu.org>
9997
9998 * keyboard.c (adjust_point_for_property): Don't position point
9999 before BEGV. (Bug#10696)
10000
10001 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
10002
10003 Handle overflow when computing char display width (Bug#9496).
10004 * character.c (char_width): Return EMACS_INT, not int.
10005 (char_width, c_string_width): Check for overflow when
10006 computing the width; this is possible now that individual
10007 characters can have unbounded width. Problem introduced
10008 by merge from Emacs 23 on 2012-01-19.
10009
10010 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
10011
10012 * dbusbind.c (Fdbus_register_method): Mention the return value
10013 :ignore in the docstring.
10014
10015 2012-02-02 Glenn Morris <rgm@gnu.org>
10016
10017 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
10018
10019 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10020 Unconditionally set to t. (Bug#10673)
10021 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10022 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
10023 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
10024
10025 2012-02-02 Kenichi Handa <handa@m17n.org>
10026
10027 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
10028 0, do not call append_composite_glyph.
10029
10030 2012-02-02 Kenichi Handa <handa@m17n.org>
10031
10032 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
10033 NULL (Bug#6988).
10034 (x_produce_glyphs): If the component of a composition is a null
10035 string, set it->pixel_width to 1 to avoid zero-width glyph.
10036
10037 2012-02-01 Eli Zaretskii <eliz@gnu.org>
10038
10039 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
10040 first 2 arguments are identical. This makes inserting large
10041 output from a subprocess an order of magnitude faster on
10042 MS-Windows, where all sbrk'ed memory is always contiguous.
10043
10044 2012-01-31 Glenn Morris <rgm@gnu.org>
10045
10046 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
10047 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
10048 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
10049
10050 2012-01-29 Glenn Morris <rgm@gnu.org>
10051
10052 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
10053
10054 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
10055
10056 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
10057
10058 2012-01-28 Chong Yidong <cyd@gnu.org>
10059
10060 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
10061
10062 2012-01-26 Chong Yidong <cyd@gnu.org>
10063
10064 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
10065
10066 * search.c (Fsearch_forward, Fsearch_backward): Document negative
10067 repeat counts (Bug#10507).
10068
10069 2012-01-26 Glenn Morris <rgm@gnu.org>
10070
10071 * lread.c (syms_of_lread): Doc fix.
10072
10073 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
10074
10075 * coding.c (encode_designation_at_bol): Change return value to
10076 EMACS_INT.
10077
10078 2012-01-25 Chong Yidong <cyd@gnu.org>
10079
10080 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
10081
10082 2012-01-21 Chong Yidong <cyd@gnu.org>
10083
10084 * floatfns.c (Fcopysign): Make the second argument non-optional,
10085 since nil is not allowed anyway.
10086
10087 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
10088
10089 * process.c (read_process_output): Use p instead of XPROCESS (proc).
10090 (send_process): Likewise.
10091
10092 2012-01-19 Martin Rudalics <rudalics@gmx.at>
10093
10094 * window.c (save_window_save, Fcurrent_window_configuration)
10095 (Vwindow_persistent_parameters): Do not use Qstate.
10096 Rewrite doc-strings.
10097
10098 2012-01-19 Kenichi Handa <handa@m17n.org>
10099
10100 * character.c (char_width): New function.
10101 (Fchar_width, c_string_width, lisp_string_width):
10102 Use char_width (Bug#9496).
10103
10104 2012-01-16 Martin Rudalics <rudalics@gmx.at>
10105
10106 * window.c (Vwindow_persistent_parameters): New variable.
10107 (Fset_window_configuration, save_window_save): Handle persistent
10108 window parameters.
10109
10110 2012-01-14 Eli Zaretskii <eliz@gnu.org>
10111
10112 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
10113 thrashing the stack of the thread. (Bug#9087)
10114
10115 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
10116
10117 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
10118
10119 2012-01-11 Eli Zaretskii <eliz@gnu.org>
10120
10121 * xdisp.c (rows_from_pos_range): Handle the case where the
10122 highlight ends on a newline. (Bug#10464)
10123 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
10124 he end column for display of highlight that ends on a newline
10125 before a R2L line.
10126
10127 2012-01-11 Glenn Morris <rgm@gnu.org>
10128
10129 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
10130 from load-path also when installation-directory is nil. (Bug#10208)
10131
10132 2012-01-10 Glenn Morris <rgm@gnu.org>
10133
10134 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
10135
10136 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
10137 Update template values to be closer to their typical values these days.
10138
10139 2012-01-09 Eli Zaretskii <eliz@gnu.org>
10140
10141 * xdisp.c (rows_from_pos_range): Accept additional argument
10142 DISP_STRING, and accept any glyph in a row whose object is that
10143 string as eligible for mouse highlight. Fixes mouse highlight of
10144 display strings from overlays. (Bug#10464)
10145
10146 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
10147
10148 emacs: fix an auto-save permissions race condition (Bug#10400)
10149 * fileio.c (auto_saving_dir_umask): New static var.
10150 (Fmake_directory_internal): Use it.
10151 (do_auto_save_make_dir): Set it, instead of invoking chmod after
10152 creating the directory. The old code temporarily assigns
10153 too-generous permissions to the directory.
10154 (do_auto_save_eh): Clear it.
10155 (Fdo_auto_save): Catch all errors, not just file errors, so
10156 that the var is always cleared.
10157
10158 2012-01-07 Eli Zaretskii <eliz@gnu.org>
10159
10160 * search.c (scan_buffer): Pass character positions to
10161 know_region_cache, not byte positions. (Bug#6540)
10162
10163 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
10164
10165 * w32.c (sys_rename): Report EXDEV when rename of a directory
10166 fails because the target is on another logical disk. (Bug#10284)
10167
10168 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
10169
10170 * xterm.c (x_embed_request_focus): New function.
10171
10172 * xterm.h: Add prototype.
10173
10174 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
10175
10176 2012-01-05 Glenn Morris <rgm@gnu.org>
10177
10178 * emacs.c (emacs_copyright): Update short copyright year to 2012.
10179
10180 2012-01-01 Eli Zaretskii <eliz@gnu.org>
10181
10182 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
10183 Load gnutls_transport_set_lowat only if GnuTLS version is below
10184 2.11.1.
10185 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
10186 GnuTLS versions below 2.11.1.
10187
10188 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
10189
10190 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
10191 to the doc string advising against its use for altering the way
10192 windows are scrolled.
10193
10194 2011-12-28 Kenichi Handa <handa@m17n.org>
10195
10196 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
10197 coding-system ASCII compatible only when it does not produce BOM
10198 on encoding (Bug#10383).
10199
10200 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
10201
10202 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
10203 can scroll.
10204 (create_and_show_popup_menu): Always use menu_position_func for
10205 Gtk3 (Bug#10361).
10206
10207 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
10208
10209 * callint.c (Fcall_interactively): Don't truncate prompt string.
10210
10211 2011-12-23 Eli Zaretskii <eliz@gnu.org>
10212
10213 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
10214 property that ends at ZV, so that the bidi iteration could be
10215 resumed from there (after widening). (Bug#10360)
10216
10217 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
10218
10219 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
10220
10221 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
10222
10223 * nsterm.m (x_free_frame_resources):
10224 Release f->output_data.ns->miniimage.
10225 (ns_index_color): Fix indentation. Do not retain
10226 color_table->colors[i].
10227
10228 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
10229 before returning.
10230
10231 * nsfns.m (x_set_background_color): Assign return value from
10232 ns_index_color to face-background instead of NSColor*.
10233 (ns_implicitly_set_icon_type): Fix indentation.
10234 Change assignment in for loop to comparison.
10235
10236 * emacs.c (ns_pool): New variable.
10237 (main): Assign ns_pool.
10238 (Fkill_emacs): Call ns_release_autorelease_pool.
10239
10240 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
10241 autorelease fdesc, release fdAttrs and tdict.
10242 (ns_get_covering_families): Release charset.
10243 (ns_findfonts): Release NSFontDescriptor created with new.
10244 (ns_uni_to_glyphs): Fix indentation.
10245 (setString): Release attrStr before assigning new value.
10246
10247 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10248
10249 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
10250 and NS_IMPL_COCOA.
10251 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
10252 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
10253
10254 2011-12-18 David Reitter <reitter@cmu.edu>
10255
10256 * nsterm.m (ns_term_init): Subscribe for notifications
10257 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
10258 to method trackingNotification in EmacsMenu.
10259
10260 * nsmenu.m (trackingMenu): New variable.
10261 (trackingNotification): New method (from Aquamacs).
10262 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
10263 from Aquamacs (Bug#7030).
10264
10265 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
10266
10267 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
10268 (symbol_to_nsstring): Fix indentation.
10269 (ns_symbol_to_pb): New function.
10270 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
10271 (Fns_rotate_cut_buffers_internal): Remove.
10272 (Fns_store_selection_internal): Rename from
10273 Fns_store_cut_buffer_internal.
10274 (ns_get_foreign_selection, Fx_own_selection_internal)
10275 (Fx_disown_selection_internal, Fx_selection_exists_p)
10276 (Fns_get_selection_internal, Fns_store_selection_internal):
10277 Use ns_symbol_to_pb and check if return value is nil.
10278 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
10279 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
10280 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
10281 renamed to Sns_store_selection_internal.
10282 (ns_handle_selection_request): Move code to Fx_own_selection_internal
10283 and remove this function.
10284 (ns_handle_selection_clear): Remove, never used.
10285 (Fx_own_selection_internal): Move code from ns_handle_selection_request
10286 here.
10287
10288 2011-12-17 Ken Brown <kbrown@cornell.edu>
10289
10290 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
10291 GID is unknown (Bug#10257).
10292
10293 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
10294
10295 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
10296 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
10297 which caused a build failure on GNU/Linux IA-64. This problem was
10298 introduced by my 2011-10-07 patch.
10299
10300 2011-12-15 Juri Linkov <juri@jurta.org>
10301
10302 * image.c (imagemagick_error): New function. (Bug#10112)
10303 (imagemagick_load_image): Comment out `MagickSetResolution' call.
10304 Use `imagemagick_error' where ImageMagick functions return
10305 `MagickFalse'.
10306 (Fimagemagick_types): Add `Fnreverse' to return the list in the
10307 proper order.
10308
10309 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10310
10311 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
10312 fill background (Bug#8992).
10313
10314 2011-12-13 Martin Rudalics <rudalics@gmx.at>
10315
10316 * window.c (Vwindow_combination_resize)
10317 (Vwindow_combination_limit): Use t instead of non-nil in
10318 doc-strings.
10319 (Vrecenter_redisplay): Add first sentence of doc-string on
10320 separate line.
10321 (Frecenter): Fix doc-string typo.
10322
10323 2011-12-11 Kenichi Handa <handa@m17n.org>
10324
10325 * coding.c (Funencodable_char_position): Pay attention to the
10326 buffer text relocation (Bug#9389).
10327
10328 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
10329
10330 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
10331 gtk_init (Bug#10100).
10332
10333 2011-12-10 Eli Zaretskii <eliz@gnu.org>
10334
10335 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
10336 IT->string is nil. (Bug#10263)
10337
10338 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
10339
10340 * nsterm.h (x_free_frame_resources): Declare.
10341
10342 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
10343 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
10344
10345 * nsterm.h (ns_get_defaults_value): Declare.
10346
10347 * nsterm.m (ns_default): Call ns_get_defaults_value.
10348
10349 2011-12-09 Eli Zaretskii <eliz@gnu.org>
10350
10351 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
10352 (Bug#10170)
10353
10354 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10355
10356 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
10357 that where the value of an _OBJC_* symbol points to is in the .bss
10358 section (Bug#10240).
10359
10360 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10361
10362 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
10363 after the loop to call ccl_driver at least once (Bug#8619).
10364
10365 2011-12-08 Kenichi Handa <handa@m17n.org>
10366
10367 * ftfont.c (get_adstyle_property): Fix previous change
10368 (Bug#10233).
10369
10370 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
10371
10372 * w32.c (init_environment): If no_site_lisp, remove site-lisp
10373 dirs from the default value of EMACSLOADPATH (bug#10208).
10374
10375 2011-12-07 Glenn Morris <rgm@gnu.org>
10376
10377 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
10378 installation and source directories as well. (Bug#10208)
10379
10380 2011-12-06 Chong Yidong <cyd@gnu.org>
10381
10382 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
10383
10384 2011-12-06 Glenn Morris <rgm@gnu.org>
10385
10386 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
10387 as an error, not just -1. (Bug#10217)
10388
10389 2011-12-05 Chong Yidong <cyd@gnu.org>
10390
10391 * keyboard.c (process_special_events): New function.
10392 (swallow_events, Finput_pending_p): Use it (Bug#10195).
10393
10394 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
10395
10396 * coding.c (encode_designation_at_bol): Don't use uninitialized
10397 local variable (Bug#9318).
10398
10399 2011-12-05 Kenichi Handa <handa@m17n.org>
10400
10401 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
10402 return Qnil (Bug#8046, Bug#10193).
10403
10404 2011-12-05 Kenichi Handa <handa@m17n.org>
10405
10406 * coding.c (encode_designation_at_bol): New args charbuf_end and
10407 dst. Return the number of produced bytes. Callers changed.
10408 (coding_set_source): Return how many bytes coding->source was
10409 relocated.
10410 (coding_set_destination): Return how many bytes
10411 coding->destination was relocated.
10412 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
10413 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
10414
10415 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
10416
10417 * coding.c (CODING_CHAR_CHARSET_P): New macro.
10418 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
10419 macro (Bug#9318).
10420
10421 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
10422
10423 The following changes are to fix Bug#9318.
10424
10425 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
10426 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
10427 (encode_coding_iso_2022, encode_coding_sjis)
10428 (encode_coding_big5, encode_coding_charset): Use the above macros.
10429
10430 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
10431
10432 * lisp.h (process_quit_flag): Fix external declaration.
10433
10434 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
10435
10436 Don't macro-inline non-performance-critical code.
10437 * eval.c (process_quit_flag): New function.
10438 * lisp.h (QUIT): Use it.
10439
10440 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
10441
10442 * nsfns.m (get_geometry_from_preferences): New function.
10443 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
10444
10445 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
10446
10447 * emacs.c (Qkill_emacs): Define.
10448 (syms_of_emacs): Initialize it.
10449 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
10450 Qquit_flag to `kill-emacs' instead.
10451 (quit_throw_to_read_char): Add parameter `from_signal'.
10452 All callers changed. Call Fkill_emacs if requested and safe.
10453 * lisp.h (QUIT): Call Fkill_emacs if requested.
10454
10455 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
10456
10457 * widget.c (update_wm_hints): Return if wmshell is null.
10458 (widget_update_wm_size_hints): New function.
10459
10460 * widget.h (widget_update_wm_size_hints): Declare.
10461
10462 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
10463 widget_update_wm_size_hints (Bug#10104).
10464
10465 2011-12-03 Eli Zaretskii <eliz@gnu.org>
10466
10467 * xdisp.c (handle_invisible_prop): If the invisible text ends just
10468 before a newline, prepare the bidi iterator for consuming the
10469 newline, and keep the current paragraph direction. (Bug#10183)
10470 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
10471
10472 2011-12-02 Juri Linkov <juri@jurta.org>
10473
10474 * search.c (Fword_search_regexp): New Lisp function created from
10475 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
10476 (Fword_search_backward, Fword_search_forward)
10477 (Fword_search_backward_lax, Fword_search_forward_lax):
10478 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
10479 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
10480
10481 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
10482
10483 * fileio.c (Finsert_file_contents): Move after-change-function call
10484 to before the "handled:" label, since all "goto handled" appear in
10485 cases where the *-change-functions have already been properly called
10486 (bug#10117).
10487
10488 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
10489
10490 * keyboard.c (interrupt_signal): Don't call kill-emacs when
10491 waiting for input. (Bug#10169)
10492
10493 2011-11-30 Eli Zaretskii <eliz@gnu.org>
10494
10495 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
10496 verifies glyph row's hash code--we have just reallocated the
10497 glyphs, so their contents can be complete garbage. (Bug#10164)
10498
10499 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
10500
10501 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
10502
10503 2011-11-30 Eli Zaretskii <eliz@gnu.org>
10504
10505 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
10506 attributes are tested _before_ calling verify_row_hash, to protect
10507 against GCC re-ordering of the tests. (Bug#10164)
10508
10509 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
10510
10511 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
10512
10513 * xterm.c (handle_one_xevent): Only set async_visible and friends
10514 if net_wm_state_hidden_seen is non-zero (Bug#10002)
10515 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
10516 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
10517
10518 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
10519
10520 Remove GCPRO-related macros that exist only to avoid shadowing locals.
10521 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
10522 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
10523 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
10524 All uses changed to use GCPRO1 etc.
10525 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
10526 Revert to old implementation (i.e., before 2011-03-11).
10527
10528 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10529
10530 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
10531 of scroll runs so as to avoid assigning disabled bogus rows and
10532 unnecessary graphics copy operations.
10533
10534 2011-11-27 Eli Zaretskii <eliz@gnu.org>
10535
10536 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
10537 (snprintf) [_MSC_VER]: Redirect to _snprintf.
10538 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
10539 (malloc, free, realloc, calloc): Redirect to e_* only when
10540 compiling Emacs.
10541
10542 * lisp.h (GCTYPEBITS): Move before first use.
10543 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
10544 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
10545 this macro definition.
10546
10547 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
10548 _MSC_VER.
10549
10550 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
10551
10552 * gtkutil.c (xg_create_frame_widgets):
10553 Call gtk_window_set_has_resize_grip (FALSE) if that function is
10554 present with Gtk+ 2.0.
10555
10556 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
10557
10558 * fileio.c (Finsert_file_contents): Undo previous change; see
10559 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
10560
10561 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
10562
10563 Rename locals to avoid shadowing.
10564 * fileio.c (Finsert_file_contents):
10565 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
10566 * process.c (wait_reading_process_output):
10567 Rename inner 'proc' to 'p' to avoid shadowing.
10568 Indent for consistency with usual Emacs style.
10569
10570 2011-11-25 Eli Zaretskii <eliz@gnu.org>
10571
10572 * xdisp.c (redisplay_window): If cursor row is not fully visible
10573 after recentering, and scroll-conservatively is set to a large
10574 number, scroll window by a few more lines to make the cursor fully
10575 visible and out of scroll-margin. (Bug#10105)
10576 (start_display): Don't move to the next line if the display should
10577 start at a newline that is part of a display vector or an overlay
10578 string. (Bug#10119)
10579
10580 2011-11-24 Juri Linkov <juri@jurta.org>
10581
10582 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
10583 after the `MagickPingImage' call. (Bug#10112)
10584
10585 2011-11-23 Chong Yidong <cyd@gnu.org>
10586
10587 * window.c (Fcoordinates_in_window_p): Accept only live windows.
10588
10589 2011-11-23 Martin Rudalics <rudalics@gmx.at>
10590
10591 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
10592 making another buffer current. (Bug#10114)
10593
10594 2011-11-23 Glenn Morris <rgm@gnu.org>
10595
10596 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
10597
10598 2011-11-23 Chong Yidong <cyd@gnu.org>
10599
10600 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
10601 using it (Bug#5984).
10602
10603 2011-11-22 Eli Zaretskii <eliz@gnu.org>
10604
10605 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
10606 and header-lines, as they don't have one computed for them.
10607 (Bug#10098)
10608
10609 * .gdbinit (prow): Make displayed values more self-explaining.
10610 Add row's hash code.
10611
10612 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
10613
10614 * process.c (wait_reading_process_output): Fix asynchrounous
10615 GnuTLS socket handling on some versions of the GnuTLS library.
10616 (wait_reading_process_output): Add comment and URL.
10617
10618 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
10619
10620 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
10621
10622 2011-11-21 Chong Yidong <cyd@gnu.org>
10623
10624 * window.c (Fnext_window, Fprevious_window): Doc fix.
10625
10626 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
10627
10628 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
10629
10630 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
10631
10632 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
10633
10634 2011-11-20 Martin Rudalics <rudalics@gmx.at>
10635
10636 * window.c (Fset_window_combination_limit): Rename argument
10637 STATUS to LIMIT.
10638 (Vwindow_combination_limit): Remove "status" from doc-string.
10639
10640 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
10641
10642 * m/ibms390.h: Remove.
10643 * m/ibms390x.h: Don't include "ibms390.h".
10644
10645 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
10646
10647 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
10648 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
10649
10650 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
10651
10652 * casetab.c (Fset_case_table):
10653 * charset.c (Fcharset_after): Fix typos.
10654
10655 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
10656
10657 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
10658 Otherwise, valgrind does not work on some platforms.
10659 Problem reported by Andreas Schwab in
10660 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
10661 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
10662 is set, removing the need for VIRT_ADDRESS_VARIES.
10663 (PURE_P): Use a more-efficient implementation that needs just one
10664 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
10665 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
10666 to 4 (xorl, subq, cmpq, setbe).
10667 * alloc.c (pure): Always extern now, since that's the
10668 VIRT_ADDR_VARIES behavior.
10669 (PURE_POINTER_P): Use a single comparison, not two, for
10670 consistency with the new puresize.h.
10671 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
10672 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
10673 Remove VIRT_ADDR_VARIES no longer needed.
10674
10675 2011-11-19 Eli Zaretskii <eliz@gnu.org>
10676
10677 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
10678 (erase_phys_cursor, update_window_cursor, show_mouse_face)
10679 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
10680 behave as if the cursor position were at the window margin.
10681
10682 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
10683 and the cursor position is out of bounds, behave as if the cursor
10684 position were at the window margin. (Bug#10075)
10685
10686 2011-11-18 Chong Yidong <cyd@gnu.org>
10687
10688 * window.c (Fwindow_combination_limit): Make first argument
10689 non-optional, since it is meaningless for live windows like the
10690 selected window.
10691
10692 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
10693
10694 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
10695
10696 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
10697
10698 * intervals.c: Fix grafting over the whole buffer (bug#10071).
10699 (graft_intervals_into_buffer): Simplify.
10700
10701 2011-11-18 Eli Zaretskii <eliz@gnu.org>
10702
10703 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
10704 hash values of the two rows.
10705 (copy_row_except_pointers): Preserve the used[] arrays and the
10706 hash values of the two rows. (Bug#10035)
10707 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
10708
10709 * xdisp.c (row_hash): New function, body extracted from
10710 compute_line_metrics.
10711 (compute_line_metrics): Call row_hash, instead of computing the
10712 hash code inline.
10713
10714 * dispnew.c (verify_row_hash): Call row_hash for computing the
10715 hash code of a row, instead of duplicating code from xdisp.c.
10716
10717 * dispextern.h (row_hash): Add prototype.
10718
10719 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
10720
10721 * frame.c (delete_frame): Don't delete the terminal when the last
10722 X frame is closed if emacs is built with GTK toolkit.
10723
10724 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
10725
10726 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
10727
10728 2011-11-17 Martin Rudalics <rudalics@gmx.at>
10729
10730 * window.c (Vwindow_splits): Rename to
10731 Vwindow_combination_resize. Suggested by Juri Linkov.
10732 (Fsplit_window_internal): Use Vwindow_combination_resize instead
10733 of Vwindow_splits.
10734
10735 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
10736
10737 * nsfns.m (Fns_font_name):
10738 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
10739
10740 2011-11-16 Martin Rudalics <rudalics@gmx.at>
10741
10742 * window.h (window): Rename slot "nest" to "combination_limit".
10743 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
10744 (Fset_window_nest): Rename to Fset_window_combination_limit.
10745 (Vwindow_nest): Rename to Vwindow_combination_limit.
10746 (recombine_windows, make_parent_window, make_window)
10747 (Fsplit_window_internal, saved_window)
10748 (Fset_window_configuration, save_window_save): Rename all
10749 occurrences of window_nest to window_combination_limit.
10750
10751 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
10752
10753 * image.c (imagemagick_load_image): Fix typo.
10754
10755 2011-11-14 Eli Zaretskii <eliz@gnu.org>
10756
10757 * xdisp.c (display_line): Move the call to
10758 highlight_trailing_whitespace before the call to
10759 compute_line_metrics, since the latter needs to see the final
10760 faces of all the glyphs to compute ROW's hash value.
10761 Fixes assertion violations in row_equal_p. (Bug#10035)
10762
10763 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
10764
10765 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
10766 just return (bug#10044).
10767
10768 2011-11-12 Eli Zaretskii <eliz@gnu.org>
10769
10770 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
10771 with user-defined heap size. Bump the default size of the temacs
10772 heap to 27MB, to avoid memory warning when running temacs.
10773 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
10774
10775 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
10776 current_matrix and desired_matrix. (Bug#9990)
10777 (verify_row_hash) [XASSERTS]: New function.
10778 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
10779 that the hash value of glyph rows is correct.
10780
10781 2011-11-12 Martin Rudalics <rudalics@gmx.at>
10782
10783 * window.h (window): Remove splits slot.
10784 * window.c (Fwindow_splits, Fset_window_splits): Remove.
10785 (Fdelete_other_windows_internal, make_parent_window)
10786 (make_window, Fsplit_window_internal, Fdelete_window_internal)
10787 (Fset_window_configuration, save_window_save): Don't deal with
10788 split status of windows.
10789 (saved_window): Remove splits slot.
10790 (Vwindow_splits): Rewrite doc-string.
10791
10792 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
10793
10794 * xfns.c (unwind_create_frame):
10795 * nsfns.m (unwind_create_frame):
10796 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
10797 Vframe_list (Bug#9999).
10798
10799 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
10800
10801 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
10802
10803 2011-11-11 Kenichi Handa <handa@m17n.org>
10804
10805 * callproc.c (Fcall_process): Set the member dst_multibyte of
10806 process_coding.
10807
10808 2011-11-11 Johan Bockgård <bojohan@gnu.org>
10809
10810 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
10811 avoid a crash (bug#9496).
10812
10813 2011-11-09 Chong Yidong <cyd@gnu.org>
10814
10815 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
10816 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
10817
10818 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
10819
10820 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
10821
10822 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
10823
10824 Avoid some portability problems by eschewing 'extern inline' functions.
10825 The trivial performance wins aren't worth the portability hassles; see
10826 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
10827 et seq.
10828 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
10829 (window_box_width, window_box_left, window_box_left_offset)
10830 (window_box_right, window_box_right_offset): Undo previous change,
10831 by removing the "extern"s.
10832 * intervals.c (adjust_intervals_for_insertion)
10833 (adjust_intervals_for_deletion): Undo previous change,
10834 making these static again.
10835 (offset_intervals, temp_set_point_both, temp_set_point)
10836 (copy_intervals_to_string): No longer inline.
10837 * xdisp.c (window_text_bottom_y, window_box_width)
10838 (window_box_height, window_box_left_offset)
10839 (window_box_right_offset, window_box_left, window_box_right)
10840 (window_box): No longer inline.
10841
10842 2011-11-08 Chong Yidong <cyd@gnu.org>
10843
10844 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
10845 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
10846 Signal an error if not a live window.
10847 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
10848 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
10849
10850 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
10851
10852 * lisp.h (syms_of_abbrev): Remove declaration.
10853 Reported by CHENG Gao <chenggao@royau.me>.
10854
10855 2011-11-07 Eli Zaretskii <eliz@gnu.org>
10856
10857 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
10858 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
10859 of temacs in GUI mode.
10860
10861 2011-11-07 Martin Rudalics <rudalics@gmx.at>
10862
10863 * window.h: Declare delete_all_child_windows instead of
10864 delete_all_subwindows.
10865 * window.c (Fwindow_nest, Fset_window_nest)
10866 (Fset_window_new_total, Fset_window_new_normal)
10867 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
10868 (delete_all_subwindows): Rename to delete_all_child_windows.
10869 (Fdelete_other_windows_internal, Fset_window_configuration):
10870 Call delete_all_child_windows instead of delete_all_subwindows.
10871 * frame.c (delete_frame): Call delete_all_child_windows instead
10872 of delete_all_subwindows.
10873
10874 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
10875
10876 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
10877 This is also needed for porting to any host where GC_MARK_STACK is
10878 not GC_MAKE_GCPROS_NOOPS.
10879 (which_symbols): Use it.
10880
10881 2011-11-07 Kenichi Handa <handa@m17n.org>
10882
10883 * coding.c (coding_set_destination): Check coding->src_pos only
10884 when coding->src_object is a buffer (bug#9910).
10885
10886 * process.c (send_process): Set the member src_multibyte of coding
10887 to 0 (bug#9911) when sending a unibyte text.
10888
10889 * callproc.c (Fcall_process): Set the member src_multibyte of
10890 process_coding to 0 (bug#9912).
10891
10892 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10893
10894 * xmenu.c (cleanup_widget_value_tree): New function.
10895 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
10896 calling free_menubar_widget_value_tree directly (Bug#9830).
10897
10898 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
10899
10900 Fix some portability problems with 'inline'.
10901 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
10902 (window_box_width, window_box_left, window_box_left_offset)
10903 (window_box_right, window_box_right_offset): Declare extern.
10904 Otherwise, these inline functions do not conform to C99 and
10905 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
10906 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
10907 * intervals.c (adjust_intervals_for_insertion)
10908 (adjust_intervals_for_deletion): Now extern, because otherwise the
10909 extern inline functions 'offset_intervals' couldn't refer to it.
10910 (static_offset_intervals): Remove.
10911 (offset_intervals): Rewrite using the old contents of
10912 static_offset_intervals. The old version didn't conform to C99
10913 because an extern inline function contained a reference to an
10914 identifier with static linkage.
10915
10916 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
10917
10918 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
10919 GC.
10920
10921 2011-11-06 Eli Zaretskii <eliz@gnu.org>
10922
10923 * xdisp.c (init_iterator, reseat_to_string): Don't set the
10924 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
10925 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
10926 return Qleft_to_right.
10927
10928 2011-11-06 Chong Yidong <cyd@gnu.org>
10929
10930 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
10931 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
10932 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
10933 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
10934 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
10935 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
10936 (Fwindow_vscroll): Doc fix.
10937 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
10938 argument, since it makes no sense to pass a live window and for
10939 consistency with window-child.
10940
10941 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
10942
10943 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
10944 support MSVC.
10945
10946 2011-11-05 Jason Rumney <jasonr@gnu.org>
10947
10948 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
10949 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
10950 fonts (Bug#6029).
10951 (add_font_entity_to_list): Fix logic errors in mixed boolean and
10952 bitwise arithmetic preventing use of unicode-sip and non-truetype
10953 opentype fonts.
10954
10955 2011-11-05 Eli Zaretskii <eliz@gnu.org>
10956
10957 * s/ms-w32.h (fstat, stat, utime): Move redirections to
10958 "emacs"-only part.
10959
10960 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
10961 initialization code to keep similarity to xfns.c after changes
10962 from 2011-11-05.
10963
10964 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
10965
10966 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
10967 (unwind_create_frame): New function (Bug#9943).
10968 (Fx_create_frame): Restructure code to be more similar to the one in
10969 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
10970 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
10971 Move terminal->reference_count++ just before making the frame official
10972 (Bug#9943).
10973
10974 * nsterm.m (x_free_frame_resources): New function.
10975 (x_destroy_window): Move code to x_free_frame_resources.
10976
10977 * xfns.c (unwind_create_frame): Fix comment.
10978 (Fx_create_frame, x_create_tip_frame):
10979 Move terminal->reference_count++ just before making the frame
10980 official. Move initialization of image_cache_refcount and
10981 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
10982
10983 2011-11-05 Eli Zaretskii <eliz@gnu.org>
10984
10985 Support MSVC build with newer versions of Visual Studio.
10986 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
10987 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
10988 nt/gmake.defs.
10989
10990 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
10991 which are not supported by MSVC.
10992 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
10993 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
10994 bitfields.
10995 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
10996 types in bitfields.
10997 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
10998
10999 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
11000
11001 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
11002
11003 Support MSVC build with newer versions of Visual Studio.
11004 * w32.c: Don't include w32api.h for MSVC.
11005 (init_environment) [_MSC_VER]: Call sys_access, not _access.
11006
11007 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
11008 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
11009 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
11010 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
11011 e_* cousins.
11012 (alloca) [_MSC_VER]: Define to _alloca.
11013
11014 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
11015
11016 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
11017
11018 2011-11-04 Eli Zaretskii <eliz@gnu.org>
11019
11020 * xdisp.c (note_mouse_highlight): If either of
11021 previous/next-single-property-change returns nil, treat that as
11022 the beginning or the end of the buffer. (Bug#9955)
11023
11024 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
11025
11026 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
11027 label is not null (Bug#9951).
11028 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
11029 may be NULL.
11030
11031 2011-11-04 Eli Zaretskii <eliz@gnu.org>
11032
11033 * window.c (Fwindow_body_size): Mention in the doc string that the
11034 return value is in frame's canonical units. (Bug#9949)
11035
11036 2011-11-03 Eli Zaretskii <eliz@gnu.org>
11037
11038 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
11039
11040 * w32fns.c (unwind_create_frame): If needed, free the glyph
11041 matrices of the partially constructed frame. (Bug#9943)
11042 * xfns.c (unwind_create_frame): Likewise.
11043
11044 2011-11-01 Eli Zaretskii <eliz@gnu.org>
11045
11046 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
11047 Don't stop backward scan on the continuation glyph, even though
11048 its CHARPOS is positive.
11049 (mouse_face_from_buffer_pos, note_mouse_highlight):
11050 Rename cover_string to disp_string.
11051
11052 2011-11-01 Martin Rudalics <rudalics@gmx.at>
11053
11054 * window.c (temp_output_buffer_show): Don't use
11055 Vtemp_buffer_show_specifiers.
11056 (Vtemp_buffer_show_specifiers): Remove unused variable.
11057
11058 2011-10-30 Eli Zaretskii <eliz@gnu.org>
11059
11060 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
11061 past the beginning of the current glyph matrix.
11062
11063 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
11064
11065 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
11066 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
11067 HAVE_GTK3 (Bug#9869).
11068
11069 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
11070 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
11071
11072 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
11073
11074 * xterm.c: Declare x_handle_net_wm_state to return int.
11075 (handle_one_xevent): Check if we are iconified but don't have
11076 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
11077 (get_current_wm_state): Return non-zero if not hidden,
11078 check for _NET_WM_STATE_HIDDEN (Bug#9893).
11079 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
11080 (x_handle_net_wm_state): Return what get_current_wm_state returns.
11081 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
11082
11083 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
11084
11085 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
11086 so that this new function doesn't get optimized away by a
11087 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
11088
11089 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
11090
11091 * frame.h (MOUSE_HL_INFO): Remove excess parens.
11092
11093 2011-10-29 Eli Zaretskii <eliz@gnu.org>
11094
11095 Fix the `xbytecode' command.
11096 * .gdbinit (xprintbytestr): New command.
11097 (xwhichsymbols): Rename from `which'; all callers changed.
11098 (xbytecode): Print the byte-code string as well.
11099
11100 2011-10-29 Kim Storm <storm@cua.dk>
11101
11102 * alloc.c (which_symbols): New function.
11103
11104 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
11105
11106 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
11107 line. (Bug#9903)
11108
11109 2011-10-29 Glenn Morris <rgm@gnu.org>
11110
11111 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
11112 Not clear what it was for, and it causes various bugs. (Bug#9839)
11113
11114 2011-10-28 Eli Zaretskii <eliz@gnu.org>
11115
11116 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
11117 possible random value that matches one of those tested as
11118 condition to clear the mouse face.
11119
11120 2011-10-28 Chong Yidong <cyd@gnu.org>
11121
11122 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
11123
11124 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
11125
11126 * window.c (make_window): Initialize phys_cursor_on_p.
11127
11128 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
11129
11130 * lisp.h (struct Lisp_Symbol): Update comments.
11131
11132 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
11133
11134 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
11135
11136 2011-10-28 Eli Zaretskii <eliz@gnu.org>
11137
11138 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
11139 <oslsachem@gmail.com> for helping to debug this.
11140
11141 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
11142 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
11143 (g_b_init_get_glyph_outline_w): New static variables.
11144 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
11145 (GetGlyphOutlineW_Proc): New typedefs.
11146 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
11147 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
11148 New functions.
11149 (w32font_open_internal, compute_metrics):
11150 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
11151 instead of calling the "wide" APIs directly.
11152
11153 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
11154
11155 * w32.h (syms_of_w32font): Add prototype.
11156
11157 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
11158
11159 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
11160 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
11161 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
11162 (Fmove_to_window_line): Doc fix.
11163
11164 2011-10-27 Chong Yidong <cyd@gnu.org>
11165
11166 * process.c (make_process): Set gnutls_state to NULL.
11167
11168 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
11169 non-NULL, regardless of GNUTLS_INITSTAGE.
11170 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
11171 an error. Set process slots as soon as we allocate them.
11172
11173 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
11174
11175 2011-10-27 Chong Yidong <cyd@gnu.org>
11176
11177 * gnutls.c (emacs_gnutls_deinit): New function.
11178 Deallocate credentials structures as well as calling gnutls_deinit.
11179 (Fgnutls_deinit, Fgnutls_boot): Use it.
11180
11181 * process.c (make_process): Initialize GnuTLS credentials to NULL.
11182 (deactivate_process): Call emacs_gnutls_deinit.
11183
11184 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
11185
11186 * image.c (x_create_x_image_and_pixmap):
11187 * w32.c (sys_rename, w32_delayed_load):
11188 * w32font.c (fill_in_logfont):
11189 * w32reg.c (x_get_string_resource): Silence compiler warnings.
11190
11191 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
11192
11193 * w32fns.c (w32_default_color_map): New function,
11194 extracted from Fw32_default_color_map.
11195 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
11196
11197 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
11198
11199 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
11200
11201 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
11202
11203 * keyboard.c (test_undefined): New function (bug#9751).
11204 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
11205
11206 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
11207
11208 * sysdep.c (init_sys_modes): Fix the check for the controlling
11209 terminal (Bug#6649).
11210
11211 2011-10-20 Eli Zaretskii <eliz@gnu.org>
11212
11213 * dispextern.h (struct bidi_it): New member next_en_type.
11214
11215 * bidi.c (bidi_line_init): Initialize the next_en_type member.
11216 (bidi_resolve_explicit_1): When next_en_pos is valid for the
11217 current character, check also for next_en_type being WEAK_EN.
11218 (bidi_resolve_weak): Don't enter the expensive loop if the current
11219 position is before next_en_pos. Record the bidi type of the first
11220 non-ET, non-BN character we find, in addition to its position.
11221 (bidi_level_of_next_char): Invalidate next_en_type when
11222 next_en_pos is over-stepped.
11223
11224 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
11225
11226 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
11227 * editfns.c: Rewrite current-time-zone so that it invokes
11228 the equivalent of (format-time-string "%Z") to get the time zone name.
11229 This fixes a bug when the time zone name contains characters that
11230 need converting from the system time locale to Emacs internal format.
11231 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
11232 that patch fixed format-time-string to do the conversion, but
11233 I forgot to fix current-time-zone.
11234 (format_time_string): New function, containing most of
11235 what Fformat_time_string used to contain.
11236 (Fformat_time_string): Rewrite in terms of format_time_string.
11237 This doesn't change this function's behavior.
11238 (current-time-zone): Rewrite to use format_time_string.
11239 This fixes the bug reported by Michael Schierl in
11240 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
11241 Jason Rumney's 2007-06-07 change worked around this bug, but
11242 didn't fix it.
11243 * systime.h (tzname, timezone): Remove no-longer-used declarations.
11244
11245 2011-10-19 Eli Zaretskii <eliz@gnu.org>
11246
11247 * xdisp.c (start_display): If the character at POS is displayed
11248 via a display vector, reset IT->current.dpvec_index to zero.
11249 (try_window_reusing_current_matrix): If a line ends in a display
11250 vector or the next line starts in a display vector, continue
11251 redrawing the window even though the character position of
11252 start_row was reached.
11253 (Bug#9771, part 2)
11254
11255 2011-10-18 Chong Yidong <cyd@gnu.org>
11256
11257 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
11258 with nobreak-char-display too.
11259
11260 2011-10-18 Eli Zaretskii <eliz@gnu.org>
11261
11262 Fix part 3 of bug#9771.
11263 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
11264 (bidi_resolve_neutral): Don't enter the expensive loop looking for
11265 non-neutral characters if the current character is a paragraph
11266 separator (a.k.a. Newline). This avoids running the same
11267 expensive loop twice, once when we consume the preceding newline
11268 and the other time when the line actually needs to be displayed.
11269 Avoid the loop when we see neutrals on the base embedding level
11270 following a character whose directionality is the same as the
11271 paragraph's. This avoids running the expensive loop when a line
11272 ends in a long sequence of neutrals, like control characters.
11273 Add assertion against STRONG_AL type. Slightly rearrange code
11274 that determines the type of a neutral given the first non-neutral
11275 that follows it.
11276 (bidi_level_of_next_char): Set next_en_pos to zero when
11277 invalidating its info.
11278
11279 2011-10-17 Eli Zaretskii <eliz@gnu.org>
11280
11281 * xdisp.c (push_display_prop): Determine whether to record string
11282 or buffer position by IT->string, not by IT->method. Allow
11283 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
11284 (move_it_vertically_backward): Don't look for character position
11285 immediately after the newline when in a continuation line.
11286 (Bug#9771, part 1)
11287
11288 2011-10-15 Martin Rudalics <rudalics@gmx.at>
11289
11290 * window.c (coordinates_in_window): Rewrite and delabelize
11291 vertical border check. (Bug#5357) (Bug#9618)
11292
11293 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
11294
11295 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
11296 errors in XSetWindowBorder (bug#9310).
11297
11298 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
11299
11300 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
11301 avoid crash when xmalloc overrun checking is enabled.
11302
11303 2011-10-13 Eli Zaretskii <eliz@gnu.org>
11304
11305 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
11306 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
11307 cursor motion with <left> and <right> arrow keys.
11308
11309 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
11310 some callers set that themselves.
11311
11312 2011-10-12 Eli Zaretskii <eliz@gnu.org>
11313
11314 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
11315 display string and the previous row comes from the same string and
11316 is empty. (Bug#9739) (Bug#9738)
11317
11318 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
11319
11320 * doc.c (get_doc_string): Encode file name (bug#9735).
11321
11322 2011-10-12 Eli Zaretskii <eliz@gnu.org>
11323
11324 * bidi.c (bidi_level_of_next_char):
11325 * xdisp.c (get_visually_first_element): Remove old incorrect
11326 comments regarding the Unicode Line Separator character.
11327
11328 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
11329
11330 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
11331
11332 * alloc.c (Fgc_status): Do not access beyond zombies array
11333 boundary if nzombies > MAX_ZOMBIES.
11334 * alloc.c (dump_zombies): Add missing format specifier.
11335
11336 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
11337
11338 * xdisp.c (set_cursor_from_row): Simplify conditionals,
11339 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
11340
11341 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
11342 Some packages use them to denote characters with modifiers.
11343
11344 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
11345
11346 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
11347 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
11348 matching a pp-number. Rename parameter var to var1.
11349
11350 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
11351
11352 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
11353
11354 2011-10-08 Glenn Morris <rgm@gnu.org>
11355
11356 * callint.c (Fcall_interactively): Give a more explicit error for the
11357 'c' case with a non-character input. (Bug#8479)
11358
11359 2011-10-08 Eli Zaretskii <eliz@gnu.org>
11360
11361 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
11362 lines.
11363 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
11364 lines that are hscrolled on the left.
11365
11366 * dispnew.c (buffer_posn_from_coords): Account for a possible
11367 presence of header-line. (Bug#4426)
11368
11369 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
11370
11371 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
11372 Don't advertise functionality which we discourage or doesn't work.
11373
11374 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
11375
11376 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
11377 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
11378 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
11379 this makes Emacs dump core during garbage collection on rare
11380 occasions. sizeof is obviously inferior to offsetof here, so
11381 stick with offsetof.
11382 (GC_POINTER_ALIGNMENT): New macro.
11383 (mark_memory): Omit 3rd (offset) arg; caller changed.
11384 Don't assume EMACS_INT alignment is the same as pointer alignment.
11385
11386 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
11387
11388 * keyboard.c (read_key_sequence_remapped): New var.
11389 (read_key_sequence): Compute remapping in the right buffer.
11390 (command_loop_1): Use read_key_sequence's remapping directly.
11391
11392 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
11393
11394 * dired.c (file_name_completion): Don't expand file name.
11395 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
11396 before checking file name handler.
11397
11398 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
11399 they've been requested explicitly (bug#9591).
11400
11401 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
11402
11403 * keymap.c (Fsingle_key_description): Use make_specified_string
11404 instead of build_string to build string from push_key_description.
11405 (Bug#5193)
11406
11407 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
11408
11409 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
11410 This fixes a Y2038 bug on 64-bit hosts.
11411 * buffer.c (reset_buffer):
11412 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
11413 (Fclear_buffer_auto_save_failure):
11414 Use 0, not -1, to represent an unset failure time, since time_t
11415 might not be signed.
11416
11417 Remove dependency on glibc malloc internals.
11418 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11419 Move back here from lisp.h, but with their new implementations.
11420 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11421 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
11422 * charset.c (charset_table_init): New static var.
11423 (syms_of_charset): Use it instead of xmalloc. This removes a
11424 dependency on glibc malloc internals. See Eli Zaretskii's comment in
11425 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
11426 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11427 Move back to alloc.c.
11428 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11429 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
11430
11431 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
11432
11433 * nsterm.m (windowDidResize): Call x_set_window_size only when
11434 ns_in_resize is true. Otherwise set pixelwidth/height and
11435 call change_frame_size (Bug#9628).
11436
11437 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
11438
11439 Port --enable-checking=all to Fedora 14 x86-64.
11440 * charset.c (syms_of_charset): Also account for glibc malloc's
11441 internal overhead when calculating the initial malloc maximum.
11442
11443 Port --enable-checking=all to Fedora 14 x86.
11444 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11445 Move to lisp.h.
11446 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
11447 (overrun_check_realloc, overrun_check_free):
11448 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
11449 That way, xmalloc returns a properly-aligned pointer even if
11450 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
11451 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
11452 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
11453 into account when calculating the initial malloc maximum.
11454 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
11455 Move here from alloc.c, so that charset.c can use it too.
11456 Properly align; the old code wasn't right for common 32-bit hosts
11457 when configured with --enable-checking=all.
11458 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
11459 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
11460
11461 2011-09-29 Eli Zaretskii <eliz@gnu.org>
11462
11463 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
11464 use EDOM.
11465
11466 2011-09-28 Eli Zaretskii <eliz@gnu.org>
11467
11468 * xdisp.c (compute_display_string_end): If there's no display
11469 string at CHARPOS, return -1.
11470
11471 * bidi.c (bidi_fetch_char): When compute_display_string_end
11472 returns a negative value, treat the character as a normal
11473 character not covered by a display string. (Bug#9624)
11474
11475 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
11476
11477 * lread.c (Fread_from_string): Fix typo in docstring.
11478
11479 2011-09-27 Eli Zaretskii <eliz@gnu.org>
11480
11481 * xdisp.c (handle_invisible_prop): If invisible text ends on a
11482 newline, reseat the iterator instead of bidi-iterating there one
11483 character at a time. (Bug#9610)
11484 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
11485 TO_CHARPOS if the bidi iterator is at base embedding level.
11486
11487 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
11488
11489 * lread.c (readevalloop): Use correct code for NBSP.
11490 (read1): Likewise. (Bug#9608)
11491
11492 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
11493
11494 * dbusbind.c (Fdbus_register_signal): When service is not
11495 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
11496
11497 2011-09-25 Glenn Morris <rgm@gnu.org>
11498
11499 * buffer.c (truncate-lines): Doc fix.
11500
11501 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
11502
11503 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
11504 (Fset_window_next_buffers): Doc fix.
11505
11506 2011-09-24 Glenn Morris <rgm@gnu.org>
11507
11508 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
11509
11510 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
11511
11512 Fix minor problems found by static checking.
11513 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
11514 * indent.c (Fvertical_motion): Fix == vs = typo.
11515
11516 2011-09-24 Eli Zaretskii <eliz@gnu.org>
11517
11518 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
11519 Default value is now t. Doc fix.
11520
11521 * indent.c (Fvertical_motion): Compute and apply the overshoot
11522 logic when moving up, not only when moving down. Fix the
11523 confusing name and values of the it_overshoot_expected variable;
11524 logic changes accordingly. (Bug#9254) (Bug#9549)
11525
11526 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
11527 CHARPOS is covered by a display string which includes newlines.
11528 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
11529 is covered by a display string with embedded newlines.
11530
11531 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
11532
11533 * dbusbind.c (Fdbus_register_signal): Add match rule to
11534 Vdbus_registered_objects_table. (Bug#9581)
11535 (Fdbus_register_method, Vdbus_registered_objects_table):
11536 Fix docstring.
11537
11538 2011-09-24 Jim Meyering <meyering@redhat.com>
11539
11540 do not ignore write error for any output size
11541 The previous change was incomplete.
11542 While it makes emacs --batch detect the vast majority of stdout
11543 write failures, errors were still ignored whenever the output size is
11544 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
11545 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
11546 && echo FAIL: ignored write error
11547 FAIL: ignored write error
11548 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
11549 && echo FAIL: ignored write error
11550 FAIL: ignored write error
11551 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
11552
11553 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
11554
11555 * emacs.c (Fkill_emacs): In noninteractive mode exit
11556 non-successfully if a write error occurred on stdout. (Bug#9574)
11557
11558 2011-09-21 Eli Zaretskii <eliz@gnu.org>
11559
11560 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
11561 the xassert test.
11562
11563 * dispextern.h (struct it): Update the comment documenting what
11564 can it->OBJECT be.
11565
11566 2011-09-20 Eli Zaretskii <eliz@gnu.org>
11567
11568 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
11569 a display string, extend search for cursor position to end of row.
11570 (find_row_edges): If the row ends in a newline from a display
11571 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
11572 Handle the case of a display string with multiple newlines.
11573 (Fcurrent_bidi_paragraph_direction): Fix search for previous
11574 non-empty line. Fixes confusing cursor motion with arrow keys at
11575 the beginning of a line that starts with whitespace.
11576
11577 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
11578
11579 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
11580 (bug#9493).
11581
11582 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
11583
11584 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
11585 boolean (Bug#9154).
11586
11587 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11588
11589 * xdisp.c (display_line): Record maximum and minimum buffer
11590 positions even if no glyphs were produced (e.g., by a zero-width
11591 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
11592 buffer positions that will be removed from the glyph row because
11593 they don't fit.
11594 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
11595 column is beyond frame width: don't subtract 1 "pixel" when
11596 computing width of the stretch.
11597 (reseat_at_next_visible_line_start): Undo the change made on
11598 2011-09-17 that saved paragraph information and restored it after
11599 the call to `reseat'. (Bug#9545)
11600
11601 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11602
11603 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
11604 and turn window cursor on if cleared (Bug#9415).
11605
11606 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
11607
11608 * search.c (boyer_moore): Take unibyte characters from pattern
11609 literally. (Bug#9458)
11610
11611 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11612
11613 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
11614
11615 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
11616
11617 Fix minor problem found by static checking.
11618 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
11619 initialized, to pacify gcc -Wuninitialized.
11620
11621 * fileio.c: Report proper errno when syscall falls.
11622 (Finsert_file_contents): Save and restore errno,
11623 so that report_file_error outputs the correct diagnostic.
11624 (Fwrite_region) [CLASH_DETECTION]: Likewise.
11625
11626 2011-09-18 Eli Zaretskii <eliz@gnu.org>
11627
11628 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
11629
11630 2011-09-17 Eli Zaretskii <eliz@gnu.org>
11631
11632 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
11633 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
11634
11635 2011-09-17 Eli Zaretskii <eliz@gnu.org>
11636
11637 * xdisp.c (reseat_at_next_visible_line_start): Keep information
11638 about the current paragraph and restore it after the call to reseat.
11639
11640 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
11641 (bidi_find_paragraph_start): Search back for paragraph beginning
11642 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
11643 (bidi_move_to_visually_next): Only trigger paragraph-related
11644 computations when the last character is a newline or at EOB, not
11645 just any NEUTRAL_B. (Bug#9470)
11646
11647 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
11648 truncated lines if point is covered by a display string. (Bug#9524)
11649
11650 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
11651
11652 * xselect.c: Relax test for outgoing X longs (Bug#9498).
11653 (cons_to_x_long): New function.
11654 (lisp_data_to_selection_data): Use it. Correct the test for
11655 short-versus-long data; it was negated. Break out of vector
11656 loop, for efficiency, when a long datum is discovered.
11657
11658 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
11659
11660 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
11661
11662 2011-09-16 Eli Zaretskii <eliz@gnu.org>
11663
11664 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
11665 GCC PR/17406) by declaring this function with external scope.
11666
11667 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
11668
11669 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
11670 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
11671
11672 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
11673
11674 * editfns.c (Fformat): Correctly handle text properties on "%%".
11675
11676 2011-09-15 Eli Zaretskii <eliz@gnu.org>
11677
11678 * xterm.c (x_draw_composite_glyph_string_foreground):
11679 * w32term.c (x_draw_composite_glyph_string_foreground):
11680 * term.c (encode_terminal_code):
11681 * composite.c (composition_update_it, get_composition_id):
11682 * xdisp.c (get_next_display_element)
11683 (fill_composite_glyph_string): Add comments about special meaning
11684 of TAB characters in a composition.
11685
11686 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
11687
11688 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
11689 This occurs when processing a multibyte format.
11690 Problem reported by Wolfgang Jenker.
11691
11692 2011-09-15 Johan Bockgård <bojohan@gnu.org>
11693
11694 * xdisp.c (try_cursor_movement): Only check for exact match if
11695 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
11696
11697 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
11698
11699 Remove unused external symbols.
11700 * dispextern.h (calc_pixel_width_or_height): Remove decl.
11701 * xdisp.c (calc_pixel_width_or_height): Now static.
11702 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
11703 * indent.c (check_display_width):
11704 * w32term.c: Fix comment to match code.
11705 * xterm.c, xterm.h (x_catching_errors): Remove.
11706
11707 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
11708
11709 * xselect.c: Use signed conversions more consistently (Bug#9498).
11710 (selection_data_to_lisp_data): Assume incoming selection data are
11711 signed integers, not unsigned. This is to be consistent with
11712 outgoing selection data, which was modified to use signed integers
11713 in as part of the fix to Bug#9196 in response to Jan D.'s comment
11714 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
11715 expects long, not unsigned long.
11716
11717 2011-09-14 Eli Zaretskii <eliz@gnu.org>
11718
11719 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
11720 computation of loop end. Reported by Johan Bockgård
11721 <bojohan@gnu.org>.
11722
11723 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
11724
11725 * frame.c (Fother_visible_frames_p): Function deleted.
11726
11727 2011-09-12 Eli Zaretskii <eliz@gnu.org>
11728
11729 * indent.c (compute_motion): Process display vector front to back
11730 rather than the other way around. (Bug#2496)
11731
11732 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
11733
11734 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
11735
11736 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
11737
11738 * minibuf.c (Fread_from_minibuffer): Doc fix.
11739
11740 2011-09-11 Eli Zaretskii <eliz@gnu.org>
11741
11742 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
11743 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
11744
11745 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11746
11747 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
11748 value for non-existent files.
11749
11750 2011-09-11 Eli Zaretskii <eliz@gnu.org>
11751
11752 * fileio.c (Finsert_file_contents): If the file cannot be opened,
11753 set its "size" to -1. This will set the modtime_size field of
11754 the corresponding buffer to -1, which is what
11755 verify-visited-file-modtime expects for files that do not exist.
11756 (Bug#9139)
11757
11758 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
11759
11760 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
11761 here ...
11762 * lisp.h: ... from here. push_key_description is no longer
11763 defined in keyboard.c, so its declaration should not be in
11764 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
11765 logically belongs with push_key_description.
11766
11767 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
11768
11769 * buffer.h: Include <sys/types.h> instead of <time.h>.
11770 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
11771 Problem reported by Herbert J. Skuhra.
11772
11773 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
11774
11775 * xml.c (parse_region): Make the parsing work for
11776 non-comment-starting XML files again (bug#9144).
11777
11778 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
11779
11780 * image.c (gif_load): Fix calculation of bottom and right corner.
11781 (Bug#9468)
11782
11783 2011-09-10 Eli Zaretskii <eliz@gnu.org>
11784
11785 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
11786 redisplay in small windows.
11787
11788 2011-09-09 Eli Zaretskii <eliz@gnu.org>
11789
11790 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
11791
11792 2011-09-08 Martin Rudalics <rudalics@gmx.at>
11793
11794 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
11795 Operate on live windows only.
11796
11797 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
11798
11799 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
11800
11801 2011-09-07 Eli Zaretskii <eliz@gnu.org>
11802
11803 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
11804 only under bidi iteration.
11805
11806 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
11807
11808 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
11809
11810 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11811
11812 isnan: Fix porting problem to Solaris 10 with bundled gcc.
11813 Without this fix, the command to link temacs failed due to an
11814 undefined symbol __builtin_isnan. This is because
11815 /usr/include/iso/math_c99.h #defines isnan(x) to
11816 __builtin_isnan(x), but the bundled gcc, which identifies itself
11817 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
11818 a __builtin_isnan.
11819 * floatfns.c (isnan): #undef, and then #define to a clone of
11820 what's in data.c.
11821 (Fisnan): Always define, since it's always available now.
11822 (syms_of_floatfns): Always define isnan at the Lisp level.
11823
11824 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11825
11826 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
11827
11828 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
11829
11830 * fileio.c: Fix bugs with large file offsets (Bug#9428).
11831 The previous code assumed that file offsets (off_t values) fit in
11832 EMACS_INT variables, which is not true on typical 32-bit hosts.
11833 The code messed up by falsely reporting buffer overflow in cases
11834 such as (insert-file-contents "big" nil 1 2) into an empty buffer
11835 when "big" contains more than 2**29 bytes, even though this
11836 inserts just one byte and does not overflow the buffer.
11837 (Finsert_file_contents): Store file offsets as off_t
11838 values, not as EMACS_INT values. Check for overflow when
11839 converting between EMACS_INT and off_t. When checking for
11840 buffer overflow or for overlap, take the offsets into account.
11841 Don't use EMACS_INT for small values where int suffices.
11842 When checking for overlap, fix a typo: ZV was used where
11843 ZV_BYTE was intended.
11844 (Fwrite_region): Don't assume off_t fits into 'long'.
11845 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
11846
11847 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
11848
11849 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
11850
11851 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
11852
11853 sprintf-related integer and memory overflow issues (Bug#9412).
11854
11855 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
11856 (esprintf, exprintf, evxprintf): New functions.
11857 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
11858 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
11859 (modify_event_symbol): Do not assume that the length of
11860 name_alist_or_stem is safe to alloca and fits in int.
11861 (Fexecute_extended_command): Likewise for function name and binding.
11862 (Frecursion_depth): Wrap around reliably on integer overflow.
11863 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
11864 since some callers pass EMACS_INT values.
11865 (Fsingle_key_description): Don't crash if symbol name contains more
11866 than MAX_ALLOCA bytes.
11867 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
11868 (get_minibuffer): Arg is now EMACS_INT, not int.
11869 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
11870 (esprintf, exprintf, evxprintf): New decls.
11871 * window.h (command_loop_level, minibuf_level): Reflect API changes.
11872
11873 * dbusbind.c (signature_cat): New function.
11874 (xd_signature, Fdbus_register_signal):
11875 Do not overrun buffer; instead, report string overflow.
11876
11877 * dispnew.c (add_window_display_history): Don't overrun buffer.
11878 Truncate instead; this is OK since it's just a log.
11879
11880 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
11881 even if the time zone offset is outlandishly large.
11882 Don't mishandle offset == INT_MIN.
11883
11884 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
11885 when creating daemon; the previous buffer-overflow check was incorrect.
11886
11887 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
11888 which has the guts of the old verror function.
11889
11890 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
11891 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
11892
11893 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
11894 (font_unparse_xlfd): Don't blindly alloca long strings.
11895 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
11896 fits in int, when using sprintf. Use single snprintf to count
11897 length of string rather than counting it via multiple sprintfs;
11898 that's simpler and more reliable.
11899 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
11900 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
11901 sprintf, in case result does not fit in int.
11902
11903 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
11904 (fontset_from_font): Print it.
11905
11906 * frame.c (tty_frame_count): Now printmax_t, not int.
11907 (make_terminal_frame, set_term_frame_name): Print it.
11908 (x_report_frame_params): In X, window IDs are unsigned long,
11909 not signed long, so print them as unsigned.
11910 (validate_x_resource_name): Check for implausibly long names,
11911 and don't assume name length fits in 'int'.
11912 (x_get_resource_string): Don't blindly alloca invocation name;
11913 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
11914 not fit in int.
11915
11916 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
11917 (xg_check_special_colors, xg_set_geometry):
11918 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
11919
11920 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
11921 Use esprintf, not sprintf, in case result does not fit in int.
11922
11923 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
11924 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
11925 it as a large positive number.
11926 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
11927 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
11928
11929 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
11930 in case result does not fit in int.
11931
11932 * print.c (float_to_string): Detect width overflow more reliably.
11933 (print_object): Make sprintf buffer a bit bigger, to avoid potential
11934 buffer overrun. Don't assume list length fits in 'int'. Treat
11935 print length of 0 as 0, not as infinity; to be consistent with other
11936 uses of print length in this function. Don't overflow print length
11937 index. Don't assume hash table size fits in 'long', or that
11938 vectorlike size fits in 'unsigned long'.
11939
11940 * process.c (make_process): Use printmax_t, not int, to format
11941 process-name gensyms.
11942
11943 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
11944
11945 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
11946 to avoid potential buffer overrun.
11947
11948 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
11949 if X resource line is longer than 512 bytes.
11950
11951 * xfns.c (x_window): Make sprintf buffer a bit bigger
11952 to avoid potential buffer overrun.
11953
11954 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
11955
11956 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
11957
11958 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
11959
11960 Integer overflow fixes for scrolling, etc.
11961 Without these, Emacs silently mishandles large integers sometimes.
11962 For example, "C-u 4294967297 M-x recenter" was treated as if
11963 it were "C-u 1 M-x recenter" on a typical 64-bit host.
11964
11965 * xdisp.c (try_window_id): Check Emacs fixnum range before
11966 converting to 'int'.
11967
11968 * window.c (window_scroll_line_based, Frecenter):
11969 Check that an Emacs fixnum is in range before assigning it to 'int'.
11970 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
11971 values converted from Emacs fixnums.
11972 (Frecenter): Don't wrap around a line count if it is out of 'int'
11973 range; instead, treat it as an extreme value.
11974 (Fset_window_configuration, compare_window_configurations):
11975 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
11976
11977 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
11978 that can exceed INT_MAX. Check that EMACS_INT value is in range
11979 before assigning it to the (possibly-narrower) index.
11980 (match_limit): Don't assume that a fixnum can fit in 'int'.
11981
11982 * print.c (print_object): Use ptrdiff_t, not int, for index that can
11983 exceed INT_MAX.
11984
11985 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
11986 (Fvertical_motion): Don't wrap around LINES values that don't fit
11987 in 'int'. Instead, treat them as extreme values. This is good
11988 enough for windows, which can't have more than INT_MAX lines anyway.
11989
11990 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11991
11992 * Require libxml/parser.h to avoid compilation warning.
11993
11994 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
11995
11996 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
11997 since this reportedly can destroy thread storage.
11998
11999 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
12000
12001 * syntax.c (find_defun_start): Update all cache variables if
12002 exiting early (Bug#9401).
12003
12004 2011-08-30 Eli Zaretskii <eliz@gnu.org>
12005
12006 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
12007
12008 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
12009 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
12010 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
12011
12012 * term.c (tty_append_glyph): New function.
12013 (produce_stretch_glyph): Static function and its prototype deleted.
12014
12015 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
12016 Add prototypes.
12017
12018 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
12019
12020 * image.c (parse_image_spec): Check for nonnegative, not for positive,
12021 when checking :margin (Bug#9390).
12022 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
12023 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
12024 so that the name doesn't mislead. All uses changed.
12025
12026 2011-08-28 Johan Bockgård <bojohan@gnu.org>
12027
12028 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
12029 set_tty_hooks.
12030
12031 2011-08-27 Eli Zaretskii <eliz@gnu.org>
12032
12033 * xdisp.c (move_it_to): Don't bail out early when reaching
12034 position beyond to_charpos, if we are scanning backwards.
12035 (move_it_vertically_backward): When DY == 0, make sure we get to
12036 the first character in the line after the newline.
12037
12038 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
12039
12040 * ccl.c: Improve and simplify overflow checking (Bug#9196).
12041 (ccl_driver): Do not generate an out-of-range pointer.
12042 (Fccl_execute_on_string): Remove unnecessary check for
12043 integer overflow, noted by Stefan Monnier in
12044 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
12045 Remove a FIXME that didn't need fixing.
12046 Simplify the newly-introduced buffer reallocation code.
12047
12048 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
12049
12050 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
12051
12052 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
12053
12054 Integer and memory overflow issues (Bug#9196).
12055
12056 * doc.c (get_doc_string): Rework so that
12057 get_doc_string_buffer_size is the actual buffer size, rather than
12058 being 1 less than the actual buffer size; this makes xpalloc more
12059 convenient.
12060
12061 * image.c (x_allocate_bitmap_record, cache_image):
12062 * xselect.c (Fx_register_dnd_atom):
12063 Simplify previous changes by using xpalloc.
12064
12065 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
12066 since either will do and ptrdiff_t is convenient with xpalloc.
12067
12068 * charset.c (charset_table_size)
12069 (struct charset_sort_data.priority): Now ptrdiff_t.
12070 (charset_compare): Don't overflow if priorities differ greatly.
12071 (Fsort_charsets): Don't assume list length fits in int.
12072 Check for size-calculation overflow when allocating sort data.
12073 (syms_of_charset): Allocate an initial charset table that is
12074 just under 64 KiB, to avoid problems with glibc malloc and mmap.
12075
12076 * cmds.c (internal_self_insert): Check for size-calculation overflow.
12077
12078 * composite.h (struct composition.glyph_len): Now int, not unsigned.
12079 The actual value is always <= INT_MAX, and leaving it unsigned made
12080 overflow checking harder.
12081
12082 * dispextern.h (struct glyph_matrix.rows_allocated)
12083 (struct face_cache.size): Now ptrdiff_t, for convenience in use
12084 with xpalloc. The values are still always <= INT_MAX.
12085
12086 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
12087
12088 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
12089 (SAFE_NALLOCA): New macro.
12090
12091 * region-cache.c (struct boundary.pos, find_cache_boundary)
12092 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
12093 (set_cache_region, invalidate_region_cache)
12094 (revalidate_region_cache, know_region_cache, region_cache_forward)
12095 (region_cache_backward, pp_cache):
12096 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
12097 so that ptrdiff_t * can be passed to xpalloc.
12098 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
12099 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
12100 (pp_cache): Don't assume cache_len fits in int.
12101 * region-cache.h: Adjust extern decls to match.
12102
12103 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
12104 EMACS_INT, since either will do, for xpalloc.
12105
12106 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
12107 (xnmalloc, xnrealloc, xpalloc): New functions.
12108
12109 * bidi.c (bidi_shelve_header_size): New constant.
12110 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
12111 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
12112
12113 * bidi.c (bidi_cache_shrink):
12114 * buffer.c (overlays_at, overlays_in, record_overlay_string)
12115 (overlay_strings):
12116 Don't update size of array until after memory allocation succeeds,
12117 because xmalloc/xrealloc may not return.
12118 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
12119 now that we have proper integer overflow checking.
12120 (record_overlay_string, overlay_strings): Catch overflows when
12121 calculating size of overlay_str_buf.
12122
12123 * callproc.c (Fcall_process): Check for size overflow when
12124 calculating size of args2.
12125 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
12126 Normally we prefer signed values, but sticking with ptrdiff_t would
12127 require adding more-complicated checks.
12128
12129 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
12130 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
12131 Redo buffer-overflow calculations to avoid integer overflow.
12132 Add a FIXME comment where memory seems to be over-allocated.
12133
12134 * character.c (Fstring): Check for size-calculation overflow.
12135
12136 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
12137 unnecessary integer overflow. Check for size overflow.
12138 (encode_coding_object): Don't update size until xmalloc succeeds.
12139
12140 * composite.c (get_composition_id): Check for overflow in glyph
12141 length calculations.
12142
12143 Integer and memory overflow fixes for display code.
12144 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
12145 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
12146 (scrolling_window): Check for overflow in size calculations.
12147 (line_draw_cost, realloc_glyph_pool, add_row_entry):
12148 Don't assume glyph table len fits in int.
12149 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
12150 (row_table_size): Now ptrdiff_t, not int.
12151 (scrolling_window): Avoid overflow in size calculations.
12152 Don't update size until allocation succeeds.
12153 * fns.c (concat): Check for overflow in size calculations.
12154 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
12155 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
12156 (NEXT_ALMOST_PRIME_LIMIT): New constant.
12157
12158 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
12159 (get_doc_string): Check for size calculation overflow.
12160 Don't update size until allocation succeeds.
12161 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
12162 EMACS_INT, where ptrdiff_t will do.
12163 (Fsubstitute_command_keys): Check for string overflow.
12164
12165 * editfns.c (set_time_zone_rule): Don't assume environment length
12166 fits in int.
12167 (message_length): Now ptrdiff_t, not int.
12168 (Fmessage_box): Don't update size until allocation succeeds.
12169 Don't assume message length fits in int.
12170 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
12171
12172 * emacs.c (main): Do not reallocate argv, since there is a null at
12173 the end that can be overwritten, and this way there's no need to
12174 worry about size-calculation overflow.
12175 (sort_args): Check for size-calculation overflow.
12176
12177 * eval.c (init_eval_once, grow_specpdl): Don't update size until
12178 alloc succeeds.
12179 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
12180
12181 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
12182 (x_set_scroll_bar_width, x_figure_window_size):
12183 Check for integer overflow.
12184 (x_set_alpha): Do not assume XINT fits in int.
12185
12186 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
12187 This is for the members text_lines, text_cols, total_lines, total_cols,
12188 where the system imposes an 'int' limit.
12189
12190 * fringe.c (Fdefine_fringe_bitmap):
12191 Don't update size until alloc works.
12192
12193 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
12194 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
12195
12196 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
12197 Check for size-calculation overflow.
12198 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
12199 do, as we prefer signed integers.
12200 (id_to_widget.max_size, id_to_widget.used)
12201 (xg_store_widget_in_map, xg_remove_widget_from_map)
12202 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
12203 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
12204 Use and return ptrdiff_t, not int.
12205 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
12206 * gtkutil.h: Change prototypes to match the above.
12207
12208 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
12209 are duplicate now that they've been promoted to lisp.h.
12210 (x_allocate_bitmap_record, x_alloc_image_color)
12211 (make_image_cache, cache_image, xpm_load):
12212 Don't update size until alloc is done.
12213 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
12214 (x_detect_edges):
12215 Check for size calculation overflow.
12216 (ct_colors_allocated_max): New constant.
12217 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
12218 overflow.
12219
12220 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
12221 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
12222 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
12223 Use ptrdiff_t, not int, to count maps.
12224 (read_char_minibuf_menu_prompt): Check for overflow in size
12225 calculations. Don't update size until allocation succeeds.
12226 Redo calculations to avoid overflow.
12227 * keyboard.h: Change prototypes to match the above.
12228
12229 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
12230 to count maps.
12231 (current_minor_maps): Check for size calculation overflow.
12232 * keymap.h: Change prototypes to match the above.
12233
12234 * lread.c (read1, init_obarray): Don't update size until alloc done.
12235
12236 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
12237 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
12238
12239 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
12240 Now ptrdiff_t, not int.
12241 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
12242 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
12243
12244 * process.c (Fnetwork_interface_list): Check for overflow
12245 in size calculation.
12246
12247 * region-cache.c (move_cache_gap): Check for size calculation overflow.
12248
12249 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
12250 overflow. Don't bother calling xmalloc when xrealloc will do.
12251
12252 * search.c (Freplace_match): Check for size calculation overflow.
12253 (Fset_match_data): Don't assume list lengths fit in 'int'.
12254
12255 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
12256 for command line length. Do not attempt to address one before the
12257 beginning of an array, as that's not portable.
12258
12259 * term.c (max_frame_lines): Remove; unused.
12260 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
12261 not int.
12262 (encode_terminal_code, calculate_costs): Check for size
12263 calculation overflow.
12264 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
12265 table lengths and related sizes. Don't update size until alloc
12266 done. Redo calculations to avoid overflow.
12267 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
12268
12269 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
12270 subtracting pointers.
12271 (gobble_line): Check for overflow more carefully. Don't update size
12272 until alloc done.
12273
12274 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
12275 Don't update size until alloc done.
12276 Redo size calculations to avoid overflow.
12277 Check for size calculation overflow.
12278 (main) [DEBUG]: Fix typo in invoking tparam1.
12279
12280 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
12281 Use ptrdiff_t, not int, for sizes.
12282 (store_mode_line_noprop_char): Don't update size until alloc done.
12283
12284 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
12285 Use ptrdiff_t, not int, for sizes.
12286 (Finternal_make_lisp_face, cache_face):
12287 Check for size calculation overflow.
12288 (cache_face): Treat size calculation overflows as if they were
12289 memory exhaustion (the usual treatment), rather than aborting.
12290
12291 * xfns.c (x_encode_text, x_set_name_internal)
12292 (Fx_change_window_property): Use ptrdiff_t, not int, to count
12293 sizes, since they can exceed INT_MAX in size. Check for size
12294 calculation overflow.
12295
12296 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
12297 (xg_select): Check for size calculation overflow.
12298 Don't update size until alloc done.
12299
12300 * xrdb.c (get_environ_db): Don't assume path length fits in int,
12301 as sprintf is limited to int lengths.
12302
12303 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
12304 (X_LONG_MIN): New macros.
12305 Use them to make the following changes clearer.
12306 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
12307 This change doesn't affect the value now, but it may help remind
12308 future maintainers not to raise the value too much later.
12309 (SELECTION_QUANTUM): Remove, replacing with ...
12310 (selection_quantum): ... new function, which avoids overflow.
12311 All uses changed.
12312 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
12313 assumption that selection length fits in 'int'.
12314 (x_reply_selection_request, x_handle_selection_request)
12315 (x_get_window_property, receive_incremental_selection)
12316 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
12317 (lisp_data_to_selection_data, clean_local_selection_data):
12318 Use ptrdiff_t, not int, to record length of selection.
12319 (x_reply_selection_request, x_get_window_property)
12320 (receive_incremental_selection, x_property_data_to_lisp):
12321 Redo calculations to avoid overflow.
12322 (x_reply_selection_request): When sending hint, ceiling it at
12323 X_LONG_MAX rather than relying on wraparound overflow to send
12324 something.
12325 (x_get_window_property, receive_incremental_selection)
12326 (lisp_data_to_selection_data, x_property_data_to_lisp):
12327 Check for size-calculation overflow.
12328 (x_get_window_property, receive_incremental_selection)
12329 (lisp_data_to_selection_data, Fx_register_dnd_atom):
12330 Don't store size until memory allocation succeeds.
12331 (x_get_window_property): Plug memory leak on memory exhaustion.
12332 Don't double-block input; malloc is safe here. Don't assume 2**34
12333 - 4 fits in unsigned long. Add an xassert to check
12334 XGetWindowProperty overflow. Be more careful about overflow
12335 calculations, and distinguish size from memory overflow better.
12336 (receive_incremental_selection): When tracing, don't assume
12337 unsigned int is less than INT_MAX.
12338 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
12339 harmful) conversions of unsigned short to int.
12340 (lisp_data_to_selection_data): Don't assume that integers
12341 in the range -65535 through -1 fit in an X unsigned short.
12342 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
12343 result parameters unless successful. Rely on cons_to_unsigned
12344 to report problems with elements; the old code wasn't right anyway.
12345 (x_check_property_data): Check for int overflow; we cannot use
12346 a wider type due to X limits.
12347 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
12348
12349 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
12350
12351 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
12352 (x_term_init): Check for size calculation overflow.
12353 (x_color_cells): Don't store size until memory allocation succeeds.
12354 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
12355 Don't assume alloca size is less than MAX_ALLOCA.
12356 (x_term_init): Don't assume length fits in int (sprintf is limited
12357 to int size).
12358
12359 Use ptrdiff_t for composition IDs.
12360 * character.c (lisp_string_width):
12361 * composite.c (composition_table_size, n_compositions)
12362 (get_composition_id, composition_gstring_from_id):
12363 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
12364 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
12365 * window.c (Frecenter):
12366 Use ptrdiff_t, not int, for composition IDs.
12367 * composite.c (get_composition_id): Check for integer overflow.
12368 * composite.h: Adjust prototypes to match the above changes.
12369
12370 Use ptrdiff_t for hash table indexes.
12371 * category.c (hash_get_category_set):
12372 * ccl.c (ccl_driver):
12373 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
12374 * coding.c (coding_system_charset_list, detect_coding_system):
12375 * coding.h (struct coding_system.id):
12376 * composite.c (get_composition_id, gstring_lookup_cache):
12377 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
12378 * image.c (xpm_get_color_table_h):
12379 * lisp.h (hash_lookup, hash_put):
12380 * minibuf.c (Ftest_completion):
12381 Use ptrdiff_t for hash table indexes, not int (which is too
12382 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
12383 32-bit --with-wide-int hosts).
12384
12385 * charset.c (Fdefine_charset_internal): Check for integer overflow.
12386 Add a FIXME comment about memory leaks.
12387 (syms_of_charset): Don't assume xmalloc returns.
12388
12389 Don't assume that stated character widths fit in int.
12390 * character.c (Fchar_width, c_string_width, lisp_string_width):
12391 * character.h (CHAR_WIDTH):
12392 * indent.c (MULTIBYTE_BYTES_WIDTH):
12393 Use sanitize_char_width to avoid undefined and/or bad behavior
12394 with outlandish widths.
12395 * character.h (sanitize_tab_width): Rename from sanitize_width,
12396 now that we have two such functions. All uses changed.
12397 (sanitize_char_width): New inline function.
12398
12399 Don't assume that tab-width fits in int.
12400 * character.h (sanitize_width): New inline function.
12401 (SANE_TAB_WIDTH): New macro.
12402 (ASCII_CHAR_WIDTH): Use it.
12403 * indent.c (sane_tab_width): Remove. All uses replaced by
12404 SANE_TAB_WIDTH (current_buffer).
12405 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
12406
12407 * fileio.c: Integer overflow issues with file modes.
12408 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
12409
12410 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
12411 Remove unreachable code.
12412 (read_hex, load_charset_map_from_file): Check for integer overflow.
12413
12414 * xterm.c: Don't go over XClientMessageEvent limit.
12415 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
12416 (x_send_scroll_bar_event): Likewise. Check that the size does not
12417 exceed limits imposed by XClientMessageEvent, as well as the usual
12418 ptrdiff_t and size_t limits.
12419
12420 * keyboard.c: Overflow, signedness and related fixes.
12421 (make_lispy_movement): Use same integer type in forward decl
12422 that is used in the definition.
12423 (read_key_sequence, keyremap_step):
12424 Change bufsize argument back to int, undoing my 2011-03-30 change.
12425 We prefer signed types, and int is wide enough here.
12426 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
12427 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
12428 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
12429 length, not size_t. Use ptrdiff_t for index, not int.
12430 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
12431 possibility of integer overflow.
12432
12433 Overflow, signedness and related fixes for images.
12434
12435 * dispextern.h (struct it.stack[0].u.image.image_id)
12436 (struct_it.image_id, struct image.id, struct image_cache.size)
12437 (struct image_cache.used, struct image_cache.ref_count):
12438 * gtkutil.c (update_frame_tool_bar):
12439 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
12440 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
12441 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
12442 * nsmenu.m (update_frame_tool_bar):
12443 * xdisp.c (calc_pixel_width_or_height):
12444 * xfns.c (image_cache_refcount):
12445 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
12446 on typical 64-bit hosts.
12447
12448 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
12449 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
12450 Omit unnecessary casts to int.
12451 (parse_image_spec): Check that integers fall into 'int' range
12452 when the callers expect that.
12453 (image_ascent): Redo ascent calculation to avoid int overflow.
12454 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
12455 (lookup_image): Remove unnecessary tests.
12456 (xbm_image_p): Locals are now of int, not EMACS_INT,
12457 since parse_image_check makes sure they fit into int.
12458 (png_load, gif_load, svg_load_image):
12459 Prefer int to unsigned where either will do.
12460 (tiff_handler): New function, combining the cores of the
12461 old tiff_error_handler and tiff_warning_handler.
12462 This function is rewritten to use vsnprintf and thereby avoid
12463 stack buffer overflows. It uses only the features of vsnprintf
12464 that are common to both POSIX and native Microsoft.
12465 (tiff_error_handler, tiff_warning_handler): Use it.
12466 (tiff_load, gif_load, imagemagick_load_image):
12467 Don't assume :index value fits in 'int'.
12468 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
12469 (imagemagick_load_image): Check that crop parameters fit into
12470 the integer types that MagickCropImage accepts. Don't assume
12471 Vimagemagick_render_type has a nonnegative value. Don't assume
12472 size_t fits in 'long'.
12473 (gs_load): Use printmax_t to print the widest integers possible.
12474 Check for integer overflow when computing image height and width.
12475
12476 2011-08-26 Eli Zaretskii <eliz@gnu.org>
12477
12478 * xdisp.c (redisplay_window): Don't force window start if point
12479 will be invisible in the resulting window. (Bug#9324)
12480
12481 2011-08-25 Eli Zaretskii <eliz@gnu.org>
12482
12483 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
12484 the display spec is of the form `(space ...)'.
12485 (handle_display_spec): Return the value returned by
12486 handle_single_display_spec, not just 1 or zero.
12487 (handle_single_display_spec): If the display spec is of the form
12488 `(space ...)', and specifies display in the text area, return 2
12489 rather than 1.
12490 (try_cursor_movement): Check for the need to scroll more
12491 accurately, and prefer exact match for point under bidi.
12492 Don't advance `row' beyond the last row of the window.
12493
12494 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
12495 into disp_prop; all users changed.
12496
12497 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
12498 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
12499 for the text covered by the display property.
12500
12501 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
12502
12503 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
12504 Change return value to nil.
12505 (Frecord_buffer): Delete unused function.
12506
12507 2011-08-24 Eli Zaretskii <eliz@gnu.org>
12508
12509 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
12510 buffers, return left-to-right.
12511 (set_cursor_from_row): Consider candidate row a win if its glyph
12512 represents a newline and point is on that newline. Fixes cursor
12513 positioning on the newline at EOL of R2L text within L2R
12514 paragraph, and vice versa.
12515 (try_cursor_movement): Check continued rows, in addition to
12516 continuation rows. Fixes unwarranted scroll when point enters a
12517 continued line of R2L text within an L2R paragraph, or vice versa.
12518 (cursor_row_p): Consider the case of point being equal to
12519 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
12520 from the end of a short line to the beginning of a continued line
12521 of R2L text within L2R paragraph.
12522 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
12523 composed characters.
12524
12525 * bidi.c (bidi_check_type): Use xassert.
12526 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
12527 members.
12528
12529 2011-08-23 Eli Zaretskii <eliz@gnu.org>
12530
12531 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
12532 a character.
12533
12534 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
12535
12536 * nsfont.m (ns_otf_to_script): Fix typo.
12537
12538 2011-08-22 Kenichi Handa <handa@m17n.org>
12539
12540 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
12541 extra slot even if the purpose is char-code-property-table.
12542
12543 2011-08-23 Eli Zaretskii <eliz@gnu.org>
12544
12545 * xdisp.c (redisplay_window): When computing centering_position,
12546 account for the height of the header line. (Bug#8874)
12547
12548 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
12549 instead of CHAR_TO_BYTE. Fixes a crash when a completion
12550 candidate is selected by the mouse, and that candidate has a
12551 composed character under the mouse.
12552
12553 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
12554 coordinates reported by pos-visible-in-window-p for a composed
12555 character in column zero.
12556
12557 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
12558
12559 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
12560
12561 2011-08-22 Eli Zaretskii <eliz@gnu.org>
12562
12563 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
12564 consider it a hit if to_charpos is anywhere in the range of the
12565 composed buffer positions.
12566
12567 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
12568
12569 * image.c (gif_load): Don't assume that each subimage has the same
12570 dimensions as the base image. Handle disposal method that is
12571 "undefined" by the gif spec (Bug#9335).
12572
12573 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
12574
12575 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
12576 (Fcondition_case): Document `debug' symbol in error handler.
12577
12578 2011-08-19 Eli Zaretskii <eliz@gnu.org>
12579
12580 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
12581 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
12582 from an Org mode buffer to a Speedbar frame.
12583
12584 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
12585 a composition, take its buffer position from IT->cmp_it.charpos.
12586 Fixes cursor positioning at the beginning of a line that begins
12587 with a composed character.
12588
12589 2011-08-18 Eli Zaretskii <eliz@gnu.org>
12590
12591 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
12592 character bidirectional type, use STRONG_L instead. Fixes crashes
12593 in a buffer produced by `describe-categories'.
12594
12595 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
12596 members before the level stack, so they would be saved and
12597 restored when copying iterator state. Fixes incorrect reordering
12598 around TABs covered by display properties.
12599
12600 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
12601
12602 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
12603
12604 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
12605
12606 * eval.c (internal_condition_case, internal_condition_case_1)
12607 (internal_condition_case_2, internal_condition_case_n):
12608 Remove unnecessary aborts (Bug#9081).
12609
12610 2011-08-17 Eli Zaretskii <eliz@gnu.org>
12611
12612 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
12613 has no `load' handler, try opening the file locally. (Bug#9311)
12614
12615 2011-08-16 Ken Brown <kbrown@cornell.edu>
12616
12617 * gmalloc.c: Expand comment.
12618
12619 2011-08-16 Eli Zaretskii <eliz@gnu.org>
12620
12621 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
12622 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
12623
12624 2011-08-16 Ken Brown <kbrown@cornell.edu>
12625
12626 Fix memory allocation problems in Cygwin build (Bug#9273).
12627
12628 * unexcw.c ( __malloc_initialized): Declare external variable.
12629 (fixup_executable): Force the dumped emacs to reinitialize malloc.
12630
12631 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
12632 New variables.
12633 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
12634 dumped emacs.
12635 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
12636 in the static heap.
12637 [CYGWIN] (special_realloc): New function.
12638 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
12639 requests to realloc storage in the static heap.
12640
12641 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
12642
12643 * bidi.c (bidi_initialize): Remove unused local.
12644
12645 2011-08-15 Eli Zaretskii <eliz@gnu.org>
12646
12647 * bidimirror.h:
12648 * biditype.h: Remove file.
12649 * makefile.w32-in ($(BLD)/bidi.$(O)):
12650 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
12651
12652 * dispextern.h: Fix a typo in the comment to bidi_type_t.
12653
12654 * chartab.c: Improve commentary for the uniprop_table API.
12655
12656 * bidi.c (bidi_paragraph_init): Support zero value of
12657 bidi_ignore_explicit_marks_for_paragraph_level.
12658 (bidi_initialize): Use uniprop_table instead of including
12659 biditype.h and bidimirror.h.
12660
12661 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
12662 coordinates of the iterator when restoring from ppos_it.
12663 (Bug#9296)
12664
12665 2011-08-14 Kenichi Handa <handa@m17n.org>
12666
12667 * process.c (create_process): Call setup_process_coding_systems
12668 after the pid of the process is set to -1 (Bug#8162).
12669
12670 2011-08-14 Eli Zaretskii <eliz@gnu.org>
12671
12672 * xdisp.c (move_it_in_display_line_to): Don't invoke
12673 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
12674 ppos_it. Fixes vertical cursor motion when line beginning is
12675 covered by an image. (Bug#9296)
12676
12677 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
12678
12679 * nsterm.h (ns_run_ascript): Declare.
12680 (NSAPP_DATA2_RUNASSCRIPT): Define.
12681
12682 * nsfns.m (as_script, as_result, as_status): New static variables.
12683 (ns_run_ascript): New function.
12684 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
12685 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
12686 the event loop. Get status from as_status (Bug#7276).
12687
12688 * nsterm.m (sendEvent): If event is NSApplicationDefined and
12689 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
12690 the event loop (Bug#7276).
12691
12692 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
12693
12694 * gnutls.c (QCgnutls_bootprop_priority)
12695 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
12696 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
12697 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
12698 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
12699 (QCgnutls_bootprop_verify_hostname_error)
12700 (QCgnutls_bootprop_callbacks_verify): Rename from
12701 Qgnutls_bootprop_..., all uses changed.
12702
12703 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
12704 uses changed.
12705
12706 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
12707
12708 * xfaces.c (Qframe_set_background_mode): Now static.
12709 * dispextern.h (Qframe_set_background_mode): Remove decl.
12710
12711 * process.c (Fnetwork_interface_info): Declare local only if needed.
12712
12713 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
12714
12715 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
12716 (Fnetwork_interface_list): Allocate in increments of bytes instead
12717 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
12718 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
12719 sockaddr.
12720 (struct ifflag_def): notrailers is smart on OSX.
12721 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
12722 Get hardware address with getifaddrs if available.
12723
12724 2011-08-12 Eli Zaretskii <eliz@gnu.org>
12725
12726 * xdisp.c (iterate_out_of_display_property): xassert that
12727 IT->position is set to within IT->object's boundaries. Break from
12728 the loop as soon as EOB is reached; avoids infloops in redisplay
12729 when IT->position is set up wrongly due to some bug.
12730 Set IT->current to match the bidi iterator unconditionally.
12731 (push_display_prop): Allow GET_FROM_STRING as IT->method on
12732 entry. Force push_it to save on the stack the current
12733 buffer/string position, to be restored by pop_it. Fix flags in
12734 the iterator structure wrt the object coming from a display
12735 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
12736 properties. (Bug#9284)
12737
12738 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
12739
12740 * fontset.c (fontset_get_font_group): Add proper type checks.
12741 (Bug#9172)
12742
12743 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12744
12745 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
12746 and LC_VERSION_MIN_MACOSX.
12747 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
12748 (dump_it) [LC_FUNCTION_STARTS]: Use it.
12749
12750 2011-08-08 Eli Zaretskii <eliz@gnu.org>
12751
12752 * xdisp.c (forward_to_next_line_start): Allow to use the
12753 no-display-properties-and-no-overlays under bidi display.
12754 Set disp_pos in the bidi iterator to avoid searches for display
12755 properties and overlays.
12756
12757 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
12758
12759 * editfns.c (Fset_time_zone_rule): Document relationship with the
12760 setenv function.
12761
12762 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
12763 the font entity extracted from the cache (Bug#8109).
12764
12765 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
12766
12767 * composite.c (autocmp_chars): Don't reset point. That is done by
12768 restore_point_unwind (Bug#5984).
12769
12770 2011-08-07 Juri Linkov <juri@jurta.org>
12771
12772 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
12773 to show the arg `TIME' instead of `TIMEVAL'.
12774
12775 2011-08-06 Eli Zaretskii <eliz@gnu.org>
12776
12777 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
12778 display property strides EOL and includes a newline, as in
12779 longlines-mode. (Bug#9254)
12780 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
12781 word-wrap under bidirectional display. (Bug#9224)
12782
12783 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
12784 is non-zero, even if the data buffer is NULL. Fixes a crash in
12785 vertical-motion with longlines-mode. (Bug#9254)
12786
12787 2011-08-05 Eli Zaretskii <eliz@gnu.org>
12788
12789 * bidi.c <bidi_cache_total_alloc>: Now static.
12790 (bidi_initialize): Initialize bidi_cache_total_alloc.
12791
12792 * xdisp.c (display_line): Release buffer allocated for shelved bidi
12793 cache. (Bug#9221)
12794
12795 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
12796 amount allocated this far in `bidi_cache_total_alloc'.
12797 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
12798 non-zero, only free the data buffer without restoring the cache
12799 contents. All callers changed.
12800
12801 * dispextern.h (bidi_unshelve_cache): Update prototype.
12802
12803 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
12804 (move_it_in_display_line, move_it_to)
12805 (move_it_vertically_backward, move_it_by_lines): Replace the call
12806 to xfree to an equivalent call to bidi_unshelve_cache.
12807 (move_it_in_display_line_to): Fix logic of returning
12808 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
12809
12810 2011-08-05 Eli Zaretskii <eliz@gnu.org>
12811
12812 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
12813 came from a string character with a `cursor' property. (Bug#9229)
12814
12815 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
12816
12817 * Makefile.in (LIB_PTHREAD): New variable.
12818 (LIBES): Add LIB_PTHREAD (Bug#9216).
12819
12820 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
12821 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
12822
12823 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
12824
12825 * regex.c (re_iswctype): Remove some redundant boolean conversions.
12826
12827 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
12828
12829 * xterm.c (x_find_topmost_parent): New function.
12830 (x_set_frame_alpha): Find topmost parent window with
12831 x_find_topmost_parent and set the property there also (bug#9181).
12832 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
12833
12834 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
12835
12836 * callproc.c (Fcall_process): Avoid vfork clobbering
12837 the local vars buffer, coding_systems, current_dir.
12838
12839 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
12840
12841 * keymap.c (Fmake_composed_keymap): Move to subr.el.
12842
12843 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
12844
12845 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
12846 so that it is not optimized away.
12847
12848 * xdisp.c (compute_display_string_pos): Remove unused local.
12849
12850 2011-08-02 Eli Zaretskii <eliz@gnu.org>
12851
12852 Fix slow cursor motion and scrolling in large buffers with
12853 selective display, like Org Mode buffers. (Bug#9218)
12854
12855 * dispextern.h (struct bidi_it): New member disp_prop_p.
12856
12857 * xdisp.c: Remove one-slot cache of display string positions.
12858 (compute_display_string_pos): Accept an additional argument
12859 DISP_PROP_P; callers changed. Scan at most 5K characters forward
12860 for a display string or property. If found, set DISP_PROP_P
12861 non-zero.
12862
12863 * bidi.c (bidi_fetch_char): Accept an additional argument
12864 DISP_PROP_P, and pass it to compute_display_string_pos.
12865 Only handle text covered by a display string if DISP_PROP_P is returned
12866 non-zero. All callers of bidi_fetch_char changed.
12867
12868 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
12869
12870 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
12871
12872 2010-12-03 Don March <don@ohspite.net>
12873
12874 * keymap.c (Fdefine_key): Fix non-prefix key error message when
12875 last character M-[char] is translated to ESC [char] (bug#7541).
12876
12877 2011-08-02 Kenichi Handa <handa@m17n.org>
12878
12879 * lisp.h (uniprop_table): Extern it.
12880
12881 * chartab.c (uniprop_table): Make it non-static.
12882
12883 2011-08-01 Eli Zaretskii <eliz@gnu.org>
12884
12885 * xdisp.c (forward_to_next_line_start): Accept additional argument
12886 BIDI_IT_PREV, and store into it the state of the bidi iterator had
12887 on the newline.
12888 (reseat_at_next_visible_line_start): Use the bidi iterator state
12889 returned by forward_to_next_line_start to restore the state of
12890 it->bidi_it after backing up to previous newline. (Bug#9212)
12891
12892 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
12893
12894 * regex.c (re_comp): Protoize.
12895 (re_exec): Fix return type.
12896 (regexec): Fix type of `ret'. (Bug#9203)
12897
12898 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12899
12900 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
12901 This is needed if max-image-size is a floating-point number.
12902
12903 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
12904
12905 * print.c (print_object): Print empty symbol as ##.
12906
12907 * lread.c (read1): Read ## as empty symbol.
12908
12909 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
12910
12911 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
12912 setting frame foreground color (Bug#9175).
12913 (x_set_background_color): Likewise.
12914
12915 * nsmenu.m (-setText): Size tooltip dimensions precisely to
12916 contents (Bug#9176).
12917 (EmacsTooltip -init): Remove bezels and add shadows to
12918 tooltip windows.
12919
12920 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
12921 or scroll bar (Bug#8470).
12922
12923 * nsfont.m (nsfont_open): Remove assignment to voffset and
12924 unnecessary vars hshink, expand, hd, full_height, min_height.
12925 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
12926
12927 * nsterm.h (nsfont_info): Remove voffset field.
12928
12929 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
12930
12931 Implement strike-through and overline on NextStep (Bug#8863).
12932
12933 * nsfont.m (nsfont_open): Use underline position provided by font,
12934 instead of hard-coded value of 2.
12935 (nsfont_draw): Call ns_draw_text_decoration instead.
12936
12937 * nsterm.h: Add declaration for ns_draw_text_decoration.
12938
12939 * nsterm.m (ns_draw_text_decoration): New function for drawing
12940 underline, overline, and strike-through.
12941 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
12942 ns_draw_text_decoration. Change treatment of cursor drawing to
12943 accommodate underlining, etc.
12944
12945 2011-07-28 Eli Zaretskii <eliz@gnu.org>
12946
12947 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
12948 default.
12949
12950 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12951
12952 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
12953 Without this fix, if a signal arrives just after memory fills up,
12954 'malloc' might be invoked reentrantly.
12955
12956 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
12957 In other words, assume that every image size is allowed, on non-X
12958 hosts. This assumption is probably wrong, but it lets Emacs compile.
12959
12960 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
12961
12962 * regex.c (re_iswctype): Convert return values to boolean.
12963
12964 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
12965
12966 * xdisp.c (compute_display_string_pos): Don't use cached display
12967 string position if the buffer had its restriction changed.
12968 (Bug#9184)
12969
12970 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12971
12972 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
12973
12974 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
12975
12976 Integer signedness and overflow and related fixes. (Bug#9079)
12977
12978 * bidi.c: Integer size and overflow fixes.
12979 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
12980 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
12981 (bidi_cache_find_level_change, bidi_cache_ensure_space)
12982 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
12983 (bidi_find_other_level_edge):
12984 Use ptrdiff_t instead of EMACS_INT where either will do.
12985 This works better on 32-bit hosts configured --with-wide-int.
12986 (bidi_cache_ensure_space): Check for size-calculation overflow.
12987 Use % rather than repeated addition, for better worst-case speed.
12988 Don't set bidi_cache_size until after xrealloc returns, because it
12989 might not return.
12990 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
12991 (bidi_cache_ensure_space): Also check that the bidi cache size
12992 does not exceed that of the largest Lisp string or buffer. See Eli
12993 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
12994
12995 * alloc.c (__malloc_size_t): Remove.
12996 All uses replaced by size_t. See Andreas Schwab's note
12997 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
12998
12999 * image.c: Improve checking for integer overflow.
13000 (check_image_size): Assume that f is nonnull, since
13001 it is always nonnull in practice. This is one less thing to
13002 worry about when checking for integer overflow later.
13003 (x_check_image_size): New function, which checks for integer
13004 overflow issues inside X.
13005 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
13006 This removes the need for a memory_full check.
13007 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
13008 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
13009 (xbm_read_bitmap_data): Change locals back to 'int', since
13010 their values must fit in 'int'.
13011 (xpm_load_image, png_load, tiff_load):
13012 Invoke x_create_x_image_and_pixmap earlier,
13013 to avoid much needless work if the image is too large.
13014 (tiff_load): Treat overly large images as if
13015 x_create_x_image_and_pixmap failed, not as malloc failures.
13016 (gs_load): Use x_check_image_size.
13017
13018 * gtkutil.c: Omit integer casts.
13019 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
13020 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
13021
13022 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
13023
13024 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
13025 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
13026 would wrongly return t on a 64-bit host.
13027
13028 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
13029 The plain *_OVERFLOW macros run afoul of GCC bug 49705
13030 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
13031 and therefore cause GCC to emit a bogus diagnostic in some cases.
13032
13033 * image.c: Integer signedness and overflow and related fixes.
13034 This is not an exhaustive set of fixes, but it's time to
13035 record what I've got.
13036 (lookup_pixel_color, check_image_size): Remove redundant decls.
13037 (check_image_size): Don't assume that arbitrary EMACS_INT values
13038 fit in 'int', or that arbitrary 'double' values fit in 'int'.
13039 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
13040 (tiff_load, imagemagick_load_image):
13041 Check for overflow in size calculations.
13042 (x_create_x_image_and_pixmap): Remove unnecessary test for
13043 xmalloc returning NULL; that can't happen.
13044 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
13045 (xpm_color_bucket): Use better integer hashing function.
13046 (xpm_cache_color): Don't possibly over-allocate memory.
13047 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
13048 (gif_memory_source):
13049 Use ptrdiff_t, not int or size_t, to record sizes.
13050 (png_load): Don't assume values greater than 2**31 fit in 'int'.
13051 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
13052 either works, as we prefer signed integers.
13053 (tiff_read_from_memory, tiff_write_from_memory):
13054 Return tsize_t, not size_t, since that's what the TIFF API wants.
13055 (tiff_read_from_memory): Don't fail simply because the read would
13056 go past EOF; instead, return a short read.
13057 (tiff_load): Omit no-longer-needed casts.
13058 (Fimagemagick_types): Don't assume size fits into 'int'.
13059
13060 Improve hashing quality when configured --with-wide-int.
13061 * fns.c (hash_string): New function, taken from sxhash_string.
13062 Do not discard information about ASCII character case; this
13063 discarding is no longer needed.
13064 (sxhash-string): Use it. Change sig to match it. Caller changed.
13065 * lisp.h: Declare it.
13066 * lread.c (hash_string): Remove, since we now use fns.c's version.
13067 The fns.c version returns a wider integer if --with-wide-int is
13068 specified, so this should help the quality of the hashing a bit.
13069
13070 * emacs.c: Integer overflow minor fix.
13071 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
13072 Define only if GNU_LINUX.
13073 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
13074
13075 * dispnew.c: Integer signedness and overflow fixes.
13076 Remove unnecessary forward decls, that were a maintenance hassle.
13077 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
13078 All uses changed.
13079 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
13080 (scrolling_window): Use ptrdiff_t, not int, for byte count.
13081 (prepare_desired_row, line_draw_cost):
13082 Use int, not unsigned, where either works.
13083 (save_current_matrix, restore_current_matrix):
13084 Use ptrdiff_t, not size_t, where either works.
13085 (init_display): Check for overflow more accurately, and without
13086 relying on undefined behavior.
13087
13088 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
13089 Remove, replacing with the new symbols in lisp.h. All uses changed.
13090 * fileio.c (make_temp_name):
13091 * filelock.c (lock_file_1, lock_file):
13092 * xdisp.c (message_dolog):
13093 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
13094 Use pMd etc. instead.
13095 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
13096 replacing the pWIDE etc. symbols removed from editfns.c.
13097
13098 * keyboard.h (num_input_events): Now uintmax_t.
13099 This is (very slightly) less likely to mess up due to wraparound.
13100 All uses changed.
13101
13102 * buffer.c: Integer signedness fixes.
13103 (alloc_buffer_text, enlarge_buffer_text):
13104 Use ptrdiff_t rather than size_t when either will do, as we prefer
13105 signed integers.
13106
13107 * alloc.c: Integer signedness and overflow fixes.
13108 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
13109 (__malloc_size_t): Default to size_t, not to int.
13110 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
13111 (Fgarbage_collect, mark_object_loop_halt, mark_object):
13112 Prefer ptrdiff_t to size_t when either would do, as we prefer
13113 signed integers.
13114 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
13115 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
13116 Now const. Initialize with values that are in range even if char
13117 is signed.
13118 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
13119 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
13120 These functions do the right thing with sizes > 2**32.
13121 (check_depth): Now ptrdiff_t, not int.
13122 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
13123 Adjust to new way of storing sizes. Check for size overflow bugs
13124 in rest of code.
13125 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
13126 slightly wrong anyway, as it missed one instance of
13127 XMALLOC_OVERRUN_CHECK_OVERHEAD.
13128 (refill_memory_reserve): Omit needless cast to size_t.
13129 (mark_object_loop_halt): Mark as externally visible.
13130
13131 * xselect.c: Integer signedness and overflow fixes.
13132 (Fx_register_dnd_atom, x_handle_dnd_message):
13133 Use ptrdiff_t, not size_t, since we prefer signed.
13134 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
13135 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
13136 x_dnd_atoms_size and x_dnd_atoms_length.
13137
13138 * doprnt.c: Prefer signed to unsigned when either works.
13139 * eval.c (verror):
13140 * doprnt.c (doprnt):
13141 * lisp.h (doprnt):
13142 * xdisp.c (vmessage):
13143 Use ptrdiff_t, not size_t, when using or implementing doprnt,
13144 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
13145 prefer signed arithmetic to avoid comparison confusion.
13146 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
13147 but is a bit tricky.
13148
13149 Assume freestanding C89 headers, string.h, stdlib.h.
13150 * data.c, doprnt.c, floatfns.c, print.c:
13151 Include float.h unconditionally.
13152 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
13153 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
13154 * regex.c: Likewise for stddef.h, string.h.
13155 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
13156 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
13157 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
13158 (STDC_HEADERS): Remove obsolete defines.
13159 * sysdep.c: Include limits.h unconditionally.
13160
13161 Assume support for memcmp, memcpy, memmove, memset.
13162 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
13163 * regex.c (memcmp, memcpy):
13164 Remove; we assume C89 now.
13165
13166 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
13167 (__malloc_safe_bcopy): Remove; no longer needed.
13168
13169 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
13170 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
13171 well either way, and we prefer signed to unsigned.
13172
13173 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
13174
13175 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
13176 closes the connection while we're reading (bug#9182).
13177
13178 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
13179
13180 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
13181 are specified (Bug#9168).
13182
13183 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
13184
13185 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
13186 Found by GCC static checking and --with-wide-int on a 32-bit host.
13187
13188 2011-07-25 Eli Zaretskii <eliz@gnu.org>
13189
13190 * xdisp.c (compute_display_string_pos): Fix logic of caching
13191 previous display string position. Initialize cached_prev_pos to
13192 -1. Fixes slow-down at the beginning of a buffer.
13193
13194 2011-07-24 Eli Zaretskii <eliz@gnu.org>
13195
13196 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
13197 for attrs[LFACE_FONTSET_INDEX].
13198
13199 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
13200
13201 * xml.c (parse_region): Remove unused local
13202 that was recently introduced.
13203
13204 2011-07-23 Eli Zaretskii <eliz@gnu.org>
13205
13206 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
13207 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
13208
13209 * xdisp.c (move_it_in_display_line_to): Record the best matching
13210 position for TO_CHARPOS while scanning the line, and restore it on
13211 exit if none of the characters scanned was an exact match.
13212 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
13213 when exact match is impossible due to invisible text, and the
13214 lines are truncated.
13215
13216 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
13217
13218 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
13219 for OSX >= 10.7.
13220
13221 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13222
13223 Fix a significant slow-down of cursor motion with C-n, C-p,
13224 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
13225 auto-repeat under bidi redisplay in fontified buffers.
13226 * xdisp.c (compute_stop_pos_backwards): New function.
13227 (next_element_from_buffer): Call compute_stop_pos_backwards to
13228 find a suitable prev_stop when we find ourselves before
13229 base_level_stop.
13230 (reseat): Don't look for prev_stop, as that could mean a very long
13231 run.
13232 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
13233 <cached_disp_overlay_modiff>: Cache for last found display string
13234 position.
13235 (compute_display_string_pos): Return the cached position if asked
13236 about the same buffer in the same area of character positions, and
13237 the buffer wasn't changed since the time the display string
13238 position was cached.
13239
13240 2011-07-22 Eli Zaretskii <eliz@gnu.org>
13241
13242 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
13243 is an integer, which is important for empty lines. (Bug#9149)
13244
13245 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
13246
13247 * frame.c (Fmodify_frame_parameters): In tty case, update the
13248 default face if necessary (Bug#4238).
13249
13250 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
13251
13252 * editfns.c (Fstring_to_char): No need to explain what a character
13253 is in the docstring (Bug#6576).
13254
13255 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13256
13257 * xml.c (parse_region): Make sure we always return a tree.
13258
13259 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
13260
13261 * xml.c (parse_region): If a document contains only comments,
13262 return that, too.
13263
13264 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
13265
13266 * xml.c (make_dom): Return comments, too.
13267
13268 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
13269
13270 Port to OpenBSD.
13271 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
13272 and the surrounding thread.
13273 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
13274 rather than fgets, and retry after EINTR. Otherwise, 'emacs
13275 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
13276 timer goes off.
13277 * s/openbsd.h (BROKEN_SIGIO): Define.
13278 * unexelf.c (unexec) [__OpenBSD__]:
13279 Don't update the .mdebug section of the Alpha COFF symbol table.
13280
13281 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
13282
13283 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
13284 (bug#8460).
13285
13286 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
13287
13288 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
13289 This fixes some race conditions on the permissions of any newly
13290 created file.
13291
13292 * alloc.c (valid_pointer_p): Use pipe, not open.
13293 This fixes some permissions issues when debugging.
13294
13295 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
13296 If fchown fails to set both uid and gid, try to set just gid,
13297 as that is sometimes allowed. Adjust the file's mode to eliminate
13298 setuid or setgid bits that are inappropriate if fchown fails.
13299
13300 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
13301
13302 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
13303 to compare Lisp_Objects.
13304 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
13305 global_gnutls_log_level, don't mistake it for a Lisp_Object.
13306 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
13307
13308 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
13309
13310 * lread.c (read_integer): Unread even EOF character.
13311 (read1): Likewise. Properly record start position of symbol.
13312
13313 * lread.c (read1): Read `#:' as empty uninterned symbol if no
13314 symbol character follows.
13315
13316 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
13317
13318 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
13319 This works around a problem with the previous change to Fcopy_file.
13320 Recent glibc declares fchown with __attribute__((warn_unused_result)),
13321 and without this change, GCC might complain about discarding
13322 fchown's return value.
13323
13324 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
13325
13326 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
13327
13328 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
13329
13330 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
13331
13332 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
13333
13334 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
13335 it's used from the C level.
13336
13337 * process.c: Use the same condition for POLL_FOR_INPUT in both
13338 keyboard.c and process.c (bug#1858).
13339
13340 2011-07-09 Lawrence Mitchell <wence@gmx.li>
13341
13342 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
13343 (Fgnutls_boot): Use it.
13344
13345 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
13346
13347 * doc.c (Fsubstitute_command_keys): Revert last change.
13348
13349 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
13350
13351 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
13352 quotes the next character, and doesn't affect other longer
13353 sequences (bug#8935).
13354
13355 * lread.c (syms_of_lread): Clarify that is isn't only
13356 `eval-buffer' and `eval-defun' that's affected by
13357 `lexical-binding' (bug#8460).
13358
13359 2011-07-15 Eli Zaretskii <eliz@gnu.org>
13360
13361 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
13362 bidi redisplay when a line includes both an image and is truncated.
13363
13364 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
13365
13366 Fix minor problems found by static checking.
13367 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
13368 (elsz): Now a signed constant, not a size_t var. We prefer signed
13369 types to unsigned, to avoid integer comparison confusion. Without
13370 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
13371 "cannot optimize loop, the loop counter may overflow", a symptom
13372 of the confusion.
13373 * indent.c (Fvertical_motion): Mark locals as initialized.
13374 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
13375
13376 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13377
13378 * search.c (Fre_search_backward): Mention `case-fold-search' in
13379 all the re_search_* functions (bug#8138).
13380
13381 * keyboard.c (Fopen_dribble_file): Document when the file is
13382 closed (bug#8056).
13383
13384 2011-07-14 Eli Zaretskii <eliz@gnu.org>
13385
13386 * bidi.c (bidi_dump_cached_states): Fix format of displaying
13387 bidi_cache_idx.
13388
13389 Support bidi reordering of display and overlay strings.
13390 * xdisp.c (compute_display_string_pos)
13391 (compute_display_string_end): Accept additional argument STRING.
13392 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
13393 (reseat_to_string): Initialize bidi_it->string.s and
13394 bidi_it->string.schars.
13395 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
13396 NULL (avoids a crash in bidi_paragraph_init).
13397 Initialize itb.string.lstring.
13398 (init_iterator): Call bidi_init_it only of a valid
13399 buffer position was specified. Initialize paragraph_embedding to
13400 L2R.
13401 (reseat_to_string): Initialize the bidi iterator.
13402 (display_string): If we need to ignore text properties of
13403 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
13404 original value of -1 will not work with bidi.)
13405 (compute_display_string_pos): First arg is now struct
13406 `text_pos *'; all callers changed. Support display properties on
13407 Lisp strings.
13408 (compute_display_string_end): Support display properties on Lisp
13409 strings.
13410 (init_iterator, reseat_1, reseat_to_string): Initialize the
13411 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
13412 when iterating on a string not from display properties).
13413 (compute_display_string_pos, compute_display_string_end):
13414 Fix calculation of the object to scan. Fixes an error when using
13415 arrow keys.
13416 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
13417 base_level_stop; instead, set base_level_stop to BEGV.
13418 Fixes crashes in vertical-motion.
13419 (next_element_from_buffer): Improve commentary for when
13420 the iterator is before prev_stop.
13421 (init_iterator): Initialize bidi_p from the default value of
13422 bidi-display-reordering, not from buffer-local value. Use the
13423 buffer-local value only if initializing for buffer iteration.
13424 (handle_invisible_prop): Support invisible properties on strings
13425 that are being bidi-reordered.
13426 (set_iterator_to_next): Support bidi reordering of C strings and
13427 Lisp strings.
13428 (next_element_from_string): Support bidi reordering of Lisp
13429 strings.
13430 (handle_stop_backwards): Support Lisp strings as well.
13431 (display_string): Support display of R2L glyph rows.
13432 Use IT_STRING_CHARPOS when displaying from a Lisp string.
13433 (init_iterator): Don't initialize it->bidi_p for strings
13434 here.
13435 (reseat_to_string): Initialize it->bidi_p for strings here.
13436 (next_element_from_string, next_element_from_c_string)
13437 (next_element_from_buffer): Add xassert's for correspondence
13438 between IT's object being iterated and it->bidi_it.string
13439 structure.
13440 (face_before_or_after_it_pos): Support bidi iteration.
13441 (next_element_from_c_string): Handle the case of the first string
13442 character that is not the first one in the visual order.
13443 (get_visually_first_element): New function, refactored from common
13444 parts of next_element_from_buffer, next_element_from_string, and
13445 next_element_from_c_string.
13446 (tool_bar_lines_needed, redisplay_tool_bar)
13447 (display_menu_bar): Force left-to-right direction. Add a FIXME
13448 comment for making that be controlled by a user option.
13449 (push_it, pop_it): Save and restore the state of the
13450 bidi iterator. Save and restore the bidi_p flag.
13451 (pop_it): Iterate out of display property for string iteration as
13452 well.
13453 (iterate_out_of_display_property): Support iteration over strings.
13454 (handle_single_display_spec): Set up it->bidi_it for iteration
13455 over a display string, and call bidi_init_it.
13456 (handle_single_display_spec, next_overlay_string)
13457 (get_overlay_strings_1, push_display_prop): Set up the bidi
13458 iterator for displaying display or overlay strings.
13459 (forward_to_next_line_start): Don't use the shortcut if
13460 bidi-iterating.
13461 (back_to_previous_visible_line_start): If handle_display_prop
13462 pushed the iterator stack, restore the internal state of the bidi
13463 iterator by calling bidi_pop_it same number of times.
13464 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
13465 and we are bidi-iterating, don't decrement the iterator position;
13466 instead, set the first_elt flag in the bidi iterator, to produce
13467 the same effect.
13468 (reseat_1): Remove redundant setting of string_from_display_prop_p.
13469 (push_display_prop): xassert that we are iterating a buffer.
13470 (push_it, pop_it): Save and restore paragraph_embedding member.
13471 (handle_single_display_spec, next_overlay_string)
13472 (get_overlay_strings_1, reseat_1, reseat_to_string)
13473 (push_display_prop): Set up the `unibyte' member of bidi_it.string
13474 correctly. Don't assume unibyte strings are not bidi-reordered.
13475 (compute_display_string_pos)
13476 (compute_display_string_end): Fix handling the case of C string.
13477 (push_it, pop_it): Save and restore from_disp_prop_p.
13478 (handle_single_display_spec, push_display_prop): Set the
13479 from_disp_prop_p flag.
13480 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
13481 (pop_it): Call iterate_out_of_display_property only if we are
13482 popping after iteration over a string that came from a display
13483 property. Fix a typo in popping stretch info. Add an assertion
13484 for verifying that the iterator position is in sync with the bidi
13485 iterator.
13486 (handle_single_display_spec, get_overlay_strings_1)
13487 (push_display_prop): Fix initialization of paragraph direction for
13488 string when that of the parent object is not yet determined.
13489 (reseat_1): Call bidi_init_it to resync the bidi
13490 iterator with IT's position. (Bug#7616)
13491 (find_row_edges): If ROW->start.pos gives position
13492 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
13493 (handle_stop, back_to_previous_visible_line_start, reseat_1):
13494 Reset the from_disp_prop_p flag.
13495 (SAVE_IT, RESTORE_IT): New macros.
13496 (pos_visible_p, face_before_or_after_it_pos)
13497 (back_to_previous_visible_line_start)
13498 (move_it_in_display_line_to, move_it_in_display_line)
13499 (move_it_to, move_it_vertically_backward, move_it_by_lines)
13500 (try_scrolling, redisplay_window, display_line): Use them when
13501 saving a temporary copy of the iterator and restoring it back.
13502 (back_to_previous_visible_line_start, reseat_1)
13503 (init_iterator): Empty the bidi cache "stack".
13504 (move_it_in_display_line_to): If iterator ended up at
13505 EOL, but we never saw any buffer positions smaller than
13506 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
13507 motion in bidi-reordered lines.
13508 (move_it_in_display_line_to): Record prev_method and prev_pos
13509 immediately before the call to set_iterator_to_next. Fixes cursor
13510 motion in bidi-reordered lines with stretch glyphs and strings
13511 displayed in margins. (Bug#8133) (Bug#8867)
13512 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
13513 TO_CHARPOS.
13514 (pos_visible_p): Support positions in bidi-reordered lines.
13515 Save and restore bidi cache.
13516
13517 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
13518 (bidi_paragraph_info): Delete unused struct.
13519 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
13520 (bidi_cache_start): New variable.
13521 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
13522 to zero.
13523 (bidi_cache_fetch_state, bidi_cache_search)
13524 (bidi_cache_find_level_change, bidi_cache_iterator_state)
13525 (bidi_cache_find, bidi_peek_at_next_level)
13526 (bidi_level_of_next_char, bidi_find_other_level_edge)
13527 (bidi_move_to_visually_next): Compare cache index with
13528 bidi_cache_start rather than with zero.
13529 (bidi_fetch_char): Accept new argument STRING; all callers
13530 changed. Support iteration over a string. Support strings with
13531 display properties. Support unibyte strings. Fix the type of
13532 `len' according to what STRING_CHAR_AND_LENGTH expects.
13533 (bidi_paragraph_init, bidi_resolve_explicit_1)
13534 (bidi_resolve_explicit, bidi_resolve_weak)
13535 (bidi_level_of_next_char, bidi_move_to_visually_next):
13536 Support iteration over a string.
13537 (bidi_set_sor_type, bidi_resolve_explicit_1)
13538 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
13539 can now be zero (for strings); special values 0 and -1 were
13540 changed to -1 and -2, respectively.
13541 (bidi_char_at_pos): New function.
13542 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
13543 Call it instead of FETCH_MULTIBYTE_CHAR.
13544 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
13545 initialized to valid values.
13546 (bidi_init_it): Don't initialize charpos and bytepos with invalid
13547 values.
13548 (bidi_level_of_next_char): Allow the sentinel "position" to pass
13549 the test for valid cached positions. Fix the logic for looking up
13550 the sentinel state in the cache. GCPRO the Lisp string we are
13551 iterating.
13552 (bidi_push_it, bidi_pop_it): New functions.
13553 (bidi_initialize): Initialize the bidi cache start stack pointer.
13554 (bidi_cache_ensure_space): New function, refactored from part of
13555 bidi_cache_iterator_state. Don't assume the required size is just
13556 one BIDI_CACHE_CHUNK away.
13557 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
13558 (bidi_count_bytes, bidi_char_at_pos): New functions.
13559 (bidi_cache_search): Don't assume bidi_cache_last_idx is
13560 always valid if bidi_cache_idx is valid.
13561 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
13562 is valid if it's going to be used.
13563 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
13564 (bidi_cache_fetch_state, bidi_cache_search)
13565 (bidi_cache_find_level_change, bidi_cache_ensure_space)
13566 (bidi_cache_iterator_state, bidi_cache_find)
13567 (bidi_find_other_level_edge, bidi_cache_start_stack):
13568 All variables related to cache indices are now EMACS_INT.
13569
13570 * dispextern.h (struct bidi_string_data): New structure.
13571 (struct bidi_it): New member `string'. Make flag members be 1-bit
13572 fields, and put them last in the struct.
13573 (compute_display_string_pos, compute_display_string_end):
13574 Update prototypes.
13575 (bidi_push_it, bidi_pop_it): Add prototypes.
13576 (struct iterator_stack_entry): New members bidi_p,
13577 paragraph_embedding, and from_disp_prop_p.
13578 (struct it): Member bidi_p is now a bit field 1 bit wide.
13579 (bidi_shelve_cache, bidi_unshelve_cache):
13580 Declare prototypes.
13581
13582 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
13583 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
13584 and vector-like objects.
13585
13586 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
13587 cache around display iteration.
13588
13589 * window.c (Fwindow_end, window_scroll_pixel_based)
13590 (displayed_window_lines, Frecenter): Save and restore the bidi
13591 cache around display iteration.
13592
13593 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
13594
13595 * editfns.c (Fdelete_region): Clarify the use of the named
13596 parameters (bug#6788).
13597
13598 2011-07-14 Martin Rudalics <rudalics@gmx.at>
13599
13600 * indent.c (Fvertical_motion): Set and restore w->pointm when
13601 saving and restoring the window's buffer (Bug#9006).
13602
13603 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
13604
13605 * editfns.c (Fstring_to_char): Clarify just what is returned
13606 (bug#6576). Text by Eli Zaretskii.
13607
13608 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
13609
13610 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
13611
13612 2011-07-13 Eli Zaretskii <eliz@gnu.org>
13613
13614 * buffer.c (mmap_find): Fix a typo.
13615
13616 2011-07-13 Johan Bockgård <bojohan@gnu.org>
13617
13618 Fix execution of x selection hooks.
13619 * xselect.c (Qx_lost_selection_functions)
13620 (Qx_sent_selection_functions): New vars.
13621 (syms_of_xselect): DEFSYM them.
13622 (x_handle_selection_request): Pass Qx_sent_selection_functions
13623 rather than Vx_sent_selection_functions to Frun_hook_with_args.
13624 (x_handle_selection_clear,x_clear_frame_selections):
13625 Pass Qx_lost_selection_functions rather than
13626 Vx_lost_selection_functions to Frun_hook_with_args.
13627
13628 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
13629
13630 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
13631 The old code sometimes used this field without initializing it.
13632
13633 * alloc.c (gc_sweep): Don't read past end of array.
13634 In theory, the old code could also have corrupted Emacs internals,
13635 though it'd be very unlikely.
13636
13637 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
13638
13639 * character.c (Fcharacterp): Don't advertise optional ignored
13640 argument. (Bug#4026)
13641
13642 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
13643
13644 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
13645 key" (bug#4257).
13646
13647 * window.c (Fset_window_start): Doc fix (bug#4199).
13648 (Fset_window_hscroll): Ditto.
13649
13650 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
13651
13652 Fix minor new problems caught by GCC 4.6.1.
13653 * term.c (init_tty): Remove unused local.
13654 * xsettings.c (store_monospaced_changed): Define this function only
13655 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
13656 not used otherwise.
13657
13658 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
13659
13660 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
13661
13662 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
13663
13664 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
13665 are the mini-buffer and the echo area (bug#3320).
13666
13667 * term.c (init_tty): Remove support for supdup, c10 and perq
13668 terminals, which are no longer supported (bug#1482).
13669
13670 2011-07-10 Johan Bockgård <bojohan@gnu.org>
13671
13672 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
13673
13674 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
13675
13676 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
13677 for non-popups (Bug#3642).
13678
13679 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
13680
13681 * alloc.c (reset_malloc_hooks): Protoize.
13682 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
13683 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
13684 * cm.c (losecursor): Likewise.
13685 * data.c (fmod): Likewise.
13686 * dispnew.c (swap_glyphs_in_rows): Likewise.
13687 * emacs.c (memory_warning_signal): Likewise.
13688 * floatfns.c (float_error): Likewise.
13689 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
13690 (otf_open, font_otf_capability, generate_otf_features)
13691 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
13692 Likewise.
13693 * image.c (pbm_read_file): Likewise.
13694 * indent.c (string_display_width): Likewise.
13695 * intervals.c (check_for_interval, search_for_interval)
13696 (inc_interval_count, count_intervals, root_interval)
13697 (adjust_intervals_for_insertion, make_new_interval): Likewise.
13698 * lread.c (defalias): Likewise.
13699 * ralloc.c (r_alloc_check): Likewise.
13700 * regex.c (set_image_of_range_1, set_image_of_range)
13701 (regex_grow_registers): Likewise.
13702 * sysdep.c (strerror): Likewise.
13703 * termcap.c (valid_filename_p, tprint, main): Likewise.
13704 * tparam.c (main): Likewise.
13705 * unexhp9k800.c (run_time_remap, save_data_space)
13706 (update_file_ptrs, read_header, write_header, calculate_checksum)
13707 (copy_file, copy_rest, display_header): Likewise.
13708 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
13709 Likewise.
13710 * xdisp.c (check_it): Likewise.
13711 * xfaces.c (register_color, unregister_color, unregister_colors):
13712 Likewise.
13713 * xfns.c (print_fontset_result): Likewise.
13714 * xrdb.c (member, fatal, main): Likewise.
13715
13716 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
13717
13718 Fix minor problems found by static checking (Bug#9031).
13719 * chartab.c (char_table_set_range, map_sub_char_table):
13720 Remove unused locals.
13721 (uniprop_table): Now static.
13722 * composite.c (_work_char): Remove unused static var.
13723
13724 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
13725
13726 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
13727
13728 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
13729
13730 * gtkutil.c (qttip_cb): Remove code without function.
13731
13732 2011-07-09 Eli Zaretskii <eliz@gnu.org>
13733
13734 * w32.c (pthread_sigmask): New stub.
13735
13736 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
13737
13738 Use pthread_sigmask, not sigprocmask (Bug#9010).
13739 sigprocmask is portable only for single-threaded applications, and
13740 Emacs can be multi-threaded when it uses GTK.
13741 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
13742 (LIBES): Use it.
13743 * callproc.c (Fcall_process):
13744 * process.c (create_process):
13745 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
13746 Use pthread_sigmask, not sigprocmask.
13747
13748 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13749
13750 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
13751 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
13752 wrong (Bug#8591).
13753
13754 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13755
13756 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
13757 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
13758 (xg_hide_tooltip): Fix comment.
13759
13760 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
13761 in registerServicesMenuSendTypes.
13762 (validRequestorForSendType): Don't check ns_return_types.
13763
13764 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
13765 ns_return_type.
13766
13767 2011-07-08 Jason Rumney <jasonr@gnu.org>
13768
13769 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
13770 SH_SHOW for hidden windows (Bug#5482).
13771
13772 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
13773 frame struct members of non-existent frames (Bug#6284).
13774
13775 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
13776
13777 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
13778 variable firstTime not needed on OSX >= 10.6.
13779 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
13780 >= 10.5. Use setKnobProportion, setDoubleValue.
13781
13782 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
13783 (MAC_OS_X_VERSION_10_5): Define if not defined.
13784 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
13785 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
13786 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
13787
13788 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
13789 cString and lossyCString on OSX >= 10.4.
13790
13791 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
13792 sizeToFit on OSX >= 10.2.
13793
13794 * nsimage.m (allocInitFromFile): Don't use deprecated method
13795 bestRepresentationForDevice on OSX >= 10.6.
13796
13797 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
13798 to avoid warning.
13799
13800 * emacs.c: Declare unexec_init_emacs_zone.
13801
13802 * nsgui.h: Fix compiler warning about gnulib redefining verify.
13803
13804 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
13805
13806 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
13807 on svcsMenu (Bug#8842).
13808
13809 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
13810 ns_return_types.
13811 (Fns_list_services): Just return Qnil on 10.6, code not working there.
13812
13813 * nsterm.m (QUTF8_STRING): Declare.
13814 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
13815 (validRequestorForSendType): Return type is (id).
13816 Change indexOfObjectIdenticalTo to indexOfObject.
13817 Check if we have local selection before returning self (Bug#8842).
13818 (writeSelectionToPasteboard): Put local selection into paste board
13819 if we have a local selection (Bug#8842).
13820 (syms_of_nsterm): DEFSYM QUTF8_STRING.
13821
13822 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
13823 (ns_get_local_selection): Declare.
13824
13825 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
13826
13827 * keymap.c (describe_map_tree): Don't insert a double newline at
13828 the end of the buffer (bug#1169) and return whether we inserted
13829 something.
13830
13831 * callint.c (Fcall_interactively): Change "reading args" to
13832 "providing args" to try to clarify what it does (bug#1010).
13833
13834 2011-07-07 Kenichi Handa <handa@m17n.org>
13835
13836 * composite.c (composition_compute_stop_pos): Ignore a static
13837 composition starting before CHARPOS (Bug#8915).
13838
13839 * xdisp.c (handle_composition_prop): Likewise.
13840
13841 2011-07-07 Eli Zaretskii <eliz@gnu.org>
13842
13843 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
13844 (Bug#9015)
13845
13846 2011-07-07 Kenichi Handa <handa@m17n.org>
13847
13848 * character.h (unicode_category_t): New enum type.
13849
13850 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
13851 (Qchar_code_property_table): New variable.
13852 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
13853 (UNIPROP_COMPRESSED_FORM_P): New macros.
13854 (char_table_ascii): Uncompress the compressed values.
13855 (sub_char_table_ref): New arg is_uniprop. Callers changed.
13856 Uncompress the compressed values.
13857 (sub_char_table_ref_and_range): Likewise.
13858 (char_table_ref_and_range): Uncompress the compressed values.
13859 (sub_char_table_set): New arg is_uniprop. Callers changed.
13860 Uncompress the compressed values.
13861 (sub_char_table_set_range): Args changed. Callers changed.
13862 (char_table_set_range): Adjuted for the above change.
13863 (map_sub_char_table): Delete args default_val and parent. Add arg
13864 top. Give decoded values to a Lisp function.
13865 (map_char_table): Adjust for the above change. Give decoded
13866 values to a Lisp function. Gcpro more variables.
13867 (uniprop_table_uncompress)
13868 (uniprop_decode_value_run_length): New functions.
13869 (uniprop_decoder, uniprop_decoder_count): New variables.
13870 (uniprop_get_decoder, uniprop_encode_value_character)
13871 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
13872 New functions.
13873 (uniprop_encoder, uniprop_encoder_count): New variables.
13874 (uniprop_get_encoder, uniprop_table)
13875 (Funicode_property_table_internal, Fget_unicode_property_internal)
13876 (Fput_unicode_property_internal): New functions.
13877 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
13878 Sunicode_property_table_internal, Sget_unicode_property_internal,
13879 and Sput_unicode_property_internal. Defvar_lisp
13880 char-code-property-alist.
13881
13882 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
13883 Vunicode_category_table.
13884
13885 * font.c (font_range): Adjust for the change of
13886 Vunicode_category_table.
13887
13888 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
13889
13890 * m/iris4d.h: Remove file, move contents ...
13891 * s/irix6-5.h: ... here.
13892
13893 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
13894
13895 Remove unportable assumption about struct layout (Bug#8884).
13896 * alloc.c (mark_buffer):
13897 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
13898 (clone_per_buffer_values): Don't assume that
13899 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
13900 This isn't true in general, and it's particularly not true
13901 if Emacs is configured with --with-wide-int.
13902 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
13903 New macros, used in the buffer.c change.
13904
13905 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
13906
13907 * xsettings.c: Use both GConf and GSettings if both are available.
13908 (store_config_changed_event): Add comment.
13909 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
13910 (store_tool_bar_style_changed): New functions.
13911 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
13912 (struct xsettings): Move font inside HAVE_XFT.
13913 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
13914 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
13915 Move inside HAVE_XFT.
13916 (something_changed_gsettingsCB): Rename from something_changedCB.
13917 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
13918 also.
13919 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
13920 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
13921 (something_changed_gconfCB): Rename from something_changedCB.
13922 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
13923 (parse_settings): Move check for font inside HAVE_XFT.
13924 (read_settings, apply_xft_settings): Add comment.
13925 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
13926 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
13927 call store_font_name_changed.
13928 (xft_settings_event): Add comment.
13929 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
13930 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
13931 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
13932 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
13933 (xsettings_initialize): Call init_gsettings last.
13934 (xsettings_get_system_font, xsettings_get_system_normal_font):
13935 Add comment.
13936
13937 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
13938
13939 Random fixes. E.g., (random) never returned negative values.
13940 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
13941 subseconds part to the entropy, as that's a bit more random.
13942 Prefer signed to unsigned, since the signedness doesn't matter and
13943 in general we prefer signed. When given a limit, use a
13944 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
13945 latter isn't right if USE_2_TAGS_FOR_INTS.
13946 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
13947 not 0..VALMASK. Don't discard "excess" bits that random () returns.
13948
13949 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
13950
13951 * textprop.c (text_property_stickiness):
13952 Obey Vtext_property_default_nonsticky.
13953 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
13954 * w32fns.c (syms_of_w32fns):
13955 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
13956
13957 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13958
13959 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
13960 This is more efficient than Ffile_directory_p and avoids a minor race.
13961
13962 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
13963
13964 * buffer.c (Foverlay_put): Say what the return value is
13965 (bug#7835).
13966
13967 * fileio.c (barf_or_query_if_file_exists): Check first if the file
13968 is a directory before asking whether to use the file name
13969 (bug#7564).
13970 (barf_or_query_if_file_exists): Make the "File is a directory"
13971 error be more correct.
13972
13973 * fns.c (Frequire): Remove the mention of the .gz files, since
13974 that's installation-specific, but keep the mention of
13975 `get-load-suffixes'.
13976
13977 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
13978
13979 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
13980 Report string overflow if the output is too long.
13981
13982 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
13983
13984 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
13985 (syms_of_gnutls): Remove duplicate DEFSYM for
13986 Qgnutls_bootprop_verify_hostname_error, an error for
13987 Qgnutls_bootprop_verify_error (which is no longer used).
13988
13989 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
13990 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
13991 Also (re)move comments that are misplaced or no longer relevant.
13992
13993 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
13994
13995 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
13996
13997 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
13998
13999 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
14000 and background color parameters if they have been changed.
14001
14002 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
14003
14004 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
14005
14006 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
14007
14008 * xsettings.c (SYSTEM_FONT): Define only when used.
14009 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
14010
14011 * keymap.c (access_keymap_1): Now static.
14012
14013 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
14014
14015 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
14016 leave any prefix arg for the up event (Bug#1586).
14017
14018 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
14019
14020 * lread.c (syms_of_lread): Mention single symbols defined by
14021 `defvar' or `defconst' (bug#7154).
14022
14023 * fns.c (Frequire): Mention .el.gz files (bug#7314).
14024 (Frequire): Mention get-load-suffixes.
14025
14026 2011-07-02 Martin Rudalics <rudalics@gmx.at>
14027
14028 * window.h (window): Remove clone_number slot.
14029 * window.c (Fwindow_clone_number, Fset_window_clone_number):
14030 Remove.
14031 (make_parent_window, make_window, saved_window)
14032 (Fset_window_configuration, save_window_save): Don't deal with
14033 clone numbers.
14034 * buffer.c (Qclone_number): Remove declaration.
14035 (sort_overlays, overlay_strings): Don't deal with clone numbers.
14036
14037 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
14038
14039 Add multiple inheritance to keymaps.
14040 * keymap.c (Fmake_composed_keymap): New function.
14041 (Fset_keymap_parent): Simplify.
14042 (fix_submap_inheritance): Remove.
14043 (access_keymap_1): New function extracted from access_keymap to handle
14044 embedded parents and handle lists of maps.
14045 (access_keymap): Use it.
14046 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
14047 (Fcopy_keymap): Handle embedded parents.
14048 (Fcommand_remapping, define_as_prefix): Simplify.
14049 (Fkey_binding): Simplify.
14050 (syms_of_keymap): Move minibuffer-local-completion-map,
14051 minibuffer-local-filename-completion-map,
14052 minibuffer-local-must-match-map, and
14053 minibuffer-local-filename-must-match-map to Elisp.
14054 (syms_of_keymap): Defsubr make-composed-keymap.
14055 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
14056 (parse_menu_item): Trivial simplification.
14057
14058 2011-07-01 Glenn Morris <rgm@gnu.org>
14059
14060 * Makefile.in (SETTINGS_LIBS): Fix typo.
14061
14062 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14063
14064 * coding.c (Fencode_coding_string): Record the last coding system
14065 used, as the function doc string says (bug#8738).
14066
14067 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
14068
14069 * xsettings.c (store_monospaced_changed): Take new font as arg and
14070 check for change against current_mono_font.
14071 (EMACS_TYPE_SETTINGS): Remove this and related defines.
14072 (emacs_settings_constructor, emacs_settings_get_property)
14073 (emacs_settings_set_property, emacs_settings_class_init)
14074 (emacs_settings_init, gsettings_obj): Remove.
14075 (something_changedCB): New function for HAVE_GSETTINGS.
14076 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
14077 with value as argument.
14078 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
14079 g_settings_new (Bug#8967). Do not create gsettings_obj.
14080 Remove calls to g_settings_bind. Connect something_changedCB to
14081 "changed".
14082
14083 * xgselect.c: Add defined (HAVE_GSETTINGS).
14084 (xgselect_initialize): Ditto.
14085
14086 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
14087 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
14088 xg_select.
14089
14090 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
14091
14092 * eval.c (struct backtrace): Simplify and port the data structure.
14093 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
14094 signed bit field, as this assumption is not portable and it makes
14095 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
14096 "char debug_on_exit : 1" as this is not portable either; instead,
14097 use the portable "unsigned int debug_on_exit : 1". Remove unused
14098 member evalargs. Remove obsolete comments about cc bombing out.
14099
14100 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
14101
14102 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
14103 Let HAVE_GSETTINGS override HAVE_GCONF.
14104 (store_monospaced_changed): New function.
14105 (EMACS_SETTINGS): A new type derived from GObject to handle
14106 GSettings notifications.
14107 (emacs_settings_constructor, emacs_settings_get_property)
14108 (emacs_settings_set_property, emacs_settings_class_init):
14109 New functions.
14110 (gsettings_client, gsettings_obj): New variables.
14111 (GSETTINGS_SCHEMA): New define.
14112 (something_changedCB): Call store_monospaced_changed.
14113 (init_gsettings): New function.
14114 (xsettings_initialize): Call init_gsettings.
14115 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
14116 to NULL.
14117
14118 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
14119 GCONF_CFLAGS/LIBS.
14120
14121 2011-06-29 Martin Rudalics <rudalics@gmx.at>
14122
14123 * window.c (resize_root_window, grow_mini_window)
14124 (shrink_mini_window): Rename Qresize_root_window to
14125 Qwindow_resize_root_window and Qresize_root_window_vertically to
14126 Qwindow_resize_root_window_vertically.
14127
14128 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
14129
14130 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
14131
14132 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
14133
14134 * makefile.w32-in: Redesign dependencies so they reflect more
14135 clearly which files are directly included by each source file,
14136 and not through other includes.
14137
14138 2011-06-27 Martin Rudalics <rudalics@gmx.at>
14139
14140 * buffer.c (Qclone_number): Declare static and DEFSYM it.
14141 (sort_overlays, overlay_strings): When an overlay's clone number
14142 matches the window's clone number process the overlay even if
14143 the overlay's window property doesn't match the current window.
14144
14145 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
14146 (Fwindow_hchild): Rename to Fwindow_left_child.
14147 (Fwindow_next): Rename to Fwindow_next_sibling.
14148 (Fwindow_prev): Rename to Fwindow_prev_sibling.
14149 (resize_window_check): Rename to window_resize_check.
14150 (resize_window_apply): Rename to window_resize_apply.
14151 (Fresize_window_apply): Rename to Fwindow_resize_apply.
14152 (Fdelete_other_windows_internal, resize_frame_windows)
14153 (Fsplit_window_internal, Fdelete_window_internal)
14154 (grow_mini_window, shrink_mini_window)
14155 (Fresize_mini_window_internal): Fix callers accordingly.
14156
14157 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
14158
14159 * emacsgtkfixed.h: State that this is only used with Gtk+3.
14160 (emacs_fixed_set_min_size): Remove.
14161 (emacs_fixed_new): Take frame as argument.
14162
14163 * emacsgtkfixed.c: State that this is only used with Gtk+3.
14164 (_EmacsFixedPrivate): Remove minwidth/height.
14165 Add struct frame *f.
14166 (emacs_fixed_init): Initialize priv->f.
14167 (get_parent_class, emacs_fixed_set_min_size): Remove.
14168 (emacs_fixed_new): Set priv->f to argument.
14169 (emacs_fixed_get_preferred_width)
14170 (emacs_fixed_get_preferred_height): Use min_width/height from
14171 frames size_hint to set minimum and natural (Bug#8919).
14172 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
14173 and use min_width/height from frames size_hint to set
14174 min_width/height (Bug#8919).
14175
14176 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
14177 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
14178 Fix indentation.
14179
14180 2011-06-26 Eli Zaretskii <eliz@gnu.org>
14181
14182 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
14183 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
14184 called at ZV.
14185
14186 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
14187
14188 * process.c (wait_reading_process_output): Bypass select if
14189 waiting for a cell while ignoring keyboard input, and input is
14190 pending. Suggested by Jan Djärv (Bug#8869).
14191
14192 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
14193
14194 Use gnulib's dup2 module instead of rolling our own.
14195 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
14196
14197 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14198
14199 * dispnew.c (scrolling_window): Before scrolling, turn off a
14200 mouse-highlight in the window being scrolled.
14201
14202 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
14203
14204 Move DEFSYM to lisp.h and use everywhere.
14205
14206 * character.h (DEFSYM): Move declaration...
14207 * lisp.h (DEFSYM): ...here.
14208
14209 * gnutls.c:
14210 * minibuf.c:
14211 * w32menu.c:
14212 * w32proc.c:
14213 * w32select.c: Don't include character.h.
14214
14215 * alloc.c (syms_of_alloc):
14216 * buffer.c (syms_of_buffer):
14217 * bytecode.c (syms_of_bytecode):
14218 * callint.c (syms_of_callint):
14219 * casefiddle.c (syms_of_casefiddle):
14220 * casetab.c (init_casetab_once):
14221 * category.c (init_category_once, syms_of_category):
14222 * ccl.c (syms_of_ccl):
14223 * cmds.c (syms_of_cmds):
14224 * composite.c (syms_of_composite):
14225 * dbusbind.c (syms_of_dbusbind):
14226 * dired.c (syms_of_dired):
14227 * dispnew.c (syms_of_display):
14228 * doc.c (syms_of_doc):
14229 * editfns.c (syms_of_editfns):
14230 * emacs.c (syms_of_emacs):
14231 * eval.c (syms_of_eval):
14232 * fileio.c (syms_of_fileio):
14233 * fns.c (syms_of_fns):
14234 * frame.c (syms_of_frame):
14235 * fringe.c (syms_of_fringe):
14236 * insdel.c (syms_of_insdel):
14237 * keymap.c (syms_of_keymap):
14238 * lread.c (init_obarray, syms_of_lread):
14239 * macros.c (syms_of_macros):
14240 * msdos.c (syms_of_msdos):
14241 * print.c (syms_of_print):
14242 * process.c (syms_of_process):
14243 * search.c (syms_of_search):
14244 * sound.c (syms_of_sound):
14245 * syntax.c (init_syntax_once, syms_of_syntax):
14246 * terminal.c (syms_of_terminal):
14247 * textprop.c (syms_of_textprop):
14248 * undo.c (syms_of_undo):
14249 * w32.c (globals_of_w32):
14250 * window.c (syms_of_window):
14251 * xdisp.c (syms_of_xdisp):
14252 * xfaces.c (syms_of_xfaces):
14253 * xfns.c (syms_of_xfns):
14254 * xmenu.c (syms_of_xmenu):
14255 * xsettings.c (syms_of_xsettings):
14256 * xterm.c (syms_of_xterm): Use DEFSYM.
14257
14258 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
14259
14260 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
14261
14262 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
14263
14264 Integer and buffer overflow fixes (Bug#8873).
14265
14266 * print.c (printchar, strout): Check for string overflow.
14267 (PRINTPREPARE, printchar, strout):
14268 Don't set size unless allocation succeeds.
14269
14270 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
14271 for sizes. Check for string overflow more accurately.
14272 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
14273
14274 * macros.c: Integer and buffer overflow fixes.
14275 * keyboard.h (struct keyboard.kbd_macro_bufsize):
14276 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
14277 Use ptrdiff_t, not int, for sizes.
14278 Don't increment bufsize until after realloc succeeds.
14279 Check for size-calculation overflow.
14280 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
14281
14282 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
14283
14284 * lread.c: Integer overflow fixes.
14285 (read_integer): Radix is now EMACS_INT, not int,
14286 to improve quality of diagnostics for out-of-range radices.
14287 Calculate buffer size correctly for out-of-range radices.
14288 (read1): Check for integer overflow in radices, and in
14289 read-circle numbers.
14290 (read_escape): Avoid int overflow.
14291 (Fload, openp, read_buffer_size, read1)
14292 (substitute_object_recurse, read_vector, read_list, map_obarray):
14293 Use ptrdiff_t, not int, for sizes.
14294 (read1): Use EMACS_INT, not int, for sizes.
14295 Check for size overflow.
14296
14297 * image.c (cache_image): Check for size arithmetic overflow.
14298
14299 * lread.c: Integer overflow issues.
14300 (saved_doc_string_size, saved_doc_string_length)
14301 (prev_saved_doc_string_size, prev_saved_doc_string_length):
14302 Now ptrdiff_t, not int.
14303 (read1): Don't assume doc string length fits in int. Check for
14304 out-of-range doc string lengths.
14305 (read_list): Don't assume file position fits in int.
14306 (read_escape): Check for hex character overflow.
14307
14308 2011-06-22 Leo Liu <sdl.web@gmail.com>
14309
14310 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
14311 Move to minibuffer.el.
14312
14313 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
14314
14315 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
14316 The following patches are for when GLYPH_DEBUG && !XASSERT.
14317 * dispextern.h (trace_redisplay_p, dump_glyph_string):
14318 * dispnew.c (flush_stdout):
14319 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
14320 Mark as externally visible.
14321 * dispnew.c (check_window_matrix_pointers): Now static.
14322 * dispnew.c (window_to_frame_vpos):
14323 * xfns.c (unwind_create_frame):
14324 * xterm.c (x_check_font): Remove unused local.
14325 * scroll.c (CHECK_BOUNDS):
14326 * xfaces.c (cache_fache): Rename local to avoid shadowing.
14327 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
14328 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
14329 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
14330 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
14331 Now static.
14332 (debug_method_add): Use va_list and vsprintf rather than relying
14333 on undefined behavior with wrong number of arguments.
14334 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
14335 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
14336 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
14337 since we're not interested in debugging glyphs with old libraries.
14338 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
14339 GCC 4.6.0's static checking.
14340
14341 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
14342
14343 Integer overflow and signedness fixes (Bug#8873).
14344 A few related buffer overrun fixes, too.
14345
14346 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
14347
14348 * dispextern.h (struct face.stipple):
14349 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
14350 (x_bitmap_mask, x_allocate_bitmap_record)
14351 (x_create_bitmap_from_data, x_create_bitmap_from_file)
14352 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
14353 (x_create_bitmap_from_xpm_data):
14354 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
14355 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
14356 (.bitmaps_last):
14357 * xfaces.c (load_pixmap):
14358 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
14359 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
14360 (.bitmaps_last, struct x_output.icon_bitmap):
14361 Use ptrdiff_t, not int, for bitmap indexes.
14362 (x_allocate_bitmap_record): Check for size overflow.
14363 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
14364
14365 Use ptrdiff_t, not int, for overlay counts.
14366 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
14367 * editfns.c (overlays_around, get_pos_property):
14368 * textprop.c (get_char_property_and_overlay):
14369 * xdisp.c (next_overlay_change, note_mouse_highlight):
14370 * xfaces.c (face_at_buffer_position):
14371 * buffer.c (OVERLAY_COUNT_MAX): New macro.
14372 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
14373 (Fnext_overlay_change, Fprevious_overlay_change)
14374 (mouse_face_overlay_overlaps, Foverlays_in):
14375 Use ptrdiff_t, not int, for sizes.
14376 (overlays_at, overlays_in): Check for size-calculation overflow.
14377
14378 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
14379
14380 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
14381 (x_session_initialize): Do not assume string length fits in int.
14382
14383 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
14384 This is unlikely, but can occur if DPI is outlandish.
14385
14386 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
14387 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
14388
14389 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
14390 * xrdb.c (magic_file_p, search_magic_path):
14391 Omit last arg SUFFIX; it was always 0. All callers changed.
14392 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
14393
14394 * xfont.c (xfont_match): Avoid need for strlen.
14395
14396 * xfns.c: Don't assume strlen fits in int.
14397 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
14398
14399 * xdisp.c (message_log_check_duplicate): Return intmax_t,
14400 not unsigned long, as we prefer signed integers. All callers changed.
14401 Detect integer overflow in repeat count.
14402 (message_dolog): Don't assume print length fits in 39 bytes.
14403 (display_mode_element): Don't assume strlen fits in int.
14404
14405 * termcap.c: Don't assume sizes fit in int and never overflow.
14406 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
14407 (gobble_line): Check for size-calculation overflow.
14408
14409 * minibuf.c (Fread_buffer):
14410 * lread.c (intern, intern_c_string):
14411 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
14412 Don't assume string length fits in int.
14413
14414 * keyboard.c (parse_tool_bar_item):
14415 * gtkutil.c (style_changed_cb): Avoid need for strlen.
14416
14417 * font.c: Don't assume string length fits in int.
14418 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
14419 Use ptrdiff_t, not int.
14420 (font_intern_prop): Don't assume string length fits in int.
14421 Don't assume integer property fits in fixnum.
14422 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
14423
14424 * filelock.c: Fix some buffer overrun and integer overflow issues.
14425 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
14426 Reformulate so as not to need the command string.
14427 Invoke gzip -cd rather than gunzip, as it's more portable.
14428 (lock_info_type, lock_file_1, lock_file):
14429 Don't assume pid_t and time_t fit in unsigned long.
14430 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
14431 (current_lock_owner): Prefer signed type for sizes.
14432 Use memcpy, not strncpy, where memcpy is what is really wanted.
14433 Don't assume (via atoi) that time_t and pid_t fit in int.
14434 Check for time_t and/or pid_t out of range, e.g., via a network share.
14435 Don't alloca where an auto var works fine.
14436
14437 * fileio.c: Fix some integer overflow issues.
14438 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
14439 Don't assume string length fits in int.
14440 (directory_file_name): Don't assume string length fits in long.
14441 (make_temp_name): Don't assume pid fits in int, or that its print
14442 length is less than 20.
14443
14444 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
14445
14446 * coding.c (make_subsidiaries): Don't assume string length fits in int.
14447
14448 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
14449
14450 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
14451 We prefer signed integers, even for size calculations.
14452
14453 * emacs.c: Don't assume string length fits in 'int'.
14454 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
14455 (main): Don't invoke strlen when not needed.
14456
14457 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
14458 (XD_DEBUG_MESSAGE): Don't waste a byte.
14459
14460 * callproc.c (getenv_internal_1, getenv_internal)
14461 (Fgetenv_internal):
14462 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
14463
14464 * lread.c (invalid_syntax): Omit length argument.
14465 All uses changed. This doesn't fix a bug, but it simplifies the
14466 code away from its former Hollerith-constant appearance, and it's
14467 one less 'int' to worry about when looking at integer-overflow issues.
14468 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
14469
14470 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
14471 This didn't break anything, but it didn't help either.
14472 It's confusing to put a bogus integer in a place where the actual
14473 value does not matter.
14474 (LIST_END_P): Remove unused macro and its bogus comment.
14475 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
14476
14477 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
14478 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
14479 implementation.
14480 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
14481 We prefer signed types, and the value cannot exceed the EMACS_INT
14482 range anyway (because otherwise the length would not be representable).
14483 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
14484 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
14485 This avoids a GCC warning when WIDE_EMACS_INT.
14486
14487 * indent.c (sane_tab_width): New function.
14488 (current_column, scan_for_column, Findent_to, position_indentation)
14489 (compute_motion): Use it. This is just for clarity.
14490 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
14491
14492 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
14493
14494 * lisp.h (lint_assume): New macro.
14495 * composite.c (composition_gstring_put_cache):
14496 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
14497
14498 * editfns.c, insdel.c:
14499 Omit unnecessary forward decls, to simplify future changes.
14500
14501 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
14502
14503 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
14504
14505 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
14506 Use much-faster test for byte-length change.
14507 Don't assume string byte-length fits in 'int'.
14508 Check that character arg fits in 'int'.
14509 (mapcar1): Declare byte as byte, for clarity.
14510
14511 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
14512
14513 * fns.c (concat): Catch string overflow earlier.
14514 Do not rely on integer wraparound.
14515
14516 * dispextern.h (struct it.overlay_strings_charpos)
14517 (struct it.selective): Now EMACS_INT, not int.
14518 * xdisp.c (forward_to_next_line_start)
14519 (back_to_previous_visible_line_start)
14520 (reseat_at_next_visible_line_start, next_element_from_buffer):
14521 Don't arbitrarily truncate the value of 'selective' to int.
14522
14523 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
14524
14525 * composite.c: Don't truncate sizes to 'int'.
14526 (composition_gstring_p, composition_reseat_it)
14527 (composition_adjust_point): Use EMACS_INT, not int.
14528 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
14529 not EMACS_UINT, for indexes.
14530
14531 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
14532
14533 * buffer.c: Include <verify.h>.
14534 (struct sortvec.priority, struct sortstr.priority):
14535 Now EMACS_INT, not int.
14536 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
14537 (struct sortstr.size, record_overlay_string)
14538 (struct sortstrlist.size, struct sortlist.used):
14539 Don't truncate size to int.
14540 (record_overlay_string): Check for size-calculation overflow.
14541 (init_buffer_once): Check at compile-time, not run-time.
14542
14543 2011-06-22 Jim Meyering <meyering@redhat.com>
14544
14545 Don't leak an XBM-image-sized buffer
14546 * image.c (xbm_load): Free the image buffer after using it.
14547
14548 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
14549
14550 Port to Sun C.
14551 * composite.c (find_automatic_composition): Omit needless 'return 0;'
14552 that Sun C diagnosed.
14553 * fns.c (secure_hash): Fix pointer signedness issue.
14554 * intervals.c (static_offset_intervals): New function.
14555 (offset_intervals): Use it.
14556
14557 2011-06-21 Leo Liu <sdl.web@gmail.com>
14558
14559 * deps.mk (fns.o):
14560 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
14561 sha512.h.
14562
14563 * fns.c (secure_hash): Rename from crypto_hash_function and change
14564 the first arg to accept symbols.
14565 (Fsecure_hash): New primitive.
14566 (syms_of_fns): New symbols.
14567
14568 2011-06-20 Deniz Dogan <deniz@dogan.se>
14569
14570 * process.c (Fset_process_buffer): Clarify return value in
14571 docstring.
14572
14573 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
14574
14575 * dispnew.c (add_window_display_history): Use BVAR.
14576
14577 * xdisp.c (debug_method_add): Use BVAR.
14578 (check_window_end, dump_glyph_matrix, dump_glyph)
14579 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
14580
14581 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
14582 Likewise.
14583
14584 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
14585 check till after the cache is created in init_frame_faces.
14586
14587 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
14588
14589 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
14590
14591 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
14592
14593 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
14594 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
14595 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
14596
14597 Improve buffer-overflow checking (Bug#8873).
14598 * fileio.c (Finsert_file_contents):
14599 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
14600 Remove the old (too-loose) buffer overflow checks.
14601 They weren't needed, since make_gap checks for buffer overflow.
14602 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
14603 The old code merely checked for Emacs fixnum overflow, and relied
14604 on undefined (wraparound) behavior. The new code avoids undefined
14605 behavior, and also checks for ptrdiff_t and/or size_t overflow.
14606
14607 * editfns.c (Finsert_char): Don't dump core with very negative counts.
14608 Tune. Don't use wider integers than needed. Don't use alloca.
14609 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
14610
14611 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
14612
14613 * insdel.c, lisp.h (buffer_overflow): New function.
14614 (insert_from_buffer_1, replace_range, replace_range_2):
14615 * insdel.c (make_gap_larger):
14616 * editfns.c (Finsert_char):
14617 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
14618
14619 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
14620
14621 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
14622
14623 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
14624
14625 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
14626 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
14627
14628 * fileio.c: Don't assume EMACS_INT fits in off_t.
14629 (emacs_lseek): New static function.
14630 (Finsert_file_contents, Fwrite_region): Use it.
14631 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
14632
14633 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
14634
14635 * fns.c: Don't overflow int when computing a list length.
14636 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
14637 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
14638 truncation on 64-bit hosts. Check for QUIT every
14639 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
14640 faster and is responsive enough.
14641 (Flength): Report an error instead of overflowing an integer.
14642 (Fsafe_length): Return a float if the value is not representable
14643 as a fixnum. This shouldn't happen except in contrived situations.
14644 (Fnthcdr, Fsort): Don't assume list length fits in int.
14645 (Fcopy_sequence): Don't assume vector length fits in int.
14646
14647 * alloc.c: Check that resized vectors' lengths fit in fixnums.
14648 (header_size, word_size): New constants.
14649 (allocate_vectorlike): Don't check size overflow here.
14650 (allocate_vector): Check it here instead, since this is the only
14651 caller of allocate_vectorlike that could cause overflow.
14652 Check that the new vector's length is representable as a fixnum.
14653
14654 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
14655 The previous code was bogus. For example, next_almost_prime (32)
14656 returned 39, which is undesirable as it is a multiple of 3; and
14657 next_almost_prime (24) returned 25, which is a multiple of 5 so
14658 why was the code bothering to check for multiples of 7?
14659
14660 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
14661
14662 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
14663
14664 Variadic C functions now count arguments with ptrdiff_t.
14665 This partly undoes my 2011-03-30 change, which replaced int with size_t.
14666 Back then I didn't know that the Emacs coding style prefers signed int.
14667 Also, in the meantime I found a few more instances where arguments
14668 were being counted with int, which may truncate counts on 64-bit
14669 machines, or EMACS_INT, which may be unnecessarily wide.
14670 * lisp.h (struct Lisp_Subr.function.aMANY)
14671 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
14672 Arg counts are now ptrdiff_t, not size_t.
14673 All variadic functions and their callers changed accordingly.
14674 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
14675 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
14676 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
14677 * callint.c (Fcall_interactively): Check arg count for overflow,
14678 to avoid potential buffer overrun. Use signed char, not 'int',
14679 for 'varies' array, so that we needn't bother to check its size
14680 calculation for overflow.
14681 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
14682 * eval.c (apply_lambda):
14683 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
14684 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
14685 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
14686
14687 * callint.c (Fcall_interactively): Don't use index var as event count.
14688
14689 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
14690 * mem-limits.h (SIZE): Remove; no longer used.
14691
14692 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
14693
14694 Remove unnecessary casts.
14695 * xterm.c (x_term_init):
14696 * xfns.c (x_set_border_pixel):
14697 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
14698 These aren't needed now that we assume ANSI C.
14699
14700 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
14701 It's more likely to cause problems (due to unsigned overflow)
14702 than to cure them.
14703
14704 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
14705
14706 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
14707
14708 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
14709
14710 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
14711
14712 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
14713
14714 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
14715
14716 GLYPH_CODE_FACE returns EMACS_INT, not int.
14717 * dispextern.h (merge_faces):
14718 * xfaces.c (merge_faces):
14719 * xdisp.c (get_next_display_element, next_element_from_display_vector):
14720 Don't assume EMACS_INT fits in int.
14721
14722 * character.h (CHAR_VALID_P): Remove unused parameter.
14723 * fontset.c, lisp.h, xdisp.c: All uses changed.
14724
14725 * editfns.c (Ftranslate_region_internal): Omit redundant test.
14726
14727 * fns.c (concat): Minor tuning based on overflow analysis.
14728 This doesn't fix any bugs. Use int to hold character, instead
14729 of constantly refetching from Emacs object. Use XFASTINT, not
14730 XINT, for value known to be a character. Don't bother comparing
14731 a single byte to 0400, as it's always less.
14732
14733 * floatfns.c (Fexpt):
14734 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
14735
14736 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
14737 for characters.
14738
14739 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
14740
14741 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
14742 Without this fix, on a 64-bit host (aset S 0 4294967386) would
14743 incorrectly succeed when S was a string, because 4294967386 was
14744 truncated before it was used.
14745
14746 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
14747 Otherwise, an out-of-range integer could cause undefined behavior
14748 on a 64-bit host.
14749
14750 * composite.c: Use int, not EMACS_INT, for characters.
14751 (fill_gstring_body, composition_compute_stop_pos): Use int, not
14752 EMACS_INT, for values that are known to be in character range.
14753 This doesn't fix any bugs but is the usual style inside Emacs and
14754 may generate better code on 32-bit machines.
14755
14756 Make sure a 64-bit char is never passed to ENCODE_CHAR.
14757 This is for reasons similar to the recent CHAR_STRING fix.
14758 * charset.c (Fencode_char): Check that character arg is actually
14759 a character. Pass an int to ENCODE_CHAR.
14760 * charset.h (ENCODE_CHAR): Verify that the character argument is no
14761 wider than 'int', as a compile-time check to prevent future regressions
14762 in this area.
14763
14764 * character.c (char_string): Remove unnecessary casts.
14765
14766 Make sure a 64-bit char is never passed to CHAR_STRING.
14767 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
14768 by silently ignoring the top 32 bits, allowing some values
14769 that were far too large to be valid characters.
14770 * character.h: Include <verify.h>.
14771 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
14772 arguments are no wider than unsigned, as a compile-time check
14773 to prevent future regressions in this area.
14774 * data.c (Faset):
14775 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
14776 (Fsubst_char_in_region):
14777 * fns.c (concat):
14778 * xdisp.c (decode_mode_spec_coding):
14779 Adjust to CHAR_STRING's new requirement.
14780 * editfns.c (Finsert_char, Fsubst_char_in_region):
14781 * fns.c (concat): Check that character args are actually
14782 characters. Without this test, these functions did the wrong
14783 thing with wildly out-of-range values on 64-bit hosts.
14784
14785 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
14786 These casts should not be needed on 32-bit hosts, either.
14787 * keyboard.c (read_char):
14788 * lread.c (Fload): Remove casts to unsigned.
14789
14790 * lisp.h (UNSIGNED_CMP): New macro.
14791 This fixes comparison bugs on 64-bit hosts.
14792 (ASCII_CHAR_P): Use it.
14793 * casefiddle.c (casify_object):
14794 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
14795 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
14796 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
14797 * dispextern.h (FACE_FROM_ID):
14798 * keyboard.c (read_char): Use UNSIGNED_CMP.
14799
14800 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
14801 not to EMACS_INT, to avoid GCC warning.
14802
14803 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
14804
14805 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
14806 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
14807 isn't needed on 32-bit machines.
14808
14809 * buffer.c (Fgenerate_new_buffer_name):
14810 Use EMACS_INT for count, not int.
14811 (advance_to_char_boundary): Return EMACS_INT, not int.
14812
14813 * data.c (Qcompiled_function): Now static.
14814
14815 * window.c (window_body_lines): Now static.
14816
14817 * image.c (gif_load): Rename local to avoid shadowing.
14818
14819 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
14820 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
14821 * alloc.c (make_save_value): Integer argument is now of type
14822 ptrdiff_t, not int.
14823 (mark_object): Use ptrdiff_t, not int.
14824 * lisp.h (pD): New macro.
14825 * print.c (print_object): Use it.
14826
14827 * alloc.c: Use EMACS_INT, not int, to count objects.
14828 (total_conses, total_markers, total_symbols, total_vector_size)
14829 (total_free_conses, total_free_markers, total_free_symbols)
14830 (total_free_floats, total_floats, total_free_intervals)
14831 (total_intervals, total_strings, total_free_strings):
14832 Now EMACS_INT, not int. All uses changed.
14833 (Fgarbage_collect): Compute overall total using a double, so that
14834 integer overflow is less likely to be a problem. Check for overflow
14835 when converting back to an integer.
14836 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
14837 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
14838 These were 'int' variables that could overflow on 64-bit hosts;
14839 they were never used, so remove them instead of repairing them.
14840 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
14841 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
14842 Previously, this ceilinged at INT_MAX, but that doesn't work on
14843 64-bit machines.
14844 (allocate_pseudovector): Don't use EMACS_INT when int would do.
14845
14846 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
14847 (allocate_vectorlike): Check for ptrdiff_t overflow.
14848 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
14849 when a (possibly-narrower) signed value would do just as well.
14850 We prefer using signed arithmetic, to avoid comparison confusion.
14851
14852 * alloc.c: Catch some string size overflows that we were missing.
14853 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
14854 for convenience in STRING_BYTES_MAX.
14855 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
14856 The definition here is exact; the one in lisp.h was approximate.
14857 (allocate_string_data): Check for string overflow. This catches
14858 some instances we weren't catching before. Also, it catches
14859 size_t overflow on (unusual) hosts where SIZE_MAX <= min
14860 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
14861 and ptrdiff_t and EMACS_INT are both 64 bits.
14862
14863 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
14864 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
14865 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
14866
14867 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
14868
14869 * alloc.c (Fmake_string): Check for out-of-range init.
14870
14871 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
14872
14873 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
14874
14875 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
14876
14877 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
14878 xg_get_default_scrollbar_width.
14879
14880 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
14881 (int_gtk_range_get_value): Move to the scroll bar part of the file.
14882 (style_changed_cb): Call update_theme_scrollbar_width and call
14883 x_set_scroll_bar_default_width and xg_frame_set_char_size for
14884 all frames (Bug#8505).
14885 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
14886 Call gtk_window_set_resizable if HAVE_GTK3.
14887 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
14888 and height if HAVE_GTK3 (Bug#8505).
14889 (scroll_bar_width_for_theme): New variable.
14890 (update_theme_scrollbar_width): New function.
14891 (xg_get_default_scrollbar_width): Move code to
14892 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
14893 (xg_initialize): Call update_theme_scrollbar_width.
14894
14895 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
14896
14897 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
14898
14899 2011-06-12 Martin Rudalics <rudalics@gmx.at>
14900
14901 * frame.c (make_frame): Call other_buffer_safely instead of
14902 other_buffer.
14903
14904 * window.c (temp_output_buffer_show): Call display_buffer with
14905 second argument Vtemp_buffer_show_specifiers and reset latter
14906 immediately after the call.
14907 (Vtemp_buffer_show_specifiers): New variable.
14908 (auto_window_vscroll_p, next_screen_context_lines)
14909 (Vscroll_preserve_screen_position): Remove leading asterisks from
14910 doc-strings.
14911
14912 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
14913
14914 Fix minor problems found by GCC 4.6.0 static checking.
14915 * buffer.c (Qclone_number): Remove for now, as it's unused.
14916 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
14917 (record_buffer): Remove unused local.
14918 * frame.c (other_visible_frames, frame_buffer_list): Now static.
14919 (set_frame_buffer_list): Remove; unused.
14920 * frame.h (other_visible_frames): Remove decl.
14921 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
14922 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
14923 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
14924 if HAVE_GPM.
14925 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
14926 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
14927 Define only if HAVE_GPM.
14928 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
14929 (update_hints_inhibit): Remove; never set. All uses removed.
14930 * widgetprv.h (emacsFrameClassRec): Remove decl.
14931 * window.c (delete_deletable_window): Now returns void, since it
14932 wasn't returning anything.
14933 (compare_window_configurations): Remove unused locals.
14934 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
14935 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
14936 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
14937 the same widths as pointers. This follows up on the 2011-05-06 patch.
14938 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
14939 * xterm.h: Likewise.
14940 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
14941
14942 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
14943
14944 * makefile.w32-in: Update dependencies.
14945 (LISP_H): Add lib/intprops.h.
14946
14947 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
14948
14949 * image.c (gif_load): Add animation frame delay to the metadata.
14950 (syms_of_image): Use DEFSYM. New symbol `delay'.
14951
14952 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14953
14954 * window.c (delete_deletable_window): Re-add.
14955 (Fset_window_configuration): Rewrite to handle dead buffers and
14956 consequently deletable windows.
14957 (window_tree, Fwindow_tree): Remove. Supply functionality in
14958 window.el.
14959 (compare_window_configurations): Simplify code.
14960
14961 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
14962
14963 * image.c (imagemagick_load_image): Fix type mismatch.
14964 (Fimagemagick_types): Likewise.
14965
14966 * window.h (replace_buffer_in_windows): Declare.
14967
14968 2011-06-11 Martin Rudalics <rudalics@gmx.at>
14969
14970 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
14971 Qclone_number. Remove external declaration of Qdelete_window.
14972 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
14973 code.
14974 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
14975 Run Qbuffer_list_update_hook if allowed.
14976 (Fother_buffer): Rewrite doc-string. Major rewrite for new
14977 buffer list implementation.
14978 (other_buffer_safely): New function.
14979 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
14980 calls to replace_buffer_in_windows and
14981 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
14982 if allowed.
14983 (record_buffer): Inhibit quitting and rewrite using quittable
14984 functions. Run Qbuffer_list_update_hook if allowed.
14985 (Frecord_buffer, Funrecord_buffer): New functions.
14986 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
14987 Move switch-to-buffer to window.el.
14988 (bury-buffer): Move to window.el.
14989 (Vbuffer_list_update_hook): New variable.
14990
14991 * lisp.h (other_buffer_safely): Add prototype in buffer.c
14992 section.
14993
14994 * window.h (resize_frame_windows): Move up in code.
14995 (Fwindow_frame): Remove EXFUN.
14996 (replace_buffer_in_all_windows): Remove prototype.
14997 (replace_buffer_in_windows_safely): Add prototype.
14998
14999 * window.c: Declare Qdelete_window static again. Move down
15000 declaration of select_count.
15001 (Fnext_window, Fprevious_window): Rewrite doc-strings.
15002 (Fother_window): Move to window.el.
15003 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
15004 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
15005 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
15006 window.el.
15007 (replace_buffer_in_windows): Implement by calling
15008 Qreplace_buffer_in_windows.
15009 (replace_buffer_in_all_windows): Remove with some functionality
15010 moved into replace_buffer_in_windows_safely.
15011 (replace_buffer_in_windows_safely): New function.
15012 (select_window_norecord, select_frame_norecord): Move in front
15013 of run_window_configuration_change_hook. Remove now obsolete
15014 declarations.
15015 (Fset_window_buffer): Rewrite doc-string.
15016 Call Qrecord_window_buffer.
15017 (keys_of_window): Move binding for other-window to window.el.
15018
15019 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
15020
15021 * dispextern.h (struct image): Replace data member, whose int_val
15022 and ptr_val fields were not used by anything, with a single
15023 lisp_val object.
15024
15025 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
15026 (gif_clear_image, gif_load, imagemagick_load_image)
15027 (gs_clear_image, gs_load): Callers changed.
15028
15029 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
15030
15031 * buffer.h: Include <time.h>, for time_t.
15032 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
15033
15034 Fix minor problems found by static checking.
15035
15036 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
15037
15038 Make identifiers static if they are not used in other modules.
15039 * data.c (Qcompiled_function, Qframe, Qvector):
15040 * image.c (QimageMagick, Qsvg):
15041 * minibuf.c (Qmetadata):
15042 * window.c (resize_window_check, resize_root_window): Now static.
15043 * window.h (resize_window_check, resize_root_window): Remove decls.
15044
15045 * window.c (window_deletion_count, delete_deletable_window):
15046 Remove; unused.
15047 (window_body_lines): Now static.
15048 (Fdelete_other_windows_internal): Mark vars as initialized.
15049 Make sure 'resize_failed' is initialized.
15050 (run_window_configuration_change_hook): Rename local to avoid shadowing.
15051 (resize_window_apply): Remove unused local.
15052 * window.h (delete_deletable_window): Remove decl.
15053
15054 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
15055 (imagemagick_load_image): Fix pointer signedness problem by changing
15056 last arg from unsigned char * to char *. All uses changed.
15057 Also, fix a local for similar reasons.
15058 Remove unused locals. Remove locals to avoid shadowing.
15059 (fn_rsvg_handle_free): Remove; unused.
15060 (svg_load, svg_load_image): Fix pointer signedness problem.
15061 (imagemagick_load_image): Don't use garbage pointer image_wand.
15062
15063 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
15064
15065 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
15066
15067 * image.c (gif_load): Fix omitted cast error introduced by
15068 2011-06-06 change.
15069
15070 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15071
15072 * window.h (resize_proportionally, orig_total_lines)
15073 (orig_top_line): Remove from window structure.
15074 (set_window_height, set_window_width, change_window_heights)
15075 (Fdelete_window): Remove prototypes.
15076 (resize_frame_windows): Remove duplicate declaration.
15077
15078 2011-06-10 Eli Zaretskii <eliz@gnu.org>
15079
15080 * window.h (resize_frame_windows, resize_window_check)
15081 (delete_deletable_window, resize_root_window)
15082 (resize_frame_windows): Declare prototypes.
15083
15084 * window.c (resize_window_apply): Make definition be "static" to
15085 match the prototype.
15086
15087 2011-06-10 Martin Rudalics <rudalics@gmx.at>
15088
15089 * window.c: Remove declarations of Qwindow_size_fixed,
15090 window_min_size_1, window_min_size_2, window_min_size,
15091 size_window, window_fixed_size_p, enlarge_window, delete_window.
15092 Remove static from declaration of Qdelete_window, it's
15093 temporarily needed by Fbury_buffer.
15094 (replace_window): Don't assign orig_top_line and
15095 orig_total_lines.
15096 (Fdelete_window, delete_window): Remove. Window deletion is
15097 handled by window.el.
15098 (window_loop): Remove DELETE_OTHER_WINDOWS case.
15099 Replace Fdelete_window calls with calls to Qdelete_window.
15100 (Fdelete_other_windows): Remove. Deleting other windows is
15101 handled by window.el.
15102 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
15103 handled in window.el.
15104 (window_min_size_2, window_min_size_1, window_min_size): Remove.
15105 Window minimum sizes are handled in window.el.
15106 (shrink_windows, size_window, set_window_height)
15107 (set_window_width, change_window_heights, window_height)
15108 (window_width, CURBEG, CURSIZE, enlarge_window)
15109 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
15110 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
15111 handled in window.el.
15112 (make_dummy_parent): Rename to make_parent_window and give it a
15113 second argument horflag.
15114 (make_window): Don't set resize_proportionally any more.
15115 (Fsplit_window): Remove. Windows are split in window.el.
15116 (save_restore_action, save_restore_orig_size)
15117 (shrink_window_lowest_first, save_restore_orig_size): Remove.
15118 Resize mini windows in window.el.
15119 (grow_mini_window, shrink_mini_window): Implement by calling
15120 Qresize_root_window_vertically, resize_window_check and
15121 resize_window_apply.
15122 (saved_window, Fset_window_configuration, save_window_save):
15123 Do not handle orig_top_line, orig_total_lines, and
15124 resize_proportionally.
15125 (window_min_height, window_min_width): Move to window.el.
15126 (keys_of_window): Move bindings for delete-other-windows,
15127 split-window, delete-window and enlarge-window to window.el.
15128
15129 * buffer.c: Temporarily extern Qdelete_window.
15130 (Fbury_buffer): Temporarily call Qdelete_window instead of
15131 Fdelete_window (Fbury_buffer will move to window.el soon).
15132
15133 * frame.c (set_menu_bar_lines_1): Remove code handling
15134 orig_top_line and orig_total_lines.
15135
15136 * dispnew.c (adjust_frame_glyphs_initially): Don't use
15137 set_window_height but set heights directly.
15138 (change_frame_size_1): Use resize_frame_windows.
15139
15140 * xdisp.c (init_xdisp): Don't use set_window_height but set
15141 heights directly.
15142
15143 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
15144 Use resize_frame_windows instead of change_window_heights and run
15145 run_window_configuration_change_hook.
15146
15147 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
15148 instead of change_window_heights and run
15149 run_window_configuration_change_hook.
15150
15151 2011-06-09 Martin Rudalics <rudalics@gmx.at>
15152
15153 * window.c (replace_window): Rename second argument REPLACEMENT to
15154 NEW. New third argument SETFLAG. Rewrite.
15155 (delete_window, make_dummy_parent): Call replace_window with
15156 third argument 1.
15157 (window_list_1): Move down in code.
15158 (run_window_configuration_change_hook): Move set_buffer part
15159 before select_frame_norecord part in order to unwind correctly.
15160 Rename count1 to count.
15161 (recombine_windows, delete_deletable_window, resize_root_window)
15162 (Fdelete_other_windows_internal)
15163 (Frun_window_configuration_change_hook, make_parent_window)
15164 (resize_window_check, resize_window_apply, Fresize_window_apply)
15165 (resize_frame_windows, Fsplit_window_internal)
15166 (Fdelete_window_internal, Fresize_mini_window_internal):
15167 New functions.
15168 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
15169
15170 2011-06-08 Martin Rudalics <rudalics@gmx.at>
15171
15172 * window.h (window): Add some new members to window structure -
15173 normal_lines, normal_cols, new_total, new_normal, clone_number,
15174 splits, nest, prev_buffers, next_buffers.
15175 (WINDOW_TOTAL_SIZE): Move here from window.c.
15176 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
15177
15178 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
15179 Remove.
15180 (make_dummy_parent): Set new members of windows structure.
15181 (make_window): Move down in code. Handle new members of window
15182 structure.
15183 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
15184 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
15185 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
15186 (Fset_window_prev_buffers, Fwindow_next_buffers)
15187 (Fset_window_next_buffers, Fset_window_clone_number):
15188 New functions.
15189 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
15190 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
15191 Doc-string fixes.
15192 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
15193 Argument WINDOW can be now internal window too.
15194 (Fwindow_use_time): Move up in code.
15195 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
15196 Rewrite doc-string.
15197 (Fset_window_configuration, saved_window)
15198 (Fcurrent_window_configuration, save_window_save): Handle new
15199 members of window structure.
15200 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
15201 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
15202 (syms_of_window): New Lisp objects Qrecord_window_buffer,
15203 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
15204 Qget_mru_window, Qresize_root_window,
15205 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
15206 Qauto_buffer_name; staticpro them.
15207
15208 2011-06-07 Martin Rudalics <rudalics@gmx.at>
15209
15210 * window.c (Fwindow_total_size, Fwindow_left_column)
15211 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
15212 (Fwindow_list_1): New functions.
15213 (window_box_text_cols): Replace with window_body_cols.
15214 (Fwindow_width, Fscroll_left, Fscroll_right):
15215 Use window_body_cols instead of window_box_text_cols.
15216 (delete_window, Fset_window_configuration):
15217 Call delete_all_subwindows with window as argument.
15218 (delete_all_subwindows): Take a window as argument and not a
15219 structure. Rewrite.
15220 (window_loop): Remove handling of GET_LRU_WINDOW and
15221 GET_LARGEST_WINDOW.
15222 (Fget_lru_window, Fget_largest_window): Move to window.el.
15223
15224 * window.h: Extern window_body_cols instead of
15225 window_box_text_cols. delete_all_subwindows now takes a
15226 Lisp_Object as argument.
15227
15228 * indent.c (compute_motion, Fcompute_motion):
15229 Use window_body_cols instead of window_box_text_cols.
15230
15231 * frame.c (delete_frame): Call delete_all_subwindows with root
15232 window as argument.
15233
15234 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
15235
15236 * fns.c (Fputhash): Document return value.
15237
15238 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
15239
15240 * image.c (gif_load): Implement gif89a spec "no disposal" method.
15241
15242 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15243
15244 Cons<->int and similar integer overflow fixes (Bug#8794).
15245
15246 Check for overflow when converting integer to cons and back.
15247 * charset.c (Fdefine_charset_internal, Fdecode_char):
15248 Use cons_to_unsigned to catch overflow.
15249 (Fencode_char): Use INTEGER_TO_CONS.
15250 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
15251 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
15252 * data.c (long_to_cons, cons_to_long): Remove.
15253 (cons_to_unsigned, cons_to_signed): New functions.
15254 These signal an error for invalid or out-of-range values.
15255 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
15256 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
15257 * font.c (Ffont_variation_glyphs):
15258 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
15259 * lisp.h: Include <intprops.h>.
15260 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
15261 (cons_to_signed, cons_to_unsigned): New decls.
15262 (long_to_cons, cons_to_long): Remove decls.
15263 * undo.c (record_first_change): Use INTEGER_TO_CONS.
15264 (Fprimitive_undo): Use CONS_TO_INTEGER.
15265 * xfns.c (Fx_window_property): Likewise.
15266 * xselect.c: Include <limits.h>.
15267 (x_own_selection, selection_data_to_lisp_data):
15268 Use INTEGER_TO_CONS.
15269 (x_handle_selection_request, x_handle_selection_clear)
15270 (x_get_foreign_selection, Fx_disown_selection_internal)
15271 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
15272 (lisp_data_to_selection_data): Use cons_to_unsigned.
15273 (x_fill_property_data): Use cons_to_signed.
15274 Report values out of range.
15275
15276 Check for buffer and string overflow more precisely.
15277 * buffer.h (BUF_BYTES_MAX): New macro.
15278 * lisp.h (STRING_BYTES_MAX): New macro.
15279 * alloc.c (Fmake_string):
15280 * character.c (string_escape_byte8):
15281 * coding.c (coding_alloc_by_realloc):
15282 * doprnt.c (doprnt):
15283 * editfns.c (Fformat):
15284 * eval.c (verror):
15285 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
15286 since they may not be the same number.
15287 * editfns.c (Finsert_char):
15288 * fileio.c (Finsert_file_contents):
15289 Likewise for BUF_BYTES_MAX.
15290
15291 * image.c: Use ptrdiff_t, not int, for sizes.
15292 (slurp_file): Switch from int to ptrdiff_t.
15293 All uses changed.
15294 (slurp_file): Check that file size fits in both size_t (for
15295 malloc) and ptrdiff_t (for sanity and safety).
15296
15297 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
15298 if b->modtime has its maximal value.
15299
15300 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
15301
15302 Don't assume time_t can fit into int.
15303 * buffer.h (struct buffer.modtime): Now time_t, not int.
15304 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
15305 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
15306
15307 Minor fixes for signed vs unsigned integers.
15308 * character.h (MAYBE_UNIFY_CHAR):
15309 * charset.c (maybe_unify_char):
15310 * keyboard.c (read_char, reorder_modifiers):
15311 XINT -> XFASTINT, since the integer must be nonnegative.
15312 * ftfont.c (ftfont_spec_pattern):
15313 * keymap.c (access_keymap, silly_event_symbol_error):
15314 XUINT -> XFASTINT, since the integer must be nonnegative.
15315 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
15316 since it makes no difference and we prefer signed.
15317 * keyboard.c (record_char): Use XUINT when all the neighbors do.
15318 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
15319 nonnegative.
15320
15321 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
15322
15323 * window.h (Fwindow_frame): Declare.
15324
15325 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15326
15327 * alloc.c: Simplify handling of large-request failures (Bug#8800).
15328 (SPARE_MEMORY): Always define.
15329 (LARGE_REQUEST): Remove.
15330 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
15331
15332 2011-06-06 Martin Rudalics <rudalics@gmx.at>
15333
15334 * lisp.h: Move EXFUNS for Fframe_root_window,
15335 Fframe_first_window and Fset_frame_selected_window to window.h.
15336
15337 * window.h: Move EXFUNS for Fframe_root_window,
15338 Fframe_first_window and Fset_frame_selected_window here from
15339 lisp.h.
15340
15341 * frame.c (Fwindow_frame, Fframe_first_window)
15342 (Fframe_root_window, Fframe_selected_window)
15343 (Fset_frame_selected_window): Move to window.c.
15344 (Factive_minibuffer_window): Move to minibuf.c.
15345 (Fother_visible_frames_p): New function.
15346
15347 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
15348
15349 * window.c (decode_window, decode_any_window): Move up in code.
15350 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
15351 (inhibit_frame_unsplittable): Remove unused variable.
15352 (Fwindow_buffer): Move up and rewrite doc-string.
15353 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
15354 (Fwindow_prev): New functions.
15355 (Fwindow_frame): Move here from frame.c. Accept any window as
15356 argument.
15357 (Fframe_root_window, Fframe_first_window)
15358 (Fframe_selected_window): Move here from frame.c. Accept frame
15359 or arbitrary window as argument. Update doc-strings.
15360 (Fminibuffer_window): Move up in code.
15361 (Fwindow_minibuffer_p): Move up in code and simplify.
15362 (Fset_frame_selected_window): Move here from frame.c.
15363 Marginal rewrite.
15364 (Fselected_window, select_window, Fselect_window): Move up in
15365 code. Minor doc-string fixes.
15366
15367 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
15368
15369 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
15370 Do not assume that spare memory exists; that assumption is valid
15371 only if SYSTEM_MALLOC.
15372 (LARGE_REQUEST): New macro, so that the issue of large requests
15373 is separated from the issue of spare memory.
15374
15375 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
15376
15377 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
15378 format. (Bug#8806)
15379
15380 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
15381
15382 * xfns.c (x_set_scroll_bar_default_width): Move declarations
15383 before statements.
15384
15385 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
15386
15387 * gtkutil.c (xg_get_default_scrollbar_width): New function.
15388
15389 * gtkutil.h: Declare xg_get_default_scrollbar_width.
15390
15391 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
15392 min width by calling x_set_scroll_bar_default_width (Bug#8505).
15393
15394 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
15395
15396 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
15397
15398 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
15399
15400 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
15401 (x_clipboard_manager_save): Add return value.
15402 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
15403 New error handlers.
15404 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
15405 Obey Vx_select_enable_clipboard_manager. Catch errors in
15406 x_clipboard_manager_save (Bug#8779).
15407 (Vx_select_enable_clipboard_manager): New variable.
15408 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
15409
15410 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
15411
15412 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
15413
15414 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15415
15416 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
15417 in the current matrix if keep_current_p is non-zero.
15418
15419 2011-06-04 Eli Zaretskii <eliz@gnu.org>
15420
15421 * bidi.c (bidi_level_of_next_char): Fix last change.
15422
15423 2011-06-03 Eli Zaretskii <eliz@gnu.org>
15424
15425 Support bidi reordering of text covered by display properties.
15426
15427 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
15428 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
15429 (bidi_cache_search, bidi_cache_iterator_state)
15430 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
15431 (bidi_level_of_next_char, bidi_move_to_visually_next):
15432 Support character positions inside a run of characters covered by a
15433 display string.
15434 (bidi_paragraph_init, bidi_resolve_explicit_1)
15435 (bidi_level_of_next_char): Call bidi_fetch_char and
15436 bidi_fetch_char_advance instead of FETCH_CHAR and
15437 FETCH_CHAR_ADVANCE.
15438 (bidi_init_it): Initialize new members.
15439 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
15440 definitions.
15441 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
15442 instead of using explicit *_CHAR codes.
15443 (bidi_resolve_explicit, bidi_resolve_weak):
15444 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
15445 bidirectional text is supported only in multibyte buffers.
15446 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
15447 it to initialize the frame_window_p member of struct bidi_it.
15448 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
15449 (bidi_resolve_explicit, bidi_resolve_weak)
15450 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
15451 bidi_it->nchars is non-positive.
15452 (bidi_level_of_next_char): Don't try to lookup the cache for the
15453 next/previous character if nothing is cached there yet, or if we
15454 were just reseat()'ed to a new position.
15455
15456 * xdisp.c (set_cursor_from_row): Set start and stop points
15457 according to the row's direction when priming the loop that looks
15458 for the glyph on which to display cursor.
15459 (single_display_spec_intangible_p): Function deleted.
15460 (display_prop_intangible_p): Reimplement to call
15461 handle_display_spec instead of single_display_spec_intangible_p.
15462 Accept 3 additional arguments needed by handle_display_spec.
15463 This fixes incorrect cursor motion across display property with complex
15464 values: lists, `(when COND...)' forms, etc.
15465 (single_display_spec_string_p): Support property values that are
15466 lists with the argument STRING its top-level element.
15467 (display_prop_string_p): Fix the condition for processing a
15468 property that is a list to be consistent with handle_display_spec.
15469 (handle_display_spec): New function, refactored from the
15470 last portion of handle_display_prop.
15471 (compute_display_string_pos): Accept additional argument
15472 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
15473 value of a `display' property is a "replacing spec".
15474 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
15475 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
15476 the display property, but just return a value indicating whether
15477 the display property will replace the characters it covers.
15478 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
15479 frame_window_p members of struct bidi_it.
15480 (compute_display_string_pos, compute_display_string_end):
15481 New functions.
15482 (push_it): Accept second argument POSITION, where pop_it should
15483 jump to continue iteration.
15484 (reseat_1): Initialize bidi_it.disp_pos.
15485
15486 * keyboard.c (adjust_point_for_property): Adjust the call to
15487 display_prop_intangible_p to its new signature.
15488
15489 * dispextern.h (struct bidi_it): New member frame_window_p.
15490 (bidi_init_it): Update prototypes.
15491 (display_prop_intangible_p): Update prototype.
15492 (compute_display_string_pos, compute_display_string_end):
15493 Declare prototypes.
15494 (struct bidi_it): New members nchars and disp_pos. ch_len is now
15495 EMACS_INT.
15496
15497 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
15498
15499 Malloc failure behavior now depends on size of allocation.
15500 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
15501 * lisp.h: Change signatures accordingly.
15502 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
15503 All callers changed. (Bug#8762)
15504
15505 * gnutls.c: Use Emacs's memory allocators.
15506 Without this change, the gnutls library would invoke malloc etc.
15507 directly, which causes problems on non-SYNC_INPUT hosts, and which
15508 runs afoul of improving memory_full behavior. (Bug#8761)
15509 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
15510 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
15511 xfree instead of the default malloc, realloc, free.
15512 (Fgnutls_boot): No need to check for memory allocation failure,
15513 since xmalloc does that for us.
15514
15515 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
15516 * category.c (hash_get_category_set):
15517 * ccl.c (ccl_driver):
15518 * charset.c (Fdefine_charset_internal):
15519 * charset.h (struct charset.hash_index):
15520 * composite.c (get_composition_id, gstring_lookup_cache)
15521 (composition_gstring_put_cache):
15522 * composite.h (struct composition.hash_index):
15523 * dispextern.h (struct image.hash):
15524 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
15525 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
15526 (hashfn_equal, hashfn_user_defined, make_hash_table)
15527 (maybe_resize_hash_table, hash_lookup, hash_put)
15528 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
15529 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
15530 (Fsxhash, Fgethash, Fputhash, Fmaphash):
15531 * image.c (make_image, search_image_cache, lookup_image)
15532 (xpm_put_color_table_h):
15533 * lisp.h (struct Lisp_Hash_Table):
15534 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
15535 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
15536 for hashes and hash indexes, instead of 'unsigned' and 'int'.
15537 * alloc.c (allocate_vectorlike):
15538 Check for overflow in vector size calculations.
15539 * ccl.c (ccl_driver):
15540 Check for overflow when converting EMACS_INT to int.
15541 * fns.c, image.c: Remove unnecessary static decls that would otherwise
15542 need to be updated by these changes.
15543 * fns.c (make_hash_table, maybe_resize_hash_table):
15544 Check for integer overflow with large hash tables.
15545 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
15546 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
15547 (SXHASH_REDUCE): New macro.
15548 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
15549 Use it instead of discarding useful hash info with large hash values.
15550 (sxhash_float): New function.
15551 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
15552 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
15553 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
15554 Rewrite to use FIXNUM_BITS, as this simplifies things.
15555 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
15556 Adjust signatures to match updated version of code.
15557 (consing_since_gc): Now EMACS_INT, since a single hash table can
15558 use more than INT_MAX bytes.
15559
15560 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
15561
15562 Make it possible to build with GCC-4.6+ -O2 -flto.
15563
15564 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
15565
15566 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
15567
15568 * minibuf.c (get_minibuffer, read_minibuf_unwind):
15569 Call minibuffer-inactive-mode.
15570
15571 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
15572
15573 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
15574 Update dependencies.
15575
15576 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15577
15578 * data.c (init_data): Remove code for UTS, this system is not
15579 supported anymore.
15580
15581 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15582
15583 Don't force ./temacs to start in terminal mode.
15584
15585 * frame.c (make_initial_frame): Initialize faces in all cases, not
15586 only when CANNOT_DUMP is defined.
15587 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
15588
15589 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15590
15591 * dispnew.c (add_window_display_history): Use const for the string
15592 pointer. Remove declaration, not needed.
15593
15594 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
15595
15596 Use 'inline', not 'INLINE'.
15597 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
15598 * alloc.c, fontset.c (INLINE): Remove.
15599 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
15600 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
15601 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
15602 * gmalloc.c (register_heapinfo): Use inline unconditionally.
15603 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
15604
15605 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
15606
15607 Make it possible to run ./temacs.
15608
15609 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
15610 syms_of_callproc does the same thing. Remove test for
15611 "initialized", do it in the caller.
15612 * emacs.c (main): Avoid calling set_initial_environment when dumping.
15613
15614 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
15615
15616 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
15617 (read_minibuf): Use get_minibuffer.
15618 (syms_of_minibuf): Use DEFSYM.
15619 (Qmetadata): New var.
15620 * data.c (Qbuffer): Don't make it static.
15621 (syms_of_data): Use DEFSYM.
15622
15623 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
15624
15625 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
15626 (CCL_CODE_MIN): New macro.
15627
15628 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
15629
15630 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
15631
15632 * eval.c (Qdebug): Now static.
15633 * lisp.h (Qdebug): Remove decl. This reverts a part of the
15634 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
15635 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
15636
15637 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15638
15639 * image.c: Various fixes to ImageMagick code comments.
15640 (Fimagemagick_types): Doc fix.
15641
15642 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
15643
15644 Minor fixes prompted by GCC 4.6.0 warnings.
15645
15646 * xselect.c (converted_selections, conversion_fail_tag): Now static.
15647
15648 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
15649 (x_clipboard_manager_save_all): Move extern decl to ...
15650 * xterm.h: ... here, so that it can be checked for consistency.
15651
15652 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
15653
15654 * xselect.c (x_clipboard_manager_save_frame)
15655 (x_clipboard_manager_save_all): New functions.
15656 (Fx_clipboard_manager_save): Lisp function deleted.
15657
15658 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
15659 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
15660
15661 * xterm.h: Update prototype.
15662
15663 2011-05-28 William Xu <william.xwl@gmail.com>
15664
15665 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
15666 exiting (Bug#8239).
15667
15668 2011-05-28 Jim Meyering <meyering@redhat.com>
15669
15670 Avoid a sign-extension bug in crypto_hash_function.
15671 * fns.c (to_uchar): Define.
15672 (crypto_hash_function): Use it to convert some newly-signed
15673 variables to unsigned, to avoid sign-extension bugs. For example,
15674 without this change, (md5 "truc") would evaluate to
15675 45723a2aff78ff4fff7fff1114760e62 rather than the expected
15676 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
15677 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
15678
15679 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
15680
15681 Integer overflow fixes.
15682
15683 * dbusbind.c: Serial number integer overflow fixes.
15684 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
15685 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
15686 to hold a serial number that is too large for a fixnum.
15687 (Fdbus_method_return_internal, Fdbus_method_error_internal):
15688 Check for serial numbers out of range. Decode any serial number
15689 that was so large that it became a float. (Bug#8722)
15690
15691 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
15692 (Fdbus_call_method, Fdbus_call_method_asynchronously):
15693 Use XFASTINT rather than XUINT when numbers are nonnegative.
15694 (xd_append_arg, Fdbus_method_return_internal):
15695 (Fdbus_method_error_internal): Likewise. Also, for unsigned
15696 arguments, check that Lisp number is nonnegative, rather than
15697 silently wrapping negative numbers around. (Bug#8722)
15698 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
15699 (Bug#8722)
15700
15701 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
15702
15703 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
15704
15705 ccl: Add integer overflow checks.
15706 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
15707 (IN_INT_RANGE): New macros.
15708 (ccl_driver): Use them to check for integer overflow when
15709 decoding a CCL program. Many of the new checks are whether XINT (x)
15710 fits in int; it doesn't always, on 64-bit hosts. The new version
15711 doesn't catch all possible integer overflows, but it's an
15712 improvement. (Bug#8719)
15713
15714 * alloc.c (make_event_array): Use XINT, not XUINT.
15715 There's no need for unsigned here.
15716
15717 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
15718 This follows up to the 2011-05-06 change that substituted uintptr_t
15719 for EMACS_INT. This case wasn't caught back then.
15720
15721 Rework Fformat to avoid integer overflow issues.
15722 * editfns.c: Include <float.h> unconditionally, as it's everywhere
15723 now (part of C89). Include <verify.h>.
15724 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
15725 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
15726 (Fformat): Avoid the prepass trying to compute sizes; it was only
15727 approximate and thus did not catch overflow reliably. Instead, walk
15728 through the format just once, formatting and computing sizes as we go,
15729 checking for integer overflow at every step, and allocating a larger
15730 buffer as needed. Keep track separately whether the format is
15731 multibyte. Keep only the most-recently calculated precision, rather
15732 than them all. Record whether each argument has been converted to
15733 string. Use EMACS_INT, not int, for byte and char and arg counts.
15734 Support field widths and precisions larger than INT_MAX. Avoid
15735 sprintf's undefined behavior with conversion specifications such as %#d
15736 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
15737 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
15738 formatting out-of-range floating point numbers with int
15739 formats. (Bug#8668)
15740
15741 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
15742
15743 * data.c: Avoid integer truncation in expressions involving floats.
15744 * data.c: Include <intprops.h>.
15745 (arith_driver): When there's an integer overflow in an expression
15746 involving floating point, convert the integers to floating point
15747 so that the resulting value does not suffer from catastrophic
15748 integer truncation. For example, on a 64-bit host (* 4
15749 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
15750 Do not rely on undefined behavior after integer overflow.
15751
15752 merge count_size_as_multibyte, parse_str_to_multibyte
15753 * character.c, character.h (count_size_as_multibyte):
15754 Rename from parse_str_to_multibyte; all uses changed.
15755 Check for integer overflow.
15756 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
15757 since it's now a duplicate of the other. This is more of
15758 a character than a buffer op, so better that it's in character.c.
15759 * fns.c, print.c: Adjust to above changes.
15760
15761 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
15762
15763 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
15764
15765 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
15766
15767 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
15768 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
15769 (x_clipboard_manager_save): Now static.
15770 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
15771
15772 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
15773 (crypto_hash_function): Now static.
15774 Fix pointer signedness problems. Avoid unnecessary initializations.
15775
15776 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
15777
15778 * termhooks.h (Vselection_alist): Make it terminal-local.
15779
15780 * terminal.c (create_terminal): Initialize it.
15781
15782 * xselect.c: Support for clipboard managers.
15783 (Vselection_alist): Move to termhooks.h as terminal-local var.
15784 (LOCAL_SELECTION): New macro.
15785 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
15786 (symbol_to_x_atom): Remove gratuitous arg.
15787 (x_handle_selection_request, lisp_data_to_selection_data)
15788 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
15789 (x_own_selection, x_get_local_selection, x_convert_selection):
15790 New arg, specifying work frame. Use terminal-local Vselection_alist.
15791 (some_frame_on_display): Delete unused function.
15792 (Fx_own_selection_internal, Fx_get_selection_internal)
15793 (Fx_disown_selection_internal, Fx_selection_owner_p)
15794 (Fx_selection_exists_p): New optional frame arg.
15795 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
15796 (x_handle_selection_clear): Don't treat other terminals with the
15797 same keyboard specially. Use the terminal-local Vselection_alist.
15798 (x_clear_frame_selections): Use Frun_hook_with_args.
15799
15800 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
15801
15802 * xterm.h: Add support for those atoms.
15803
15804 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
15805
15806 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
15807 (converted_selections, conversion_fail_tag): New global variables.
15808 (x_selection_request_lisp_error): Free the above.
15809 (x_get_local_selection): Remove unnecessary code.
15810 (x_reply_selection_request): Args changed; handle arbitrary array
15811 of converted selections stored in converted_selections.
15812 Separate the XChangeProperty and SelectionNotify steps.
15813 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
15814 (x_convert_selection): New function.
15815 (x_handle_selection_event): Simplify.
15816 (x_get_foreign_selection): Don't ignore incoming requests while
15817 waiting for an answer; this will fail when we implement
15818 SAVE_TARGETS, and seems unnecessary anyway.
15819 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
15820 (Vx_sent_selection_functions): Doc fix.
15821
15822 2011-05-26 Leo Liu <sdl.web@gmail.com>
15823
15824 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
15825
15826 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15827
15828 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
15829
15830 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
15831 for fringe update if it has periodic bitmap.
15832 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
15833 and fringe_bitmap_periodic_p.
15834
15835 * fringe.c (get_fringe_bitmap_data): New function.
15836 (draw_fringe_bitmap_1, update_window_fringes): Use it.
15837 (update_window_fringes): Record periodicity of fringe bitmap in glyph
15838 row. Mark glyph row for fringe update if periodicity changed.
15839
15840 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
15841 for fringe update unless it has periodic bitmap.
15842
15843 2011-05-25 Kenichi Handa <handa@m17n.org>
15844
15845 * xdisp.c (get_next_display_element): Set correct it->face_id for
15846 a static composition.
15847
15848 2011-05-24 Leo Liu <sdl.web@gmail.com>
15849
15850 * deps.mk (fns.o):
15851 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
15852
15853 * fns.c (crypto_hash_function, Fsha1): New function.
15854 (Fmd5): Use crypto_hash_function.
15855 (syms_of_fns): Add Ssha1.
15856
15857 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
15858
15859 * gnutls.c: Remove unused macros.
15860 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
15861 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
15862 Remove macros that are defined and never used.
15863 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
15864
15865 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15866
15867 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
15868 (Fx_get_selection_internal): Minor cleanup.
15869 (Fx_own_selection_internal): Rename arguments for consistency with
15870 select.el.
15871
15872 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
15873
15874 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
15875
15876 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
15877
15878 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
15879
15880 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15881
15882 * dispnew.c (scrolling_window): Don't exclude the case that the
15883 last enabled row in the desired matrix touches the bottom boundary.
15884
15885 2011-05-21 Glenn Morris <rgm@gnu.org>
15886
15887 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
15888 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
15889 and add some more files.
15890
15891 2011-05-20 Eli Zaretskii <eliz@gnu.org>
15892
15893 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
15894 report_file_error introduced by the change from 2011-05-07.
15895
15896 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
15897
15898 * systime.h (Time): Define only if emacs is defined.
15899 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
15900 where the include path doesn't have X11/X.h by default. See
15901 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
15902
15903 2011-05-20 Kenichi Handa <handa@m17n.org>
15904
15905 * composite.c (find_automatic_composition): Fix previous change.
15906
15907 2011-05-20 Glenn Morris <rgm@gnu.org>
15908
15909 * lisp.mk: New file, split from Makefile.in.
15910 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
15911 (shortlisp): Remove.
15912 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
15913
15914 2011-05-19 Glenn Morris <rgm@gnu.org>
15915
15916 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
15917 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
15918 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
15919 (lisp): Set the order to that of loadup.el.
15920 (shortlisp): Make it a copy of $lisp.
15921 (SOME_MACHINE_LISP): Remove.
15922 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
15923 Use just $shortlisp, not $SOME_MACHINE_LISP too.
15924
15925 2011-05-18 Kenichi Handa <handa@m17n.org>
15926
15927 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
15928 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
15929 (find_automatic_composition): Mostly rewrite for efficiency.
15930
15931 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
15932
15933 * makefile.w32-in: Update dependencies.
15934
15935 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
15936
15937 * menu.c: Include limits.h (fixes the MS-Windows build broken by
15938 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
15939
15940 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
15941
15942 Fix some integer overflow issues, such as string length overflow.
15943
15944 * insdel.c (count_size_as_multibyte): Check for string overflow.
15945
15946 * character.c (lisp_string_width): Check for string overflow.
15947 Use EMACS_INT, not int, for string indexes and lengths; in
15948 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
15949 the resulting string length overflows an EMACS_INT; instead,
15950 report a string overflow if no precision given. When checking for
15951 precision exhaustion, use a check that cannot possibly have
15952 integer overflow. (Bug#8675)
15953 * character.h (lisp_string_width): Adjust to new signature.
15954
15955 * alloc.c (string_overflow): New function.
15956 (Fmake_string): Use it. This doesn't change behavior, but saves
15957 a few bytes and will simplify future changes.
15958 * character.c (string_escape_byte8): Likewise.
15959 * lisp.h (string_overflow): New decl.
15960
15961 Fixups, following up to the user-interface timestamp change.
15962 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
15963 for UI timestamps, instead of unsigned long.
15964 * msdos.c (mouse_get_pos): Likewise.
15965 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
15966 * w32gui.h (Time): Define by including "systime.h" rather than by
15967 declaring it ourselves. (Bug#8664)
15968
15969 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
15970 * image.c (clear_image_cache): Likewise.
15971
15972 * term.c (term_mouse_position): Don't assume time_t wraparound.
15973
15974 Be more systematic about user-interface timestamps.
15975 Before, the code sometimes used 'Time', sometimes 'unsigned long',
15976 and sometimes 'EMACS_UINT', to represent these timestamps.
15977 This change causes it to use 'Time' uniformly, as that's what X uses.
15978 This makes the code easier to follow, and makes it easier to catch
15979 integer overflow bugs such as Bug#8664.
15980 * frame.c (Fmouse_position, Fmouse_pixel_position):
15981 Use Time, not unsigned long, for user-interface timestamps.
15982 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
15983 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
15984 * keyboard.h (last_event_timestamp): Likewise.
15985 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
15986 * menu.h (xmenu_show): Likewise.
15987 * term.c (term_mouse_position): Likewise.
15988 * termhooks.h (struct input_event.timestamp): Likewise.
15989 (struct terminal.mouse_position_hook): Likewise.
15990 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
15991 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
15992 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
15993 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
15994 what it was before.
15995 * menu.h, termhooks.h: Include "systime.h", for Time.
15996
15997 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
15998 Don't assume that the difference between two unsigned long values
15999 can fit into an integer. At this point, we know button_down_time
16000 <= event->timestamp, so the difference must be nonnegative, so
16001 there's no need to cast the result if double-click-time is
16002 nonnegative, as it should be; check that it's nonnegative, just in
16003 case. This bug is triggered when events are more than 2**31 ms
16004 apart (about 25 days). (Bug#8664)
16005
16006 * xselect.c (last_event_timestamp): Remove duplicate decl.
16007 (x_own_selection): Remove needless cast to unsigned long.
16008
16009 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
16010 that always fit in int. Use a sentinel instead of a counter, to
16011 avoid a temp and to allay GCC's concerns about possible int overflow.
16012 * frame.h (struct frame): Use int for menu_bar_items_used
16013 instead of EMACS_INT, since it always fits in int.
16014
16015 * menu.c (grow_menu_items): Check for int overflow.
16016
16017 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
16018
16019 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
16020 Before, the code was not consistent. These values cannot exceed
16021 2**31 - 1 so there's no need to make them unsigned.
16022 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
16023 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
16024 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
16025 as modifiers.
16026 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
16027
16028 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
16029 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
16030 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
16031 presumably because the widths might not match.
16032
16033 * window.c (size_window): Avoid needless test at loop start.
16034
16035 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
16036
16037 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
16038
16039 2011-05-12 Drew Adams <drew.adams@oracle.com>
16040
16041 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
16042
16043 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16044
16045 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
16046 `width' to `bar_area_x' and `bar_area_width', respectively.
16047 (x_scroll_run): Take account of fringe background extension.
16048
16049 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
16050 Rename local vars `left' and `width' to `bar_area_x' and
16051 `bar_area_width', respectively.
16052 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
16053 background extension.
16054
16055 2011-05-10 Jim Meyering <meyering@redhat.com>
16056
16057 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
16058
16059 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
16060
16061 * image.c (Finit_image_library): Return t for built-in image types,
16062 like pbm and xbm. (Bug#8640)
16063
16064 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
16065
16066 * w32menu.c (set_frame_menubar): Fix submenu allocation.
16067
16068 2011-05-07 Eli Zaretskii <eliz@gnu.org>
16069
16070 * w32console.c (Fset_screen_color): Doc fix.
16071 (Fget_screen_color): New function.
16072 (syms_of_ntterm): Defsubr it.
16073
16074 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
16075 unlink the temporary file if Fcall_process didn't create it in the
16076 first place.
16077 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
16078 child process will be redirected to a file specified with `:file'.
16079 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
16080 cue to call_process_cleanup not to close that handle.
16081
16082 2011-05-07 Ben Key <bkey76@gmail.com>
16083
16084 * makefile.w32-in: The bootstrap-temacs rule now makes use of
16085 one of two shell specific rules, either bootstrap-temacs-CMD or
16086 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
16087 to the previous implementation of the bootstrap-temacs rule.
16088 The bootstrap-temacs-CMD rule is similar to the previous
16089 implementation of the bootstrap-temacs rule except that it
16090 makes use of the ESC_CFLAGS variable instead of the CFLAGS
16091 variable.
16092
16093 These changes, along with some changes to nt/configure.bat,
16094 nt/gmake.defs, and nt/nmake.defs, are required to extend my
16095 earlier fix to add support for --cflags and --ldflags options
16096 that include quotes so that it works whether make uses cmd or
16097 sh as the shell.
16098
16099 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
16100
16101 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
16102 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
16103 is a constant.
16104 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
16105 a string. Handle both cases.
16106 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
16107 (Fdbus_register_method): Use Qinvalid_function.
16108
16109 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16110
16111 * makefile.w32-in: Update dependencies.
16112 (LISP_H): Add inttypes.h and stdin.h.
16113 (PROCESS_H): Add unistd.h.
16114
16115 2011-05-06 Eli Zaretskii <eliz@gnu.org>
16116
16117 * lread.c: Include limits.h (fixes the MS-Windows build broken by
16118 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
16119
16120 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
16121
16122 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
16123
16124 * term.c (vfatal): Remove stray call to va_end.
16125 It's not needed and the C Standard doesn't allow it here anyway.
16126
16127 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
16128 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
16129
16130 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
16131 bytes.
16132
16133 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
16134
16135 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16136
16137 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
16138
16139 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
16140
16141 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
16142
16143 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
16144 * charset.c (Fdefine_charset_internal): Don't initialize
16145 charset.code_space[15]. The value was garbage, on hosts with
16146 32-bit int (Bug#8600).
16147
16148 * lread.c (read_integer): Be more consistent with string-to-number.
16149 Use string_to_number to do the actual conversion; this avoids
16150 rounding errors and fixes some other screwups. Without this fix,
16151 for example, #x1fffffffffffffff was misread as -2305843009213693952.
16152 (digit_to_number): Move earlier, for benefit of read_integer.
16153 Return -1 if the digit is out of range for the base, -2 if it is
16154 not a digit in any supported base. (Bug#8602)
16155
16156 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
16157
16158 * dispnew.c (scrolling_window): Return 1 if we scrolled,
16159 to match comment at start of function. This also removes a
16160 GCC warning about overflow in a 32+64-bit port.
16161
16162 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
16163
16164 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
16165 Reported by Stefan Monnier in
16166 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
16167 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
16168 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
16169
16170 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
16171 (EMACS_UINTPTR): Likewise, with uintptr_t.
16172
16173 * lisp.h: Prefer 64-bit EMACS_INT if available.
16174 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
16175 on 32-bit hosts that have 64-bit int, so that they can access
16176 large files.
16177 However, temporarily disable this change unless the temporary
16178 symbol WIDE_EMACS_INT is defined.
16179
16180 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
16181
16182 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
16183 This removes an assumption that EMACS_INT and long are the same
16184 width as pointers. The assumption is true for Emacs porting targets
16185 now, but we want to make other targets possible.
16186 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
16187 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
16188 In the rest of the code, change types of integers that hold casted
16189 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
16190 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
16191 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
16192 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
16193 No need to cast type when ORing.
16194 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
16195 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
16196 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
16197 assume EMACS_INT is the same width as char *.
16198 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
16199 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
16200 Remove no-longer-needed casts.
16201 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
16202 (xg_tool_bar_help_callback, xg_make_tool_item):
16203 Use EMACS_INTPTR to hold an integer
16204 that will be cast to void *; this can avoid a GCC warning
16205 if EMACS_INT is not the same width as void *.
16206 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
16207 * xdisp.c (display_echo_area_1, resize_mini_window_1):
16208 (current_message_1, set_message_1):
16209 Use a local to convert to proper width without a cast.
16210 * xmenu.c (dialog_selection_callback): Likewise.
16211
16212 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
16213 Also, don't assume VALBITS / RAND_BITS is less than 5,
16214 and don't rely on undefined behavior when shifting a 1 left into
16215 the sign bit.
16216 * lisp.h (get_random): Change signature to match.
16217
16218 * lread.c (hash_string): Use size_t, not int, for hash computation.
16219 Normally we prefer signed values; but hashing is special, because
16220 it's better to use unsigned division on hash table sizes so that
16221 the remainder is nonnegative. Also, size_t is the natural width
16222 for hashing into memory. The previous code used 'int', which doesn't
16223 retain enough info to hash well into very large tables.
16224 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
16225
16226 * dbusbind.c: Don't possibly lose pointer info when converting.
16227 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
16228 Use XPNTR rather than XHASH, so that the high-order bits of
16229 the pointer aren't lost when converting through void *.
16230
16231 * eval.c (Fautoload): Don't double-shift a pointer.
16232
16233 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
16234
16235 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
16236
16237 * gnutls.c (DEF_GNUTLS_FN):
16238 * image.c (DEF_IMGLIB_FN): Make function pointers static.
16239
16240 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
16241
16242 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
16243 marker. (Bug#8610)
16244
16245 2011-05-05 Eli Zaretskii <eliz@gnu.org>
16246
16247 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
16248 New version that can reserve upto 2GB of heap space.
16249
16250 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
16251
16252 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
16253
16254 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
16255
16256 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
16257 `gnutls_certificate_set_x509_key_file'.
16258
16259 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
16260
16261 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
16262 Update dependencies.
16263
16264 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16265
16266 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
16267 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
16268 Remove unused parameter `fildes'.
16269 * process.c (read_process_output, send_process): Don't pass it.
16270
16271 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16272
16273 Fix previous change: the library cache is defined in w32.c.
16274 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
16275 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
16276
16277 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
16278
16279 Implement dynamic loading of GnuTLS on Windows.
16280
16281 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
16282 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
16283 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
16284 Declare.
16285
16286 * gnutls.c (Qgnutls_dll): Define.
16287 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
16288 (gnutls_*): Declare function pointers.
16289 (init_gnutls_functions): New function to initialize function pointers.
16290 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
16291 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
16292 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
16293 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
16294 (emacs_gnutls_write, emacs_gnutls_read)
16295 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
16296 (Fgnutls_available_p): New function.
16297 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
16298 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
16299 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
16300
16301 * image.c: Include w32.h.
16302 (Vimage_type_cache): Delete.
16303 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
16304 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
16305 (w32_delayed_load): Move to w32.c.
16306
16307 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
16308
16309 * w32.c (QCloaded_from, Vlibrary_cache): Define.
16310 (w32_delayed_load): Move from image.c. When loading a library, record
16311 its filename in the :loaded-from property of the library id.
16312 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
16313 Initialize and staticpro them.
16314 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
16315
16316 * process.c: Include lisp.h before w32.h, not after.
16317 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
16318 instead of gnutls_record_check_pending.
16319
16320 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
16321
16322 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
16323
16324 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
16325 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
16326 as passed in.
16327
16328 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
16329
16330 * xterm.c (x_set_frame_alpha): Do not set property on anything
16331 else than FRAME_X_OUTER_WINDOW (Bug#8608).
16332
16333 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
16334
16335 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
16336
16337 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
16338
16339 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
16340 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
16341 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
16342 (gnutls_global_initialized, Qgnutls_bootprop_priority)
16343 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
16344 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
16345 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
16346 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
16347 (Qgnutls_bootprop_callbacks_verify): Make static.
16348
16349 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
16350
16351 * callproc.c: Indentation fixup.
16352
16353 * sysdep.c (wait_for_termination_1): Make static.
16354 (wait_for_termination, interruptible_wait_for_termination):
16355 Move after wait_for_termination_1.
16356
16357 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
16358
16359 * sysdep.c (interruptible_wait_for_termination): New function
16360 which is like wait_for_termination, but allows keyboard
16361 interruptions.
16362
16363 * callproc.c (Fcall_process): Add (:file "file") as an option for
16364 the STDOUT buffer.
16365 (Fcall_process_region): Ditto.
16366
16367 2011-04-30 Eli Zaretskii <eliz@gnu.org>
16368
16369 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
16370 rather than `XVECTOR (FOO)->size'.
16371
16372 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
16373 inttypes.h, as a gnulib replacement is used if it not available in
16374 system headers.
16375
16376 2011-04-21 Eli Zaretskii <eliz@gnu.org>
16377
16378 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
16379 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
16380 of MOST_POSITIVE_FIXNUM. (Bug#8528)
16381
16382 * coding.c (coding_alloc_by_realloc): Error out if destination
16383 will grow beyond MOST_POSITIVE_FIXNUM.
16384 (decode_coding_emacs_mule): Abort if there isn't enough place in
16385 charbuf for the composition carryover bytes. Reserve an extra
16386 space for up to 2 characters produced in a loop.
16387 (decode_coding_iso_2022): Abort if there isn't enough place in
16388 charbuf for the composition carryover bytes.
16389
16390 2011-04-21 Eli Zaretskii <eliz@gnu.org>
16391
16392 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
16393 aborting when %lld or %lll format is passed.
16394 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
16395 %llo or %llx format is passed. (Bug#8545)
16396
16397 * window.c (window_scroll_line_based): Use a marker instead of
16398 simple variables to record original value of point. (Bug#7952)
16399
16400 * doprnt.c (doprnt): Fix the case where a multibyte sequence
16401 produced by %s or %c overflows available buffer space. (Bug#8545)
16402
16403 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
16404
16405 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
16406 (SIZE_MAX): Move defn after all includes, as they might #define it.
16407
16408 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16409
16410 * w32.c (init_environment): Warn about defaulting HOME to C:\.
16411
16412 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16413
16414 * keyboard.c (Qdelayed_warnings_hook): Define.
16415 (command_loop_1): Run `delayed-warnings-hook'
16416 if Vdelayed_warnings_list is non-nil.
16417 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
16418 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
16419
16420 2011-04-28 Eli Zaretskii <eliz@gnu.org>
16421
16422 * doprnt.c (doprnt): Don't return value smaller than the buffer
16423 size if the message was truncated. (Bug#8545).
16424
16425 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
16426
16427 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
16428 (Fx_window_property): #if-0 the whole functions, not just the bodies.
16429
16430 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
16431
16432 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
16433
16434 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
16435
16436 * makefile.w32-in: Update dependencies.
16437
16438 2011-04-27 Eli Zaretskii <eliz@gnu.org>
16439
16440 Improve `doprnt' and its usage. (Bug#8545)
16441 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
16442 `format_end'. Remove support for %l as a conversion specifier.
16443 Don't use xrealloc. Improve diagnostics when the %l size modifier
16444 is used. Update the commentary.
16445
16446 * eval.c (verror): Simplify calculation of size_t.
16447
16448 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
16449 messages.
16450
16451 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
16452
16453 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
16454 change.
16455
16456 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
16457
16458 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
16459 This makes this file independent of the recent pseudovector change.
16460
16461 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
16462
16463 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
16464
16465 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
16466 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
16467 Remove unused local.
16468 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
16469
16470 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
16471 GCC 4.6.0 optimizes based on type-based alias analysis.
16472 For example, if b is of type struct buffer * and v of type struct
16473 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
16474 != &v->size, and therefore "v->size = 1; b->size = 2; return
16475 v->size;" must therefore return 1. This assumption is incorrect
16476 for Emacs, since it type-puns struct Lisp_Vector * with many other
16477 types. To fix this problem, this patch adds a new type struct
16478 vectorlike_header that documents the constraints on layout of vectors
16479 and pseudovectors, and helps optimizing compilers not get fooled
16480 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
16481 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
16482 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
16483 the size member.
16484 (XSETPVECTYPE): Rewrite in terms of new macro.
16485 (XSETPVECTYPESIZE): New macro, specifying both type and size.
16486 This is a bit clearer, and further avoids the possibility of
16487 undesirable aliasing.
16488 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
16489 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
16490 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
16491 since Lisp_Subr is a special case (no "next" field).
16492 (ASIZE): Now uses header.size rather than size.
16493 All previous uses of XVECTOR (foo)->size replaced to use this macro,
16494 to avoid the hassle of writing XVECTOR (foo)->header.size.
16495 (struct vectorlike_header): New type.
16496 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
16497 object, to help avoid aliasing.
16498 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
16499 (SUBRP): Likewise, since Lisp_Subr is a special case.
16500 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
16501 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
16502 (struct Lisp_Hash_Table): Combine first two members into a single
16503 struct vectorlike_header member. All uses of "size" and "next" members
16504 changed to be "header.size" and "header.next".
16505 * buffer.h (struct buffer): Likewise.
16506 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
16507 * frame.h (struct frame): Likewise.
16508 * process.h (struct Lisp_Process): Likewise.
16509 * termhooks.h (struct terminal): Likewise.
16510 * window.c (struct save_window_data, struct saved_window): Likewise.
16511 * window.h (struct window): Likewise.
16512 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
16513 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
16514 * buffer.c (init_buffer_once): Likewise.
16515 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
16516 special case.
16517 * process.c (Fformat_network_address): Use local var for size,
16518 for brevity.
16519
16520 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
16521
16522 Make the Lisp reader and string-to-float more consistent (Bug#8525)
16523 * data.c (atof): Remove decl; no longer used or needed.
16524 (digit_to_number): Move to lread.c.
16525 (Fstring_to_number): Use new string_to_number function, to be
16526 consistent with how the Lisp reader treats infinities and NaNs.
16527 Do not assume that floating-point numbers represent EMACS_INT
16528 without losing information; this is not true on most 64-bit hosts.
16529 Avoid double-rounding errors, by insisting on integers when
16530 parsing non-base-10 numbers, as the documentation specifies.
16531 * lisp.h (string_to_number): New decl, replacing ...
16532 (isfloat_string): Remove.
16533 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
16534 (read1): Do not accept +. and -. as integers; this
16535 appears to have been a coding error. Similarly, do not accept
16536 strings like +-1e0 as floating point numbers. Do not report
16537 overflow for integer overflows unless the base is not 10 which
16538 means we have no simple and reliable way to continue.
16539 Break out the floating-point parsing into a new
16540 function string_to_number, so that Fstring_to_number parses
16541 floating point numbers consistently with the Lisp reader.
16542 (digit_to_number): Move here from data.c. Make it static inline.
16543 (E_CHAR, EXP_INT): Remove, replacing with ...
16544 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
16545 (string_to_number): New function, replacing isfloat_string.
16546 This function checks for valid syntax and produces the resulting
16547 Lisp float number too. Rework it so that string-to-number
16548 no longer mishandles examples like "1.0e+". Use strtoumax,
16549 so that overflow for non-base-10 numbers is reported only when
16550 there's no portable and simple way to convert to floating point.
16551
16552 * textprop.c (set_text_properties_1): Rewrite for clarity,
16553 and to avoid GCC warning about integer overflow.
16554
16555 * intervals.h (struct interval): Use EMACS_INT for members
16556 where EMACS_UINT might cause problems. See
16557 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
16558 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
16559 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
16560 All uses changed.
16561 (offset_intervals): Tell GCC not to worry about length overflow
16562 when negating a negative length.
16563
16564 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
16565 (overrun_check_free): Likewise.
16566
16567 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
16568 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
16569 word size.
16570
16571 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
16572 (gnutls_make_error): Rename local to avoid shadowing.
16573 (gnutls_emacs_global_deinit): ifdef out; not used.
16574 (Fgnutls_boot): Use const for pointer to readonly storage.
16575 Comment out unused local. Fix pointer signedness problems.
16576
16577 * lread.c (openp): Don't stuff size_t into an 'int'.
16578 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
16579 about possible signed overflow.
16580
16581 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
16582 (GDK_KEY_g): Don't define if already defined.
16583 (xg_prepare_tooltip): Avoid pointer signedness problem.
16584 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
16585
16586 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
16587 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
16588
16589 * xfns.c (Fx_window_property): Simplify a bit,
16590 to make a bit faster and to avoid GCC 4.6.0 warning.
16591 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
16592
16593 * fns.c (internal_equal): Don't assume size_t fits in int.
16594
16595 * alloc.c (compact_small_strings): Tighten assertion a little.
16596
16597 Replace pEd with more-general pI, and fix some printf arg casts.
16598 * lisp.h (pI): New macro, generalizing old pEd macro to other
16599 conversion specifiers. For example, use "...%"pI"d..." rather
16600 than "...%"pEd"...".
16601 (pEd): Remove. All uses replaced with similar uses of pI.
16602 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
16603 * alloc.c (check_pure_size): Don't overflow by converting size to int.
16604 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
16605 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
16606 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
16607 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
16608 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
16609 64-bit hosts.
16610 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
16611 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
16612 * print.c (safe_debug_print, print_object): Likewise.
16613 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
16614 to int.
16615 Use pI instead of if-then-else-abort. Use %p to avoid casts,
16616 avoiding the 0 flag, which is not portable.
16617 * process.c (Fmake_network_process): Use pI to avoid cast.
16618 * region-cache.c (pp_cache): Likewise.
16619 * xdisp.c (decode_mode_spec): Likewise.
16620 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
16621 behavior on 64-bit hosts with printf arg.
16622 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
16623 (x_stop_queuing_selection_requests): Likewise.
16624 (x_get_window_property): Don't truncate byte count to an 'int'
16625 when tracing.
16626
16627 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
16628 here, since it parses constructs like leading '-' and spaces,
16629 which are not wanted; and it overflows with large numbers.
16630 Instead, simply match F[0-9]+, which is what is wanted anyway.
16631
16632 * alloc.c: Remove unportable assumptions about struct layout.
16633 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
16634 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
16635 (allocate_vectorlike, make_pure_vector): Use the new macros,
16636 plus offsetof, to remove unportable assumptions about struct layout.
16637 These assumptions hold on all porting targets that I know of, but
16638 they are not guaranteed, they're easy to remove, and removing them
16639 makes further changes easier.
16640
16641 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
16642 This doesn't fix a bug but makes the code clearer.
16643 (string_overrun_cookie): Now const. Use initializers that
16644 don't formally overflow signed char, to avoid warnings.
16645 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
16646 can cause Emacs to crash when string overrun checking is enabled.
16647 (allocate_buffer): Don't assume sizeof (struct buffer) is a
16648 multiple of sizeof (EMACS_INT); it need not be, if
16649 alignof(EMACS_INT) < sizeof (EMACS_INT).
16650 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
16651
16652 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
16653
16654 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
16655
16656 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
16657
16658 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
16659 supposed to be handshaking. (Bug#8556)
16660 Reported by Paul Eggert <eggert@cs.ucla.edu>.
16661
16662 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
16663
16664 * lisp.h (Qdebug): List symbol.
16665 * eval.c (Qdebug): Restore global linkage.
16666 * keyboard.c (debug-on-event): New variable.
16667 (handle_user_signal): Break into debugger when debug-on-event
16668 matches the current signal symbol.
16669
16670 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
16671
16672 * alloc.c (check_sblock, check_string_bytes)
16673 (check_string_free_list): Convert to standard C.
16674
16675 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
16676
16677 * w32.c (emacs_gnutls_push): Fix typo.
16678
16679 2011-04-25 Eli Zaretskii <eliz@gnu.org>
16680
16681 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
16682 "cast to pointer from integer of different size".
16683
16684 Improve doprnt and its use in verror. (Bug#8545)
16685 * doprnt.c (doprnt): Document the set of format control sequences
16686 supported by the function. Use SAFE_ALLOCA instead of always
16687 using `alloca'.
16688
16689 * eval.c (verror): Don't limit the buffer size at size_max-1, that
16690 is one byte too soon. Don't use xrealloc; instead xfree and
16691 xmalloc anew.
16692
16693 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
16694
16695 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
16696 callbacks stage.
16697
16698 * gnutls.c: Renamed global_initialized to
16699 gnutls_global_initialized. Added internals for the
16700 :verify-hostname-error, :verify-error, and :verify-flags
16701 parameters of `gnutls-boot' and documented those parameters in the
16702 docstring. Start callback support.
16703 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
16704 unless a fatal error occurred. Call gnutls_alert_send_appropriate
16705 on error. Return error code.
16706 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
16707 (emacs_gnutls_read): Likewise.
16708 (Fgnutls_boot): Return handshake error code.
16709 (emacs_gnutls_handle_error): New function.
16710 (wsaerror_to_errno): Likewise.
16711
16712 * w32.h (emacs_gnutls_pull): Add prototype.
16713 (emacs_gnutls_push): Likewise.
16714
16715 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
16716 (emacs_gnutls_push): Likewise.
16717
16718 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
16719
16720 * process.c (wait_reading_process_output): Check if GnuTLS
16721 buffered some data internally if no FDs are set for TLS
16722 connections.
16723
16724 * makefile.w32-in (OBJ2): Add gnutls.$(O).
16725 (LIBS): Link to USER_LIBS.
16726 ($(BLD)/gnutls.$(0)): New target.
16727
16728 2011-04-24 Eli Zaretskii <eliz@gnu.org>
16729
16730 * xdisp.c (handle_single_display_spec): Rename the
16731 display_replaced_before_p argument into display_replaced_p, to
16732 make it consistent with the commentary. Fix typos in the
16733 commentary.
16734
16735 * textprop.c (syms_of_textprop): Remove dead code.
16736 (copy_text_properties): Delete obsolete commentary about an
16737 interface that was deleted long ago. Fix typos in the description
16738 of arguments.
16739
16740 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
16741 to changes in oldXMenu/XMenu.h from 2011-04-16.
16742 <menu_help_message, prev_menu_help_message>: Constify.
16743 (IT_menu_make_room): menu->help_text is now `const char **';
16744 adjust.
16745
16746 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
16747 to changes in oldXMenu/XMenu.h from 2011-04-16.
16748 (struct XMenu): Declare `help_text' `const char **'.
16749
16750 * xfaces.c <Qunspecified>: Make extern again.
16751
16752 * syntax.c: Include sys/types.h before including regex.h, as
16753 required by POSIX.
16754
16755 * doc.c (get_doc_string): Improve the format passed to `error'.
16756
16757 * doprnt.c (doprnt): Improve commentary.
16758
16759 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
16760
16761 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
16762 them with etags.
16763
16764 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
16765 changes in globals.h immediately force recompilation.
16766 (TAGS): Depend on $(CURDIR)/m/intel386.h and
16767 $(CURDIR)/s/ms-w32.h.
16768 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
16769
16770 * character.c (Fchar_direction): Function deleted.
16771 (syms_of_character): Don't defsubr it.
16772 <char-direction-table>: Deleted.
16773
16774 2011-04-23 Eli Zaretskii <eliz@gnu.org>
16775
16776 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
16777 * doprnt.c: Include limits.h.
16778 (SIZE_MAX): New macro.
16779 (doprnt): Return a size_t value. 2nd arg is now size_t.
16780 Many local variables are now size_t instead of int or unsigned.
16781 Improve overflow protection. Support `l' modifier for integer
16782 conversions. Support %l conversion. Don't assume an EMACS_INT
16783 argument for integer conversions and for %c.
16784
16785 * lisp.h (doprnt): Restore prototype.
16786
16787 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
16788 $(SRC)/character.h.
16789
16790 * Makefile.in (base_obj): Add back doprnt.o.
16791
16792 * deps.mk (doprnt.o): Add back prerequisites.
16793 (callint.o): Depend on character.h.
16794
16795 * eval.c (internal_lisp_condition_case): Include the handler
16796 representation in the error message.
16797 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
16798 when breaking from the loop.
16799
16800 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
16801
16802 * callint.c (Fcall_interactively): When displaying error message
16803 about invalid control letter, pass the character's codepoint, not
16804 a pointer to its multibyte form. Improve display of the character
16805 in octal and display also its hex code.
16806
16807 * character.c (char_string): Use %x to display the (unsigned)
16808 codepoint of an invalid character, to avoid displaying a bogus
16809 negative value.
16810
16811 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
16812 `error', not SYMBOL_NAME itself.
16813
16814 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
16815 character arguments to `error'.
16816
16817 * charset.c (check_iso_charset_parameter): Fix incorrect argument
16818 to `error' in error message about FINAL_CHAR argument. Make sure
16819 FINAL_CHAR is a character, and use %c when it is passed as
16820 argument to `error'.
16821
16822 2011-04-23 Eli Zaretskii <eliz@gnu.org>
16823
16824 * s/ms-w32.h (localtime): Redirect to sys_localtime.
16825
16826 * w32.c: Include <time.h>.
16827 (sys_localtime): New function.
16828
16829 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
16830
16831 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
16832
16833 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
16834
16835 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
16836
16837 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
16838 zombies (Bug#8467).
16839
16840 2011-04-19 Eli Zaretskii <eliz@gnu.org>
16841
16842 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
16843 gl_state.e_property when gl_state.object is Qt.
16844
16845 * insdel.c (make_gap_larger): Remove limitation of buffer size
16846 to <= INT_MAX.
16847
16848 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
16849
16850 * xdisp.c (lookup_glyphless_char_display)
16851 (produce_glyphless_glyph): Handle cons cell entry in
16852 glyphless-char-display.
16853 (Vglyphless_char_display): Document it.
16854
16855 * term.c (produce_glyphless_glyph): Handle cons cell entry in
16856 glyphless-char-display.
16857
16858 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
16859
16860 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
16861
16862 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
16863
16864 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
16865 definition for no-X builds.
16866
16867 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
16868
16869 Static checks with GCC 4.6.0 and non-default toolkits.
16870
16871 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
16872
16873 * process.c (keyboard_bit_set): Define only if SIGIO.
16874 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
16875 (send_process): Repair possible setjmp clobbering.
16876
16877 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
16878
16879 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
16880
16881 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
16882
16883 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
16884 Define only if needed.
16885
16886 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
16887 by pacifying GCC about it. Maybe it's time to retire it?
16888 * xfaces.c (USG, __TIMEVAL__): Likewise.
16889
16890 * dispextern.h (struct redisplay_interface): Rename param
16891 to avoid shadowing.
16892 * termhooks.h (struct terminal): Likewise.
16893 * xterm.c (xembed_send_message): Likewise.
16894
16895 * insdel.c (make_gap_smaller): Define only if
16896 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
16897
16898 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
16899 it.
16900
16901 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
16902 so that we aren't warned about unused symbols.
16903
16904 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
16905
16906 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
16907
16908 * xfns.c (x_real_positions): Mark locals as initialized.
16909
16910 * xmenu.c (xmenu_show): Don't use uninitialized vars.
16911
16912 * xterm.c: Fix problems found by static analysis with other toolkits.
16913 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
16914 (x_dispatch_event): Declare static if USE_GTK, and
16915 define if USE_GTK || USE_X_TOOLKIT.
16916 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
16917 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
16918 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
16919 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
16920
16921 * xmenu.c (menu_help_callback): Pointer type fixes.
16922 Use const pointers when pointing at readonly data. Avoid pointer
16923 signedness clashes.
16924 (FALSE): Remove unused macro.
16925 (update_frame_menubar): Remove unused decl.
16926
16927 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
16928
16929 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
16930 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
16931 (single_menu_item): Rename local to avoid shadowing.
16932
16933 * keyboard.c (make_lispy_event): Remove unused local var.
16934
16935 * frame.c, frame.h (x_get_resource_string): Bring this back, but
16936 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
16937
16938 * bitmaps: Change bitmaps from unsigned char back to the X11
16939 compatible char. Avoid the old compiler warnings about
16940 out-of-range initializers by using, for example, '\xab' rather
16941 than 0xab.
16942
16943 * xgselect.c (xgselect_initialize): Check vs interface
16944 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
16945
16946 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
16947
16948 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
16949 to read-only memory.
16950
16951 * fns.c (vector): Remove; this old hack is no longer needed.
16952
16953 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
16954 Remove unused var.
16955 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
16956
16957 * xrdb.c (x_load_resources): Omit unused local.
16958
16959 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
16960 (x_window): Rename locals to avoid shadowing.
16961 (USG): Use the kludged USG macro, to pacify gcc.
16962
16963 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
16964 (x_term_init): Remove local to avoid shadowing.
16965
16966 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
16967
16968 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
16969 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
16970
16971 2011-04-16 Eli Zaretskii <eliz@gnu.org>
16972
16973 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
16974
16975 Fix regex.c, syntax.c and friends for buffers > 2GB.
16976 * syntax.h (struct gl_state_s): Declare character position members
16977 EMACS_INT.
16978
16979 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
16980
16981 * textprop.c (verify_interval_modification, interval_of):
16982 Declare arguments EMACS_INT.
16983
16984 * intervals.c (adjust_intervals_for_insertion): Declare arguments
16985 EMACS_INT.
16986
16987 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
16988
16989 * indent.c (Fvertical_motion): Local variable it_start is now
16990 EMACS_INT.
16991
16992 * regex.c (re_match, re_match_2, re_match_2_internal)
16993 (bcmp_translate, regcomp, regexec, print_double_string)
16994 (group_in_compile_stack, re_search, re_search_2, regex_compile)
16995 (re_compile_pattern, re_exec): Declare arguments and local
16996 variables `size_t' and `ssize_t' and return values `regoff_t', as
16997 appropriate.
16998 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
16999 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
17000 <compile_stack_type>: `size' and `avail' are now `size_t'.
17001
17002 * regex.h <regoff_t>: Use ssize_t, not int.
17003 (re_search, re_search_2, re_match, re_match_2): Arguments that
17004 specify buffer/string position and length are now ssize_t and
17005 size_t. Return type is regoff_t.
17006
17007 2011-04-16 Ben Key <bkey76@gmail.com>
17008
17009 * nsfont.m: Fixed bugs in ns_get_family and
17010 ns_descriptor_to_entity that were caused by using free to
17011 deallocate memory blocks that were allocated by xmalloc (via
17012 xstrdup). This caused Emacs to crash when compiled with
17013 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
17014 --enable-checking=xmallocoverrun). xfree is now used to
17015 deallocate these memory blocks.
17016
17017 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
17018
17019 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
17020
17021 emacs_write: Accept and return EMACS_INT for sizes.
17022 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
17023 et seq.
17024 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
17025 Accept and return EMACS_INT.
17026 (emacs_gnutls_write): Return the number of bytes written on
17027 partial writes.
17028 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
17029 (emacs_read, emacs_write): Remove check for negative size, as the
17030 Emacs source code has been audited now.
17031 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
17032 (emacs_read, emacs_write): Use it.
17033 * process.c (send_process): Adjust to the new signatures of
17034 emacs_write and emacs_gnutls_write. Do not attempt to store
17035 a byte offset into an 'int'; it might overflow.
17036 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
17037
17038 * sound.c: Don't assume sizes fit in 'int'.
17039 (struct sound_device.period_size, alsa_period_size):
17040 Return EMACS_INT, not int.
17041 (struct sound_device.write, vox_write, alsa_write):
17042 Accept EMACS_INT, not int.
17043 (wav_play, au_play): Use EMACS_INT to store sizes and to
17044 record read return values.
17045
17046 2011-04-15 Ben Key <bkey76@gmail.com>
17047
17048 * keyboard.c (Qundefined): Don't declare static since it is used
17049 in nsfns.m.
17050 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
17051 static since they are used in nsfont.m.
17052
17053 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
17054
17055 * process.c (Qprocessp): Don't declare static.
17056 * lisp.h (Qprocessp): Declare again.
17057
17058 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
17059
17060 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
17061
17062 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
17063
17064 Improve C-level modularity by making more things 'static'.
17065
17066 Don't publish debugger-only interfaces to other modules.
17067 * lisp.h (safe_debug_print, debug_output_compilation_hack):
17068 (verify_bytepos, count_markers): Move decls to the only modules
17069 that need them.
17070 * region-cache.h (pp_cache): Likewise.
17071 * window.h (check_all_windows): Likewise.
17072 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
17073
17074 * sysdep.c (croak): Now static, if
17075 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
17076 * syssignal.h (croak): Declare only if not static.
17077
17078 * alloc.c (refill_memory_reserve): Now static if
17079 !defined REL_ALLOC || defined SYSTEM_MALLOC.
17080 * lisp.h (refill_memory_reserve): Declare only if not static.
17081
17082 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
17083 Define only if USE_LUCID.
17084
17085 * xrdb.c (x_customization_string, x_rm_string): Now static.
17086
17087 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
17088 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
17089
17090 * xdisp.c (draw_row_with_mouse_face): Now static.
17091 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
17092
17093 * window.h (check_all_windows): Mark externally visible.
17094
17095 * window.c (window_deletion_count): Now static.
17096
17097 * undo.c: Make symbols static if they're not exported.
17098 (last_undo_buffer, last_boundary_position, pending_boundary):
17099 Now static.
17100
17101 * textprop.c (interval_insert_behind_hooks): Now static.
17102 (interval_insert_in_front_hooks): Likewise.
17103
17104 * term.c: Make symbols static if they're not exported.
17105 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
17106 (max_frame_lines, tty_set_terminal_modes):
17107 (tty_reset_terminal_modes, tty_turn_off_highlight):
17108 (get_tty_terminal): Now static.
17109 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
17110 * termhooks.h (term_mouse_moveto): Do not declare if
17111 HAVE_WINDOW_SYSTEM.
17112 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
17113 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
17114
17115 * sysdep.c: Make symbols static if they're not exported.
17116 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
17117 Now static.
17118 (sigprocmask_set, full_mask): Remove; unused.
17119 (wait_debugging): Mark as visible.
17120 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
17121 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
17122
17123 * syntax.c (syntax_temp): Define only if !__GNUC__.
17124
17125 * sound.c (current_sound_device, current_sound): Now static.
17126
17127 * search.c (searchbufs, searchbuf_head): Now static.
17128
17129 * scroll.c (scroll_cost): Remove; unused.
17130 * dispextern.h (scroll_cost): Remove decl.
17131
17132 * region-cache.h (pp_cache): Mark as externally visible.
17133
17134 * process.c: Make symbols static if they're not exported.
17135 (process_tick, update_tick, create_process, chan_process):
17136 (Vprocess_alist, proc_buffered_char, datagram_access):
17137 (fd_callback_data, send_process_frame, process_sent_to): Now static.
17138 (deactivate_process): Mark defn as static, as well as decl.
17139 * lisp.h (create_process): Remove decl.
17140 * process.h (chan_process, Vprocess_alist): Remove decls.
17141
17142 * print.c: Make symbols static if they're not exported.
17143 (print_depth, new_backquote_output, being_printed, print_buffer):
17144 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
17145 (print_interval, print_number_index, initial_stderr_stream):
17146 Now static.
17147 * lisp.h (Fprinc): Remove decl.
17148 (debug_output_compilation_hack): Mark as externally visible.
17149
17150 * sysdep.c (croak): Move decl from here to syssignal.h.
17151 * syssignal.h (croak): Put it here, so the API can be checked when
17152 'croak' is called from dissociate_if_controlling_tty.
17153
17154 * minibuf.c: Make symbols static if they're not exported.
17155 (minibuf_save_list, choose_minibuf_frame): Now static.
17156 * lisp.h (choose_minibuf_frame): Remove decl.
17157
17158 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
17159
17160 * lread.c: Make symbols static if they're not exported.
17161 (read_objects, initial_obarray, oblookup_last_bucket_number):
17162 Now static.
17163 (make_symbol): Remove; unused.
17164 * lisp.h (initial_obarray, make_symbol): Remove decls.
17165
17166 * keyboard.c: Make symbols static if they're not exported.
17167 (single_kboard, recent_keys_index, total_keys, recent_keys):
17168 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
17169 (this_single_command_key_start, echoing, last_auto_save):
17170 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
17171 (command_loop, echo_now, keyboard_init_hook, help_char_p):
17172 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
17173 (Vlispy_mouse_stem, double_click_count):
17174 Now static.
17175 (force_auto_save_soon): Define only if SIGDANGER.
17176 (ignore_mouse_drag_p): Now static if
17177 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
17178 (print_help): Remove; unused.
17179 (stop_character, last_timer_event): Mark as externally visible.
17180 * keyboard.h (ignore_mouse_drag_p): Declare only if
17181 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
17182 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
17183 * lisp.h (echoing): Remove decl.
17184 (force_auto_save_soon): Declare only if SIGDANGER.
17185 * xdisp.c (redisplay_window): Simplify code, to make it more
17186 obvious that ignore_mouse_drag_p is not accessed if !defined
17187 USE_GTK && !defined HAVE_NS.
17188
17189 * intervals.c: Make symbols static if they're not exported.
17190 (merge_properties_sticky, merge_interval_right, delete_interval):
17191 Now static.
17192 * intervals.h (merge_interval_right, delete_interval): Remove decls.
17193
17194 * insdel.c: Make symbols static if they're not exported.
17195 However, leave prepare_to_modify_buffer alone. It's never
17196 called from outside this function, but that appears to be a bug.
17197 (combine_after_change_list, combine_after_change_buffer):
17198 (adjust_after_replace, signal_before_change): Now static.
17199 (adjust_after_replace_noundo): Remove; unused.
17200 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
17201 (signal_before_change): Remove decls.
17202
17203 * indent.c (val_compute_motion, val_vmotion): Now static.
17204
17205 * image.c: Make symbols static if they're not exported.
17206 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
17207 if USE_GTK.
17208 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
17209 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
17210
17211 * fringe.c (standard_bitmaps): Now static.
17212 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
17213
17214 * frame.c: Make symbols static if they're not exported.
17215 (x_report_frame_params, make_terminal_frame): Now static.
17216 (get_frame_param): Now static, unless HAVE_NS.
17217 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
17218 (x_get_resource_string): Remove; not used.
17219 * frame.h (make_terminal_frame, x_report_frame_params):
17220 (x_get_resource_string); Remove decls.
17221 (x_fullscreen_adjust): Declare only if WINDOWSNT.
17222 * lisp.h (get_frame_param): Declare only if HAVE_NS.
17223
17224 * font.c, fontset.c: Make symbols static if they're not exported.
17225 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
17226 (FACE_SUITABLE_FOR_CHAR_P): Use it.
17227 * font.c (font_close_object): Now static.
17228 * font.h (font_close_object): Remove.
17229 * fontset.c (FONTSET_OBJLIST): Remove.
17230 (free_realized_fontset) #if-0 the body, which does nothing.
17231 (face_suitable_for_char_p): #if-0, as it's never called.
17232 * fontset.h (face_suitable_for_char_p): Remove decl.
17233 * xfaces.c (face_at_string_position):
17234 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
17235 since 0 is always ASCII.
17236
17237 * fns.c (weak_hash_tables): Now static.
17238
17239 * fileio.c: Make symbols static if they're not exported.
17240 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
17241 (Vwrite_region_annotation_buffers): Now static.
17242
17243 * eval.c: Make symbols static if they're not exported.
17244 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
17245 * lisp.h (backtrace_list): Remove decl.
17246
17247 * emacs.c: Make symbols static if they're not exported.
17248 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
17249 (fatal_error_code, fatal_error_signal_hook, standard_args):
17250 Now static.
17251 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
17252 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
17253 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
17254 * lisp.h (fatal_error_signal_hook): Remove decl.
17255 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
17256
17257 * editfns.c: Move a (normally-unused) function to its only use.
17258 * editfns.c, lisp.h (get_operating_system_release): Remove.
17259 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
17260 worth the hassle of breaking this out.
17261
17262 * xterm.c: Make symbols static if they're not exported.
17263 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
17264 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
17265 (x_destroy_window, x_delete_display):
17266 Now static.
17267 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
17268 (x_mouse_leave): Remove; unused.
17269 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
17270 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
17271 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
17272 Remove decls.
17273 (x_mouse_leave): Declare only if WINDOWSNT.
17274 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
17275 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
17276 USE_X_TOOLKIT.
17277
17278 * ftxfont.c: Make symbols static if they're not exported.
17279 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
17280 HAVE_FREETYPE.
17281 * font.h (ftxfont_driver): Likewise.
17282
17283 * xfns.c: Make symbols static if they're not exported.
17284 (x_last_font_name, x_display_info_for_name):
17285 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
17286 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
17287 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
17288 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
17289 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
17290 (last_show_tip_args): Now static.
17291 (xic_defaut_fontset, xic_create_fontsetname): Define only if
17292 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
17293 (x_screen_planes): Remove; unused.
17294 * dispextern.h (x_screen_planes): Remove decl.
17295
17296 * dispnew.c: Make symbols static if they're not exported.
17297 * dispextern.h (redraw_garbaged_frames, scrolling):
17298 (increment_row_positions): Remove.
17299 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
17300 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
17301 Now static.
17302 (redraw_garbaged_frames): Remove; unused.
17303
17304 * xfaces.c: Make symbols static if they're not exported.
17305 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
17306 Remove decls.
17307 * xterm.h (defined_color): Remove decls.
17308 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
17309 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
17310 (menu_face_changed_default, defined_color, free_realized_face):
17311 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
17312 (ascii_face_of_lisp_face): Remove; unused.
17313
17314 * xdisp.c: Make symbols static if they're not exported.
17315 * dispextern.h (scratch_glyph_row, window_box_edges):
17316 (glyph_to_pixel_coords, set_cursor_from_row):
17317 (get_next_display_element, set_iterator_to_next):
17318 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
17319 (show_mouse_face): Remove decls
17320 * frame.h (message_buf_print): Likewise.
17321 * lisp.h (pop_message, set_message, check_point_in_composition):
17322 Likewise.
17323 * xterm.h (set_vertical_scroll_bar): Likewise.
17324 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
17325 (message_buf_print, scratch_glyph_row, displayed_buffer):
17326 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
17327 (get_next_display_element, show_mouse_face, window_box_edges):
17328 (frame_to_window_pixel_xy, check_point_in_composition):
17329 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
17330 (glyph_to_pixel_coords): Remove; unused.
17331
17332 * dired.c (file_name_completion): Now static.
17333
17334 * dbusbind.c (xd_in_read_queued_messages): Now static.
17335
17336 * lisp.h (circular_list_error, FOREACH): Remove; unused.
17337 * data.c (circular_list_error): Remove.
17338
17339 * commands.h (last_point_position, last_point_position_buffer):
17340 (last_point_position_window): Remove decls.
17341 * keyboard.c: Make these variables static.
17342
17343 * coding.h (coding, code_convert_region, encode_coding_gap):
17344 Remove decls.
17345 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
17346 (iso_code_class, detect_coding, code_convert_region): Now static.
17347 (encode_coding_gap): Remove; unused.
17348
17349 * chartab.c (chartab_chars, chartab_bits): Now static.
17350
17351 * charset.h (charset_iso_8859_1): Remove decl.
17352 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
17353 Now static.
17354
17355 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
17356 * ccl.c (Vccl_program_table): Now static.
17357 (check_ccl_update): Remove; unused.
17358
17359 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
17360 * category.h: ... from here.
17361 * category.c (check_category_table, set_category_set): Now static.
17362
17363 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
17364 * lisp.h: Remove these decls.
17365
17366 * buffer.c (buffer_count): Remove unused var.
17367
17368 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
17369 so that it's not optimized away.
17370 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
17371 * dispextern.h (bidi_dump_cached_states): Remove, since it's
17372 exported only to the debugger.
17373
17374 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
17375 * atimer.h (run_all_atimers): Remove; not exported.
17376
17377 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
17378 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
17379 was inaccessible from Lisp.
17380 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
17381 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
17382
17383 alloc.c: Import and export fewer symbols, and remove unused items.
17384 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
17385 is defined.
17386 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
17387 it's not optimized away by whole-program optimization.
17388 (message_enable_multibyte, free_misc): Remove.
17389 (catchlist, handlerlist, mark_backtrace):
17390 Declare only if BYTE_MARK_STACK.
17391 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
17392 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
17393 (message_enable_multibyte): Remove decl.
17394 (free_misc, interval_free_list, float_block, float_block_index):
17395 (n_float_blocks, float_free_list, cons_block, cons_block_index):
17396 (cons_free_list, last_marked_index):
17397 Now static.
17398 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
17399 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
17400 (mark_backtrace): Define only if BYTE_MARK_STACK.
17401 * xdisp.c (message_enable_multibyte): Now static.
17402
17403 Declare Lisp_Object Q* variables to be 'static' if not exported.
17404 This makes it easier for human readers (and static analyzers)
17405 to see whether these variables are used from other modules.
17406 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
17407 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
17408 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
17409 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
17410 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
17411 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
17412 * xmenu.c, xselect.c:
17413 Declare Q* vars static if they are not used in other modules.
17414 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
17415 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
17416 Remove decls of unexported vars.
17417 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
17418
17419 * lisp.h (DEFINE_FUNC): Make sname 'static'.
17420
17421 Make Emacs functions such as Fatom 'static' by default.
17422 This makes it easier for human readers (and static analyzers)
17423 to see whether these functions can be called from other modules.
17424 DEFUN now defines a static function. To make the function external
17425 so that it can be used in other C modules, use the new macro DEFUE.
17426 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
17427 (Finit_image_library):
17428 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
17429 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
17430 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
17431 Remove decls, since these functions are now static.
17432 (Funintern, Fget_internal_run_time): New decls, since these functions
17433 were already external.
17434
17435 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
17436 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
17437 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
17438 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
17439 * keyboard.c, keymap.c, lread.c:
17440 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
17441 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
17442 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
17443 Mark functions with DEFUE instead of DEFUN,
17444 if they are used in other modules.
17445 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
17446 decls for now-static functions.
17447 * buffer.h (Fdelete_overlay): Remove decl.
17448 * callproc.c (Fgetenv_internal): Mark as internal.
17449 * composite.c (Fremove_list_of_text_properties): Remove decl.
17450 (Fcomposition_get_gstring): New forward static decl.
17451 * composite.h (Fcomposite_get_gstring): Remove decl.
17452 * dired.c (Ffile_attributes): New forward static decl.
17453 * doc.c (Fdocumntation_property): New forward static decl.
17454 * eval.c (Ffetch_bytecode): New forward static decl.
17455 (Funintern): Remove extern decl; now in .h file where it belongs.
17456 * fileio.c (Fmake_symbolic_link): New forward static decl.
17457 * image.c (Finit_image_library): New forward static decl.
17458 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
17459 * intervals.h (Fprevious_property_change):
17460 (Fremove_list_of_text_properties): Remove decls.
17461 * keyboard.c (Fthis_command_keys): Remove decl.
17462 (Fcommand_execute): New forward static decl.
17463 * keymap.c (Flookup_key): New forward static decl.
17464 (Fcopy_keymap): Now static.
17465 * keymap.h (Flookup_key): Remove decl.
17466 * process.c (Fget_process): New forward static decl.
17467 (Fprocess_datagram_address): Mark as internal.
17468 * syntax.c (Fsyntax_table_p): New forward static decl.
17469 (skip_chars): Remove duplicate decl.
17470 * textprop.c (Fprevious_property_change): New forward static decl.
17471 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
17472 Now internal.
17473 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
17474 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
17475
17476 * editfns.c (Fformat): Remove unreachable code.
17477
17478 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
17479
17480 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
17481 change. (Bug#8496)
17482
17483 2011-04-13 Eli Zaretskii <eliz@gnu.org>
17484
17485 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
17486 when at ZV. (Bug#8487)
17487
17488 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
17489
17490 * charset.c (Fclear_charset_maps): Use xfree instead of free.
17491 (Bug#8437)
17492 * keyboard.c (parse_tool_bar_item): Likewise.
17493 * sound.c (sound_cleanup, alsa_close): Likewise.
17494 * termcap.c (tgetent): Likewise.
17495 * xfns.c (x_default_font_parameter): Likewise.
17496 * xsettings.c (read_and_apply_settings): Likewise.
17497
17498 * alloc.c (overrun_check_malloc, overrun_check_realloc)
17499 (overrun_check_free): Protoize.
17500
17501 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
17502
17503 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
17504 since callers should never pass a negative size.
17505 Change the signature to match that of plain 'read' and 'write'; see
17506 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
17507 * lisp.h: Update prototypes of emacs_write and emacs_read.
17508
17509 2011-04-11 Eli Zaretskii <eliz@gnu.org>
17510
17511 * xdisp.c (redisplay_window): Don't try to determine the character
17512 position of the scroll margin if the window start point w->startp
17513 is outside the buffer's accessible region. (Bug#8468)
17514
17515 2011-04-10 Eli Zaretskii <eliz@gnu.org>
17516
17517 Fix write-region and its subroutines for buffers > 2GB.
17518 * fileio.c (a_write, e_write): Modify declaration of arguments and
17519 local variables to support buffers larger than 2GB.
17520 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
17521
17522 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
17523 argument, local variables, and return value.
17524
17525 * lisp.h: Update prototypes of emacs_write and emacs_read.
17526
17527 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
17528
17529 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
17530
17531 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
17532
17533 Fix more problems found by GCC 4.6.0's static checks.
17534
17535 * xdisp.c (vmessage): Use a better test for character truncation.
17536
17537 * charset.c (load_charset_map): <, not <=, for optimization,
17538 and to avoid potential problems with integer overflow.
17539 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
17540 * casetab.c (set_identity, shuffle): Likewise.
17541 * editfns.c (Fformat): Likewise.
17542 * syntax.c (skip_chars): Likewise.
17543
17544 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
17545 This also lets GCC 4.6.0 generate slightly better loop code.
17546
17547 * callint.c (Fcall_interactively): <, not <=, for optimization.
17548 (Fcall_interactively): Count the number of arguments produced,
17549 not the number of arguments given. This is simpler and lets GCC
17550 4.6.0 generate slightly better code.
17551
17552 * ftfont.c: Distingish more carefully between FcChar8 and char.
17553 The previous code passed unsigned char * to a functions like
17554 strlen and xstrcasecmp that expect char *, which does not
17555 conform to the C standard.
17556 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
17557 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
17558 char * when the C standard requires it.
17559
17560 * keyboard.c (read_char): Remove unused var.
17561
17562 * eval.c: Port to Windows vsnprintf (Bug#8435).
17563 Include <limits.h>.
17564 (SIZE_MAX): Define if the headers do not.
17565 (verror): Do not give up if vsnprintf returns a negative count.
17566 Instead, grow the buffer. This ports to Windows vsnprintf, which
17567 does not conform to C99. Problem reported by Eli Zaretskii.
17568 Also, simplify the allocation scheme, by avoiding the need for
17569 calling realloc, and removing the ALLOCATED variable.
17570
17571 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
17572
17573 Remove invocations of doprnt, as Emacs now uses vsnprintf.
17574 But keep the doprint source code for now, as we might revamp it
17575 and use it again (Bug#8435).
17576 * lisp.h (doprnt): Remove.
17577 * Makefile.in (base_obj): Remove doprnt.o.
17578 * deps.mk (doprnt.o): Remove.
17579
17580 error: Print 32- and 64-bit integers portably (Bug#8435).
17581 Without this change, on typical 64-bit hosts error ("...%d...", N)
17582 was used to print both 32- and 64-bit integers N, which relied on
17583 undefined behavior.
17584 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
17585 * lisp.h (error, verror): Mark as printf-like functions.
17586 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
17587 Report overflow in size calculations when allocating printf buffer.
17588 Do not truncate output string at its first null byte.
17589 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
17590 Truncate the output at a character boundary, since vsnprintf does not
17591 do that.
17592 * charset.c (check_iso_charset_parameter): Convert internal
17593 character to string before calling 'error', since %c now has the
17594 printf meaning.
17595 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
17596 overflow when computing char to be passed to 'error'. Do not
17597 pass Lisp_Object to 'error'; pass the integer instead.
17598 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
17599 formatted with plain %d.
17600
17601 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
17602
17603 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
17604
17605 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
17606
17607 * xterm.c (x_catch_errors): Remove duplicate declaration.
17608
17609 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
17610
17611 * xdisp.c, lisp.h (message_nolog): Remove; unused.
17612
17613 2011-04-10 Jim Meyering <meyering@redhat.com>
17614
17615 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
17616 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
17617 return ssize_t not "int", and use size_t as the buffer length.
17618 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
17619 * gnutls.h: Update declarations.
17620 * process.c (read_process_output): Use ssize_t, to match.
17621 (send_process): Likewise.
17622
17623 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17624
17625 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
17626
17627 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
17628
17629 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
17630 Use unsigned char, to match FcChar8 type definition.
17631
17632 * xterm.c (handle_one_xevent):
17633 * xmenu.c (create_and_show_popup_menu):
17634 * xselect.c (x_decline_selection_request)
17635 (x_reply_selection_request): Avoid type-punned deref of X events.
17636
17637 2011-04-09 Eli Zaretskii <eliz@gnu.org>
17638
17639 Fix some uses of `int' instead of EMACS_INT.
17640 * search.c (string_match_1, fast_string_match)
17641 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
17642 (scan_buffer, find_next_newline_no_quit)
17643 (find_before_next_newline, search_command, Freplace_match)
17644 (Fmatch_data): Make some `int' variables be EMACS_INT.
17645
17646 * xdisp.c (display_count_lines): 3rd argument and return value now
17647 EMACS_INT. All callers changed.
17648 (pint2hrstr): Last argument is now EMACS_INT.
17649
17650 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
17651 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
17652 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
17653 (decode_coding_utf_16, decode_coding_emacs_mule)
17654 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
17655 (decode_coding_ccl, decode_coding_charset)
17656 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
17657 (decode_coding_iso_2022, decode_coding_emacs_mule)
17658 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
17659 <char_offset, last_offset>: Declare EMACS_INT.
17660 (encode_coding_utf_8, encode_coding_utf_16)
17661 (encode_coding_emacs_mule, encode_invocation_designation)
17662 (encode_designation_at_bol, encode_coding_iso_2022)
17663 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
17664 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
17665 Declare EMACS_INT.
17666 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
17667 (encode_invocation_designation): Last argument P_NCHARS is now
17668 EMACS_INT.
17669 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
17670 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
17671
17672 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
17673 All users changed.
17674
17675 * ccl.c (Fccl_execute_on_string): Declare some variables
17676 EMACS_INT.
17677
17678 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
17679
17680 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
17681
17682 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
17683
17684 * process.c (Fformat_network_address): Doc fix.
17685
17686 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
17687
17688 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
17689
17690 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
17691
17692 * keyboard.c (read_char): Call Lisp function help-form-show,
17693 instead of using internal_with_output_to_temp_buffer.
17694 (Qhelp_form_show): New var.
17695 (syms_of_keyboard): Use DEFSYM macro.
17696
17697 * print.c (internal_with_output_to_temp_buffer): Function deleted.
17698
17699 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
17700
17701 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
17702
17703 * process.c (Flist_processes): Remove to Lisp.
17704 (list_processes_1): Delete.
17705
17706 2011-04-06 Eli Zaretskii <eliz@gnu.org>
17707
17708 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
17709
17710 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
17711
17712 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
17713
17714 Fix more problems found by GCC 4.6.0's static checks.
17715
17716 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
17717
17718 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
17719
17720 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
17721
17722 * xdisp.c (vmessage): Mark as a printf-like function.
17723
17724 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
17725
17726 * sound.c (sound_warning): Don't crash if arg contains a printf format.
17727
17728 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
17729 printf-like functions.
17730 (tiff_load): Add casts to remove these marks before passing them
17731 to system-supplied API.
17732
17733 * eval.c (Fsignal): Remove excess argument to 'fatal'.
17734
17735 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
17736 This avoids several warnings with gcc -Wstrict-overflow.
17737 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
17738 directly, rather than having caller test rule sign. This avoids
17739 some unnecessary tests.
17740 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
17741 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
17742 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
17743
17744 * xfont.c (xfont_text_extents): Remove var that was set but not used.
17745 (xfont_open): Avoid unnecessary tests.
17746
17747 * composite.c (composition_gstring_put_cache): Use unsigned integer.
17748
17749 * composite.h, composite.c (composition_gstring_put_cache):
17750 Use EMACS_INT, not int, for length.
17751
17752 * composite.h (COMPOSITION_DECODE_REFS): New macro,
17753 breaking out part of COMPOSITION_DECODE_RULE.
17754 (COMPOSITION_DECODE_RULE): Use it.
17755 * composite.c (get_composition_id): Remove unused local vars,
17756 by using the new macro.
17757
17758 * textprop.c (set_text_properties_1): Change while to do-while,
17759 since the condition is always true at first.
17760
17761 * intervals.c (graft_intervals_into_buffer): Mark var as used.
17762 (interval_deletion_adjustment): Return unsigned value.
17763 All uses changed.
17764
17765 * process.c (list_processes_1, create_pty, read_process_output):
17766 (exec_sentinel): Remove vars that were set but not used.
17767 (create_pty): Remove unnecessary "volatile"s.
17768 (Fnetwork_interface_info): Avoid possibility of int overflow.
17769 (read_process_output): Do adaptive read buffering even if carryover.
17770 (read_process_output): Simplify nbytes computation if buffered.
17771
17772 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
17773
17774 * syntax.c (scan_words): Remove var that was set but not used.
17775 (update_syntax_table): Use unsigned instead of int.
17776
17777 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
17778 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
17779 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
17780
17781 * print.c (print_error_message): Avoid int overflow.
17782
17783 * font.c (font_list_entities): Redo for clarity,
17784 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
17785
17786 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
17787 (font_score): Avoid potential overflow in diff calculation.
17788
17789 * fns.c (substring_both): Remove var that is set but not used.
17790 (sxhash): Redo loop for clarity and to avoid wraparound warning.
17791
17792 * eval.c (funcall_lambda): Rename local to avoid shadowing.
17793
17794 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
17795 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
17796 can always succeed if overflow has undefined behavior.
17797
17798 * search.c (boyer_moore, wordify): Remove vars set but not used.
17799 (wordify): Omit three unnecessary tests.
17800
17801 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
17802 All callers changed. This avoids the need for an unused var.
17803
17804 * casefiddle.c (casify_region): Remove var that is set but not used.
17805
17806 * dired.c (file_name_completion): Remove var that is set but not used.
17807
17808 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
17809
17810 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
17811 (Finsert_file_contents): Remove unnecessary code checking fd.
17812
17813 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
17814 Check for integer overflow on size calculations.
17815
17816 * buffer.c (Fprevious_overlay_change): Remove var that is set
17817 but not used.
17818
17819 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
17820 Remove vars that are set but not used.
17821 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
17822 (timer_check_2): Mark vars as initialized.
17823
17824 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
17825
17826 * image.c (lookup_image): Remove var that is set but not used.
17827 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
17828
17829 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
17830 that are set but not used.
17831
17832 * xfns.c (make_invisible_cursor): Don't return garbage
17833 if XCreateBitmapFromData fails (Bug#8410).
17834
17835 * xselect.c (x_get_local_selection, x_handle_property_notify):
17836 Remove vars that are set but not used.
17837
17838 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
17839 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
17840
17841 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
17842 Remove var that is set but not used.
17843 (scroll_bar_windows_size): Now size_t, not int.
17844 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
17845 Check for overflow.
17846
17847 * xfaces.c (realize_named_face): Remove vars that are set but not used.
17848 (map_tty_color) [!defined MSDOS]: Likewise.
17849
17850 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
17851
17852 * coding.c: Remove vars that are set but not used.
17853 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
17854 All callers changed.
17855 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
17856 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
17857 (decode_coding_charset): Remove vars that are set but not used.
17858
17859 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
17860 that is set but not used.
17861
17862 * print.c (print_object): Remove var that is set but not used.
17863
17864 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
17865 The gnulib version avoids calling malloc in the usual case,
17866 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
17867 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
17868 * filelock.c (current_lock_owner): Likewise.
17869 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
17870 * sysdep.c: Include allocator.h, careadlinkat.h.
17871 (emacs_no_realloc_allocator): New static constant.
17872 (emacs_readlink): New function.
17873 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
17874 ../lib/careadlinkat.h.
17875
17876 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
17877
17878 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
17879 first non-nil return value).
17880
17881 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
17882
17883 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
17884 if not defined (Bug#8403).
17885
17886 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
17887
17888 * xdisp.c (display_count_lines): Remove parameter `start',
17889 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
17890 (get_char_face_and_encoding): Remove parameter `multibyte_p',
17891 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
17892 (fill_stretch_glyph_string): Remove parameters `row' and `area',
17893 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
17894 and thereabouts. All callers changed.
17895 (get_per_char_metric): Remove parameter `f', unused since
17896 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
17897
17898 2011-04-02 Jim Meyering <meyering@redhat.com>
17899
17900 do not dereference NULL upon failed strdup
17901 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
17902 (ns_get_family): Likewise.
17903
17904 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
17905
17906 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
17907
17908 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
17909
17910 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
17911 later (Bug#8403).
17912
17913 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
17914
17915 Add lexical binding.
17916
17917 * window.c (Ftemp_output_buffer_show): New fun.
17918 (Fsave_window_excursion):
17919 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
17920
17921 * lread.c (lisp_file_lexically_bound_p): New function.
17922 (Fload): Bind Qlexical_binding.
17923 (readevalloop): Remove `evalfun' arg.
17924 Bind Qinternal_interpreter_environment.
17925 (Feval_buffer): Bind Qlexical_binding.
17926 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
17927 Mark as dynamic.
17928 (syms_of_lread): Declare `lexical-binding'.
17929
17930 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
17931
17932 * keyboard.c (eval_dyn): New fun.
17933 (menu_item_eval_property): Use it.
17934
17935 * image.c (parse_image_spec): Use Ffunctionp.
17936
17937 * fns.c (concat, mapcar1): Accept byte-code-functions.
17938
17939 * eval.c (Fsetq): Handle lexical vars.
17940 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
17941 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
17942 (FletX, Flet): Obey lexical binding.
17943 (Fcommandp): Handle closures.
17944 (Feval): New `lexical' arg.
17945 (eval_sub): New function extracted from Feval. Use it almost
17946 everywhere where Feval was used. Look up vars in lexical env.
17947 Handle closures.
17948 (Ffunctionp): Move from subr.el.
17949 (Ffuncall): Handle closures.
17950 (apply_lambda): Remove `eval_flags'.
17951 (funcall_lambda): Handle closures and new byte-code-functions.
17952 (Fspecial_variable_p): New function.
17953 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
17954 but without exporting it to Lisp.
17955
17956 * doc.c (Fdocumentation, store_function_docstring):
17957 * data.c (Finteractive_form): Handle closures.
17958
17959 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
17960 interactive spec.
17961
17962 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
17963 New byte-codes.
17964 (exec_byte_code): New function extracted from Fbyte_code to handle new
17965 calling convention for byte-code-functions. Add new byte-codes.
17966
17967 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
17968
17969 * alloc.c (Fmake_symbol): Init new `declared_special' field.
17970
17971 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
17972
17973 * xdisp.c (redisplay_internal): Fix prototype.
17974
17975 2011-03-31 Eli Zaretskii <eliz@gnu.org>
17976
17977 * xdisp.c (SCROLL_LIMIT): New macro.
17978 (try_scrolling): Use it when setting scroll_limit.
17979 Limit scrolling to 100 screen lines.
17980 (redisplay_window): Even when falling back on "recentering",
17981 position point in the window according to scroll-conservatively,
17982 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
17983
17984 (try_scrolling): When point is above the window, allow searching
17985 as far as scroll_max, or one screenful, to compute vertical
17986 distance from PT to the scroll margin position. This prevents
17987 try_scrolling from unnecessarily failing when
17988 scroll-conservatively is set to a value slightly larger than the
17989 window height. Clean up the case of PT below the margin at bottom
17990 of window: scroll_max can no longer be INT_MAX. When aggressive
17991 scrolling is in use, don't let point enter the opposite scroll
17992 margin as result of the scroll.
17993 (syms_of_xdisp) <scroll-conservatively>: Document the
17994 threshold of 100 lines for never-recentering scrolling.
17995
17996 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
17997
17998 * dispextern.h (move_it_by_lines):
17999 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
18000 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
18001 (message_log_check_duplicate): Remove parameters `prev_bol' and
18002 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
18003 (redisplay_internal): Remove parameter `preserve_echo_area',
18004 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
18005
18006 * indent.c (Fvertical_motion):
18007 * window.c (window_scroll_pixel_based, Frecenter):
18008 Don't pass `need_y_p' to `move_it_by_lines'.
18009
18010 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
18011
18012 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
18013 steal a few bits to be more compact.
18014 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
18015 Remove unneeded casts.
18016
18017 * bytecode.c (Fbyte_code): CAR and CDR can GC.
18018
18019 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
18020
18021 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
18022 binding" message (bug#7967).
18023
18024 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
18025
18026 Fix more problems found by GCC 4.6.0's static checks.
18027
18028 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
18029 Remove unused local var.
18030
18031 * editfns.c (Fmessage_box): Remove unused local var.
18032
18033 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
18034 (note_mode_line_or_margin_highlight, note_mouse_highlight):
18035 Omit unused local vars.
18036 * window.c (shrink_windows): Omit unused local var.
18037 * menu.c (digest_single_submenu): Omit unused local var.
18038 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
18039 Omit unused local var.
18040
18041 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
18042 Don't assume string length fits in int.
18043 (keyremap_step, read_key_sequence): Use size_t for sizes.
18044 (read_key_sequence): Don't check last_real_key_start redundantly.
18045
18046 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
18047 instead of alloca (Bug#8344).
18048
18049 * eval.c (Fbacktrace): Don't assume nargs fits in int.
18050 (Fbacktrace_frame): Don't assume nframes fits in int.
18051
18052 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
18053
18054 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
18055 concerns.
18056
18057 * term.c (produce_glyphless_glyph): Remove unnecessary test.
18058
18059 * cm.c (calccost): Turn while-do into do-while, for clarity.
18060
18061 * keyboard.c (syms_of_keyboard): Use the same style as later
18062 in this function when indexing through an array. This also
18063 works around GCC bug 48267.
18064
18065 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
18066
18067 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
18068
18069 * chartab.c (sub_char_table_ref_and_range): Redo for slight
18070 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
18071
18072 * keyboard.c, keyboard.h (num_input_events): Now size_t.
18073 This avoids undefined behavior on integer overflow, and is a bit
18074 more convenient anyway since it is compared to a size_t variable.
18075
18076 Variadic C functions now count arguments with size_t, not int.
18077 This avoids an unnecessary limitation on 64-bit machines, which
18078 caused (substring ...) to crash on large vectors (Bug#8344).
18079 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
18080 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
18081 All variadic functions and their callers changed accordingly.
18082 (struct gcpro.nvars): Now size_t, not int. All uses changed.
18083 * data.c (arith_driver, float_arith_driver): Likewise.
18084 * editfns.c (general_insert_function): Likewise.
18085 * eval.c (struct backtrace.nargs, interactive_p)
18086 (internal_condition_case_n, run_hook_with_args, apply_lambda)
18087 (funcall_lambda, mark_backtrace): Likewise.
18088 * fns.c (concat): Likewise.
18089 * frame.c (x_set_frame_parameters): Likewise.
18090 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
18091 0 if not found, not -1. All callers changed.
18092
18093 * alloc.c (garbage_collect): Don't assume stack size fits in int.
18094 (stack_copy_size): Now size_t, not int.
18095 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
18096
18097 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
18098
18099 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
18100 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
18101 All callers changed.
18102
18103 * lisp.h (multibyte_char_to_unibyte):
18104 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
18105 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
18106 * character.h (CHAR_TO_BYTE8):
18107 * cmds.c (internal_self_insert):
18108 * editfns.c (general_insert_function):
18109 * keymap.c (push_key_description):
18110 * search.c (Freplace_match):
18111 * xdisp.c (message_dolog, set_message_1): All callers changed.
18112
18113 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
18114
18115 * keyboard.c (safe_run_hook_funcall): New function.
18116 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
18117 don't set the hook to nil, but remove the offending function instead.
18118 (Qcommand_hook_internal): Remove, unused.
18119 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
18120 Vcommand_hook_internal.
18121
18122 * eval.c (enum run_hooks_condition): Remove.
18123 (funcall_nil, funcall_not): New functions.
18124 (run_hook_with_args): Call each function through a `funcall' argument.
18125 Remove `cond' argument, now redundant.
18126 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
18127 (Frun_hook_with_args_until_failure): Adjust accordingly.
18128 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
18129
18130 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
18131
18132 * dispextern.h (string_buffer_position): Remove declaration.
18133
18134 * print.c (strout): Remove parameter `multibyte', unused since
18135 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
18136
18137 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
18138 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
18139 All callers changed.
18140
18141 * w32.c (_wsa_errlist): Use braces for struct initializers.
18142
18143 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
18144 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
18145 All callers changed.
18146 (string_buffer_position): Likewise. Also, make static (it's never
18147 used outside xdisp.c).
18148 (cursor_row_p): Remove parameter `w', unused since
18149 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
18150 (decode_mode_spec): Remove parameter `precision', introduced during
18151 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
18152 All callers changed.
18153
18154 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
18155
18156 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
18157
18158 2011-03-27 Anders Lindgren <andlind@gmail.com>
18159
18160 * nsterm.m (ns_menu_bar_is_hidden): New variable.
18161 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
18162 (ns_update_auto_hide_menu_bar): New functions.
18163 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
18164 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
18165 ns_constrain_all_frames.
18166 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
18167 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
18168
18169 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
18170
18171 * nsmenu.m (runDialogAt): Remove argument to timer_check.
18172
18173 2011-03-27 Glenn Morris <rgm@gnu.org>
18174
18175 * syssignal.h: Replace RETSIGTYPE with void.
18176 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
18177 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
18178 Replace SIGTYPE with void everywhere.
18179 * s/usg5-4-common.h (SIGTYPE): Remove definition.
18180 * s/template.h (SIGTYPE): Remove commented out definition.
18181
18182 2011-03-26 Eli Zaretskii <eliz@gnu.org>
18183
18184 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
18185 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
18186
18187 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
18188
18189 * w32.c (read_unc_volume): Use parameter `henum', instead of
18190 global variable `wget_enum_handle'.
18191
18192 * keymap.c (describe_vector): Remove parameters `indices' and
18193 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
18194 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
18195
18196 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
18197
18198 * keyboard.c (timer_check): Remove parameter `do_it_now',
18199 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
18200 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
18201 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
18202
18203 * keyboard.c (read_char):
18204 * w32menu.c (w32_menu_display_help):
18205 * xmenu.c (show_help_event, menu_help_callback):
18206 Adjust calls to `show_help_echo'.
18207
18208 * gtkutil.c (xg_maybe_add_timer):
18209 * keyboard.c (readable_events):
18210 * process.c (wait_reading_process_output):
18211 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
18212
18213 * insdel.c (adjust_markers_gap_motion):
18214 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
18215 (gap_left, gap_right): Don't call it.
18216
18217 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
18218
18219 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
18220 incurred during fontification.
18221
18222 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18223
18224 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
18225 (DEFVAR_PER_BUFFER): Don't pass it.
18226
18227 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
18228 (scrolling_window): Don't pass it.
18229
18230 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
18231
18232 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
18233
18234 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
18235 and `suffix'.
18236 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
18237 of variables specific to SELinux and computation of `encoded_absname'.
18238
18239 * image.c (XPutPixel): Remove unused variable `height'.
18240
18241 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
18242
18243 * unexw32.c (get_section_info): Remove unused variable `section'.
18244
18245 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
18246 (system_process_attributes): Remove unused variable `sess'.
18247 (sys_read): Remove unused variable `err'.
18248
18249 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
18250 (w32_wnd_proc): Remove unused variable `isdead'.
18251 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
18252 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
18253 (x_create_tip_frame): Remove unused variable `tem'.
18254
18255 * w32inevt.c (w32_console_read_socket):
18256 Remove unused variable `no_events'.
18257
18258 * w32term.c (x_draw_composite_glyph_string_foreground):
18259 Remove unused variable `width'.
18260
18261 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
18262
18263 * w32term.c (x_set_glyph_string_clipping):
18264 Don't pass uninitialized region to CombineRgn.
18265
18266 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
18267
18268 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
18269 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
18270 (Fx_close_connection): Remove unused variable `i'.
18271
18272 * w32font.c (w32font_draw): Return number of glyphs.
18273 (w32font_open_internal): Remove unused variable `i'.
18274 (w32font_driver): Add missing initializer.
18275
18276 * w32menu.c (utf8to16): Remove unused variable `utf16'.
18277 (fill_in_menu): Remove unused variable `items_added'.
18278
18279 * w32term.c (last_mouse_press_frame): Remove static global variable.
18280 (w32_clip_to_row): Remove unused variable `f'.
18281 (x_delete_terminal): Remove unused variable `i'.
18282
18283 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
18284 (NOTHING): Remove unused static global variable.
18285 (uniscribe_check_otf): Remove unused variable `table'.
18286 (uniscribe_font_driver): Add missing initializers.
18287
18288 2011-03-23 Julien Danjou <julien@danjou.info>
18289
18290 * term.c (Fsuspend_tty, Fresume_tty):
18291 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
18292 * window.c (temp_output_buffer_show):
18293 * insdel.c (signal_before_change):
18294 * frame.c (Fhandle_switch_frame):
18295 * fileio.c (Fdo_auto_save):
18296 * emacs.c (Fkill_emacs):
18297 * editfns.c (save_excursion_restore):
18298 * cmds.c (internal_self_insert):
18299 * callint.c (Fcall_interactively):
18300 * buffer.c (Fkill_all_local_variables):
18301 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
18302 Use Frun_hooks.
18303 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
18304 unconditionally since it does the check itself.
18305
18306 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
18307
18308 Fix more problems found by GCC 4.5.2's static checks.
18309
18310 * coding.c (encode_coding_raw_text): Avoid unnecessary test
18311 the first time through the loop, since we know p0 < p1 then.
18312 This also avoids a gcc -Wstrict-overflow warning.
18313
18314 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
18315 leading to a memory leak, possible in functions like
18316 load_charset_map_from_file that can allocate an unbounded number
18317 of objects (Bug#8318).
18318
18319 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
18320 that could (at least in theory) be that large.
18321
18322 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
18323 This is less likely to overflow, and avoids undefined behavior if
18324 overflow does occur. All callers changed. Use strtoul to scan
18325 for the unsigned long integer.
18326 (pint2hrstr): Simplify and tune code slightly.
18327 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
18328
18329 * scroll.c (do_scrolling): Work around GCC bug 48228.
18330 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
18331
18332 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
18333 This also avoids a warning with gcc -Wstrict-overflow.
18334 (validate_x_resource_name): Simplify count usage.
18335 This also avoids a warning with gcc -Wstrict-overflow.
18336
18337 * fileio.c (Fcopy_file): Report error if fchown or fchmod
18338 fail (Bug#8306).
18339
18340 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
18341
18342 * process.c (Fmake_network_process): Use socklen_t, not int,
18343 where POSIX says socklen_t is required in portable programs.
18344 This fixes a porting bug on hosts like 64-bit HP-UX, where
18345 socklen_t is wider than int (Bug#8277).
18346 (Fmake_network_process, server_accept_connection):
18347 (wait_reading_process_output, read_process_output):
18348 Likewise.
18349
18350 * process.c: Rename or move locals to avoid shadowing.
18351 (list_processes_1, Fmake_network_process):
18352 (read_process_output_error_handler, exec_sentinel_error_handler):
18353 Rename or move locals.
18354 (Fmake_network_process): Define label "retry_connect" only if needed.
18355 (Fnetwork_interface_info): Fix pointer signedness.
18356 (process_send_signal): Add cast to avoid pointer signedness problem.
18357 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
18358 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
18359
18360 Make tparam.h and terminfo.c consistent.
18361 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
18362 Include tparam.h instead, since it declares them.
18363 * cm.h (PC): Remove extern decl; tparam.h now does this.
18364 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
18365 * terminfo.c: Include tparam.h, to check interfaces.
18366 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
18367 (tparam): Adjust signature to match interface in tparam.h;
18368 this removes some undefined behavior. Check that outstring and len
18369 are zero, which they always are with Emacs.
18370 * tparam.h (PC, BC, UP): New extern decls.
18371
18372 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
18373 (xftfont_open): Rename locals to avoid shadowing.
18374
18375 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
18376 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
18377 (OTF_TAG_SYM): Omit macro if not needed.
18378 (ftfont_list): Remove unused local.
18379 (get_adstyle_property, ftfont_pattern_entity):
18380 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
18381 Rename locals to avoid shadowing.
18382
18383 * xfont.c (xfont_list_family): Mark var as initialized.
18384
18385 * xml.c (make_dom): Now static.
18386
18387 * composite.c (composition_compute_stop_pos): Rename local to
18388 avoid shadowing.
18389 (composition_reseat_it): Remove unused locals.
18390 (find_automatic_composition, composition_adjust_point): Likewise.
18391 (composition_update_it): Mark var as initialized.
18392 (find_automatic_composition): Mark vars as initialized,
18393 with a FIXME (Bug#8290).
18394
18395 character.h: Rename locals to avoid shadowing.
18396 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
18397 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
18398 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
18399 (BUF_DEC_POS): Be more systematic about renaming local temporaries
18400 to avoid shadowing.
18401
18402 * textprop.c (property_change_between_p): Remove; unused.
18403
18404 * intervals.c (interval_start_pos): Now static.
18405
18406 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
18407
18408 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
18409 Rename locals to avoid shadowing.
18410
18411 * sound.c (wav_play, au_play, Fplay_sound_internal):
18412 Fix pointer signedness.
18413 (alsa_choose_format): Remove unused local var.
18414 (wav_play): Initialize a variable to 0, to prevent undefined
18415 behavior (Bug#8278).
18416
18417 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
18418
18419 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
18420
18421 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
18422 clobbering (Bug#8298).
18423 * sysdep.c (sys_subshell): Likewise.
18424 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
18425
18426 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
18427 This should get cleaned up, so that child_setup has the
18428 same signature on all platforms.
18429
18430 * callproc.c (call_process_cleanup): Now static.
18431 (relocate_fd): Rename locals to avoid shadowing.
18432
18433 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
18434
18435 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
18436 not to be necessary, and produces flickering.
18437
18438 2011-03-20 Glenn Morris <rgm@gnu.org>
18439
18440 * config.in: Remove file.
18441
18442 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
18443
18444 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
18445 are now in src/globals.h.
18446 (syms_of_minibuf): Remove spurious & from previous change.
18447
18448 2011-03-20 Leo Liu <sdl.web@gmail.com>
18449
18450 * minibuf.c (completing-read-function): New variable.
18451 (completing-read-default): Rename from completing-read.
18452 (completing-read): Call completing-read-function.
18453
18454 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
18455
18456 * xfaces.c (Fx_load_color_file):
18457 Read color file from absolute filename (bug#8250).
18458
18459 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
18460
18461 * makefile.w32-in: Update dependencies.
18462
18463 2011-03-17 Eli Zaretskii <eliz@gnu.org>
18464
18465 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
18466
18467 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
18468
18469 Fix more problems found by GCC 4.5.2's static checks.
18470
18471 * process.c (make_serial_process_unwind, send_process_trap):
18472 (sigchld_handler): Now static.
18473
18474 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
18475 That way, the code declares only the vars that it needs.
18476 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
18477 * s/cygwin.h (PTY_ITERATION): Likewise.
18478 * s/darwin.h (PTY_ITERATION): Likewise.
18479 * s/gnu-linux.h (PTY_ITERATION): Likewise.
18480
18481 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
18482 * process.c (allocate_pty): Don't declare stb unless it's needed.
18483
18484 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
18485 (CONSTANTLIM): Remove; unused.
18486 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
18487 Define only if needed.
18488
18489 * unexelf.c (unexec): Name an expression,
18490 to avoid gcc -Wbad-function-cast warning.
18491 Use a different way to cause a compilation error if anyone uses
18492 n rather than nn, a way that does not involve shadowing.
18493 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
18494
18495 * deps.mk (unexalpha.o): Remove; unused.
18496
18497 New file unexec.h, the (simple) interface for unexec (Bug#8267).
18498 * unexec.h: New file.
18499 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
18500 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
18501 Depend on unexec.h.
18502 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
18503 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
18504 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
18505 Change as necessary to match prototype in unexec.h.
18506
18507 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
18508 shadowing.
18509 (back_comment, skip_chars): Mark vars as initialized.
18510
18511 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
18512 Rename locals to avoid shadowing.
18513
18514 * lread.c (read1): Rewrite so as not to use empty "else".
18515 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
18516
18517 * print.c (Fredirect_debugging_output): Fix pointer signedess.
18518
18519 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
18520 warning when compiling print.c.
18521
18522 * font.c (font_unparse_fcname): Abort in an "impossible" situation
18523 instead of using an uninitialized var.
18524 (font_sort_entities): Mark var as initialized.
18525
18526 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
18527
18528 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
18529 pointers to constants.
18530 (font_parse_fcname): Remove unused vars.
18531 (font_delete_unmatched): Now static.
18532 (font_get_spec): Remove; unused.
18533 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
18534 (font_update_drivers, Ffont_get_glyphs, font_add_log):
18535 Rename or move locals to avoid shadowing.
18536
18537 * fns.c (require_nesting_list, require_unwind): Now static.
18538 (Ffillarray): Rename locals to avoid shadowing.
18539
18540 * floatfns.c (domain_error2): Define only if needed.
18541 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
18542
18543 * alloc.c (mark_backtrace): Move decl from here ...
18544 * lisp.h: ... to here, so that it can be checked.
18545
18546 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
18547 (Fdefvar): Rewrite so as not to use empty "else".
18548 (lisp_indirect_variable): Name an expression,
18549 to avoid gcc -Wbad-function-cast warning.
18550 (Fdefvar): Rename locals to avoid shadowing.
18551
18552 * callint.c (quotify_arg, quotify_args): Now static.
18553 (Fcall_interactively): Rename locals to avoid shadowing.
18554 Use const pointer when appropriate.
18555
18556 * lisp.h (get_system_name, get_operating_system_release):
18557 Move decls here, to check interfaces.
18558 * process.c (get_operating_system_release): Move decl to lisp.h.
18559 * xrdb.c (get_system_name): Likewise.
18560 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
18561 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
18562 some of which prompt warnings from gcc -Wbad-function-cast.
18563 (Fformat_time_string, Fencode_time, Finsert_char):
18564 (Ftranslate_region_internal, Fformat):
18565 Rename or remove local vars to avoid shadowing.
18566 (Ftranslate_region_internal): Mark var as initialized.
18567
18568 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
18569 avoid shadowing.
18570
18571 * lisp.h (eassert): Check that the argument compiles, even if
18572 ENABLE_CHECKING is not defined.
18573
18574 * data.c (Findirect_variable): Name an expression, to avoid
18575 gcc -Wbad-function-cast warning.
18576 (default_value, arithcompare, arith_driver, arith_error): Now static.
18577 (store_symval_forwarding): Rename local to avoid shadowing.
18578 (Fmake_variable_buffer_local, Fmake_local_variable):
18579 Mark variables as initialized.
18580 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
18581
18582 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
18583 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
18584 Rename locals to avoid shadowing.
18585 (mark_stack): Move local variables into the #ifdef region where
18586 they're used.
18587 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
18588 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
18589 needed otherwise.
18590 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
18591 (GC_STRING_CHARS): Remove; not used.
18592 (Fmemory_limit): Cast sbrk's returned value to char *.
18593
18594 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
18595 avoids undefined behavior in theory.
18596
18597 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
18598
18599 Use functions, not macros, for up- and down-casing (Bug#8254).
18600 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
18601 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
18602 to use the following functions instead of these macros.
18603 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
18604 EMACS_INT, since callers assume the returned value fits in int.
18605 (upcase1): Likewise, for UPCASE_TABLE.
18606 (uppercasep, lowercasep, upcase): New static inline functions.
18607 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
18608 the race-condition problem in the old DOWNCASE.
18609
18610 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
18611 Rename locals to avoid shadowing.
18612 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
18613 (regex_compile, re_search_2, re_match_2_internal):
18614 Remove unused local vars.
18615 (FREE_VAR): Rewrite so as not to use empty "else",
18616 which gcc can warn about.
18617 (regex_compile, re_match_2_internal): Mark locals as initialized.
18618 (RETALLOC_IF): Define only if needed.
18619 (WORDCHAR_P): Likewise. This one is never needed, but is used
18620 only in a comment talking about a compiler bug, so put inside
18621 the #if 0 of that comment.
18622 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
18623 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
18624 Remove; unused.
18625
18626 * search.c (boyer_moore): Rename locals to avoid shadowing.
18627 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
18628 (PREV_CHAR_BOUNDARY): Likewise.
18629
18630 * search.c (simple_search): Remove unused var.
18631
18632 * dired.c (compile_pattern): Move decl from here ...
18633 * lisp.h: ... to here, so that it can be checked.
18634 (struct re_registers): New forward decl.
18635
18636 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
18637
18638 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
18639 All uses changed.
18640 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
18641 Rename locals to avoid shadowing.
18642 (Fvertical_motion): Mark locals as initialized.
18643
18644 * casefiddle.c (casify_object, casify_region): Now static.
18645 (casify_region): Mark local as initialized.
18646
18647 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
18648
18649 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
18650 New macros, so that the caller can use some names other than
18651 gcpro1, gcpro2, etc.
18652 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
18653 of the new macros.
18654 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
18655 argument, for consistency with GCPRO2_VAR, etc: it is now the
18656 prefix of the variable, not the variable itself. All uses
18657 changed.
18658 * dired.c (directory_files_internal, file_name_completion):
18659 Rename locals to avoid shadowing.
18660
18661 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
18662 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
18663 dired.c's scmp function, had undefined behavior.
18664 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
18665 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
18666 * buffer.h: ... to here, because these macros use current_buffer,
18667 and the new implementation with inline functions needs to have
18668 current_buffer in scope now, rather than later when the macros
18669 are used.
18670 (downcase, upcase1): New static inline functions.
18671 (DOWNCASE, UPCASE1): Reimplement using these functions.
18672 This avoids undefined behavior in expressions like
18673 DOWNCASE (x) == DOWNCASE (y), which previously suffered
18674 from race conditions in accessing the global variables
18675 case_temp1 and case_temp2.
18676 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
18677 * lisp.h (case_temp1, case_temp2): Remove their decls.
18678 * character.h (ASCII_CHAR_P): Move from here ...
18679 * lisp.h: ... to here, so that the inline functions mentioned
18680 above can use them.
18681
18682 * dired.c (directory_files_internal_unwind): Now static.
18683
18684 * fileio.c (file_name_as_directory, directory_file_name):
18685 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
18686 Now static.
18687 (file_name_as_directory): Use const pointers when appropriate.
18688 (Fexpand_file_name): Likewise. In particular, newdir might
18689 point at constant storage, so make it a const pointer.
18690 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
18691 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
18692 signedness issues.
18693 (Fset_file_times, Finsert_file_contents, auto_save_error):
18694 Rename locals to avoid shadowing.
18695
18696 * minibuf.c (choose_minibuf_frame_1): Now static.
18697 (Ftry_completion, Fall_completions): Rename or remove locals
18698 to avoid shadowing.
18699
18700 * marker.c (bytepos_to_charpos): Remove; unused.
18701
18702 * lisp.h (verify_bytepos, count_markers): New decls,
18703 so that gcc does not warn that these functions aren't declared.
18704
18705 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
18706 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
18707 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
18708 (copy_text): Remove unused local var.
18709
18710 * filelock.c (within_one_second): Now static.
18711 (lock_file_1): Rename local to avoid shadowing.
18712
18713 * buffer.c (fix_overlays_before): Mark locals as initialized.
18714 (fix_start_end_in_overlays): Likewise. This function should be
18715 simplified by using pointers-to-pointers, but that's a different
18716 matter.
18717 (switch_to_buffer_1): Now static.
18718 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
18719 (report_overlay_modification): Rename locals to avoid shadowing.
18720
18721 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
18722 Fix pointer signedness issue.
18723 (sys_subshell): Mark local as volatile if checking for lint,
18724 to suppress a gcc -Wclobbered warning that does not seem to be right.
18725 (MAXPATHLEN): Define only if needed.
18726
18727 * process.c (serial_open, serial_configure): Move decls from here ...
18728 * systty.h: ... to here, so that they can be checked.
18729
18730 * fns.c (get_random, seed_random): Move extern decls from here ...
18731 * lisp.h: ... to here, so that they can be checked.
18732
18733 * sysdep.c (reset_io): Now static.
18734 (wait_for_termination_signal): Remove; unused.
18735
18736 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
18737 (copy_keymap_item, append_key, push_text_char_description):
18738 Now static.
18739 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
18740 (DENSE_TABLE_SIZE): Remove; unused.
18741 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
18742 (describe_map_tree):
18743 Rename locals to avoid shadowing.
18744
18745 * keyboard.c: Declare functions static if they are not used elsewhere.
18746 (echo_char, echo_dash, cmd_error, top_level_2):
18747 (poll_for_input, handle_async_input): Now static.
18748 (read_char, kbd_buffer_get_event, make_lispy_position):
18749 (make_lispy_event, make_lispy_movement, apply_modifiers):
18750 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
18751 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
18752 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
18753 (read_key_sequence, read_char): Mark locals as initialized.
18754 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
18755
18756 * keyboard.h (make_ctrl_char): New decl.
18757 (mark_kboards): Move decl here ...
18758 * alloc.c (mark_kboards): ... from here.
18759
18760 * lisp.h (force_auto_save_soon): New decl.
18761
18762 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
18763 (DEFINE_DUMMY_FUNCTION): New macro.
18764 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
18765 Use it.
18766 (main): Add casts to avoid warnings
18767 if GCC considers string literals to be constants.
18768
18769 * lisp.h (fatal_error_signal): Add decl, since it's exported.
18770
18771 * dbusbind.c: Pointer signedness fixes.
18772 (xd_signature, xd_append_arg, xd_initialize):
18773 (Fdbus_call_method, Fdbus_call_method_asynchronously):
18774 (Fdbus_method_return_internal, Fdbus_method_error_internal):
18775 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
18776 (Fdbus_register_signal): Use SSDATA when the context wants char *.
18777
18778 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
18779 if GCC considers string literals to be constants.
18780 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
18781
18782 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
18783
18784 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
18785 (print_preprocess, print_object): New macro to fix last change.
18786
18787 * print.c (print_preprocess): Don't forget font objects.
18788
18789 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
18790
18791 * emacs.c (USAGE3): Doc fixes.
18792
18793 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
18794
18795 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
18796 structure.
18797
18798 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
18799
18800 * lisp.h (VWindow_system, Qfile_name_history):
18801 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
18802 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
18803 (w32_system_caret_x, w32_system_caret_y): Declare extern.
18804
18805 * w32select.c: Don't #include "keyboard.h".
18806 (run_protected): Add extern declaration for waiting_for_input.
18807
18808 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
18809 * w32console.c (detect_input_pending, read_input_pending)
18810 (encode_terminal_code):
18811 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
18812 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
18813 (w32_system_caret_y, Qfile_name_history):
18814 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
18815 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
18816 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
18817 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
18818 * w32proc.c (Qlocal, report_file_error):
18819 * w32term.c (Vwindow_system, updating_frame):
18820 * w32uniscribe.c (initialized, uniscribe_font_driver):
18821 Remove unneeded extern declarations.
18822
18823 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
18824
18825 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
18826
18827 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
18828
18829 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
18830 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
18831 These macros can no longer be used for assignment.
18832
18833 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
18834 Assign struct members directly, instead of using BUF_BEGV etc.
18835 (record_buffer_markers, fetch_buffer_markers): New functions for
18836 recording and fetching special buffer markers.
18837 (set_buffer_internal_1, set_buffer_temp): Use them.
18838
18839 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
18840
18841 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
18842
18843 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
18844 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
18845
18846 * xdisp.c (hscroll_window_tree):
18847 (reconsider_clip_changes): Use PT instead of BUF_PT.
18848
18849 2011-03-13 Eli Zaretskii <eliz@gnu.org>
18850
18851 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
18852 $(EMACS_ROOT)/lib/intprops.h.
18853
18854 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
18855
18856 Fix more problems found by GCC 4.5.2's static checks.
18857
18858 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
18859 to unsigned char * to avoid compiler diagnostic.
18860 (xg_free_frame_widgets): Make it clear that a local variable is
18861 needed only if USE_GTK_TOOLTIP.
18862 (gdk_window_get_screen): Make it clear that this macro is needed
18863 only if USE_GTK_TOOLTIP.
18864 (int_gtk_range_get_value): New function, which avoids a diagnostic
18865 from gcc -Wbad-function-cast.
18866 (xg_set_toolkit_scroll_bar_thumb): Use it.
18867 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
18868 diagnostic from gcc -Wbad-function-cast.
18869 (get_utf8_string, xg_get_file_with_chooser):
18870 Rename locals to avoid shadowing.
18871 (create_dialog): Move locals to avoid shadowing.
18872
18873 * xgselect.c (xg_select): Remove unused var.
18874
18875 * image.c (four_corners_best): Mark locals as initialized.
18876 (gif_load): Initialize transparent_p to zero (Bug#8238).
18877 Mark another local as initialized.
18878 (my_png_error, my_error_exit): Mark with NO_RETURN.
18879
18880 * image.c (clear_image_cache): Now static.
18881 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
18882 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
18883 (x_edge_detection): Remove unnecessary cast that
18884 gcc -Wbad-function-cast diagnoses.
18885 (gif_load): Fix pointer signedness.
18886 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
18887 (jpeg_load, gif_load): Rename locals to avoid shadowing.
18888
18889 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
18890
18891 Improve quality of tests for time stamp overflow.
18892 For example, without this patch (encode-time 0 0 0 1 1
18893 1152921504606846976) returns the obviously-bogus value (-948597
18894 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
18895 reports time overflow. See
18896 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
18897 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
18898 * editfns.c: Include limits.h and intprops.h.
18899 (TIME_T_MIN, TIME_T_MAX): New macros.
18900 (time_overflow): Move earlier, to before first use.
18901 (hi_time, lo_time): New functions, for an accurate test for
18902 out-of-range times.
18903 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
18904 (Fget_internal_run_time): Don't assume time_t fits in int.
18905 (make_time): Use list2 instead of Fcons twice.
18906 (Fdecode_time): More accurate test for out-of-range times.
18907 (check_tm_member): New function.
18908 (Fencode_time): Use it, to test for out-of-range times.
18909 (lisp_time_argument): Don't rely on undefined left-shift and
18910 right-shift behavior when checking for time stamp overflow.
18911
18912 * editfns.c (time_overflow): New function, refactoring common code.
18913 (Fformat_time_string, Fdecode_time, Fencode_time):
18914 (Fcurrent_time_string): Use it.
18915
18916 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
18917 * dired.c (make_time): Move to ...
18918 * editfns.c (make_time): ... here.
18919 * systime.h: Note the move.
18920
18921 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18922
18923 * fringe.c (update_window_fringes): Remove unused variables.
18924
18925 * unexmacosx.c (copy_data_segment): Also copy __got section.
18926 (Bug#8223)
18927
18928 2011-03-12 Eli Zaretskii <eliz@gnu.org>
18929
18930 * termcap.c [MSDOS]: Include "msdos.h".
18931 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
18932 Constify `char *' arguments and their references according to
18933 prototypes in tparam.h.
18934
18935 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
18936
18937 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
18938 Adapt all references accordingly.
18939
18940 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
18941
18942 2011-03-11 Tom Tromey <tromey@redhat.com>
18943
18944 * buffer.c (syms_of_buffer): Remove obsolete comment.
18945
18946 2011-03-11 Eli Zaretskii <eliz@gnu.org>
18947
18948 * termhooks.h (encode_terminal_code): Declare prototype.
18949
18950 * msdos.c (encode_terminal_code): Don't declare prototype.
18951
18952 * term.c (encode_terminal_code): Now external again, used by
18953 w32console.c and msdos.c.
18954
18955 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
18956 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
18957
18958 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
18959
18960 Fix some minor problems found by GCC 4.5.2's static checks.
18961
18962 * fringe.c (update_window_fringes): Mark locals as initialized
18963 (Bug#8227).
18964 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
18965
18966 * alloc.c (mark_fringe_data): Move decl from here ...
18967 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
18968 to check its interface.
18969 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
18970
18971 * fontset.c (free_realized_fontset): Now static.
18972 (Fset_fontset_font): Rename local to avoid shadowing.
18973 (fontset_font): Mark local as initialized.
18974 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
18975
18976 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
18977
18978 * xselect.c (x_disown_buffer_selections): Remove; not used.
18979 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
18980 (x_own_selection, Fx_disown_selection_internal): Rename locals
18981 to avoid shadowing.
18982 (x_handle_dnd_message): Remove local to avoid shadowing.
18983
18984 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
18985 so that the caller can use some name other than gcpro1.
18986 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
18987 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
18988 (Fx_backspace_delete_keys_p):
18989 Use them to avoid shadowing, and rename vars to avoid shadowing.
18990 (x_decode_color, x_set_name, x_window): Now static.
18991 (Fx_create_frame): Add braces to silence GCC warning.
18992 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
18993 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
18994 Remove unused locals.
18995 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
18996 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
18997 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
18998 macros.
18999
19000 * xterm.h (x_mouse_leave): New decl.
19001
19002 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
19003 Remove unused functions.
19004 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
19005 (x_calc_absolute_position): Now static.
19006 (XTread_socket): Don't define label "out" unless it's used.
19007 Don't declare local "event" unless it's used.
19008 (x_iconify_frame, x_free_frame_resources): Don't declare locals
19009 unless they are used.
19010 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
19011 (x_fatal_error_signal): Remove; not used.
19012 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
19013 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
19014 (x_error_catcher, x_connection_closed, x_error_handler):
19015 (x_error_quitter, xembed_send_message, x_iconify_frame):
19016 (my_log_handler): Rename locals to avoid shadowing.
19017 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
19018 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
19019
19020 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
19021 Rename or move locals to avoid shadowing.
19022 (tty_defined_color, merge_face_heights): Now static.
19023 (free_realized_faces_for_fontset): Remove; not used.
19024 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
19025 does not deduce is never used uninitialized.
19026 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
19027 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
19028
19029 * terminal.c (store_terminal_param): Now static.
19030
19031 * xmenu.c (menu_highlight_callback): Now static.
19032 (set_frame_menubar): Remove unused local.
19033 (xmenu_show): Rename parameter to avoid shadowing.
19034 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
19035 since they might point to immutable storage.
19036 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
19037 since it's unused otherwise.
19038
19039 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
19040 Add a FIXME, since the code still doesn't look right. (Bug#8215)
19041 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
19042 avoids a gcc -Wuninitialized diagnostic.
19043 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
19044 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
19045 does not deduce are never used uninitialized.
19046
19047 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
19048
19049 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
19050 * window.c (window_loop, size_window):
19051 (run_window_configuration_change_hook, enlarge_window): Likewise.
19052
19053 * window.c (display_buffer): Now static.
19054 (size_window): Mark variables that gcc -Wuninitialized
19055 does not deduce are never used uninitialized.
19056 * window.h (check_all_windows): New decl, to forestall
19057 gcc -Wmissing-prototypes diagnostic.
19058 * dispextern.h (bidi_dump_cached_states): Likewise.
19059
19060 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
19061 shadowing.
19062 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
19063 Include <limits.h>.
19064 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
19065 and to avoid gcc -Wuninitialized warning.
19066 (load_charset_map): Mark variables that gcc -Wuninitialized
19067 does not deduce are never used uninitialized.
19068 (load_charset): Abort instead of using uninitialized var (Bug#8229).
19069
19070 * coding.c (coding_set_source, coding_set_destination):
19071 Use "else { /* comment */ }" rather than "else /* comment */;"
19072 for clarity, and to avoid gcc -Wempty-body warning.
19073 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
19074 a block, when the outer 'i' will do.
19075 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
19076 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
19077 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
19078 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
19079 (Fdecode_sjis_char, Fdefine_coding_system_internal):
19080 Rename locals to avoid shadowing.
19081 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
19082 * coding.c (emacs_mule_char, encode_invocation_designation):
19083 Now static, since they're not used elsewhere.
19084 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
19085 (decode_coding_object, encode_coding_object, detect_coding_system):
19086 (decode_coding_emacs_mule): Mark variables that gcc
19087 -Wuninitialized does not deduce are never used uninitialized.
19088 (detect_coding_iso_2022): Initialize a local variable that might
19089 be used uninitialized. Leave a FIXME because it's not clear that
19090 this initialization is needed. (Bug#8211)
19091 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
19092 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
19093 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
19094 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
19095 Remove unused macros.
19096
19097 * category.c (hash_get_category_set): Remove unused local var.
19098 (copy_category_table): Now static, since it's not used elsewhere.
19099 * character.c (string_count_byte8): Likewise.
19100
19101 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
19102 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
19103
19104 * chartab.c (copy_sub_char_table): Now static, since it's not used
19105 elsewhere.
19106 (sub_char_table_ref_and_range, char_table_ref_and_range):
19107 Rename locals to avoid shadowing.
19108 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
19109
19110 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
19111 (BIDI_BOB): Remove unused macro.
19112
19113 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
19114 deduce are never used uninitialized.
19115 * term.c (encode_terminal_code): Likewise.
19116
19117 * term.c (encode_terminal_code): Now static. Remove unused local.
19118
19119 * tparam.h: New file.
19120 * term.c, tparam.h: Include it.
19121 * deps.mk (term.o, tparam.o): Depend on tparam.h.
19122 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
19123 Move these decls to tparam.h, and make them agree with what
19124 is actually in tparam.c. The previous trick of using incompatible
19125 decls in different modules does not conform to the C standard.
19126 All callers of tparam changed to use tparam's actual API.
19127 * tparam.c (tparam1, tparam, tgoto):
19128 Use const pointers where appropriate.
19129
19130 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
19131 * cm.h (struct cm): Likewise.
19132 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
19133 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
19134 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
19135 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
19136 (turn_on_face, init_tty): Likewise.
19137 * termchar.h (struct tty_display_info): Likewise.
19138
19139 * term.c (term_mouse_position): Rename local to avoid shadowing.
19140
19141 * alloc.c (mark_ttys): Move decl from here ...
19142 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
19143
19144 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
19145
19146 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
19147
19148 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
19149
19150 * search.c (compile_pattern_1): Remove argument regp, unused since
19151 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
19152 (compile_pattern): Don't pass it.
19153
19154 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
19155
19156 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
19157 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
19158 for ! HAVE_GTK3.
19159 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
19160
19161 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
19162
19163 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
19164 gdk_window_get_screen, gdk_window_get_geometry,
19165 gdk_x11_window_lookup_for_display and GDK_KEY_g.
19166 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
19167 (xg_get_pixbuf_from_pixmap): New function.
19168 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
19169 to Pixmap, take frame as parameter, remove GdkColormap parameter.
19170 Call xg_get_pixbuf_from_pixmap instead of
19171 gdk_pixbuf_get_from_drawable.
19172 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
19173 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
19174 (xg_check_special_colors): Use GtkStyleContext and its functions
19175 for HAVE_GTK3.
19176 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
19177 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
19178 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
19179 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
19180 Call gtk_widget_get_preferred_size.
19181 (xg_frame_resized): gdk_window_get_geometry only takes 5
19182 parameters.
19183 (xg_win_to_widget, xg_event_is_for_menubar):
19184 Call gdk_x11_window_lookup_for_display.
19185 (xg_set_widget_bg): New function.
19186 (delete_cb): New function.
19187 (xg_create_frame_widgets): Connect delete-event to delete_cb.
19188 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
19189 (xg_set_background_color): Call xg_set_widget_bg.
19190 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
19191 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
19192 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
19193 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
19194 if ! HAVE_GTK3.
19195 (update_frame_tool_bar): Call gtk_widget_hide.
19196 (xg_initialize): Use GDK_KEY_g.
19197
19198 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
19199 if ! HAVE_GTK3
19200 (x_session_initialize): Call gdk_x11_set_sm_client_id.
19201
19202 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
19203 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
19204 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
19205
19206 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
19207
19208 * w32xfns.c (select_palette): Check success of RealizePalette against
19209 GDI_ERROR, not zero.
19210
19211 See ChangeLog.11 for earlier changes.
19212
19213 ;; Local Variables:
19214 ;; coding: utf-8
19215 ;; End:
19216
19217 Copyright (C) 2011-2012 Free Software Foundation, Inc.
19218
19219 This file is part of GNU Emacs.
19220
19221 GNU Emacs is free software: you can redistribute it and/or modify
19222 it under the terms of the GNU General Public License as published by
19223 the Free Software Foundation, either version 3 of the License, or
19224 (at your option) any later version.
19225
19226 GNU Emacs is distributed in the hope that it will be useful,
19227 but WITHOUT ANY WARRANTY; without even the implied warranty of
19228 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
19229 GNU General Public License for more details.
19230
19231 You should have received a copy of the GNU General Public License
19232 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.