* src/lisp.h (struct backtrace): Remove indirection for `function' field.
[bpt/emacs.git] / src / ChangeLog
1 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
2
3 * lisp.h (struct backtrace): Remove indirection for `function' field.
4 * xdisp.c (redisplay_internal):
5 * profiler.c (record_backtrace, sigprof_handler_1):
6 * alloc.c (Fgarbage_collect):
7 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
8 (Fbacktrace_frame): Adjust accordingly.
9
10 2012-09-28 Glenn Morris <rgm@gnu.org>
11
12 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
13 (Frun_hook_with_args_until_failure): Doc fixes.
14
15 2012-09-28 Eli Zaretskii <eliz@gnu.org>
16
17 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
18 Qautomatic_redisplay and change the symbol name. All users changed.
19
20 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
21
22 * profiler.c (sigprof_handler): Fix race condition.
23
24 2012-09-28 Glenn Morris <rgm@gnu.org>
25
26 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
27
28 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
29
30 Check more robustly for timer_settime.
31 * Makefile.in (LIB_TIMER_TIME): New macro.
32 (LIBES): Add it.
33 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
34 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
35 call timer_settime.
36
37 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
38
39 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
40
41 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
42
43 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
44
45 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
46
47 * character.h (MAYBE_UNIFY_CHAR): Remove.
48 * charset.c, charset.h (maybe_unify_char): Now static.
49 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
50 Since this stuff is now private to charset.c, there's no need for
51 a public macro and no need to inline by hand.
52
53 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
54 Stefan Monnier <monnier@iro.umontreal.ca>
55 Juanma Barranquero <lekktu@gmail.com>
56
57 * profiler.c: New file.
58 * Makefile.in (base_obj): Add profiler.o.
59 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
60 ($(BLD)/profiler.$(O)): New target.
61 * emacs.c (main): Call syms_of_profiler.
62 * alloc.c (Qautomatic_gc): New constant.
63 (MALLOC_PROBE): New macro.
64 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
65 (total_bytes_of_live_objects): New function.
66 (Fgarbage_collect): Use it. Record itself in backtrace_list.
67 Call malloc_probe for the memory profiler.
68 (syms_of_alloc): Define Qautomatic_gc.
69 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
70 race condition.
71 (struct backtrace): Move definition...
72 * lisp.h (struct backtrace): ..here.
73 (Qautomatic_gc, profiler_memory_running): Declare vars.
74 (malloc_probe, syms_of_profiler): Declare functions.
75 * xdisp.c (Qautomatic_redisplay): New constant.
76 (redisplay_internal): Record itself in backtrace_list.
77 (syms_of_xdisp): Define Qautomatic_redisplay.
78
79 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
80
81 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
82
83 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
84
85 Prefer POSIX timers if available.
86 They avoid a race if the timer is too close to the current time.
87 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
88 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
89 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
90
91 2012-09-25 Eli Zaretskii <eliz@gnu.org>
92
93 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
94 CHAR_STRING_ADVANCE.
95 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
96 STRING_CHAR_ADVANCE.
97
98 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
99
100 Move Vlibrary_cache to emacs.c and reset before dumping.
101
102 * lisp.h (reset_image_types): Declare.
103 [WINDOWSNT] (Vlibrary_cache): Declare.
104
105 * image.c (reset_image_types): New function.
106
107 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
108 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
109 (Fdump_emacs): Reset Vlibrary_cache and image_types.
110
111 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
112 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
113
114 * w32.h (Vlibrary_cache): Do not declare.
115
116 2012-09-25 Eli Zaretskii <eliz@gnu.org>
117
118 * w32proc.c (sys_signal): Handle all signals defined by the
119 MS-Windows runtime, not just SIGCHLD. Actually install the signal
120 handlers for signals supported by Windows. Don't override
121 term_ntproc as the handler for SIGABRT.
122 (sigaction): Rewrite to call sys_signal instead of duplicating its
123 code.
124 (sys_kill): Improve commentary.
125
126 * w32.c (term_ntproc): Accept (and ignore) one argument, for
127 consistency with a signature of a signal handler. All callers
128 changed.
129 (init_ntproc): Accept an argument DUMPING. If dumping, don't
130 install term_ntproc as a signal handler for SIGABRT, as that
131 should be done by the dumped Emacs.
132
133 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
134
135 * w32select.c (term_w32select): Protect against repeated
136 invocation by setting clipboard_owner to NULL after calling
137 DestroyWindow.
138
139 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
140 and term_ntproc to their modified signatures.
141
142 * character.c (char_string, string_char): Remove calls to
143 MAYBE_UNIFY_CHAR. See the discussion starting at
144 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
145 for the details.
146
147 2012-09-25 Chong Yidong <cyd@gnu.org>
148
149 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
150
151 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
152
153 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
154 when encountering an unknown bytecode.
155
156 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
157
158 image.c, indent.c: Use bool for booleans.
159 * dispextern.h (struct image_type): Members valid_p, load, init
160 now return bool, not int. All uses changed.
161 * image.c: Omit unnecessary static decls.
162 (x_create_bitmap_mask, x_build_heuristic_mask):
163 Return void, not int, since callers don't care about the return value.
164 (x_create_bitmap_mask, define_image_type, valid_image_p)
165 (struct image_keyword, parse_image_spec, image_spec_value)
166 (check_image_size, image_background)
167 (image_background_transparent, x_clear_image_1)
168 (postprocess_image, lookup_image, x_check_image_size)
169 (x_create_x_image_and_pixmap, xbm_image_p)
170 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
171 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
172 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
173 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
174 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
175 (png_image_p, init_png_functions, png_load_body, png_load)
176 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
177 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
178 (init_gif_functions, gif_load, imagemagick_image_p)
179 (imagemagick_load_image, imagemagick_load, svg_image_p)
180 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
181 (gs_load):
182 * nsimage.m (ns_load_image):
183 * nsterm.m (ns_defined_color):
184 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
185 * xfns.c (x_defined_color):
186 * xterm.c (x_alloc_lighter_color_for_widget)
187 (x_alloc_nearest_color_1, x_alloc_nearest_color)
188 (x_alloc_lighter_color):
189 * indent.c (disptab_matches_widthtab, current_column)
190 (scan_for_column, string_display_width, indented_beyond_p)
191 (compute_motion, vmotion, Fvertical_motion):
192 Use bool for booleans.
193
194 2012-09-24 Chong Yidong <cyd@gnu.org>
195
196 * chartab.c (Fset_char_table_default): Obsolete function removed.
197
198 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
199
200 Move pid_t related decls out of lisp.h.
201 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
202 (interruptible_wait_for_termination):
203 Move these decls from lisp.h to syswait.h, since they use pid_t.
204 Needed on FreeBSD; see Herbert J. Skuhra in
205 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
206 * callproc.c: Include syswait.h.
207
208 gnutls.c, gtkutil.c: Use bool for boolean.
209 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
210 (emacs_gnutls_handle_error):
211 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
212 (xg_hide_tooltip, xg_create_frame_widgets)
213 (create_dialog, xg_uses_old_file_dialog)
214 (xg_get_file_with_chooser, xg_get_file_with_selection)
215 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
216 (xg_item_label_same_p, xg_update_menubar)
217 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
218 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
219 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
220 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
221 (update_frame_tool_bar, free_frame_tool_bar):
222 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
223 * nsmenu.m (ns_update_menubar):
224 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
225 * xfns.c (Fx_show_tip) [USE_GTK]:
226 Use bool for boolean.
227 * gtkutil.c (xg_update_frame_menubar):
228 * xmenu.c (update_frame_menubar):
229 Return void, not int, since caller ignores return value.
230 * gtkutil.c (xg_change_toolbar_position):
231 Return void, not 1.
232
233 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
234
235 * makefile.w32-in (BLOCKINPUT_H): Remove.
236 (SYSSIGNAL_H): New macro.
237 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
238 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
239 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
240 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
241 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
242 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
243 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
244 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
245 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
246 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
247 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
248 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
249 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
250 ($(BLD)/w32xfns.$(O)): Update dependencies.
251
252 2012-09-23 Eli Zaretskii <eliz@gnu.org>
253
254 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
255 fatal_error_backtrace.
256
257 * w32proc.c (sys_kill): Undo last change: don't do anything when
258 invoked to deliver SIGABRT to our own process. This is now
259 handled by emacs_raise.
260
261 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
262
263 * w32term.c (w32_read_socket): Remove leftover reference to
264 interrupt_input_pending.
265
266 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
267
268 Do not use SA_NODEFER.
269 Problem reported by Dani Moncayo in
270 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
271 * alloc.c (die):
272 * sysdep.c (emacs_abort): Do not reset signal handler.
273 * emacs.c (terminate_due_to_signal): Reset signal handler here.
274 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
275 wanted even on POSIXish hosts, and it doesn't work on Windows.
276
277 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
278
279 * xterm.c (x_term_init): Call fixup_locale before and after calling
280 gtk_init (Bug#12392).
281
282 2012-09-23 Chong Yidong <cyd@gnu.org>
283
284 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
285 Vdynamic_library_alist.
286
287 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
288 (Fgnutls_available_p): Caller changed.
289
290 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
291 (Flibxml_parse_xml_region): Likewise.
292
293 * dispextern.h (struct image_type): Remove arg from init function.
294
295 * image.c (Finit_image_library, lookup_image_type)
296 (define_image_type): Remove now-unneeded second arg.
297 (init_xpm_functions, init_png_functions, init_jpeg_functions)
298 (init_tiff_functions, init_gif_functions, init_svg_functions):
299 Arglist and w32_delayed_load calling convention changed.
300 (gs_type): Remove init_gs_functions; there is no such function.
301 (valid_image_p, make_image): Fix caller to lookup_image_type.
302
303 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
304
305 Simplify and avoid signal-handling races (Bug#12471).
306 * alloc.c (die):
307 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
308 Avoid recursive loop if there's a fatal error in the function itself.
309 * atimer.c (pending_atimers):
310 * blockinput.h: Don't include "atimer.h"; no longer needed.
311 (interrupt_input_pending): Remove. All uses removed.
312 pending_signals now counts both atimers and ordinary interrupts.
313 This is less racy than having three separate pending-signal flags.
314 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
315 (input_blocked_p):
316 Rename from their upper-case counterparts BLOCK_INPUT,
317 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
318 INPUT_BLOCKED_P, and turn into functions. All uses changed.
319 This makes it easier to access volatile variables more accurately.
320 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
321 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
322 that's more reliable if the code is buggy and sets
323 interrupt_input_blocked to a negative value. All uses changed.
324 * atimer.c (deliver_alarm_signal):
325 Remove. No need to deliver this to the parent; any thread can
326 handle this signal now. All uses replaced by underlying handler.
327 * atimer.c (turn_on_atimers):
328 * dispnew.c (handle_window_change_signal):
329 * emacs.c (handle_danger_signal):
330 * keyboard.c (kbd_buffer_get_event):
331 Don't reestablish signal handler; not needed with sigaction.
332 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
333 (UNBLOCK_INPUT_TO):
334 Rework to avoid unnecessary accesses to volatile variables.
335 (UNBLOCK_INPUT_TO): Now a function.
336 (totally_unblock_input, unblock_input): New decls.
337 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
338 (init_data): Remove. Necessary stuff now done in init_signal.
339 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
340 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
341 (fatal_error_code): Remove; no longer needed.
342 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
343 it doesn't always backtrace. All uses changed. No need to reset
344 signal to default, since sigaction and/or die does that for us now.
345 Use emacs_raise (FOO), not kill (getpid (), FOO).
346 (main): Check more-accurately whether we're dumping.
347 Move fatal-error setup to sysdep.c
348 * floatfns.c: Do not include "syssignal.h"; no longer needed.
349 * gtkutil.c (xg_get_file_name, xg_get_font):
350 Remove no-longer-needed signal-mask manipulation.
351 * keyboard.c, process.c (POLL_FOR_INPUT):
352 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
353 * keyboard.c (read_avail_input): Remove.
354 All uses replaced by gobble_input.
355 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
356 (kbd_buffer_store_event_hold, gobble_input):
357 (record_asynch_buffer_change) [USABLE_SIGIO]:
358 (store_user_signal_events):
359 No need to mess with signal mask.
360 (gobble_input): If blocking input and there are terminals, simply
361 set pending_signals to 1 and return. All hooks changed to not
362 worry about whether input is blocked.
363 (process_pending_signals): Clear pending_signals before processing
364 them, in case a signal comes in while we're processing.
365 By convention callers now test pending_signals before calling us.
366 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
367 New functions, to support changes to blockinput.h.
368 (handle_input_available_signal): Now extern.
369 (reinvoke_input_signal): Remove. All uses replaced by
370 handle_async_input.
371 (quit_count): Now volatile, since a signal handler uses it.
372 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
373 All callers changed. Block SIGINT only if not already blocked.
374 Clear sigmask reliably, even if Fsignal returns, which it can.
375 Omit unnecessary accesses to volatile var.
376 (quit_throw_to_read_char): No need to restore sigmask.
377 * keyboard.c (gobble_input, handle_user_signal):
378 * process.c (wait_reading_process_output):
379 Call signal-handling code rather than killing ourselves.
380 * lisp.h: Include <float.h>, for...
381 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
382 (pending_signals): Now volatile.
383 (syms_of_data): Now const if IEEE floating point.
384 (handle_input_available_signal) [USABLE_SIGIO]:
385 (terminate_due_to_signal, record_child_status_change): New decls.
386 * process.c (create_process): Avoid disaster if memory is exhausted
387 while we're processing a vfork, by tightening the critical section
388 around the vfork.
389 (send_process_frame, process_sent_to, handle_pipe_signal)
390 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
391 ignores SIGPIPE.
392 (send_process): No need for setjmp/longjmp any more, since the
393 SIGPIPE stuff is now gone. Instead, report an error if errno
394 is EPIPE.
395 (record_child_status_change): Now extern. PID and W are now args.
396 Return void, not bool. All callers changed.
397 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
398 Remove. All uses removed. This bug should be fixed now in a
399 different way.
400 (wait_for_termination_1): Use waitpid rather than sigsuspend,
401 and record the child status change directly. This avoids the
402 need to futz with the signal mask.
403 (process_fatal_action): Move here from emacs.c.
404 (emacs_sigaction_flags): New function, containing
405 much of what used to be in emacs_sigaction_init.
406 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
407 caught by emacs, to make races less likely.
408 (deliver_process_signal): Rename from handle_on_main_thread.
409 All uses changed.
410 (BACKTRACE_LIMIT_MAX): Now at top level.
411 (thread_backtrace_buffer, threadback_backtrace_pointers):
412 New static vars.
413 (deliver_thread_signal, deliver_fatal_thread_signal):
414 New functions, for more-accurate delivery of thread-specific signals.
415 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
416 (deliver_arith_signal): Handle in this thread, not
417 in the main thread, since it's triggered by this thread.
418 (maybe_fatal_sig): New function.
419 (init_signals): New arg DUMPING so that we can be more accurate
420 about whether we're dumping. Caller changed.
421 Treat thread-specific signals differently from process-general signals.
422 Block all signals while handling fatal error; that's safer.
423 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
424 on IEEE hosts.
425 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
426 Ignore SIGPIPE unless batch.
427 (emacs_backtrace): Output backtrace for the appropriate thread,
428 which is not necessarily the main thread.
429 * syssignal.h: Include <stdbool.h>.
430 (emacs_raise): New macro.
431 * xterm.c (x_connection_signal): Remove; no longer needed
432 now that we use sigaction.
433 (x_connection_closed): No need to mess with sigmask now.
434 (x_initialize): No need to reset SIGPIPE handler here, since
435 init_signals does this for us now.
436
437 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
438
439 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
440 background rect may be larger (Bug#12245).
441
442 2012-09-23 Chong Yidong <cyd@gnu.org>
443
444 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
445
446 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
447
448 * .gdbinit: Just stop at fatal_error_backtrace.
449 See Stefan Monnier's request in
450 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
451 Remove no-longer-used query of system type.
452
453 2012-09-22 Chong Yidong <cyd@gnu.org>
454
455 * search.c (Freplace_match): Doc fix (Bug#12325).
456
457 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
458
459 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
460 (Fline_end_position): Doc fix.
461
462 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
463
464 2012-09-22 Chong Yidong <cyd@gnu.org>
465
466 * dispextern.h (struct image_type): Add new slot, storing a type
467 initialization function.
468
469 * image.c (define_image_type): Call the image initializer function
470 if it is defined. Arguments and return value changed.
471 (valid_image_p, make_image): Callers changed.
472 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
473 (gif_type, imagemagick_type, svg_type, gs_type):
474 Add initialization functions.
475 (Finit_image_library): Call lookup_image_type.
476 (CHECK_LIB_AVAILABLE): Macro deleted.
477 (lookup_image_type): Call define_image_type here, rather than via
478 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
479 (syms_of_image): Move define_image_type calls for xbm_type and
480 pbm_type to lookup_image_type.
481
482 2012-09-22 Eli Zaretskii <eliz@gnu.org>
483
484 * keyboard.c (timer_check_2): Move calculation of 'timers' and
485 'idle_timers' from here ...
486 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
487 lists, to avoid infloops when the timer does something stupid,
488 like reinvoke itself with the same or smaller time-out.
489 (Bug#12447)
490
491 2012-09-22 Martin Rudalics <rudalics@gmx.at>
492
493 * window.c (Fsplit_window_internal): Handle only Qt value of
494 Vwindow_combination_limit separately.
495 (Qtemp_buffer_resize): New symbol.
496 (Vwindow_combination_limit): New default value.
497 Rewrite doc-string.
498
499 2012-09-22 Eli Zaretskii <eliz@gnu.org>
500
501 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
502 the new overlay string. (Bug#10159)
503
504 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
505
506 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
507 or that fprintf is async-signal-safe. POSIX doesn't require
508 either assumption.
509
510 2012-09-22 Chong Yidong <cyd@gnu.org>
511
512 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
513 (Bug#8207).
514
515 2012-09-22 Kenichi Handa <handa@gnu.org>
516
517 * composite.c (composition_reseat_it): Handle the case that a
518 grapheme cluster is not covered by a single font (Bug#12352).
519
520 2012-09-21 Chong Yidong <cyd@gnu.org>
521
522 * image.c (define_image_type): Avoid adding duplicate types to
523 image_types (Bug#12463). Suggested by Jörg Walter.
524
525 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
526
527 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
528 (print_load_command_name): Add case LC_DATA_IN_CODE.
529 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
530
531 2012-09-21 Glenn Morris <rgm@gnu.org>
532
533 * eval.c (Frun_hook_with_args_until_success)
534 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
535
536 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
537
538 * fileio.c (Ffile_selinux_context): Only call freecon when
539 lgetfilecon succeeded.
540 (Fset_file_selinux_context): Likewise. (Bug#12444)
541
542 2012-09-21 Eli Zaretskii <eliz@gnu.org>
543
544 * xdisp.c (try_window_reusing_current_matrix): Under bidi
545 reordering, locate the cursor by calling set_cursor_from_row; if
546 that fails, clear the desired glyph matrix before returning a
547 failure indication to the caller. Fixes leaving garbled display
548 when fast scrolling with a down-key. (Bug#12403)
549 (compute_stop_pos_backwards): Fix a typo that caused crashes while
550 scrolling through multibyte text.
551
552 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
553
554 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
555 calling mark_vectorlike since that's the one that marks the window.
556 (mark_discard_killed_buffers): Mark the final cdr.
557 * window.h (struct window): Move prev/next_buffers to the
558 non-standard fields.
559 * window.c (make_window): Initialize prev/next_buffers manually.
560
561 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
562
563 Omit unused arg EXPECTED from socket hooks.
564 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
565 * nsterm.m (ns_term_init):
566 * termhooks.h (struct terminal.read_socket_hook):
567 * w32inevt.c (w32_console_read_socket):
568 * w32term.c (w32_read_socket):
569 * xterm.c (XTread_socket):
570 Omit unused arg EXPECTED. All callers changed.
571 (store_user_signal_events): Return void, not int, since callers no
572 longer care about the return value. All uses changed.
573
574 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
575
576 * w32gui.h (XParseGeometry): Do not declare.
577
578 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
579
580 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
581 Ignore 'expected'. See Eli Zaretskii in
582 <http://bugs.gnu.org/12471#8> (last line).
583
584 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
585 (XParseGeometry): Now static. Substitute extremal values for
586 values that are out of range.
587
588 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
589
590 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
591
592 * nsfns.m (XParseGeometry): Remove.
593 (Fx_create_frame): Call x_set_offset to correctly interpret
594 top_pos in geometry.
595
596 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
597 (Fx_parse_geometry): If there is a space in string, call
598 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
599
600 2012-09-17 Eli Zaretskii <eliz@gnu.org>
601
602 * search.c (scan_buffer): Use character positions in calls to
603 region_cache_forward and region_cache_backward, not byte
604 positions. (Bug#12196)
605
606 * w32term.c (w32_read_socket): Set pending_signals to 1, like
607 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
608
609 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
610 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
611 emacs_blocked_malloc, now deleted.
612
613 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
614
615 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
616 The workaround was for improving performance on Solaris 2.4, but
617 is getting in the way now. Emacs will still work if someone is
618 still running Solaris 2.4 in a museum somewhere; Sun dropped
619 support for Solaris 2.4 in 2003.
620 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
621 * process.c (create_process) [HAVE_WORKING_VFORK]:
622 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
623 since Emacs no longer uses vfork on that platform.
624
625 2012-09-17 Glenn Morris <rgm@gnu.org>
626
627 * emacs.c: Use COPYRIGHT.
628
629 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
630
631 Remove configure's --without-sync-input option (Bug#12450).
632 When auditing signal-handling in preparation for cleaning it up,
633 I found that SYNC_INPUT has race conditions and would be a real
634 pain to fix. Since it's an undocumented and deprecated
635 configure-time option, now seems like a good time to remove it.
636 Also see <http://bugs.gnu.org/11080#16>.
637 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
638 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
639 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
640 (malloc_hysteresis):
641 (check_depth) [XMALLOC_OVERRUN_CHECK]:
642 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
643 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
644 (dont_register_blocks, bytes_used_when_reconsidered)
645 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
646 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
647 [!SYSTEM_MALLOC && !SYNC_INPUT]:
648 Remove. All uses removed.
649 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
650 implementation, one that depends on whether the new macro
651 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
652 is defined.
653 * atimer.c (run_timers, handle_alarm_signal):
654 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
655 (handle_async_input, process_pending_signals)
656 (handle_input_available_signal, init_keyboard):
657 * nsterm.m (ns_read_socket):
658 * process.c (wait_reading_process_output):
659 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
660 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
661 (emacs_write):
662 * xterm.c (XTread_socket):
663 Assume SYNC_INPUT.
664 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
665 * eval.c (handling_signal): Remove. All uses removed.
666 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
667 All uses replaced with the SYNC_INPUT version.
668 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
669 Remove decls.
670 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
671 Now static.
672
673 * font.c (Ffont_shape_gstring): Remove unused local.
674
675 2012-09-16 Glenn Morris <rgm@gnu.org>
676
677 * Makefile.in (clean): No longer run nextstep's clean.
678
679 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
680 (ns_frag): Remove.
681 (ns-app): Move here from ns.mk, and simplify.
682 (clean): Simplify nextstep entry.
683 * ns.mk: Remove file.
684
685 2012-09-17 Kenichi Handa <handa@gnu.org>
686
687 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
688 not covert the last few charactes.
689
690 2012-09-16 Kenichi Handa <handa@gnu.org>
691
692 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
693 here, but just check the validity of glyphs in the glyph-string.
694
695 2012-09-16 Martin Rudalics <rudalics@gmx.at>
696
697 * window.c (Fwindow_parameter, Fset_window_parameter):
698 Accept any window as argument (Bug#12452).
699
700 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
701
702 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
703 to ns_term_init to avoid memory leak.
704
705 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
706 explicit retain/release.
707 (ns_term_init): Only allow one display. Initialize outerpool and
708 ns_*_types.
709
710 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
711
712 Port _setjmp fix to POSIXish hosts as well as Microsoft.
713 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
714 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
715 the Microsoft problem in a different way, by altering ../nt/config.nt.
716
717 2012-09-15 Eli Zaretskii <eliz@gnu.org>
718
719 * w32xfns.c:
720 * w32uniscribe.c:
721 * w32term.c:
722 * w32select.c:
723 * w32reg.c:
724 * w32proc.c:
725 * w32menu.c:
726 * w32inevt.c:
727 * w32heap.c:
728 * w32font.c:
729 * w32fns.c:
730 * w32console.c:
731 * w32.c:
732 * w16select.c: Remove inclusion of setjmp.h, as it is now included
733 by lisp.h. This completes removal of setjmp.h inclusion
734 erroneously announced in the previous commit. (Bug#12446)
735
736 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
737 more accurate.
738
739 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
740 not defined as a macro. The latter happens on MS-Windows.
741 (Bug#12446)
742
743 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
744
745 Port better to POSIX hosts lacking _setjmp (Bug#12446).
746 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
747 Some instances of '#include <setjmp.h>' removed, if the
748 only reason for the instance was because "lisp.h" was included.
749 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
750 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
751 and _longjmp with the new symbols. Emacs already uses _setjmp if
752 available, so this change affects only POSIXish hosts that have
753 sigsetjmp but not _setjmp, such as some versions of Solaris and
754 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
755 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
756 (png_load_body) [HAVE_PNG]:
757 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
758 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
759 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
760 since PNG requires jmp_buf. This is the only exception to the
761 general rule that we now use sys_setjmp and sys_longjmp.
762 This exception is OK since this code does not change the signal
763 mask or longjmp out of a signal handler.
764
765 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
766
767 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
768 Include "syssignal.h", for 'main_thread'.
769
770 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
771
772 Avoid out-of-range marker position (Bug#12426).
773 * insdel.c (replace_range, replace_range_2):
774 Adjust markers before overlays, as suggested by comments.
775 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
776 Remove redundant check before calling offset_intervals.
777
778 2012-09-14 Martin Rudalics <rudalics@gmx.at>
779
780 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
781 current buffer (Bug#12387).
782
783 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
784
785 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
786
787 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
788
789 Use a more backwards-compatible timer format (Bug#12430).
790 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
791 vector element, not from the 4th, since PSECS is now at the end.
792 (Fcurrent_idle_time): Doc fix.
793
794 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
795
796 Function to mark objects and remove killed buffers at once.
797 * alloc.c (discard_killed_buffers): Rename to ...
798 (mark_discard_killed buffers) ... new name. Add marking
799 of remaining objects. Fix comment. Adjust users.
800 (mark_object): Do not touch frame buffer lists here.
801 * frame.c (delete_frame): Reset frame buffer lists here.
802
803 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
804
805 Better workaround for GNOME bug when --enable-gcc-warnings.
806 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
807 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
808 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
809
810 Simplify SIGIO usage (Bug#12408).
811 The code that dealt with SIGIO was crufty and confusing, e.g., it
812 played tricks like "#undef SIGIO" but these tricks were not used
813 consistently. Simplify mostly by not #undeffing standard symbols,
814 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
815 or not as we please) rather than "defined SIGIO" (standard symbol
816 that we probably shouldn't #undef).
817 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
818 Modules that need it can include it.
819 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
820 * dispextern.h (ignore_sigio): New decl.
821 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
822 unconditionally, since it's now a no-op if !USABLE_SIGIO.
823 * emacs.c (shut_down_emacs):
824 * keyboard.c (kbd_buffer_store_event_hold):
825 Use ignore_sigio rather than invoking 'signal' directly.
826 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
827 for FIONREAD.
828 (FIONREAD, SIGIO): Do not #undef.
829 (tty_read_avail_input): Use #error rather than a syntax error.
830 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
831 for I_PIPE, used by SETUP_SLAVE_PTY.
832 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
833 * sysdep.c (croak): Remove; no longer needed. This bit of
834 temporary code, with Fred N. Fish's comment that it's temporary,
835 has been in Emacs since at least 1992!
836 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
837 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
838 * syssignal.h (croak): Remove decl.
839 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
840 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
841 now that we're termios-only.
842 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
843 * term.c (dissociate_if_controlling_tty): Use #error rather than
844 a run-time error.
845
846 Work around GCC and GNOME bugs when --enable-gcc-warnings.
847 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
848 to work around GNOME bug 683906.
849 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
850 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
851 This works around GCC bug 54561.
852
853 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
854
855 More fixes for 'volatile' and setjmp/longjmp.
856 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
857 * image.c (struct png_load_context) [HAVE_PNG]: New type.
858 (png_load_body) [HAVE_PNG]:
859 (jpeg_load_body) [HAVE_JPEG]:
860 New function, with most of the old parent function's body.
861 (png_load) [HAVE_PNG]:
862 (jpeg_load) [HAVE_JPEG]:
863 Invoke the new function, to avoid longjmp munging our locals.
864 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
865 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
866 longjmp is passed 2, as the C standard doesn't guarantee this.
867 Instead, store the failure code into mgr->failure_code.
868
869 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
870
871 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
872 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
873 (syms_of_keyboard): Remove support for unread-command-char.
874
875 2012-09-12 Eli Zaretskii <eliz@gnu.org>
876
877 * w32proc.c (sys_kill): If PID is our process ID and the signal is
878 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
879 violation. (Bug#12426)
880
881 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
882
883 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
884
885 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
886
887 * eval.c: Add `inhibit-debugger'.
888 (Qinhibit_debugger): New symbol.
889 (call_debugger): Bind it instead of Qdebug_on_error.
890 (maybe_call_debugger): Test Vinhibit_debugger.
891 (syms_of_eval): Define inhibit-debugger.
892 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
893 (syms_of_xdisp): Remove inhibit-debug-on-message.
894
895 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
896
897 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
898 If a nonvolatile local variable is written before a _longjmp to
899 the frame containing the variable, and is read after the _longjmp,
900 the value read is indeterminate. Some local variables of type
901 'struct handler' and 'struct catchtag' are used in this way, so
902 mark each of their slots as volatile if the slot can be set before
903 _longjmp and read afterwards.
904 * lisp.h (struct handler): var and chosen_clause are now volatile.
905 (struct catchtag): val, next, and pdlcount are now volatile.
906
907 * bidi.c (bidi_push_it, bidi_pop_it):
908 * fns.c (copy_hash_table):
909 * image.c (define_image_type):
910 * keyboard.c (kbd_buffer_store_event_hold):
911 * process.c (Fprocess_send_eof):
912 * xfaces.c (x_create_gc) [HAVE_NS]:
913 * xgselect.c (xg_select):
914 Prefer assignment to memcpy when either will do.
915
916 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
917 Use pointer-to-a-pointer to simplify and avoid a NILP check each
918 time an item is removed. No need to mark this function 'inline';
919 the compiler knows better than we do.
920
921 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
922
923 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
924 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
925 to change_frame_size (Bug#12388).
926 (windowDidResize:): Pass YES to updateFrameSize.
927
928 * nsterm.h: Add delay parameter to updateFrameSize.
929
930 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
931
932 Discard killed buffers from deleted window and frame objects.
933 This reduces an amount of references to killed buffers and
934 helps GC to reclaim them faster.
935 * alloc.c (discard_killed_buffers): New function.
936 (mark_object): Use it for deleted windows and frames.
937 (mark_object): If symbol's value is set up for a killed buffer
938 or deleted frame, restore it's global binding.
939 * data.c (swap_in_global_binding): Add GC notice.
940 (swap_in_symval_forwarding): Use convenient set_blv_where.
941 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
942 * window.h: ... to here.
943
944 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
945
946 Convenient macro to check whether the buffer is live.
947 * buffer.h (BUFFER_LIVE_P): New macro.
948 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
949 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
950
951 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
952
953 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
954 composition cases (Bug#12364).
955
956 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
957 overhang of succeeding glyphs overlapping box cursor.
958
959 * w32term.c (x_draw_glyph_string): Likewise.
960
961 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
962
963 Simplify, document, and port floating-point (Bug#12381).
964 The porting part of this patch fixes bugs on non-IEEE platforms
965 with frexp, ldexp, logb.
966 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
967 Now static.
968 * floatfns.c: Simplify discussion of functions that Emacs doesn't
969 support, by removing commented-out code and briefly listing the
970 C89 functions excluded. The commented-out stuff was confusing
971 maintenance, e.g., we thought we needed cbrt but it was commented out.
972 (logb): Remove decl; no longer needed.
973 (isfinite): New macro, if not already supplied.
974 (isnan): Don't replace any existing macro.
975 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
976 are present on all C89 platforms.
977 (Ffrexp): Do not special-case zero, as frexp does the right thing
978 for that case.
979 (Flogb): Do not use logb, as it doesn't have the desired meaning
980 on hosts that use non-base-2 floating point. Instead, stick with
981 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
982 frexp, to avoid getting an unspecified result.
983
984 * xdisp.c (Qinhibit_debug_on_message): Now static.
985
986 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
987
988 * nsterm.m (ns_update_begin): Set clip path to whole view by using
989 NSBezierPath (Bug#12131).
990
991 2012-09-10 Chong Yidong <cyd@gnu.org>
992
993 * fns.c (Fdelq, Fdelete): Doc fix.
994
995 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
996
997 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
998 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
999
1000 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
1001
1002 * lisp.h (make_lisp_ptr): New macro to replace XSET.
1003 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
1004 Use it.
1005
1006 2012-09-09 Eli Zaretskii <eliz@gnu.org>
1007
1008 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
1009 left fringe if the window has a left margin. This avoids leaving
1010 traces of the cursor because its leftmost pixel is not drawn over.
1011
1012 * dispnew.c (update_window_line): When the left margin area of a
1013 screen line is updated, set the redraw_fringe_bitmaps_p flag of
1014 that screen line. (Bug#12277)
1015
1016 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
1017
1018 Assume C89 or later for math functions (Bug#12381).
1019 This simplifies the code, and makes it a bit smaller and faster,
1020 and (most important) makes it easier to clean up signal handling
1021 since we can stop worring about floating-point exceptions in
1022 library code. That was a problem before C89, but the problem
1023 went away many years ago on all practical Emacs targets.
1024 * data.c, image.c, lread.c, print.c:
1025 Don't include <math.h>; no longer needed.
1026 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
1027 might be autoconfigured, as that never happens.
1028 * data.c (fmod):
1029 * doprnt.c (DBL_MAX_10_EXP):
1030 * print.c (DBL_DIG):
1031 Remove. C89 or later always defines these.
1032 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
1033 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
1034 (arith_error, domain_error, domain_error2):
1035 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
1036 no longer needed -- we simply return what C returns. All uses removed.
1037 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
1038 the wrapped code.
1039 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
1040 Remove. All uses expanded, as these macros are no longer used
1041 more than once and are now more trouble than they're worth.
1042 (Ftan): Use tan, not sin / cos.
1043 (Flogb): Assume C89 frexp.
1044 (fmod_float): Assume C89 fmod.
1045 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
1046 (init_floatfns): Remove. All uses removed.
1047
1048 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1049
1050 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
1051 compositeToPoint for OSX < 10.6 (Bug#12390).
1052
1053 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
1054
1055 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
1056 This produces more-accurate results.
1057
1058 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1059
1060 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
1061 changes (Bug#12088).
1062
1063 2012-09-08 Chong Yidong <cyd@gnu.org>
1064
1065 * syntax.c (Fstring_to_syntax): Doc fix.
1066
1067 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1068
1069 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
1070 in the internal border.
1071 (x_set_window_size): Remove static variables and their usage.
1072 (ns_redraw_scroll_bars): Fix NSTRACE arg.
1073 (ns_after_update_window_line, ns_draw_fringe_bitmap):
1074 Remove fringe/internal border adjustment (Bug#11052).
1075 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
1076 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
1077 (ns_fix_rect_ibw): Remove.
1078 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
1079 (ns_dumpglyphs_box_or_relief): Ditto.
1080 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
1081 adjustment.
1082 (ns_dumpglyphs_image): Ditto.
1083 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
1084 border adjustment.
1085 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
1086 their usage. Add fringe_extended_p and its use as in other terms.
1087 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
1088 scroll bar was removed.
1089 (updateFrameSize): New function.
1090 (windowDidResize): Move code to updateFrameSize and call it.
1091
1092 * nsterm.h (EmacsView): Add updateFrameSize.
1093
1094 2012-09-07 Chong Yidong <cyd@gnu.org>
1095
1096 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
1097
1098 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
1099
1100 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1101
1102 More signal-handler cleanup (Bug#12327).
1103 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
1104 Problem introduced when merging patches. Noted by Eli Zaretskii in
1105 <http://bugs.gnu.org/12327#67>.
1106 * floatfns.c: Comment fix.
1107 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
1108 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
1109 and anyway the declaration is harmless even if SIGDANGER is not defined.
1110 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
1111 defined BROKEN_FIONREAD). systty.h formerly did this, but other
1112 source files not surprisingly expected syssignal.h to define, or
1113 not define, SIGIO, and it's cleaner to do it that way, for consistency.
1114 Include <sys/ioctl.h>, for FIONREAD.
1115 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
1116 This eliminates a problem whereby other files mysteriously had
1117 to include "syssignal.h" before including "systty.h" if they
1118 wanted to use "#ifdef SIGIO".
1119
1120 2012-09-07 Eli Zaretskii <eliz@gnu.org>
1121
1122 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
1123
1124 * w32.c (sigemptyset): Empty the set.
1125 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
1126
1127 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
1128
1129 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
1130
1131 * alloc.c (mark_buffer): Revert unsafe marking optimization.
1132 (mark_object): Likewise for frame objects.
1133
1134 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1135
1136 * syssignal.h (handle_on_main_thread): Always declare,
1137 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
1138 This ports to platforms without HAVE_PTHREAD.
1139
1140 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1141
1142 Signal-handler cleanup (Bug#12327).
1143 Emacs's signal handlers were written in the old 4.2BSD style with
1144 sigblock and sigmask and so forth, and this led to some
1145 inefficiencies and confusion. Rewrite these to use
1146 pthread_sigmask etc. without copying signal sets around. Also,
1147 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
1148 'signal', and instead use functions that do not attempt to take
1149 over the system name space. This patch causes Emacs's text
1150 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
1151 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
1152 Do not include <signal.h> or "syssignal.h", as these
1153 modules do not use signals.
1154 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
1155 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
1156 Do not include <signal.h>, as "syssignal.h" does that for us now.
1157 * atimer.c (sigmask_atimers): New function.
1158 (block_atimers, unblock_atimers): New functions,
1159 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
1160 All uses replaced.
1161 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
1162 no longer needed here.
1163 * emacs.c (main): Inspect existing signal handler with sigaction,
1164 so that there's no need to block and unblock SIGHUP.
1165 * sysdep.c (struct save_signal): New member 'action', replacing
1166 old member 'handler'.
1167 (save_signal_handlers, restore_signal_handlers):
1168 Use sigaction instead of 'signal' to save and restore.
1169 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
1170 New function. All users of 'signal' modified to use set_sighandler
1171 if they're writeonly, and to use sys_signal if they're read+write.
1172 (emacs_sigaction_init, forwarded_signal): New functions.
1173 (sys_signal): Remove. All uses replaced by calls to sigaction
1174 and emacs_sigaction_init, or by direct calls to 'signal'.
1175 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
1176 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
1177 all uses replaced by pthread_sigmask etc. calls.
1178 * syssignal.h: Include <signal.h>.
1179 (emacs_sigaction_init, forwarded_signal): New decls.
1180 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
1181 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
1182 (sigmask, sys_sigmask): Remove; no longer needed.
1183 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
1184 (sigblock, sigunblock, sigfree):
1185 (sigsetmask) [!defined sigsetmask]:
1186 Remove. All uses replaced by pthread_sigmask.
1187 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
1188 no longer need to be replaced, and its typical old uses
1189 are now done via emacs_sigaction_init and sigaction.
1190 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
1191 (sys_sigdel): Remove; unused.
1192 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
1193
1194 2012-09-06 Eli Zaretskii <eliz@gnu.org>
1195
1196 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
1197 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
1198
1199 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
1200
1201 Explicitly mark buffer_defaults and buffer_local_symbols.
1202 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
1203 mark_local_symbols here.
1204 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
1205 since special buffers aren't marked here any more.
1206 (allocate_buffer): Chain new buffer with all_buffers here...
1207 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
1208 not here.
1209 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
1210 (syms_of_buffer): Remove staticpro of the above.
1211 (init_buffer_once): Set names for buffer_defaults and
1212 buffer_local_symbols.
1213
1214 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1215
1216 Use bool for booleans in font-related modules.
1217 * font.c (font_intern_prop, font_style_to_value)
1218 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
1219 (generate_otf_features, font_check_otf_features, font_check_otf)
1220 (font_match_p, font_list_entities, font_at):
1221 * fontset.c (fontset_id_valid_p, reorder_font_vector
1222 (fontset_find_font, Fset_fontset_font)
1223 (face_suitable_for_char_p) [0]:
1224 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
1225 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
1226 (m17n_flt_initialized, ftfont_shape_by_flt):
1227 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
1228 * nsfont.m (nsfont_draw):
1229 * w32font.c (w32font_draw):
1230 * w32term.c (x_draw_glyphless_glyph_string_foreground):
1231 Use bool for booleans.
1232 * font.h: Adjust to above API changes.
1233 (struct font, struct font_driver, struct font_driver_list):
1234 Use bool for booleans.
1235 (struct font): Remove useless member encoding_type.
1236 All users removed.
1237 * fontset.c, xftfont.c: Omit unnecessary static decls.
1238
1239 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
1240
1241 * alloc.c (mark_object): Revert window marking code
1242 since it's unsafe for the Fset_window_configuration.
1243
1244 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
1245
1246 Fix race conditions with signal handlers and errno (Bug#12327).
1247 Be more systematic about preserving errno whenever a signal
1248 handler returns, even if it's not in the main thread. Do this by
1249 renaming signal handlers to distinguish between signal delivery
1250 and signal handling. All uses changed.
1251 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
1252 * data.c (deliver_arith_signal): Rename from arith_error.
1253 * dispnew.c (deliver_window_change_signal): Rename from
1254 window_change_signal.
1255 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
1256 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
1257 * keyboard.c (deliver_input_available_signal): Rename from
1258 input_available_signal.
1259 (deliver_user_signal): Rename from handle_user_signal.
1260 (deliver_interrupt_signal): Rename from interrupt_signal.
1261 * process.c (deliver_pipe_signal): Rename from send_process_trap.
1262 (deliver_child_signal): Rename from sigchld_handler.
1263 * atimer.c (handle_alarm_signal):
1264 * data.c (handle_arith_signal):
1265 * dispnew.c (handle_window_change_signal):
1266 * emacs.c (handle_fatal_signal, handle_danger_signal):
1267 * keyboard.c (handle_input_available_signal):
1268 * keyboard.c (handle_user_signal, handle_interrupt_signal):
1269 * process.c (handle_pipe_signal, handle_child_signal):
1270 New functions, with the actual signal-handling code taken from the
1271 original respective signal handlers, sans the sporadic attempts to
1272 preserve errno, since that's now done by handle_on_main_thread.
1273 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
1274 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
1275 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1276 Move to sysdep.c.
1277 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1278 Move initialization of main_thread to sysdep.c's init_signals.
1279 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
1280 our usage, and simplifies the mainline code.
1281 (record_child_status_change): New static function, as a helper
1282 for handle_child_signal, and with most of the old child handler's
1283 contents.
1284 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
1285 (handle_child_signal): Use the above.
1286 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1287 Moved here from emacs.c.
1288 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
1289 code moved here from emacs.c's main function.
1290 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
1291 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
1292 This lets callers save and restore errno properly.
1293
1294 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1295
1296 Remove redundant or unused things here and there.
1297 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
1298 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
1299 * editfns.c (Fcompare_buffer_substrings): Likewise.
1300 * frame.h (struct terminal, struct font_driver_list):
1301 Remove redundant declarations.
1302 * window.h (Qleft, Qright): Likewise.
1303
1304 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1305
1306 Do not mark objects from deleted buffers, windows and frames.
1307 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
1308 (mark_object): Likewise for windows and frames.
1309
1310 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1311
1312 * alloc.c (valid_lisp_object_p): Treat killed buffers,
1313 buffer_defaults and buffer_local_symbols as valid objects.
1314 Return special value to denote them.
1315
1316 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
1317
1318 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
1319 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
1320 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
1321 (file_name_absolute_p, Fsubstitute_in_file_name):
1322 (check_executable, check_writable, Ffile_accessible_directory_p)
1323 (Fset_file_selinux_context, Fdefault_file_modes)
1324 (Finsert_file_contents, choose_write_coding_system)
1325 (Fwrite_region, build_annotations, a_write, e_write)
1326 (Fdo_auto_save):
1327 * filelock.c (boot_time_initialized, get_boot_time)
1328 (get_boot_time_1, lock_file_1, within_one_second):
1329 * floatfns.c (in_float):
1330 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
1331 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
1332 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
1333 * lisp.h (struct Lisp_Hash_Table.cmpfn):
1334 * window.c (compare_window_configurations):
1335 Use bool for booleans.
1336 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
1337 (Fdefault_file_modes): Now mode_t, not int, for modes.
1338 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
1339 (internal_delete_file): Now returns void, not a (boolean) int,
1340 since nobody was looking at the return value.
1341 * lisp.h, window.h: Adjust to above API changes.
1342
1343 * xdisp.c (set_message): Simplify and reindent last change.
1344
1345 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
1346
1347 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
1348
1349 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
1350
1351 * eval.c (call_debugger): Make the function non-static so that we
1352 can call it from set_message.
1353
1354 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
1355 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
1356
1357 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1358
1359 Give more-useful info on a fatal error (Bug#12328).
1360 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
1361 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
1362 of doing the work ourselves.
1363 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
1364 do most of the work.
1365 (fatal_error_backtrace): New function, taken from the guts
1366 of the old fatal_error_signal, but with a new option to output
1367 a backtrace.
1368 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
1369 info about the signal than just its number.
1370 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
1371 * sysdep.c: Include <execinfo.h>
1372 (emacs_backtrace): New function, taken partly from the previous
1373 code of the 'die' function.
1374 (emacs_abort): Call fatal_error_backtrace rather than abort.
1375
1376 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1377
1378 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
1379 eager (load-time) macro-expansion.
1380 * lisp.mk (lisp): Add macroexp.
1381
1382 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1383
1384 Simplify redefinition of 'abort' (Bug#12316).
1385 Do not try to redefine the 'abort' function. Instead, redo
1386 the code so that it calls 'emacs_abort' rather than 'abort'.
1387 This removes the need for the NO_ABORT configure-time macro
1388 and makes it easier to change the abort code to do a backtrace.
1389 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
1390 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
1391 Remove; sysdep.c's emacs_abort now takes its place.
1392 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
1393 'abort' changed to use 'emacs_abort'.
1394 * msdos.c (dos_abort) [defined abort]: Remove; not used.
1395 (abort) [!defined abort]: Rename to ...
1396 (emacs_abort): ... new name.
1397 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
1398 the place of the old 'abort' in emacs.c.
1399 * w32.c, w32fns.c (abort): Do not #undef.
1400 * w32.c (emacs_abort): Rename from w32_abort.
1401
1402 2012-09-04 Eli Zaretskii <eliz@gnu.org>
1403
1404 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
1405 offsets[j].dv, since the y axis of the screen coordinates points
1406 down, while the y axis of the font definition coordinates points
1407 up. This fixes display of Arabic diacritics such as KASRA and
1408 KASRATAN. (Bug#11860)
1409
1410 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1411
1412 Be more systematic about _setjmp vs setjmp.
1413 * alloc.c (test_setjmp, mark_stack):
1414 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
1415 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
1416 (png_load, my_error_exit, jpeg_load):
1417 * process.c (send_process_trap, send_process):
1418 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
1419 The underscored versions are up to 30x faster on some hosts.
1420 Formerly, the code used setjmp+longjmp sometimes and
1421 _setjmp+_longjmp at other times, with no particular reason to
1422 prefer setjmp+longjmp.
1423
1424 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
1425
1426 Fix minor problem found by static checking.
1427 * buffer.c (Fdelete_all_overlays): Return nil.
1428
1429 2012-09-03 Martin Rudalics <rudalics@gmx.at>
1430
1431 * buffer.c (Fdelete_all_overlays): New function.
1432
1433 2012-09-03 Chong Yidong <cyd@gnu.org>
1434
1435 * gtkutil.c: Add extern decl for Qxft.
1436
1437 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
1438
1439 * emacs.c, eval.c: Use bool for boolean.
1440 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
1441 (malloc_using_checking) [DOUG_LEA_MALLOC]:
1442 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
1443 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
1444 (main, decode_env_path, Fdaemon_initialized):
1445 * eval.c (call_debugger, Finteractive_p, interactive_p):
1446 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
1447 (maybe_call_debugger, Fbacktrace):
1448 * process.c (read_process_output, exec_sentinel):
1449 Use bool for booleans.
1450 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
1451 All callers changed.
1452 * eval.c (interactive_p): Omit always-true boolean argument
1453 EXCLUDE_SUBRS_P. All callers changed.
1454 * dispextern.h, lisp.h: Reflect above API changes.
1455 * firstfile.c (dummy): Use the address of 'main', whose signature
1456 won't change, instead of the address of 'initialize', whose
1457 signature just changed from int to bool.
1458 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
1459 * msdos.c (fatal_error_in_progress): ... from here.
1460 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
1461 of incrementing it.
1462 (redisplay_internal, unwind_redisplay): Simply clear
1463 REDISPLAYING_P when unwinding, instead of saving its previous,
1464 always-false value and then restoring it.
1465
1466 Clean up some extern decls.
1467 Mostly, this hoists extern decls out of .c files and into .h files.
1468 That way, we're more likely to catch errors if the interfaces change.
1469 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
1470 declare xg_mark_data.
1471 * dispextern.h (x_frame_parm_handlers):
1472 * font.h (Qxft):
1473 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
1474 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
1475 (Qultra_bold, Qoblique, Qitalic):
1476 Move extern decl here from .c file.
1477 * alloc.c (xg_mark_data) [USE_GTK]:
1478 * doc.c (Qclosure):
1479 * eval.c (Qlexical_binding):
1480 * fns.c (time) [!HAVE_UNISTD_H]:
1481 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
1482 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
1483 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
1484 * lread.c (Qinternal_interpreter_environment):
1485 * minibuf.c (Qbuffer):
1486 * process.c (QCfamily, QCfilter):
1487 * widget.c (free_frame_faces):
1488 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
1489 * xfont.c (x_clear_errors):
1490 * xterm.c (x_frame_parm_handlers):
1491 Remove now-redundant extern decls.
1492 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
1493 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
1494 Now static.
1495 * xfaces.c: Remove unnecessary static decls.
1496 * xterm.c (updating_frame): Remove decl of nonexistent object.
1497
1498 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
1499 when building globals.h, as the objects that are not built on
1500 this host are not needed to compile C files on this host.
1501
1502 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
1503
1504 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
1505
1506 * frame.h: Add missing prototype for x_wm_set_size_hint.
1507
1508 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
1509
1510 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
1511 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
1512 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
1513 (Fsubstitute_command_keys):
1514 * editfns.c (region_limit, find_field, Fconstrain_to_field)
1515 (save_excursion_save, save_excursion_restore)
1516 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
1517 (format_time_string, general_insert_function)
1518 (make_buffer_string, make_buffer_string_both)
1519 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
1520 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
1521 (copy_text, insert_1, insert_1_both, insert_from_string)
1522 (insert_from_string_before_markers, insert_from_string_1)
1523 (insert_from_buffer, insert_from_buffer_1, replace_range)
1524 (replace_range_2, del_range_1, del_range_byte, del_range_both)
1525 (del_range_2, modify_region):
1526 * intervals.c (intervals_equal, balance_possible_root_interval)
1527 (adjust_intervals_for_insertion, merge_properties_sticky)
1528 (graft_intervals_into_buffer, lookup_char_property)
1529 (adjust_for_invis_intang, set_point_both)
1530 (get_property_and_range, compare_string_intervals)
1531 (set_intervals_multibyte_1, set_intervals_multibyte):
1532 * keyboard.c (decode_timer):
1533 Use bool for boolean.
1534 * intervals.h, lisp.h, systime.h: Reflect above API changes.
1535 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
1536
1537 2012-09-02 Chong Yidong <cyd@gnu.org>
1538
1539 * keymap.c (push_key_description): Print M-TAB as C-M-i
1540 (Bug#11758).
1541
1542 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
1543
1544 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
1545 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
1546 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
1547 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
1548 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
1549 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
1550 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
1551
1552 2012-09-01 Eli Zaretskii <eliz@gnu.org>
1553
1554 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
1555 more than one grapheme cluster passed to the shaper: compute the
1556 offset adjustment values separately for each cluster. (Bug#11860)
1557
1558 * image.c: Restore mistakenly removed inclusion of w32.h. Without
1559 it, GCC doesn't see prototypes of w32_delayed_load, and complains
1560 about implicit conversions from integer to pointer.
1561
1562 2012-09-01 Daniel Colascione <dancol@dancol.org>
1563
1564 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
1565 system used too early.
1566
1567 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
1568
1569 Better seed support for (random).
1570 * emacs.c (main): Call init_random.
1571 * fns.c (Frandom): Set the seed from a string argument, if given.
1572 Remove long-obsolete Gentzel cruft.
1573 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
1574 (init_random): New function.
1575
1576 2012-09-01 Daniel Colascione <dancol@dancol.org>
1577
1578 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
1579 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
1580 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
1581 x_wm_set_size_hint, x_query_colors, x_real_positions,
1582 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
1583 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
1584 all of which have been moved to common code.
1585
1586 * xfaces.c: Include TERM_HEADER instead of listing all possible
1587 window-system headers.
1588
1589 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
1590 to match header.
1591
1592 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
1593 directly accessing frame internals.
1594
1595 * w32font.h: Include font.h. Define syms_of_w32font and
1596 globals_of_w32font.
1597
1598 * process.c: Include TERM_HEADER instead of listing all possible
1599 window-system headers.
1600
1601 * nsterm.h: Remove declarations now in frame.h.
1602 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
1603
1604 * menu.c: Include TERM_HEADER instead of listing all possible
1605 window-system headers.
1606
1607 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
1608 window system.
1609
1610 * keyboard.c: Include TERM_HEADER instead of listing all possible
1611 window-system headers.
1612
1613 * image.c: Include TERM_HEADER instead of listing all possible
1614 window-system headers. Declare Vlibrary_cache when compiling for
1615 Windows.
1616
1617 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
1618 window system declarations.
1619
1620 * frame.h: Move common functions here: set_frame_menubar,
1621 x_set_window_size, x_sync, x_get_focus_frame,
1622 x_set_mouse_position, x_set_mouse_pixel_position,
1623 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
1624 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
1625 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
1626 x_activate_menubar, x_real_positions, x_bitmap_icon,
1627 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
1628 and x_query_colors.
1629
1630 * frame.c: Include TERM_HEADER instead of listing all possible
1631 window-system headers.
1632
1633 * font.c: Include TERM_HEADER instead of listing all possible
1634 window-system headers.
1635
1636 * emacs.c: Include TERM_HEADER.
1637
1638 * dispnew.c: Include TERM_HEADER instead of listing all possible
1639 window-system headers.
1640
1641 * ccl.h: Include character.h.
1642
1643 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
1644 the current window system; include in list of objects to link into
1645 Emacs.
1646
1647 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1648
1649 Remove mark_ttys function and fix tty_display_info initialization.
1650 * lisp.h (mark_ttys): Remove prototype.
1651 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
1652 to mark_ttys because all possible values of 'top_frame' slot are
1653 the frames which are reachable from Vframe_list.
1654 * term.c (mark_ttys): Remove.
1655 (init_tty): Safely initialize 'top_frame' slot with Qnil.
1656
1657 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1658
1659 Change struct frame bitfields from unsigned char to unsigned.
1660 * frame.h (struct frame): Change type of 'display_preempted',
1661 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
1662 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
1663 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
1664 bitfields from unsigned char to unsigned.
1665
1666 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1667
1668 Remove unused member of struct x_output and struct w32_output.
1669 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
1670 * w32term.h (struct w32_output): Likewise.
1671
1672 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
1673
1674 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
1675 does not become zero (Bug#12234).
1676
1677 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
1678
1679 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
1680 for GCC 4.7.1 x86-64.
1681
1682 2012-08-30 Glenn Morris <rgm@gnu.org>
1683
1684 * lread.c (init_lread): For out-of-tree builds, only add the
1685 source directory's site-lisp dir to the load-path if it exists,
1686 consistent with in-tree builds. (Bug#12302)
1687
1688 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
1689
1690 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
1691 button_values to NULL. Call setStykeMask so dialogs get a close button.
1692 (windowShouldClose:): Set window_closed.
1693 (dealloc): New member, free button_values.
1694 (process_dialog:): Make member function. Remove window argument,
1695 replace window with self. Count buttons and allocate and store values
1696 in button_values.
1697 (addButton:value:row:): value is int with the name tag. Call setTag
1698 with tag. Remove return self, declare return value as void.
1699 (addString:row:): Remove return self, declare return value as void.
1700 (addSplit): Remove return self, declare return value as void.
1701 (clicked:): Remove return self, declare return value as void.
1702 Set dialog_return to button_values[seltag]. Code formatting change.
1703 (initFromContents:isQuestion:): Adjust call to process_dialog.
1704 Code formatting change.
1705 (timeout_handler:): Set timer_fired to YES.
1706 (runDialogAt:): Set timer_fired to NO.
1707 Handle click on close button as quit.
1708
1709 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
1710 Add window_closed and button_values. Add void as return value for
1711 add(Button|String|Split). addButton takes int instead of Lisp_Object.
1712 Add process_dialog as new member.
1713
1714 2012-08-28 Eli Zaretskii <eliz@gnu.org>
1715
1716 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
1717 is not one of the heaps we manage. (Bug#12242)
1718
1719 2012-08-28 Glenn Morris <rgm@gnu.org>
1720
1721 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
1722
1723 2012-08-28 Martin Rudalics <rudalics@gmx.at>
1724
1725 * window.c (Fset_window_configuration): Remove handling of
1726 auto-buffer-name window parameter. Install revision of reverted
1727 fix.
1728
1729 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1730
1731 Do not allow to set major mode for a dead buffer.
1732 * buffer.c (Fset_buffer_major_mode): Signal an error
1733 if the buffer is dead.
1734 (Fother_buffer, other_buffer_safely): Remove redundant
1735 nested declaration.
1736
1737 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1738
1739 Always use set_buffer_if_live to restore original buffer at unwind.
1740 * buffer.h (record_unwind_current_buffer): New function.
1741 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
1742 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
1743 * undo.c, window.c: Adjust users.
1744 * buffer.c (set_buffer_if_live): Fix comment.
1745
1746 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1747
1748 Fix usage of set_buffer_internal.
1749 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
1750 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
1751 * coding.c (decode_coding): Omit redundant test.
1752 * fileio.c (decide_coding_unwind): Likewise.
1753 * fns.c (secure_hash): Likewise.
1754 * insdel.c (modify_region): Likewise.
1755 * keyboard.c (command_loop_1): Likewise.
1756 * print.c (PRINTFINISH): Likewise.
1757 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
1758
1759 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
1760
1761 * dispnew.c: Use bool for boolean.
1762 (frame_garbaged, display_completed, delayed_size_change)
1763 (fonts_changed_p, add_window_display_history)
1764 (add_frame_display_history, verify_row_hash)
1765 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
1766 (row_equal_p, realloc_glyph_pool)
1767 (allocate_matrices_for_frame_redisplay)
1768 (showing_window_margins_p)
1769 (adjust_frame_glyphs_for_frame_redisplay)
1770 (build_frame_matrix_from_leaf_window, make_current)
1771 (mirrored_line_dance, mirror_line_dance, update_frame)
1772 (update_window_tree, update_single_window)
1773 (check_current_matrix_flags, update_window, update_text_area)
1774 (update_window_line, set_window_update_flags, scrolling_window)
1775 (update_frame_1, scrolling, buffer_posn_from_coords)
1776 (do_pending_window_change, change_frame_size)
1777 (change_frame_size_1, sit_for):
1778 Use bool for boolean.
1779 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
1780 and remove last int (actually boolean) argument, which was always 0.
1781 All callers changed.
1782 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
1783 * dispextern.h (struct composition_it): Use bool for boolean.
1784 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
1785 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
1786 * dired.c (file_name_completion):
1787 Use bool for boolean. (This was missed in an earlier change.)
1788
1789 2012-08-27 Martin Rudalics <rudalics@gmx.at>
1790
1791 * window.c (Fset_window_configuration): Revert first part of
1792 last change.
1793
1794 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
1795
1796 * nsterm.h (NSPanel): New class variable dialog_return.
1797
1798 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
1799 Initialize dialog_return.
1800 (windowShouldClose:): Use stop instead of stopModalWithCode.
1801 (clicked:): Ditto, and also set dialog_return (Bug#12258).
1802 (timeout_handler:): Use stop instead of abortModal. Send a dummy
1803 event.
1804 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
1805 modal loop returns.
1806
1807 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
1808
1809 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
1810 * composite.c (find_composition, composition_gstring_p)
1811 (composition_reseat_it, find_automatic_composition):
1812 * data.c (let_shadows_buffer_binding_p)
1813 (let_shadows_global_binding_p, set_internal, make_blv)
1814 (Fmake_variable_buffer_local, Fmake_local_variable)
1815 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
1816 (cons_to_signed, arith_driver):
1817 * dbusbind.c (xd_in_read_queued_messages):
1818 * dired.c (directory_files_internal, file_name_completion):
1819 Use bool for booleans.
1820 * dired.c (file_name_completion):
1821 * process.h (fd_callback):
1822 Omit int (actually boolean) argument. It wasn't being used.
1823 All uses changed.
1824 * composite.h, lisp.h: Reflect above API changes.
1825
1826 * cmds.c, coding.c: Use bool for booleans.
1827 * cmds.c (move_point, Fself_insert_command):
1828 * coding.h (struct composition status, struct coding_system):
1829 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
1830 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
1831 (emacs_mule_char, decode_coding_emacs_mule)
1832 (encode_coding_emacs_mule, detect_coding_iso_2022)
1833 (decode_coding_iso_2022, encode_invocation_designation)
1834 (encode_designation_at_bol, encode_coding_iso_2022)
1835 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
1836 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
1837 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
1838 (encode_coding_raw_text, detect_coding_charset)
1839 (decode_coding_charset, encode_coding_charset, detect_eol)
1840 (detect_coding, get_translation_table, produce_chars)
1841 (consume_chars, reused_workbuf_in_use)
1842 (make_conversion_work_buffer, code_conversion_save)
1843 (decode_coding_object, encode_coding_object)
1844 (detect_coding_system, char_encodable_p)
1845 (Funencodable_char_position, code_convert_region)
1846 (code_convert_string, code_convert_string_norecord)
1847 (Fset_coding_system_priority):
1848 * fileio.c (Finsert_file_contents):
1849 Use bool for booleans.
1850 * coding.h, lisp.h: Reflect above API changes.
1851 * coding.c: Remove unnecessary static function decls.
1852 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
1853 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
1854 not a boolean 'int', since callers never look at the return value.
1855 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
1856 * coding.h (decoding_buffer_size, encoding_buffer_size)
1857 (emacs_mule_string_char): Remove unused extern decls.
1858 (struct iso_2022_spec, struct coding_system):
1859 Use 'unsigned int : 1' for boolean fields, since there's more than one.
1860 (struct emacs_mule_spec): Remove unused field 'full_support'.
1861 All initializations removed.
1862 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
1863
1864 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
1865
1866 Fix spare memory change (Bug#12286).
1867 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
1868 (valid_lisp_object_p): Likewise.
1869
1870 2012-08-27 Martin Rudalics <rudalics@gmx.at>
1871
1872 * window.c (Fset_window_configuration): Record any window's old
1873 buffer if it's replaced (see Bug#8789). If the new current
1874 buffer doesn't appear in the selected window, go to its old
1875 point (Bug#12208).
1876
1877 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
1878
1879 Special MEM_TYPE_SPARE to denote reserved memory.
1880 * alloc.c (enum mem_type): New memory type.
1881 (refill_memory_reserve): Use new type for spare memory.
1882 This prevents live_cons_p and live_string_p from incorrect
1883 detection of uninitialized objects from spare memory as live.
1884
1885 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
1886
1887 Spelling fixes.
1888 * Makefile.in (.PHONY): versioclean -> versionclean.
1889
1890 Remove unused external symbols.
1891 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
1892 * window.c (Qwindow_valid_p, decode_valid_window):
1893 Now static, not extern.
1894 * data.c (Qinterval): Remove; unused.
1895 (syms_of_data): Do not define 'interval'.
1896 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
1897 * window.h (decode_valid_window):
1898 Remove decls.
1899
1900 * character.c, charset.c, chartab.c: Use bool for booleans.
1901 * character.c (lisp_string_width, string_count_byte8)
1902 (string_escape_byte8):
1903 * charset.c (charset_map_loaded, load_charset_map, read_hex):
1904 (load_charset_map_from_file, map_charset_chars)
1905 (Fdefine_charset_internal, define_charset_internal)
1906 (Fdeclare_equiv_charset, find_charsets_in_text)
1907 (Ffind_charset_region, char_charset, Fiso_charset):
1908 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
1909 (sub_char_table_set, sub_char_table_set_range)
1910 (char_table_set_range, optimize_sub_char_table)
1911 (map_sub_char_table):
1912 Use bool for boolean.
1913 * character.c (str_to_unibyte): Omit last boolean argument; it was
1914 always 0. All callers changed.
1915 * character.h, charset.h: Adjust to match previous changes.
1916 * character.h (char_printable_p): Remove decl of nonexistent function.
1917 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
1918 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
1919 are all boolean, so make them single-bit bitfields.
1920
1921 * lisp.h (ASET): Remove attempt to detect side effects.
1922 It was meant to be temporary and it often doesn't work,
1923 because when IDX has side effects the behavior of IDX==IDX
1924 is undefined. See Stefan Monnier in
1925 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
1926
1927 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1928
1929 * lisp.h (functionp): New function (extracted from Ffunctionp).
1930 (FUNCTIONP): Use it.
1931 * eval.c (Ffunctionp): Use it.
1932
1933 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
1934
1935 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
1936 as that's faster and simpler than static storage. Don't bother
1937 with the g_main_context_query overhead if g_main_context_pending
1938 says no events are pending.
1939 (gfds, gfds_size): Remove these static vars.
1940 (xgselect_initialize): Remove; no longer needed.
1941 All uses and decls removed.
1942
1943 * emacs.c (fatal_error_signal_hook): Remove.
1944 All uses removed. This leftover from old code was always 0.
1945
1946 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
1947 * casefiddle.c (casify_object, casify_region):
1948 * casetab.c (set_case_table):
1949 * category.c, category.h (word_boundary_p):
1950 * category.h (CHAR_HAS_CATEGORY):
1951 Use bool for booleans, instead of int.
1952
1953 2012-08-25 Eli Zaretskii <eliz@gnu.org>
1954
1955 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
1956
1957 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
1958
1959 On assertion failure, print backtrace if available.
1960 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
1961 (die) [ENABLE_CHECKING]: Print a backtrace if available.
1962 * Makefile.in (LIB_EXECINFO): New macro.
1963 (LIBES): Use it.
1964
1965 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
1966 * bytecode.c (exec_byte_code):
1967 * callint.c (check_mark, Fcall_interactively):
1968 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
1969 (getenv_internal, sync_process_alive, call_process_exited):
1970 * lisp.h (USE_SAFE_ALLOCA):
1971 Use bool for booleans, instead of int.
1972 * lisp.h, process.h: Adjust prototypes to match above changes.
1973 * callint.c (Fcall_interactively): Don't assume the mark's
1974 offset fits in 'int'.
1975
1976 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
1977
1978 * buffer.c, buffer.h: Use bool for boolean.
1979 * buffer.c (reset_buffer_local_variables)
1980 (buffer_lisp_local_variables, Fset_buffer_modified_p)
1981 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
1982 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
1983 (overlay_touches_p, overlay_strings, Foverlay_put)
1984 (report_overlay_modification, call_overlay_mod_hooks):
1985 (mmap_enlarge, mmap_set_vars):
1986 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
1987 Use bool for booleans, instead of int.
1988 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
1989 since the 1-or-0 return value is always ignored anyway.
1990 (mmap_initialized_p):
1991 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
1992 * buffer.h, lisp.h: Adjust prototypes to match above changes.
1993
1994 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
1995
1996 * bidi.c: Use bool for boolean.
1997 This is a bit more readable, and makes the text segment of bidi.o
1998 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
1999 Presumably it's faster too.
2000 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
2001 Now bool.
2002 (bidi_cache_find_level_change, bidi_cache_iterator_state)
2003 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
2004 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
2005 (bidi_explicit_dir_char, bidi_level_of_next_char)
2006 (bidi_find_other_level_edge, bidi_move_to_visually_next):
2007 Use bool for booleans, instead of int.
2008 * dispextern.h (bidi_init_it, bidi_paragraph_init)
2009 (bidi_unshelve_cache): Adjust decls to match code.
2010
2011 2012-08-23 Martin Rudalics <rudalics@gmx.at>
2012
2013 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
2014 argument.
2015
2016 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
2017
2018 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
2019 * atimer.h: Include <stdbool.h>.
2020
2021 2012-08-22 Dan Nicolaescu <dann@gnu.org>
2022
2023 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
2024 compile time tests instead of run time tests on systems that do
2025 not use them.
2026 (FRAME_MAC_P): Remove leftover from deleted code.
2027 * frame.c (syms_of_frame): Remove leftover from deleted code.
2028
2029 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
2030
2031 * nsterm.m (insertText:): Don't clear modifiers if code is space.
2032
2033 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
2034
2035 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
2036 Otherwise, the compiler complains about (A?B:C) where B is void
2037 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
2038 (fontset_add): Return void, for FONTSET_ADD.
2039
2040 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2041
2042 * alloc.c: Use bool for booleans.
2043 (gc_in_progress, abort_on_gc)
2044 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
2045 (dont_register_blocks) [GC_MALLOC_CHECK]:
2046 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
2047 (check_string_bytes, make_specified_string, memory_full)
2048 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
2049 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
2050 (mark_stack, valid_pointer_p, make_pure_string)
2051 (Fgarbage_collect, survives_gc_p, gc_sweep):
2052 Use bool for booleans, instead of int.
2053 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
2054 Remove unused local.
2055 * alloc.c (PURE_POINTER_P):
2056 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
2057 * editfns.c (Fformat):
2058 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
2059 (Fdo_auto_save):
2060 * fns.c (sweep_weak_table):
2061 * lisp.h (suppress_checking, push_message, survives_gc_p)
2062 (make_pure_string, gc_in_progress, abort_on_gc):
2063 * lread.c (readchar, read1):
2064 * print.c (Fprin1_to_string):
2065 * xdisp.c (push_message):
2066 Use bool for booleans affected directly or indirectly by
2067 alloc.c's changes.
2068
2069 Make recently-introduced setters macros.
2070 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
2071 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
2072 (set_fontset_default, set_fontset_fallback): Rename from their
2073 upper-case counterparts, and make them functions rather than macros.
2074 This is more consistent with the other recently-introduced setters.
2075 These don't need to be inline, since they're local.
2076
2077 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
2078
2079 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
2080 the loop (Bug#12247).
2081
2082 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2083
2084 * lisp.h (vcopy): Use memcpy rather than our own loop.
2085 This fixes a performance regression introduced by the recent
2086 addition of vcopy. This means 'vcopy' will need to be modified
2087 for a copying collector, but that's OK. Also, tighten the
2088 checking in the assertion.
2089
2090 2012-08-21 Eli Zaretskii <eliz@gnu.org>
2091
2092 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
2093 components for RTL text (Bug#11860). Adjust X-OFFSET of each
2094 non-base glyph for the width of the base character, according to
2095 what x_draw_composite_glyph_string_foreground expects.
2096 Generate WADJUST value according to composition_gstring_width's
2097 expectations, to produce correct width of the composed character.
2098 Reverse the sign of the DU offset produced by ScriptPlace.
2099
2100 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2101
2102 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
2103
2104 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
2105
2106 Avoid direct writes to contents member of struct Lisp_Vector.
2107 * lisp.h (vcopy): New function to copy data into vector.
2108 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
2109 * fns.c (Ffillarray): Use ASET.
2110 * keyboard.c (timer_check_2): Use AREF and ASET.
2111 (append_tool_bar_item, Frecent_keys): Use vcopy.
2112 * lread.c (read_vector): Use ASET.
2113 * msdos.c (Frecent_doskeys): Use vcopy.
2114 * xface.c (Finternal_copy_lisp_face): Use vcopy.
2115 (Finternal_merge_in_global_face): Use ASET and vcopy.
2116 * xfont.c (xfont_list_pattern): Likewise.
2117
2118 2012-08-21 Martin Rudalics <rudalics@gmx.at>
2119
2120 * window.c (Fwindow_point): For the selected window always return
2121 the position of its buffer's point.
2122 (Fset_window_point): For the selected window always go in its
2123 buffer to the specified position.
2124
2125 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
2126
2127 Setter macros for fontsets.
2128 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
2129 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
2130 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
2131 Adjust users.
2132
2133 2012-08-20 Glenn Morris <rgm@gnu.org>
2134
2135 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
2136 Don't assume that `ln -f' works.
2137
2138 2012-08-20 Eli Zaretskii <eliz@gnu.org>
2139
2140 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
2141 and later about non-assignments with no effect. See discussion at
2142 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
2143 details.
2144
2145 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2146
2147 Inline setter functions for Lisp_Objects slots of struct specbinding.
2148 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
2149 Adjust users.
2150
2151 2012-08-20 Martin Rudalics <rudalics@gmx.at>
2152
2153 * window.c (select_window): Always make selected window's buffer
2154 current.
2155
2156 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2157
2158 Use AREF and ASET for docstrings of category tables.
2159 * category.h (CATEGORY_DOCSTRING): Use AREF.
2160 (SET_CATEGORY_DOCSTRING): Use ASET.
2161 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
2162
2163 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2164
2165 Inline setter functions for hash table members.
2166 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
2167 (set_hash_hash, set_hash_index): Rename with _slot suffix.
2168 (set_hash_key_and_value, set_hash_index, set_hash_next)
2169 (set_hash_hash): New functions.
2170 * charset.c, fns.c: Adjust users.
2171
2172 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2173
2174 Inline getter and setter functions for per-buffer values.
2175 * buffer.h (per_buffer_default, set_per_buffer_default)
2176 (per_buffer_value, set_per_buffer_value): New functions.
2177 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
2178 * buffer.c, data.c: Adjust users.
2179
2180 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
2181
2182 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
2183
2184 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
2185
2186 Rely on <config.h> + <unistd.h> to declare 'environ',
2187 as gnulib does this if the system doesn't.
2188 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
2189 Remove declaration. MS-Windows declares it on stdlib.h which is
2190 included by conf_post.h.
2191 * emacs.c (environ) [DOUG_LEA_MALLOC]:
2192 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
2193 * vm-limit.c: Include <unistd.h>, for 'environ'.
2194
2195 * unexaix.c, unexcoff.c: Include "mem-limits.h".
2196 (start_of_data): Remove decl; mem-limits.h provides it.
2197
2198 * xdisp.c (handle_invisible_prop): Make it a bit faster
2199 and avoid a gcc -Wmaybe-uninitialized diagnostic.
2200
2201 2012-08-19 Chong Yidong <cyd@gnu.org>
2202
2203 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
2204 ends (Bug#3874).
2205
2206 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
2207
2208 * .gdbinit: Use call instead of set when calling a function in the
2209 inferior.
2210
2211 * data.c (set_internal): Don't use set_blv_found.
2212 (Fkill_local_variable): Likewise.
2213
2214 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
2215
2216 * nsfont.m (ns_ascii_average_width): Ensure the string
2217 ascii_printable is initialized with a null-terminated character
2218 array. Otherwise, it can contain undesired extra characters.
2219
2220 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
2221
2222 port new setting code to Sun C 5.8 2005/10/13
2223 * chartab.c, lisp.h (char_table_set, char_table_set_range):
2224 Return void, not Lisp_Object. Otherwise, the compiler
2225 complains about (A?B:C) where B is void and C is Lisp_Object
2226 when compiling CHAR_TABLE_SET, due to the recent change to
2227 the API of sub_char_table_set_contents.
2228
2229 2012-08-18 Chong Yidong <cyd@gnu.org>
2230
2231 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
2232 for the string case (Bug#3874).
2233
2234 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
2235
2236 * buffer.h (BSET): Remove (Bug#12215).
2237 Replace all uses with calls to new setter functions.
2238 (bset_bidi_paragraph_direction, bset_case_canon_table)
2239 (bset_case_eqv_table, bset_directory, bset_display_count)
2240 (bset_display_time, bset_downcase_table)
2241 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
2242 (bset_last_selected_window, bset_local_var_alist)
2243 (bset_mark_active, bset_point_before_scroll, bset_read_only)
2244 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
2245 (bset_width_table):
2246 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2247 (bset_auto_fill_function, bset_auto_save_file_format)
2248 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2249 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2250 (bset_cache_long_line_scans, bset_case_fold_search)
2251 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2252 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2253 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2254 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2255 (bset_header_line_format, bset_indicate_buffer_boundaries)
2256 (bset_indicate_empty_lines, bset_invisibility_spec)
2257 (bset_left_fringe_width, bset_major_mode, bset_mark)
2258 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2259 (bset_name, bset_overwrite_mode, bset_pt_marker)
2260 (bset_right_fringe_width, bset_save_length)
2261 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2262 (bset_scroll_up_aggressively, bset_selective_display)
2263 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2264 (bset_word_wrap, bset_zv_marker):
2265 * category.c (bset_category_table):
2266 * syntax.c (bset_syntax_table):
2267 New setter functions.
2268
2269 * process.h (PSET): Remove (Bug#12215).
2270 Replace all uses with calls to new setter functions.
2271 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2272 (PROCESS_INLINE): New macro.
2273 (pset_childp): New setter function.
2274 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
2275 * process.c (PROCESS_INLINE):
2276 Define to EXTERN_INLINE, so that the corresponding functions
2277 are compiled into code.
2278 (pset_buffer, pset_command, pset_decode_coding_system)
2279 (pset_decoding_buf, pset_encode_coding_system)
2280 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
2281 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
2282 (pset_type, pset_write_queue): New setter functions.
2283
2284 * window.h (WSET): Remove (Bug#12215).
2285 Replace all uses with calls to new setter functions.
2286 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2287 (WINDOW_INLINE): New macro.
2288 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
2289 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
2290 (wset_total_lines, wset_vertical_scroll_bar)
2291 (wset_window_end_pos, wset_window_end_valid)
2292 (wset_window_end_vpos): New setter functions.
2293 * window.c (WINDOW_INLINE):
2294 Define to EXTERN_INLINE, so that the corresponding functions
2295 are compiled into code.
2296 (wset_combination_limit, wset_dedicated, wset_display_table)
2297 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
2298 (wset_new_normal, wset_new_total, wset_next_buffers)
2299 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2300 (wset_prev_buffers, wset_right_fringe_width)
2301 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
2302 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
2303 (wset_window_parameters):
2304 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2305 (wset_column_number_displayed, wset_region_showing):
2306 New setter functions.
2307
2308 * termhooks.h (TSET): Remove (Bug#12215).
2309 Replace all uses with calls to new setter functions.
2310 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2311 (TERMHOOKS_INLINE): New macro.
2312 (tset_charset_list, tset_selection_alist): New setter functions.
2313 * terminal.c (TERMHOOKS_INLINE):
2314 Define to EXTERN_INLINE, so that the corresponding functions
2315 are compiled into code.
2316 (tset_param_alist): New setter function.
2317
2318 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
2319
2320 * keyboard.h (KSET): Remove (Bug#12215).
2321 Replace all uses with calls to new setter functions.
2322 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2323 (KEYBOARD_INLINE): New macro.
2324 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
2325 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
2326 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
2327 New setter functions.
2328 * keyboard.c (KEYBOARD_INLINE):
2329 Define to EXTERN_INLINE, so that the corresponding functions
2330 are compiled into code.
2331 (kset_echo_string, kset_kbd_queue)
2332 (kset_keyboard_translate_table, kset_last_prefix_arg)
2333 (kset_last_repeatable_command, kset_local_function_key_map)
2334 (kset_overriding_terminal_local_map, kset_real_last_command)
2335 (kset_system_key_syms): New setter functions.
2336
2337 * frame.h (FSET): Remove (Bug#12215).
2338 Replace all uses with calls to new setter functions.
2339 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2340 (FRAME_INLINE): New macro.
2341 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
2342 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
2343 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
2344 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
2345 (fset_param_alist, fset_root_window, fset_scroll_bars)
2346 (fset_selected_window, fset_title, fset_tool_bar_items)
2347 (fset_tool_bar_position, fset_tool_bar_window): New functions.
2348 * frame.c (FRAME_INLINE):
2349 Define to EXTERN_INLINE, so that the corresponding functions
2350 are compiled into code.
2351 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
2352
2353 A few more naming-convention fixes for getters and setters.
2354 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
2355 and rename from buffer_overlays_set_before.
2356 (set_buffer_overlays_after): Move here from buffer.h, and rename
2357 from buffer_overlays_set_after.
2358 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
2359 All uses changed.
2360 (set_buffer_intervals): Rename from buffer_set_intervals.
2361 * intervals.c (set_interval_object): Move here from intervals.h,
2362 and rename from interval_set_object.
2363 (set_interval_left): Move here from intervals.h, and rename from
2364 interval_set_left.
2365 (set_interval_right): Move here from intervals.h, and rename from
2366 interval_set_right.
2367 (copy_interval_parent): Move here from intervals.h, and rename from
2368 interval_copy_parent.
2369 * intervals.h (set_interval_parent): Rename from interval_set_parent.
2370 (set_interval_plist): Rename from interval_set_plist.
2371 Return void, not Lisp_Object, since no caller uses the result.
2372 * lisp.h (string_intervals): Rename from string_get_intervals.
2373 (set_string_intervals): Rename from string_set_intervals.
2374
2375 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
2376 (set_char_table_contents): Rename from char_table_set_contents.
2377 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
2378 All uses changed. See the end of
2379 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
2380
2381 * lisp.h (CSET): Remove (Bug#12215).
2382 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
2383 (set_char_table_purpose): New functions,
2384 replacing CSET. All uses changed. For example, replace
2385 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
2386 "set_char_table_parent (char_table, parent);".
2387 The old version was confusing because it used the same name
2388 'parent' for two different things.
2389
2390 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
2391
2392 Functions to get and set Lisp_Object fields of buffer-local variables.
2393 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
2394 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
2395 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
2396 * data.c, eval.c, frame.c: Adjust users.
2397
2398 2012-08-17 Chong Yidong <cyd@gnu.org>
2399
2400 * xfaces.c (merge_face_vectors): If the target font specfies a
2401 font spec, make the font's attributes take precedence over
2402 directly-specified attributes.
2403 (merge_face_ref): Recognize :font.
2404
2405 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
2406
2407 Do not use memcpy for copying intervals.
2408 * intervals.c (reproduce_interval): New function.
2409 (reproduce_tree, reproduce_tree_obj): Use it.
2410 (reproduce_tree_obj): Remove prototype.
2411
2412 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
2413
2414 * lisp.h (duration_to_sec_usec): Remove unused decl.
2415
2416 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
2417
2418 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
2419 to an allocated instance of NSString, not to the class itself.
2420
2421 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
2422
2423 * makefile.w32-in (C_CTYPE_H): New macro.
2424 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
2425 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
2426 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
2427
2428 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
2429
2430 Use ASCII tests for character types.
2431 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
2432 * xfns.c, xterm.c:
2433 Don't include <ctype.h>; was not needed.
2434 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
2435 * sysdep.c, xfaces.c:
2436 Include <c-ctype.h> instead of <ctype.h>.
2437 * nsterm.m: Include <c-ctype.h>.
2438 * charset.c (read_hex):
2439 * doc.c (Fsnarf_documentation):
2440 * fileio.c (IS_DRIVE) [WINDOWSNT]:
2441 (DRIVE_LETTER) [DOS_NT]:
2442 (Ffile_name_directory, Fexpand_file_name)
2443 (Fsubstitute_in_file_name):
2444 * font.c (font_parse_xlfd, font_parse_fcname):
2445 * frame.c (x_set_font_backend):
2446 * gtkutil.c (xg_get_font):
2447 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
2448 * nsimage.m (hexchar):
2449 * nsterm.m (ns_xlfd_to_fontname):
2450 * sysdep.c (system_process_attributes):
2451 * xfaces.c (hash_string_case_insensitive):
2452 Use C-locale tests instead of locale-specific tests for character
2453 types, since we want the ASCII interpretation here, not the
2454 interpretation suitable for whatever happens to be the current locale.
2455
2456 2012-08-16 Martin Rudalics <rudalics@gmx.at>
2457
2458 Consistently check windows for validity/liveness
2459 (Bug#11984, Bug#12025, Bug#12026).
2460 * lisp.h (CHECK_VALID_WINDOW): New macro.
2461 * window.c (decode_window): Rename to decode_live_window.
2462 (decode_valid_window, Fwindow_valid_p): New functions.
2463 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
2464 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
2465 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
2466 (Fwindow_prev_sibling, Fwindow_combination_limit)
2467 (Fset_window_combination_limit, Fwindow_use_time)
2468 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
2469 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
2470 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
2471 (Fwindow_hscroll, Fset_window_hscroll)
2472 (Fwindow_redisplay_end_trigger)
2473 (Fset_window_redisplay_end_trigger, Fwindow_edges)
2474 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
2475 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
2476 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
2477 (Fwindow_end, Fset_window_point, Fset_window_start)
2478 (Fpos_visible_in_window_p, Fwindow_line_height)
2479 (Fwindow_dedicated_p, Fset_window_dedicated_p)
2480 (Fwindow_prev_buffers, Fset_window_prev_buffers)
2481 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
2482 (Fset_window_parameter, Fwindow_display_table)
2483 (Fset_window_display_table, Fdelete_other_windows_internal)
2484 (Fset_window_buffer, Fset_window_new_total)
2485 (Fset_window_new_normal, Fdelete_window_internal)
2486 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
2487 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
2488 (Fwindow_scroll_bars): Check whether argument window is a valid or
2489 live window. Update doc-strings.
2490 (syms_of_window): New symbol Qwindow_valid_p.
2491 * keyboard.c (Fposn_at_x_y): Check whether argument
2492 frame_or_window denotes a valid window.
2493
2494 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
2495
2496 Fix previous char table change.
2497 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
2498 * chartab.c (optimize_sub_char_table): Likewise.
2499
2500 2012-08-16 Chong Yidong <cyd@gnu.org>
2501
2502 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
2503
2504 * xfont.c (xfont_open):
2505 * xftfont.c (xftfont_open): Set the font's max_width field.
2506
2507 * nsfont.m (nsfont_open): Similar to the Xft backend, set
2508 min_width to space_width and average_width to the average over
2509 printable ASCII characters.
2510 (ns_char_width): Code cleanup.
2511 (ns_ascii_average_width): New utility function.
2512
2513 * font.h (struct font): Update comments.
2514
2515 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
2516
2517 Simple interface to set Lisp_Object fields of character tables.
2518 * lisp.h (CSET): New macro.
2519 (char_table_set_extras, char_table_set_contents)
2520 (sub_char_table_set_contents): New function.
2521 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
2522 * syntax.c: Adjust users.
2523
2524 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2525
2526 * eval.c (eval_sub): Bind lexical-binding.
2527 * lread.c (Qlexical_binding): Make non-static.
2528
2529 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
2530
2531 * nsmenu.m (popupSession): Remove.
2532 (pop_down_menu): Remove endModalSession.
2533 (timeout_handler:): New method.
2534 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
2535 Call runModalForWindow. Check timer_fired when it returns.
2536 If not set, cancel timer and break out of loop.
2537 Otherwise loop again, with a new timeout.
2538
2539 * nsterm.m: Include fcntl.h if present.
2540 (fd_entry, t_readfds, inNsSelect): Remove.
2541 (select_writefds, select_valid, select_timeout, selfds)
2542 (select_mutex, apploopnr): Add.
2543 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
2544 Otherwise call kbd_buffer_store_event.
2545 (ns_send_appdefined): Remove release of fd_entry.
2546 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
2547 Increment and decrement apploopnr.
2548 (ns_select): If no file descriptors, just do a NSTimer.
2549 Otherwise copy read/write masks and start select thread (fd_handler).
2550 Start main loop and wait for application defined event.
2551 Inform select thread to stop selecting after main loop is exited.
2552 (ns_term_init): Create selfds pipe and set non-blocking.
2553 Initialize select_mutex. Start the select thread (fd_handler).
2554 (fd_handler:): Loop forever, wait for info from the main thread
2555 to either start or stop selecting. When select returns, send
2556 and appdefined event.
2557 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
2558 If not call kbd_buffer_store_event.
2559
2560 * nsterm.h (EmacsApp): fd_handler takes id argument.
2561 (EmacsDialogPanel): Add timer_fired and timeout_handler.
2562
2563 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
2564
2565 2012-08-15 Eli Zaretskii <eliz@gnu.org>
2566
2567 * region-cache.c (move_cache_gap): Update gap_len using the actual
2568 growth of the boundaries array. Do not change cache_len.
2569 (Bug#12196)
2570
2571 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
2572
2573 Generalize and cleanup font subsystem checks.
2574 * font.h (FONT_DEBUG, font_assert): Remove.
2575 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
2576 Change font_assert to eassert. Use eassert where appropriate.
2577
2578 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
2579
2580 * gtkutil.c (xg_get_font): Use pango_units_to_double.
2581
2582 2012-08-15 Chong Yidong <cyd@gnu.org>
2583
2584 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
2585 When using the new font chooser, use gtk_font_chooser_get_font_desc to
2586 extract the font descriptor instead of just the font name.
2587 In that case, return a font spec instead of a string.
2588 (x_last_font_name): Move to this file from xfns.c.
2589
2590 * xfns.c (Fx_select_font): The return value can also be a font
2591 spec. Move x_last_font_name management to gtkutil.c.
2592
2593 * xfaces.c: Make font weight and style symbols non-static.
2594
2595 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2596
2597 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
2598 (bug#12117).
2599
2600 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
2601
2602 * alloc.c (Fgarbage_collect): Use plural form consistently.
2603
2604 2012-08-14 Eli Zaretskii <eliz@gnu.org>
2605
2606 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
2607 iteration through the command loop. Fixes a problem whereby mouse
2608 movements are ignored until the first mouse click.
2609
2610 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2611
2612 Use bool, not int, for Lisp booleans.
2613 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
2614 makes Emacs a bit smaller and presumably a bit faster.
2615 * lisp.h: Include <stdbool.h>.
2616 (struct Lisp_Boolfwd, defvar_bool):
2617 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
2618 * regex.c [!emacs]: Include <stdbool.h>.
2619 (false, true): Remove; <stdbool.h> does this for us now.
2620
2621 2012-08-14 Chong Yidong <cyd@gnu.org>
2622
2623 * character.c (Fcharacterp): Doc fix (Bug#12076).
2624
2625 * data.c (Findirect_variable): Doc fix (Bug#11040).
2626
2627 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
2628
2629 * editfns.c (Fformat): Doc fix (Bug#12059).
2630 (Fsave_current_buffer): Doc fix (Bug#11542).
2631
2632 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
2633
2634 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
2635 (bug#12022).
2636
2637 2012-08-14 Martin Rudalics <rudalics@gmx.at>
2638
2639 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
2640 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
2641 * minibuf.c (choose_minibuf_frame, read_minibuf):
2642 * w32fns.c (x_create_tip_frame):
2643 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
2644 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
2645
2646 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2647
2648 * intervals.c (offset_intervals): Remove obsolete comment.
2649
2650 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
2651
2652 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
2653
2654 2012-08-14 Gergely Risko <gergely@risko.hu>
2655
2656 * coding.c (decode_coding): Record buffer modification before
2657 disabling undo_list (Bug#11773).
2658
2659 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
2660
2661 Revert and cleanup some recent overlay changes.
2662 * buffer.h (enum overlay_type): Remove.
2663 (buffer_get_overlays, buffer_set_overlays): Likewise.
2664 (buffer_set_overlays_before, buffer_set_overlays_after):
2665 New function. Adjust users.
2666 (unchain_both): Add eassert.
2667
2668 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
2669
2670 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
2671
2672 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2673
2674 * gtkutil.c (xg_mark_data): Don't assume C99.
2675
2676 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
2677
2678 * gtkutil.c (xg_frame_tb_info): New struct.
2679 (TB_INFO_KEY): New define.
2680 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
2681 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
2682 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
2683 if not present.
2684 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
2685 is up to date. Otherwise store new data.
2686 (free_frame_tool_bar): Free xg_frame_tb_info if present.
2687
2688 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
2689
2690 Use KSET for write access to Lisp_Object members of struct kboard.
2691 * keyboard.h (KSET): New macro.
2692 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
2693 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
2694 * xterm.c: Adjust users.
2695
2696 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
2697
2698 Use BSET for write access to Lisp_Object members of struct buffer.
2699 * buffer.h (BSET): New macro.
2700 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
2701 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
2702 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
2703 * window.c, xdisp.c, xfns.c: Adjust users.
2704
2705 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
2706
2707 * lread.c (syms_of_lread): Initialize Vlexical_binding.
2708
2709 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
2710
2711 * nsterm.m (not_in_argv): New function.
2712 (application:openFile, application:openTempFile:):
2713 (application:openFileWithoutUI:, application:openFiles:): Open file
2714 if not_in_argv returns non-zero (bug#12171).
2715
2716 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
2717 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
2718 Define for Gtk+ versions less than 3.2.
2719 (xg_get_font_name): Use those functions/macros here.
2720 Reported by Frans Oilinki <moilinki@gmail.com>.
2721
2722 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2723
2724 * unexmacosx.c (copy_data_segment): Copy initialized data in
2725 statically linked libraries from input file rather than memory.
2726
2727 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
2728 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
2729 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
2730
2731 2012-08-10 Glenn Morris <rgm@gnu.org>
2732
2733 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
2734 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
2735
2736 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2737
2738 Fix last change to allow compilation with low optimization levels.
2739 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
2740 Reported by Jan Djärv <jan.h.d@swipnet.se>.
2741
2742 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2743
2744 Use common inline syntax in intervals.h.
2745 * intervals.h (INTERVALS_INLINE): New macro.
2746 Change all users from LISP_INLINE.
2747
2748 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2749
2750 Define Qnone once for all platforms.
2751 * frame.c (Qnone): Define here.
2752 (syms_of_frame): DEFSYM it.
2753 * lisp.h (Qnone): New declaration.
2754 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
2755 * xfns.c: Remove duplication. Adjust users.
2756
2757 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2758
2759 Remove unused macros from intervals.h.
2760 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
2761 * intervals.c: Adjust comment.
2762
2763 2012-08-10 Eli Zaretskii <eliz@gnu.org>
2764
2765 * w32fns.c <w32_unicode_gui>: New static variable.
2766 (globals_of_w32fns): Initialize it according to os_subtype.
2767 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
2768 testing os_subtype.
2769
2770 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
2771 Eli Zaretskii <eliz@gnu.org>
2772
2773 Fix bug #10299 with Unicode characters sent by customized
2774 keyboards created by MSKLC.
2775 * w32fns.c (INIT_WINDOW_CLASS): New macro.
2776 (w32_init_class): Use it to initialize the Emacs class with either
2777 ANSI or Unicode API calls.
2778 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
2779 later.
2780 (w32_wnd_proc): If the character code sent by WM_CHAR or
2781 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
2782 original message. Call DefWindowProcW on NT and later.
2783
2784 2012-08-10 Glenn Morris <rgm@gnu.org>
2785
2786 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
2787
2788 * lisp.h (DIRECTORY_SEP): Let configure set it.
2789
2790 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
2791
2792 Use TSET for write access to Lisp_Object slots of struct terminal.
2793 * termhooks.h (TSET): New macro.
2794 * coding.c, terminal.c, xselect.c: Adjust users.
2795
2796 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2797
2798 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
2799 the failing expression, include them in the error message.
2800 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
2801 * lisp.h (internal_condition_case_n): Update declaration.
2802
2803 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2804
2805 Inline functions to examine and change buffer overlays.
2806 * buffer.c (unchain_both): New function.
2807 * buffer.h (buffer_get_overlays, buffer_set_overlays):
2808 (buffer_has_overlays): New function.
2809 (enum overlay_type): New enum.
2810 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
2811 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
2812
2813 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2814
2815 Inline functions to examine and change buffer intervals.
2816 * alloc.c (mark_interval_tree): Remove.
2817 (MARK_INTERVAL_TREE): Simplify.
2818 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
2819 * intervals.c (buffer_balance_intervals): New function.
2820 (graft_intervals_into_buffer): Adjust indentation.
2821 (set_intervals_multibyte): Simplify.
2822 * buffer.h (BUF_INTERVALS): Remove.
2823 (buffer_get_intervals, buffer_set_intervals): New function.
2824 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
2825 * intervals.c, textprop.c: Adjust users.
2826
2827 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2828
2829 Inline functions to examine and change string intervals.
2830 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
2831 (string_get_intervals, string_set_intervals): New function.
2832 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
2833 * lread.c, print.c, textprop.c: Adjust users.
2834
2835 2012-08-08 Glenn Morris <rgm@gnu.org>
2836
2837 * lisp.mk (lisp): Remove language/persian.elc.
2838
2839 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2840
2841 Cleanup intervals.
2842 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
2843 (NULL_INTERVAL_P): Likewise. Adjust users.
2844 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
2845 Adjust comment. Move under #if 0.
2846 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
2847 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
2848
2849 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2850
2851 Check total length of intervals with eassert.
2852 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
2853 * intervals.c: Change all users to eassert.
2854
2855 2012-08-07 Eli Zaretskii <eliz@gnu.org>
2856
2857 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
2858 Rename fields to match removal of FGET and WGET and disuse of
2859 INTERNAL_FIELD in Lisp_Cons.
2860
2861 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2862
2863 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
2864 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
2865 name since all xname users are fixed long time ago. Do not
2866 use INTERNAL_FIELD.
2867 (set_symbol_name, set_symbol_function, set_symbol_plist):
2868 (set_symbol_next, set_overlay_plist): New function.
2869 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
2870 (struct Lisp_Overlay): Likewise.
2871 (CVAR, MVAR, SVAR): Remove.
2872 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
2873 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
2874 * xterm.c: Adjust users.
2875 * .gdbinit: Change to use name field of struct Lisp_Symbol
2876 where appropriate.
2877
2878 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2879
2880 Basic functions to set Lisp_Object and pointer slots of intervals.
2881 * intervals.h (interval_set_parent, interval_set_object):
2882 (interval_set_left, interval_set_right, interval_set_plist):
2883 (interval_copy_parent): New function.
2884 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
2885 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
2886 Adjust indentation.
2887 (INTERVAL_SIZE): Remove. Adjust users.
2888 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
2889
2890 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2891
2892 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
2893 * process.h (PGET): Remove.
2894 (struct Lisp_Process): Do not use INTERNAL_FIELD.
2895 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
2896
2897 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2898
2899 Drop WGET and revert read access to Lisp_Objects slots of struct window.
2900 * window.h (WGET): Remove.
2901 (struct window): Do not use INTERNAL_FIELD.
2902 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2903 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2904 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
2905 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
2906 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
2907 Adjust users.
2908
2909 2012-08-07 Chong Yidong <cyd@gnu.org>
2910
2911 * window.c (Fwindow_edges, Fwindow_pixel_edges)
2912 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
2913 (Fdelete_window_internal): Signal an error if the window is not on
2914 a live frame (Bug#12025).
2915
2916 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2917
2918 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
2919 * frame.h (FGET): Remove.
2920 (struct frame): Do not use INTERNAL_FIELD.
2921 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
2922 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
2923 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
2924 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
2925
2926 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
2927
2928 * w32.c: Silence compiler warnings.
2929 (map_w32_filename): Remove unused variable `is_fat'.
2930 (chase_symlinks): Add parentheses around expression.
2931
2932 2012-08-06 Glenn Morris <rgm@gnu.org>
2933
2934 * sysdep.c: Respect BROKEN_GETWD.
2935
2936 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
2937 Let configure handle it.
2938 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
2939
2940 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2941
2942 Use GCALIGNMENT where appropriate.
2943 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
2944 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
2945 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
2946
2947 2012-08-06 Eli Zaretskii <eliz@gnu.org>
2948
2949 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
2950 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
2951
2952 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
2953
2954 * buffer.h (struct buffer): Revert `indirections' to a simple int;
2955 that should be sufficient for everyone.
2956
2957 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2958
2959 * keyboard.c (timer_check_2): Add break so timer_check returns next
2960 timeout.
2961
2962 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2963
2964 Fix Windows build errors introduced after converting to WGET and WSET.
2965 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
2966 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2967
2968 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2969
2970 * nsterm.m (ns_frame_rehighlight): Use FSET.
2971
2972 * nsmenu.m (ns_update_menubar): Use FSET.
2973
2974 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2975
2976 Separate read and write access to Lisp_Object slots of Lisp_Process.
2977 * process.h (PGET, PSET): New macros similar to AREF and ASET.
2978 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
2979
2980 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2981
2982 Separate read and write access to Lisp_Object slots of struct window.
2983 * window.h (WGET, WSET): New macros similar to AREF and ASET.
2984 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2985 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2986 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
2987 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
2988 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
2989 Adjust users.
2990
2991 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2992
2993 Fix Windows build errors introduced after converting to FGET and FSET.
2994 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
2995 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
2996 (w32_judge_scroll_bars): Change to use FSET.
2997 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2998
2999 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3000
3001 Fix replacement typo.
3002 * window.c (replace_window): Set root_window instead of
3003 selected_window. This fixes a total window subsystem
3004 malfunction reported by Bastien Guerry <bzg@gnu.org>.
3005
3006 2012-08-06 Glenn Morris <rgm@gnu.org>
3007
3008 * lisp.mk (lisp): Add language/persian.elc.
3009
3010 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
3011
3012 Separate read and write access to Lisp_Object slots of struct frame.
3013 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
3014 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
3015 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
3016 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
3017 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
3018
3019 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
3020
3021 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
3022
3023 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
3024
3025 Generalize common compile-time constants.
3026 * lisp.h (header_size, bool_header_size, word_size): Now here.
3027 (struct Lisp_Vector): Add comment.
3028 (struct Lisp_Bool_Vector): Move up to define handy constants.
3029 (VECSIZE, PSEUDOVECSIZE): Simplify.
3030 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
3031 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
3032 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
3033 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
3034 * xfont.c, xmenu.c: Use word_size where appropriate.
3035
3036 2012-08-05 Lawrence Mitchell <wence@gmx.li>
3037
3038 * search.c (Freplace_match): Treat \? in the replacement text
3039 literally (Bug#8161).
3040
3041 2012-08-05 Chong Yidong <cyd@gnu.org>
3042
3043 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
3044 * frame.c (Vdelete_frame_functions):
3045 * emacs.c (Vkill_emacs_hook): Doc fix.
3046
3047 2012-08-04 Eli Zaretskii <eliz@gnu.org>
3048
3049 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
3050 --with-x-toolkit=no builds.
3051 Reported by Carsten Mattner <carstenmattner@gmail.com>.
3052
3053 2012-08-04 Chong Yidong <cyd@gnu.org>
3054
3055 * syntax.c (Fmodify_syntax_entry): Doc fix.
3056
3057 2012-08-04 Eli Zaretskii <eliz@gnu.org>
3058
3059 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
3060 * w32.c (init_environment): Change the default values of many
3061 environment variables in dflt_envvars[] to NULL, to avoid pushing
3062 them into environment when they were not already defined.
3063 Remove the code that deletes site-lisp subdirectories from the default
3064 value of EMACSLOADPATH, as it is no longer needed.
3065 (check_windows_init_file): Now external, not static.
3066 Use Vload_path as is, without adding anything, as this function is now
3067 called when Vload_path is already set up.
3068
3069 * w32.h (check_windows_init_file): Add prototype.
3070
3071 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
3072 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
3073 compatibility with Posix platforms.
3074 (main): Move the call to check_windows_init_file to here from
3075 w32.c.
3076 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
3077 any, in the DEFALT argument into the root of the Emacs build or
3078 installation tree, as appropriate.
3079
3080 * callproc.c (init_callproc_1): Call decode_env_path instead of
3081 doing its equivalent by hand.
3082 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
3083 the code that sets Vexec_path run on MS-Windows.
3084
3085 * lread.c (init_lread): Add comments to #ifdef's.
3086
3087 * msdos.c (dos_set_window_size, IT_update_begin)
3088 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
3089 instead of direct references.
3090
3091 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
3092
3093 Export DEFAULT_REHASH_* to GDB.
3094 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
3095 Now constants, not macros.
3096
3097 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
3098
3099 Remove unnecessary casts involving pointers.
3100 These casts are no longer needed now that we assume C89 or later,
3101 since they involve casting to or from void *.
3102 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
3103 (make_pure_float, make_pure_vector):
3104 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
3105 * macros.c (Fstart_kbd_macro):
3106 * menu.c (find_and_return_menu_selection):
3107 * minibuf.c (read_minibuf_noninteractive):
3108 * sysdep.c (closedir):
3109 * xdisp.c (x_produce_glyphs):
3110 * xfaces.c (compare_fonts_by_sort_order):
3111 * xfns.c (x_real_positions, select_visual):
3112 * xselect.c (x_stop_queuing_selection_requests)
3113 (x_get_window_property, x_get_window_property_as_lisp_data):
3114 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
3115 Remove unnecessary pointer casts.
3116 * alloc.c (record_xmalloc): New function.
3117 * lisp.h (record_xmalloc): New decl.
3118 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
3119 more like a function. This is because the pointer cast is not
3120 needed. All uses changed.
3121 * print.c (print_string, print_error_message): Avoid length recalc.
3122
3123 Improve fix for macroexp crash with debugging (Bug#12118).
3124 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
3125 ARRAY_MARK_FLAG when checking subscripts, because ASET is
3126 not supposed to be invoked from the garbage collector.
3127 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
3128 (gc_aset): New function, which is like ASET but can be
3129 used in the garbage collector.
3130 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
3131 (set_hash_index): Use it instead of ASET.
3132
3133 2012-08-03 Eli Zaretskii <eliz@gnu.org>
3134
3135 Support symlinks on latest versions of MS-Windows.
3136 * w32.c: Include winioctl.h and aclapi.h.
3137 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
3138 (revert_to_self): Forward declarations of static functions.
3139 <static BOOL g_b_init_get_security_info>:
3140 <g_b_init_create_symbolic_link>: New static flags.
3141 (globals_of_w32): Initialize them to zero.
3142 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
3143 (map_w32_filename): Improve commentary. Simplify switch.
3144 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
3145 headers (most versions of MinGW w32api don't).
3146 (get_security_info, create_symbolic_link)
3147 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
3148 New functions.
3149 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
3150 in the argument file name.
3151 (sys_access): Call unc_volume_file_attributes only if
3152 GetFileAttributes fails with network-related error codes.
3153 (sys_rename): Diagnose renaming of a symlink when the user doesn't
3154 have the required privileges.
3155 (get_file_security_desc_by_name): Rename from
3156 get_file_security_desc.
3157 (stat_worker): New function, with most of the guts of 'stat', and
3158 with addition of handling of symlinks and support for 'lstat'.
3159 If possible, get file's attributes and security information by
3160 handle, not by name. Produce S_IFLNK bit for symlinks, when
3161 called from 'lstat'.
3162 (stat, lstat): New functions, call 'stat_worker'.
3163 (symlink, readlink, careadlinkat): Rewritten to create and resolve
3164 symlinks when the underlying filesystem supports them.
3165
3166 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
3167
3168 Fix macroexp crash on Windows with debugging (Bug#12118).
3169 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
3170 checking subscripts; problem introduced with the recent
3171 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
3172 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
3173 since it's used in non-static inline functions now.
3174
3175 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
3176 Don't assume buffer size fits in 'int'. Remove unused local.
3177
3178 Use C99-style 'extern inline' if available.
3179 * buffer.h (BUFFER_INLINE):
3180 * category.h (CATEGORY_INLINE):
3181 * character.h (CHARACTER_INLINE):
3182 * charset.h (CHARSET_INLINE):
3183 * composite.h (COMPOSITE_INLINE):
3184 * dispextern.h (DISPEXTERN_INLINE):
3185 * lisp.h (LISP_INLINE):
3186 * systime.h (SYSTIME_INLINE):
3187 New macro, replacing 'static inline' in this header.
3188 * buffer.h, category.h, character.h, charset.h, composite.h:
3189 * dispextern.h, lisp.h, systime.h:
3190 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3191 * alloc.c (LISP_INLINE):
3192 * buffer.c (BUFFER_INLINE):
3193 * category.c (CATEGORY_INLINE):
3194 * character.c (CHARACTER_INLINE):
3195 * charset.c (CHARSET_INLINE):
3196 * composite.c (COMPOSITE_INLINE):
3197 * dispnew.c (DISPEXTERN_INLINE):
3198 * sysdep.c (SYSTIME_INLINE):
3199 Define to EXTERN_INLINE, so that the corresponding functions
3200 are compiled into code.
3201 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
3202 (INLINE_HEADER_END): New macros.
3203 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
3204 since it's used in non-static inline functions now.
3205 (VALMASK) [!USE_LSB_TAG]: Likewise.
3206
3207 2012-08-02 Glenn Morris <rgm@gnu.org>
3208
3209 * s/: Remove empty directory.
3210
3211 * s/ms-w32.h: Move to ../nt/inc.
3212 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
3213 Update for new ms-w32.h location.
3214
3215 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
3216
3217 Port to Solaris 8.
3218 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
3219
3220 2012-08-02 Glenn Morris <rgm@gnu.org>
3221
3222 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
3223 hard-coding the path separator.
3224
3225 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
3226
3227 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
3228 This how ASET and AREF are supposed to work, and makes
3229 it easier to think about future improvements. See
3230 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
3231 * charset.h (set_charset_attr): New function.
3232 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
3233 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
3234 (aref_addr): New function. All uses of &AREF(...) changed.
3235 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
3236 (set_hash_index): New functions. All lvalue-style uses of
3237 HASH_KEY etc. changed.
3238 * keyboard.c (set_prop): New function. All lvalue-style uses
3239 of PROP changed.
3240
3241 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
3242
3243 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
3244 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
3245 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
3246 * nsfns.m (ns_set_name_as_filename): Likewise.
3247 * nsmenu.m (ns_update_menubar): Likewise.
3248 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
3249
3250 2012-08-01 Eli Zaretskii <eliz@gnu.org>
3251
3252 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
3253 Adapt to latest changes in field names of the corresponding Lisp
3254 objects.
3255
3256 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
3257
3258 2012-08-01 Glenn Morris <rgm@gnu.org>
3259
3260 * s/msdos.h: Remove file.
3261 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
3262 * Makefile.in (S_FILE): Remove.
3263 (config_h): Remove S_FILE.
3264
3265 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
3266
3267 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
3268 Remove; moved to nt/config.nt.
3269
3270 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3271
3272 Use INTERNAL_FIELD for conses and overlays.
3273 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
3274 Remove obsolete comment.
3275 (MVAR): New macro.
3276 (struct Lisp_Overlay): Use INTERNAL_FIELD.
3277 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
3278
3279 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3280
3281 Use INTERNAL_FIELD for symbols.
3282 * lisp.h (SVAR): New macro. Adjust users.
3283 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
3284 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
3285
3286 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3287
3288 Use INTERNAL_FIELD for processes.
3289 * process.h (PVAR): New macro. Adjust style.
3290 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
3291 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
3292
3293 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3294
3295 Use INTERNAL_FIELD for windows.
3296 * window.h (WVAR): New macro.
3297 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
3298 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
3299 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
3300 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
3301 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
3302 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
3303
3304 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
3305
3306 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
3307
3308 2012-08-01 Glenn Morris <rgm@gnu.org>
3309
3310 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
3311 Move to configure.ac.
3312
3313 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
3314
3315 * makefile.w32-in (CONFIG_H): Update dependencies.
3316 (CONF_POST_H): New macro.
3317
3318 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
3319
3320 2012-07-31 Glenn Morris <rgm@gnu.org>
3321
3322 * Makefile.in (S_FILE): No longer set by configure.
3323
3324 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
3325 is available.
3326 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
3327
3328 * process.h (NULL_DEVICE):
3329 * emacs.c (SEPCHAR):
3330 * editfns.c (USER_FULL_NAME): Let configure set them.
3331
3332 * s/README, s/template.h: Remove files.
3333
3334 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
3335
3336 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
3337 Move to configure.ac.
3338
3339 2012-07-31 Eli Zaretskii <eliz@gnu.org>
3340
3341 * .gdbinit (xframe): Adapt to introduction of FVAR and the
3342 resulting renaming of 'struct frame' members.
3343
3344 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
3345
3346 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
3347 after introduction of FVAR.
3348
3349 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
3350
3351 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
3352
3353 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
3354 instead of compositeToPoint.
3355 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
3356
3357 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
3358
3359 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3360
3361 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
3362 * lisp.h (INTERNAL_FIELD): New macro.
3363 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
3364 (BVAR): Change to use INTERNAL_FIELD.
3365 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
3366 (KVAR): Change to use INTERNAL_FIELD.
3367 * frame.h (FVAR): New macro.
3368 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
3369 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
3370 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
3371 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
3372 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
3373
3374 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3375
3376 Miscellaneous fixes for non-default X toolkits.
3377 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
3378 * xterm.c (x_frame_of_widget): Remove redundant prototype.
3379 Move under #ifdef USE_LUCID.
3380 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
3381 definition and usage to avoid warnings.
3382
3383 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
3384
3385 * nsterm.m (openFiles): Fix previous checkin.
3386
3387 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
3388
3389 * indent.c (compute_motion): Remove unused local.
3390
3391 2012-07-31 Glenn Morris <rgm@gnu.org>
3392
3393 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
3394
3395 * conf_post.h [USG5_4]:
3396 Move remaining contents of s/usg5-4-common.h here.
3397 * s/usg5-4-common.h: Remove file.
3398
3399 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
3400 * s/irix6-5.h: Remove file.
3401
3402 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
3403 * s/darwin.h: Remove file.
3404
3405 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
3406 * s/hpux10-20.h: Remove file, which is now empty.
3407
3408 2012-07-30 Glenn Morris <rgm@gnu.org>
3409
3410 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
3411 * Makefile.in (config_h): Add conf_post.h.
3412 * makefile.w32-in (CONFIG_H): Add conf_post.h.
3413
3414 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
3415
3416 * nsterm.m (ns_do_open_file): New variable.
3417 (ns_term_init): Set ns_do_open_file to YES after run returns.
3418 (openFile, openTempFile, openFileWithoutUI, openFiles):
3419 Open files only if ns_do_open_file.
3420
3421 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3422
3423 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
3424 This no-op macro hasn't been needed for many years.
3425 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
3426
3427 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
3428 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
3429 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
3430 gdb_make_enums_visible.
3431 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
3432 (DIRECTORY_SEP): Now a constant, not a macro.
3433
3434 2012-07-30 Eli Zaretskii <eliz@gnu.org>
3435
3436 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
3437 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
3438
3439 * w32term.c <w32_keyboard_codepage>: Renamed from
3440 keyboard_codepage and now external. All users changed.
3441
3442 * w32term.h: Add declaration of w32_keyboard_codepage.
3443
3444 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
3445 the codepage to translate keys to Unicode. If this argument is
3446 -1, use the value returned by GetConsoleCP. All callers changed.
3447
3448 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3449
3450 Update .PHONY listings in makefiles.
3451 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
3452 bootstrap-clean, distclean, maintainer-clean, versioclean,
3453 extraclean, frc.
3454
3455 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
3456 This is a bit clearer. Fix some commentary typos.
3457
3458 2012-07-30 Glenn Morris <rgm@gnu.org>
3459
3460 * s/netbsd.h: Let configure include signal.h if needed.
3461 Remove file, which is now empty.
3462
3463 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
3464 Let configure set them.
3465 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
3466 No more need to undefine.
3467
3468 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
3469
3470 * keymap.c (Fkey_description): Don't remove 0x80 bit from
3471 non-single-byte char when adding meta modifier. (Bug#12090)
3472
3473 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
3474
3475 Convert safe_call to use variable number of arguments.
3476 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
3477 (safe_call2): Fix comment.
3478 * lisp.h (safe_call): Adjust prototype.
3479 * coding.c (encode_coding_object): Change to use safe_call2.
3480 * xfaces.c (merge_face_heights): Change to use safe_call1.
3481
3482 2012-07-30 Glenn Morris <rgm@gnu.org>
3483
3484 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
3485 does that unconditionally. Remove file, which is now empty.
3486
3487 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
3488 Remove empty files.
3489
3490 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3491
3492 Export to GDB most of lisp.h's remaining object-like macros.
3493 * lisp.h (min, max): Move earlier, because they're used earlier now.
3494 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
3495 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
3496 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
3497 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
3498 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
3499 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
3500 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
3501 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
3502 Now constants, for GDB. They need not be macros.
3503 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
3504 Now constants, for GDB, as well as macros, for static initializers.
3505 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
3506 Move to after the definition of struct Lisp_Char_Table,
3507 since the former now needs that type defined.
3508 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
3509 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
3510 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
3511 New enums, for gdb_make_enums_visible.
3512 (GLYPH_MODE_LINE_FACE): Remove; unused.
3513 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
3514 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
3515 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
3516 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
3517 enum maxargs, enum MAX_ALLOCA.
3518 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
3519 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
3520 no longer needed, now that they are done in lisp.h.
3521
3522 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
3523
3524 Cleanup string bytes checking.
3525 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
3526 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
3527 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
3528 (check_sblock, compact_small_strings): Simplify.
3529
3530 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3531
3532 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
3533 These macros are confusing and no longer need to be defined, as
3534 the enum values now suffice. All uses replaced with definiens.
3535 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
3536
3537 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
3538
3539 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
3540 ($(BLD)/w32console.$(O)): Update dependencies.
3541
3542 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3543
3544 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
3545 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
3546 time. Adjust users.
3547 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
3548
3549 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
3550
3551 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
3552 setting sitelisp (Bug#12010).
3553
3554 2012-07-29 Eli Zaretskii <eliz@gnu.org>
3555
3556 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
3557
3558 * w32heap.c (cache_system_info):
3559 * w32.c (sys_rename):
3560 * w32proc.c (find_child_console, sys_kill): All users changed.
3561
3562 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3563
3564 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
3565
3566 2012-07-29 Eli Zaretskii <eliz@gnu.org>
3567
3568 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
3569
3570 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3571
3572 Cleanup statistics calculation in Fgarbage_collect.
3573 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
3574 Fix zombies percentage calculation. Simplify elapsed time calculation.
3575
3576 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3577
3578 Generalize marker debugging code under MARKER_DEBUG and use eassert.
3579 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
3580 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
3581 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
3582 (replace_range, replace_range_2, del_range_2): Change to eassert.
3583 * marker.c (byte_char_debug_check): Adjust style.
3584
3585 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3586
3587 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
3588 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
3589 long-ago-commented-out code that talks about "WIN32".
3590 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
3591 All uses changed.
3592
3593 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
3594
3595 Use Gnulib stdalign module (Bug#9772, Bug#9960).
3596 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
3597 Simplify by using alignof.
3598 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
3599 * lisp.h: Include <stdalign.h>.
3600 (GCALIGNMENT): New macro and constant.
3601 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
3602 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
3603 (stdalign): New macro, if not already defined.
3604
3605 2012-07-28 Eli Zaretskii <eliz@gnu.org>
3606
3607 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
3608 * w32inevt.c: Include w32inevt.h.
3609 (w32_read_console_input): New inline function, calls either
3610 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
3611 w32_console_unicode_input.
3612 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
3613 (w32_kbd_patch_key, key_event): Use the codepage returned by
3614 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
3615 (key_event): use uChar.UnicodeChar only if
3616 w32_console_unicode_input is non-zero.
3617
3618 * w32console.c: Include w32heap.h.
3619 <w32_console_unicode_input>: New global variable.
3620 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
3621 family of Windows, zero otherwise.
3622
3623 * w32inevt.h: Declare w32_console_unicode_input.
3624
3625 * xdisp.c (init_iterator): Don't reference tip_frame in a build
3626 --without-x. (Bug#11742)
3627
3628 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
3629
3630 Adjust GDB to reflect pvec_type changes (Bug#12036).
3631 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
3632 2012-07-04 changes to pseudovector representation.
3633 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
3634
3635 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
3636
3637 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
3638 bus address.
3639 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
3640
3641 2012-07-27 Eli Zaretskii <eliz@gnu.org>
3642
3643 * alloc.c (listn): Fix the order the arguments are consed onto the
3644 list.
3645
3646 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
3647 enumeration constants, as PURE and HEAP are too general, and clash
3648 with other headers and sources, such as gmalloc.c and the
3649 MS-Windows system headers. All users changed.
3650
3651 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3652
3653 Revert last save_excursion_save and save_excursion_restore changes.
3654 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
3655 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
3656
3657 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3658
3659 Fix recently-introduced typos in Windows port.
3660 Reported by Martin Rudalics <rudalics@gmx.at>.
3661 * w32.c (init_environment): Replace comma with semicolon.
3662 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
3663
3664 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
3665
3666 Improve GDB symbol export (Bug#12036).
3667 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
3668 arms of an 'if', not using conditional expressions; otherwise GDB
3669 complains about the types in the unevaluated arm when the argument
3670 is an integer literal.
3671 (xgetint): Simplify expression.
3672 * alloc.c (gdb_make_enums_visible): New constant. This ports to
3673 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
3674 Zaretskii in <http://bugs.gnu.org/12036#13>.
3675 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
3676 needed now that we have gdb_make_enums_visible.
3677 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
3678 (enum enum_USE_LSB_TAG):
3679 New enum types, packaging up enums that need to be exported to GDB.
3680
3681 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3682
3683 Utility function to make a list from specified amount of objects.
3684 * lisp.h (enum constype): New datatype.
3685 (listn): New prototype.
3686 * alloc.c (listn): New function.
3687 (Fmemory_use_count, syms_of_alloc): Use it.
3688 * buffer.c (syms_of_buffer): Likewise.
3689 * callint.c (syms_of_callint): Likewise.
3690 * charset.c (define_charset_internal): Likewise.
3691 * coding.c (syms_of_coding): Likewise.
3692 * keymap.c (syms_of_keymap): Likewise.
3693 * search.c (syms_of_search): Likewise.
3694 * syntax.c (syms_of_syntax): Likewise.
3695 * w32.c (init_environment): Likewise.
3696 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
3697 * xdisp.c (syms_of_xdisp): Likewise.
3698 * xfns.c (syms_of_xfns): Likewise.
3699
3700 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3701
3702 Fast save_excursion_save and save_excursion_restore.
3703 * lisp.h (struct Lisp_Excursion): New data type.
3704 (PVEC_EXCURSION): New pseudovector type.
3705 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
3706 to deal with it. Adjust comments.
3707 (init_marker, attach_marker): New prototype.
3708 (unchain_marker): Adjust prototype.
3709 * marker.c (attach_marker): Change to global.
3710 (init_marker): New function.
3711 * alloc.c (Fmake_marker, build_marker): Use it.
3712 (build_marker): More easserts.
3713 (mark_object): Handle struct Lisp_Excursion.
3714 * editfns.c (save_excursion_save, save_excursion_restore):
3715 Reimplement to use struct Lisp_Excursion. Add comments.
3716
3717 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
3718
3719 Fix export of symbols to GDB (Bug#12036).
3720 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
3721 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
3722 emacs.c, as this is a more-suitable home. Had this been done earlier
3723 the fix for 12036 would have avoided some of the problems noted in
3724 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
3725 would have been more obvious.
3726 * emacs.c: Do not include <verify.h>; no longer needed.
3727 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
3728 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
3729 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
3730 Remove; now done in lisp.h.
3731 * lisp.h (PUBLISH_TO_GDB): New macro.
3732 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
3733 (DATA_SEG_BITS): Use it.
3734 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
3735 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
3736 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
3737 not be usable in #if. This simplifies things.
3738
3739 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
3740
3741 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
3742
3743 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
3744
3745 Simplify export of symbols to GDB (Bug#12036).
3746 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
3747 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
3748 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
3749 Adjust to changes in lisp.h and emacs.c, by using
3750 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
3751 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
3752 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
3753 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
3754 instead of gdb_valbits.
3755 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
3756 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
3757 instead of gdb_array_mark_flag.
3758 (xboolvector): Get size from $->size, not $->header.size.
3759 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
3760 (xreload, hook-run, hookpost-run): Remove.
3761 * emacs.c: Include <verify.h>.
3762 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
3763 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
3764 Remove.
3765 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
3766 (gdb_USE_LSB_TAG): New enum constants.
3767 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
3768 Also define these as enum constants, so they're visible to GDB.
3769 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
3770 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
3771 as constants, so they're visible to GDB.
3772 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
3773 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
3774 Now enum constants, not macros, so they're visible to GDB.
3775 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
3776 more convenient now. All uses changed.
3777 (VALMASK) [USE_LSB_TAG]: Also define in this case.
3778 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
3779
3780 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
3781
3782 Explicitly free restriction data that are not needed anymore.
3783 * editfns.c (save_restriction_restore): Free restriction data.
3784
3785 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3786
3787 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
3788 add argument, tune behavior, and adjust all callers.
3789
3790 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
3791
3792 Use typedef for EMACS_INT, EMACS_UINT.
3793 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
3794 than macros. This simplifies debugging in the usual case, since
3795 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
3796 and it allows expressions involving EMACS_INT casts.
3797 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
3798
3799 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
3800
3801 * nsterm.m (ns_read_socket): Return early if there is a modal
3802 window (Bug#12043).
3803
3804 2012-07-25 Martin Rudalics <rudalics@gmx.at>
3805
3806 * frame.c (Fredirect_frame_focus): In doc-string don't mention
3807 that FOCUS-FRAME can be omitted.
3808
3809 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
3810
3811 Adjust buffer text indirection counters at the end of Fkill_buffer.
3812 * buffer.c (Fkill_buffer): Adjust indirection counters when the
3813 buffer is definitely dead. This should really fix an issue reported
3814 by Christoph Scholtes again. (Bug#12007).
3815 (init_buffer_once): Initialize indirection counters of
3816 buffer_defaults and buffer_local_symbols (for sanity and safety).
3817
3818 2012-07-24 Eli Zaretskii <eliz@gnu.org>
3819
3820 * xdisp.c (init_iterator): Don't compute dimensions of truncation
3821 and continuation glyphs on tooltip frames, leave them at zero.
3822 Avoids continued lines in tooltips. (Bug#11832)
3823
3824 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
3825
3826 Simplify copy_overlay.
3827 * buffer.c (copy_overlay): Simplify. Use build_marker.
3828 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
3829
3830 2012-07-23 Eli Zaretskii <eliz@gnu.org>
3831
3832 * print.c (print_object): Don't crash when a frame's name is nil
3833 or invalid. (Bug#12025)
3834
3835 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
3836 it signals an error when a tooltip frame is being created.
3837
3838 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
3839
3840 Cleanup miscellaneous objects allocation and initialization.
3841 * alloc.c (allocate_misc): Change to static. Add argument to
3842 specify the subtype. Adjust comment and users.
3843 (build_overlay): New function.
3844 * buffer.c (copy_overlays, Fmake_overlay): Use it.
3845 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
3846 (allocate_misc): Remove prototype.
3847 (build_overlay): Add prototype.
3848
3849 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
3850
3851 Swap buffer text indirection counters in Fbuffer_swap_text.
3852 * buffer.c (Fbuffer_swap_text): Swap indirections too.
3853 This avoids crash reported by Christoph Scholtes at
3854 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
3855
3856 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
3857
3858 * nsmenu.m (Popdown_data): New struct.
3859 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
3860 free Popdown_data.
3861 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
3862 (initWithContentRect): Make imgView and contentView non-static
3863 and autorelease them. Also autorelease img and matrix (Bug#12005).
3864 (dealloc): Remove (Bug#12005).
3865
3866 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
3867
3868 Adjust consing_since_gc when objects are explicitly freed.
3869 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
3870 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
3871 (free_cons, free_misc): Subtract object size from consing_since_gc.
3872
3873 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
3874
3875 Simplify and cleanup markers positioning code.
3876 * marker.c (attach_marker): More useful eassert.
3877 (live_buffer, set_marker_internal): New function.
3878 (Fset_marker, set_marker_restricted): Use set_marker_internal.
3879 (set_marker_both, set_marker_restricted_both): Use live_buffer.
3880
3881 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
3882
3883 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
3884 as it's limited by the amount of memory, not by INT_MAX.
3885
3886 2012-07-21 Eli Zaretskii <eliz@gnu.org>
3887
3888 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
3889 in special-event-map. See the discussion at
3890 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
3891 for the reasons.
3892
3893 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
3894 info.dwItemData. Fixes crashes on 64-bit Windows.
3895 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
3896
3897 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
3898
3899 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
3900 (conversationIdentifier): Return value is NSInteger.
3901 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
3902
3903 2012-07-21 Chong Yidong <cyd@gnu.org>
3904
3905 * window.c (decode_any_window): Signal an error if the window is
3906 on a dead frame (Bug#11984).
3907
3908 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3909
3910 Add indirection counting to speed up Fkill_buffer.
3911 * buffer.h (struct buffer): New member.
3912 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
3913 (Fmake_indirect_buffer): Set indirection counter to -1, increment
3914 base buffer indirection counter.
3915 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
3916 (Fkill_buffer): Adjust indirection counters as needed, don't walk
3917 through buffer list if indirection counter is 0.
3918
3919 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3920
3921 Extend the value returned by Fgarbage_collect with heap statistics.
3922 * alloc.c (Qheap): New symbol.
3923 (syms_of_alloc): DEFSYM it.
3924 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
3925 (Fmemory_free): Remove.
3926 (syms_of_alloc): Don't defsubr it.
3927 * buffer.c (Fcompact_buffer): Remove.
3928 (syms_of_buffer): Don't defsubr it.
3929
3930 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3931
3932 Make maybe_gc inline.
3933 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
3934 * lisp.h (consing_since_gc, gc_relative_threshold)
3935 (memory_full_cons_threshold): Revert declaration.
3936 (maybe_gc): Remove prototype, define as inline.
3937 * alloc.c: Remove old commented-out code.
3938 (consing_since_gc, gc_relative_threshold)
3939 (memory_full_cons_threshold): Revert to global.
3940 (maybe_gc): Remove.
3941
3942 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3943
3944 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
3945 * lisp.h (build_unibyte_string): New function.
3946 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
3947 * sysdep.c, w32fns.c, xfns.c: Use it.
3948 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
3949 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
3950 Adjust users accordingly.
3951 * font.h (font_open_by_name): Adjust prototype.
3952
3953 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3954
3955 Cleanup calls to Fgarbage_collect.
3956 * lisp.h (maybe_gc): New prototype.
3957 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3958 Remove declarations.
3959 * alloc.c (maybe_gc): New function.
3960 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3961 Make them static.
3962 * bytecode.c (MAYBE_GC): Use maybe_gc.
3963 * eval.c (eval_sub, Ffuncall): Likewise.
3964 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
3965 to avoid dependency from auto-save feature.
3966
3967 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
3968
3969 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
3970 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
3971 'for_each_per_buffer_object_at'.
3972 All uses changed. It's better to use upper-case for macros that
3973 cannot be implemented as functions, to give the reader a clue
3974 that they're special.
3975
3976 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3977
3978 * alloc.c (Fgarbage_collect): Tweak docstring.
3979
3980 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3981
3982 Tweak the value returned from Fgarbage_collect again.
3983 * alloc.c (Fgarbage_collect): New return value, as confirmed in
3984 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
3985 Adjust documentation.
3986 (total_vector_bytes): Rename to total_vector_slots, adjust
3987 accounting.
3988 (total_free_vector_bytes): Rename to total_free_vector_slots,
3989 adjust accounting.
3990 (Qstring_bytes, Qvector_slots): New symbols.
3991 (syms_of_alloc): DEFSYM them.
3992
3993 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3994
3995 Buffer compaction primitive which may be used from Lisp.
3996 * buffer.c (compact_buffer, Fcompact_buffer): New function.
3997 (syms_of_buffer): Register Fcompact_buffer.
3998 * alloc.c (Fgarbage_collect): Use compact_buffer.
3999 * buffer.h (compact_buffer): New prototype.
4000 (struct buffer_text): New member.
4001
4002 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
4003
4004 New macro to iterate over all buffers, miscellaneous cleanups.
4005 * lisp.h (all_buffers): Remove declaration.
4006 * buffer.h (all_buffers): Add declaration, with comment.
4007 (for_each_buffer): New macro.
4008 * alloc.c (Fgarbage_collect, mark_object): Use it.
4009 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
4010 (init_buffer): Likewise.
4011 * data.c (Fset_default): Likewise.
4012 * coding.c (code_conversion_restore): Remove redundant check
4013 for dead buffer.
4014 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
4015
4016 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
4017
4018 Fix bug that created negative-length intervals.
4019 * intervals.c (merge_interval_right, merge_interval_left):
4020 Do not zero out this interval if it is absorbed by its children,
4021 as this interval's total length doesn't change in that case. See
4022 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
4023
4024 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
4025
4026 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
4027 when invoking (make-bool-vector N t) and N is a positive
4028 multiple of 8 -- the last 8 bits were mistakenly cleared.
4029
4030 Remove some struct layout assumptions in bool vectors.
4031 * alloc.c (bool_header_size): New constant.
4032 (header_size, word_size): Move earlier, as they're now used earlier.
4033 Use 'word_size' in a few more places, where it's appropriate.
4034 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
4035 padding before the data member of a bool vector.
4036 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
4037 than doing the check by hand with an abort ().
4038
4039 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
4040
4041 * eval.c (Fdefvar): Don't check constants since we only set the var if
4042 it's not yet defined anyway (bug#11904).
4043
4044 * lisp.h (last_undo_boundary): Declare new var.
4045 * keyboard.c (command_loop_1): Set it.
4046 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
4047 were auto-added by the command loop (bug#11774).
4048
4049 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
4050
4051 * w32font.c (Qsymbol): Remove local definition.
4052 (syms_of_w32font): Don't DEFSYM it.
4053
4054 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4055
4056 Fix sweep_vectors to handle large bool vectors correctly.
4057 * alloc.c (sweep_vectors): Account total_vector_bytes for
4058 bool vectors larger than VBLOCK_BYTES_MAX.
4059
4060 2012-07-18 Chong Yidong <cyd@gnu.org>
4061
4062 * frame.c (x_set_frame_parameters): Revert bogus change introduced
4063 in 2012-05-25 commit by Paul Eggert (Bug#11738).
4064
4065 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4066
4067 Return more descriptive data from Fgarbage_collect.
4068 Suggested by Stefan Monnier in
4069 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
4070 * alloc.c (bounded_number): New function.
4071 (total_buffers, total_vectors): New variable.
4072 (total_string_size): Rename to total_string_bytes, adjust users.
4073 (total_vector_size): Rename to total_vector_bytes, adjust users.
4074 (sweep_vectors): Account total_vectors and total_vector_bytes.
4075 (Fgarbage_collect): New return value. Adjust documentation.
4076 (gc_sweep): Account total_buffers.
4077 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
4078 (VECTOR_SIZE): Remove.
4079 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
4080 (Qinterval, Qmisc): New symbols.
4081 (syms_of_data): Initialize them.
4082 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
4083 (Qcons, Qbuffer): New declarations.
4084
4085 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
4086
4087 * alloc.c (Fmemory_free): Account for memory-free's own storage.
4088 Round up, not down. Improve doc.
4089
4090 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4091
4092 Restore old code in allocate_string_data to avoid Faset breakage.
4093 Reported by Julien Danjou <julien@danjou.info> in
4094 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
4095 * alloc.c (allocate_string_data): Restore old code with minor
4096 adjustments, fix comment to explain this subtle issue.
4097
4098 2012-07-17 Eli Zaretskii <eliz@gnu.org>
4099
4100 Remove FILE_SYSTEM_CASE.
4101 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
4102
4103 * fileio.c (FILE_SYSTEM_CASE): Don't define.
4104 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
4105 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
4106 call-process-region passes it through expand-file-name.
4107
4108 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
4109
4110 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4111
4112 Fix crash when creating indirect buffer (Bug#11917)
4113 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
4114 Don't handle unbound variables specially if non-zero.
4115 (Fbuffer_local_variables): Pass zero.
4116 (clone_per_buffer_values): Pass non-zero.
4117
4118 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4119
4120 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
4121 to make the loop interruptible.
4122
4123 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4124
4125 * gnutls.c (emacs_gnutls_handshake): Only retry if
4126 GNUTLS_E_INTERRUPTED.
4127
4128 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4129
4130 Cleanup and convert miscellaneous checks to eassert.
4131 * alloc.c (mark_interval): Fix comment, partially rephrase
4132 old comment from intervals.h (see below).
4133 * intervals.c (find_interval, adjust_intervals_for_insertion)
4134 (delete_interval, adjust_intervals_for_deletion)
4135 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
4136 Convert to eassert.
4137 (adjust_intervals_for_insertion, make_new_interval):
4138 Remove obsolete and unused code.
4139 * intervals.h (struct interval): Remove obsolete comment.
4140 * textprotp.c (erase_properties): Remove unused code.
4141 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
4142 (Fremove_list_of_text_properties): Convert to eassert.
4143
4144 2012-07-17 Chong Yidong <cyd@gnu.org>
4145
4146 * editfns.c (Finsert_char): Doc fix.
4147
4148 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4149
4150 Fix previous change to make Fmemory_free always accurate.
4151 * alloc.c (make_interval): Update total_free_intervals.
4152 (make_float): Likewise for total_free_floats.
4153 (free_cons, Fcons): Likewise for total_free_conses.
4154 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
4155 Likewise for total_free_vector_bytes.
4156 (Fmake_symbol): Likewise for total_free_symbols.
4157 (bytes_free): Remove.
4158
4159 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4160
4161 Simple free memory accounting feature.
4162 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
4163 (sweep_vectors): Accumulate size of free vectors.
4164 (Fgarbage_collect): Setup bytes_free.
4165 (Fmemory_free): New function.
4166 (syms_of_alloc): Register it.
4167
4168 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4169
4170 Cleanup overlays checking.
4171 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
4172 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
4173 eassert and OVERLAYP.
4174 (sort_overlays): Change to use OVERLAYP.
4175
4176 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
4177
4178 * editfns.c (Finsert_char): Make it interactive, and make the
4179 second arg optional. Copy interactive spec and docstring from
4180 ucs-insert.
4181
4182 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
4183
4184 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
4185 Unlike the other wrapped functions, fabs has an unspecified
4186 effect on errno.
4187
4188 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
4189
4190 * nsterm.m (keyDown): Interpret flags without left/right bits
4191 as the left key (Bug#11670).
4192
4193 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
4194
4195 Remove empty and useless init functions.
4196 * lisp.h (init_character_once, init_fns, init_image)
4197 (init_filelock, init_sound): Remove prototype.
4198 * character.c (init_character_once): Remove.
4199 * filelock.c (init_filelock): Likewise.
4200 * fns.c (init_fns): Likewise.
4201 * image.c (init_image): Likewise.
4202 * sound.c (init_sound): Likewise.
4203 * emacs.c (main): Adjust accordingly.
4204
4205 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
4206
4207 * gtkutil.h: Tiny cleanups.
4208 (use_old_gtk_file_dialog): Remove useless declaration.
4209 (xg_uses_old_file_dialog): Add suggested const attribute.
4210
4211 2012-07-15 Eli Zaretskii <eliz@gnu.org>
4212
4213 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
4214 (bidi_paragraph_init): Use it to limit search forward for a strong
4215 directional character in abnormally large paragraphs full of
4216 neutral or weak characters. (Bug#11943)
4217
4218 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
4219
4220 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
4221 the toolbar (Bug#9451).
4222 (xg_make_tool_item): Give the widget event box a transparent
4223 background.
4224
4225 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
4226
4227 Cleanup basic allocation variables and functions.
4228 * alloc.c (ignore_warnings, init_intervals, init_float)
4229 (init_cons, init_symbol, init_marker): Remove.
4230 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
4231 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
4232 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
4233 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
4234 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
4235 (staticidx, init_alloc_once, init_strings, free_ablock):
4236 Remove redundant initialization.
4237 * fns.c (init_weak_hash_tables): Remove.
4238 * lisp.h (init_weak_hash_tables): Remove prototype.
4239
4240 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
4241
4242 Use zero_vector where appropriate.
4243 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
4244 accordingly.
4245 * lisp.h (zero_vector): New declaration.
4246 * font.c (null_vector): Remove.
4247 (syms_of_font): Remove initialization and staticpro.
4248 (font_list_entities, font_find_for_lface): Change to use zero_vector.
4249 * keymap.c (Faccessible_keymaps): Likewise.
4250
4251 2012-07-15 Leo Liu <sdl.web@gmail.com>
4252
4253 * fringe.c: Fix typo in comments.
4254
4255 2012-07-14 Leo Liu <sdl.web@gmail.com>
4256
4257 * fringe.c: Add a new bitmap exclamation-mark.
4258
4259 2012-07-14 Eli Zaretskii <eliz@gnu.org>
4260
4261 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
4262
4263 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
4264 (HAVE_MENUS): Don't define, defined by editing config.in with
4265 msdos/sed2v2.inp.
4266 (GMALLOC_INHIBIT_VALLOC): Don't define.
4267 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
4268
4269 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
4270
4271 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
4272
4273 2012-07-14 Glenn Morris <rgm@gnu.org>
4274
4275 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
4276 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
4277 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
4278
4279 2012-07-13 Glenn Morris <rgm@gnu.org>
4280
4281 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
4282
4283 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
4284 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
4285
4286 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
4287
4288 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
4289 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
4290 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
4291 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
4292 where appropriate.
4293 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
4294 as boolean expression.
4295 (x_set_window_size): Remove unused variable toolbar.
4296 (ns_get_color_default, ns_mod_to_lisp): Remove.
4297 (ns_mouse_position): Remove unused variables xchar and ychar.
4298 (ns_compute_glyph_string_overhangs): Remove unused variable face.
4299 (ns_set_vertical_scroll_bar): Remove unused variable count.
4300 (ns_delete_terminal): Remove unused variable i.
4301 (ns_term_init): Remove unused variables r, g and b.
4302 (mouseDown): Remove unused variable window.
4303 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
4304 (initFrameFromEmacs): Remove unused variable vbextra.
4305 (mouseEntered): Remove unused variables p and dpyinfo.
4306 (mouseExited): Remove unused variables p and r.
4307 (ns_define_frame_cursor, ns_clear_frame_area)
4308 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
4309 (menuDown): Assign [sender tag] to variable and cast the variable.
4310
4311 * nsterm.h (menuDown): Add id as type to argument sender.
4312 (ns_display_info_for_name): Add Lisp_Object argument.
4313 (ns_term_init): Add Lisp_Object argument.
4314 (ns_map_event_to_object): Add void argument.
4315 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
4316 prototype with arguments and only declare if __OBJC__.
4317 (nxatoms_of_nsselect): Add void argument.
4318 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
4319 (ns_alloc_autorelease_pool): Add void argument.
4320 (ns_release_autorelease_pool): Add void* argument.
4321 (ns_get_defaults_value): Add const char* argument.
4322
4323 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
4324 (initFromContents): Use SSDATA where appropriate.
4325 (ns_update_menubar): Add braces to ambigous if-else.
4326 (initWithTitle): Put () around assignment in if statement.
4327 (ns_menu_show): Remove unused variables window and keymap.
4328 (update_frame_tool_bar): Remove unused variable selected_p.
4329 (initWithContentRect): Remove unused variable this_cmd_name.
4330
4331 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
4332 appropriate.
4333 (setXBMColor): Remove unused variable len.
4334 (setPixmapData): Put () around assignment in loop statement.
4335
4336 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
4337 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
4338 where appropriate.
4339 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
4340 around assignment in loop statement.
4341 (nsfont_open): Remove unused variable i.
4342 (nsfont_open): Remove unused variable len.
4343 (nsfont_draw): Remove unused variable cs.
4344
4345 * nsfns.m (x_set_icon_name, ns_set_name_internal)
4346 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
4347 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
4348 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
4349 (Fns_font_name, Fns_perform_service)
4350 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
4351 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
4352 (ns_set_name): Remove unused variable view.
4353 (x_set_menu_bar_lines): Remove unused variable olines.
4354 (x_set_tool_bar_lines): Remove unused variable root_window.
4355 (Fns_list_colors): Put () around assignment in while statement.
4356 (Fns_perform_service): Remove unused variable len.
4357 (Fns_display_usable_bounds): Remove unused variable top.
4358 (syms_of_nsfns): Remove unused variable i.
4359
4360 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
4361 memcpy (Bug#11907).
4362
4363 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
4364
4365 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
4366 and free it with DestroyExceptionInfo (Bug#11558).
4367
4368 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
4369
4370 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
4371 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
4372 Set here, not in nt/config.nt.
4373
4374 2012-07-13 Eli Zaretskii <eliz@gnu.org>
4375
4376 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
4377 cursor overflow into the last glyph on display line when the right
4378 fringe is off. (Bug#11832)
4379
4380 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
4381
4382 * xdisp.c (produce_special_glyphs): Now static.
4383 * dispextern.h (produce_special_glyphs): Remove decl.
4384
4385 2012-07-13 Glenn Morris <rgm@gnu.org>
4386
4387 * s/bsd-common.h, s/cygwin.h: Remove empty files.
4388 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
4389
4390 * s/usg5-4-common.h (USG, USG5):
4391 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
4392 * s/sol2-6.h (SOLARIS2):
4393 * s/irix6-5.h (IRIX6_5):
4394 * s/hpux10-20.h (USG, USG5, HPUX):
4395 * s/gnu-linux.h (USG, GNU_LINUX):
4396 * s/freebsd.h (BSD_SYSTEM):
4397 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
4398 * s/cygwin.h (CYGWIN):
4399 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
4400 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
4401
4402 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
4403
4404 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
4405
4406 2012-07-13 Glenn Morris <rgm@gnu.org>
4407
4408 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
4409
4410 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
4411
4412 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
4413 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
4414
4415 2012-07-12 Glenn Morris <rgm@gnu.org>
4416
4417 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
4418
4419 * process.c (init_process_emacs): Rename from init_process.
4420 The old name is also the name of a Mach system call.
4421 * lisp.h, emacs.c: Update for this name change.
4422 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
4423 longer needed.
4424
4425 2012-07-12 Eli Zaretskii <eliz@gnu.org>
4426
4427 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
4428 memmove call that removes glyphs covered by the left truncation
4429 glyph. Improve commentary.
4430 (display_line): Fix display of continuation glyphs on GUI frames
4431 when the right fringe is turned off and variable-size fonts are
4432 used in the window. Move the code that appends a stretch glyph to
4433 produce_special_glyphs, so that it could be used for truncation
4434 and continuation glyphs alike.
4435 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
4436 glyph of a suitably computed width, to align the special glyphs at
4437 the window margin. Code moved from display_line. (Bug#11832)
4438
4439 2012-07-12 Glenn Morris <rgm@gnu.org>
4440
4441 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
4442
4443 * s/gnu-linux.h, s/hpux10-20.h:
4444 Do not unconditionally define HAVE_XRMSETDATABASE.
4445
4446 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
4447
4448 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
4449
4450 Fix typos that broke OS X build.
4451 Reported by Randal L. Schwartz in
4452 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
4453 * nsterm.m (ns_timeout): Add missing local decl.
4454 (ns_get_color): snprintf -> sprintf, to fix typo.
4455
4456 2012-07-12 Glenn Morris <rgm@gnu.org>
4457
4458 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
4459 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
4460 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
4461 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
4462
4463 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
4464 Move PTY_OPEN to configure.
4465
4466 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
4467 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
4468 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
4469
4470 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
4471
4472 Use empty_unibyte_string where applicable.
4473 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
4474 * lread.c (read1): Likewise.
4475 * xsettings.c (syms_of_xsettings): Likewise.
4476
4477 2012-07-12 Glenn Morris <rgm@gnu.org>
4478
4479 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
4480 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
4481 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
4482 * s/hpux10-20.h (RUN_TIME_REMAP):
4483 * s/bsd-common.h (TABDLY): Move to configure.
4484
4485 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
4486
4487 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
4488
4489 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
4490 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
4491
4492 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
4493
4494 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
4495 * s/template.h: Move NARROWPROTO to configure.
4496
4497 2012-07-11 Glenn Morris <rgm@gnu.org>
4498
4499 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
4500 unused since 2011-01-17 change to systty.h.
4501
4502 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
4503 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
4504 Move HAVE_PTYS and HAVE_SOCKETS to configure.
4505
4506 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
4507
4508 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
4509
4510 2012-07-11 Glenn Morris <rgm@gnu.org>
4511
4512 * s/darwin.h, s/gnu-linux.h, s/template.h:
4513 Move INTERRUPT_INPUT to configure.
4514
4515 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4516
4517 Minor adjustments to interning code.
4518 * lisp.h (intern, intern_c_string): Redefine as static inline
4519 wrappers for intern_1 and intern_c_string_1, respectively.
4520 (intern_1, intern_c_string_1): Rename prototypes.
4521 * lread.c (intern_1, intern_c_string_1, oblookup):
4522 Simplify Vobarray checking.
4523 * font.c (font_intern_prop): Likewise. Adjust comment.
4524 * w32font.c (intern_font_name): Likewise.
4525
4526 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
4527
4528 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
4529
4530 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
4531 of Fcar/Fcdr if possible.
4532 * font.c (check_otf_features): Likewise.
4533 * fontset.c (Fnew_fontset): Likewise.
4534 * gnutls.c (Fgnutls_boot): Likewise.
4535 * minibuf.c (read_minibuf): Likewise.
4536 * msdos.c (IT_set_frame_parameters): Likewise.
4537 * xmenu.c (Fx_popup_dialog): Likewise.
4538 * w32menu.c (Fx_popup_dialog): Likewise.
4539
4540 2012-07-11 Glenn Morris <rgm@gnu.org>
4541
4542 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
4543 since nothing has defined it on these platforms.
4544
4545 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
4546 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
4547
4548 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
4549 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
4550 Move CLASH_DETECTION to configure.
4551
4552 * s/gnu.h: Remove file, which is now empty.
4553
4554 * s/gnu.h, s/gnu-linux.h:
4555 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
4556
4557 2012-07-11 John Wiegley <johnw@newartisans.com>
4558
4559 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
4560 function attribute, so we only use it if it exists in the
4561 compiler.
4562
4563 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4564
4565 Avoid call to strlen in fast_c_string_match_ignore_case.
4566 * search.c (fast_c_string_match_ignore_case): Change to use
4567 length argument. Adjust users accordingly.
4568 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
4569
4570 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
4571
4572 Assume mkdir, rmdir.
4573 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
4574 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
4575
4576 Assume rename.
4577 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
4578
4579 Assume perror.
4580 * s/hpux10-20.h (HAVE_PERROR): Remove.
4581 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
4582 Remove dummy definition, as this problem was obsolete long ago.
4583
4584 Assume strerror.
4585 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
4586
4587 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4588
4589 Avoid calls to strlen in font processing functions.
4590 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
4591 (font_open_by_name): Change to use length argument.
4592 Adjust users accordingly.
4593 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
4594 Adjust prototypes.
4595 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
4596 Change to return ptrdiff_t.
4597 (xfont_list_pattern, xfont_match): Use length returned by
4598 xfont_decode_coding_xlfd.
4599 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
4600
4601 2012-07-11 Glenn Morris <rgm@gnu.org>
4602
4603 * s/darwin.h, s/freebsd.h, s/netbsd.h:
4604 Move DONT_REOPEN_PTY to configure.
4605
4606 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
4607 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
4608
4609 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
4610
4611 Remove "#define unix" that is no longer needed (Bug#11905).
4612 * s/aix4-2.h (unix): Remove; no longer needed.
4613
4614 EMACS_TIME simplification (Bug#11875).
4615 This replaces macros (which typically do not work in GDB)
4616 with functions, typedefs and enums, making the code easier to debug.
4617 The functional style also makes code easier to read and maintain.
4618 * systime.h: Include <sys/time.h> on all hosts, not just if
4619 WINDOWSNT, since 'struct timeval' is needed in general.
4620 (EMACS_TIME): Now a typedef, not a macro.
4621 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
4622 not macros.
4623 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
4624 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
4625 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
4626 (EMACS_TIME_LE): Now functions, not macros.
4627 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
4628 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
4629 which are not functions. All uses rewritten to use:
4630 (make_emacs_time): New function.
4631 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
4632 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
4633 not functions. All uses rewritten to use the following, respectively:
4634 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
4635 (add_emacs_time, sub_emacs_time): New functions.
4636 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
4637 * fileio.c (Fcopy_file):
4638 * xterm.c (XTflash): Get the current time closer to when it's used.
4639 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
4640
4641 * bytecode.c (targets): Suppress -Woverride-init warnings.
4642
4643 Simplify by avoiding confusing use of strncpy etc.
4644 * doc.c (Fsnarf_documentation):
4645 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
4646 * frame.c (Fmake_terminal_frame):
4647 * gtkutil.c (get_utf8_string):
4648 * lread.c (openp):
4649 * nsmenu.m (ns_update_menubar):
4650 * regex.c (regerror):
4651 Prefer memcpy to strncpy and strncat when either will do.
4652 * fileio.c (Fsubstitute_in_file_name):
4653 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
4654 (menu_separator_name_p):
4655 * nsmenu.m (ns_update_menubar):
4656 Prefer memcmp to strncmp when either will do.
4657 * nsterm.m: Include <ftoastr.h>.
4658 (ns_get_color):
4659 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
4660 Prefer snprintf to strncpy.
4661 * nsterm.m (ns_term_init):
4662 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
4663 * nsterm.m (ns_term_init):
4664 Avoid the need for strncpy, by using build_string or
4665 make_unibyte_string directly. Use dtoastr, not snprintf.
4666 * process.c (Fmake_network_process): Diagnose service names that
4667 are too long, rather than silently truncating them or creating
4668 non-null-terminated names.
4669 (Fnetwork_interface_info): Likewise, for interface names.
4670 * sysdep.c (system_process_attributes) [GNU_LINUX]:
4671 Prefer sprintf to strncat.
4672 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
4673 Prefer vsnprintf to vsprintf + strncpy.
4674
4675 2012-07-10 Glenn Morris <rgm@gnu.org>
4676
4677 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
4678 Clarify fallback case.
4679
4680 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4681
4682 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
4683 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
4684 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
4685 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
4686 where argument type is known to be a Lisp_Cons.
4687
4688 2012-07-10 Tom Tromey <tromey@redhat.com>
4689
4690 * bytecode.c (BYTE_CODE_THREADED): New macro.
4691 (BYTE_CODES): New macro. Replaces all old byte-code defines.
4692 (enum byte_code_op): New type.
4693 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
4694 (exec_byte_code): Use them. Use token threading when applicable.
4695
4696 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4697
4698 Optimize pure C strings initialization.
4699 * lisp.h (make_pure_string): Fix prototype.
4700 (build_pure_c_string): New function, defined as static inline. This
4701 provides a better opportunity to optimize away calls to strlen when
4702 the function is called with compile-time constant argument.
4703 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
4704 argument, adjust users accordingly. Use build_pure_c_string where
4705 appropriate.
4706 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
4707 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
4708 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
4709
4710 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4711
4712 Avoid calls to strlen in miscellaneous functions.
4713 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
4714 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
4715 * lread.c (openp): Likewise.
4716
4717 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4718
4719 Avoid calls to strlen in path processing functions.
4720 * fileio.c (file_name_as_directory): Add comment. Change to add
4721 srclen argument and return the length of result. Adjust users
4722 accordingly.
4723 (directory_file_name): Fix comment. Change to add srclen argument,
4724 swap 1st and 2nd arguments to obey the common convention.
4725 Adjust users accordingly.
4726 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
4727
4728 2012-07-10 Glenn Morris <rgm@gnu.org>
4729
4730 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
4731 Move PENDING_OUTPUT_COUNT definition to configure.
4732
4733 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
4734 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
4735 * s/gnu.h (DATA_START): Move definitions to configure.
4736
4737 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
4738 We include usg5-4-common.h, which defines them both.
4739
4740 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
4741 O_RDONLY already includes it).
4742
4743 Stop ns builds setting the EMACSLOADPATH environment variable.
4744 * nsterm.m (ns_load_path): Rename from ns_init_paths.
4745 Now it does not set EMACSLOADPATH, just returns the load-path string.
4746 * nsterm.h: Update accordingly.
4747 * lread.c [HAVE_NS]: Include nsterm.h.
4748 (init_lread) [HAVE_NS]: Use ns_load_path.
4749 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
4750
4751 2012-07-09 Glenn Morris <rgm@gnu.org>
4752
4753 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
4754 since the included bsd-common.h does so.
4755
4756 Stop ns builds setting the EMACSPATH environment variable.
4757 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
4758 (ns_init_paths): Do not set EMACSPATH.
4759 * nsterm.h (ns_exec_path): Add it.
4760 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
4761 Use ns_exec_path.
4762
4763 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
4764
4765 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
4766
4767 * process.c (wait_reading_process_output): 'waitchannels' was unset
4768 when read_kbd || !NILP (wait_for_cell); fix this.
4769
4770 Add GCC-style 'const' attribute to functions that can use it.
4771 * character.h (char_resolve_modifier_mask):
4772 * keyboard.h (make_ctrl_char):
4773 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
4774 (init_character_once, next_almost_prime, init_fns, init_image)
4775 (flush_pending_output, init_sound):
4776 * mem-limits.h (start_of_data):
4777 * menu.h (finish_menu_items):
4778 Add ATTRIBUTE_CONST.
4779 * emacs.c (DEFINE_DUMMY_FUNCTION):
4780 Declare the dummy function with ATTRIBUTE_CONST.
4781 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
4782 Add decls with ATTRIBUTE_CONST.
4783
4784 Minor improvements to make_formatted_string.
4785 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
4786 where int is good enough, as vsprintf returns an int.
4787 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
4788
4789 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
4790
4791 Use make_formatted_string to avoid double length calculation.
4792 * lisp.h (make_formatted_string): New prototype.
4793 * alloc.c (make_formatted_string): New function.
4794 * buffer.c (Fgenerate_new_buffer_name): Use it.
4795 * dbus.c (syms_of_dbusbind): Likewise.
4796 * editfns.c (Fcurrent_time_zone): Likewise.
4797 * filelock.c (get_boot_time): Likewise.
4798 * frame.c (make_terminal_frame, set_term_frame_name)
4799 (x_report_frame_params): Likewise.
4800 * image.c (gs_load): Likewise.
4801 * minibuf.c (get_minibuffer): Likewise.
4802 * msdos.c (dos_set_window_size): Likewise.
4803 * process.c (make_process): Likewise.
4804 * xdisp.c (ensure_echo_area_buffers): Likewise.
4805 * xsettings.c (apply_xft_settings): Likewise.
4806
4807 2012-07-09 Glenn Morris <rgm@gnu.org>
4808
4809 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
4810 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
4811 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
4812 * nsterm.h (ns_etc_directory): Add it.
4813 * callproc.c [HAVE_NS]: Include nsterm.h.
4814 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
4815
4816 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
4817
4818 Move marker debugging code under MARKER_DEBUG.
4819 * marker.c (MARKER_DEBUG): Move marker debugging code under
4820 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
4821 for bootstrap with --enable-checking (~3x slowdown reported
4822 by Juanma Barranquero <lekktu@gmail.com>).
4823 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
4824
4825 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
4826
4827 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
4828 See <http://bugs.gnu.org/11825#29>.
4829
4830 2012-07-08 Eli Zaretskii <eliz@gnu.org>
4831
4832 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
4833 has no font, use the frame's font. (Bug#11813)
4834 (display_line): Add commentary about displaying truncation glyphs
4835 on GUI frames.
4836 (produce_special_glyphs): Move here from term.c.
4837
4838 * term.c (produce_special_glyphs): Move to xdisp.c.
4839
4840 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
4841 section.
4842
4843 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
4844
4845 * xdisp.c (display_line): Avoid warning about implicit declaration
4846 of FRAME_FONT.
4847
4848 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
4849
4850 * lisp.h: Remove empty conditional.
4851
4852 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
4853
4854 * lread.c (load_path_check): Now static.
4855
4856 Fix some minor --with-ns problems found by static checking.
4857 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
4858 (x_set_font) [!HAVE_X_WINDOWS]:
4859 * image.c (xpm_load_image) [HAVE_NS]:
4860 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
4861 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
4862 Remove unused local.
4863 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
4864 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
4865 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
4866 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
4867 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
4868 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
4869 Fix pointer signedness problem.
4870 * xfaces.c (FRAME_X_FONT_TABLE):
4871 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
4872
4873 2012-07-07 Glenn Morris <rgm@gnu.org>
4874
4875 * lread.c (load_path_check): New function, split from init_lread.
4876 (init_lread): Reorganize. Motivation:
4877 If EMACSLOADPATH is set, check/warn about that rather than the
4878 defaults, which we are not going to use. Hence we can remove
4879 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
4880 Don't warn if site-lisp directories are missing.
4881 If not installed, start from a blank load-path, since
4882 PATH_LOADSEARCH refers to the eventual installation directories.
4883
4884 2012-07-07 Eli Zaretskii <eliz@gnu.org>
4885
4886 Support truncation and continuation glyphs on GUI frames, when
4887 fringes are disabled. (Bug#11832)
4888 * xdisp.c (init_iterator): Get dimensions of truncation and
4889 continuation glyphs even if on GUI frames.
4890 Adjust it->last_visible_x on GUI frames when the left or right fringes,
4891 or both, are absent.
4892 (start_display, move_it_in_display_line_to): Handle the case of a
4893 GUI frame without a fringe to display continuation or truncation
4894 glyphs.
4895 (insert_left_trunc_glyphs): Support GUI frames: make sure
4896 truncation glyphs overwrite enough glyphs from the current line to
4897 have sufficient space in pixels.
4898 (display_line): Support truncation and continuation glyphs on GUI
4899 frames. If some spare pixels are left on the line after inserting
4900 the truncation glyphs, fill that space with a stretch glyph of a
4901 suitably computed width.
4902
4903 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
4904 produce_glyphs, to support GUI sessions.
4905
4906 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
4907
4908 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
4909
4910 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
4911
4912 Do not require float-time's arg to fit in time_t (Bug#11825).
4913 This works better on hosts where time_t is unsigned, and where
4914 float-time is applied to the (negative) difference between two times.
4915 * editfns.c (decode_time_components): Last arg is now double *,
4916 not int *, and means to store all the result as a double, without
4917 worrying about whether the seconds part fits in time_t.
4918 All callers changed.
4919 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
4920 All callers changed.
4921 (Ffloat_time): Do not fail merely because the specified time falls
4922 outside of time_t range.
4923
4924 2012-07-07 Glenn Morris <rgm@gnu.org>
4925
4926 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
4927 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
4928 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
4929
4930 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
4931
4932 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
4933 Update dependencies.
4934
4935 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
4936
4937 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4938
4939 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
4940 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
4941 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
4942 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
4943 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
4944 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
4945
4946 * xfont.c (compare_font_names): Redo to omit the need for casts.
4947
4948 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
4949
4950 * xfns.c (Fx_change_window_property): Doc fix.
4951 * w32fns.c (Fx_change_window_property): Doc fix.
4952
4953 * w32fns.c (Fx_window_property): Accept the same arguments as the
4954 X Windows version. Doc fix.
4955 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
4956
4957 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
4958 Eli Zaretskii <eliz@gnu.org>
4959
4960 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
4961 Windows-specific code from nt/config.nt moved here.
4962 Obsolete settings removed.
4963
4964 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4965
4966 * process.c: Avoid unnecessary calls to gettime.
4967 (wait_reading_process_output): Don't get the time of day
4968 when gobbling data immediately and not waiting, as there's no need
4969 for it in that case. This removes a FIXME.
4970
4971 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
4972
4973 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
4974 is defined (Bug#11768).
4975
4976 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4977
4978 Fix marker debugging code.
4979 * marker.c (byte_char_debug_check): Do not perform the check
4980 if buffer is not multibyte.
4981 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4982 Call byte_char_debug_check with correct arguments.
4983
4984 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4985
4986 Compile marker debugging code only if ENABLE_CHECKING is defined.
4987 * marker.c (byte_char_debug_check, count_markers):
4988 Use only if ENABLE_CHECKING is defined.
4989 (byte_debug_flag): Remove.
4990 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4991 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
4992
4993 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4994
4995 Avoid code repetition in marker-related functions.
4996 * marker.c (attach_marker): New function.
4997 (Fset_marker, set_marker_restricted, set_marker_both)
4998 (set_marker_restricted_both): Use it.
4999 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
5000 Consistently rename charno to charpos.
5001 (marker_position): Add eassert.
5002 (marker_byte_position): Convert to eassert.
5003
5004 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
5005
5006 Simplify list operations in unchain_overlay and unchain_marker.
5007 * buffer.c (unchain_overlay): Simplify. Add comment.
5008 * marker.c (unchain_marker): Simplify. Fix comments.
5009
5010 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
5011
5012 Introduce fast path for the widely used marker operation.
5013 * alloc.c (build_marker): New function.
5014 * lisp.h (build_marker): New prototype.
5015 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
5016 * composite.c (autocmp_chars): Likewise.
5017 * editfns.c (buildmark): Remove.
5018 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
5019 (save_restriction_save): Use build_marker.
5020 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
5021 * window.c (save_window_save): Likewise.
5022
5023 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
5024
5025 Do not use Fdelete_overlay in delete_all_overlays
5026 to avoid redundant calls to unchain_overlay.
5027 * buffer.c (drop_overlay): New function.
5028 (delete_all_overlays, Fdelete_overlay): Use it.
5029 * minibuf.c (get_minibuffer): Fix comment.
5030
5031 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
5032
5033 Port to OpenBSD 5.1 amd64.
5034 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
5035 This is needed for OpenBSD, and should be harmless on all BSD systems.
5036 Also, include <sys/sysctl.h>, as it should be available on all
5037 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
5038 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
5039 use p_pid member, not kp_proc.pid.
5040
5041 2012-07-06 Glenn Morris <rgm@gnu.org>
5042
5043 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
5044
5045 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5046
5047 More xmalloc and related cleanup.
5048 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
5049 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
5050 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
5051 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
5052 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
5053 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
5054 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
5055 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
5056 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
5057 * xterm.c:
5058 Omit needless casts involving void * pointers and allocation.
5059 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
5060 as the former is more robust if P's type is changed.
5061 Prefer xzalloc to xmalloc + memset 0.
5062 Simplify malloc-or-realloc to realloc.
5063 Don't worry about xmalloc returning a null pointer.
5064 Prefer xstrdup to xmalloc + strcpy.
5065 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
5066 growing it.
5067 * keyboard.c (apply_modifiers_uncached): Prefer local array to
5068 alloca of a constant.
5069
5070 2012-07-05 Eli Zaretskii <eliz@gnu.org>
5071
5072 * xdisp.c (display_line): Fix horizontal pixel coordinates when
5073 hscroll is larger than the line width. Fixes long and futile
5074 looping inside extend_face_to_end_of_line (on a TTY) producing
5075 glyphs that are not needed and thrown away.
5076
5077 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
5078
5079 * marker.c (set_marker_restricted_both): Simplify by using
5080 clip_to_bounds.
5081
5082 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5083
5084 * editfns.c (region_limit): Simplify by using clip_to_bounds.
5085
5086 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
5087
5088 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
5089 not defined (Bug#11768).
5090 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
5091 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
5092 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
5093 followed by gtk_box_set_homogeneous (Bug#11768).
5094 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
5095 (update_theme_scrollbar_width, xg_create_scroll_bar):
5096 Use gtk_scrollbar_new (Bug#11768).
5097 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
5098 (is_box_type): New function (Bug#11768).
5099 (xg_tool_item_stale_p): Call is_box_type.
5100 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
5101 with default display (Bug#11768).
5102
5103 2012-07-05 Eli Zaretskii <eliz@gnu.org>
5104
5105 * xdisp.c (window_hscroll_limited): New function.
5106 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
5107 coordinates when window's hscroll is set to insanely large
5108 values. (Bug#11857)
5109
5110 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
5111
5112 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
5113 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
5114
5115 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
5116
5117 Cleanup xmalloc.
5118 * lisp.h (xzalloc): New prototype. Omit needless casts.
5119 * alloc.c (xzalloc): New function. Omit needless casts.
5120 * charset.c: Omit needless casts. Convert all calls to
5121 xmalloc with following memset to xzalloc.
5122 * dispnew.c: Likewise.
5123 * fringe.c: Likewise.
5124 * image.c: Likewise.
5125 * sound.c: Likewise.
5126 * term.c: Likewise.
5127 * w32fns.c: Likewise.
5128 * w32font.c: Likewise.
5129 * w32term.c: Likewise.
5130 * xfaces.c: Likewise.
5131 * xfns.c: Likewise.
5132 * xterm.c: Likewise.
5133 * atimer.c: Omit needless casts.
5134 * buffer.c: Likewise.
5135 * callproc.c: Likewise.
5136 * ccl.c: Likewise.
5137 * coding.c: Likewise.
5138 * composite.c: Likewise.
5139 * doc.c: Likewise.
5140 * doprnt.c: Likewise.
5141 * editfns.c: Likewise.
5142 * emacs.c: Likewise.
5143 * eval.c: Likewise.
5144 * filelock.c: Likewise.
5145 * fns.c: Likewise.
5146 * gtkutil.c: Likewise.
5147 * keyboard.c: Likewise.
5148 * lisp.h: Likewise.
5149 * lread.c: Likewise.
5150 * minibuf.c: Likewise.
5151 * msdos.c: Likewise.
5152 * print.c: Likewise.
5153 * process.c: Likewise.
5154 * region-cache.c: Likewise.
5155 * search.c: Likewise.
5156 * sysdep.c: Likewise.
5157 * termcap.c: Likewise.
5158 * terminal.c: Likewise.
5159 * tparam.c: Likewise.
5160 * w16select.c: Likewise.
5161 * w32.c: Likewise.
5162 * w32reg.c: Likewise.
5163 * w32select.c: Likewise.
5164 * w32uniscribe.c: Likewise.
5165 * widget.c: Likewise.
5166 * xdisp.c: Likewise.
5167 * xmenu.c: Likewise.
5168 * xrdb.c: Likewise.
5169 * xselect.c: Likewise.
5170
5171 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5172
5173 * fileio.c (time_error_value): Check the right error number.
5174 Problem reported by Troels Nielsen in
5175 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
5176
5177 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5178
5179 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
5180 This should be fixed in a better way; see Eli Zaretskii in
5181 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
5182 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
5183
5184 * fileio.c (time_error_value): Rename from special_mtime.
5185 The old name's problems were noted by Eli Zaretskii in
5186 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
5187
5188 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
5189 This variable's comment says Emacs needs at least one GDB-visible
5190 symbol of type enum pvec_type, to work around GDB problems.
5191 The symbol's value doesn't matter.
5192
5193 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
5194 that causes compilation to fail on pre-C99 compilers.
5195
5196 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
5197
5198 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
5199 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
5200
5201 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5202
5203 * buffer.c (init_buffer_once): Fix initialization of
5204 headers for buffer_defaults and buffer_local_symbols.
5205 Reported by Juanma Barranquero <lekktu@gmail.com>.
5206
5207 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5208
5209 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
5210 * lisp.h (enum pvec_type): Use fewer bits.
5211 (PSEUDOVECTOR_SIZE_BITS): New constant.
5212 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
5213 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
5214 change in pvec_type.
5215 (PSEUDOVECTOR_TYPEP): New macro.
5216 (TYPED_PSEUDOVECTORP): Use it.
5217 * fns.c (internal_equal): Adapt code to extract pvectype.
5218 * emacs.c (gdb_pvec_type): Update type.
5219 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
5220 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
5221 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
5222 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
5223 (sweep_vectors): Use it. Use local var `total_bytes' instead of
5224 abusing vector->header.next.nbytes.
5225 (live_vector_p): Use PVEC_TYPE.
5226 (mark_object): Adapt code to extract pvectype. Use switch.
5227
5228 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5229
5230 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
5231 Tighten new eassert a bit.
5232
5233 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5234
5235 Fix compilation with --enable-gcc-warnings and -O1
5236 optimization level.
5237 * doprnt.c (doprnt): Change type of tem to int, initialize
5238 to avoid compiler warning. Add eassert.
5239 * search.c (simple_search): Initialize match_byte to avoid
5240 compiler warning. Add eassert.
5241
5242 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5243
5244 Avoid weird behavior with large horizontal scrolls.
5245 Without this change, for example, large hscroll values would
5246 mess up Emacs's display on Fedora 15 x86, presumably due to
5247 overflows in int calculations in the display code.
5248 Also, if buffers had long lines, Emacs would freeze.
5249 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
5250 (set_window_hscroll): New function, containing the old guts of
5251 Fset_window_hscroll. Return the clipped value.
5252 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
5253 This avoids the need to check against PTRDIFF_MAX.
5254
5255 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
5256
5257 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5258
5259 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
5260
5261 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5262
5263 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
5264 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
5265 since GCC 4.4.6 issues a bogus warning for them.
5266
5267 Fix bugs in file timestamp newness comparisons.
5268 * fileio.c (Ffile_newer_than_file_p):
5269 * lread.c (Fload): Use full timestamp resolution of files,
5270 not just the 1-second resolution, so that files that are only
5271 slightly newer still count as newer.
5272 * fileio.c (Ffile_newer_than_file_p): Don't assume file
5273 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
5274
5275 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
5276
5277 * fileio.c: Improve handling of file time marker. (Bug#11852)
5278 (special_mtime): New function.
5279 (Finsert_file_contents, Fverify_visited_file_modtime):
5280 Use it to set special mtime values consistently.
5281
5282 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5283
5284 * fileio.c (Finsert_file_contents): Properly handle st_mtime
5285 marker for non-existing file. (Bug#11852)
5286
5287 2012-07-03 Glenn Morris <rgm@gnu.org>
5288
5289 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
5290 and did not make it into globals.h).
5291
5292 2012-07-03 Tom Tromey <tromey@redhat.com>
5293
5294 * window.c (Fset_window_margins, Fset_window_fringes)
5295 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
5296 * textprop.c (Fprevious_property_change): No longer static.
5297 * syntax.c (Fsyntax_table_p): No longer static.
5298 * process.c (Fget_process, Fprocess_datagram_address): No longer
5299 static.
5300 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
5301 * keyboard.c (Fcommand_execute): No longer static.
5302 Remove EXFUN.
5303 * insdel.c (Fcombine_after_change_execute): No longer static.
5304 * image.c (Finit_image_library): No longer static.
5305 * fileio.c (Fmake_symbolic_link): No longer static.
5306 * eval.c (Ffetch_bytecode): No longer static.
5307 * editfns.c (Fuser_full_name): No longer static.
5308 * doc.c (Fdocumentation_property, Fsnarf_documentation):
5309 No longer static.
5310 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
5311 static.
5312 * dired.c (Ffile_attributes): No longer static.
5313 * composite.c (Fcomposition_get_gstring): No longer static.
5314 * callproc.c (Fgetenv_internal): No longer static.
5315
5316 * ccl.h: Remove EXFUNs.
5317 * buffer.h: Remove EXFUNs.
5318 * dispextern.h: Remove EXFUNs.
5319 * intervals.h: Remove EXFUNs.
5320 * fontset.h: Remove EXFUN.
5321 * font.h: Remove EXFUNs.
5322 * dosfns.c (system_process_attributes): Remove EXFUN.
5323 * keymap.h: Remove EXFUNs.
5324 * lisp.h: Remove EXFUNs.
5325 * w32term.h: Remove EXFUNs.
5326 * window.h: Remove EXFUNs.
5327 * xsettings.h: Remove EXFUN.
5328 * xterm.h: Remove EXFUN.
5329
5330 2012-07-03 Glenn Morris <rgm@gnu.org>
5331
5332 * lisp.h (Frandom): Make it visible to C.
5333 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
5334 buffer for invisible buffers. (Bug#1229)
5335
5336 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5337
5338 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
5339 values which aren't power of 2.
5340 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
5341 Verify it's value and the value of VECTOR_BLOCK_SIZE. Adjust users
5342 accordingly.
5343
5344 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
5345
5346 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
5347
5348 * alloc.c (mark_object): Revert part of last patch to use `switch'.
5349
5350 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5351
5352 * alloc.c (allocate_vector_block): Remove redundant
5353 calls to mallopt if DOUG_LEA_MALLOC is defined.
5354 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
5355 avoid calls to mallopt if zero_vector is returned.
5356
5357 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5358
5359 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
5360 is enabled, avoid dereferencing NULL current_sblock if
5361 running undumped.
5362
5363 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5364
5365 Cleanup basic buffer management.
5366 * buffer.h (struct buffer): Change layout to use generic vector
5367 marking code. Fix some comments. Change type of 'clip_changed'
5368 to bitfield. Remove unused #ifndef old.
5369 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
5370 (GET_OVERLAYS_AT): Fix indentation.
5371 (for_each_per_buffer_object_at): New macro.
5372 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
5373 (Fbuffer_local_variables): Use it.
5374 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
5375 * alloc.c (allocate_buffer): Adjust to match new layout of
5376 struct buffer. Fix comment.
5377 (mark_overlay): New function.
5378 (mark_buffer): Use it. Use mark_vectorlike to mark normal
5379 Lisp area of struct buffer.
5380 (mark_object): Use it. Adjust marking of misc objects
5381 and related comments.
5382
5383 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5384
5385 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
5386 wrapper that is not needed because the wrapped code is a no-op (zero
5387 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
5388 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
5389
5390 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
5391
5392 * alloc.c (mark_buffer): Simplify. Remove prototype.
5393 (mark_object): Add comment. Reorganize marking of vector-like
5394 objects. Use CHECK_LIVE for all vector-like objects except buffers
5395 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
5396 Avoid redundant calls to mark_vectorlike for bool vectors.
5397
5398 2012-06-30 Glenn Morris <rgm@gnu.org>
5399
5400 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
5401
5402 * epaths.in (PATH_SITELOADSEARCH): New.
5403 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
5404 This is rather than relying on --enable-locallisppath elements
5405 having "site-lisp" in their names. (Bug#10208#25, 11658)
5406
5407 2012-06-30 Eli Zaretskii <eliz@gnu.org>
5408
5409 * w32proc.c (sys_select): Accept and ignore one more argument.
5410
5411 * w32.c (emacs_gnutls_pull): Call select with one more argument.
5412
5413 * sysselect.h [DOS_NT]: Don't include sys/select.h.
5414 (pselect) [!MS_DOS]: Redirect to sys_select.
5415
5416 * sysdep.c: Don't include dos.h and dosfns.h.
5417
5418 * process.c (sys_select):
5419 * msdos.c (sys_select): Accept one more argument and ignore it.
5420
5421 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
5422 adapt data types and code to that.
5423
5424 * dosfns.c:
5425 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
5426 which clashes with the gnulib function of the same name.
5427
5428 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
5429
5430 * font.c (font_style_to_value, font_style_symbolic)
5431 (font_prop_validate_style): Add type checks for values in
5432 font_style_table.
5433
5434 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
5435 argument.
5436 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
5437 uses.
5438
5439 2012-06-29 Eli Zaretskii <eliz@gnu.org>
5440
5441 * xdisp.c (try_window_id): Undo last change.
5442
5443 * w32.c (getwd): Adjust commentary about startup_dir.
5444 (init_environment): Always call sys_access, even in non-MSVC
5445 builds. Don't chdir to the directory of the Emacs executable.
5446 This undoes code from 1997 which was justified by the need to
5447 "avoid conflicts when removing and renaming directories". But its
5448 downside was that every relative file name was being interpreted
5449 relative to the directory of the Emacs executable, which can never
5450 be TRT. In particular, it broke sys_access when called with
5451 relative file names.
5452 (sys_access): Map GetLastError to errno.
5453
5454 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5455
5456 * window.h (struct window): Change type of 'fringes_outside_margins'
5457 to bitfield. Fix comment. Adjust users accordingly.
5458 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
5459 Adjust comment.
5460 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
5461 to ptrdiff_t.
5462
5463 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
5464
5465 * gnutls.c (emacs_gnutls_handshake):
5466 Add QUIT to make the loop interruptible.
5467
5468 2012-06-29 Glenn Morris <rgm@gnu.org>
5469
5470 * charset.c (init_charset): Make lack of etc/charsets fatal.
5471
5472 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5473
5474 * editfns.c (region_limit): Fix type mismatch.
5475
5476 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5477
5478 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
5479 undefined. Convert from xassert to eassert.
5480 * nsmenu.m: Convert from xassert to eassert.
5481 * nsterm.m: Likewise.
5482
5483 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5484
5485 * editfns.c (region_limit): Clip to narrowing (bug#11770).
5486
5487 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
5488
5489 Avoid integer overflow on scroll-left and scroll-right.
5490 * window.c (HSCROLL_MAX): New macro.
5491 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
5492 overflow when requested scroll falls outside ptrdiff_t range.
5493
5494 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5495
5496 * window.h (struct window): Change type of 'hscroll',
5497 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
5498 'last_modified' and 'last_overlay_modified' to EMACS_INT.
5499 Adjust users accordingly.
5500 * xdisp.c (try_cursor_movement): Replace type check with eassert.
5501 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
5502 from EMACS_INT to ptrdiff_t.
5503 (make_window): Omit redundant initialization.
5504
5505 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
5506
5507 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
5508
5509 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5510
5511 * window.h (struct window): Change type of 'use_time' and
5512 'sequence_number' from Lisp_Object to int.
5513 * frame.c (make_frame): Adjust users accordingly.
5514 * print.c (print_object): Likewise.
5515 * window.c (select_window, Fwindow_use_time, make_parent_window)
5516 (make_window): Likewise.
5517
5518 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5519
5520 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
5521 enabled with --enable-checking=[all,glyphs] configure option.
5522 Fix GLYPH_DEBUG usage assuming that it may be undefined,
5523 adjust comments accordingly.
5524 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
5525 undefined, adjust comments accordingly.
5526 * image.c: Likewise.
5527 * scroll.c: Likewise.
5528 * w32fns.c: Likewise.
5529 * w32term.c: Likewise.
5530 * xdisp.c: Likewise.
5531 * xfaces.c: Likewise.
5532 * xfns.c: Likewise.
5533 * xterm.c: Likewise.
5534
5535 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5536
5537 Generalize run-time debugging checks.
5538 * dispextern.h (XASSERTS): Remove.
5539 * fontset.c (xassert): Remove.
5540 Convert from xassert to eassert.
5541 * alloc.c: Convert from xassert to eassert.
5542 * bidi.c: Likewise.
5543 * dispnew.c: Likewise.
5544 * fns.c: Likewise.
5545 * fringe.c: Likewise.
5546 * ftfont.c: Likewise.
5547 * gtkutil.c: Likewise.
5548 * image.c: Likewise.
5549 * keyboard.c: Likewise.
5550 * menu.c: Likewise.
5551 * process.c: Likewise.
5552 * scroll.c: Likewise.
5553 * sound.c: Likewise.
5554 * term.c: Likewise.
5555 * w32console.c: Likewise.
5556 * w32fns.c: Likewise.
5557 * w32term.c: Likewise.
5558 * window.c: Likewise.
5559 * xdisp.c: Likewise.
5560 * xfaces.c: Likewise.
5561 * xfns.c: Likewise.
5562 * xselect.c: Likewise.
5563 * xterm.c: Likewise.
5564
5565 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5566
5567 * fns.c (maybe_resize_hash_table): Output message when growing the
5568 purify-hashtable.
5569
5570 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5571
5572 * alloc.c (allocate_string_data): Remove dead code.
5573 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
5574 avoid GCC warning about unused macro.
5575
5576 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5577
5578 * alloc.c (allocate_string): Omit intervals initialization.
5579 * alloc.c (make_uninit_multibyte_string): Initialize intervals
5580 as in make_pure_string and make_pure_c_string.
5581
5582 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5583
5584 * alloc.c (allocate_string): Fix last change.
5585
5586 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5587
5588 * alloc.c (allocate_string): Remove two redundant calls
5589 to memset, add explicit initialization where appropriate.
5590
5591 2012-06-27 Glenn Morris <rgm@gnu.org>
5592
5593 * lisp.mk (lisp): Remove paths.elc.
5594
5595 2012-06-27 Chong Yidong <cyd@gnu.org>
5596
5597 * doc.c (Fsubstitute_command_keys): Fix punctuation.
5598
5599 2012-06-26 John Wiegley <johnw@newartisans.com>
5600
5601 * unexmacosx.c (copy_data_segment): Add two section names used
5602 on Mac OS X Lion: __mod_init_func and __mod_term_func.
5603
5604 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
5605 when building with Clang.
5606
5607 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5608
5609 * eval.c (Fapply): Allow calling it with a single argument.
5610
5611 2012-06-26 Eli Zaretskii <eliz@gnu.org>
5612
5613 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
5614 _stricmp and _strnicmp.
5615 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
5616
5617 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5618
5619 * alloc.c (allocate_window): Zero out non-Lisp part of newly
5620 allocated window.
5621 (allocate_process): Likewise for new process.
5622 (allocate_terminal): Change to use offsetof.
5623 (allocate_frame): Likewise.
5624 * frame.c (make_frame): Omit redundant initialization.
5625 * window.c (make_parent_window): Use memset.
5626 (make_window): Omit redundant initialization.
5627 * process.c (make_process): Omit redundant initialization.
5628 * terminal.c (create_terminal): Likewise.
5629
5630 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5631
5632 * term.c (delete_tty): Remove redundant call to memset.
5633
5634 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5635
5636 * alloc.c: Remove build_string.
5637 * lisp.h: Define build_string as static inline. This provides
5638 a better opportunity to optimize away calls to strlen when the
5639 function is called with compile-time constant argument.
5640 * image.c (imagemagick_error): Convert to build_string.
5641 * w32proc.c (sys_spawnve): Likewise.
5642 * xterm.c (x_term_init): Likewise.
5643
5644 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
5645
5646 Use sprintf return value instead of invoking strlen on result.
5647 In the old days this wasn't portable, since some sprintf
5648 implementations returned char *. But they died out years ago and
5649 Emacs already assumes sprintf returns int.
5650 Similarly for float_to_string.
5651 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
5652 * ccl.c (ccl_driver):
5653 * character.c (string_escape_byte8):
5654 * data.c (Fnumber_to_string):
5655 * doprnt.c (doprnt):
5656 * print.c (print_object):
5657 * xdisp.c (message_dolog):
5658 * xfns.c (syms_of_xfns):
5659 Use sprintf or float_to_string result to avoid need to call strlen.
5660 * data.c (Fnumber_to_string):
5661 Use make_unibyte_string, since the string must be ASCII.
5662 * lisp.h, print.c (float_to_string): Now returns int length.
5663 * term.c (produce_glyphless_glyph):
5664 Use sprintf result rather than recomputing it.
5665
5666 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
5667 * Makefile.in (ALL_CFLAGS):
5668 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
5669 * gmalloc.c, regex.c: Include <config.h> unconditionally.
5670
5671 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5672
5673 * dispextern.h (xstrcasecmp): Define to library function
5674 strcasecmp if available.
5675 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
5676
5677 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
5678
5679 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
5680 Avoid comma operator.
5681 * menu.c (push_submenu_start, push_submenu_end)
5682 (push_left_right_boundary, push_menu_pane): Likewise.
5683 * msdos.c (dos_rawgetc): Likewise.
5684
5685 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5686
5687 * xfns.c (xic_create_fontsetname): Remove redundant calls
5688 to memset.
5689
5690 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
5691
5692 * gtkutil.c (get_utf8_string): Remove redundant assignment.
5693 sprintf already null-terminates its output.
5694
5695 * xfns.c (x_window): Remove redundant cast.
5696
5697 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5698
5699 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
5700 `const char *' to `char *' to avoid compiler warning.
5701
5702 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5703
5704 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
5705 instead of truncating it to 63 (admittedly a generous limit).
5706
5707 * process.c: Fix spelling and caps in comments.
5708
5709 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
5710
5711 * emacs.c (setpgrp): Remove definition, unused.
5712 * sysdep.c (setpgrp): Remove definition, not used in this file.
5713
5714 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
5715
5716 * makefile.w32-in: Update dependencies.
5717
5718 2012-06-24 Eli Zaretskii <eliz@gnu.org>
5719
5720 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
5721 (SYSTIME_H): Add nt/inc/sys/time.h.
5722
5723 * systime.h [WINDOWSNT]: Include sys/time.h.
5724
5725 * s/ms-w32.h (struct timespec): Definition moved from
5726 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
5727
5728 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5729
5730 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
5731 * buffer.h (buffer_slot_type_mismatch):
5732 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
5733 * eval.c (unwind_to_catch):
5734 * image.c (my_png_error, my_error_exit):
5735 * keyboard.c (quit_throw_to_read_char, user_error)
5736 (Fexit_recursive_edit, Fabort_recursive_edit):
5737 * lisp.h (die, args_out_of_range, args_out_of_range_3)
5738 (wrong_type_argument, buffer_overflow, __executable_start)
5739 (memory_full, buffer_memory_full, string_overflow, Fthrow)
5740 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
5741 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
5742 (fatal):
5743 (child_setup) [!DOS_NT]:
5744 * lread.c (end_of_file_error, invalid_syntax):
5745 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
5746 * puresize.h (pure_write_error):
5747 * search.c (matcher_overflow):
5748 * sound.c (sound_perror, alsa_sound_perror):
5749 * sysdep.c, syssignal.h (croak):
5750 * term.c (maybe_fatal, vfatal):
5751 * textprop.c (text_read_only):
5752 * undo.c (user_error):
5753 * unexmacosx.c (unexec_error):
5754 * xterm.c (x_ins_del_lines, x_delete_glyphs):
5755 Use _Noreturn rather than NO_RETURN.
5756 No need for separate decl merely because of _Noreturn.
5757 * sound.c (sound_warning, parse_sound):
5758 Remove unnecessary forward decls.
5759
5760 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5761
5762 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
5763 * lisp.h (WAIT_READING_MAX): New macro.
5764 * dispnew.c (Fsleep_for, sit_for):
5765 * keyboard.c (kbd_buffer_get_event):
5766 * process.c (Faccept_process_output):
5767 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
5768 This improves on the previous patch, which introduced a bug
5769 when time_t is unsigned and as wide as intmax_t.
5770 See <http://bugs.gnu.org/9000#51>.
5771
5772 2012-06-23 Eli Zaretskii <eliz@gnu.org>
5773
5774 * dispnew.c (sit_for, Fsleep_for):
5775 * keyboard.c (kbd_buffer_get_event):
5776 * process.c (Faccept_process_output): Avoid compiler warnings when
5777 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
5778
5779 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
5780
5781 * makefile.w32-in: Update dependencies.
5782
5783 * w32.c (ltime): Add return type and declare static.
5784 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
5785
5786 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
5787
5788 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
5789 Privately reported by Herbert J. Skuhra.
5790 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
5791 All uses changed.
5792 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
5793 not make_lisp_timeval, when the argument is of type EMACS_TIME.
5794
5795 2012-06-23 Eli Zaretskii <eliz@gnu.org>
5796
5797 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
5798 last argument of make_unibyte_string.
5799
5800 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
5801 language ID in the event parameters.
5802
5803 * w32term.c (w32_read_socket): Put the new keyboard codepage into
5804 event.code, not the obscure "character set ID".
5805
5806 2012-06-23 Chong Yidong <cyd@gnu.org>
5807
5808 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
5809
5810 2012-06-23 Eli Zaretskii <eliz@gnu.org>
5811
5812 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
5813 * w32.c (fdutimens): New function.
5814
5815 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
5816
5817 * s/ms-w32.h (pselect): Redirect to sys_select.
5818
5819 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
5820
5821 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
5822 in the logic of incrementing and decrementing the value of
5823 use_relocatable_buffers.
5824
5825 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
5826
5827 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
5828 Privately reported by Herbert J. Skuhra.
5829 [__FreeBSD__]: Remove "*/" typo after "#include".
5830 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
5831 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
5832 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
5833 Don't assume EMACS_TIME and struct timeval are the same type.
5834
5835 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5836
5837 Support higher-resolution time stamps (Bug#9000).
5838 The time stamps are only nanosecond-resolution at the C level,
5839 since that's the best that any real-world system supports now.
5840 But they are picosecond-resolution at the Lisp level, as that's
5841 easy, and leaves room for future OS improvements.
5842
5843 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
5844 (LIBES): Use it.
5845
5846 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
5847 Don't get current time unless it's needed.
5848
5849 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
5850 now provides it if it's absent.
5851 (start_atimer): Port to higher-res time stamps.
5852 Check for time stamp overflow. Don't get current time more
5853 often than is needed.
5854
5855 * buffer.h (struct buffer): Buffer modtime now has high resolution.
5856 Include systime.h, not time.h.
5857 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
5858
5859 * dired.c: Include stat-time.h.
5860 (Ffile-attributes): File times now have higher resolution.
5861
5862 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
5863 (struct image): Timestamp now has higher resolution.
5864
5865 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
5866 has at least microseconds now. All uses removed.
5867 (update_frame, update_single_window, update_window, update_frame_1)
5868 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
5869 (duration_to_sec_usec): Remove; no longer needed.
5870
5871 * editfns.c (time_overflow): Now extern.
5872 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
5873 (float-time, Fformat_time_string, Fcurrent_time_string)
5874 (Fcurrent_time_zone): Accept and generate higher-resolution
5875 time stamps.
5876 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
5877 (decode_time_components, lisp_seconds_argument): New functions.
5878 (make_time): Now static.
5879 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
5880 Report an error if the time is invalid, rather than having the caller
5881 do that.
5882
5883 * fileio.c: Include <stat-time.h>
5884 (Fcopy_file): Copy higher-resolution time stamps.
5885 Prefer to set the time stamp via a file descriptor if that works.
5886 (Fset_file_times, Finsert_file_contents, Fwrite_region)
5887 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
5888 (Fvisited_file_modtime, Fset_visited_file_modtime):
5889 Support higher-resolution time stamps.
5890
5891 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
5892
5893 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
5894
5895 * image.c (prepare_image_for_display, clear_image_cache)
5896 (lookup_image): Port to higer-resolution time stamps.
5897
5898 * keyboard.c (start_polling, bind_polling_period):
5899 Check for time stamp overflow.
5900 (read_char, kbd_buffer_get_event, timer_start_idle)
5901 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
5902 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
5903 Port to higher-resolution time stamps. Do not assume time_t is signed.
5904 (decode_timer): New function. Timers are now vectors of length 9,
5905 not 8, to accommodate the picosecond component.
5906 (timer_check_2): Use it.
5907
5908 * nsterm.m (select_timeout, timeval_subtract): Remove.
5909 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
5910 as they're a bit more accurate and handle overflow better.
5911 (ns_select): Change prototype to be compatible with pselect.
5912 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
5913 * nsterm.h (ns_select): Adjust prototype.
5914
5915 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
5916 us-resolution time stamps.
5917 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
5918
5919 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
5920
5921 * lisp.h (time_overflow): New decl.
5922 (wait_reading_process_output): First arg is now intmax_t, not int,
5923 to accommodate larger waits.
5924
5925 * process.h (struct Lisp_Process.read_output_delay):
5926 Now counts nanoseconds, not microseconds.
5927 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
5928 EMACS_HAS_USECS.
5929 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
5930 (wait_reading_process_output):
5931 Port to ns-resolution time stamps.
5932 (Faccept_process_output, wait_reading_process_output):
5933 Check for time stamp overflow. Do not assume time_t is signed.
5934 (select_wrapper): Remove; we now use pselect.
5935 (Fprocess_attributes): Now generates ns-resolution time stamps.
5936
5937 * sysdep.c: Include utimens.h. Don't include utime.h
5938 or worry about struct utimbuf; gnulib does that for us now.
5939 (gettimeofday): Remove; gnulib provides a substitute.
5940 (make_timeval): New function.
5941 (set_file_times): Now sets ns-resolution time stamps.
5942 New arg FD; all uses changed.
5943 (time_from_jiffies, ltime_from_jiffies, get_up_time)
5944 (system_process_attributes):
5945 Now returns ns-resolution time stamp. All uses changed.
5946 Check for time stamp overflow.
5947
5948 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
5949 provides a substitute now.
5950
5951 * systime.h: Include timespec.h rather than sys/time.h and time.h,
5952 since it guarantees struct timespec.
5953 (EMACS_TIME): Now struct timespec, so that we can support
5954 ns-resolution time stamps.
5955 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
5956 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
5957 (EMACS_USECS): Remove.
5958 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
5959 so multiply the arg by 1000 before storing it.
5960 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
5961 New macros.
5962 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
5963 Port to ns-resolution time stamps.
5964 (EMACS_TIME_NEG_P): Remove; replaced by....
5965 (EMACS_TIME_SIGN): New macro.
5966 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
5967 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
5968 (set_file_times, make_time, lisp_time_argument): Adjust signature.
5969 (make_timeval, make_lisp_time, decode_time_components): New decls.
5970 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
5971 that it mishandled time_t overflow. You can't compare by subtracting!
5972 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
5973 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
5974
5975 * term.c: Include <sys/time.h>.
5976 (timeval_to_Time): New function, for proper overflow wraparound.
5977 (term_mouse_position, term_mouse_click): Use it.
5978
5979 * undo.c (record_first_change): Support higher-resolution time stamps
5980 in the undo buffer.
5981 (Fprimitive_undo): Use them when restoring time stamps.
5982
5983 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
5984 (w32_get_internal_run_time):
5985 Port to higher-resolution Emacs time stamps.
5986 (ltime): Now accepts single 64-bit integer, as that's more convenient
5987 for callers.
5988
5989 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
5990
5991 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
5992 for compatibility with pselect. Support ns-resolution time stamps.
5993
5994 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
5995
5996 * xselect.c (wait_for_property_change, x_get_foreign_selection):
5997 Check for time stamp overflow, and support ns-resolution time stamps.
5998
5999 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
6000 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
6001 (timeval_subtract): Remove; no longer needed.
6002 (XTflash, XTring_bell, x_wait_for_event):
6003 Port to ns-resolution time stamps. Don't assume time_t is signed.
6004
6005 2012-06-22 Chong Yidong <cyd@gnu.org>
6006
6007 * xdisp.c (x_consider_frame_title): Revert last change.
6008
6009 2012-06-22 Eli Zaretskii <eliz@gnu.org>
6010
6011 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
6012 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
6013 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
6014 staticidx goes up to 1597 out of 1600 = 0x640.)
6015
6016 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
6017
6018 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
6019 Otherwise, the umask might be mistakenly 0 while handling input signals.
6020
6021 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
6022
6023 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
6024
6025 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
6026
6027 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
6028 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
6029 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
6030 access to `contents' member of Lisp_Vector objects with AREF and ASET
6031 where appropriate.
6032
6033 2012-06-19 Chong Yidong <cyd@gnu.org>
6034
6035 * frame.c (delete_frame): When selecting a frame on a different
6036 text terminal, do not alter the terminal's top-frame.
6037
6038 * xdisp.c (format_mode_line_unwind_data): Record the target
6039 frame's selected window and its terminal's top-frame.
6040 (unwind_format_mode_line): Restore them.
6041 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
6042 Callers changed.
6043 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
6044 since tty frames can be explicitly named.
6045 (prepare_menu_bars): Likewise.
6046
6047 * term.c (Ftty_top_frame): New function.
6048
6049 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
6050
6051 Port byte-code-meter to modern targets.
6052 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
6053 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
6054 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
6055 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
6056 (METER_1, METER_2): Simplify.
6057
6058 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6059
6060 * data.c (Fdefalias): Return `symbol' (bug#11686).
6061
6062 2012-06-18 Martin Rudalics <rudalics@gmx.at>
6063
6064 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
6065 gets killed during executing of this function (Bug#11665).
6066 Try to always return Qt when the buffer has been actually killed.
6067 (Vkill_buffer_query_functions): In doc-string say that functions
6068 run by this hook should not change the current buffer.
6069
6070 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
6071
6072 Fix recently-introduced process.c problems found by static checking.
6073 * process.c (write_queue_push, write_queue_pop, send_process):
6074 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
6075 (write_queue_pop): Fix pointer signedness problem.
6076 (send_process): Remove unused local.
6077
6078 2012-06-17 Chong Yidong <cyd@gnu.org>
6079
6080 * xdisp.c (redisplay_internal): No need to redisplay terminal
6081 frames that are not on top.
6082
6083 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
6084
6085 * process.c (make_process): Initialize write_queue.
6086 (write_queue_push, write_queue_pop): New functions.
6087 (send_process): Use them to maintain correct ordering of process
6088 writes (Bug#10815).
6089
6090 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6091
6092 * lisp.h (eassert): Assume C89 or later.
6093 This removes the need for CHECK.
6094 (CHECK): Remove. Its comments about always evaluating its
6095 argument were confusing, as 'eassert' typically does not evaluate
6096 its argument.
6097
6098 * coding.c (produce_chars): Use ptrdiff_t, not int.
6099
6100 * xterm.c (x_draw_underwave): Check for integer overflow.
6101 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
6102
6103 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
6104
6105 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
6106 referenced (Bug#11583).
6107
6108 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6109
6110 Implement wave-style variant of underlining.
6111 * dispextern.h (face_underline_type): New enum.
6112 (face): Add field for underline type.
6113 * nsterm.m (ns_draw_underwave): New function.
6114 (ns_draw_text_decoration): Use it.
6115 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
6116 New functions.
6117 (x_draw_glyph_string): Use them.
6118 * xfaces.c (Qline, Qwave): New Lisp objects.
6119 (check_lface_attrs, merge_face_ref)
6120 (Finternal_set_lisp_face_attribute, realize_x_face):
6121 Handle wave-style underline face attributes.
6122 * xterm.c (x_draw_underwave): New function.
6123 (x_draw_glyph_string): Use it.
6124
6125 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
6126
6127 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
6128 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
6129 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
6130 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
6131 ($(BLD)/w32select.$(O)): Update dependencies.
6132
6133 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
6134
6135 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
6136 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
6137 * character.c (_fetch_multibyte_char_p): Remove.
6138 * alloc.c: Include "character.h" before "buffer.h".
6139 * bidi.c: Likewise.
6140 * buffer.c: Likewise.
6141 * bytecode.c: Likewise.
6142 * callint.c: Likewise.
6143 * callproc.c: Likewise.
6144 * casefiddle.c: Likewise.
6145 * casetab.c: Likewise.
6146 * category.c: Likewise.
6147 * cmds.c: Likewise.
6148 * coding.c: Likewise.
6149 * composite.c: Likewise.
6150 * dired.c: Likewise.
6151 * dispnew.c: Likewise.
6152 * doc.c: Likewise.
6153 * dosfns.c: Likewise.
6154 * editfns.c: Likewise.
6155 * emacs.c: Likewise.
6156 * fileio.c: Likewise.
6157 * filelock.c: Likewise.
6158 * font.c: Likewise.
6159 * fontset.c: Likewise.
6160 * fringe.c: Likewise.
6161 * indent.c: Likewise.
6162 * insdel.c: Likewise.
6163 * intervals.c: Likewise.
6164 * keyboard.c: Likewise.
6165 * keymap.c: Likewise.
6166 * lread.c: Likewise.
6167 * macros.c: Likewise.
6168 * marker.c: Likewise.
6169 * minibuf.c: Likewise.
6170 * nsfns.m: Likewise.
6171 * nsmenu.m: Likewise.
6172 * print.c: Likewise.
6173 * process.c: Likewise.
6174 * regex.c: Likewise.
6175 * region-cache.c: Likewise.
6176 * search.c: Likewise.
6177 * syntax.c: Likewise.
6178 * term.c: Likewise.
6179 * textprop.c: Likewise.
6180 * undo.c: Likewise.
6181 * unexsol.c: Likewise.
6182 * w16select.c: Likewise.
6183 * w32fns.c: Likewise.
6184 * w32menu.c: Likewise.
6185 * window.c: Likewise.
6186 * xdisp.c: Likewise.
6187 * xfns.c: Likewise.
6188 * xmenu.c: Likewise.
6189 * xml.c: Likewise.
6190 * xselect.c: Likewise.
6191
6192 2012-06-16 Eli Zaretskii <eliz@gnu.org>
6193
6194 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
6195 If all the glyphs of the glyph row came from strings, and we have no
6196 cursor positioning clues, put the cursor on the first glyph of the
6197 row.
6198 (handle_face_prop): Use chunk-relative overlay string index when
6199 indexing into it->string_overlays array. (Bug#11653)
6200 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
6201 the rightmost. (Bug#11720)
6202
6203 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
6204
6205 * category.h (CHAR_HAS_CATEGORY): Define as inline.
6206 (CATEGORY_MEMBER): Enforce 1/0 value.
6207 * category.c (_temp_category_set): Remove.
6208
6209 2012-06-16 Eli Zaretskii <eliz@gnu.org>
6210
6211 * window.c (Fdelete_other_windows_internal)
6212 (Fdelete_window_internal): Don't access frame's mouse highlight
6213 info of the initial frame. (Bug#11677)
6214
6215 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
6216
6217 * .gdbinit (xgetint): Fix recently-introduced paren typo.
6218 Assume USE_2_TAGS_FOR_INTS.
6219 (xreload): Adjust $tagmask width to match recent lisp.h change.
6220
6221 Simplify lisp.h in minor ways that should not affect code.
6222 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
6223 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
6224 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
6225 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
6226 (INTTYPEBITS): New macro, for clarity.
6227 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
6228 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
6229 Simplify now that USE_LSB_TAG is always defined.
6230 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
6231 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
6232
6233 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
6234
6235 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
6236
6237 2012-06-13 Glenn Morris <rgm@gnu.org>
6238
6239 * s/bsd-common.h (BSD4_3):
6240 * s/usg5-4-common.h (USG5_4): No longer define; unused.
6241
6242 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
6243
6244 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
6245 instead of union.
6246 (XLI, XIL): Define.
6247 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
6248 Use them.
6249 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
6250 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
6251 * alloc.c (widen_to_Lisp_Object): Remove.
6252 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
6253 * frame.c (delete_frame): Remove outdated comment.
6254 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
6255 USE_LISP_UNION_TYPE.
6256 (Fw32_unregister_hot_key): Likewise.
6257 (Fw32_toggle_lock_key): Likewise.
6258 * w32menu.c (add_menu_item): Likewise.
6259 (w32_menu_display_help): Use XIL instead of checking
6260 USE_LISP_UNION_TYPE.
6261 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
6262 (init_heap): Likewise.
6263 * w32term.c (w32_read_socket): Update comment.
6264
6265 2012-06-13 Glenn Morris <rgm@gnu.org>
6266
6267 * s/usg5-4-common.h, src/s/unixware.h:
6268 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
6269
6270 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
6271
6272 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
6273
6274 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
6275 * alloc.c (make_number) [!defined make_number]:
6276 Remove, as lisp.h always defines this now.
6277 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
6278 (roundup_size): Verify that it is a power of 2.
6279 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
6280 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
6281 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
6282 -DUSE_LSB_TAG=0, to override the automatically-selected default.
6283 USE_LSB_TAG now is always defined to be either 0 or 1.
6284 All uses changed.
6285 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
6286 code works fine either way, and efficiency is not a concern here,
6287 as the union type is for debugging, not for production.
6288 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
6289 Use an inline function on all platforms when using the union type,
6290 since this is simpler and 'static inline' can be used portably
6291 within Emacs now.
6292 (LISP_INITIALLY_ZERO): New macro.
6293 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
6294 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
6295
6296 2012-06-12 Glenn Morris <rgm@gnu.org>
6297
6298 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
6299
6300 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
6301
6302 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
6303 Move BROKEN_SIGIO to configure.
6304
6305 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
6306 Move NO_TERMIO to configure.
6307
6308 2012-06-12 Chong Yidong <cyd@gnu.org>
6309
6310 * image.c (imagemagick_load_image): Use MagickFlattenImage if
6311 MagickMergeImageLayers is undefined. Use pixel pusher loop if
6312 MagickExportImagePixels is undefined.
6313
6314 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
6315
6316 * image.c (imagemagick_load_image): Remove unused label.
6317
6318 2012-06-11 Glenn Morris <rgm@gnu.org>
6319
6320 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6321 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
6322 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
6323 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
6324
6325 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6326
6327 * alloc.c (make_byte_code): New function.
6328 (Fmake_byte_code): Use it. Don't purify here.
6329 * lread.c (read1): Use it as well to avoid extra allocation.
6330
6331 2012-06-11 Chong Yidong <cyd@gnu.org>
6332
6333 * image.c (imagemagick_load_image): Implement transparency.
6334
6335 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
6336
6337 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
6338 account for preceding backslashes. (Bug#11663)
6339
6340 2012-06-09 Chong Yidong <cyd@gnu.org>
6341
6342 * term.c: Support italics in capable terminals (Bug#9652).
6343 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
6344 (turn_on_face): Output using TS_enter_italic_mode if available.
6345 Don't handle unused blinking and alt-charset cases.
6346 (turn_off_face): Handle italic case; discard unused tty_blinking_p
6347 and tty_alt_charset_p cases.
6348 (tty_capable_p, init_tty): Support italics.
6349
6350 * termchar.h (struct tty_display_info): Add field for italics.
6351 Remove unused blink field.
6352
6353 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
6354 Handle slant.
6355
6356 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
6357 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
6358 tty_alt_charset_p. Add tty_italic_p.
6359
6360 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
6361
6362 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
6363 dbus_type_is_basic if available.
6364 (xd_extract_signed, xd_extract_unsigned): Rename from
6365 extract_signed and extract_unsigned, respectively. Adapt callers.
6366
6367 2012-06-09 Chong Yidong <cyd@gnu.org>
6368
6369 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
6370
6371 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
6372 case (Bug#9752).
6373
6374 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
6375
6376 * xdisp.c (vmessage): Treat frame message as multibyte.
6377 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
6378 would generate the diagnostic "Making \302\247 buffer-local while
6379 let-bound!".
6380
6381 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6382
6383 * dispnew.c (showing_window_margins_p): Undo last change, which
6384 was done due to an inadvertent commit.
6385 (adjust_frame_glyphs_for_frame_redisplay): Do call
6386 showing_window_margins_p.
6387
6388 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6389
6390 * eval.c (Fmake_var_non_special): New primitive.
6391 (syms_of_eval): Defsubr it.
6392 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
6393
6394 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
6395
6396 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
6397 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
6398
6399 2012-06-08 Eli Zaretskii <eliz@gnu.org>
6400
6401 * alloc.c (allocate_vectorlike): Fix last change.
6402
6403 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
6404
6405 Block-based vector allocation of small vectors.
6406 * lisp.h (struct vectorlike_header): New field `nbytes',
6407 adjust comment accordingly.
6408 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
6409 to denote vector blocks. Adjust users (live_vector_p,
6410 mark_maybe_pointer, valid_lisp_object_p) accordingly.
6411 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
6412 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
6413 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
6414 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
6415 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
6416 (roundup_size): New constant.
6417 (struct vector_block): New data type.
6418 (vector_blocks, vector_free_lists, zero_vector): New variables.
6419 (all_vectors): Rename to `large_vectors'.
6420 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
6421 (sweep_vectors): New functions.
6422 (allocate_vectorlike): Return `zero_vector' as the only vector of
6423 0 items. Allocate new vector from block if vector size is less than
6424 or equal to VBLOCK_BYTES_MAX.
6425 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
6426 (init_alloc_once): Add call to init_vectors.
6427
6428 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6429
6430 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
6431
6432 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
6433
6434 * doprnt.c (doprnt): Truncate multibyte char correctly.
6435 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
6436 would mishandle a string argument "Xc" if X was a multibyte
6437 character of length 2: it would truncate after X's first byte
6438 rather than including all of X.
6439
6440 2012-06-06 Chong Yidong <cyd@gnu.org>
6441
6442 * buffer.c (word_wrap): Doc fix.
6443
6444 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
6445
6446 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
6447
6448 2012-06-03 Glenn Morris <rgm@gnu.org>
6449
6450 * xdisp.c (tool-bar-style): Doc fix.
6451
6452 2012-06-03 Ulrich Müller <ulm@gentoo.org>
6453
6454 * Makefile.in (PAXCTL): Define.
6455 (temacs$(EXEEXT)): Disable memory randomization for the temacs
6456 binary via PaX flags if the paxctl utility is available.
6457 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
6458 Restore PaX flags to their default. (Bug#11398)
6459
6460 2012-06-03 Chong Yidong <cyd@gnu.org>
6461
6462 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
6463 buffer (Bug#11226).
6464
6465 2012-06-03 Chong Yidong <cyd@gnu.org>
6466
6467 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
6468 (note_mode_line_or_margin_highlight): If there is no help echo,
6469 use mode-line-default-help-echo. Handle the case where the mouse
6470 position is past the end of the mode line string.
6471
6472 * buffer.c (buffer_local_value_1): New function, split from
6473 Fbuffer_local_value; can return Qunbound.
6474 (Fbuffer_local_value): Use it.
6475 (Vmode_line_format): Docstring tweaks.
6476
6477 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
6478
6479 * sysdep.c (system_process_attributes): Improve comment.
6480
6481 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6482
6483 * keyboard.c: Export real-this-command to Elisp.
6484 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
6485 and DEFVAR it. Update all users.
6486
6487 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
6488
6489 * minibuf.c (Fassoc_string): Remove duplicate declaration.
6490
6491 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
6492 Convert pctcpu and pctmem to Lisp float properly.
6493 Let the compiler fold better, as 100.0/0x8000 is exact.
6494
6495 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
6496
6497 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
6498 cons_block.
6499
6500 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
6501
6502 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
6503
6504 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
6505
6506 For a 'struct window', replace some Lisp_Object fields to
6507 bitfields where appropriate, remove unused fields.
6508 * window.h (struct window): Remove unused 'last_mark_x' and
6509 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
6510 change it's type from Lisp_Object to bitfield.
6511 Change type of 'force_start', 'optional_new_start',
6512 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
6513 fields from Lisp_Object to bitfield. Adjust users accordingly.
6514
6515 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
6516
6517 Pacify gcc -Wdouble-precision when using Xaw.
6518 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
6519 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
6520 Use 'float' consistently, rather than 'float' in most places
6521 and 'double' in a couple of places.
6522
6523 2012-05-31 Eli Zaretskii <eliz@gnu.org>
6524
6525 * xdisp.c (handle_stop): Detect whether we have overlay strings
6526 loaded by testing it->current.overlay_string_index to be
6527 non-negative, instead of checking whether n_overlay_strings is
6528 positive. (Bug#11587)
6529
6530 2012-05-31 Chong Yidong <cyd@gnu.org>
6531
6532 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
6533
6534 * doc.c (Fsubstitute_command_keys): Doc fix.
6535
6536 2012-05-31 Eli Zaretskii <eliz@gnu.org>
6537
6538 * search.c (search_buffer): Remove calls to
6539 r_alloc_inhibit_buffer_relocation, as it is now called by
6540 maybe_unify_char, which was the cause of relocation of buffer text
6541 in bug#11519.
6542
6543 2012-05-31 Eli Zaretskii <eliz@gnu.org>
6544
6545 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
6546 for the duration of call to load_charset, to avoid problems with
6547 callers of maybe_unify_char that access buffer text through C
6548 pointers.
6549
6550 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
6551 decrement the inhibition flag, instead of just setting or
6552 resetting it.
6553
6554 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
6555
6556 Remove obsolete '#define static' cruft.
6557 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
6558 This #undef was "temporary" in 2000; it is no longer needed
6559 now that '#define static' has gone away.
6560 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
6561 (gray_bitmap_bits): Remove; no longer needed.
6562 All uses replaced with definiens.
6563 * xterm.c: Include "bitmaps/gray.xbm".
6564
6565 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
6566
6567 Clean up __executable_start, monstartup when --enable-profiling.
6568 The following changes affect the code only when profiling.
6569 * dispnew.c (__executable_start): Rename from safe_bcopy.
6570 Define only on platforms that need it.
6571 * emacs.c: Include <sys/gmon.h> when profiling.
6572 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
6573 (__executable_start): Remove decl, since lisp.h does it now.
6574 (safe_bcopy): Remove decl; no longer has that name.
6575 (main): Coalesce #if into single bit of code, for simplicity.
6576 Cast pointers to uintptr_t, since standard libraries want integers
6577 and not pointers.
6578 * lisp.h (__executable_start): New decl.
6579
6580 2012-05-31 Glenn Morris <rgm@gnu.org>
6581
6582 * image.c (Fimagemagick_types): Doc fix.
6583
6584 2012-05-30 Jim Meyering <meyering@redhat.com>
6585
6586 * callproc.c (Fcall_process_region): Include directory component
6587 in mkstemp error message (Bug#11586).
6588
6589 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
6590
6591 * alloc.c, lisp.h (make_pure_vector): Now static.
6592
6593 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6594
6595 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
6596 Move to byte-run.el.
6597 (Fautoload): Do the hash-doc more carefully.
6598 * data.c (Fdefalias): Purify definition, except for keymaps.
6599 (Qdefun): Move from eval.c.
6600 * lisp.h (Qdefun): Remove.
6601 * lread.c (read1): Tiny simplification.
6602
6603 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
6604
6605 Do not create empty overlays with the evaporate property (Bug#9642).
6606 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
6607 Bug#9642, but explicitly check that the buffer the overlay would
6608 be moved to is live and rearrange lines to make sure that errors
6609 will not put the overlay in an inconsistent state.
6610 (Fdelete_overlay): Cosmetics.
6611
6612 2012-05-28 Eli Zaretskii <eliz@gnu.org>
6613
6614 * w32term.c (my_bring_window_to_top): New function.
6615 (x_raise_frame): Use handle returned by DeferWindowPos, which
6616 could be different from the original one.
6617 Call my_bring_window_to_top instead of my_set_foreground_window.
6618 (Bug#11513)
6619
6620 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
6621 by calling BringWindowToTop.
6622
6623 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
6624 (WM_EMACS_END): Increase by one.
6625
6626 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
6627
6628 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
6629 This avoids undefined behavior that might cause the eassert
6630 to not catch an out-of-range value.
6631
6632 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
6633
6634 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
6635 Update dependencies.
6636
6637 2012-05-27 Eli Zaretskii <eliz@gnu.org>
6638
6639 * bidi.c (bidi_mirror_char): Fix last change.
6640
6641 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
6642
6643 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
6644 when referring to sectname field in printf format.
6645
6646 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
6647
6648 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
6649 Only r_alloc_inhibit_buffer_relocation needed to be added;
6650 the others were already declared.
6651
6652 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
6653 before checking whether it's out of range. Put the check inside
6654 eassert. See
6655 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
6656
6657 2012-05-27 Ken Brown <kbrown@cornell.edu>
6658
6659 * callproc.c (Fcall_process): Restore a line that was accidentally
6660 commented out in the 2011-02-13 change (bug#11547).
6661
6662 2012-05-27 Eli Zaretskii <eliz@gnu.org>
6663
6664 * lisp.h [REL_ALLOC]: Add prototypes for external functions
6665 defined on ralloc.c.
6666
6667 * buffer.c [REL_ALLOC]: Remove prototypes of
6668 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
6669 they are now on lisp.h.
6670
6671 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
6672
6673 * search.c (search_buffer): Use it to inhibit relocation of buffer
6674 text while re_search_2 is doing its job, because re_search_2 is
6675 passed C pointers to buffer text. (Bug#11519)
6676
6677 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
6678 Update value to 24.
6679
6680 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
6681 state after an additional call to move_it_in_display_line_to, keep
6682 the values of it->max_ascent and it->max_descent found for the
6683 entire line.
6684 (pos_visible_p): Revert the comparison against bottom_y to what it
6685 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
6686 (Bug#11464)
6687
6688 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
6689
6690 Fix coding-related core dumps with gcc -ftrapv.
6691 The code was computing A - B, where A and B are pointers, and B is
6692 random garbage. This can lead to core dumps on platforms that
6693 have special pointer registers, and it also leads to core dumps on
6694 x86-64 when compiled with gcc -ftrapv. The fix is to compute
6695 A - B only when B is initialized properly.
6696 * coding.c (coding_set_source, coding_set_destination): Return void.
6697 (coding_change_source, coding_change_destinations): New functions,
6698 with the old behaviors of coding_set_source and coding_set_destination.
6699 All callers that need an offset changed to use these new functions.
6700
6701 2012-05-26 Glenn Morris <rgm@gnu.org>
6702
6703 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
6704
6705 2012-05-26 Eli Zaretskii <eliz@gnu.org>
6706
6707 Extend mouse support on W32 text-mode console.
6708 * xdisp.c (draw_row_with_mouse_face):
6709 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
6710
6711 * w32console.c: Include window.h.
6712 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
6713 New functions.
6714 (initialize_w32_display): Initialize mouse-highlight data.
6715
6716 * w32inevt.c: Include termchar.h and window.h.
6717 (do_mouse_event): Support mouse-autoselect-window. When the mouse
6718 moves, call note_mouse_highlight. If help_echo changed, call
6719 gen_help_event to produce help-echo message in the echo area.
6720 Call clear_mouse_face if mouse_face_hidden is set in the mouse
6721 highlight info.
6722
6723 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
6724
6725 * lread.c (read1): Simplify slightly to avoid an overflow warning
6726 with GCC 4.7.0 on x86-64.
6727
6728 2012-05-26 Eli Zaretskii <eliz@gnu.org>
6729
6730 * bidi.c (bidi_mirror_char): Revert last change: an int is
6731 definitely wide enough here.
6732
6733 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
6734
6735 Fix integer width and related bugs (Bug#9874).
6736 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
6737 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
6738 (string_bytes, check_sblock, allocate_string_data):
6739 (compact_small_strings, Fmake_bool_vector, make_string)
6740 (make_unibyte_string, make_multibyte_string)
6741 (make_string_from_bytes, make_specified_string)
6742 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
6743 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
6744 (mark_vectorlike):
6745 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6746 (allocate_pseudovector):
6747 Use int, not EMACS_INT, where int is wide enough.
6748 (inhibit_garbage_collection, Fgarbage_collect):
6749 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6750 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
6751 int might not be wide enough.
6752 (bidi_cache_search, bidi_cache_find, bidi_init_it)
6753 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
6754 (bidi_at_paragraph_end, bidi_find_paragraph_start)
6755 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
6756 (bidi_level_of_next_char, bidi_move_to_visually_next):
6757 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6758 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
6759 (Fkill_buffer, Fset_buffer_major_mode)
6760 (advance_to_char_boundary, Fbuffer_swap_text)
6761 (Fset_buffer_multibyte, overlays_at, overlays_in)
6762 (overlay_touches_p, struct sortvec, record_overlay_string)
6763 (overlay_strings, recenter_overlay_lists)
6764 (adjust_overlays_for_insert, adjust_overlays_for_delete)
6765 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
6766 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
6767 (Foverlay_recenter, last_overlay_modification_hooks_used)
6768 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
6769 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6770 (validate_region): Omit unnecessary test for b <= e,
6771 since that's guaranteed by the previous test.
6772 (adjust_overlays_for_delete): Avoid pos + length overflow.
6773 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
6774 (report_overlay_modification):
6775 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6776 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
6777 Omit pointer cast, which isn't needed anyway, and doesn't work
6778 after the EMACS_INT -> ptrdiff_t change.
6779 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
6780 * buffer.h: Adjust decls to match defn changes elsewhere.
6781 (struct buffer_text, struct buffer):
6782 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6783 Use EMACS_INT, not int, where int might not be wide enough.
6784 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
6785 not int, to avoid needless 32-bit limit on 64-bit hosts.
6786 (exec_byte_code): Use tighter memory-full test, one that checks
6787 for alloca overflow. Don't compute the address of the object just
6788 before an array, as that's not portable. Use EMACS_INT, not
6789 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
6790 * callint.c (Fcall_interactively):
6791 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6792 * callproc.c (call_process_kill, Fcall_process):
6793 Don't assume pid_t fits into an Emacs fixnum.
6794 (call_process_cleanup, Fcall_process, child_setup):
6795 Don't assume pid_t fits into int.
6796 (call_process_cleanup, Fcall_process, delete_temp_file)
6797 (Fcall_process_region):
6798 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6799 (Fcall_process): Simplify handling of volatile integers.
6800 Use int, not EMACS_INT, where int will do.
6801 * casefiddle.c (casify_object, casify_region, operate_on_word)
6802 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
6803 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6804 (casify_object): Avoid integer overflow when overallocating buffer.
6805 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
6806 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
6807 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
6808 * category.h (CATEGORYP): Don't assume arg is nonnegative.
6809 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
6810 integers are now checked earlier. All uses replaced with XINT.
6811 (ccl_driver):
6812 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6813 For CCL_MapSingle, check that content and value are in int range.
6814 (ccl_driver, Fregister_code_conversion_map):
6815 Check that Vcode_version_map_vector is a vector.
6816 (resolve_symbol_ccl_program): Check that vector header is in range.
6817 Always copy the vector, so that we can check its contents reliably
6818 now rather than having to recheck each instruction as it's being
6819 executed. Check that vector words fit in 'int'.
6820 (ccl_get_compiled_code, Fregister_ccl_program)
6821 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
6822 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
6823 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
6824 contents are in range.
6825 (Fccl_execute_on_string): Check that status is in range.
6826 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
6827 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
6828 Accept and return EMACS_INT, not int, because callers can pass values
6829 out of 'int' range.
6830 (c_string_width, strwidth, lisp_string_width, chars_in_text)
6831 (multibyte_chars_in_text, parse_str_as_multibyte)
6832 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
6833 (str_as_unibyte, str_to_unibyte, string_count_byte8)
6834 (string_escape_byte8, Fget_byte):
6835 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6836 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
6837 avoid mishandling large integers.
6838 * character.h: Adjust decls to match defn changes elsewhere.
6839 * charset.c (load_charset_map_from_file, find_charsets_in_text)
6840 (Ffind_charset_region):
6841 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6842 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
6843 (load_charset_map_from_vector, Fdefine_charset_internal):
6844 Don't assume fixnum fits in int.
6845 (load_charset_map_from_vector, Fmap_charset_chars):
6846 Remove now-unnecessary CHECK_NATNUMs.
6847 (Fdefine_charset_internal): Check ranges here, more carefully.
6848 Don't rely on undefined behavior with signed left shift overflow.
6849 Don't assume unsigned int fits into fixnum, or that fixnum fits
6850 into unsigned int. Don't require max_code to be a valid fixnum;
6851 that's not true for gb10830 4-byte on a 32-bit host. Allow
6852 invalid_code to be a cons, for the same reason. Require code_offset
6853 to be a character. Avoid int overflow if max_char is close
6854 to INT_MAX.
6855 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
6856 this is intended anyway and avoids some undefined behavior.
6857 (load_charset_map): Pass unsigned, not int, as 2nd arg of
6858 INDEX_TO_CODE_POINT, as that's what it expects.
6859 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
6860 * charset.h (DECODE_CHAR): Return int, not unsigned;
6861 this is what was intended anyway, and it avoids undefined behavior.
6862 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
6863 integer-overflow issues.
6864 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
6865 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
6866 where the argument is EMACS_INT, and this behavior is not intended.
6867 * chartab.c (Fmake_char_table, Fset_char_table_range)
6868 (uniprop_get_decoder, uniprop_get_encoder):
6869 Don't assume fixnum fits in int.
6870 * cmds.c (move_point): New function, that does the gist of
6871 Fforward_char and Fbackward_char, but does so while checking
6872 for integer overflow more accurately.
6873 (Fforward_char, Fbackward_char): Use it.
6874 (Fforward_line, Fend_of_line, internal_self_insert)
6875 (internal_self_insert):
6876 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6877 Fix a FIXME, by checking for integer overflow when calculating
6878 target_clm and actual_clm.
6879 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
6880 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
6881 (ASSURE_DESTINATION, coding_alloc_by_realloc)
6882 (coding_alloc_by_making_gap, alloc_destination)
6883 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
6884 (encode_coding_utf_16, detect_coding_emacs_mule)
6885 (decode_coding_emacs_mule, encode_coding_emacs_mule)
6886 (detect_coding_iso_2022, decode_coding_iso_2022)
6887 (encode_invocation_designation, encode_designation_at_bol)
6888 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
6889 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
6890 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
6891 (encode_coding_ccl, encode_coding_raw_text)
6892 (detect_coding_charset, decode_coding_charset)
6893 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
6894 (produce_composition, produce_charset, produce_annotation)
6895 (decode_coding, handle_composition_annotation)
6896 (handle_charset_annotation, consume_chars, decode_coding_gap)
6897 (decode_coding_object, encode_coding_object, detect_coding_system)
6898 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
6899 (code_convert_region, code_convert_string)
6900 (Fdefine_coding_system_internal)
6901 (coding_set_source, coding_set_destination):
6902 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6903 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
6904 (Fdefine_coding_system_internal):
6905 Don't assume fixnums fit in int.
6906 (decode_coding_gap, decode_coding_object, encode_coding_object)
6907 (Fread_coding_system, Fdetect_coding_region)
6908 (Funencodable_char_position, Fcheck_coding_systems_region)
6909 (get_translation, handle_composition_annotation, consume_chars):
6910 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6911 (consume_chars): Rewrite to not calculate an address outside buffer.
6912 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
6913 Don't access memory outside of the args array.
6914 (Fdefine_coding_system_internal): Check for charset-id overflow.
6915 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
6916 result of ENCODE_CHAR.
6917 * coding.h: Adjust decls to match defn changes elsewhere.
6918 (struct coding_system):
6919 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6920 * composite.c (get_composition_id, find_composition)
6921 (run_composition_function, update_compositions)
6922 (compose_text, composition_gstring_put_cache)
6923 (composition_gstring_p, composition_gstring_width)
6924 (fill_gstring_header, fill_gstring_body, autocmp_chars)
6925 (composition_compute_stop_pos, composition_reseat_it)
6926 (composition_update_it, struct position_record)
6927 (find_automatic_composition, composition_adjust_point)
6928 (Fcomposition_get_gstring, Ffind_composition_internal):
6929 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6930 (update_compositions):
6931 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6932 * composite.h: Adjust decls to match defn changes elsewhere.
6933 (struct composition):
6934 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6935 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
6936 Do not attempt to compute the address of the object just before a
6937 buffer; this is not portable.
6938 (Faref, Faset):
6939 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6940 (Faset): Use int, not EMACS_INT, where int is wide enough.
6941 (Fstring_to_number): Don't assume fixnums fit in int.
6942 (Frem): Don't assume arg is nonnegative.
6943 * dbusbind.c (xd_append_arg): Check for integers out of range.
6944 (Fdbus_call_method): Don't overflow the timeout int.
6945 (extract_signed, extract_unsigned): New functions.
6946 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
6947 (xd_get_connection_references): Return ptrdiff_t, not int.
6948 All uses changed.
6949 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
6950 (xd_read_message_1):
6951 Use int, not unsigned, where the dbus API uses int.
6952 (Fdbus_message_internal): Don't overflow mtype.
6953 (syms_of_dbusbind): Allocate right-sized buffer for integers.
6954 * dired.c (directory_files_internal, file_name_completion, scmp)
6955 (file_name_completion_stat):
6956 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6957 (file_name_completion): Don't overflow matchcount.
6958 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
6959 * dispextern.h: Adjust decls to match defn changes elsewhere.
6960 (struct text_pos, struct glyph, struct bidi_saved_info)
6961 (struct bidi_string_data, struct bidi_it, struct composition_it)
6962 (struct it):
6963 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6964 (struct display_pos, struct composition_it, struct it):
6965 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6966 * dispnew.c (increment_matrix_positions)
6967 (increment_row_positions, mode_line_string)
6968 (marginal_area_string):
6969 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6970 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
6971 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6972 (duration_to_sec_usec): New function, to check for overflow better.
6973 (Fsleep_for, sit_for): Use it.
6974 * doc.c (get_doc_string, store_function_docstring):
6975 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6976 (get_doc_string, Fsnarf_documentation):
6977 Use int, not EMACS_INT, where int is wide enough.
6978 (get_doc_string):
6979 Use SAFE_ALLOCA, not alloca.
6980 Check for overflow when converting EMACS_INT to off_t.
6981 * doprnt.c (doprnt):
6982 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6983 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
6984 Don't assume uid_t fits into fixnum.
6985 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
6986 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
6987 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
6988 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
6989 (general_insert_function)
6990 (Finsert_char, make_buffer_string, make_buffer_string_both)
6991 (update_buffer_properties, Fbuffer_substring)
6992 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
6993 (Fsubst_char_in_region, check_translation)
6994 (Ftranslate_region_internal, save_restriction_restore, Fformat)
6995 (transpose_markers, Ftranspose_regions):
6996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6997 (clip_to_bounds): Move to lisp.h as an inline function).
6998 (Fconstrain_to_field): Don't assume integers are nonnegative.
6999 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
7000 (Fsubst_char_in_region, Fsave_restriction):
7001 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7002 (Femacs_pid): Don't assume pid_t fits into fixnum.
7003 (lo_time): Use int, not EMACS_INT, when int suffices.
7004 (lisp_time_argument): Check for usec out of range.
7005 (Fencode_time): Don't assume fixnum fits in int.
7006 (Fuser_login_name, Fuser_full_name): Signal an error
7007 if a uid argument is out of range, rather than relying on
7008 undefined behavior.
7009 (Fformat_time_string): Remove now-unnecessary check.
7010 lisp_time_argument checks for out-of-range usec now.
7011 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
7012 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
7013 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
7014 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
7015 (init_cmdargs, Fdump_emacs):
7016 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7017 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
7018 the bottom (typically) 32 bits of the fixnum.
7019 * eval.c (specpdl_size, call_debugger):
7020 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7021 (when_entered_debugger, Fbacktrace_debug):
7022 Don't assume fixnum can fit in int.
7023 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
7024 the object just before a buffer; this is not portable.
7025 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
7026 (grow_specpdl, unbind_to):
7027 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7028 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
7029 (grow_specpdl): Simplify allocation by using xpalloc.
7030 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
7031 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
7032 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
7033 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7034 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
7035 (a_write, e_write):
7036 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7037 (Fcopy_file, non_regular_nbytes, read_non_regular)
7038 (Finsert_file_contents):
7039 Use int, not EMACS_INT, where int is wide enough.
7040 (READ_BUF_SIZE): Verify that it fits in int.
7041 (Finsert_file_contents): Check that counts are in proper range,
7042 rather than assuming fixnums fit into ptrdiff_t etc.
7043 Don't assume fixnums fit into int.
7044 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
7045 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
7046 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
7047 (string_char_to_byte, string_byte_to_char)
7048 (string_make_multibyte, string_to_multibyte)
7049 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7050 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
7051 (substring_both, Fdelete, internal_equal, Ffillarray)
7052 (Fclear_string, mapcar1)
7053 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
7054 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
7055 (larger_vector, make_hash_table, maybe_resize_hash_table)
7056 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
7057 (Fmaphash, secure_hash):
7058 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7059 (concat): Check for string index and length overflow.
7060 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
7061 (Frequire):
7062 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7063 (larger_vector): New API (vec, incr_min, size_max) replaces old
7064 one (vec, new_size, init). This catches size overflow.
7065 INIT was removed because it was always Qnil.
7066 All callers changed.
7067 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
7068 the upper bound on a hash table index size.
7069 (make_hash_table, maybe_resize_hash_table): Use it.
7070 (secure_hash): Computer start_byte and end_byte only after
7071 they're known to be in ptrdiff_t range.
7072 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
7073 (Ffont_get_glyphs, Ffont_at):
7074 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7075 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
7076 (Flist_fonts, Fopen_font):
7077 Don't assume fixnum can fit in int.
7078 (check_gstring): Don't assume index can fit in int.
7079 (font_match_p): Check that fixnum is a character, not a nonnegative
7080 fixnum, since the later code needs to stuff it into an int.
7081 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
7082 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
7083 conversion overflow issues.
7084 (Fopen_font): Check for integer out of range.
7085 (Ffont_get_glyphs): Don't assume index can fit in int.
7086 * font.h: Adjust decls to match defn changes elsewhere.
7087 * fontset.c (reorder_font_vector): Redo score calculation to avoid
7088 integer overflow.
7089 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
7090 printmax_t, where ptrdiff_t is wide enough.
7091 (Finternal_char_font):
7092 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7093 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
7094 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
7095 (Fset_frame_position, x_set_frame_parameters)
7096 (x_set_line_spacing, x_set_border_width)
7097 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
7098 Check that fixnums are in proper range for system types.
7099 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
7100 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7101 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
7102 Use SAFE_ALLOCA_LISP, not alloca.
7103 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
7104 intptr_t is wide enough.
7105 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
7106 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
7107 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
7108 Check for fixnum out of range.
7109 * ftfont.c (ftfont_list): Don't assume index fits in int.
7110 Check that fixnums are in proper range for system types.
7111 (ftfont_shape_by_flt):
7112 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7113 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
7114 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7115 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
7116 Check that fixnums are in proper range for system types.
7117 * gnutls.h: Adjust decls to match defn changes elsewhere.
7118 * gtkutil.c (xg_dialog_run):
7119 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7120 (update_frame_tool_bar):
7121 Check that fixnums are in proper range for system types.
7122 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
7123 (lookup_image): Check that fixnums are in range for system types.
7124 * indent.c (last_known_column, last_known_column_point):
7125 (current_column_bol_cache):
7126 (skip_invisible, current_column, check_display_width):
7127 (check_display_width, scan_for_column, current_column_1)
7128 (Findent_to, Fcurrent_indentation, position_indentation)
7129 (indented_beyond_p, Fmove_to_column, compute_motion):
7130 (Fcompute_motion, Fvertical_motion):
7131 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7132 (last_known_column_modified): Use EMACS_INT, not int.
7133 (check_display_width):
7134 (Fcompute_motion):
7135 Check that fixnums and floats are in proper range for system types.
7136 (compute_motion): Don't assume index or fixnum fits in int.
7137 (compute_motion, Fcompute_motion):
7138 Use int, not EMACS_INT, when it is wide enough.
7139 (vmotion): Omit local var start_hpos that is always 0; that way
7140 we don't need to worry about overflow in expressions involving it.
7141 * indent.h: Adjust decls to match defn changes elsewhere.
7142 (struct position):
7143 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7144 Use int, not EMACS_INT, where int is wide enough.
7145 Remove unused members ovstring_chars_done and tab_offset;
7146 all uses removed.
7147 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
7148 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
7149 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
7150 (make_gap, copy_text, insert, insert_and_inherit)
7151 (insert_before_markers, insert_before_markers_and_inherit)
7152 (insert_1, count_combining_before, count_combining_after)
7153 (insert_1_both, insert_from_string)
7154 (insert_from_string_before_markers, insert_from_string_1)
7155 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
7156 (adjust_after_replace, adjust_after_insert, replace_range)
7157 (replace_range_2, del_range, del_range_1, del_range_byte)
7158 (del_range_both, del_range_2, modify_region)
7159 (prepare_to_modify_buffer, signal_before_change)
7160 (signal_after_change, Fcombine_after_change_execute):
7161 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7162 * intervals.c (traverse_intervals, rotate_right, rotate_left)
7163 (balance_an_interval, split_interval_right, split_interval_left)
7164 (find_interval, next_interval, update_interval)
7165 (adjust_intervals_for_insertion, delete_node, delete_interval)
7166 (interval_deletion_adjustment, adjust_intervals_for_deletion)
7167 (static_offset_intervals, offset_intervals)
7168 (merge_interval_right, merge_interval_left, make_new_interval)
7169 (graft_intervals_into_buffer, temp_set_point_both)
7170 (temp_set_point, set_point, adjust_for_invis_intang)
7171 (set_point_both, move_if_not_intangible, get_property_and_range)
7172 (get_local_map, copy_intervals, copy_intervals_to_string)
7173 (compare_string_intervals, set_intervals_multibyte_1):
7174 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7175 * intervals.h: Adjust decls to match defn changes elsewhere.
7176 (struct interval):
7177 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7178 * keyboard.c (this_command_key_count, this_single_command_key_start)
7179 (before_command_key_count, before_command_echo_length, echo_now)
7180 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
7181 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
7182 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
7183 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
7184 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7185 (last_non_minibuf_size, last_point_position, echo_truncate)
7186 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
7187 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
7188 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
7189 (stuff_buffered_input):
7190 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7191 (last_auto_save, command_loop_1, read_char):
7192 Use EMACS_INT, not int, to avoid integer overflow.
7193 (record_char): Avoid overflow in total_keys computation.
7194 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
7195 * keyboard.h: Adjust decls to match defn changes elsewhere.
7196 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
7197 (Fkey_description, Fdescribe_vector, Flookup_key):
7198 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7199 (click_position): New function, to check that positions are in range.
7200 (Fcurrent_active_maps):
7201 (describe_command):
7202 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7203 (Faccessible_keymaps, Fkey_description):
7204 (preferred_sequence_p):
7205 Don't assume fixnum can fit into int.
7206 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
7207 Check for integer overflow in size calculations.
7208 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
7209 avoid mishandling large integers.
7210 * lisp.h: Adjust decls to match defn changes elsewhere.
7211 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
7212 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
7213 (struct Lisp_Marker):
7214 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7215 (clip_to_bounds): Now an inline function, moved here from editfns.c.
7216 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
7217 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
7218 All callers changed.
7219 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
7220 Assume the arg has valid form, since it always does.
7221 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
7222 unsigned integer system type.
7223 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
7224 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
7225 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7226 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
7227 (duration_to_sec_usec): New decl.
7228 * lread.c (read_from_string_index, read_from_string_index_byte)
7229 (read_from_string_limit, readchar, unreadchar, openp)
7230 (read_internal_start, read1, oblookup):
7231 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7232 (Fload, readevalloop, Feval_buffer, Feval_region):
7233 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7234 (openp): Check for out-of-range argument to 'access'.
7235 (read1): Use int, not EMACS_INT, where int is wide enough.
7236 Don't assume fixnum fits into int.
7237 Fix off-by-one error that can read outside a buffer.
7238 (read_filtered_event): Use duration_to_sec_usec
7239 to do proper overflow checking on durations.
7240 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
7241 in size calculation.
7242 (Fexecute_kbd_macro):
7243 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7244 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
7245 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
7246 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
7247 (set_marker_both, set_marker_restricted_both, marker_position)
7248 (marker_byte_position, Fbuffer_has_markers_at):
7249 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7250 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
7251 * menu.c (ensure_menu_items): Rename from grow_menu_items.
7252 It now merely ensures that the menu is large enough, without
7253 necessarily growing it, as this avoids some integer overflow issues.
7254 All callers changed.
7255 (keymap_panes, parse_single_submenu, Fx_popup_menu):
7256 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7257 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
7258 Use SAFE_ALLOCA_LISP, not alloca.
7259 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
7260 to EMACS_INT. Check that fixnums are in proper range for system types.
7261 * minibuf.c (minibuf_prompt_width, string_to_object)
7262 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
7263 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
7264 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7265 (get_minibuffer, read_minibuf_unwind):
7266 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7267 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
7268 this simplifies overflow checking. All callers changed.
7269 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
7270 (Ftest_completion):
7271 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7272 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
7273 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
7274 Check that fixnums are in proper range for system types.
7275 (Fx_create_frame, Fx_show_tip):
7276 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7277 * nsfont.m (ns_findfonts, nsfont_list_family):
7278 Don't assume fixnum fits in long.
7279 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
7280 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7281 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
7282 wide enough.
7283 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
7284 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7285 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
7286 (PRINTDECLARE, PRINTPREPARE):
7287 (strout, print_string):
7288 (print, print_preprocess, print_check_string_charset_prop)
7289 (print_object):
7290 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7291 (PRINTDECLARE):
7292 (temp_output_buffer_setup, Fprin1_to_string, print_object):
7293 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7294 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
7295 (printchar, strout): Use xpalloc to catch size calculation overflow.
7296 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
7297 (print_error_message): Use SAFE_ALLOCA, not alloca.
7298 (print_object): Use int, not EMACS_INT, where int is wide enough.
7299 (print_depth, new_backquote_output, print_number_index):
7300 Use ptrdiff_t, not int, where int might not be wide enough.
7301 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
7302 (Fset_process_window_size, Fformat_network_address)
7303 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
7304 (sigchld_handler):
7305 Check that fixnums are in proper range for system types.
7306 (Fsignal_process): Simplify by avoiding a goto.
7307 Check for process-ids out of pid_t range rather than relying on
7308 undefined behavior.
7309 (process_tick, update_tick): Use EMACS_INT, not int.
7310 (Fformat_network_address, read_process_output, send_process)
7311 (Fprocess_send_region, status_notify):
7312 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7313 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
7314 (wait_reading_process_output, read_process_output, exec_sentinel):
7315 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7316 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
7317 (Faccept_process_output): Use duration_to_sec_usec to do proper
7318 overflow checking on durations.
7319 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
7320 Don't assume pid_t fits in int.
7321 * process.h (struct Lisp_Process): Members tick and update_tick
7322 are now of type EMACS_INT, not int.
7323 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
7324 configured --with-wide-int.
7325 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7326 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
7327 * search.c (looking_at_1, string_match_1):
7328 (fast_string_match, fast_c_string_match_ignore_case)
7329 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
7330 (scan_newline, find_before_next_newline, search_command)
7331 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
7332 (set_search_regs, wordify):
7333 (Freplace_match):
7334 (Fmatch_data):
7335 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7336 (string_match_1, search_buffer, set_search_regs):
7337 (Fmatch_data):
7338 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7339 (wordify): Check for overflow in size calculation.
7340 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
7341 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
7342 Check that fixnums are in proper range for system types.
7343 * sound.c (struct sound_device)
7344 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
7345 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7346 (Fplay_sound_internal):
7347 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7348 * syntax.c (struct lisp_parse_state, find_start_modiff)
7349 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
7350 (Fparse_partial_sexp):
7351 Don't assume fixnums can fit in int.
7352 (struct lisp_parse_state, find_start_pos, find_start_value)
7353 (find_start_value_byte, find_start_begv)
7354 (update_syntax_table, char_quoted, dec_bytepos)
7355 (find_defun_start, prev_char_comend_first, back_comment):
7356 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
7357 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
7358 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7359 (Finternal_describe_syntax_value): Check that match_lisp is a
7360 character, not an integer, since the code stuffs it into int.
7361 (scan_words, scan_sexps_forward):
7362 Check that fixnums are in proper range for system types.
7363 (Fforward_word):
7364 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7365 (scan_sexps_forward):
7366 Use CHARACTERP, not INTEGERP, since the value must fit into int.
7367 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
7368 * syntax.h: Adjust decls to match defn changes elsewhere.
7369 (struct gl_state_s):
7370 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7371 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
7372 MOST_POSITIVE_FIXNUM.
7373 * sysdep.c (wait_for_termination_1, wait_for_termination)
7374 (interruptible_wait_for_termination, mkdir):
7375 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
7376 (emacs_read, emacs_write):
7377 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7378 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
7379 and double all fit in int.
7380 * term.c (set_tty_color_mode):
7381 Check that fixnums are in proper range for system types.
7382 * termhooks.h (struct input_event):
7383 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7384 * textprop.c (validate_interval_range, interval_of)
7385 (Fadd_text_properties, set_text_properties_1)
7386 (Fremove_text_properties, Fremove_list_of_text_properties)
7387 (Ftext_property_any, Ftext_property_not_all)
7388 (copy_text_properties, text_property_list, extend_property_ranges)
7389 (verify_interval_modification):
7390 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7391 (Fnext_single_char_property_change)
7392 (Fprevious_single_char_property_change):
7393 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7394 (copy_text_properties):
7395 Check for integer overflow in index calculation.
7396 * undo.c (last_boundary_position, record_point, record_insert)
7397 (record_delete, record_marker_adjustment, record_change)
7398 (record_property_change):
7399 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7400 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
7401 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7402 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
7403 (Fx_hide_tip, Fx_file_dialog):
7404 * w32menu.c (set_frame_menubar):
7405 Use ptrdiff_t, not int, for consistency with rest of code.
7406 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
7407 (select_window, Fdelete_other_windows_internal)
7408 (window_scroll_pixel_based, window_scroll_line_based)
7409 (Frecenter, Fset_window_configuration):
7410 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7411 (Fset_window_hscroll, run_window_configuration_change_hook)
7412 (set_window_buffer, temp_output_buffer_show, scroll_command)
7413 (Fscroll_other_window, Frecenter):
7414 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7415 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
7416 Don't assume fixnum fits in int.
7417 (Fset_window_scroll_bars):
7418 Check that fixnums are in proper range for system types.
7419 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
7420 (string_pos, c_string_pos, number_of_chars, init_iterator)
7421 (in_ellipses_for_invisible_text_p, init_from_display_pos)
7422 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
7423 (compute_display_string_end, handle_face_prop)
7424 (face_before_or_after_it_pos, handle_invisible_prop)
7425 (handle_display_prop, handle_display_spec, handle_single_display_spec)
7426 (display_prop_intangible_p, string_buffer_position_lim)
7427 (string_buffer_position, handle_composition_prop, load_overlay_strings)
7428 (get_overlay_strings_1, get_overlay_strings)
7429 (iterate_out_of_display_property, forward_to_next_line_start)
7430 (back_to_previous_visible_line_start, reseat, reseat_to_string)
7431 (get_next_display_element, set_iterator_to_next)
7432 (get_visually_first_element, compute_stop_pos_backwards)
7433 (handle_stop_backwards, next_element_from_buffer)
7434 (move_it_in_display_line_to, move_it_in_display_line)
7435 (move_it_to, move_it_vertically_backward, move_it_by_lines)
7436 (add_to_log, message_dolog, message_log_check_duplicate)
7437 (message2, message2_nolog, message3, message3_nolog
7438 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
7439 (current_message_1, truncate_echo_area, truncate_message_1)
7440 (set_message, set_message_1, store_mode_line_noprop)
7441 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
7442 (text_outside_line_unchanged_p, check_point_in_composition)
7443 (reconsider_clip_changes)
7444 (redisplay_internal, set_cursor_from_row, try_scrolling)
7445 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
7446 (redisplay_window, find_last_unchanged_at_beg_row)
7447 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
7448 (trailing_whitespace_p, find_row_edges, display_line)
7449 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
7450 (display_mode_element, store_mode_line_string)
7451 (pint2str, pint2hrstr, decode_mode_spec)
7452 (display_count_lines, display_string, draw_glyphs)
7453 (x_produce_glyphs, x_insert_glyphs)
7454 (rows_from_pos_range, mouse_face_from_buffer_pos)
7455 (fast_find_string_pos, mouse_face_from_string_pos)
7456 (note_mode_line_or_margin_highlight, note_mouse_highlight):
7457 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7458 (safe_call, init_from_display_pos, handle_fontified_prop)
7459 (handle_single_display_spec, load_overlay_strings)
7460 (with_echo_area_buffer, setup_echo_area_for_printing)
7461 (display_echo_area, echo_area_display)
7462 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
7463 (update_tool_bar, hscroll_window_tree, redisplay_internal)
7464 (redisplay_window, dump_glyph_row, display_mode_line)
7465 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
7466 (handle_display_spec, display_prop_string_p):
7467 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7468 (handle_single_display_spec, build_desired_tool_bar_string)
7469 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
7470 (get_specified_cursor_type):
7471 Check that fixnums are in proper range for system types.
7472 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
7473 (Flookup_image_map):
7474 Don't assume fixnums fit in int.
7475 (compare_overlay_entries):
7476 Avoid mishandling comparisons due to subtraction overflow.
7477 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
7478 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
7479 (handle_tool_bar_click):
7480 Use int, not unsigned, since we prefer signed and the signedness
7481 doesn't matter here.
7482 (get_next_display_element, next_element_from_display_vector):
7483 Use int, not EMACS_INT, when int is wide enough.
7484 (start_hourglass): Use duration_to_sec_usec to do proper
7485 overflow checking on durations.
7486 * xfaces.c (Fbitmap_spec_p):
7487 Check that fixnums are in proper range for system types.
7488 (compare_fonts_by_sort_order):
7489 Avoid mishandling comparisons due to subtraction overflow.
7490 (Fx_family_fonts, realize_basic_faces):
7491 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7492 (Fx_family_fonts):
7493 Don't assume fixnum fits in int.
7494 Use SAFE_ALLOCA_LISP, not alloca.
7495 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
7496 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
7497 (face_at_buffer_position, face_for_overlay_string)
7498 (face_at_string_position):
7499 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7500 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
7501 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
7502 (Fx_show_tip):
7503 Check that fixnums are in proper range for system types.
7504 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
7505 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
7506 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7507 (Fx_change_window_property): Don't assume fixnums fit in int.
7508 * xfont.c (xfont_chars_supported):
7509 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7510 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
7511 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
7512 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7513 * xml.c (parse_region):
7514 * xrdb.c (magic_file_p):
7515 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7516 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
7517 (x_get_local_selection, x_reply_selection_request)
7518 (x_handle_selection_request, wait_for_property_change):
7519 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7520 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
7521 short is wide enough.
7522 (x_send_client_event): Don't assume fixnum fits in int.
7523 * xterm.c (x_x_to_emacs_modifiers):
7524 Don't assume EMACS_INT overflows nicely into int.
7525 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
7526 may come from Lisp.
7527 (handle_one_xevent): NATNUMP can eval its arg twice.
7528 (x_connection_closed):
7529 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7530 * xterm.h: Adjust decls to match defn changes elsewhere.
7531 (struct scroll_bar): Use struct vectorlike_header
7532 rather than rolling our own approximation.
7533 (SCROLL_BAR_VEC_SIZE): Remove; not used.
7534
7535 2012-05-25 Glenn Morris <rgm@gnu.org>
7536
7537 * lisp.mk (lisp): Update for more files being compiled now.
7538
7539 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7540
7541 * lread.c: Remove `read_pure' which makes no difference.
7542 (read_pure): Remove var.
7543 (unreadpure): Remove function.
7544 (readevalloop): Don't call read_list with -1 flag.
7545 (read1, read_vector): Don't test read_pure any more.
7546 (read_list): Simplify.
7547
7548 * fileio.c, character.h: Minor style tweaks.
7549
7550 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
7551
7552 * window.h (clip_changed): Remove useless declaration.
7553
7554 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
7555
7556 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
7557 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
7558
7559 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
7560
7561 Remove src/m/*.
7562 This directory predates autoconf and is no longer needed nowadays.
7563 Move its few remaining bits of functionality to where they're needed.
7564 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
7565 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
7566 * m/template.h: Remove.
7567 * Makefile.in (M_FILE): Remove. All uses removed.
7568 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
7569 * lisp.h (USE_LSB_TAG):
7570 * mem-limits.h (EXCEEDS_LISP_PTR):
7571 Use VAL_MAX, not VALBITS, in #if.
7572 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
7573 (EMACS_UINT): Define unconditionally now.
7574 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
7575 (BITS_PER_EMACS_INT): New constants, replacing
7576 what used to be in config.h, but not useful in #if.
7577 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
7578 define them any more.
7579 (VAL_MAX): New macro.
7580 (VALMASK): Use it.
7581 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
7582 BITS_PER_EMACS_INT, in #if.
7583 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
7584 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
7585 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
7586 * s/ms-w32.h (DATA_START):
7587 Move here from removed file m/intel386.h.
7588 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
7589 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
7590
7591 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
7592
7593 Assume C89 or later.
7594 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
7595 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
7596 (xrealloc):
7597 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
7598 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
7599 * textprop.c, tparam.c (NULL): Remove.
7600 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
7601 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
7602 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
7603 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
7604 * xterm.c (input_signal_count): Assume volatile works.
7605
7606 2012-05-21 Ken Brown <kbrown@cornell.edu>
7607
7608 * xgselect.c (xg_select): Fix first argument in call to 'select'
7609 (bug#11508).
7610
7611 2012-05-20 Ken Brown <kbrown@cornell.edu>
7612
7613 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
7614 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
7615
7616 2012-05-19 Ken Brown <kbrown@cornell.edu>
7617
7618 * xfns.c (x_in_use): Remove `static' qualifier.
7619 * xterm.h (x_in_use): Declare.
7620 * xgselect.c: Include xterm.h.
7621 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
7622 and `display_arg' (bug#9754).
7623
7624 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
7625
7626 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
7627
7628 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
7629 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
7630
7631 2012-05-18 Eli Zaretskii <eliz@gnu.org>
7632
7633 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
7634
7635 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
7636 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
7637
7638 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
7639 reference to image_cache->refcount.
7640 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
7641
7642 2012-05-17 Juri Linkov <juri@jurta.org>
7643
7644 * search.c (Fword_search_regexp, Fword_search_backward)
7645 (Fword_search_forward, Fword_search_backward_lax)
7646 (Fword_search_forward_lax): Move functions to isearch.el
7647 (bug#10145, bug#11381).
7648
7649 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
7650
7651 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
7652
7653 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7654
7655 * lread.c (init_obarray): Declare Qt and Qnil as special.
7656
7657 2012-05-14 Glenn Morris <rgm@gnu.org>
7658
7659 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
7660 Put "libexec" before "bin", for the sake of init_callproc_1.
7661
7662 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
7663
7664 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
7665
7666 * unexaix.c: Port to more-recent AIX compilers.
7667 (report_error, report_error_1, make_hdr, copy_sym)
7668 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
7669 Make arguments const char *, not char *, to avoid violations of C
7670 standard and to fix some AIX warnings reported by Gilles Pion.
7671
7672 2012-05-14 Eli Zaretskii <eliz@gnu.org>
7673
7674 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
7675 already have overlays loaded.
7676 (handle_single_display_spec): Before returning without displaying
7677 fringe bitmap, synchronize the bidi iterator with the main display
7678 iterator, by calling iterate_out_of_display_property.
7679 (iterate_out_of_display_property): Detect buffer iteration by
7680 testing that it->string is a Lisp string.
7681 (get_next_display_element): When the current object is exhausted,
7682 and there's something on it->stack, call set_iterator_to_next to
7683 proceed with what's on the stack, instead of returning zero.
7684 (set_iterator_to_next): If called at the end of a Lisp string,
7685 proceed to consider_string_end without incrementing string
7686 position. Don't increment display vector index past the end of
7687 the display vector. (Bug#11417)
7688 (pos_visible_p): Don't report a position visible when move_it_to
7689 stopped at the last line of window, which happens to be scanned
7690 backwards by the bidi iteration. (Bug#11464)
7691
7692 2012-05-14 Eli Zaretskii <eliz@gnu.org>
7693
7694 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
7695 and right-margin display specs even if the spec is invalid or we
7696 are on a TTY, and thus unable to display on the fringes.
7697 That's because the text with the property will not be displayed anyway,
7698 so we need to signal to the caller that this is a "replacing"
7699 display spec. This fixes display when the spec is invalid or we
7700 are on a TTY.
7701
7702 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
7703
7704 * unexaix.c (make_hdr): Fix typo in prototype.
7705 This bug broke the build on AIX. Problem reported by Gilles Pion.
7706
7707 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
7708
7709 * keyboard.c (kbd_buffer_get_event): Read special events also in
7710 batch mode. (Bug#11415)
7711
7712 2012-05-12 Glenn Morris <rgm@gnu.org>
7713
7714 * ns.mk: Update for ns_appbindir no longer having trailing "/".
7715
7716 2012-05-12 Eli Zaretskii <eliz@gnu.org>
7717
7718 * lisp.mk (lisp): Add newcomment.elc.
7719
7720 2012-05-12 Glenn Morris <rgm@gnu.org>
7721
7722 * Makefile.in (MKDIR_P): New, set by configure.
7723 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
7724
7725 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
7726
7727 Remove unused function hourglass_started.
7728 * dispextern.h (hourglass_started):
7729 * w32fns.c (hourglass_started):
7730 * xdisp.c (hourglass_started): Remove.
7731
7732 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
7733
7734 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
7735 Update dependencies.
7736
7737 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
7738
7739 * xgselect.c (xg_select): Put maxfds+1 into a var.
7740 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
7741
7742 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
7743
7744 2012-05-10 Dave Abrahams <dave@boostpro.com>
7745
7746 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
7747 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
7748
7749 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
7750
7751 * dbusbind.c (xd_registered_buses): New internal Lisp object.
7752 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
7753 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
7754 Initialize xd_registered_buses.
7755
7756 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
7757
7758 Untag more efficiently if USE_LSB_TAG.
7759 This is based on a proposal by YAMAMOTO Mitsuharu in
7760 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
7761 For an admittedly artificial (nth 8000 longlist) benchmark on
7762 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
7763 Emacs's overall text size by 1%.
7764 * lisp.h (XUNTAG): New macro.
7765 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
7766 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
7767 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
7768 * eval.c (Fautoload):
7769 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
7770 * frame.h (XFRAME): Use XUNTAG.
7771
7772 Port recent dbusbind.c changes to 32-bit --with-wide-int.
7773 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
7774 Remove unportable assumptions about print widths of types like
7775 dbus_uint32_t.
7776 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
7777 intptr_t when converting between pointer and integer, to avoid GCC
7778 warnings about wrong width.
7779
7780 2012-05-09 Eli Zaretskii <eliz@gnu.org>
7781
7782 * w32proc.c (new_child): Force Windows to reserve only 64KB of
7783 stack for each reader_thread, instead of defaulting to 8MB
7784 determined by the linker. This avoids failures in creating
7785 subprocesses on Windows 7, see the discussion in this thread:
7786 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
7787
7788 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
7789
7790 Fix up display of the *Minibuf-0* buffer in the mini window.
7791 * keyboard.c (read_char): Don't clear the echo area if there's no
7792 message to clear.
7793 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
7794 contents of *Minibuf-0*) if there's no message displayed in its stead.
7795
7796 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
7797
7798 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
7799 batch mode.
7800
7801 2012-05-06 Chong Yidong <cyd@gnu.org>
7802
7803 * lisp.mk (lisp): Update.
7804
7805 2012-05-05 Jim Meyering <meyering@redhat.com>
7806
7807 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
7808
7809 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7810
7811 * data.c (PUT_ERROR): New macro.
7812 (syms_of_data): Use it. Add new error type `user-error'.
7813 * undo.c (user_error): New function.
7814 (Fprimitive_undo): Use it.
7815 * print.c (print_error_message): Adjust print style for `user-error'.
7816 * keyboard.c (user_error): New function.
7817 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
7818
7819 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
7820
7821 Do not limit current-time-string to years 1000..9999.
7822 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
7823 (Fcurrent_time_string): Support any year that is supported by the
7824 underlying localtime representation. Don't use asctime, as it
7825 has undefined behavior for years outside the range -999..9999.
7826
7827 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
7828
7829 Fix race conditions involving setenv, gmtime, localtime, asctime.
7830 Without this fix, interrupts could mess up code that uses these
7831 nonreentrant functions, since setting TZ invalidates existing
7832 tm_zone or tzname values, and since most of these functions return
7833 pointers to static storage.
7834 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
7835 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
7836 Grow the critical sections to include not just invoking
7837 localtime/gmtime, but also accessing these functions' results
7838 including their tm_zone values if any, and any related TZ setting.
7839 (format_time_string): Last arg is now struct tm *, not struct tm **,
7840 so that the struct tm is saved in the critical section.
7841 All callers changed. Simplify allocation of initial buffer, partly
7842 motivated by the fact that memory allocation needs to be outside
7843 the critical section.
7844
7845 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
7846
7847 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
7848 with RESET_INTERVAL.
7849
7850 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
7851 Remove duplicated buffer name initialization.
7852
7853 2012-05-02 Jim Meyering <jim@meyering.net>
7854
7855 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
7856
7857 * xfns.c (x_window): Use xstrdup (Bug#11375).
7858
7859 2012-05-02 Eli Zaretskii <eliz@gnu.org>
7860
7861 * xdisp.c (pos_visible_p): If already at a newline from the
7862 display string before the 'while' loop, don't walk back the glyphs
7863 from it3.glyph_row. Solves assertion violation when the display
7864 string begins with a newline (egg.el). (Bug#11367)
7865
7866 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
7867
7868 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
7869 Move to simple.el.
7870
7871 2012-05-01 Glenn Morris <rgm@gnu.org>
7872
7873 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
7874 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
7875 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
7876 All were removed before 23.1.
7877
7878 * dispnew.c: Remove HAVE_LIBNCURSES test;
7879 it is always true on relevant platforms.
7880
7881 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
7882 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
7883
7884 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
7885
7886 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
7887
7888 * .gdbinit (xpr): Remove checks for no longer existing misc types.
7889 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
7890 Remove.
7891
7892 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
7893
7894 Do not avoid creating empty evaporating overlays (Bug#9642).
7895 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
7896 That is, do not delete an evaporating overlay if it becomes
7897 empty after its bounds are adjusted to fit within its buffer.
7898 This fix caused other problems, and I'm reverting it until we get
7899 to the bottom of them.
7900
7901 2012-04-27 Chong Yidong <cyd@gnu.org>
7902
7903 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
7904
7905 2012-04-27 Eli Zaretskii <eliz@gnu.org>
7906
7907 * xdisp.c (pos_visible_p): If the window start position is beyond
7908 ZV, start the display from buffer beginning. Prevents assertion
7909 violation in init_iterator when the minibuffer window is scrolled
7910 via the scroll bar.
7911
7912 * window.c (window_scroll_pixel_based): Likewise.
7913
7914 2012-04-27 Chong Yidong <cyd@gnu.org>
7915
7916 * keymap.c (where_is_internal): Doc fix (Bug#10872).
7917
7918 2012-04-27 Glenn Morris <rgm@gnu.org>
7919
7920 * fileio.c (Fcopy_file, Fset_file_selinux_context):
7921 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
7922
7923 2012-04-27 Eli Zaretskii <eliz@gnu.org>
7924
7925 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
7926 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
7927
7928 2012-04-26 Eli Zaretskii <eliz@gnu.org>
7929
7930 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
7931 display element, check also the underlying string or buffer
7932 character. (Bug#11341)
7933
7934 * w32menu.c: Include w32heap.h.
7935 (add_menu_item): If the call to AppendMenuW (via
7936 unicode_append_menu) fails, disable Unicode menus only if we are
7937 running on Windows 9X/Me.
7938
7939 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
7940
7941 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
7942 (xgetint): Add missing shift for LSB tags.
7943
7944 2012-04-24 Martin Rudalics <rudalics@gmx.at>
7945
7946 * keyboard.c (read_char): Don't wipe echo area for select window
7947 events: These might get delayed via `mouse-autoselect-window'
7948 (Bug#11304).
7949
7950 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
7951
7952 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
7953 manipulation of :loaded-from data.
7954
7955 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
7956
7957 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
7958 now a cons (bug#11311).
7959
7960 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
7961
7962 Do not create empty overlays with the evaporate property (Bug#9642).
7963 * buffer.c (Fmove_overlay): Delete an evaporating overlay
7964 if it becomes empty after its bounds are adjusted to fit within
7965 its buffer. Without this fix, in a nonempty buffer (let ((o
7966 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
7967 yields an empty overlay that has the evaporate property, which is
7968 not supposed to happen.
7969
7970 Fix minor GTK3 problems found by static checking.
7971 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7972 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7973 (struct _EmacsFixedClass, emacs_fixed_get_type):
7974 Move decls here from emacsgtkfixed.h, since they needn't be public.
7975 (emacs_fixed_get_type): Now static.
7976 (emacs_fixed_class_init): Omit unused local.
7977 (emacs_fixed_child_type): Remove; unused.
7978 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7979 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7980 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
7981 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
7982 (EMACS_FIXED_GET_CLASS): Remove; unused.
7983 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
7984
7985 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
7986 Problem reported by Juanma Barranquero for Windows -Wunused-function.
7987
7988 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
7989
7990 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
7991 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
7992 (__malloc_size_t, __malloc_ptrdiff_t):
7993 Remove. All uses removed, replaced by the definiens if needed,
7994 since we can assume C89 or better now.
7995 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
7996 (protect_malloc_state, align, get_contiguous_space)
7997 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
7998 (malloc_atfork_handler_child, malloc_enable_thread)
7999 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
8000 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
8001 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
8002 (special_realloc, _realloc_internal_nolock, _realloc_internal)
8003 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
8004 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
8005 Define using prototypes, not old style.
8006 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
8007 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
8008 (align): Don't assume that signed integer overflow wraps around.
8009 Omit unused local var.
8010 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
8011 (_free_internal_nolock, memalign, mallochook, reallochook):
8012 Omit no-longer-needed casts.
8013 (valloc): Use getpagesize, not __getpagesize.
8014 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
8015 (struct hdr): The 'magic' member is now size_t, not unsigned long.
8016
8017 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
8018
8019 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
8020
8021 Move functions from C to Lisp. Make non-blocking method calls
8022 the default. Implement further D-Bus standard interfaces.
8023
8024 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
8025 (QCdbus_request_name_allow_replacement)
8026 (QCdbus_request_name_replace_existing)
8027 (QCdbus_request_name_do_not_queue)
8028 (QCdbus_request_name_reply_primary_owner)
8029 (QCdbus_request_name_reply_in_queue)
8030 (QCdbus_request_name_reply_exists)
8031 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
8032 (QCdbus_registered_serial, QCdbus_registered_method)
8033 (QCdbus_registered_signal): New Lisp objects.
8034 (XD_DEBUG_MESSAGE): Use sizeof.
8035 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
8036 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
8037 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
8038 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
8039 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
8040 (xd_signature, xd_append_arg): Allow float for integer types.
8041 (xd_get_connection_references): New function.
8042 (xd_get_connection_address): Rename from xd_initialize.
8043 Return cached address.
8044 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
8045 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
8046 level.
8047 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
8048 Return number of refcounts.
8049 (Fdbus_get_unique_name): Make stronger parameter check.
8050 (Fdbus_message_internal): New defun.
8051 (Fdbus_call_method, Fdbus_call_method_asynchronously)
8052 (Fdbus_method_return_internal, Fdbus_method_error_internal)
8053 (Fdbus_send_signal, Fdbus_register_service)
8054 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
8055 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
8056 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
8057 (Vdbus_compiled_version, Vdbus_runtime_version)
8058 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
8059 (Vdbus_message_type_method_return, Vdbus_message_type_error)
8060 (Vdbus_message_type_signal): New defvars.
8061 (Vdbus_registered_buses, Vdbus_registered_objects_table):
8062 Adapt docstring.
8063
8064 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
8065
8066 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
8067 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
8068 Do not assume ptrdiff_t is the same width as 'int'.
8069
8070 * alloc.c: Handle unusual debugging option combinations.
8071 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
8072 since the two debugging options are incompatible.
8073 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
8074 is defined.
8075 (mem_init, mem_insert, mem_insert_fixup):
8076 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
8077 (NEED_MEM_INSERT): Remove; no longer needed.
8078
8079 2012-04-22 Leo Liu <sdl.web@gmail.com>
8080
8081 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
8082
8083 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
8084
8085 * sysdep.c [__FreeBSD__]: Minor cleanups.
8086 (list_system_processes, system_process_attributes) [__FreeBSD__]:
8087 Use Emacs indenting style more consistently. Avoid some casts.
8088 Use 'double' consistently rather than mixing 'float' and 'double'.
8089
8090 2012-04-21 Eduard Wiebe <usenet@pusto.de>
8091
8092 * sysdep.c (list_system_processes, system_process_attributes):
8093 Add implementation for FreeBSD (Bug#5243).
8094
8095 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
8096
8097 * lisp.mk (lisp): Update.
8098
8099 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
8100
8101 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
8102 It is never used otherwise.
8103
8104 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8105
8106 * print.c (print_preprocess): Only check print_depth if print-circle
8107 is nil.
8108 (print_object): Check for cycles even when print-circle is nil and
8109 print-gensym is t, but only check print_depth if print-circle is nil.
8110
8111 2012-04-20 Chong Yidong <cyd@gnu.org>
8112
8113 * process.c (wait_reading_process_output): If EIO occurs on a pty,
8114 set the status to "failed" and ensure that sentinel is run.
8115
8116 2012-04-20 Glenn Morris <rgm@gnu.org>
8117
8118 * process.c (Fset_process_inherit_coding_system_flag)
8119 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
8120 (Fmake_network_process, Fmake_serial_process): Doc fix.
8121
8122 2012-04-20 Eli Zaretskii <eliz@gnu.org>
8123
8124 * xdisp.c (string_buffer_position_lim): Limit starting position to
8125 BEGV.
8126 (set_cursor_from_row): If called for a mode-line or header-line
8127 row, return zero immediately.
8128 (try_cursor_movement): If inside continuation line, don't back up
8129 farther than the first row after the header line, if any.
8130 Don't consider the header-line row as "partially visible", even if
8131 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
8132
8133 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
8134
8135 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
8136 (bug#11238).
8137
8138 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
8139 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
8140
8141 configure: new option --enable-gcc-warnings (Bug#11207)
8142 * Makefile.in (C_WARNINGS_SWITCH): Remove.
8143 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
8144 (ALL_CFLAGS): Use new macros rather than old.
8145 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
8146 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
8147 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
8148 -Wunused-result, -Wunused-variable. This should go away once
8149 the Emacs and Gnulib regex code is merged.
8150 (xmalloc, xrealloc): Now static.
8151
8152 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
8153
8154 * dired.c (Fsystem_groups): Remove unused local.
8155
8156 2012-04-17 Glenn Morris <rgm@gnu.org>
8157
8158 * dired.c (Fsystem_users): Doc fix.
8159
8160 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
8161
8162 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
8163 (syms_of_dired): Add them.
8164
8165 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
8166
8167 Fix minor alloc.c problems found by static checking.
8168 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
8169 New extern decls, to avoid calling undeclared functions.
8170 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
8171 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
8172 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
8173 (NEED_MEM_INSERT): New macro.
8174 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
8175 Remove one incorrect comment and fix another.
8176
8177 Fix minor ralloc.c problems found by static checking.
8178 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
8179 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
8180 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
8181 (r_alloc_sbrk): Now static.
8182
8183 Improve ralloc.c interface checking.
8184 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
8185 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
8186 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
8187 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
8188 [REL_ALLOC]: ... to here, to check interface.
8189 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
8190 Remove decls. This fixes an "It stinks!".
8191
8192 * alloc.c (which_symbols): Fix alignment issue / type clash.
8193
8194 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
8195
8196 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
8197 (struct Lisp_Misc_Any): Likewise.
8198 (struct Lisp_Free): Likewise.
8199 * alloc.c (union aligned_Lisp_Symbol): Define.
8200 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
8201 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
8202 (union aligned_Lisp_Misc): Define.
8203 (MARKER_BLOCK_SIZE, struct marker_block): Use union
8204 aligned_Lisp_Misc instead of union Lisp_Misc.
8205 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
8206
8207 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
8208
8209 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
8210 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
8211 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
8212 * s/netbsd.h, s/sol2-6.h:
8213 Remove definition of GC_MARK_STACK, since the default now works.
8214 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
8215 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
8216 no longer the default.
8217 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
8218
8219 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
8220
8221 * lread.c (lisp_file_lexically_bound_p):
8222 Fix hang at ";-*-\n" (bug#11238).
8223
8224 2012-04-14 Eli Zaretskii <eliz@gnu.org>
8225
8226 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
8227 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
8228
8229 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
8230
8231 * nsterm.m (constrainFrameRect): Always constrain when there is only
8232 one screen (Bug#10962).
8233
8234 2012-04-13 Ken Brown <kbrown@cornell.edu>
8235
8236 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
8237
8238 2012-04-13 Reuben Thomas <rrt@sc3d.org>
8239
8240 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
8241
8242 2012-04-11 Daniel Colascione <dancol@dancol.org>
8243
8244 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
8245 against is gone. It's better to use vfork now so that when Cygwin
8246 gains a new, working vfork, we use it automatically (bug#10398).
8247
8248 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8249
8250 * window.c (save_window_save): Obey window-point-insertion-type.
8251
8252 2012-04-11 Glenn Morris <rgm@gnu.org>
8253
8254 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
8255
8256 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8257
8258 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
8259
8260 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
8261
8262 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
8263 (force_quit_count): New var.
8264 (handle_interrupt): Use it.
8265
8266 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
8267
8268 * w32.c (w32_delayed_load): Record the full path of the library
8269 being loaded (bug#10424).
8270
8271 2012-04-09 Glenn Morris <rgm@gnu.org>
8272
8273 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
8274 not just in the obarray, before snarfing them. (Bug#11036)
8275
8276 * Makefile.in ($(leimdir)/leim-list.el):
8277 Pass EMACS rather than BUILT_EMACS.
8278
8279 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
8280
8281 * process.c (make_process):
8282 * process.h: Add integer `gnutls_handshakes_tried' member to
8283 process struct.
8284
8285 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
8286 Add convenience `GNUTLS_LOG2i' macro.
8287
8288 * gnutls.c (gnutls_log_function2i): Convenience log function.
8289 (emacs_gnutls_read): Use new log functions,
8290 `gnutls_handshakes_tried' process member, and
8291 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
8292 attempts per process (connection).
8293
8294 2012-04-09 Chong Yidong <cyd@gnu.org>
8295
8296 * eval.c (Fuser_variable_p, user_variable_p_eh)
8297 (lisp_indirect_variable): Functions deleted.
8298 (Fdefvar): Caller changed.
8299
8300 * callint.c (Finteractive, Fcall_interactively):
8301 * minibuf.c (Fread_variable): Callers changed.
8302
8303 2012-04-09 Eli Zaretskii <eliz@gnu.org>
8304
8305 * xdisp.c (set_cursor_from_row): If the display string appears in
8306 the buffer at position that is closer to point than the position
8307 after the display string, display the cursor on the first glyph of
8308 the display string. Fixes cursor display when a 'display' text
8309 property immediately follows invisible text. (Bug#11094)
8310
8311 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
8312
8313 composite.c: use 'double' consistently
8314 * composite.c (get_composition_id): Use 'double' consistently
8315 instead of converting 'float' to 'double' and vice versa; this is
8316 easier to understand and avoids a GCC warning.
8317
8318 2012-04-09 Glenn Morris <rgm@gnu.org>
8319
8320 * Makefile.in: Generate leim-list with bootstrap-emacs, in
8321 preparation for dumping it with emacs. (Bug#4789)
8322 (leimdir): New variable.
8323 ($(leimdir)/leim-list.el): New rule.
8324 (emacs$(EXEEXT)): Depend on leim-list.el.
8325
8326 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
8327 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
8328 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
8329
8330 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
8331
8332 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
8333 proper alignment.
8334
8335 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
8336
8337 * xml.c (init_libxml2_functions) [WINDOWSNT]:
8338 Remove unused local variable.
8339
8340 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
8341
8342 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
8343 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
8344 (mark_memory): Mark Lisp_Objects only if pointers might hide in
8345 objects, as mark_maybe_pointer will catch them otherwise.
8346 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
8347 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
8348
8349 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
8350
8351 Fix typo that broke non-Windows builds.
8352 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
8353
8354 2012-04-07 Eli Zaretskii <eliz@gnu.org>
8355
8356 Support building on MS-Windows with libxml2.
8357
8358 * makefile.w32-in (OBJ2): Add xml.$(O).
8359 (GLOBAL_SOURCES): Add xml.c.
8360 ($(BLD)/xml.$(O)): New dependency list.
8361
8362 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
8363 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
8364 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
8365 [!WINDOWSNT]: New macros.
8366 (init_libxml2_functions, libxml2_loaded_p): New functions.
8367 (parse_region): Call fn_xmlCheckVersion instead of using the macro
8368 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
8369 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
8370 Calls xmlCleanupParser only if libxml2 was loaded (or statically
8371 linked in).
8372 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
8373 Call init_libxml2_functions before calling libxml2 functions.
8374 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
8375
8376 * emacs.c: Don't include libxml/parser.h.
8377 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
8378 xmlCleanupParser directly.
8379
8380 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
8381
8382 2012-04-07 Eli Zaretskii <eliz@gnu.org>
8383
8384 * indent.c (Fvertical_motion): If there is a display string at
8385 point, use it.vpos to compute how many lines to backtrack after
8386 move_it_to point. (Bug#11133)
8387
8388 2012-04-06 Eli Zaretskii <eliz@gnu.org>
8389
8390 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
8391 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
8392 about subtle differences between FETCH_CHAR* and STRING_CHAR*
8393 macros related to unification of CJK characters. For the details,
8394 see the discussion following the message here:
8395 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
8396
8397 2012-04-04 Chong Yidong <cyd@gnu.org>
8398
8399 * keyboard.c (Vdelayed_warnings_list): Doc fix.
8400
8401 2012-04-01 Eli Zaretskii <eliz@gnu.org>
8402
8403 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
8404 instead of alloca. (Bug#11138)
8405
8406 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
8407
8408 * w32menu.c (is_simple_dialog): Properly check lisp types.
8409 (Bug#11141)
8410
8411 2012-03-31 Eli Zaretskii <eliz@gnu.org>
8412
8413 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
8414 position we get to after a call to move_it_to fails the
8415 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
8416 only if we wind up in a string from display property. (Bug#11063)
8417
8418 * window.c (Fdelete_other_windows_internal): Invalidate the row
8419 and column information about mouse highlight, so that redisplay
8420 restores it after reallocating the glyph matrices. (Bug#7464)
8421
8422 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
8423 string comes from a `display' text property, use the buffer
8424 position of that property as if we actually saw that position in
8425 the row's glyphs.
8426 (move_it_by_lines): Remove the assertion that
8427 "it->current_x == 0 && it->hpos == 0" which can be legitimately
8428 violated when there's a before-string at the beginning of a line.
8429 (Bug#11063)
8430
8431 2012-03-30 Eli Zaretskii <eliz@gnu.org>
8432
8433 * xdisp.c (append_space_for_newline): If the default face was
8434 remapped, use the remapped face for the appended newline.
8435 (extend_face_to_end_of_line): Use the remapped default face for
8436 extending the face to the end of the line.
8437 (display_line): Call extend_face_to_end_of_line when the default
8438 face was remapped. (Bug#11068)
8439
8440 2012-03-29 Eli Zaretskii <eliz@gnu.org>
8441
8442 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
8443
8444 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8445
8446 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
8447
8448 2012-03-27 Glenn Morris <rgm@gnu.org>
8449
8450 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
8451 Doc fixes.
8452
8453 2012-03-26 Kenichi Handa <handa@m17n.org>
8454
8455 * dispextern.h (struct glyph): Fix previous change. Change the
8456 bit length of glyphless.ch to 25 (Bug#11082).
8457
8458 2012-03-26 Chong Yidong <cyd@gnu.org>
8459
8460 * keyboard.c (Vselection_inhibit_update_commands): New variable.
8461 (command_loop_1): Use it; inhibit selection update for
8462 handle-select-window too (Bug#8996).
8463
8464 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
8465
8466 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
8467
8468 2012-03-25 Kenichi Handa <handa@m17n.org>
8469
8470 * dispextern.h (struct glyph): Change the bit length of
8471 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
8472
8473 2012-03-24 Eli Zaretskii <eliz@gnu.org>
8474
8475 * s/ms-w32.h (tzname): Include time.h before redirecting to
8476 _tzname. Fixes the MSVC build. (Bug#9960)
8477
8478 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
8479
8480 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
8481 characters.
8482
8483 * xterm.c (XTread_socket): Only modify handling_signal if
8484 !SYNC_INPUT. (Bug#11080)
8485
8486 2012-03-23 Eli Zaretskii <eliz@gnu.org>
8487
8488 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
8489 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
8490 when fetching a multibyte character consumes more bytes than
8491 CHAR_BYTES returns, due to unification of CJK characters in
8492 string_char. (Bug#11073)
8493
8494 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8495
8496 * process.c (wait_reading_process_output): Handle pty disconnect
8497 by refraining from sending oneself a SIGCHLD (bug#10933).
8498
8499 2012-03-22 Chong Yidong <cyd@gnu.org>
8500
8501 * dispextern.h (struct it): New member string_from_prefix_prop_p.
8502
8503 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
8504 Mark string as coming from a prefix property.
8505 (handle_face_prop): Use default face for prefix strings (Bug#4281).
8506 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
8507
8508 2012-03-21 Chong Yidong <cyd@gnu.org>
8509
8510 * xfaces.c (Vface_remapping_alist): Doc fix.
8511
8512 2012-03-20 Eli Zaretskii <eliz@gnu.org>
8513
8514 * w32proc.c (Fw32_set_console_codepage)
8515 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
8516 Doc fixes.
8517
8518 2012-03-20 Chong Yidong <cyd@gnu.org>
8519
8520 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
8521 to reflect default non-nil value of redisplay-dont-pause.
8522
8523 2012-03-19 Kenichi Handa <handa@m17n.org>
8524
8525 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
8526 it fit in a valid range (Bug#11003).
8527
8528 2012-03-18 Eli Zaretskii <eliz@gnu.org>
8529
8530 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
8531 that is not from display property, accept the row as a "cursor
8532 row" if one of the string's character has a non-nil `cursor'
8533 property. Fixes cursor positioning when there are newlines in
8534 overlay strings, e.g. in icomplete.el. (Bug#11035)
8535
8536 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
8537
8538 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
8539
8540 2012-03-12 Chong Yidong <cyd@gnu.org>
8541
8542 * eval.c (inhibit_lisp_code): Rename from
8543 inhibit_window_configuration_change_hook; move from window.c.
8544
8545 * xfns.c (unwind_create_frame_1, Fx_create_frame):
8546 * window.c (run_window_configuration_change_hook)
8547 (syms_of_window): Callers changed.
8548
8549 2012-03-11 Chong Yidong <cyd@gnu.org>
8550
8551 * keymap.c (Fkey_description): Doc fix (Bug#9700).
8552
8553 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
8554
8555 2012-03-10 Chong Yidong <cyd@gnu.org>
8556
8557 * frame.c (other_visible_frames): Don't assume the selected frame
8558 is visible (Bug#10955).
8559
8560 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
8561
8562 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
8563
8564 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
8565
8566 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
8567 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
8568 zero (Bug#10954).
8569
8570 2012-03-03 Glenn Morris <rgm@gnu.org>
8571
8572 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
8573
8574 2012-03-02 Eli Zaretskii <eliz@gnu.org>
8575
8576 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
8577 position past the first glyph_row that ends at ZV. (Bug#10902)
8578 (redisplay_window, next_element_from_string): Fix typos in
8579 comments.
8580 (redisplay_window): Pass to move_it_vertically the margin in
8581 pixels, not in screen lines.
8582
8583 2012-03-02 Glenn Morris <rgm@gnu.org>
8584
8585 * buffer.c (buffer-list-update-hook): Doc fix.
8586
8587 2012-02-29 Eli Zaretskii <eliz@gnu.org>
8588
8589 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
8590 push_it before setting up the iterator for the first overlay
8591 string, even if we have an empty string loaded.
8592 (next_overlay_string): If there's an empty string on the iterator
8593 stack, pop the stack. (Bug#10903)
8594
8595 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
8596
8597 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
8598 Suggested by Stefan Monnier in
8599 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
8600 * alloc.c (widen_to_Lisp_Object): New static function.
8601 (mark_memory): Also mark Lisp_Objects by fetching pointer words
8602 and widening them to Lisp_Objects. This would work even if
8603 USE_LSB_TAG is defined and wide integers are used, which might
8604 happen in a future version of Emacs.
8605
8606 2012-02-25 Chong Yidong <cyd@gnu.org>
8607
8608 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
8609 Doc fix.
8610
8611 * xselect.c (Fx_selection_exists_p): Doc fix.
8612 (x_clipboard_manager_save_all): Print an informative message
8613 before saving to clipboard manager.
8614
8615 2012-02-24 Chong Yidong <cyd@gnu.org>
8616
8617 * keyboard.c (process_special_events): Handle all X selection
8618 requests in kbd_buffer, not just the next one (Bug#8869).
8619
8620 2012-02-23 Chong Yidong <cyd@gnu.org>
8621
8622 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
8623 call when setting menu-bar-lines and tool-bar-lines parameters.
8624 (unwind_create_frame_1): New helper function.
8625
8626 * window.c (inhibit_window_configuration_change_hook): New var.
8627 (run_window_configuration_change_hook): Obey it.
8628 (syms_of_window): Initialize it.
8629
8630 2012-02-22 Chong Yidong <cyd@gnu.org>
8631
8632 * xterm.c (x_draw_image_relief): Add missing type check for
8633 Vtool_bar_button_margin (Bug#10743).
8634
8635 2012-02-21 Chong Yidong <cyd@gnu.org>
8636
8637 * fileio.c (Vfile_name_handler_alist): Doc fix.
8638
8639 * buffer.c (Fget_file_buffer): Protect against invalid file
8640 handler return value.
8641
8642 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
8643
8644 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
8645 when computing $valmask.
8646
8647 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
8648 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
8649 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
8650 It's useless in that case, and it can cause problems on hosts
8651 that allocate halves of EMACS_INT values separately.
8652 Reported by Dan Horák. Diagnosed by Andreas Schwab in
8653 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
8654 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
8655 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
8656 it avoids undefined behavior on hosts where shifting right by more
8657 than the word width has undefined behavior.
8658
8659 2012-02-19 Chong Yidong <cyd@gnu.org>
8660
8661 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
8662 (Funhandled_file_name_directory, Ffile_name_as_directory)
8663 (Fdirectory_file_name, Fexpand_file_name)
8664 (Fsubstitute_in_file_name): Protect against invalid file handler
8665 return values (Bug#10845).
8666
8667 2012-02-18 Eli Zaretskii <eliz@gnu.org>
8668
8669 * .gdbinit (pitx): Fix incorrect references to fields of the
8670 iterator stack.
8671
8672 2012-02-17 Chong Yidong <cyd@gnu.org>
8673
8674 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
8675
8676 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
8677
8678 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
8679 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
8680
8681 2012-02-15 Chong Yidong <cyd@gnu.org>
8682
8683 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
8684 marked as special. Also, starting docstrings with * is obsolete.
8685
8686 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
8687
8688 * gnutls.c (emacs_gnutls_write): Fix last change.
8689
8690 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
8691
8692 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
8693 send_process.
8694
8695 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
8696
8697 * keymap.c (Fsingle_key_description): Handle char ranges.
8698
8699 2012-02-12 Chong Yidong <cyd@gnu.org>
8700
8701 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
8702 as that creates a dangerous corner case.
8703
8704 * window.c (Fdelete_window_internal): Invalidate the mouse
8705 highlight (Bug#9904).
8706
8707 2012-02-12 Glenn Morris <rgm@gnu.org>
8708
8709 * xselect.c (Fx_own_selection_internal)
8710 (Fx_get_selection_internal, Fx_disown_selection_internal)
8711 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
8712 * nsselect.m (Fx_own_selection_internal)
8713 (Fx_disown_selection_internal, Fx_selection_exists_p)
8714 (Fx_selection_owner_p, Fx_get_selection_internal):
8715 Sync docs and argument specs with the xselect.c versions.
8716
8717 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
8718
8719 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
8720
8721 2012-02-11 Eli Zaretskii <eliz@gnu.org>
8722
8723 * w32select.c (Fx_selection_exists_p): Sync doc string and
8724 argument list with xselect.c. (Bug#10783)
8725
8726 * w16select.c (Fx_selection_exists_p): Sync doc string and
8727 argument list with xselect.c. (Bug#10783)
8728
8729 2012-02-10 Glenn Morris <rgm@gnu.org>
8730
8731 * fns.c (Fsecure_hash): Doc fix.
8732
8733 2012-02-09 Kenichi Handa <handa@m17n.org>
8734
8735 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
8736
8737 2012-02-07 Chong Yidong <cyd@gnu.org>
8738
8739 * buffer.c (Fbuffer_local_variables)
8740 (buffer_lisp_local_variables): Handle unbound vars correctly;
8741 don't let Qunbound leak into Lisp.
8742
8743 2012-02-07 Glenn Morris <rgm@gnu.org>
8744
8745 * image.c (Fimagemagick_types): Doc fix.
8746
8747 * image.c (imagemagick-render-type): Change it from a lisp object
8748 to an integer. Move the doc here from the lisp manual.
8749 Treat all values not equal to 0 the same.
8750
8751 2012-02-06 Chong Yidong <cyd@gnu.org>
8752
8753 * doc.c (store_function_docstring): Avoid applying docstring of
8754 alias to base function (Bug#2603).
8755
8756 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
8757
8758 * .gdbinit (pp1, pv1): Remove redundant defines.
8759 (pr): Use pp.
8760
8761 2012-02-04 Chong Yidong <cyd@gnu.org>
8762
8763 * nsterm.m: Declare a global (Bug#10694).
8764
8765 2012-02-04 Eli Zaretskii <eliz@gnu.org>
8766
8767 * w32.c (get_emacs_configuration_options):
8768 Include --enable-checking, if specified, in the return value.
8769
8770 2012-02-04 Martin Rudalics <rudalics@gmx.at>
8771
8772 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
8773 after rounding frame sizes. (Bug#9723)
8774
8775 2012-02-04 Eli Zaretskii <eliz@gnu.org>
8776
8777 * keyboard.c (adjust_point_for_property): Don't position point
8778 before BEGV. (Bug#10696)
8779
8780 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
8781
8782 Handle overflow when computing char display width (Bug#9496).
8783 * character.c (char_width): Return EMACS_INT, not int.
8784 (char_width, c_string_width): Check for overflow when
8785 computing the width; this is possible now that individual
8786 characters can have unbounded width. Problem introduced
8787 by merge from Emacs 23 on 2012-01-19.
8788
8789 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
8790
8791 * dbusbind.c (Fdbus_register_method): Mention the return value
8792 :ignore in the docstring.
8793
8794 2012-02-02 Glenn Morris <rgm@gnu.org>
8795
8796 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
8797
8798 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
8799 Unconditionally set to t. (Bug#10673)
8800 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
8801 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
8802 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
8803
8804 2012-02-02 Kenichi Handa <handa@m17n.org>
8805
8806 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
8807 0, do not call append_composite_glyph.
8808
8809 2012-02-02 Kenichi Handa <handa@m17n.org>
8810
8811 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
8812 NULL (Bug#6988).
8813 (x_produce_glyphs): If the component of a composition is a null
8814 string, set it->pixel_width to 1 to avoid zero-width glyph.
8815
8816 2012-02-01 Eli Zaretskii <eliz@gnu.org>
8817
8818 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
8819 first 2 arguments are identical. This makes inserting large
8820 output from a subprocess an order of magnitude faster on
8821 MS-Windows, where all sbrk'ed memory is always contiguous.
8822
8823 2012-01-31 Glenn Morris <rgm@gnu.org>
8824
8825 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
8826 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
8827 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
8828
8829 2012-01-29 Glenn Morris <rgm@gnu.org>
8830
8831 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
8832
8833 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
8834
8835 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
8836
8837 2012-01-28 Chong Yidong <cyd@gnu.org>
8838
8839 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
8840
8841 2012-01-26 Chong Yidong <cyd@gnu.org>
8842
8843 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
8844
8845 * search.c (Fsearch_forward, Fsearch_backward): Document negative
8846 repeat counts (Bug#10507).
8847
8848 2012-01-26 Glenn Morris <rgm@gnu.org>
8849
8850 * lread.c (syms_of_lread): Doc fix.
8851
8852 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
8853
8854 * coding.c (encode_designation_at_bol): Change return value to
8855 EMACS_INT.
8856
8857 2012-01-25 Chong Yidong <cyd@gnu.org>
8858
8859 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
8860
8861 2012-01-21 Chong Yidong <cyd@gnu.org>
8862
8863 * floatfns.c (Fcopysign): Make the second argument non-optional,
8864 since nil is not allowed anyway.
8865
8866 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
8867
8868 * process.c (read_process_output): Use p instead of XPROCESS (proc).
8869 (send_process): Likewise.
8870
8871 2012-01-19 Martin Rudalics <rudalics@gmx.at>
8872
8873 * window.c (save_window_save, Fcurrent_window_configuration)
8874 (Vwindow_persistent_parameters): Do not use Qstate.
8875 Rewrite doc-strings.
8876
8877 2012-01-19 Kenichi Handa <handa@m17n.org>
8878
8879 * character.c (char_width): New function.
8880 (Fchar_width, c_string_width, lisp_string_width):
8881 Use char_width (Bug#9496).
8882
8883 2012-01-16 Martin Rudalics <rudalics@gmx.at>
8884
8885 * window.c (Vwindow_persistent_parameters): New variable.
8886 (Fset_window_configuration, save_window_save): Handle persistent
8887 window parameters.
8888
8889 2012-01-14 Eli Zaretskii <eliz@gnu.org>
8890
8891 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
8892 thrashing the stack of the thread. (Bug#9087)
8893
8894 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
8895
8896 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
8897
8898 2012-01-11 Eli Zaretskii <eliz@gnu.org>
8899
8900 * xdisp.c (rows_from_pos_range): Handle the case where the
8901 highlight ends on a newline. (Bug#10464)
8902 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
8903 he end column for display of highlight that ends on a newline
8904 before a R2L line.
8905
8906 2012-01-11 Glenn Morris <rgm@gnu.org>
8907
8908 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
8909 from load-path also when installation-directory is nil. (Bug#10208)
8910
8911 2012-01-10 Glenn Morris <rgm@gnu.org>
8912
8913 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
8914
8915 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
8916 Update template values to be closer to their typical values these days.
8917
8918 2012-01-09 Eli Zaretskii <eliz@gnu.org>
8919
8920 * xdisp.c (rows_from_pos_range): Accept additional argument
8921 DISP_STRING, and accept any glyph in a row whose object is that
8922 string as eligible for mouse highlight. Fixes mouse highlight of
8923 display strings from overlays. (Bug#10464)
8924
8925 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
8926
8927 emacs: fix an auto-save permissions race condition (Bug#10400)
8928 * fileio.c (auto_saving_dir_umask): New static var.
8929 (Fmake_directory_internal): Use it.
8930 (do_auto_save_make_dir): Set it, instead of invoking chmod after
8931 creating the directory. The old code temporarily assigns
8932 too-generous permissions to the directory.
8933 (do_auto_save_eh): Clear it.
8934 (Fdo_auto_save): Catch all errors, not just file errors, so
8935 that the var is always cleared.
8936
8937 2012-01-07 Eli Zaretskii <eliz@gnu.org>
8938
8939 * search.c (scan_buffer): Pass character positions to
8940 know_region_cache, not byte positions. (Bug#6540)
8941
8942 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
8943
8944 * w32.c (sys_rename): Report EXDEV when rename of a directory
8945 fails because the target is on another logical disk. (Bug#10284)
8946
8947 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
8948
8949 * xterm.c (x_embed_request_focus): New function.
8950
8951 * xterm.h: Add prototype.
8952
8953 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
8954
8955 2012-01-05 Glenn Morris <rgm@gnu.org>
8956
8957 * emacs.c (emacs_copyright): Update short copyright year to 2012.
8958
8959 2012-01-01 Eli Zaretskii <eliz@gnu.org>
8960
8961 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
8962 Load gnutls_transport_set_lowat only if GnuTLS version is below
8963 2.11.1.
8964 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
8965 GnuTLS versions below 2.11.1.
8966
8967 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
8968
8969 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
8970 to the doc string advising against its use for altering the way
8971 windows are scrolled.
8972
8973 2011-12-28 Kenichi Handa <handa@m17n.org>
8974
8975 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
8976 coding-system ASCII compatible only when it does not produce BOM
8977 on encoding (Bug#10383).
8978
8979 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
8980
8981 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
8982 can scroll.
8983 (create_and_show_popup_menu): Always use menu_position_func for
8984 Gtk3 (Bug#10361).
8985
8986 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
8987
8988 * callint.c (Fcall_interactively): Don't truncate prompt string.
8989
8990 2011-12-23 Eli Zaretskii <eliz@gnu.org>
8991
8992 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
8993 property that ends at ZV, so that the bidi iteration could be
8994 resumed from there (after widening). (Bug#10360)
8995
8996 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
8997
8998 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
8999
9000 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
9001
9002 * nsterm.m (x_free_frame_resources):
9003 Release f->output_data.ns->miniimage.
9004 (ns_index_color): Fix indentation. Do not retain
9005 color_table->colors[i].
9006
9007 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
9008 before returning.
9009
9010 * nsfns.m (x_set_background_color): Assign return value from
9011 ns_index_color to face-background instead of NSColor*.
9012 (ns_implicitly_set_icon_type): Fix indentation.
9013 Change assignment in for loop to comparison.
9014
9015 * emacs.c (ns_pool): New variable.
9016 (main): Assign ns_pool.
9017 (Fkill_emacs): Call ns_release_autorelease_pool.
9018
9019 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
9020 autorelease fdesc, release fdAttrs and tdict.
9021 (ns_get_covering_families): Release charset.
9022 (ns_findfonts): Release NSFontDescriptor created with new.
9023 (ns_uni_to_glyphs): Fix indentation.
9024 (setString): Release attrStr before assigning new value.
9025
9026 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
9027
9028 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
9029 and NS_IMPL_COCOA.
9030 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
9031 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
9032
9033 2011-12-18 David Reitter <reitter@cmu.edu>
9034
9035 * nsterm.m (ns_term_init): Subscribe for notifications
9036 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
9037 to method trackingNotification in EmacsMenu.
9038
9039 * nsmenu.m (trackingMenu): New variable.
9040 (trackingNotification): New method (from Aquamacs).
9041 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
9042 from Aquamacs (Bug#7030).
9043
9044 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
9045
9046 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
9047 (symbol_to_nsstring): Fix indentation.
9048 (ns_symbol_to_pb): New function.
9049 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
9050 (Fns_rotate_cut_buffers_internal): Remove.
9051 (Fns_store_selection_internal): Rename from
9052 Fns_store_cut_buffer_internal.
9053 (ns_get_foreign_selection, Fx_own_selection_internal)
9054 (Fx_disown_selection_internal, Fx_selection_exists_p)
9055 (Fns_get_selection_internal, Fns_store_selection_internal):
9056 Use ns_symbol_to_pb and check if return value is nil.
9057 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
9058 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
9059 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
9060 renamed to Sns_store_selection_internal.
9061 (ns_handle_selection_request): Move code to Fx_own_selection_internal
9062 and remove this function.
9063 (ns_handle_selection_clear): Remove, never used.
9064 (Fx_own_selection_internal): Move code from ns_handle_selection_request
9065 here.
9066
9067 2011-12-17 Ken Brown <kbrown@cornell.edu>
9068
9069 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
9070 GID is unknown (Bug#10257).
9071
9072 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
9073
9074 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
9075 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
9076 which caused a build failure on GNU/Linux IA-64. This problem was
9077 introduced by my 2011-10-07 patch.
9078
9079 2011-12-15 Juri Linkov <juri@jurta.org>
9080
9081 * image.c (imagemagick_error): New function. (Bug#10112)
9082 (imagemagick_load_image): Comment out `MagickSetResolution' call.
9083 Use `imagemagick_error' where ImageMagick functions return
9084 `MagickFalse'.
9085 (Fimagemagick_types): Add `Fnreverse' to return the list in the
9086 proper order.
9087
9088 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9089
9090 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
9091 fill background (Bug#8992).
9092
9093 2011-12-13 Martin Rudalics <rudalics@gmx.at>
9094
9095 * window.c (Vwindow_combination_resize)
9096 (Vwindow_combination_limit): Use t instead of non-nil in
9097 doc-strings.
9098 (Vrecenter_redisplay): Add first sentence of doc-string on
9099 separate line.
9100 (Frecenter): Fix doc-string typo.
9101
9102 2011-12-11 Kenichi Handa <handa@m17n.org>
9103
9104 * coding.c (Funencodable_char_position): Pay attention to the
9105 buffer text relocation (Bug#9389).
9106
9107 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
9108
9109 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
9110 gtk_init (Bug#10100).
9111
9112 2011-12-10 Eli Zaretskii <eliz@gnu.org>
9113
9114 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
9115 IT->string is nil. (Bug#10263)
9116
9117 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
9118
9119 * nsterm.h (x_free_frame_resources): Declare.
9120
9121 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
9122 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
9123
9124 * nsterm.h (ns_get_defaults_value): Declare.
9125
9126 * nsterm.m (ns_default): Call ns_get_defaults_value.
9127
9128 2011-12-09 Eli Zaretskii <eliz@gnu.org>
9129
9130 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
9131 (Bug#10170)
9132
9133 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9134
9135 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
9136 that where the value of an _OBJC_* symbol points to is in the .bss
9137 section (Bug#10240).
9138
9139 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
9140
9141 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
9142 after the loop to call ccl_driver at least once (Bug#8619).
9143
9144 2011-12-08 Kenichi Handa <handa@m17n.org>
9145
9146 * ftfont.c (get_adstyle_property): Fix previous change
9147 (Bug#10233).
9148
9149 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
9150
9151 * w32.c (init_environment): If no_site_lisp, remove site-lisp
9152 dirs from the default value of EMACSLOADPATH (bug#10208).
9153
9154 2011-12-07 Glenn Morris <rgm@gnu.org>
9155
9156 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
9157 installation and source directories as well. (Bug#10208)
9158
9159 2011-12-06 Chong Yidong <cyd@gnu.org>
9160
9161 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
9162
9163 2011-12-06 Glenn Morris <rgm@gnu.org>
9164
9165 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
9166 as an error, not just -1. (Bug#10217)
9167
9168 2011-12-05 Chong Yidong <cyd@gnu.org>
9169
9170 * keyboard.c (process_special_events): New function.
9171 (swallow_events, Finput_pending_p): Use it (Bug#10195).
9172
9173 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
9174
9175 * coding.c (encode_designation_at_bol): Don't use uninitialized
9176 local variable (Bug#9318).
9177
9178 2011-12-05 Kenichi Handa <handa@m17n.org>
9179
9180 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
9181 return Qnil (Bug#8046, Bug#10193).
9182
9183 2011-12-05 Kenichi Handa <handa@m17n.org>
9184
9185 * coding.c (encode_designation_at_bol): New args charbuf_end and
9186 dst. Return the number of produced bytes. Callers changed.
9187 (coding_set_source): Return how many bytes coding->source was
9188 relocated.
9189 (coding_set_destination): Return how many bytes
9190 coding->destination was relocated.
9191 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
9192 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
9193
9194 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
9195
9196 * coding.c (CODING_CHAR_CHARSET_P): New macro.
9197 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
9198 macro (Bug#9318).
9199
9200 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
9201
9202 The following changes are to fix Bug#9318.
9203
9204 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
9205 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
9206 (encode_coding_iso_2022, encode_coding_sjis)
9207 (encode_coding_big5, encode_coding_charset): Use the above macros.
9208
9209 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
9210
9211 * lisp.h (process_quit_flag): Fix external declaration.
9212
9213 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
9214
9215 Don't macro-inline non-performance-critical code.
9216 * eval.c (process_quit_flag): New function.
9217 * lisp.h (QUIT): Use it.
9218
9219 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
9220
9221 * nsfns.m (get_geometry_from_preferences): New function.
9222 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
9223
9224 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
9225
9226 * emacs.c (Qkill_emacs): Define.
9227 (syms_of_emacs): Initialize it.
9228 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
9229 Qquit_flag to `kill-emacs' instead.
9230 (quit_throw_to_read_char): Add parameter `from_signal'.
9231 All callers changed. Call Fkill_emacs if requested and safe.
9232 * lisp.h (QUIT): Call Fkill_emacs if requested.
9233
9234 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
9235
9236 * widget.c (update_wm_hints): Return if wmshell is null.
9237 (widget_update_wm_size_hints): New function.
9238
9239 * widget.h (widget_update_wm_size_hints): Declare.
9240
9241 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
9242 widget_update_wm_size_hints (Bug#10104).
9243
9244 2011-12-03 Eli Zaretskii <eliz@gnu.org>
9245
9246 * xdisp.c (handle_invisible_prop): If the invisible text ends just
9247 before a newline, prepare the bidi iterator for consuming the
9248 newline, and keep the current paragraph direction. (Bug#10183)
9249 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
9250
9251 2011-12-02 Juri Linkov <juri@jurta.org>
9252
9253 * search.c (Fword_search_regexp): New Lisp function created from
9254 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
9255 (Fword_search_backward, Fword_search_forward)
9256 (Fword_search_backward_lax, Fword_search_forward_lax):
9257 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
9258 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
9259
9260 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
9261
9262 * fileio.c (Finsert_file_contents): Move after-change-function call
9263 to before the "handled:" label, since all "goto handled" appear in
9264 cases where the *-change-functions have already been properly called
9265 (bug#10117).
9266
9267 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
9268
9269 * keyboard.c (interrupt_signal): Don't call kill-emacs when
9270 waiting for input. (Bug#10169)
9271
9272 2011-11-30 Eli Zaretskii <eliz@gnu.org>
9273
9274 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
9275 verifies glyph row's hash code--we have just reallocated the
9276 glyphs, so their contents can be complete garbage. (Bug#10164)
9277
9278 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
9279
9280 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
9281
9282 2011-11-30 Eli Zaretskii <eliz@gnu.org>
9283
9284 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
9285 attributes are tested _before_ calling verify_row_hash, to protect
9286 against GCC re-ordering of the tests. (Bug#10164)
9287
9288 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
9289
9290 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
9291
9292 * xterm.c (handle_one_xevent): Only set async_visible and friends
9293 if net_wm_state_hidden_seen is non-zero (Bug#10002)
9294 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
9295 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
9296
9297 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
9298
9299 Remove GCPRO-related macros that exist only to avoid shadowing locals.
9300 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
9301 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
9302 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
9303 All uses changed to use GCPRO1 etc.
9304 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
9305 Revert to old implementation (i.e., before 2011-03-11).
9306
9307 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9308
9309 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
9310 of scroll runs so as to avoid assigning disabled bogus rows and
9311 unnecessary graphics copy operations.
9312
9313 2011-11-27 Eli Zaretskii <eliz@gnu.org>
9314
9315 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
9316 (snprintf) [_MSC_VER]: Redirect to _snprintf.
9317 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
9318 (malloc, free, realloc, calloc): Redirect to e_* only when
9319 compiling Emacs.
9320
9321 * lisp.h (GCTYPEBITS): Move before first use.
9322 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
9323 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
9324 this macro definition.
9325
9326 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
9327 _MSC_VER.
9328
9329 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
9330
9331 * gtkutil.c (xg_create_frame_widgets):
9332 Call gtk_window_set_has_resize_grip (FALSE) if that function is
9333 present with Gtk+ 2.0.
9334
9335 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
9336
9337 * fileio.c (Finsert_file_contents): Undo previous change; see
9338 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
9339
9340 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
9341
9342 Rename locals to avoid shadowing.
9343 * fileio.c (Finsert_file_contents):
9344 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
9345 * process.c (wait_reading_process_output):
9346 Rename inner 'proc' to 'p' to avoid shadowing.
9347 Indent for consistency with usual Emacs style.
9348
9349 2011-11-25 Eli Zaretskii <eliz@gnu.org>
9350
9351 * xdisp.c (redisplay_window): If cursor row is not fully visible
9352 after recentering, and scroll-conservatively is set to a large
9353 number, scroll window by a few more lines to make the cursor fully
9354 visible and out of scroll-margin. (Bug#10105)
9355 (start_display): Don't move to the next line if the display should
9356 start at a newline that is part of a display vector or an overlay
9357 string. (Bug#10119)
9358
9359 2011-11-24 Juri Linkov <juri@jurta.org>
9360
9361 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
9362 after the `MagickPingImage' call. (Bug#10112)
9363
9364 2011-11-23 Chong Yidong <cyd@gnu.org>
9365
9366 * window.c (Fcoordinates_in_window_p): Accept only live windows.
9367
9368 2011-11-23 Martin Rudalics <rudalics@gmx.at>
9369
9370 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
9371 making another buffer current. (Bug#10114)
9372
9373 2011-11-23 Glenn Morris <rgm@gnu.org>
9374
9375 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
9376
9377 2011-11-23 Chong Yidong <cyd@gnu.org>
9378
9379 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
9380 using it (Bug#5984).
9381
9382 2011-11-22 Eli Zaretskii <eliz@gnu.org>
9383
9384 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
9385 and header-lines, as they don't have one computed for them.
9386 (Bug#10098)
9387
9388 * .gdbinit (prow): Make displayed values more self-explaining.
9389 Add row's hash code.
9390
9391 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9392
9393 * process.c (wait_reading_process_output): Fix asynchrounous
9394 GnuTLS socket handling on some versions of the GnuTLS library.
9395 (wait_reading_process_output): Add comment and URL.
9396
9397 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
9398
9399 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
9400
9401 2011-11-21 Chong Yidong <cyd@gnu.org>
9402
9403 * window.c (Fnext_window, Fprevious_window): Doc fix.
9404
9405 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9406
9407 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
9408
9409 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9410
9411 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
9412
9413 2011-11-20 Martin Rudalics <rudalics@gmx.at>
9414
9415 * window.c (Fset_window_combination_limit): Rename argument
9416 STATUS to LIMIT.
9417 (Vwindow_combination_limit): Remove "status" from doc-string.
9418
9419 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
9420
9421 * m/ibms390.h: Remove.
9422 * m/ibms390x.h: Don't include "ibms390.h".
9423
9424 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9425
9426 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
9427 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
9428
9429 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
9430
9431 * casetab.c (Fset_case_table):
9432 * charset.c (Fcharset_after): Fix typos.
9433
9434 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
9435
9436 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
9437 Otherwise, valgrind does not work on some platforms.
9438 Problem reported by Andreas Schwab in
9439 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
9440 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
9441 is set, removing the need for VIRT_ADDRESS_VARIES.
9442 (PURE_P): Use a more-efficient implementation that needs just one
9443 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
9444 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
9445 to 4 (xorl, subq, cmpq, setbe).
9446 * alloc.c (pure): Always extern now, since that's the
9447 VIRT_ADDR_VARIES behavior.
9448 (PURE_POINTER_P): Use a single comparison, not two, for
9449 consistency with the new puresize.h.
9450 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
9451 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
9452 Remove VIRT_ADDR_VARIES no longer needed.
9453
9454 2011-11-19 Eli Zaretskii <eliz@gnu.org>
9455
9456 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
9457 (erase_phys_cursor, update_window_cursor, show_mouse_face)
9458 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
9459 behave as if the cursor position were at the window margin.
9460
9461 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
9462 and the cursor position is out of bounds, behave as if the cursor
9463 position were at the window margin. (Bug#10075)
9464
9465 2011-11-18 Chong Yidong <cyd@gnu.org>
9466
9467 * window.c (Fwindow_combination_limit): Make first argument
9468 non-optional, since it is meaningless for live windows like the
9469 selected window.
9470
9471 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
9472
9473 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
9474
9475 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
9476
9477 * intervals.c: Fix grafting over the whole buffer (bug#10071).
9478 (graft_intervals_into_buffer): Simplify.
9479
9480 2011-11-18 Eli Zaretskii <eliz@gnu.org>
9481
9482 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
9483 hash values of the two rows.
9484 (copy_row_except_pointers): Preserve the used[] arrays and the
9485 hash values of the two rows. (Bug#10035)
9486 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
9487
9488 * xdisp.c (row_hash): New function, body extracted from
9489 compute_line_metrics.
9490 (compute_line_metrics): Call row_hash, instead of computing the
9491 hash code inline.
9492
9493 * dispnew.c (verify_row_hash): Call row_hash for computing the
9494 hash code of a row, instead of duplicating code from xdisp.c.
9495
9496 * dispextern.h (row_hash): Add prototype.
9497
9498 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
9499
9500 * frame.c (delete_frame): Don't delete the terminal when the last
9501 X frame is closed if emacs is built with GTK toolkit.
9502
9503 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
9504
9505 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
9506
9507 2011-11-17 Martin Rudalics <rudalics@gmx.at>
9508
9509 * window.c (Vwindow_splits): Rename to
9510 Vwindow_combination_resize. Suggested by Juri Linkov.
9511 (Fsplit_window_internal): Use Vwindow_combination_resize instead
9512 of Vwindow_splits.
9513
9514 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
9515
9516 * nsfns.m (Fns_font_name):
9517 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
9518
9519 2011-11-16 Martin Rudalics <rudalics@gmx.at>
9520
9521 * window.h (window): Rename slot "nest" to "combination_limit".
9522 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
9523 (Fset_window_nest): Rename to Fset_window_combination_limit.
9524 (Vwindow_nest): Rename to Vwindow_combination_limit.
9525 (recombine_windows, make_parent_window, make_window)
9526 (Fsplit_window_internal, saved_window)
9527 (Fset_window_configuration, save_window_save): Rename all
9528 occurrences of window_nest to window_combination_limit.
9529
9530 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
9531
9532 * image.c (imagemagick_load_image): Fix typo.
9533
9534 2011-11-14 Eli Zaretskii <eliz@gnu.org>
9535
9536 * xdisp.c (display_line): Move the call to
9537 highlight_trailing_whitespace before the call to
9538 compute_line_metrics, since the latter needs to see the final
9539 faces of all the glyphs to compute ROW's hash value.
9540 Fixes assertion violations in row_equal_p. (Bug#10035)
9541
9542 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
9543
9544 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
9545 just return (bug#10044).
9546
9547 2011-11-12 Eli Zaretskii <eliz@gnu.org>
9548
9549 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
9550 with user-defined heap size. Bump the default size of the temacs
9551 heap to 27MB, to avoid memory warning when running temacs.
9552 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
9553
9554 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
9555 current_matrix and desired_matrix. (Bug#9990)
9556 (verify_row_hash) [XASSERTS]: New function.
9557 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
9558 that the hash value of glyph rows is correct.
9559
9560 2011-11-12 Martin Rudalics <rudalics@gmx.at>
9561
9562 * window.h (window): Remove splits slot.
9563 * window.c (Fwindow_splits, Fset_window_splits): Remove.
9564 (Fdelete_other_windows_internal, make_parent_window)
9565 (make_window, Fsplit_window_internal, Fdelete_window_internal)
9566 (Fset_window_configuration, save_window_save): Don't deal with
9567 split status of windows.
9568 (saved_window): Remove splits slot.
9569 (Vwindow_splits): Rewrite doc-string.
9570
9571 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
9572
9573 * xfns.c (unwind_create_frame):
9574 * nsfns.m (unwind_create_frame):
9575 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
9576 Vframe_list (Bug#9999).
9577
9578 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
9579
9580 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
9581
9582 2011-11-11 Kenichi Handa <handa@m17n.org>
9583
9584 * callproc.c (Fcall_process): Set the member dst_multibyte of
9585 process_coding.
9586
9587 2011-11-11 Johan Bockgård <bojohan@gnu.org>
9588
9589 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
9590 avoid a crash (bug#9496).
9591
9592 2011-11-09 Chong Yidong <cyd@gnu.org>
9593
9594 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
9595 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
9596
9597 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
9598
9599 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
9600
9601 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
9602
9603 Avoid some portability problems by eschewing 'extern inline' functions.
9604 The trivial performance wins aren't worth the portability hassles; see
9605 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
9606 et seq.
9607 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
9608 (window_box_width, window_box_left, window_box_left_offset)
9609 (window_box_right, window_box_right_offset): Undo previous change,
9610 by removing the "extern"s.
9611 * intervals.c (adjust_intervals_for_insertion)
9612 (adjust_intervals_for_deletion): Undo previous change,
9613 making these static again.
9614 (offset_intervals, temp_set_point_both, temp_set_point)
9615 (copy_intervals_to_string): No longer inline.
9616 * xdisp.c (window_text_bottom_y, window_box_width)
9617 (window_box_height, window_box_left_offset)
9618 (window_box_right_offset, window_box_left, window_box_right)
9619 (window_box): No longer inline.
9620
9621 2011-11-08 Chong Yidong <cyd@gnu.org>
9622
9623 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
9624 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
9625 Signal an error if not a live window.
9626 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
9627 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
9628
9629 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
9630
9631 * lisp.h (syms_of_abbrev): Remove declaration.
9632 Reported by CHENG Gao <chenggao@royau.me>.
9633
9634 2011-11-07 Eli Zaretskii <eliz@gnu.org>
9635
9636 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
9637 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
9638 of temacs in GUI mode.
9639
9640 2011-11-07 Martin Rudalics <rudalics@gmx.at>
9641
9642 * window.h: Declare delete_all_child_windows instead of
9643 delete_all_subwindows.
9644 * window.c (Fwindow_nest, Fset_window_nest)
9645 (Fset_window_new_total, Fset_window_new_normal)
9646 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
9647 (delete_all_subwindows): Rename to delete_all_child_windows.
9648 (Fdelete_other_windows_internal, Fset_window_configuration):
9649 Call delete_all_child_windows instead of delete_all_subwindows.
9650 * frame.c (delete_frame): Call delete_all_child_windows instead
9651 of delete_all_subwindows.
9652
9653 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
9654
9655 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
9656 This is also needed for porting to any host where GC_MARK_STACK is
9657 not GC_MAKE_GCPROS_NOOPS.
9658 (which_symbols): Use it.
9659
9660 2011-11-07 Kenichi Handa <handa@m17n.org>
9661
9662 * coding.c (coding_set_destination): Check coding->src_pos only
9663 when coding->src_object is a buffer (bug#9910).
9664
9665 * process.c (send_process): Set the member src_multibyte of coding
9666 to 0 (bug#9911) when sending a unibyte text.
9667
9668 * callproc.c (Fcall_process): Set the member src_multibyte of
9669 process_coding to 0 (bug#9912).
9670
9671 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9672
9673 * xmenu.c (cleanup_widget_value_tree): New function.
9674 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
9675 calling free_menubar_widget_value_tree directly (Bug#9830).
9676
9677 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
9678
9679 Fix some portability problems with 'inline'.
9680 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
9681 (window_box_width, window_box_left, window_box_left_offset)
9682 (window_box_right, window_box_right_offset): Declare extern.
9683 Otherwise, these inline functions do not conform to C99 and
9684 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
9685 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
9686 * intervals.c (adjust_intervals_for_insertion)
9687 (adjust_intervals_for_deletion): Now extern, because otherwise the
9688 extern inline functions 'offset_intervals' couldn't refer to it.
9689 (static_offset_intervals): Remove.
9690 (offset_intervals): Rewrite using the old contents of
9691 static_offset_intervals. The old version didn't conform to C99
9692 because an extern inline function contained a reference to an
9693 identifier with static linkage.
9694
9695 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
9696
9697 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
9698 GC.
9699
9700 2011-11-06 Eli Zaretskii <eliz@gnu.org>
9701
9702 * xdisp.c (init_iterator, reseat_to_string): Don't set the
9703 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
9704 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
9705 return Qleft_to_right.
9706
9707 2011-11-06 Chong Yidong <cyd@gnu.org>
9708
9709 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
9710 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
9711 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
9712 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
9713 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
9714 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
9715 (Fwindow_vscroll): Doc fix.
9716 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
9717 argument, since it makes no sense to pass a live window and for
9718 consistency with window-child.
9719
9720 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
9721
9722 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
9723 support MSVC.
9724
9725 2011-11-05 Jason Rumney <jasonr@gnu.org>
9726
9727 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
9728 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
9729 fonts (Bug#6029).
9730 (add_font_entity_to_list): Fix logic errors in mixed boolean and
9731 bitwise arithmetic preventing use of unicode-sip and non-truetype
9732 opentype fonts.
9733
9734 2011-11-05 Eli Zaretskii <eliz@gnu.org>
9735
9736 * s/ms-w32.h (fstat, stat, utime): Move redirections to
9737 "emacs"-only part.
9738
9739 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
9740 initialization code to keep similarity to xfns.c after changes
9741 from 2011-11-05.
9742
9743 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
9744
9745 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
9746 (unwind_create_frame): New function (Bug#9943).
9747 (Fx_create_frame): Restructure code to be more similar to the one in
9748 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
9749 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
9750 Move terminal->reference_count++ just before making the frame official
9751 (Bug#9943).
9752
9753 * nsterm.m (x_free_frame_resources): New function.
9754 (x_destroy_window): Move code to x_free_frame_resources.
9755
9756 * xfns.c (unwind_create_frame): Fix comment.
9757 (Fx_create_frame, x_create_tip_frame):
9758 Move terminal->reference_count++ just before making the frame
9759 official. Move initialization of image_cache_refcount and
9760 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
9761
9762 2011-11-05 Eli Zaretskii <eliz@gnu.org>
9763
9764 Support MSVC build with newer versions of Visual Studio.
9765 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
9766 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
9767 nt/gmake.defs.
9768
9769 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
9770 which are not supported by MSVC.
9771 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
9772 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
9773 bitfields.
9774 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
9775 types in bitfields.
9776 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
9777
9778 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
9779
9780 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
9781
9782 Support MSVC build with newer versions of Visual Studio.
9783 * w32.c: Don't include w32api.h for MSVC.
9784 (init_environment) [_MSC_VER]: Call sys_access, not _access.
9785
9786 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
9787 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
9788 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
9789 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
9790 e_* cousins.
9791 (alloca) [_MSC_VER]: Define to _alloca.
9792
9793 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
9794
9795 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
9796
9797 2011-11-04 Eli Zaretskii <eliz@gnu.org>
9798
9799 * xdisp.c (note_mouse_highlight): If either of
9800 previous/next-single-property-change returns nil, treat that as
9801 the beginning or the end of the buffer. (Bug#9955)
9802
9803 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
9804
9805 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
9806 label is not null (Bug#9951).
9807 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
9808 may be NULL.
9809
9810 2011-11-04 Eli Zaretskii <eliz@gnu.org>
9811
9812 * window.c (Fwindow_body_size): Mention in the doc string that the
9813 return value is in frame's canonical units. (Bug#9949)
9814
9815 2011-11-03 Eli Zaretskii <eliz@gnu.org>
9816
9817 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
9818
9819 * w32fns.c (unwind_create_frame): If needed, free the glyph
9820 matrices of the partially constructed frame. (Bug#9943)
9821 * xfns.c (unwind_create_frame): Likewise.
9822
9823 2011-11-01 Eli Zaretskii <eliz@gnu.org>
9824
9825 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
9826 Don't stop backward scan on the continuation glyph, even though
9827 its CHARPOS is positive.
9828 (mouse_face_from_buffer_pos, note_mouse_highlight):
9829 Rename cover_string to disp_string.
9830
9831 2011-11-01 Martin Rudalics <rudalics@gmx.at>
9832
9833 * window.c (temp_output_buffer_show): Don't use
9834 Vtemp_buffer_show_specifiers.
9835 (Vtemp_buffer_show_specifiers): Remove unused variable.
9836
9837 2011-10-30 Eli Zaretskii <eliz@gnu.org>
9838
9839 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
9840 past the beginning of the current glyph matrix.
9841
9842 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
9843
9844 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
9845 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
9846 HAVE_GTK3 (Bug#9869).
9847
9848 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
9849 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
9850
9851 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
9852
9853 * xterm.c: Declare x_handle_net_wm_state to return int.
9854 (handle_one_xevent): Check if we are iconified but don't have
9855 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
9856 (get_current_wm_state): Return non-zero if not hidden,
9857 check for _NET_WM_STATE_HIDDEN (Bug#9893).
9858 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
9859 (x_handle_net_wm_state): Return what get_current_wm_state returns.
9860 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
9861
9862 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
9863
9864 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
9865 so that this new function doesn't get optimized away by a
9866 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
9867
9868 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
9869
9870 * frame.h (MOUSE_HL_INFO): Remove excess parens.
9871
9872 2011-10-29 Eli Zaretskii <eliz@gnu.org>
9873
9874 Fix the `xbytecode' command.
9875 * .gdbinit (xprintbytestr): New command.
9876 (xwhichsymbols): Rename from `which'; all callers changed.
9877 (xbytecode): Print the byte-code string as well.
9878
9879 2011-10-29 Kim Storm <storm@cua.dk>
9880
9881 * alloc.c (which_symbols): New function.
9882
9883 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
9884
9885 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
9886 line. (Bug#9903)
9887
9888 2011-10-29 Glenn Morris <rgm@gnu.org>
9889
9890 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
9891 Not clear what it was for, and it causes various bugs. (Bug#9839)
9892
9893 2011-10-28 Eli Zaretskii <eliz@gnu.org>
9894
9895 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
9896 possible random value that matches one of those tested as
9897 condition to clear the mouse face.
9898
9899 2011-10-28 Chong Yidong <cyd@gnu.org>
9900
9901 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
9902
9903 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
9904
9905 * window.c (make_window): Initialize phys_cursor_on_p.
9906
9907 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9908
9909 * lisp.h (struct Lisp_Symbol): Update comments.
9910
9911 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
9912
9913 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
9914
9915 2011-10-28 Eli Zaretskii <eliz@gnu.org>
9916
9917 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
9918 <oslsachem@gmail.com> for helping to debug this.
9919
9920 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
9921 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
9922 (g_b_init_get_glyph_outline_w): New static variables.
9923 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
9924 (GetGlyphOutlineW_Proc): New typedefs.
9925 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
9926 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
9927 New functions.
9928 (w32font_open_internal, compute_metrics):
9929 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
9930 instead of calling the "wide" APIs directly.
9931
9932 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
9933
9934 * w32.h (syms_of_w32font): Add prototype.
9935
9936 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
9937
9938 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
9939 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
9940 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
9941 (Fmove_to_window_line): Doc fix.
9942
9943 2011-10-27 Chong Yidong <cyd@gnu.org>
9944
9945 * process.c (make_process): Set gnutls_state to NULL.
9946
9947 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
9948 non-NULL, regardless of GNUTLS_INITSTAGE.
9949 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
9950 an error. Set process slots as soon as we allocate them.
9951
9952 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
9953
9954 2011-10-27 Chong Yidong <cyd@gnu.org>
9955
9956 * gnutls.c (emacs_gnutls_deinit): New function.
9957 Deallocate credentials structures as well as calling gnutls_deinit.
9958 (Fgnutls_deinit, Fgnutls_boot): Use it.
9959
9960 * process.c (make_process): Initialize GnuTLS credentials to NULL.
9961 (deactivate_process): Call emacs_gnutls_deinit.
9962
9963 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
9964
9965 * image.c (x_create_x_image_and_pixmap):
9966 * w32.c (sys_rename, w32_delayed_load):
9967 * w32font.c (fill_in_logfont):
9968 * w32reg.c (x_get_string_resource): Silence compiler warnings.
9969
9970 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
9971
9972 * w32fns.c (w32_default_color_map): New function,
9973 extracted from Fw32_default_color_map.
9974 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
9975
9976 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
9977
9978 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
9979
9980 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9981
9982 * keyboard.c (test_undefined): New function (bug#9751).
9983 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
9984
9985 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
9986
9987 * sysdep.c (init_sys_modes): Fix the check for the controlling
9988 terminal (Bug#6649).
9989
9990 2011-10-20 Eli Zaretskii <eliz@gnu.org>
9991
9992 * dispextern.h (struct bidi_it): New member next_en_type.
9993
9994 * bidi.c (bidi_line_init): Initialize the next_en_type member.
9995 (bidi_resolve_explicit_1): When next_en_pos is valid for the
9996 current character, check also for next_en_type being WEAK_EN.
9997 (bidi_resolve_weak): Don't enter the expensive loop if the current
9998 position is before next_en_pos. Record the bidi type of the first
9999 non-ET, non-BN character we find, in addition to its position.
10000 (bidi_level_of_next_char): Invalidate next_en_type when
10001 next_en_pos is over-stepped.
10002
10003 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
10004
10005 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
10006 * editfns.c: Rewrite current-time-zone so that it invokes
10007 the equivalent of (format-time-string "%Z") to get the time zone name.
10008 This fixes a bug when the time zone name contains characters that
10009 need converting from the system time locale to Emacs internal format.
10010 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
10011 that patch fixed format-time-string to do the conversion, but
10012 I forgot to fix current-time-zone.
10013 (format_time_string): New function, containing most of
10014 what Fformat_time_string used to contain.
10015 (Fformat_time_string): Rewrite in terms of format_time_string.
10016 This doesn't change this function's behavior.
10017 (current-time-zone): Rewrite to use format_time_string.
10018 This fixes the bug reported by Michael Schierl in
10019 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
10020 Jason Rumney's 2007-06-07 change worked around this bug, but
10021 didn't fix it.
10022 * systime.h (tzname, timezone): Remove no-longer-used declarations.
10023
10024 2011-10-19 Eli Zaretskii <eliz@gnu.org>
10025
10026 * xdisp.c (start_display): If the character at POS is displayed
10027 via a display vector, reset IT->current.dpvec_index to zero.
10028 (try_window_reusing_current_matrix): If a line ends in a display
10029 vector or the next line starts in a display vector, continue
10030 redrawing the window even though the character position of
10031 start_row was reached.
10032 (Bug#9771, part 2)
10033
10034 2011-10-18 Chong Yidong <cyd@gnu.org>
10035
10036 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
10037 with nobreak-char-display too.
10038
10039 2011-10-18 Eli Zaretskii <eliz@gnu.org>
10040
10041 Fix part 3 of bug#9771.
10042 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
10043 (bidi_resolve_neutral): Don't enter the expensive loop looking for
10044 non-neutral characters if the current character is a paragraph
10045 separator (a.k.a. Newline). This avoids running the same
10046 expensive loop twice, once when we consume the preceding newline
10047 and the other time when the line actually needs to be displayed.
10048 Avoid the loop when we see neutrals on the base embedding level
10049 following a character whose directionality is the same as the
10050 paragraph's. This avoids running the expensive loop when a line
10051 ends in a long sequence of neutrals, like control characters.
10052 Add assertion against STRONG_AL type. Slightly rearrange code
10053 that determines the type of a neutral given the first non-neutral
10054 that follows it.
10055 (bidi_level_of_next_char): Set next_en_pos to zero when
10056 invalidating its info.
10057
10058 2011-10-17 Eli Zaretskii <eliz@gnu.org>
10059
10060 * xdisp.c (push_display_prop): Determine whether to record string
10061 or buffer position by IT->string, not by IT->method. Allow
10062 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
10063 (move_it_vertically_backward): Don't look for character position
10064 immediately after the newline when in a continuation line.
10065 (Bug#9771, part 1)
10066
10067 2011-10-15 Martin Rudalics <rudalics@gmx.at>
10068
10069 * window.c (coordinates_in_window): Rewrite and delabelize
10070 vertical border check. (Bug#5357) (Bug#9618)
10071
10072 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
10073
10074 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
10075 errors in XSetWindowBorder (bug#9310).
10076
10077 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
10078
10079 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
10080 avoid crash when xmalloc overrun checking is enabled.
10081
10082 2011-10-13 Eli Zaretskii <eliz@gnu.org>
10083
10084 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
10085 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
10086 cursor motion with <left> and <right> arrow keys.
10087
10088 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
10089 some callers set that themselves.
10090
10091 2011-10-12 Eli Zaretskii <eliz@gnu.org>
10092
10093 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
10094 display string and the previous row comes from the same string and
10095 is empty. (Bug#9739) (Bug#9738)
10096
10097 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
10098
10099 * doc.c (get_doc_string): Encode file name (bug#9735).
10100
10101 2011-10-12 Eli Zaretskii <eliz@gnu.org>
10102
10103 * bidi.c (bidi_level_of_next_char):
10104 * xdisp.c (get_visually_first_element): Remove old incorrect
10105 comments regarding the Unicode Line Separator character.
10106
10107 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
10108
10109 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
10110
10111 * alloc.c (Fgc_status): Do not access beyond zombies array
10112 boundary if nzombies > MAX_ZOMBIES.
10113 * alloc.c (dump_zombies): Add missing format specifier.
10114
10115 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
10116
10117 * xdisp.c (set_cursor_from_row): Simplify conditionals,
10118 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
10119
10120 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
10121 Some packages use them to denote characters with modifiers.
10122
10123 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
10124
10125 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
10126 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
10127 matching a pp-number. Rename parameter var to var1.
10128
10129 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10130
10131 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
10132
10133 2011-10-08 Glenn Morris <rgm@gnu.org>
10134
10135 * callint.c (Fcall_interactively): Give a more explicit error for the
10136 'c' case with a non-character input. (Bug#8479)
10137
10138 2011-10-08 Eli Zaretskii <eliz@gnu.org>
10139
10140 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
10141 lines.
10142 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
10143 lines that are hscrolled on the left.
10144
10145 * dispnew.c (buffer_posn_from_coords): Account for a possible
10146 presence of header-line. (Bug#4426)
10147
10148 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
10149
10150 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
10151 Don't advertise functionality which we discourage or doesn't work.
10152
10153 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
10154
10155 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
10156 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
10157 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
10158 this makes Emacs dump core during garbage collection on rare
10159 occasions. sizeof is obviously inferior to offsetof here, so
10160 stick with offsetof.
10161 (GC_POINTER_ALIGNMENT): New macro.
10162 (mark_memory): Omit 3rd (offset) arg; caller changed.
10163 Don't assume EMACS_INT alignment is the same as pointer alignment.
10164
10165 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10166
10167 * keyboard.c (read_key_sequence_remapped): New var.
10168 (read_key_sequence): Compute remapping in the right buffer.
10169 (command_loop_1): Use read_key_sequence's remapping directly.
10170
10171 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
10172
10173 * dired.c (file_name_completion): Don't expand file name.
10174 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
10175 before checking file name handler.
10176
10177 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
10178 they've been requested explicitly (bug#9591).
10179
10180 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
10181
10182 * keymap.c (Fsingle_key_description): Use make_specified_string
10183 instead of build_string to build string from push_key_description.
10184 (Bug#5193)
10185
10186 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
10187
10188 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
10189 This fixes a Y2038 bug on 64-bit hosts.
10190 * buffer.c (reset_buffer):
10191 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
10192 (Fclear_buffer_auto_save_failure):
10193 Use 0, not -1, to represent an unset failure time, since time_t
10194 might not be signed.
10195
10196 Remove dependency on glibc malloc internals.
10197 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10198 Move back here from lisp.h, but with their new implementations.
10199 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10200 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
10201 * charset.c (charset_table_init): New static var.
10202 (syms_of_charset): Use it instead of xmalloc. This removes a
10203 dependency on glibc malloc internals. See Eli Zaretskii's comment in
10204 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
10205 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10206 Move back to alloc.c.
10207 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10208 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
10209
10210 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
10211
10212 * nsterm.m (windowDidResize): Call x_set_window_size only when
10213 ns_in_resize is true. Otherwise set pixelwidth/height and
10214 call change_frame_size (Bug#9628).
10215
10216 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
10217
10218 Port --enable-checking=all to Fedora 14 x86-64.
10219 * charset.c (syms_of_charset): Also account for glibc malloc's
10220 internal overhead when calculating the initial malloc maximum.
10221
10222 Port --enable-checking=all to Fedora 14 x86.
10223 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10224 Move to lisp.h.
10225 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
10226 (overrun_check_realloc, overrun_check_free):
10227 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
10228 That way, xmalloc returns a properly-aligned pointer even if
10229 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
10230 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
10231 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
10232 into account when calculating the initial malloc maximum.
10233 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10234 Move here from alloc.c, so that charset.c can use it too.
10235 Properly align; the old code wasn't right for common 32-bit hosts
10236 when configured with --enable-checking=all.
10237 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10238 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
10239
10240 2011-09-29 Eli Zaretskii <eliz@gnu.org>
10241
10242 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
10243 use EDOM.
10244
10245 2011-09-28 Eli Zaretskii <eliz@gnu.org>
10246
10247 * xdisp.c (compute_display_string_end): If there's no display
10248 string at CHARPOS, return -1.
10249
10250 * bidi.c (bidi_fetch_char): When compute_display_string_end
10251 returns a negative value, treat the character as a normal
10252 character not covered by a display string. (Bug#9624)
10253
10254 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
10255
10256 * lread.c (Fread_from_string): Fix typo in docstring.
10257
10258 2011-09-27 Eli Zaretskii <eliz@gnu.org>
10259
10260 * xdisp.c (handle_invisible_prop): If invisible text ends on a
10261 newline, reseat the iterator instead of bidi-iterating there one
10262 character at a time. (Bug#9610)
10263 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
10264 TO_CHARPOS if the bidi iterator is at base embedding level.
10265
10266 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
10267
10268 * lread.c (readevalloop): Use correct code for NBSP.
10269 (read1): Likewise. (Bug#9608)
10270
10271 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
10272
10273 * dbusbind.c (Fdbus_register_signal): When service is not
10274 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
10275
10276 2011-09-25 Glenn Morris <rgm@gnu.org>
10277
10278 * buffer.c (truncate-lines): Doc fix.
10279
10280 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
10281
10282 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
10283 (Fset_window_next_buffers): Doc fix.
10284
10285 2011-09-24 Glenn Morris <rgm@gnu.org>
10286
10287 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
10288
10289 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
10290
10291 Fix minor problems found by static checking.
10292 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
10293 * indent.c (Fvertical_motion): Fix == vs = typo.
10294
10295 2011-09-24 Eli Zaretskii <eliz@gnu.org>
10296
10297 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
10298 Default value is now t. Doc fix.
10299
10300 * indent.c (Fvertical_motion): Compute and apply the overshoot
10301 logic when moving up, not only when moving down. Fix the
10302 confusing name and values of the it_overshoot_expected variable;
10303 logic changes accordingly. (Bug#9254) (Bug#9549)
10304
10305 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
10306 CHARPOS is covered by a display string which includes newlines.
10307 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
10308 is covered by a display string with embedded newlines.
10309
10310 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
10311
10312 * dbusbind.c (Fdbus_register_signal): Add match rule to
10313 Vdbus_registered_objects_table. (Bug#9581)
10314 (Fdbus_register_method, Vdbus_registered_objects_table):
10315 Fix docstring.
10316
10317 2011-09-24 Jim Meyering <meyering@redhat.com>
10318
10319 do not ignore write error for any output size
10320 The previous change was incomplete.
10321 While it makes emacs --batch detect the vast majority of stdout
10322 write failures, errors were still ignored whenever the output size is
10323 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
10324 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
10325 && echo FAIL: ignored write error
10326 FAIL: ignored write error
10327 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
10328 && echo FAIL: ignored write error
10329 FAIL: ignored write error
10330 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
10331
10332 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
10333
10334 * emacs.c (Fkill_emacs): In noninteractive mode exit
10335 non-successfully if a write error occurred on stdout. (Bug#9574)
10336
10337 2011-09-21 Eli Zaretskii <eliz@gnu.org>
10338
10339 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
10340 the xassert test.
10341
10342 * dispextern.h (struct it): Update the comment documenting what
10343 can it->OBJECT be.
10344
10345 2011-09-20 Eli Zaretskii <eliz@gnu.org>
10346
10347 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
10348 a display string, extend search for cursor position to end of row.
10349 (find_row_edges): If the row ends in a newline from a display
10350 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
10351 Handle the case of a display string with multiple newlines.
10352 (Fcurrent_bidi_paragraph_direction): Fix search for previous
10353 non-empty line. Fixes confusing cursor motion with arrow keys at
10354 the beginning of a line that starts with whitespace.
10355
10356 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10357
10358 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
10359 (bug#9493).
10360
10361 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
10362
10363 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
10364 boolean (Bug#9154).
10365
10366 2011-09-18 Eli Zaretskii <eliz@gnu.org>
10367
10368 * xdisp.c (display_line): Record maximum and minimum buffer
10369 positions even if no glyphs were produced (e.g., by a zero-width
10370 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
10371 buffer positions that will be removed from the glyph row because
10372 they don't fit.
10373 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
10374 column is beyond frame width: don't subtract 1 "pixel" when
10375 computing width of the stretch.
10376 (reseat_at_next_visible_line_start): Undo the change made on
10377 2011-09-17 that saved paragraph information and restored it after
10378 the call to `reseat'. (Bug#9545)
10379
10380 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
10381
10382 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
10383 and turn window cursor on if cleared (Bug#9415).
10384
10385 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
10386
10387 * search.c (boyer_moore): Take unibyte characters from pattern
10388 literally. (Bug#9458)
10389
10390 2011-09-18 Eli Zaretskii <eliz@gnu.org>
10391
10392 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
10393
10394 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
10395
10396 Fix minor problem found by static checking.
10397 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
10398 initialized, to pacify gcc -Wuninitialized.
10399
10400 * fileio.c: Report proper errno when syscall falls.
10401 (Finsert_file_contents): Save and restore errno,
10402 so that report_file_error outputs the correct diagnostic.
10403 (Fwrite_region) [CLASH_DETECTION]: Likewise.
10404
10405 2011-09-18 Eli Zaretskii <eliz@gnu.org>
10406
10407 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
10408
10409 2011-09-17 Eli Zaretskii <eliz@gnu.org>
10410
10411 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
10412 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
10413
10414 2011-09-17 Eli Zaretskii <eliz@gnu.org>
10415
10416 * xdisp.c (reseat_at_next_visible_line_start): Keep information
10417 about the current paragraph and restore it after the call to reseat.
10418
10419 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
10420 (bidi_find_paragraph_start): Search back for paragraph beginning
10421 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
10422 (bidi_move_to_visually_next): Only trigger paragraph-related
10423 computations when the last character is a newline or at EOB, not
10424 just any NEUTRAL_B. (Bug#9470)
10425
10426 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
10427 truncated lines if point is covered by a display string. (Bug#9524)
10428
10429 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
10430
10431 * xselect.c: Relax test for outgoing X longs (Bug#9498).
10432 (cons_to_x_long): New function.
10433 (lisp_data_to_selection_data): Use it. Correct the test for
10434 short-versus-long data; it was negated. Break out of vector
10435 loop, for efficiency, when a long datum is discovered.
10436
10437 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10438
10439 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
10440
10441 2011-09-16 Eli Zaretskii <eliz@gnu.org>
10442
10443 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
10444 GCC PR/17406) by declaring this function with external scope.
10445
10446 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
10447
10448 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
10449 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
10450
10451 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
10452
10453 * editfns.c (Fformat): Correctly handle text properties on "%%".
10454
10455 2011-09-15 Eli Zaretskii <eliz@gnu.org>
10456
10457 * xterm.c (x_draw_composite_glyph_string_foreground):
10458 * w32term.c (x_draw_composite_glyph_string_foreground):
10459 * term.c (encode_terminal_code):
10460 * composite.c (composition_update_it, get_composition_id):
10461 * xdisp.c (get_next_display_element)
10462 (fill_composite_glyph_string): Add comments about special meaning
10463 of TAB characters in a composition.
10464
10465 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
10466
10467 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
10468 This occurs when processing a multibyte format.
10469 Problem reported by Wolfgang Jenker.
10470
10471 2011-09-15 Johan Bockgård <bojohan@gnu.org>
10472
10473 * xdisp.c (try_cursor_movement): Only check for exact match if
10474 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
10475
10476 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
10477
10478 Remove unused external symbols.
10479 * dispextern.h (calc_pixel_width_or_height): Remove decl.
10480 * xdisp.c (calc_pixel_width_or_height): Now static.
10481 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
10482 * indent.c (check_display_width):
10483 * w32term.c: Fix comment to match code.
10484 * xterm.c, xterm.h (x_catching_errors): Remove.
10485
10486 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
10487
10488 * xselect.c: Use signed conversions more consistently (Bug#9498).
10489 (selection_data_to_lisp_data): Assume incoming selection data are
10490 signed integers, not unsigned. This is to be consistent with
10491 outgoing selection data, which was modified to use signed integers
10492 in as part of the fix to Bug#9196 in response to Jan D.'s comment
10493 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
10494 expects long, not unsigned long.
10495
10496 2011-09-14 Eli Zaretskii <eliz@gnu.org>
10497
10498 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
10499 computation of loop end. Reported by Johan Bockgård
10500 <bojohan@gnu.org>.
10501
10502 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
10503
10504 * frame.c (Fother_visible_frames_p): Function deleted.
10505
10506 2011-09-12 Eli Zaretskii <eliz@gnu.org>
10507
10508 * indent.c (compute_motion): Process display vector front to back
10509 rather than the other way around. (Bug#2496)
10510
10511 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10512
10513 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
10514
10515 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
10516
10517 * minibuf.c (Fread_from_minibuffer): Doc fix.
10518
10519 2011-09-11 Eli Zaretskii <eliz@gnu.org>
10520
10521 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
10522 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
10523
10524 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10525
10526 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
10527 value for non-existent files.
10528
10529 2011-09-11 Eli Zaretskii <eliz@gnu.org>
10530
10531 * fileio.c (Finsert_file_contents): If the file cannot be opened,
10532 set its "size" to -1. This will set the modtime_size field of
10533 the corresponding buffer to -1, which is what
10534 verify-visited-file-modtime expects for files that do not exist.
10535 (Bug#9139)
10536
10537 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
10538
10539 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
10540 here ...
10541 * lisp.h: ... from here. push_key_description is no longer
10542 defined in keyboard.c, so its declaration should not be in
10543 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
10544 logically belongs with push_key_description.
10545
10546 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
10547
10548 * buffer.h: Include <sys/types.h> instead of <time.h>.
10549 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
10550 Problem reported by Herbert J. Skuhra.
10551
10552 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10553
10554 * xml.c (parse_region): Make the parsing work for
10555 non-comment-starting XML files again (bug#9144).
10556
10557 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
10558
10559 * image.c (gif_load): Fix calculation of bottom and right corner.
10560 (Bug#9468)
10561
10562 2011-09-10 Eli Zaretskii <eliz@gnu.org>
10563
10564 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
10565 redisplay in small windows.
10566
10567 2011-09-09 Eli Zaretskii <eliz@gnu.org>
10568
10569 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
10570
10571 2011-09-08 Martin Rudalics <rudalics@gmx.at>
10572
10573 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
10574 Operate on live windows only.
10575
10576 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
10577
10578 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
10579
10580 2011-09-07 Eli Zaretskii <eliz@gnu.org>
10581
10582 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
10583 only under bidi iteration.
10584
10585 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
10586
10587 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
10588
10589 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
10590
10591 isnan: Fix porting problem to Solaris 10 with bundled gcc.
10592 Without this fix, the command to link temacs failed due to an
10593 undefined symbol __builtin_isnan. This is because
10594 /usr/include/iso/math_c99.h #defines isnan(x) to
10595 __builtin_isnan(x), but the bundled gcc, which identifies itself
10596 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
10597 a __builtin_isnan.
10598 * floatfns.c (isnan): #undef, and then #define to a clone of
10599 what's in data.c.
10600 (Fisnan): Always define, since it's always available now.
10601 (syms_of_floatfns): Always define isnan at the Lisp level.
10602
10603 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
10604
10605 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
10606
10607 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
10608
10609 * fileio.c: Fix bugs with large file offsets (Bug#9428).
10610 The previous code assumed that file offsets (off_t values) fit in
10611 EMACS_INT variables, which is not true on typical 32-bit hosts.
10612 The code messed up by falsely reporting buffer overflow in cases
10613 such as (insert-file-contents "big" nil 1 2) into an empty buffer
10614 when "big" contains more than 2**29 bytes, even though this
10615 inserts just one byte and does not overflow the buffer.
10616 (Finsert_file_contents): Store file offsets as off_t
10617 values, not as EMACS_INT values. Check for overflow when
10618 converting between EMACS_INT and off_t. When checking for
10619 buffer overflow or for overlap, take the offsets into account.
10620 Don't use EMACS_INT for small values where int suffices.
10621 When checking for overlap, fix a typo: ZV was used where
10622 ZV_BYTE was intended.
10623 (Fwrite_region): Don't assume off_t fits into 'long'.
10624 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
10625
10626 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
10627
10628 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
10629
10630 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
10631
10632 sprintf-related integer and memory overflow issues (Bug#9412).
10633
10634 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
10635 (esprintf, exprintf, evxprintf): New functions.
10636 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
10637 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
10638 (modify_event_symbol): Do not assume that the length of
10639 name_alist_or_stem is safe to alloca and fits in int.
10640 (Fexecute_extended_command): Likewise for function name and binding.
10641 (Frecursion_depth): Wrap around reliably on integer overflow.
10642 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
10643 since some callers pass EMACS_INT values.
10644 (Fsingle_key_description): Don't crash if symbol name contains more
10645 than MAX_ALLOCA bytes.
10646 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
10647 (get_minibuffer): Arg is now EMACS_INT, not int.
10648 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
10649 (esprintf, exprintf, evxprintf): New decls.
10650 * window.h (command_loop_level, minibuf_level): Reflect API changes.
10651
10652 * dbusbind.c (signature_cat): New function.
10653 (xd_signature, Fdbus_register_signal):
10654 Do not overrun buffer; instead, report string overflow.
10655
10656 * dispnew.c (add_window_display_history): Don't overrun buffer.
10657 Truncate instead; this is OK since it's just a log.
10658
10659 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
10660 even if the time zone offset is outlandishly large.
10661 Don't mishandle offset == INT_MIN.
10662
10663 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
10664 when creating daemon; the previous buffer-overflow check was incorrect.
10665
10666 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
10667 which has the guts of the old verror function.
10668
10669 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
10670 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
10671
10672 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
10673 (font_unparse_xlfd): Don't blindly alloca long strings.
10674 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
10675 fits in int, when using sprintf. Use single snprintf to count
10676 length of string rather than counting it via multiple sprintfs;
10677 that's simpler and more reliable.
10678 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
10679 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
10680 sprintf, in case result does not fit in int.
10681
10682 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
10683 (fontset_from_font): Print it.
10684
10685 * frame.c (tty_frame_count): Now printmax_t, not int.
10686 (make_terminal_frame, set_term_frame_name): Print it.
10687 (x_report_frame_params): In X, window IDs are unsigned long,
10688 not signed long, so print them as unsigned.
10689 (validate_x_resource_name): Check for implausibly long names,
10690 and don't assume name length fits in 'int'.
10691 (x_get_resource_string): Don't blindly alloca invocation name;
10692 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
10693 not fit in int.
10694
10695 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
10696 (xg_check_special_colors, xg_set_geometry):
10697 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
10698
10699 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
10700 Use esprintf, not sprintf, in case result does not fit in int.
10701
10702 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
10703 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
10704 it as a large positive number.
10705 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
10706 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
10707
10708 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
10709 in case result does not fit in int.
10710
10711 * print.c (float_to_string): Detect width overflow more reliably.
10712 (print_object): Make sprintf buffer a bit bigger, to avoid potential
10713 buffer overrun. Don't assume list length fits in 'int'. Treat
10714 print length of 0 as 0, not as infinity; to be consistent with other
10715 uses of print length in this function. Don't overflow print length
10716 index. Don't assume hash table size fits in 'long', or that
10717 vectorlike size fits in 'unsigned long'.
10718
10719 * process.c (make_process): Use printmax_t, not int, to format
10720 process-name gensyms.
10721
10722 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
10723
10724 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
10725 to avoid potential buffer overrun.
10726
10727 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
10728 if X resource line is longer than 512 bytes.
10729
10730 * xfns.c (x_window): Make sprintf buffer a bit bigger
10731 to avoid potential buffer overrun.
10732
10733 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
10734
10735 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
10736
10737 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
10738
10739 Integer overflow fixes for scrolling, etc.
10740 Without these, Emacs silently mishandles large integers sometimes.
10741 For example, "C-u 4294967297 M-x recenter" was treated as if
10742 it were "C-u 1 M-x recenter" on a typical 64-bit host.
10743
10744 * xdisp.c (try_window_id): Check Emacs fixnum range before
10745 converting to 'int'.
10746
10747 * window.c (window_scroll_line_based, Frecenter):
10748 Check that an Emacs fixnum is in range before assigning it to 'int'.
10749 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
10750 values converted from Emacs fixnums.
10751 (Frecenter): Don't wrap around a line count if it is out of 'int'
10752 range; instead, treat it as an extreme value.
10753 (Fset_window_configuration, compare_window_configurations):
10754 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
10755
10756 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
10757 that can exceed INT_MAX. Check that EMACS_INT value is in range
10758 before assigning it to the (possibly-narrower) index.
10759 (match_limit): Don't assume that a fixnum can fit in 'int'.
10760
10761 * print.c (print_object): Use ptrdiff_t, not int, for index that can
10762 exceed INT_MAX.
10763
10764 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
10765 (Fvertical_motion): Don't wrap around LINES values that don't fit
10766 in 'int'. Instead, treat them as extreme values. This is good
10767 enough for windows, which can't have more than INT_MAX lines anyway.
10768
10769 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10770
10771 * Require libxml/parser.h to avoid compilation warning.
10772
10773 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
10774
10775 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
10776 since this reportedly can destroy thread storage.
10777
10778 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
10779
10780 * syntax.c (find_defun_start): Update all cache variables if
10781 exiting early (Bug#9401).
10782
10783 2011-08-30 Eli Zaretskii <eliz@gnu.org>
10784
10785 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
10786
10787 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
10788 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
10789 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
10790
10791 * term.c (tty_append_glyph): New function.
10792 (produce_stretch_glyph): Static function and its prototype deleted.
10793
10794 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
10795 Add prototypes.
10796
10797 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
10798
10799 * image.c (parse_image_spec): Check for nonnegative, not for positive,
10800 when checking :margin (Bug#9390).
10801 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
10802 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
10803 so that the name doesn't mislead. All uses changed.
10804
10805 2011-08-28 Johan Bockgård <bojohan@gnu.org>
10806
10807 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
10808 set_tty_hooks.
10809
10810 2011-08-27 Eli Zaretskii <eliz@gnu.org>
10811
10812 * xdisp.c (move_it_to): Don't bail out early when reaching
10813 position beyond to_charpos, if we are scanning backwards.
10814 (move_it_vertically_backward): When DY == 0, make sure we get to
10815 the first character in the line after the newline.
10816
10817 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
10818
10819 * ccl.c: Improve and simplify overflow checking (Bug#9196).
10820 (ccl_driver): Do not generate an out-of-range pointer.
10821 (Fccl_execute_on_string): Remove unnecessary check for
10822 integer overflow, noted by Stefan Monnier in
10823 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
10824 Remove a FIXME that didn't need fixing.
10825 Simplify the newly-introduced buffer reallocation code.
10826
10827 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
10828
10829 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
10830
10831 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
10832
10833 Integer and memory overflow issues (Bug#9196).
10834
10835 * doc.c (get_doc_string): Rework so that
10836 get_doc_string_buffer_size is the actual buffer size, rather than
10837 being 1 less than the actual buffer size; this makes xpalloc more
10838 convenient.
10839
10840 * image.c (x_allocate_bitmap_record, cache_image):
10841 * xselect.c (Fx_register_dnd_atom):
10842 Simplify previous changes by using xpalloc.
10843
10844 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
10845 since either will do and ptrdiff_t is convenient with xpalloc.
10846
10847 * charset.c (charset_table_size)
10848 (struct charset_sort_data.priority): Now ptrdiff_t.
10849 (charset_compare): Don't overflow if priorities differ greatly.
10850 (Fsort_charsets): Don't assume list length fits in int.
10851 Check for size-calculation overflow when allocating sort data.
10852 (syms_of_charset): Allocate an initial charset table that is
10853 just under 64 KiB, to avoid problems with glibc malloc and mmap.
10854
10855 * cmds.c (internal_self_insert): Check for size-calculation overflow.
10856
10857 * composite.h (struct composition.glyph_len): Now int, not unsigned.
10858 The actual value is always <= INT_MAX, and leaving it unsigned made
10859 overflow checking harder.
10860
10861 * dispextern.h (struct glyph_matrix.rows_allocated)
10862 (struct face_cache.size): Now ptrdiff_t, for convenience in use
10863 with xpalloc. The values are still always <= INT_MAX.
10864
10865 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
10866
10867 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
10868 (SAFE_NALLOCA): New macro.
10869
10870 * region-cache.c (struct boundary.pos, find_cache_boundary)
10871 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
10872 (set_cache_region, invalidate_region_cache)
10873 (revalidate_region_cache, know_region_cache, region_cache_forward)
10874 (region_cache_backward, pp_cache):
10875 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
10876 so that ptrdiff_t * can be passed to xpalloc.
10877 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
10878 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
10879 (pp_cache): Don't assume cache_len fits in int.
10880 * region-cache.h: Adjust extern decls to match.
10881
10882 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
10883 EMACS_INT, since either will do, for xpalloc.
10884
10885 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
10886 (xnmalloc, xnrealloc, xpalloc): New functions.
10887
10888 * bidi.c (bidi_shelve_header_size): New constant.
10889 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
10890 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
10891
10892 * bidi.c (bidi_cache_shrink):
10893 * buffer.c (overlays_at, overlays_in, record_overlay_string)
10894 (overlay_strings):
10895 Don't update size of array until after memory allocation succeeds,
10896 because xmalloc/xrealloc may not return.
10897 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
10898 now that we have proper integer overflow checking.
10899 (record_overlay_string, overlay_strings): Catch overflows when
10900 calculating size of overlay_str_buf.
10901
10902 * callproc.c (Fcall_process): Check for size overflow when
10903 calculating size of args2.
10904 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
10905 Normally we prefer signed values, but sticking with ptrdiff_t would
10906 require adding more-complicated checks.
10907
10908 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
10909 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
10910 Redo buffer-overflow calculations to avoid integer overflow.
10911 Add a FIXME comment where memory seems to be over-allocated.
10912
10913 * character.c (Fstring): Check for size-calculation overflow.
10914
10915 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
10916 unnecessary integer overflow. Check for size overflow.
10917 (encode_coding_object): Don't update size until xmalloc succeeds.
10918
10919 * composite.c (get_composition_id): Check for overflow in glyph
10920 length calculations.
10921
10922 Integer and memory overflow fixes for display code.
10923 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
10924 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
10925 (scrolling_window): Check for overflow in size calculations.
10926 (line_draw_cost, realloc_glyph_pool, add_row_entry):
10927 Don't assume glyph table len fits in int.
10928 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
10929 (row_table_size): Now ptrdiff_t, not int.
10930 (scrolling_window): Avoid overflow in size calculations.
10931 Don't update size until allocation succeeds.
10932 * fns.c (concat): Check for overflow in size calculations.
10933 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
10934 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
10935 (NEXT_ALMOST_PRIME_LIMIT): New constant.
10936
10937 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
10938 (get_doc_string): Check for size calculation overflow.
10939 Don't update size until allocation succeeds.
10940 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
10941 EMACS_INT, where ptrdiff_t will do.
10942 (Fsubstitute_command_keys): Check for string overflow.
10943
10944 * editfns.c (set_time_zone_rule): Don't assume environment length
10945 fits in int.
10946 (message_length): Now ptrdiff_t, not int.
10947 (Fmessage_box): Don't update size until allocation succeeds.
10948 Don't assume message length fits in int.
10949 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
10950
10951 * emacs.c (main): Do not reallocate argv, since there is a null at
10952 the end that can be overwritten, and this way there's no need to
10953 worry about size-calculation overflow.
10954 (sort_args): Check for size-calculation overflow.
10955
10956 * eval.c (init_eval_once, grow_specpdl): Don't update size until
10957 alloc succeeds.
10958 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
10959
10960 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
10961 (x_set_scroll_bar_width, x_figure_window_size):
10962 Check for integer overflow.
10963 (x_set_alpha): Do not assume XINT fits in int.
10964
10965 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
10966 This is for the members text_lines, text_cols, total_lines, total_cols,
10967 where the system imposes an 'int' limit.
10968
10969 * fringe.c (Fdefine_fringe_bitmap):
10970 Don't update size until alloc works.
10971
10972 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
10973 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
10974
10975 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
10976 Check for size-calculation overflow.
10977 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
10978 do, as we prefer signed integers.
10979 (id_to_widget.max_size, id_to_widget.used)
10980 (xg_store_widget_in_map, xg_remove_widget_from_map)
10981 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
10982 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
10983 Use and return ptrdiff_t, not int.
10984 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
10985 * gtkutil.h: Change prototypes to match the above.
10986
10987 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
10988 are duplicate now that they've been promoted to lisp.h.
10989 (x_allocate_bitmap_record, x_alloc_image_color)
10990 (make_image_cache, cache_image, xpm_load):
10991 Don't update size until alloc is done.
10992 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
10993 (x_detect_edges):
10994 Check for size calculation overflow.
10995 (ct_colors_allocated_max): New constant.
10996 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
10997 overflow.
10998
10999 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
11000 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
11001 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
11002 Use ptrdiff_t, not int, to count maps.
11003 (read_char_minibuf_menu_prompt): Check for overflow in size
11004 calculations. Don't update size until allocation succeeds.
11005 Redo calculations to avoid overflow.
11006 * keyboard.h: Change prototypes to match the above.
11007
11008 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
11009 to count maps.
11010 (current_minor_maps): Check for size calculation overflow.
11011 * keymap.h: Change prototypes to match the above.
11012
11013 * lread.c (read1, init_obarray): Don't update size until alloc done.
11014
11015 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
11016 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
11017
11018 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
11019 Now ptrdiff_t, not int.
11020 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
11021 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
11022
11023 * process.c (Fnetwork_interface_list): Check for overflow
11024 in size calculation.
11025
11026 * region-cache.c (move_cache_gap): Check for size calculation overflow.
11027
11028 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
11029 overflow. Don't bother calling xmalloc when xrealloc will do.
11030
11031 * search.c (Freplace_match): Check for size calculation overflow.
11032 (Fset_match_data): Don't assume list lengths fit in 'int'.
11033
11034 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
11035 for command line length. Do not attempt to address one before the
11036 beginning of an array, as that's not portable.
11037
11038 * term.c (max_frame_lines): Remove; unused.
11039 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
11040 not int.
11041 (encode_terminal_code, calculate_costs): Check for size
11042 calculation overflow.
11043 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
11044 table lengths and related sizes. Don't update size until alloc
11045 done. Redo calculations to avoid overflow.
11046 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
11047
11048 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
11049 subtracting pointers.
11050 (gobble_line): Check for overflow more carefully. Don't update size
11051 until alloc done.
11052
11053 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
11054 Don't update size until alloc done.
11055 Redo size calculations to avoid overflow.
11056 Check for size calculation overflow.
11057 (main) [DEBUG]: Fix typo in invoking tparam1.
11058
11059 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
11060 Use ptrdiff_t, not int, for sizes.
11061 (store_mode_line_noprop_char): Don't update size until alloc done.
11062
11063 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
11064 Use ptrdiff_t, not int, for sizes.
11065 (Finternal_make_lisp_face, cache_face):
11066 Check for size calculation overflow.
11067 (cache_face): Treat size calculation overflows as if they were
11068 memory exhaustion (the usual treatment), rather than aborting.
11069
11070 * xfns.c (x_encode_text, x_set_name_internal)
11071 (Fx_change_window_property): Use ptrdiff_t, not int, to count
11072 sizes, since they can exceed INT_MAX in size. Check for size
11073 calculation overflow.
11074
11075 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
11076 (xg_select): Check for size calculation overflow.
11077 Don't update size until alloc done.
11078
11079 * xrdb.c (get_environ_db): Don't assume path length fits in int,
11080 as sprintf is limited to int lengths.
11081
11082 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
11083 (X_LONG_MIN): New macros.
11084 Use them to make the following changes clearer.
11085 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
11086 This change doesn't affect the value now, but it may help remind
11087 future maintainers not to raise the value too much later.
11088 (SELECTION_QUANTUM): Remove, replacing with ...
11089 (selection_quantum): ... new function, which avoids overflow.
11090 All uses changed.
11091 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
11092 assumption that selection length fits in 'int'.
11093 (x_reply_selection_request, x_handle_selection_request)
11094 (x_get_window_property, receive_incremental_selection)
11095 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
11096 (lisp_data_to_selection_data, clean_local_selection_data):
11097 Use ptrdiff_t, not int, to record length of selection.
11098 (x_reply_selection_request, x_get_window_property)
11099 (receive_incremental_selection, x_property_data_to_lisp):
11100 Redo calculations to avoid overflow.
11101 (x_reply_selection_request): When sending hint, ceiling it at
11102 X_LONG_MAX rather than relying on wraparound overflow to send
11103 something.
11104 (x_get_window_property, receive_incremental_selection)
11105 (lisp_data_to_selection_data, x_property_data_to_lisp):
11106 Check for size-calculation overflow.
11107 (x_get_window_property, receive_incremental_selection)
11108 (lisp_data_to_selection_data, Fx_register_dnd_atom):
11109 Don't store size until memory allocation succeeds.
11110 (x_get_window_property): Plug memory leak on memory exhaustion.
11111 Don't double-block input; malloc is safe here. Don't assume 2**34
11112 - 4 fits in unsigned long. Add an xassert to check
11113 XGetWindowProperty overflow. Be more careful about overflow
11114 calculations, and distinguish size from memory overflow better.
11115 (receive_incremental_selection): When tracing, don't assume
11116 unsigned int is less than INT_MAX.
11117 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
11118 harmful) conversions of unsigned short to int.
11119 (lisp_data_to_selection_data): Don't assume that integers
11120 in the range -65535 through -1 fit in an X unsigned short.
11121 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
11122 result parameters unless successful. Rely on cons_to_unsigned
11123 to report problems with elements; the old code wasn't right anyway.
11124 (x_check_property_data): Check for int overflow; we cannot use
11125 a wider type due to X limits.
11126 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
11127
11128 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
11129
11130 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
11131 (x_term_init): Check for size calculation overflow.
11132 (x_color_cells): Don't store size until memory allocation succeeds.
11133 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
11134 Don't assume alloca size is less than MAX_ALLOCA.
11135 (x_term_init): Don't assume length fits in int (sprintf is limited
11136 to int size).
11137
11138 Use ptrdiff_t for composition IDs.
11139 * character.c (lisp_string_width):
11140 * composite.c (composition_table_size, n_compositions)
11141 (get_composition_id, composition_gstring_from_id):
11142 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
11143 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
11144 * window.c (Frecenter):
11145 Use ptrdiff_t, not int, for composition IDs.
11146 * composite.c (get_composition_id): Check for integer overflow.
11147 * composite.h: Adjust prototypes to match the above changes.
11148
11149 Use ptrdiff_t for hash table indexes.
11150 * category.c (hash_get_category_set):
11151 * ccl.c (ccl_driver):
11152 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
11153 * coding.c (coding_system_charset_list, detect_coding_system):
11154 * coding.h (struct coding_system.id):
11155 * composite.c (get_composition_id, gstring_lookup_cache):
11156 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
11157 * image.c (xpm_get_color_table_h):
11158 * lisp.h (hash_lookup, hash_put):
11159 * minibuf.c (Ftest_completion):
11160 Use ptrdiff_t for hash table indexes, not int (which is too
11161 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
11162 32-bit --with-wide-int hosts).
11163
11164 * charset.c (Fdefine_charset_internal): Check for integer overflow.
11165 Add a FIXME comment about memory leaks.
11166 (syms_of_charset): Don't assume xmalloc returns.
11167
11168 Don't assume that stated character widths fit in int.
11169 * character.c (Fchar_width, c_string_width, lisp_string_width):
11170 * character.h (CHAR_WIDTH):
11171 * indent.c (MULTIBYTE_BYTES_WIDTH):
11172 Use sanitize_char_width to avoid undefined and/or bad behavior
11173 with outlandish widths.
11174 * character.h (sanitize_tab_width): Rename from sanitize_width,
11175 now that we have two such functions. All uses changed.
11176 (sanitize_char_width): New inline function.
11177
11178 Don't assume that tab-width fits in int.
11179 * character.h (sanitize_width): New inline function.
11180 (SANE_TAB_WIDTH): New macro.
11181 (ASCII_CHAR_WIDTH): Use it.
11182 * indent.c (sane_tab_width): Remove. All uses replaced by
11183 SANE_TAB_WIDTH (current_buffer).
11184 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
11185
11186 * fileio.c: Integer overflow issues with file modes.
11187 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
11188
11189 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
11190 Remove unreachable code.
11191 (read_hex, load_charset_map_from_file): Check for integer overflow.
11192
11193 * xterm.c: Don't go over XClientMessageEvent limit.
11194 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
11195 (x_send_scroll_bar_event): Likewise. Check that the size does not
11196 exceed limits imposed by XClientMessageEvent, as well as the usual
11197 ptrdiff_t and size_t limits.
11198
11199 * keyboard.c: Overflow, signedness and related fixes.
11200 (make_lispy_movement): Use same integer type in forward decl
11201 that is used in the definition.
11202 (read_key_sequence, keyremap_step):
11203 Change bufsize argument back to int, undoing my 2011-03-30 change.
11204 We prefer signed types, and int is wide enough here.
11205 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
11206 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
11207 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
11208 length, not size_t. Use ptrdiff_t for index, not int.
11209 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
11210 possibility of integer overflow.
11211
11212 Overflow, signedness and related fixes for images.
11213
11214 * dispextern.h (struct it.stack[0].u.image.image_id)
11215 (struct_it.image_id, struct image.id, struct image_cache.size)
11216 (struct image_cache.used, struct image_cache.ref_count):
11217 * gtkutil.c (update_frame_tool_bar):
11218 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
11219 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
11220 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
11221 * nsmenu.m (update_frame_tool_bar):
11222 * xdisp.c (calc_pixel_width_or_height):
11223 * xfns.c (image_cache_refcount):
11224 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
11225 on typical 64-bit hosts.
11226
11227 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
11228 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
11229 Omit unnecessary casts to int.
11230 (parse_image_spec): Check that integers fall into 'int' range
11231 when the callers expect that.
11232 (image_ascent): Redo ascent calculation to avoid int overflow.
11233 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
11234 (lookup_image): Remove unnecessary tests.
11235 (xbm_image_p): Locals are now of int, not EMACS_INT,
11236 since parse_image_check makes sure they fit into int.
11237 (png_load, gif_load, svg_load_image):
11238 Prefer int to unsigned where either will do.
11239 (tiff_handler): New function, combining the cores of the
11240 old tiff_error_handler and tiff_warning_handler.
11241 This function is rewritten to use vsnprintf and thereby avoid
11242 stack buffer overflows. It uses only the features of vsnprintf
11243 that are common to both POSIX and native Microsoft.
11244 (tiff_error_handler, tiff_warning_handler): Use it.
11245 (tiff_load, gif_load, imagemagick_load_image):
11246 Don't assume :index value fits in 'int'.
11247 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
11248 (imagemagick_load_image): Check that crop parameters fit into
11249 the integer types that MagickCropImage accepts. Don't assume
11250 Vimagemagick_render_type has a nonnegative value. Don't assume
11251 size_t fits in 'long'.
11252 (gs_load): Use printmax_t to print the widest integers possible.
11253 Check for integer overflow when computing image height and width.
11254
11255 2011-08-26 Eli Zaretskii <eliz@gnu.org>
11256
11257 * xdisp.c (redisplay_window): Don't force window start if point
11258 will be invisible in the resulting window. (Bug#9324)
11259
11260 2011-08-25 Eli Zaretskii <eliz@gnu.org>
11261
11262 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
11263 the display spec is of the form `(space ...)'.
11264 (handle_display_spec): Return the value returned by
11265 handle_single_display_spec, not just 1 or zero.
11266 (handle_single_display_spec): If the display spec is of the form
11267 `(space ...)', and specifies display in the text area, return 2
11268 rather than 1.
11269 (try_cursor_movement): Check for the need to scroll more
11270 accurately, and prefer exact match for point under bidi.
11271 Don't advance `row' beyond the last row of the window.
11272
11273 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
11274 into disp_prop; all users changed.
11275
11276 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
11277 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
11278 for the text covered by the display property.
11279
11280 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
11281
11282 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
11283 Change return value to nil.
11284 (Frecord_buffer): Delete unused function.
11285
11286 2011-08-24 Eli Zaretskii <eliz@gnu.org>
11287
11288 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
11289 buffers, return left-to-right.
11290 (set_cursor_from_row): Consider candidate row a win if its glyph
11291 represents a newline and point is on that newline. Fixes cursor
11292 positioning on the newline at EOL of R2L text within L2R
11293 paragraph, and vice versa.
11294 (try_cursor_movement): Check continued rows, in addition to
11295 continuation rows. Fixes unwarranted scroll when point enters a
11296 continued line of R2L text within an L2R paragraph, or vice versa.
11297 (cursor_row_p): Consider the case of point being equal to
11298 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
11299 from the end of a short line to the beginning of a continued line
11300 of R2L text within L2R paragraph.
11301 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
11302 composed characters.
11303
11304 * bidi.c (bidi_check_type): Use xassert.
11305 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
11306 members.
11307
11308 2011-08-23 Eli Zaretskii <eliz@gnu.org>
11309
11310 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
11311 a character.
11312
11313 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
11314
11315 * nsfont.m (ns_otf_to_script): Fix typo.
11316
11317 2011-08-22 Kenichi Handa <handa@m17n.org>
11318
11319 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
11320 extra slot even if the purpose is char-code-property-table.
11321
11322 2011-08-23 Eli Zaretskii <eliz@gnu.org>
11323
11324 * xdisp.c (redisplay_window): When computing centering_position,
11325 account for the height of the header line. (Bug#8874)
11326
11327 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
11328 instead of CHAR_TO_BYTE. Fixes a crash when a completion
11329 candidate is selected by the mouse, and that candidate has a
11330 composed character under the mouse.
11331
11332 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
11333 coordinates reported by pos-visible-in-window-p for a composed
11334 character in column zero.
11335
11336 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11337
11338 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
11339
11340 2011-08-22 Eli Zaretskii <eliz@gnu.org>
11341
11342 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
11343 consider it a hit if to_charpos is anywhere in the range of the
11344 composed buffer positions.
11345
11346 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
11347
11348 * image.c (gif_load): Don't assume that each subimage has the same
11349 dimensions as the base image. Handle disposal method that is
11350 "undefined" by the gif spec (Bug#9335).
11351
11352 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
11353
11354 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
11355 (Fcondition_case): Document `debug' symbol in error handler.
11356
11357 2011-08-19 Eli Zaretskii <eliz@gnu.org>
11358
11359 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
11360 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
11361 from an Org mode buffer to a Speedbar frame.
11362
11363 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
11364 a composition, take its buffer position from IT->cmp_it.charpos.
11365 Fixes cursor positioning at the beginning of a line that begins
11366 with a composed character.
11367
11368 2011-08-18 Eli Zaretskii <eliz@gnu.org>
11369
11370 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
11371 character bidirectional type, use STRONG_L instead. Fixes crashes
11372 in a buffer produced by `describe-categories'.
11373
11374 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
11375 members before the level stack, so they would be saved and
11376 restored when copying iterator state. Fixes incorrect reordering
11377 around TABs covered by display properties.
11378
11379 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
11380
11381 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
11382
11383 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
11384
11385 * eval.c (internal_condition_case, internal_condition_case_1)
11386 (internal_condition_case_2, internal_condition_case_n):
11387 Remove unnecessary aborts (Bug#9081).
11388
11389 2011-08-17 Eli Zaretskii <eliz@gnu.org>
11390
11391 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
11392 has no `load' handler, try opening the file locally. (Bug#9311)
11393
11394 2011-08-16 Ken Brown <kbrown@cornell.edu>
11395
11396 * gmalloc.c: Expand comment.
11397
11398 2011-08-16 Eli Zaretskii <eliz@gnu.org>
11399
11400 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
11401 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
11402
11403 2011-08-16 Ken Brown <kbrown@cornell.edu>
11404
11405 Fix memory allocation problems in Cygwin build (Bug#9273).
11406
11407 * unexcw.c ( __malloc_initialized): Declare external variable.
11408 (fixup_executable): Force the dumped emacs to reinitialize malloc.
11409
11410 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
11411 New variables.
11412 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
11413 dumped emacs.
11414 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
11415 in the static heap.
11416 [CYGWIN] (special_realloc): New function.
11417 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
11418 requests to realloc storage in the static heap.
11419
11420 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
11421
11422 * bidi.c (bidi_initialize): Remove unused local.
11423
11424 2011-08-15 Eli Zaretskii <eliz@gnu.org>
11425
11426 * bidimirror.h:
11427 * biditype.h: Remove file.
11428 * makefile.w32-in ($(BLD)/bidi.$(O)):
11429 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
11430
11431 * dispextern.h: Fix a typo in the comment to bidi_type_t.
11432
11433 * chartab.c: Improve commentary for the uniprop_table API.
11434
11435 * bidi.c (bidi_paragraph_init): Support zero value of
11436 bidi_ignore_explicit_marks_for_paragraph_level.
11437 (bidi_initialize): Use uniprop_table instead of including
11438 biditype.h and bidimirror.h.
11439
11440 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
11441 coordinates of the iterator when restoring from ppos_it.
11442 (Bug#9296)
11443
11444 2011-08-14 Kenichi Handa <handa@m17n.org>
11445
11446 * process.c (create_process): Call setup_process_coding_systems
11447 after the pid of the process is set to -1 (Bug#8162).
11448
11449 2011-08-14 Eli Zaretskii <eliz@gnu.org>
11450
11451 * xdisp.c (move_it_in_display_line_to): Don't invoke
11452 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
11453 ppos_it. Fixes vertical cursor motion when line beginning is
11454 covered by an image. (Bug#9296)
11455
11456 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
11457
11458 * nsterm.h (ns_run_ascript): Declare.
11459 (NSAPP_DATA2_RUNASSCRIPT): Define.
11460
11461 * nsfns.m (as_script, as_result, as_status): New static variables.
11462 (ns_run_ascript): New function.
11463 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
11464 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
11465 the event loop. Get status from as_status (Bug#7276).
11466
11467 * nsterm.m (sendEvent): If event is NSApplicationDefined and
11468 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
11469 the event loop (Bug#7276).
11470
11471 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
11472
11473 * gnutls.c (QCgnutls_bootprop_priority)
11474 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
11475 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
11476 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
11477 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
11478 (QCgnutls_bootprop_verify_hostname_error)
11479 (QCgnutls_bootprop_callbacks_verify): Rename from
11480 Qgnutls_bootprop_..., all uses changed.
11481
11482 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
11483 uses changed.
11484
11485 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
11486
11487 * xfaces.c (Qframe_set_background_mode): Now static.
11488 * dispextern.h (Qframe_set_background_mode): Remove decl.
11489
11490 * process.c (Fnetwork_interface_info): Declare local only if needed.
11491
11492 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
11493
11494 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
11495 (Fnetwork_interface_list): Allocate in increments of bytes instead
11496 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
11497 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
11498 sockaddr.
11499 (struct ifflag_def): notrailers is smart on OSX.
11500 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
11501 Get hardware address with getifaddrs if available.
11502
11503 2011-08-12 Eli Zaretskii <eliz@gnu.org>
11504
11505 * xdisp.c (iterate_out_of_display_property): xassert that
11506 IT->position is set to within IT->object's boundaries. Break from
11507 the loop as soon as EOB is reached; avoids infloops in redisplay
11508 when IT->position is set up wrongly due to some bug.
11509 Set IT->current to match the bidi iterator unconditionally.
11510 (push_display_prop): Allow GET_FROM_STRING as IT->method on
11511 entry. Force push_it to save on the stack the current
11512 buffer/string position, to be restored by pop_it. Fix flags in
11513 the iterator structure wrt the object coming from a display
11514 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
11515 properties. (Bug#9284)
11516
11517 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
11518
11519 * fontset.c (fontset_get_font_group): Add proper type checks.
11520 (Bug#9172)
11521
11522 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
11523
11524 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
11525 and LC_VERSION_MIN_MACOSX.
11526 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
11527 (dump_it) [LC_FUNCTION_STARTS]: Use it.
11528
11529 2011-08-08 Eli Zaretskii <eliz@gnu.org>
11530
11531 * xdisp.c (forward_to_next_line_start): Allow to use the
11532 no-display-properties-and-no-overlays under bidi display.
11533 Set disp_pos in the bidi iterator to avoid searches for display
11534 properties and overlays.
11535
11536 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
11537
11538 * editfns.c (Fset_time_zone_rule): Document relationship with the
11539 setenv function.
11540
11541 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
11542 the font entity extracted from the cache (Bug#8109).
11543
11544 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
11545
11546 * composite.c (autocmp_chars): Don't reset point. That is done by
11547 restore_point_unwind (Bug#5984).
11548
11549 2011-08-07 Juri Linkov <juri@jurta.org>
11550
11551 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
11552 to show the arg `TIME' instead of `TIMEVAL'.
11553
11554 2011-08-06 Eli Zaretskii <eliz@gnu.org>
11555
11556 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
11557 display property strides EOL and includes a newline, as in
11558 longlines-mode. (Bug#9254)
11559 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
11560 word-wrap under bidirectional display. (Bug#9224)
11561
11562 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
11563 is non-zero, even if the data buffer is NULL. Fixes a crash in
11564 vertical-motion with longlines-mode. (Bug#9254)
11565
11566 2011-08-05 Eli Zaretskii <eliz@gnu.org>
11567
11568 * bidi.c <bidi_cache_total_alloc>: Now static.
11569 (bidi_initialize): Initialize bidi_cache_total_alloc.
11570
11571 * xdisp.c (display_line): Release buffer allocated for shelved bidi
11572 cache. (Bug#9221)
11573
11574 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
11575 amount allocated this far in `bidi_cache_total_alloc'.
11576 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
11577 non-zero, only free the data buffer without restoring the cache
11578 contents. All callers changed.
11579
11580 * dispextern.h (bidi_unshelve_cache): Update prototype.
11581
11582 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
11583 (move_it_in_display_line, move_it_to)
11584 (move_it_vertically_backward, move_it_by_lines): Replace the call
11585 to xfree to an equivalent call to bidi_unshelve_cache.
11586 (move_it_in_display_line_to): Fix logic of returning
11587 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
11588
11589 2011-08-05 Eli Zaretskii <eliz@gnu.org>
11590
11591 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
11592 came from a string character with a `cursor' property. (Bug#9229)
11593
11594 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
11595
11596 * Makefile.in (LIB_PTHREAD): New variable.
11597 (LIBES): Add LIB_PTHREAD (Bug#9216).
11598
11599 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
11600 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
11601
11602 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
11603
11604 * regex.c (re_iswctype): Remove some redundant boolean conversions.
11605
11606 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
11607
11608 * xterm.c (x_find_topmost_parent): New function.
11609 (x_set_frame_alpha): Find topmost parent window with
11610 x_find_topmost_parent and set the property there also (bug#9181).
11611 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
11612
11613 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
11614
11615 * callproc.c (Fcall_process): Avoid vfork clobbering
11616 the local vars buffer, coding_systems, current_dir.
11617
11618 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11619
11620 * keymap.c (Fmake_composed_keymap): Move to subr.el.
11621
11622 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
11623
11624 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
11625 so that it is not optimized away.
11626
11627 * xdisp.c (compute_display_string_pos): Remove unused local.
11628
11629 2011-08-02 Eli Zaretskii <eliz@gnu.org>
11630
11631 Fix slow cursor motion and scrolling in large buffers with
11632 selective display, like Org Mode buffers. (Bug#9218)
11633
11634 * dispextern.h (struct bidi_it): New member disp_prop_p.
11635
11636 * xdisp.c: Remove one-slot cache of display string positions.
11637 (compute_display_string_pos): Accept an additional argument
11638 DISP_PROP_P; callers changed. Scan at most 5K characters forward
11639 for a display string or property. If found, set DISP_PROP_P
11640 non-zero.
11641
11642 * bidi.c (bidi_fetch_char): Accept an additional argument
11643 DISP_PROP_P, and pass it to compute_display_string_pos.
11644 Only handle text covered by a display string if DISP_PROP_P is returned
11645 non-zero. All callers of bidi_fetch_char changed.
11646
11647 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
11648
11649 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
11650
11651 2010-12-03 Don March <don@ohspite.net>
11652
11653 * keymap.c (Fdefine_key): Fix non-prefix key error message when
11654 last character M-[char] is translated to ESC [char] (bug#7541).
11655
11656 2011-08-02 Kenichi Handa <handa@m17n.org>
11657
11658 * lisp.h (uniprop_table): Extern it.
11659
11660 * chartab.c (uniprop_table): Make it non-static.
11661
11662 2011-08-01 Eli Zaretskii <eliz@gnu.org>
11663
11664 * xdisp.c (forward_to_next_line_start): Accept additional argument
11665 BIDI_IT_PREV, and store into it the state of the bidi iterator had
11666 on the newline.
11667 (reseat_at_next_visible_line_start): Use the bidi iterator state
11668 returned by forward_to_next_line_start to restore the state of
11669 it->bidi_it after backing up to previous newline. (Bug#9212)
11670
11671 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
11672
11673 * regex.c (re_comp): Protoize.
11674 (re_exec): Fix return type.
11675 (regexec): Fix type of `ret'. (Bug#9203)
11676
11677 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11678
11679 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
11680 This is needed if max-image-size is a floating-point number.
11681
11682 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
11683
11684 * print.c (print_object): Print empty symbol as ##.
11685
11686 * lread.c (read1): Read ## as empty symbol.
11687
11688 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
11689
11690 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
11691 setting frame foreground color (Bug#9175).
11692 (x_set_background_color): Likewise.
11693
11694 * nsmenu.m (-setText): Size tooltip dimensions precisely to
11695 contents (Bug#9176).
11696 (EmacsTooltip -init): Remove bezels and add shadows to
11697 tooltip windows.
11698
11699 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
11700 or scroll bar (Bug#8470).
11701
11702 * nsfont.m (nsfont_open): Remove assignment to voffset and
11703 unnecessary vars hshink, expand, hd, full_height, min_height.
11704 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
11705
11706 * nsterm.h (nsfont_info): Remove voffset field.
11707
11708 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
11709
11710 Implement strike-through and overline on NextStep (Bug#8863).
11711
11712 * nsfont.m (nsfont_open): Use underline position provided by font,
11713 instead of hard-coded value of 2.
11714 (nsfont_draw): Call ns_draw_text_decoration instead.
11715
11716 * nsterm.h: Add declaration for ns_draw_text_decoration.
11717
11718 * nsterm.m (ns_draw_text_decoration): New function for drawing
11719 underline, overline, and strike-through.
11720 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
11721 ns_draw_text_decoration. Change treatment of cursor drawing to
11722 accommodate underlining, etc.
11723
11724 2011-07-28 Eli Zaretskii <eliz@gnu.org>
11725
11726 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
11727 default.
11728
11729 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11730
11731 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
11732 Without this fix, if a signal arrives just after memory fills up,
11733 'malloc' might be invoked reentrantly.
11734
11735 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
11736 In other words, assume that every image size is allowed, on non-X
11737 hosts. This assumption is probably wrong, but it lets Emacs compile.
11738
11739 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
11740
11741 * regex.c (re_iswctype): Convert return values to boolean.
11742
11743 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
11744
11745 * xdisp.c (compute_display_string_pos): Don't use cached display
11746 string position if the buffer had its restriction changed.
11747 (Bug#9184)
11748
11749 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11750
11751 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
11752
11753 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11754
11755 Integer signedness and overflow and related fixes. (Bug#9079)
11756
11757 * bidi.c: Integer size and overflow fixes.
11758 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
11759 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
11760 (bidi_cache_find_level_change, bidi_cache_ensure_space)
11761 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
11762 (bidi_find_other_level_edge):
11763 Use ptrdiff_t instead of EMACS_INT where either will do.
11764 This works better on 32-bit hosts configured --with-wide-int.
11765 (bidi_cache_ensure_space): Check for size-calculation overflow.
11766 Use % rather than repeated addition, for better worst-case speed.
11767 Don't set bidi_cache_size until after xrealloc returns, because it
11768 might not return.
11769 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
11770 (bidi_cache_ensure_space): Also check that the bidi cache size
11771 does not exceed that of the largest Lisp string or buffer. See Eli
11772 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
11773
11774 * alloc.c (__malloc_size_t): Remove.
11775 All uses replaced by size_t. See Andreas Schwab's note
11776 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
11777
11778 * image.c: Improve checking for integer overflow.
11779 (check_image_size): Assume that f is nonnull, since
11780 it is always nonnull in practice. This is one less thing to
11781 worry about when checking for integer overflow later.
11782 (x_check_image_size): New function, which checks for integer
11783 overflow issues inside X.
11784 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
11785 This removes the need for a memory_full check.
11786 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
11787 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
11788 (xbm_read_bitmap_data): Change locals back to 'int', since
11789 their values must fit in 'int'.
11790 (xpm_load_image, png_load, tiff_load):
11791 Invoke x_create_x_image_and_pixmap earlier,
11792 to avoid much needless work if the image is too large.
11793 (tiff_load): Treat overly large images as if
11794 x_create_x_image_and_pixmap failed, not as malloc failures.
11795 (gs_load): Use x_check_image_size.
11796
11797 * gtkutil.c: Omit integer casts.
11798 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
11799 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
11800
11801 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
11802
11803 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
11804 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
11805 would wrongly return t on a 64-bit host.
11806
11807 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
11808 The plain *_OVERFLOW macros run afoul of GCC bug 49705
11809 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
11810 and therefore cause GCC to emit a bogus diagnostic in some cases.
11811
11812 * image.c: Integer signedness and overflow and related fixes.
11813 This is not an exhaustive set of fixes, but it's time to
11814 record what I've got.
11815 (lookup_pixel_color, check_image_size): Remove redundant decls.
11816 (check_image_size): Don't assume that arbitrary EMACS_INT values
11817 fit in 'int', or that arbitrary 'double' values fit in 'int'.
11818 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
11819 (tiff_load, imagemagick_load_image):
11820 Check for overflow in size calculations.
11821 (x_create_x_image_and_pixmap): Remove unnecessary test for
11822 xmalloc returning NULL; that can't happen.
11823 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
11824 (xpm_color_bucket): Use better integer hashing function.
11825 (xpm_cache_color): Don't possibly over-allocate memory.
11826 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
11827 (gif_memory_source):
11828 Use ptrdiff_t, not int or size_t, to record sizes.
11829 (png_load): Don't assume values greater than 2**31 fit in 'int'.
11830 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
11831 either works, as we prefer signed integers.
11832 (tiff_read_from_memory, tiff_write_from_memory):
11833 Return tsize_t, not size_t, since that's what the TIFF API wants.
11834 (tiff_read_from_memory): Don't fail simply because the read would
11835 go past EOF; instead, return a short read.
11836 (tiff_load): Omit no-longer-needed casts.
11837 (Fimagemagick_types): Don't assume size fits into 'int'.
11838
11839 Improve hashing quality when configured --with-wide-int.
11840 * fns.c (hash_string): New function, taken from sxhash_string.
11841 Do not discard information about ASCII character case; this
11842 discarding is no longer needed.
11843 (sxhash-string): Use it. Change sig to match it. Caller changed.
11844 * lisp.h: Declare it.
11845 * lread.c (hash_string): Remove, since we now use fns.c's version.
11846 The fns.c version returns a wider integer if --with-wide-int is
11847 specified, so this should help the quality of the hashing a bit.
11848
11849 * emacs.c: Integer overflow minor fix.
11850 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
11851 Define only if GNU_LINUX.
11852 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
11853
11854 * dispnew.c: Integer signedness and overflow fixes.
11855 Remove unnecessary forward decls, that were a maintenance hassle.
11856 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
11857 All uses changed.
11858 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
11859 (scrolling_window): Use ptrdiff_t, not int, for byte count.
11860 (prepare_desired_row, line_draw_cost):
11861 Use int, not unsigned, where either works.
11862 (save_current_matrix, restore_current_matrix):
11863 Use ptrdiff_t, not size_t, where either works.
11864 (init_display): Check for overflow more accurately, and without
11865 relying on undefined behavior.
11866
11867 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
11868 Remove, replacing with the new symbols in lisp.h. All uses changed.
11869 * fileio.c (make_temp_name):
11870 * filelock.c (lock_file_1, lock_file):
11871 * xdisp.c (message_dolog):
11872 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
11873 Use pMd etc. instead.
11874 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
11875 replacing the pWIDE etc. symbols removed from editfns.c.
11876
11877 * keyboard.h (num_input_events): Now uintmax_t.
11878 This is (very slightly) less likely to mess up due to wraparound.
11879 All uses changed.
11880
11881 * buffer.c: Integer signedness fixes.
11882 (alloc_buffer_text, enlarge_buffer_text):
11883 Use ptrdiff_t rather than size_t when either will do, as we prefer
11884 signed integers.
11885
11886 * alloc.c: Integer signedness and overflow fixes.
11887 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
11888 (__malloc_size_t): Default to size_t, not to int.
11889 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
11890 (Fgarbage_collect, mark_object_loop_halt, mark_object):
11891 Prefer ptrdiff_t to size_t when either would do, as we prefer
11892 signed integers.
11893 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
11894 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
11895 Now const. Initialize with values that are in range even if char
11896 is signed.
11897 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
11898 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
11899 These functions do the right thing with sizes > 2**32.
11900 (check_depth): Now ptrdiff_t, not int.
11901 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
11902 Adjust to new way of storing sizes. Check for size overflow bugs
11903 in rest of code.
11904 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
11905 slightly wrong anyway, as it missed one instance of
11906 XMALLOC_OVERRUN_CHECK_OVERHEAD.
11907 (refill_memory_reserve): Omit needless cast to size_t.
11908 (mark_object_loop_halt): Mark as externally visible.
11909
11910 * xselect.c: Integer signedness and overflow fixes.
11911 (Fx_register_dnd_atom, x_handle_dnd_message):
11912 Use ptrdiff_t, not size_t, since we prefer signed.
11913 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
11914 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
11915 x_dnd_atoms_size and x_dnd_atoms_length.
11916
11917 * doprnt.c: Prefer signed to unsigned when either works.
11918 * eval.c (verror):
11919 * doprnt.c (doprnt):
11920 * lisp.h (doprnt):
11921 * xdisp.c (vmessage):
11922 Use ptrdiff_t, not size_t, when using or implementing doprnt,
11923 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
11924 prefer signed arithmetic to avoid comparison confusion.
11925 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
11926 but is a bit tricky.
11927
11928 Assume freestanding C89 headers, string.h, stdlib.h.
11929 * data.c, doprnt.c, floatfns.c, print.c:
11930 Include float.h unconditionally.
11931 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
11932 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
11933 * regex.c: Likewise for stddef.h, string.h.
11934 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
11935 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
11936 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
11937 (STDC_HEADERS): Remove obsolete defines.
11938 * sysdep.c: Include limits.h unconditionally.
11939
11940 Assume support for memcmp, memcpy, memmove, memset.
11941 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
11942 * regex.c (memcmp, memcpy):
11943 Remove; we assume C89 now.
11944
11945 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
11946 (__malloc_safe_bcopy): Remove; no longer needed.
11947
11948 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
11949 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
11950 well either way, and we prefer signed to unsigned.
11951
11952 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11953
11954 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
11955 closes the connection while we're reading (bug#9182).
11956
11957 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
11958
11959 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
11960 are specified (Bug#9168).
11961
11962 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
11963
11964 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
11965 Found by GCC static checking and --with-wide-int on a 32-bit host.
11966
11967 2011-07-25 Eli Zaretskii <eliz@gnu.org>
11968
11969 * xdisp.c (compute_display_string_pos): Fix logic of caching
11970 previous display string position. Initialize cached_prev_pos to
11971 -1. Fixes slow-down at the beginning of a buffer.
11972
11973 2011-07-24 Eli Zaretskii <eliz@gnu.org>
11974
11975 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
11976 for attrs[LFACE_FONTSET_INDEX].
11977
11978 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
11979
11980 * xml.c (parse_region): Remove unused local
11981 that was recently introduced.
11982
11983 2011-07-23 Eli Zaretskii <eliz@gnu.org>
11984
11985 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
11986 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
11987
11988 * xdisp.c (move_it_in_display_line_to): Record the best matching
11989 position for TO_CHARPOS while scanning the line, and restore it on
11990 exit if none of the characters scanned was an exact match.
11991 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
11992 when exact match is impossible due to invisible text, and the
11993 lines are truncated.
11994
11995 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
11996
11997 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
11998 for OSX >= 10.7.
11999
12000 2011-07-22 Eli Zaretskii <eliz@gnu.org>
12001
12002 Fix a significant slow-down of cursor motion with C-n, C-p,
12003 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
12004 auto-repeat under bidi redisplay in fontified buffers.
12005 * xdisp.c (compute_stop_pos_backwards): New function.
12006 (next_element_from_buffer): Call compute_stop_pos_backwards to
12007 find a suitable prev_stop when we find ourselves before
12008 base_level_stop.
12009 (reseat): Don't look for prev_stop, as that could mean a very long
12010 run.
12011 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
12012 <cached_disp_overlay_modiff>: Cache for last found display string
12013 position.
12014 (compute_display_string_pos): Return the cached position if asked
12015 about the same buffer in the same area of character positions, and
12016 the buffer wasn't changed since the time the display string
12017 position was cached.
12018
12019 2011-07-22 Eli Zaretskii <eliz@gnu.org>
12020
12021 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
12022 is an integer, which is important for empty lines. (Bug#9149)
12023
12024 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
12025
12026 * frame.c (Fmodify_frame_parameters): In tty case, update the
12027 default face if necessary (Bug#4238).
12028
12029 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
12030
12031 * editfns.c (Fstring_to_char): No need to explain what a character
12032 is in the docstring (Bug#6576).
12033
12034 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12035
12036 * xml.c (parse_region): Make sure we always return a tree.
12037
12038 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
12039
12040 * xml.c (parse_region): If a document contains only comments,
12041 return that, too.
12042
12043 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12044
12045 * xml.c (make_dom): Return comments, too.
12046
12047 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
12048
12049 Port to OpenBSD.
12050 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
12051 and the surrounding thread.
12052 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
12053 rather than fgets, and retry after EINTR. Otherwise, 'emacs
12054 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
12055 timer goes off.
12056 * s/openbsd.h (BROKEN_SIGIO): Define.
12057 * unexelf.c (unexec) [__OpenBSD__]:
12058 Don't update the .mdebug section of the Alpha COFF symbol table.
12059
12060 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12061
12062 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
12063 (bug#8460).
12064
12065 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
12066
12067 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
12068 This fixes some race conditions on the permissions of any newly
12069 created file.
12070
12071 * alloc.c (valid_pointer_p): Use pipe, not open.
12072 This fixes some permissions issues when debugging.
12073
12074 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
12075 If fchown fails to set both uid and gid, try to set just gid,
12076 as that is sometimes allowed. Adjust the file's mode to eliminate
12077 setuid or setgid bits that are inappropriate if fchown fails.
12078
12079 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
12080
12081 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
12082 to compare Lisp_Objects.
12083 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
12084 global_gnutls_log_level, don't mistake it for a Lisp_Object.
12085 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
12086
12087 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
12088
12089 * lread.c (read_integer): Unread even EOF character.
12090 (read1): Likewise. Properly record start position of symbol.
12091
12092 * lread.c (read1): Read `#:' as empty uninterned symbol if no
12093 symbol character follows.
12094
12095 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
12096
12097 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
12098 This works around a problem with the previous change to Fcopy_file.
12099 Recent glibc declares fchown with __attribute__((warn_unused_result)),
12100 and without this change, GCC might complain about discarding
12101 fchown's return value.
12102
12103 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
12104
12105 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
12106
12107 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
12108
12109 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
12110
12111 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12112
12113 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
12114 it's used from the C level.
12115
12116 * process.c: Use the same condition for POLL_FOR_INPUT in both
12117 keyboard.c and process.c (bug#1858).
12118
12119 2011-07-09 Lawrence Mitchell <wence@gmx.li>
12120
12121 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
12122 (Fgnutls_boot): Use it.
12123
12124 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
12125
12126 * doc.c (Fsubstitute_command_keys): Revert last change.
12127
12128 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12129
12130 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
12131 quotes the next character, and doesn't affect other longer
12132 sequences (bug#8935).
12133
12134 * lread.c (syms_of_lread): Clarify that is isn't only
12135 `eval-buffer' and `eval-defun' that's affected by
12136 `lexical-binding' (bug#8460).
12137
12138 2011-07-15 Eli Zaretskii <eliz@gnu.org>
12139
12140 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
12141 bidi redisplay when a line includes both an image and is truncated.
12142
12143 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
12144
12145 Fix minor problems found by static checking.
12146 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
12147 (elsz): Now a signed constant, not a size_t var. We prefer signed
12148 types to unsigned, to avoid integer comparison confusion. Without
12149 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
12150 "cannot optimize loop, the loop counter may overflow", a symptom
12151 of the confusion.
12152 * indent.c (Fvertical_motion): Mark locals as initialized.
12153 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
12154
12155 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12156
12157 * search.c (Fre_search_backward): Mention `case-fold-search' in
12158 all the re_search_* functions (bug#8138).
12159
12160 * keyboard.c (Fopen_dribble_file): Document when the file is
12161 closed (bug#8056).
12162
12163 2011-07-14 Eli Zaretskii <eliz@gnu.org>
12164
12165 * bidi.c (bidi_dump_cached_states): Fix format of displaying
12166 bidi_cache_idx.
12167
12168 Support bidi reordering of display and overlay strings.
12169 * xdisp.c (compute_display_string_pos)
12170 (compute_display_string_end): Accept additional argument STRING.
12171 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
12172 (reseat_to_string): Initialize bidi_it->string.s and
12173 bidi_it->string.schars.
12174 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
12175 NULL (avoids a crash in bidi_paragraph_init).
12176 Initialize itb.string.lstring.
12177 (init_iterator): Call bidi_init_it only of a valid
12178 buffer position was specified. Initialize paragraph_embedding to
12179 L2R.
12180 (reseat_to_string): Initialize the bidi iterator.
12181 (display_string): If we need to ignore text properties of
12182 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
12183 original value of -1 will not work with bidi.)
12184 (compute_display_string_pos): First arg is now struct
12185 `text_pos *'; all callers changed. Support display properties on
12186 Lisp strings.
12187 (compute_display_string_end): Support display properties on Lisp
12188 strings.
12189 (init_iterator, reseat_1, reseat_to_string): Initialize the
12190 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
12191 when iterating on a string not from display properties).
12192 (compute_display_string_pos, compute_display_string_end):
12193 Fix calculation of the object to scan. Fixes an error when using
12194 arrow keys.
12195 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
12196 base_level_stop; instead, set base_level_stop to BEGV.
12197 Fixes crashes in vertical-motion.
12198 (next_element_from_buffer): Improve commentary for when
12199 the iterator is before prev_stop.
12200 (init_iterator): Initialize bidi_p from the default value of
12201 bidi-display-reordering, not from buffer-local value. Use the
12202 buffer-local value only if initializing for buffer iteration.
12203 (handle_invisible_prop): Support invisible properties on strings
12204 that are being bidi-reordered.
12205 (set_iterator_to_next): Support bidi reordering of C strings and
12206 Lisp strings.
12207 (next_element_from_string): Support bidi reordering of Lisp
12208 strings.
12209 (handle_stop_backwards): Support Lisp strings as well.
12210 (display_string): Support display of R2L glyph rows.
12211 Use IT_STRING_CHARPOS when displaying from a Lisp string.
12212 (init_iterator): Don't initialize it->bidi_p for strings
12213 here.
12214 (reseat_to_string): Initialize it->bidi_p for strings here.
12215 (next_element_from_string, next_element_from_c_string)
12216 (next_element_from_buffer): Add xassert's for correspondence
12217 between IT's object being iterated and it->bidi_it.string
12218 structure.
12219 (face_before_or_after_it_pos): Support bidi iteration.
12220 (next_element_from_c_string): Handle the case of the first string
12221 character that is not the first one in the visual order.
12222 (get_visually_first_element): New function, refactored from common
12223 parts of next_element_from_buffer, next_element_from_string, and
12224 next_element_from_c_string.
12225 (tool_bar_lines_needed, redisplay_tool_bar)
12226 (display_menu_bar): Force left-to-right direction. Add a FIXME
12227 comment for making that be controlled by a user option.
12228 (push_it, pop_it): Save and restore the state of the
12229 bidi iterator. Save and restore the bidi_p flag.
12230 (pop_it): Iterate out of display property for string iteration as
12231 well.
12232 (iterate_out_of_display_property): Support iteration over strings.
12233 (handle_single_display_spec): Set up it->bidi_it for iteration
12234 over a display string, and call bidi_init_it.
12235 (handle_single_display_spec, next_overlay_string)
12236 (get_overlay_strings_1, push_display_prop): Set up the bidi
12237 iterator for displaying display or overlay strings.
12238 (forward_to_next_line_start): Don't use the shortcut if
12239 bidi-iterating.
12240 (back_to_previous_visible_line_start): If handle_display_prop
12241 pushed the iterator stack, restore the internal state of the bidi
12242 iterator by calling bidi_pop_it same number of times.
12243 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
12244 and we are bidi-iterating, don't decrement the iterator position;
12245 instead, set the first_elt flag in the bidi iterator, to produce
12246 the same effect.
12247 (reseat_1): Remove redundant setting of string_from_display_prop_p.
12248 (push_display_prop): xassert that we are iterating a buffer.
12249 (push_it, pop_it): Save and restore paragraph_embedding member.
12250 (handle_single_display_spec, next_overlay_string)
12251 (get_overlay_strings_1, reseat_1, reseat_to_string)
12252 (push_display_prop): Set up the `unibyte' member of bidi_it.string
12253 correctly. Don't assume unibyte strings are not bidi-reordered.
12254 (compute_display_string_pos)
12255 (compute_display_string_end): Fix handling the case of C string.
12256 (push_it, pop_it): Save and restore from_disp_prop_p.
12257 (handle_single_display_spec, push_display_prop): Set the
12258 from_disp_prop_p flag.
12259 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
12260 (pop_it): Call iterate_out_of_display_property only if we are
12261 popping after iteration over a string that came from a display
12262 property. Fix a typo in popping stretch info. Add an assertion
12263 for verifying that the iterator position is in sync with the bidi
12264 iterator.
12265 (handle_single_display_spec, get_overlay_strings_1)
12266 (push_display_prop): Fix initialization of paragraph direction for
12267 string when that of the parent object is not yet determined.
12268 (reseat_1): Call bidi_init_it to resync the bidi
12269 iterator with IT's position. (Bug#7616)
12270 (find_row_edges): If ROW->start.pos gives position
12271 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
12272 (handle_stop, back_to_previous_visible_line_start, reseat_1):
12273 Reset the from_disp_prop_p flag.
12274 (SAVE_IT, RESTORE_IT): New macros.
12275 (pos_visible_p, face_before_or_after_it_pos)
12276 (back_to_previous_visible_line_start)
12277 (move_it_in_display_line_to, move_it_in_display_line)
12278 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12279 (try_scrolling, redisplay_window, display_line): Use them when
12280 saving a temporary copy of the iterator and restoring it back.
12281 (back_to_previous_visible_line_start, reseat_1)
12282 (init_iterator): Empty the bidi cache "stack".
12283 (move_it_in_display_line_to): If iterator ended up at
12284 EOL, but we never saw any buffer positions smaller than
12285 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
12286 motion in bidi-reordered lines.
12287 (move_it_in_display_line_to): Record prev_method and prev_pos
12288 immediately before the call to set_iterator_to_next. Fixes cursor
12289 motion in bidi-reordered lines with stretch glyphs and strings
12290 displayed in margins. (Bug#8133) (Bug#8867)
12291 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
12292 TO_CHARPOS.
12293 (pos_visible_p): Support positions in bidi-reordered lines.
12294 Save and restore bidi cache.
12295
12296 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
12297 (bidi_paragraph_info): Delete unused struct.
12298 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
12299 (bidi_cache_start): New variable.
12300 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
12301 to zero.
12302 (bidi_cache_fetch_state, bidi_cache_search)
12303 (bidi_cache_find_level_change, bidi_cache_iterator_state)
12304 (bidi_cache_find, bidi_peek_at_next_level)
12305 (bidi_level_of_next_char, bidi_find_other_level_edge)
12306 (bidi_move_to_visually_next): Compare cache index with
12307 bidi_cache_start rather than with zero.
12308 (bidi_fetch_char): Accept new argument STRING; all callers
12309 changed. Support iteration over a string. Support strings with
12310 display properties. Support unibyte strings. Fix the type of
12311 `len' according to what STRING_CHAR_AND_LENGTH expects.
12312 (bidi_paragraph_init, bidi_resolve_explicit_1)
12313 (bidi_resolve_explicit, bidi_resolve_weak)
12314 (bidi_level_of_next_char, bidi_move_to_visually_next):
12315 Support iteration over a string.
12316 (bidi_set_sor_type, bidi_resolve_explicit_1)
12317 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
12318 can now be zero (for strings); special values 0 and -1 were
12319 changed to -1 and -2, respectively.
12320 (bidi_char_at_pos): New function.
12321 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
12322 Call it instead of FETCH_MULTIBYTE_CHAR.
12323 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
12324 initialized to valid values.
12325 (bidi_init_it): Don't initialize charpos and bytepos with invalid
12326 values.
12327 (bidi_level_of_next_char): Allow the sentinel "position" to pass
12328 the test for valid cached positions. Fix the logic for looking up
12329 the sentinel state in the cache. GCPRO the Lisp string we are
12330 iterating.
12331 (bidi_push_it, bidi_pop_it): New functions.
12332 (bidi_initialize): Initialize the bidi cache start stack pointer.
12333 (bidi_cache_ensure_space): New function, refactored from part of
12334 bidi_cache_iterator_state. Don't assume the required size is just
12335 one BIDI_CACHE_CHUNK away.
12336 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
12337 (bidi_count_bytes, bidi_char_at_pos): New functions.
12338 (bidi_cache_search): Don't assume bidi_cache_last_idx is
12339 always valid if bidi_cache_idx is valid.
12340 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
12341 is valid if it's going to be used.
12342 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
12343 (bidi_cache_fetch_state, bidi_cache_search)
12344 (bidi_cache_find_level_change, bidi_cache_ensure_space)
12345 (bidi_cache_iterator_state, bidi_cache_find)
12346 (bidi_find_other_level_edge, bidi_cache_start_stack):
12347 All variables related to cache indices are now EMACS_INT.
12348
12349 * dispextern.h (struct bidi_string_data): New structure.
12350 (struct bidi_it): New member `string'. Make flag members be 1-bit
12351 fields, and put them last in the struct.
12352 (compute_display_string_pos, compute_display_string_end):
12353 Update prototypes.
12354 (bidi_push_it, bidi_pop_it): Add prototypes.
12355 (struct iterator_stack_entry): New members bidi_p,
12356 paragraph_embedding, and from_disp_prop_p.
12357 (struct it): Member bidi_p is now a bit field 1 bit wide.
12358 (bidi_shelve_cache, bidi_unshelve_cache):
12359 Declare prototypes.
12360
12361 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
12362 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
12363 and vector-like objects.
12364
12365 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
12366 cache around display iteration.
12367
12368 * window.c (Fwindow_end, window_scroll_pixel_based)
12369 (displayed_window_lines, Frecenter): Save and restore the bidi
12370 cache around display iteration.
12371
12372 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12373
12374 * editfns.c (Fdelete_region): Clarify the use of the named
12375 parameters (bug#6788).
12376
12377 2011-07-14 Martin Rudalics <rudalics@gmx.at>
12378
12379 * indent.c (Fvertical_motion): Set and restore w->pointm when
12380 saving and restoring the window's buffer (Bug#9006).
12381
12382 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12383
12384 * editfns.c (Fstring_to_char): Clarify just what is returned
12385 (bug#6576). Text by Eli Zaretskii.
12386
12387 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
12388
12389 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
12390
12391 2011-07-13 Eli Zaretskii <eliz@gnu.org>
12392
12393 * buffer.c (mmap_find): Fix a typo.
12394
12395 2011-07-13 Johan Bockgård <bojohan@gnu.org>
12396
12397 Fix execution of x selection hooks.
12398 * xselect.c (Qx_lost_selection_functions)
12399 (Qx_sent_selection_functions): New vars.
12400 (syms_of_xselect): DEFSYM them.
12401 (x_handle_selection_request): Pass Qx_sent_selection_functions
12402 rather than Vx_sent_selection_functions to Frun_hook_with_args.
12403 (x_handle_selection_clear,x_clear_frame_selections):
12404 Pass Qx_lost_selection_functions rather than
12405 Vx_lost_selection_functions to Frun_hook_with_args.
12406
12407 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
12408
12409 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
12410 The old code sometimes used this field without initializing it.
12411
12412 * alloc.c (gc_sweep): Don't read past end of array.
12413 In theory, the old code could also have corrupted Emacs internals,
12414 though it'd be very unlikely.
12415
12416 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
12417
12418 * character.c (Fcharacterp): Don't advertise optional ignored
12419 argument. (Bug#4026)
12420
12421 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12422
12423 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
12424 key" (bug#4257).
12425
12426 * window.c (Fset_window_start): Doc fix (bug#4199).
12427 (Fset_window_hscroll): Ditto.
12428
12429 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
12430
12431 Fix minor new problems caught by GCC 4.6.1.
12432 * term.c (init_tty): Remove unused local.
12433 * xsettings.c (store_monospaced_changed): Define this function only
12434 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
12435 not used otherwise.
12436
12437 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
12438
12439 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
12440
12441 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12442
12443 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
12444 are the mini-buffer and the echo area (bug#3320).
12445
12446 * term.c (init_tty): Remove support for supdup, c10 and perq
12447 terminals, which are no longer supported (bug#1482).
12448
12449 2011-07-10 Johan Bockgård <bojohan@gnu.org>
12450
12451 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
12452
12453 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
12454
12455 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
12456 for non-popups (Bug#3642).
12457
12458 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
12459
12460 * alloc.c (reset_malloc_hooks): Protoize.
12461 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
12462 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
12463 * cm.c (losecursor): Likewise.
12464 * data.c (fmod): Likewise.
12465 * dispnew.c (swap_glyphs_in_rows): Likewise.
12466 * emacs.c (memory_warning_signal): Likewise.
12467 * floatfns.c (float_error): Likewise.
12468 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
12469 (otf_open, font_otf_capability, generate_otf_features)
12470 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12471 Likewise.
12472 * image.c (pbm_read_file): Likewise.
12473 * indent.c (string_display_width): Likewise.
12474 * intervals.c (check_for_interval, search_for_interval)
12475 (inc_interval_count, count_intervals, root_interval)
12476 (adjust_intervals_for_insertion, make_new_interval): Likewise.
12477 * lread.c (defalias): Likewise.
12478 * ralloc.c (r_alloc_check): Likewise.
12479 * regex.c (set_image_of_range_1, set_image_of_range)
12480 (regex_grow_registers): Likewise.
12481 * sysdep.c (strerror): Likewise.
12482 * termcap.c (valid_filename_p, tprint, main): Likewise.
12483 * tparam.c (main): Likewise.
12484 * unexhp9k800.c (run_time_remap, save_data_space)
12485 (update_file_ptrs, read_header, write_header, calculate_checksum)
12486 (copy_file, copy_rest, display_header): Likewise.
12487 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
12488 Likewise.
12489 * xdisp.c (check_it): Likewise.
12490 * xfaces.c (register_color, unregister_color, unregister_colors):
12491 Likewise.
12492 * xfns.c (print_fontset_result): Likewise.
12493 * xrdb.c (member, fatal, main): Likewise.
12494
12495 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
12496
12497 Fix minor problems found by static checking (Bug#9031).
12498 * chartab.c (char_table_set_range, map_sub_char_table):
12499 Remove unused locals.
12500 (uniprop_table): Now static.
12501 * composite.c (_work_char): Remove unused static var.
12502
12503 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
12504
12505 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
12506
12507 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
12508
12509 * gtkutil.c (qttip_cb): Remove code without function.
12510
12511 2011-07-09 Eli Zaretskii <eliz@gnu.org>
12512
12513 * w32.c (pthread_sigmask): New stub.
12514
12515 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
12516
12517 Use pthread_sigmask, not sigprocmask (Bug#9010).
12518 sigprocmask is portable only for single-threaded applications, and
12519 Emacs can be multi-threaded when it uses GTK.
12520 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
12521 (LIBES): Use it.
12522 * callproc.c (Fcall_process):
12523 * process.c (create_process):
12524 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
12525 Use pthread_sigmask, not sigprocmask.
12526
12527 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12528
12529 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
12530 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
12531 wrong (Bug#8591).
12532
12533 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12534
12535 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
12536 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
12537 (xg_hide_tooltip): Fix comment.
12538
12539 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
12540 in registerServicesMenuSendTypes.
12541 (validRequestorForSendType): Don't check ns_return_types.
12542
12543 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
12544 ns_return_type.
12545
12546 2011-07-08 Jason Rumney <jasonr@gnu.org>
12547
12548 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
12549 SH_SHOW for hidden windows (Bug#5482).
12550
12551 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
12552 frame struct members of non-existent frames (Bug#6284).
12553
12554 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12555
12556 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
12557 variable firstTime not needed on OSX >= 10.6.
12558 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
12559 >= 10.5. Use setKnobProportion, setDoubleValue.
12560
12561 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
12562 (MAC_OS_X_VERSION_10_5): Define if not defined.
12563 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
12564 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
12565 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
12566
12567 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
12568 cString and lossyCString on OSX >= 10.4.
12569
12570 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
12571 sizeToFit on OSX >= 10.2.
12572
12573 * nsimage.m (allocInitFromFile): Don't use deprecated method
12574 bestRepresentationForDevice on OSX >= 10.6.
12575
12576 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
12577 to avoid warning.
12578
12579 * emacs.c: Declare unexec_init_emacs_zone.
12580
12581 * nsgui.h: Fix compiler warning about gnulib redefining verify.
12582
12583 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
12584
12585 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
12586 on svcsMenu (Bug#8842).
12587
12588 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
12589 ns_return_types.
12590 (Fns_list_services): Just return Qnil on 10.6, code not working there.
12591
12592 * nsterm.m (QUTF8_STRING): Declare.
12593 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
12594 (validRequestorForSendType): Return type is (id).
12595 Change indexOfObjectIdenticalTo to indexOfObject.
12596 Check if we have local selection before returning self (Bug#8842).
12597 (writeSelectionToPasteboard): Put local selection into paste board
12598 if we have a local selection (Bug#8842).
12599 (syms_of_nsterm): DEFSYM QUTF8_STRING.
12600
12601 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
12602 (ns_get_local_selection): Declare.
12603
12604 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12605
12606 * keymap.c (describe_map_tree): Don't insert a double newline at
12607 the end of the buffer (bug#1169) and return whether we inserted
12608 something.
12609
12610 * callint.c (Fcall_interactively): Change "reading args" to
12611 "providing args" to try to clarify what it does (bug#1010).
12612
12613 2011-07-07 Kenichi Handa <handa@m17n.org>
12614
12615 * composite.c (composition_compute_stop_pos): Ignore a static
12616 composition starting before CHARPOS (Bug#8915).
12617
12618 * xdisp.c (handle_composition_prop): Likewise.
12619
12620 2011-07-07 Eli Zaretskii <eliz@gnu.org>
12621
12622 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
12623 (Bug#9015)
12624
12625 2011-07-07 Kenichi Handa <handa@m17n.org>
12626
12627 * character.h (unicode_category_t): New enum type.
12628
12629 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
12630 (Qchar_code_property_table): New variable.
12631 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
12632 (UNIPROP_COMPRESSED_FORM_P): New macros.
12633 (char_table_ascii): Uncompress the compressed values.
12634 (sub_char_table_ref): New arg is_uniprop. Callers changed.
12635 Uncompress the compressed values.
12636 (sub_char_table_ref_and_range): Likewise.
12637 (char_table_ref_and_range): Uncompress the compressed values.
12638 (sub_char_table_set): New arg is_uniprop. Callers changed.
12639 Uncompress the compressed values.
12640 (sub_char_table_set_range): Args changed. Callers changed.
12641 (char_table_set_range): Adjuted for the above change.
12642 (map_sub_char_table): Delete args default_val and parent. Add arg
12643 top. Give decoded values to a Lisp function.
12644 (map_char_table): Adjust for the above change. Give decoded
12645 values to a Lisp function. Gcpro more variables.
12646 (uniprop_table_uncompress)
12647 (uniprop_decode_value_run_length): New functions.
12648 (uniprop_decoder, uniprop_decoder_count): New variables.
12649 (uniprop_get_decoder, uniprop_encode_value_character)
12650 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
12651 New functions.
12652 (uniprop_encoder, uniprop_encoder_count): New variables.
12653 (uniprop_get_encoder, uniprop_table)
12654 (Funicode_property_table_internal, Fget_unicode_property_internal)
12655 (Fput_unicode_property_internal): New functions.
12656 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
12657 Sunicode_property_table_internal, Sget_unicode_property_internal,
12658 and Sput_unicode_property_internal. Defvar_lisp
12659 char-code-property-alist.
12660
12661 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
12662 Vunicode_category_table.
12663
12664 * font.c (font_range): Adjust for the change of
12665 Vunicode_category_table.
12666
12667 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
12668
12669 * m/iris4d.h: Remove file, move contents ...
12670 * s/irix6-5.h: ... here.
12671
12672 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
12673
12674 Remove unportable assumption about struct layout (Bug#8884).
12675 * alloc.c (mark_buffer):
12676 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
12677 (clone_per_buffer_values): Don't assume that
12678 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
12679 This isn't true in general, and it's particularly not true
12680 if Emacs is configured with --with-wide-int.
12681 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
12682 New macros, used in the buffer.c change.
12683
12684 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
12685
12686 * xsettings.c: Use both GConf and GSettings if both are available.
12687 (store_config_changed_event): Add comment.
12688 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
12689 (store_tool_bar_style_changed): New functions.
12690 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
12691 (struct xsettings): Move font inside HAVE_XFT.
12692 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
12693 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
12694 Move inside HAVE_XFT.
12695 (something_changed_gsettingsCB): Rename from something_changedCB.
12696 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
12697 also.
12698 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
12699 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
12700 (something_changed_gconfCB): Rename from something_changedCB.
12701 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
12702 (parse_settings): Move check for font inside HAVE_XFT.
12703 (read_settings, apply_xft_settings): Add comment.
12704 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
12705 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
12706 call store_font_name_changed.
12707 (xft_settings_event): Add comment.
12708 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
12709 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
12710 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
12711 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
12712 (xsettings_initialize): Call init_gsettings last.
12713 (xsettings_get_system_font, xsettings_get_system_normal_font):
12714 Add comment.
12715
12716 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
12717
12718 Random fixes. E.g., (random) never returned negative values.
12719 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
12720 subseconds part to the entropy, as that's a bit more random.
12721 Prefer signed to unsigned, since the signedness doesn't matter and
12722 in general we prefer signed. When given a limit, use a
12723 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
12724 latter isn't right if USE_2_TAGS_FOR_INTS.
12725 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
12726 not 0..VALMASK. Don't discard "excess" bits that random () returns.
12727
12728 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12729
12730 * textprop.c (text_property_stickiness):
12731 Obey Vtext_property_default_nonsticky.
12732 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
12733 * w32fns.c (syms_of_w32fns):
12734 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
12735
12736 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12737
12738 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
12739 This is more efficient than Ffile_directory_p and avoids a minor race.
12740
12741 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12742
12743 * buffer.c (Foverlay_put): Say what the return value is
12744 (bug#7835).
12745
12746 * fileio.c (barf_or_query_if_file_exists): Check first if the file
12747 is a directory before asking whether to use the file name
12748 (bug#7564).
12749 (barf_or_query_if_file_exists): Make the "File is a directory"
12750 error be more correct.
12751
12752 * fns.c (Frequire): Remove the mention of the .gz files, since
12753 that's installation-specific, but keep the mention of
12754 `get-load-suffixes'.
12755
12756 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12757
12758 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
12759 Report string overflow if the output is too long.
12760
12761 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
12762
12763 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
12764 (syms_of_gnutls): Remove duplicate DEFSYM for
12765 Qgnutls_bootprop_verify_hostname_error, an error for
12766 Qgnutls_bootprop_verify_error (which is no longer used).
12767
12768 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
12769 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
12770 Also (re)move comments that are misplaced or no longer relevant.
12771
12772 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12773
12774 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
12775
12776 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
12777
12778 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
12779 and background color parameters if they have been changed.
12780
12781 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12782
12783 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
12784
12785 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
12786
12787 * xsettings.c (SYSTEM_FONT): Define only when used.
12788 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
12789
12790 * keymap.c (access_keymap_1): Now static.
12791
12792 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
12793
12794 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
12795 leave any prefix arg for the up event (Bug#1586).
12796
12797 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12798
12799 * lread.c (syms_of_lread): Mention single symbols defined by
12800 `defvar' or `defconst' (bug#7154).
12801
12802 * fns.c (Frequire): Mention .el.gz files (bug#7314).
12803 (Frequire): Mention get-load-suffixes.
12804
12805 2011-07-02 Martin Rudalics <rudalics@gmx.at>
12806
12807 * window.h (window): Remove clone_number slot.
12808 * window.c (Fwindow_clone_number, Fset_window_clone_number):
12809 Remove.
12810 (make_parent_window, make_window, saved_window)
12811 (Fset_window_configuration, save_window_save): Don't deal with
12812 clone numbers.
12813 * buffer.c (Qclone_number): Remove declaration.
12814 (sort_overlays, overlay_strings): Don't deal with clone numbers.
12815
12816 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12817
12818 Add multiple inheritance to keymaps.
12819 * keymap.c (Fmake_composed_keymap): New function.
12820 (Fset_keymap_parent): Simplify.
12821 (fix_submap_inheritance): Remove.
12822 (access_keymap_1): New function extracted from access_keymap to handle
12823 embedded parents and handle lists of maps.
12824 (access_keymap): Use it.
12825 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
12826 (Fcopy_keymap): Handle embedded parents.
12827 (Fcommand_remapping, define_as_prefix): Simplify.
12828 (Fkey_binding): Simplify.
12829 (syms_of_keymap): Move minibuffer-local-completion-map,
12830 minibuffer-local-filename-completion-map,
12831 minibuffer-local-must-match-map, and
12832 minibuffer-local-filename-must-match-map to Elisp.
12833 (syms_of_keymap): Defsubr make-composed-keymap.
12834 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
12835 (parse_menu_item): Trivial simplification.
12836
12837 2011-07-01 Glenn Morris <rgm@gnu.org>
12838
12839 * Makefile.in (SETTINGS_LIBS): Fix typo.
12840
12841 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
12842
12843 * coding.c (Fencode_coding_string): Record the last coding system
12844 used, as the function doc string says (bug#8738).
12845
12846 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
12847
12848 * xsettings.c (store_monospaced_changed): Take new font as arg and
12849 check for change against current_mono_font.
12850 (EMACS_TYPE_SETTINGS): Remove this and related defines.
12851 (emacs_settings_constructor, emacs_settings_get_property)
12852 (emacs_settings_set_property, emacs_settings_class_init)
12853 (emacs_settings_init, gsettings_obj): Remove.
12854 (something_changedCB): New function for HAVE_GSETTINGS.
12855 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
12856 with value as argument.
12857 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
12858 g_settings_new (Bug#8967). Do not create gsettings_obj.
12859 Remove calls to g_settings_bind. Connect something_changedCB to
12860 "changed".
12861
12862 * xgselect.c: Add defined (HAVE_GSETTINGS).
12863 (xgselect_initialize): Ditto.
12864
12865 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
12866 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
12867 xg_select.
12868
12869 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12870
12871 * eval.c (struct backtrace): Simplify and port the data structure.
12872 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
12873 signed bit field, as this assumption is not portable and it makes
12874 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
12875 "char debug_on_exit : 1" as this is not portable either; instead,
12876 use the portable "unsigned int debug_on_exit : 1". Remove unused
12877 member evalargs. Remove obsolete comments about cc bombing out.
12878
12879 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
12880
12881 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
12882 Let HAVE_GSETTINGS override HAVE_GCONF.
12883 (store_monospaced_changed): New function.
12884 (EMACS_SETTINGS): A new type derived from GObject to handle
12885 GSettings notifications.
12886 (emacs_settings_constructor, emacs_settings_get_property)
12887 (emacs_settings_set_property, emacs_settings_class_init):
12888 New functions.
12889 (gsettings_client, gsettings_obj): New variables.
12890 (GSETTINGS_SCHEMA): New define.
12891 (something_changedCB): Call store_monospaced_changed.
12892 (init_gsettings): New function.
12893 (xsettings_initialize): Call init_gsettings.
12894 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
12895 to NULL.
12896
12897 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
12898 GCONF_CFLAGS/LIBS.
12899
12900 2011-06-29 Martin Rudalics <rudalics@gmx.at>
12901
12902 * window.c (resize_root_window, grow_mini_window)
12903 (shrink_mini_window): Rename Qresize_root_window to
12904 Qwindow_resize_root_window and Qresize_root_window_vertically to
12905 Qwindow_resize_root_window_vertically.
12906
12907 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
12908
12909 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
12910
12911 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
12912
12913 * makefile.w32-in: Redesign dependencies so they reflect more
12914 clearly which files are directly included by each source file,
12915 and not through other includes.
12916
12917 2011-06-27 Martin Rudalics <rudalics@gmx.at>
12918
12919 * buffer.c (Qclone_number): Declare static and DEFSYM it.
12920 (sort_overlays, overlay_strings): When an overlay's clone number
12921 matches the window's clone number process the overlay even if
12922 the overlay's window property doesn't match the current window.
12923
12924 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
12925 (Fwindow_hchild): Rename to Fwindow_left_child.
12926 (Fwindow_next): Rename to Fwindow_next_sibling.
12927 (Fwindow_prev): Rename to Fwindow_prev_sibling.
12928 (resize_window_check): Rename to window_resize_check.
12929 (resize_window_apply): Rename to window_resize_apply.
12930 (Fresize_window_apply): Rename to Fwindow_resize_apply.
12931 (Fdelete_other_windows_internal, resize_frame_windows)
12932 (Fsplit_window_internal, Fdelete_window_internal)
12933 (grow_mini_window, shrink_mini_window)
12934 (Fresize_mini_window_internal): Fix callers accordingly.
12935
12936 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
12937
12938 * emacsgtkfixed.h: State that this is only used with Gtk+3.
12939 (emacs_fixed_set_min_size): Remove.
12940 (emacs_fixed_new): Take frame as argument.
12941
12942 * emacsgtkfixed.c: State that this is only used with Gtk+3.
12943 (_EmacsFixedPrivate): Remove minwidth/height.
12944 Add struct frame *f.
12945 (emacs_fixed_init): Initialize priv->f.
12946 (get_parent_class, emacs_fixed_set_min_size): Remove.
12947 (emacs_fixed_new): Set priv->f to argument.
12948 (emacs_fixed_get_preferred_width)
12949 (emacs_fixed_get_preferred_height): Use min_width/height from
12950 frames size_hint to set minimum and natural (Bug#8919).
12951 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
12952 and use min_width/height from frames size_hint to set
12953 min_width/height (Bug#8919).
12954
12955 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
12956 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
12957 Fix indentation.
12958
12959 2011-06-26 Eli Zaretskii <eliz@gnu.org>
12960
12961 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
12962 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
12963 called at ZV.
12964
12965 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
12966
12967 * process.c (wait_reading_process_output): Bypass select if
12968 waiting for a cell while ignoring keyboard input, and input is
12969 pending. Suggested by Jan Djärv (Bug#8869).
12970
12971 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
12972
12973 Use gnulib's dup2 module instead of rolling our own.
12974 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
12975
12976 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
12977
12978 * dispnew.c (scrolling_window): Before scrolling, turn off a
12979 mouse-highlight in the window being scrolled.
12980
12981 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
12982
12983 Move DEFSYM to lisp.h and use everywhere.
12984
12985 * character.h (DEFSYM): Move declaration...
12986 * lisp.h (DEFSYM): ...here.
12987
12988 * gnutls.c:
12989 * minibuf.c:
12990 * w32menu.c:
12991 * w32proc.c:
12992 * w32select.c: Don't include character.h.
12993
12994 * alloc.c (syms_of_alloc):
12995 * buffer.c (syms_of_buffer):
12996 * bytecode.c (syms_of_bytecode):
12997 * callint.c (syms_of_callint):
12998 * casefiddle.c (syms_of_casefiddle):
12999 * casetab.c (init_casetab_once):
13000 * category.c (init_category_once, syms_of_category):
13001 * ccl.c (syms_of_ccl):
13002 * cmds.c (syms_of_cmds):
13003 * composite.c (syms_of_composite):
13004 * dbusbind.c (syms_of_dbusbind):
13005 * dired.c (syms_of_dired):
13006 * dispnew.c (syms_of_display):
13007 * doc.c (syms_of_doc):
13008 * editfns.c (syms_of_editfns):
13009 * emacs.c (syms_of_emacs):
13010 * eval.c (syms_of_eval):
13011 * fileio.c (syms_of_fileio):
13012 * fns.c (syms_of_fns):
13013 * frame.c (syms_of_frame):
13014 * fringe.c (syms_of_fringe):
13015 * insdel.c (syms_of_insdel):
13016 * keymap.c (syms_of_keymap):
13017 * lread.c (init_obarray, syms_of_lread):
13018 * macros.c (syms_of_macros):
13019 * msdos.c (syms_of_msdos):
13020 * print.c (syms_of_print):
13021 * process.c (syms_of_process):
13022 * search.c (syms_of_search):
13023 * sound.c (syms_of_sound):
13024 * syntax.c (init_syntax_once, syms_of_syntax):
13025 * terminal.c (syms_of_terminal):
13026 * textprop.c (syms_of_textprop):
13027 * undo.c (syms_of_undo):
13028 * w32.c (globals_of_w32):
13029 * window.c (syms_of_window):
13030 * xdisp.c (syms_of_xdisp):
13031 * xfaces.c (syms_of_xfaces):
13032 * xfns.c (syms_of_xfns):
13033 * xmenu.c (syms_of_xmenu):
13034 * xsettings.c (syms_of_xsettings):
13035 * xterm.c (syms_of_xterm): Use DEFSYM.
13036
13037 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
13038
13039 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
13040
13041 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
13042
13043 Integer and buffer overflow fixes (Bug#8873).
13044
13045 * print.c (printchar, strout): Check for string overflow.
13046 (PRINTPREPARE, printchar, strout):
13047 Don't set size unless allocation succeeds.
13048
13049 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
13050 for sizes. Check for string overflow more accurately.
13051 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
13052
13053 * macros.c: Integer and buffer overflow fixes.
13054 * keyboard.h (struct keyboard.kbd_macro_bufsize):
13055 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
13056 Use ptrdiff_t, not int, for sizes.
13057 Don't increment bufsize until after realloc succeeds.
13058 Check for size-calculation overflow.
13059 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
13060
13061 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
13062
13063 * lread.c: Integer overflow fixes.
13064 (read_integer): Radix is now EMACS_INT, not int,
13065 to improve quality of diagnostics for out-of-range radices.
13066 Calculate buffer size correctly for out-of-range radices.
13067 (read1): Check for integer overflow in radices, and in
13068 read-circle numbers.
13069 (read_escape): Avoid int overflow.
13070 (Fload, openp, read_buffer_size, read1)
13071 (substitute_object_recurse, read_vector, read_list, map_obarray):
13072 Use ptrdiff_t, not int, for sizes.
13073 (read1): Use EMACS_INT, not int, for sizes.
13074 Check for size overflow.
13075
13076 * image.c (cache_image): Check for size arithmetic overflow.
13077
13078 * lread.c: Integer overflow issues.
13079 (saved_doc_string_size, saved_doc_string_length)
13080 (prev_saved_doc_string_size, prev_saved_doc_string_length):
13081 Now ptrdiff_t, not int.
13082 (read1): Don't assume doc string length fits in int. Check for
13083 out-of-range doc string lengths.
13084 (read_list): Don't assume file position fits in int.
13085 (read_escape): Check for hex character overflow.
13086
13087 2011-06-22 Leo Liu <sdl.web@gmail.com>
13088
13089 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
13090 Move to minibuffer.el.
13091
13092 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
13093
13094 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
13095 The following patches are for when GLYPH_DEBUG && !XASSERT.
13096 * dispextern.h (trace_redisplay_p, dump_glyph_string):
13097 * dispnew.c (flush_stdout):
13098 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
13099 Mark as externally visible.
13100 * dispnew.c (check_window_matrix_pointers): Now static.
13101 * dispnew.c (window_to_frame_vpos):
13102 * xfns.c (unwind_create_frame):
13103 * xterm.c (x_check_font): Remove unused local.
13104 * scroll.c (CHECK_BOUNDS):
13105 * xfaces.c (cache_fache): Rename local to avoid shadowing.
13106 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
13107 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
13108 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
13109 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
13110 Now static.
13111 (debug_method_add): Use va_list and vsprintf rather than relying
13112 on undefined behavior with wrong number of arguments.
13113 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
13114 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
13115 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
13116 since we're not interested in debugging glyphs with old libraries.
13117 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
13118 GCC 4.6.0's static checking.
13119
13120 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
13121
13122 Integer overflow and signedness fixes (Bug#8873).
13123 A few related buffer overrun fixes, too.
13124
13125 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
13126
13127 * dispextern.h (struct face.stipple):
13128 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
13129 (x_bitmap_mask, x_allocate_bitmap_record)
13130 (x_create_bitmap_from_data, x_create_bitmap_from_file)
13131 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
13132 (x_create_bitmap_from_xpm_data):
13133 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
13134 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
13135 (.bitmaps_last):
13136 * xfaces.c (load_pixmap):
13137 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
13138 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
13139 (.bitmaps_last, struct x_output.icon_bitmap):
13140 Use ptrdiff_t, not int, for bitmap indexes.
13141 (x_allocate_bitmap_record): Check for size overflow.
13142 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
13143
13144 Use ptrdiff_t, not int, for overlay counts.
13145 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
13146 * editfns.c (overlays_around, get_pos_property):
13147 * textprop.c (get_char_property_and_overlay):
13148 * xdisp.c (next_overlay_change, note_mouse_highlight):
13149 * xfaces.c (face_at_buffer_position):
13150 * buffer.c (OVERLAY_COUNT_MAX): New macro.
13151 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
13152 (Fnext_overlay_change, Fprevious_overlay_change)
13153 (mouse_face_overlay_overlaps, Foverlays_in):
13154 Use ptrdiff_t, not int, for sizes.
13155 (overlays_at, overlays_in): Check for size-calculation overflow.
13156
13157 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
13158
13159 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
13160 (x_session_initialize): Do not assume string length fits in int.
13161
13162 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
13163 This is unlikely, but can occur if DPI is outlandish.
13164
13165 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
13166 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
13167
13168 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
13169 * xrdb.c (magic_file_p, search_magic_path):
13170 Omit last arg SUFFIX; it was always 0. All callers changed.
13171 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
13172
13173 * xfont.c (xfont_match): Avoid need for strlen.
13174
13175 * xfns.c: Don't assume strlen fits in int.
13176 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
13177
13178 * xdisp.c (message_log_check_duplicate): Return intmax_t,
13179 not unsigned long, as we prefer signed integers. All callers changed.
13180 Detect integer overflow in repeat count.
13181 (message_dolog): Don't assume print length fits in 39 bytes.
13182 (display_mode_element): Don't assume strlen fits in int.
13183
13184 * termcap.c: Don't assume sizes fit in int and never overflow.
13185 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
13186 (gobble_line): Check for size-calculation overflow.
13187
13188 * minibuf.c (Fread_buffer):
13189 * lread.c (intern, intern_c_string):
13190 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
13191 Don't assume string length fits in int.
13192
13193 * keyboard.c (parse_tool_bar_item):
13194 * gtkutil.c (style_changed_cb): Avoid need for strlen.
13195
13196 * font.c: Don't assume string length fits in int.
13197 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
13198 Use ptrdiff_t, not int.
13199 (font_intern_prop): Don't assume string length fits in int.
13200 Don't assume integer property fits in fixnum.
13201 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
13202
13203 * filelock.c: Fix some buffer overrun and integer overflow issues.
13204 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
13205 Reformulate so as not to need the command string.
13206 Invoke gzip -cd rather than gunzip, as it's more portable.
13207 (lock_info_type, lock_file_1, lock_file):
13208 Don't assume pid_t and time_t fit in unsigned long.
13209 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
13210 (current_lock_owner): Prefer signed type for sizes.
13211 Use memcpy, not strncpy, where memcpy is what is really wanted.
13212 Don't assume (via atoi) that time_t and pid_t fit in int.
13213 Check for time_t and/or pid_t out of range, e.g., via a network share.
13214 Don't alloca where an auto var works fine.
13215
13216 * fileio.c: Fix some integer overflow issues.
13217 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
13218 Don't assume string length fits in int.
13219 (directory_file_name): Don't assume string length fits in long.
13220 (make_temp_name): Don't assume pid fits in int, or that its print
13221 length is less than 20.
13222
13223 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
13224
13225 * coding.c (make_subsidiaries): Don't assume string length fits in int.
13226
13227 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
13228
13229 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
13230 We prefer signed integers, even for size calculations.
13231
13232 * emacs.c: Don't assume string length fits in 'int'.
13233 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
13234 (main): Don't invoke strlen when not needed.
13235
13236 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
13237 (XD_DEBUG_MESSAGE): Don't waste a byte.
13238
13239 * callproc.c (getenv_internal_1, getenv_internal)
13240 (Fgetenv_internal):
13241 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
13242
13243 * lread.c (invalid_syntax): Omit length argument.
13244 All uses changed. This doesn't fix a bug, but it simplifies the
13245 code away from its former Hollerith-constant appearance, and it's
13246 one less 'int' to worry about when looking at integer-overflow issues.
13247 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
13248
13249 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
13250 This didn't break anything, but it didn't help either.
13251 It's confusing to put a bogus integer in a place where the actual
13252 value does not matter.
13253 (LIST_END_P): Remove unused macro and its bogus comment.
13254 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
13255
13256 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
13257 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
13258 implementation.
13259 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
13260 We prefer signed types, and the value cannot exceed the EMACS_INT
13261 range anyway (because otherwise the length would not be representable).
13262 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
13263 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
13264 This avoids a GCC warning when WIDE_EMACS_INT.
13265
13266 * indent.c (sane_tab_width): New function.
13267 (current_column, scan_for_column, Findent_to, position_indentation)
13268 (compute_motion): Use it. This is just for clarity.
13269 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
13270
13271 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
13272
13273 * lisp.h (lint_assume): New macro.
13274 * composite.c (composition_gstring_put_cache):
13275 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
13276
13277 * editfns.c, insdel.c:
13278 Omit unnecessary forward decls, to simplify future changes.
13279
13280 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
13281
13282 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
13283
13284 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
13285 Use much-faster test for byte-length change.
13286 Don't assume string byte-length fits in 'int'.
13287 Check that character arg fits in 'int'.
13288 (mapcar1): Declare byte as byte, for clarity.
13289
13290 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
13291
13292 * fns.c (concat): Catch string overflow earlier.
13293 Do not rely on integer wraparound.
13294
13295 * dispextern.h (struct it.overlay_strings_charpos)
13296 (struct it.selective): Now EMACS_INT, not int.
13297 * xdisp.c (forward_to_next_line_start)
13298 (back_to_previous_visible_line_start)
13299 (reseat_at_next_visible_line_start, next_element_from_buffer):
13300 Don't arbitrarily truncate the value of 'selective' to int.
13301
13302 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
13303
13304 * composite.c: Don't truncate sizes to 'int'.
13305 (composition_gstring_p, composition_reseat_it)
13306 (composition_adjust_point): Use EMACS_INT, not int.
13307 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
13308 not EMACS_UINT, for indexes.
13309
13310 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
13311
13312 * buffer.c: Include <verify.h>.
13313 (struct sortvec.priority, struct sortstr.priority):
13314 Now EMACS_INT, not int.
13315 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
13316 (struct sortstr.size, record_overlay_string)
13317 (struct sortstrlist.size, struct sortlist.used):
13318 Don't truncate size to int.
13319 (record_overlay_string): Check for size-calculation overflow.
13320 (init_buffer_once): Check at compile-time, not run-time.
13321
13322 2011-06-22 Jim Meyering <meyering@redhat.com>
13323
13324 Don't leak an XBM-image-sized buffer
13325 * image.c (xbm_load): Free the image buffer after using it.
13326
13327 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
13328
13329 Port to Sun C.
13330 * composite.c (find_automatic_composition): Omit needless 'return 0;'
13331 that Sun C diagnosed.
13332 * fns.c (secure_hash): Fix pointer signedness issue.
13333 * intervals.c (static_offset_intervals): New function.
13334 (offset_intervals): Use it.
13335
13336 2011-06-21 Leo Liu <sdl.web@gmail.com>
13337
13338 * deps.mk (fns.o):
13339 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
13340 sha512.h.
13341
13342 * fns.c (secure_hash): Rename from crypto_hash_function and change
13343 the first arg to accept symbols.
13344 (Fsecure_hash): New primitive.
13345 (syms_of_fns): New symbols.
13346
13347 2011-06-20 Deniz Dogan <deniz@dogan.se>
13348
13349 * process.c (Fset_process_buffer): Clarify return value in
13350 docstring.
13351
13352 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
13353
13354 * dispnew.c (add_window_display_history): Use BVAR.
13355
13356 * xdisp.c (debug_method_add): Use BVAR.
13357 (check_window_end, dump_glyph_matrix, dump_glyph)
13358 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
13359
13360 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
13361 Likewise.
13362
13363 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
13364 check till after the cache is created in init_frame_faces.
13365
13366 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13367
13368 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
13369
13370 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
13371
13372 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
13373 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
13374 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
13375
13376 Improve buffer-overflow checking (Bug#8873).
13377 * fileio.c (Finsert_file_contents):
13378 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
13379 Remove the old (too-loose) buffer overflow checks.
13380 They weren't needed, since make_gap checks for buffer overflow.
13381 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
13382 The old code merely checked for Emacs fixnum overflow, and relied
13383 on undefined (wraparound) behavior. The new code avoids undefined
13384 behavior, and also checks for ptrdiff_t and/or size_t overflow.
13385
13386 * editfns.c (Finsert_char): Don't dump core with very negative counts.
13387 Tune. Don't use wider integers than needed. Don't use alloca.
13388 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
13389
13390 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
13391
13392 * insdel.c, lisp.h (buffer_overflow): New function.
13393 (insert_from_buffer_1, replace_range, replace_range_2):
13394 * insdel.c (make_gap_larger):
13395 * editfns.c (Finsert_char):
13396 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
13397
13398 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
13399
13400 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
13401
13402 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
13403
13404 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
13405 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
13406
13407 * fileio.c: Don't assume EMACS_INT fits in off_t.
13408 (emacs_lseek): New static function.
13409 (Finsert_file_contents, Fwrite_region): Use it.
13410 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
13411
13412 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
13413
13414 * fns.c: Don't overflow int when computing a list length.
13415 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
13416 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
13417 truncation on 64-bit hosts. Check for QUIT every
13418 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
13419 faster and is responsive enough.
13420 (Flength): Report an error instead of overflowing an integer.
13421 (Fsafe_length): Return a float if the value is not representable
13422 as a fixnum. This shouldn't happen except in contrived situations.
13423 (Fnthcdr, Fsort): Don't assume list length fits in int.
13424 (Fcopy_sequence): Don't assume vector length fits in int.
13425
13426 * alloc.c: Check that resized vectors' lengths fit in fixnums.
13427 (header_size, word_size): New constants.
13428 (allocate_vectorlike): Don't check size overflow here.
13429 (allocate_vector): Check it here instead, since this is the only
13430 caller of allocate_vectorlike that could cause overflow.
13431 Check that the new vector's length is representable as a fixnum.
13432
13433 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
13434 The previous code was bogus. For example, next_almost_prime (32)
13435 returned 39, which is undesirable as it is a multiple of 3; and
13436 next_almost_prime (24) returned 25, which is a multiple of 5 so
13437 why was the code bothering to check for multiples of 7?
13438
13439 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
13440
13441 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
13442
13443 Variadic C functions now count arguments with ptrdiff_t.
13444 This partly undoes my 2011-03-30 change, which replaced int with size_t.
13445 Back then I didn't know that the Emacs coding style prefers signed int.
13446 Also, in the meantime I found a few more instances where arguments
13447 were being counted with int, which may truncate counts on 64-bit
13448 machines, or EMACS_INT, which may be unnecessarily wide.
13449 * lisp.h (struct Lisp_Subr.function.aMANY)
13450 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
13451 Arg counts are now ptrdiff_t, not size_t.
13452 All variadic functions and their callers changed accordingly.
13453 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
13454 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
13455 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
13456 * callint.c (Fcall_interactively): Check arg count for overflow,
13457 to avoid potential buffer overrun. Use signed char, not 'int',
13458 for 'varies' array, so that we needn't bother to check its size
13459 calculation for overflow.
13460 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
13461 * eval.c (apply_lambda):
13462 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
13463 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
13464 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
13465
13466 * callint.c (Fcall_interactively): Don't use index var as event count.
13467
13468 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
13469 * mem-limits.h (SIZE): Remove; no longer used.
13470
13471 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
13472
13473 Remove unnecessary casts.
13474 * xterm.c (x_term_init):
13475 * xfns.c (x_set_border_pixel):
13476 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
13477 These aren't needed now that we assume ANSI C.
13478
13479 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
13480 It's more likely to cause problems (due to unsigned overflow)
13481 than to cure them.
13482
13483 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
13484
13485 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
13486
13487 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
13488
13489 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
13490
13491 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
13492
13493 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
13494
13495 GLYPH_CODE_FACE returns EMACS_INT, not int.
13496 * dispextern.h (merge_faces):
13497 * xfaces.c (merge_faces):
13498 * xdisp.c (get_next_display_element, next_element_from_display_vector):
13499 Don't assume EMACS_INT fits in int.
13500
13501 * character.h (CHAR_VALID_P): Remove unused parameter.
13502 * fontset.c, lisp.h, xdisp.c: All uses changed.
13503
13504 * editfns.c (Ftranslate_region_internal): Omit redundant test.
13505
13506 * fns.c (concat): Minor tuning based on overflow analysis.
13507 This doesn't fix any bugs. Use int to hold character, instead
13508 of constantly refetching from Emacs object. Use XFASTINT, not
13509 XINT, for value known to be a character. Don't bother comparing
13510 a single byte to 0400, as it's always less.
13511
13512 * floatfns.c (Fexpt):
13513 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
13514
13515 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
13516 for characters.
13517
13518 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
13519
13520 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
13521 Without this fix, on a 64-bit host (aset S 0 4294967386) would
13522 incorrectly succeed when S was a string, because 4294967386 was
13523 truncated before it was used.
13524
13525 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
13526 Otherwise, an out-of-range integer could cause undefined behavior
13527 on a 64-bit host.
13528
13529 * composite.c: Use int, not EMACS_INT, for characters.
13530 (fill_gstring_body, composition_compute_stop_pos): Use int, not
13531 EMACS_INT, for values that are known to be in character range.
13532 This doesn't fix any bugs but is the usual style inside Emacs and
13533 may generate better code on 32-bit machines.
13534
13535 Make sure a 64-bit char is never passed to ENCODE_CHAR.
13536 This is for reasons similar to the recent CHAR_STRING fix.
13537 * charset.c (Fencode_char): Check that character arg is actually
13538 a character. Pass an int to ENCODE_CHAR.
13539 * charset.h (ENCODE_CHAR): Verify that the character argument is no
13540 wider than 'int', as a compile-time check to prevent future regressions
13541 in this area.
13542
13543 * character.c (char_string): Remove unnecessary casts.
13544
13545 Make sure a 64-bit char is never passed to CHAR_STRING.
13546 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
13547 by silently ignoring the top 32 bits, allowing some values
13548 that were far too large to be valid characters.
13549 * character.h: Include <verify.h>.
13550 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
13551 arguments are no wider than unsigned, as a compile-time check
13552 to prevent future regressions in this area.
13553 * data.c (Faset):
13554 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
13555 (Fsubst_char_in_region):
13556 * fns.c (concat):
13557 * xdisp.c (decode_mode_spec_coding):
13558 Adjust to CHAR_STRING's new requirement.
13559 * editfns.c (Finsert_char, Fsubst_char_in_region):
13560 * fns.c (concat): Check that character args are actually
13561 characters. Without this test, these functions did the wrong
13562 thing with wildly out-of-range values on 64-bit hosts.
13563
13564 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
13565 These casts should not be needed on 32-bit hosts, either.
13566 * keyboard.c (read_char):
13567 * lread.c (Fload): Remove casts to unsigned.
13568
13569 * lisp.h (UNSIGNED_CMP): New macro.
13570 This fixes comparison bugs on 64-bit hosts.
13571 (ASCII_CHAR_P): Use it.
13572 * casefiddle.c (casify_object):
13573 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
13574 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
13575 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
13576 * dispextern.h (FACE_FROM_ID):
13577 * keyboard.c (read_char): Use UNSIGNED_CMP.
13578
13579 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
13580 not to EMACS_INT, to avoid GCC warning.
13581
13582 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
13583
13584 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
13585 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
13586 isn't needed on 32-bit machines.
13587
13588 * buffer.c (Fgenerate_new_buffer_name):
13589 Use EMACS_INT for count, not int.
13590 (advance_to_char_boundary): Return EMACS_INT, not int.
13591
13592 * data.c (Qcompiled_function): Now static.
13593
13594 * window.c (window_body_lines): Now static.
13595
13596 * image.c (gif_load): Rename local to avoid shadowing.
13597
13598 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
13599 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
13600 * alloc.c (make_save_value): Integer argument is now of type
13601 ptrdiff_t, not int.
13602 (mark_object): Use ptrdiff_t, not int.
13603 * lisp.h (pD): New macro.
13604 * print.c (print_object): Use it.
13605
13606 * alloc.c: Use EMACS_INT, not int, to count objects.
13607 (total_conses, total_markers, total_symbols, total_vector_size)
13608 (total_free_conses, total_free_markers, total_free_symbols)
13609 (total_free_floats, total_floats, total_free_intervals)
13610 (total_intervals, total_strings, total_free_strings):
13611 Now EMACS_INT, not int. All uses changed.
13612 (Fgarbage_collect): Compute overall total using a double, so that
13613 integer overflow is less likely to be a problem. Check for overflow
13614 when converting back to an integer.
13615 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
13616 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
13617 These were 'int' variables that could overflow on 64-bit hosts;
13618 they were never used, so remove them instead of repairing them.
13619 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
13620 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
13621 Previously, this ceilinged at INT_MAX, but that doesn't work on
13622 64-bit machines.
13623 (allocate_pseudovector): Don't use EMACS_INT when int would do.
13624
13625 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
13626 (allocate_vectorlike): Check for ptrdiff_t overflow.
13627 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
13628 when a (possibly-narrower) signed value would do just as well.
13629 We prefer using signed arithmetic, to avoid comparison confusion.
13630
13631 * alloc.c: Catch some string size overflows that we were missing.
13632 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
13633 for convenience in STRING_BYTES_MAX.
13634 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
13635 The definition here is exact; the one in lisp.h was approximate.
13636 (allocate_string_data): Check for string overflow. This catches
13637 some instances we weren't catching before. Also, it catches
13638 size_t overflow on (unusual) hosts where SIZE_MAX <= min
13639 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
13640 and ptrdiff_t and EMACS_INT are both 64 bits.
13641
13642 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
13643 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
13644 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
13645
13646 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
13647
13648 * alloc.c (Fmake_string): Check for out-of-range init.
13649
13650 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13651
13652 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
13653
13654 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
13655
13656 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
13657 xg_get_default_scrollbar_width.
13658
13659 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
13660 (int_gtk_range_get_value): Move to the scroll bar part of the file.
13661 (style_changed_cb): Call update_theme_scrollbar_width and call
13662 x_set_scroll_bar_default_width and xg_frame_set_char_size for
13663 all frames (Bug#8505).
13664 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
13665 Call gtk_window_set_resizable if HAVE_GTK3.
13666 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
13667 and height if HAVE_GTK3 (Bug#8505).
13668 (scroll_bar_width_for_theme): New variable.
13669 (update_theme_scrollbar_width): New function.
13670 (xg_get_default_scrollbar_width): Move code to
13671 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
13672 (xg_initialize): Call update_theme_scrollbar_width.
13673
13674 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
13675
13676 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
13677
13678 2011-06-12 Martin Rudalics <rudalics@gmx.at>
13679
13680 * frame.c (make_frame): Call other_buffer_safely instead of
13681 other_buffer.
13682
13683 * window.c (temp_output_buffer_show): Call display_buffer with
13684 second argument Vtemp_buffer_show_specifiers and reset latter
13685 immediately after the call.
13686 (Vtemp_buffer_show_specifiers): New variable.
13687 (auto_window_vscroll_p, next_screen_context_lines)
13688 (Vscroll_preserve_screen_position): Remove leading asterisks from
13689 doc-strings.
13690
13691 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
13692
13693 Fix minor problems found by GCC 4.6.0 static checking.
13694 * buffer.c (Qclone_number): Remove for now, as it's unused.
13695 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
13696 (record_buffer): Remove unused local.
13697 * frame.c (other_visible_frames, frame_buffer_list): Now static.
13698 (set_frame_buffer_list): Remove; unused.
13699 * frame.h (other_visible_frames): Remove decl.
13700 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
13701 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
13702 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
13703 if HAVE_GPM.
13704 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
13705 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
13706 Define only if HAVE_GPM.
13707 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
13708 (update_hints_inhibit): Remove; never set. All uses removed.
13709 * widgetprv.h (emacsFrameClassRec): Remove decl.
13710 * window.c (delete_deletable_window): Now returns void, since it
13711 wasn't returning anything.
13712 (compare_window_configurations): Remove unused locals.
13713 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
13714 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
13715 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
13716 the same widths as pointers. This follows up on the 2011-05-06 patch.
13717 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
13718 * xterm.h: Likewise.
13719 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
13720
13721 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
13722
13723 * makefile.w32-in: Update dependencies.
13724 (LISP_H): Add lib/intprops.h.
13725
13726 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
13727
13728 * image.c (gif_load): Add animation frame delay to the metadata.
13729 (syms_of_image): Use DEFSYM. New symbol `delay'.
13730
13731 2011-06-11 Martin Rudalics <rudalics@gmx.at>
13732
13733 * window.c (delete_deletable_window): Re-add.
13734 (Fset_window_configuration): Rewrite to handle dead buffers and
13735 consequently deletable windows.
13736 (window_tree, Fwindow_tree): Remove. Supply functionality in
13737 window.el.
13738 (compare_window_configurations): Simplify code.
13739
13740 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
13741
13742 * image.c (imagemagick_load_image): Fix type mismatch.
13743 (Fimagemagick_types): Likewise.
13744
13745 * window.h (replace_buffer_in_windows): Declare.
13746
13747 2011-06-11 Martin Rudalics <rudalics@gmx.at>
13748
13749 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
13750 Qclone_number. Remove external declaration of Qdelete_window.
13751 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
13752 code.
13753 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
13754 Run Qbuffer_list_update_hook if allowed.
13755 (Fother_buffer): Rewrite doc-string. Major rewrite for new
13756 buffer list implementation.
13757 (other_buffer_safely): New function.
13758 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
13759 calls to replace_buffer_in_windows and
13760 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
13761 if allowed.
13762 (record_buffer): Inhibit quitting and rewrite using quittable
13763 functions. Run Qbuffer_list_update_hook if allowed.
13764 (Frecord_buffer, Funrecord_buffer): New functions.
13765 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
13766 Move switch-to-buffer to window.el.
13767 (bury-buffer): Move to window.el.
13768 (Vbuffer_list_update_hook): New variable.
13769
13770 * lisp.h (other_buffer_safely): Add prototype in buffer.c
13771 section.
13772
13773 * window.h (resize_frame_windows): Move up in code.
13774 (Fwindow_frame): Remove EXFUN.
13775 (replace_buffer_in_all_windows): Remove prototype.
13776 (replace_buffer_in_windows_safely): Add prototype.
13777
13778 * window.c: Declare Qdelete_window static again. Move down
13779 declaration of select_count.
13780 (Fnext_window, Fprevious_window): Rewrite doc-strings.
13781 (Fother_window): Move to window.el.
13782 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
13783 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
13784 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
13785 window.el.
13786 (replace_buffer_in_windows): Implement by calling
13787 Qreplace_buffer_in_windows.
13788 (replace_buffer_in_all_windows): Remove with some functionality
13789 moved into replace_buffer_in_windows_safely.
13790 (replace_buffer_in_windows_safely): New function.
13791 (select_window_norecord, select_frame_norecord): Move in front
13792 of run_window_configuration_change_hook. Remove now obsolete
13793 declarations.
13794 (Fset_window_buffer): Rewrite doc-string.
13795 Call Qrecord_window_buffer.
13796 (keys_of_window): Move binding for other-window to window.el.
13797
13798 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
13799
13800 * dispextern.h (struct image): Replace data member, whose int_val
13801 and ptr_val fields were not used by anything, with a single
13802 lisp_val object.
13803
13804 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
13805 (gif_clear_image, gif_load, imagemagick_load_image)
13806 (gs_clear_image, gs_load): Callers changed.
13807
13808 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
13809
13810 * buffer.h: Include <time.h>, for time_t.
13811 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
13812
13813 Fix minor problems found by static checking.
13814
13815 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
13816
13817 Make identifiers static if they are not used in other modules.
13818 * data.c (Qcompiled_function, Qframe, Qvector):
13819 * image.c (QimageMagick, Qsvg):
13820 * minibuf.c (Qmetadata):
13821 * window.c (resize_window_check, resize_root_window): Now static.
13822 * window.h (resize_window_check, resize_root_window): Remove decls.
13823
13824 * window.c (window_deletion_count, delete_deletable_window):
13825 Remove; unused.
13826 (window_body_lines): Now static.
13827 (Fdelete_other_windows_internal): Mark vars as initialized.
13828 Make sure 'resize_failed' is initialized.
13829 (run_window_configuration_change_hook): Rename local to avoid shadowing.
13830 (resize_window_apply): Remove unused local.
13831 * window.h (delete_deletable_window): Remove decl.
13832
13833 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
13834 (imagemagick_load_image): Fix pointer signedness problem by changing
13835 last arg from unsigned char * to char *. All uses changed.
13836 Also, fix a local for similar reasons.
13837 Remove unused locals. Remove locals to avoid shadowing.
13838 (fn_rsvg_handle_free): Remove; unused.
13839 (svg_load, svg_load_image): Fix pointer signedness problem.
13840 (imagemagick_load_image): Don't use garbage pointer image_wand.
13841
13842 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
13843
13844 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
13845
13846 * image.c (gif_load): Fix omitted cast error introduced by
13847 2011-06-06 change.
13848
13849 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13850
13851 * window.h (resize_proportionally, orig_total_lines)
13852 (orig_top_line): Remove from window structure.
13853 (set_window_height, set_window_width, change_window_heights)
13854 (Fdelete_window): Remove prototypes.
13855 (resize_frame_windows): Remove duplicate declaration.
13856
13857 2011-06-10 Eli Zaretskii <eliz@gnu.org>
13858
13859 * window.h (resize_frame_windows, resize_window_check)
13860 (delete_deletable_window, resize_root_window)
13861 (resize_frame_windows): Declare prototypes.
13862
13863 * window.c (resize_window_apply): Make definition be "static" to
13864 match the prototype.
13865
13866 2011-06-10 Martin Rudalics <rudalics@gmx.at>
13867
13868 * window.c: Remove declarations of Qwindow_size_fixed,
13869 window_min_size_1, window_min_size_2, window_min_size,
13870 size_window, window_fixed_size_p, enlarge_window, delete_window.
13871 Remove static from declaration of Qdelete_window, it's
13872 temporarily needed by Fbury_buffer.
13873 (replace_window): Don't assign orig_top_line and
13874 orig_total_lines.
13875 (Fdelete_window, delete_window): Remove. Window deletion is
13876 handled by window.el.
13877 (window_loop): Remove DELETE_OTHER_WINDOWS case.
13878 Replace Fdelete_window calls with calls to Qdelete_window.
13879 (Fdelete_other_windows): Remove. Deleting other windows is
13880 handled by window.el.
13881 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
13882 handled in window.el.
13883 (window_min_size_2, window_min_size_1, window_min_size): Remove.
13884 Window minimum sizes are handled in window.el.
13885 (shrink_windows, size_window, set_window_height)
13886 (set_window_width, change_window_heights, window_height)
13887 (window_width, CURBEG, CURSIZE, enlarge_window)
13888 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
13889 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
13890 handled in window.el.
13891 (make_dummy_parent): Rename to make_parent_window and give it a
13892 second argument horflag.
13893 (make_window): Don't set resize_proportionally any more.
13894 (Fsplit_window): Remove. Windows are split in window.el.
13895 (save_restore_action, save_restore_orig_size)
13896 (shrink_window_lowest_first, save_restore_orig_size): Remove.
13897 Resize mini windows in window.el.
13898 (grow_mini_window, shrink_mini_window): Implement by calling
13899 Qresize_root_window_vertically, resize_window_check and
13900 resize_window_apply.
13901 (saved_window, Fset_window_configuration, save_window_save):
13902 Do not handle orig_top_line, orig_total_lines, and
13903 resize_proportionally.
13904 (window_min_height, window_min_width): Move to window.el.
13905 (keys_of_window): Move bindings for delete-other-windows,
13906 split-window, delete-window and enlarge-window to window.el.
13907
13908 * buffer.c: Temporarily extern Qdelete_window.
13909 (Fbury_buffer): Temporarily call Qdelete_window instead of
13910 Fdelete_window (Fbury_buffer will move to window.el soon).
13911
13912 * frame.c (set_menu_bar_lines_1): Remove code handling
13913 orig_top_line and orig_total_lines.
13914
13915 * dispnew.c (adjust_frame_glyphs_initially): Don't use
13916 set_window_height but set heights directly.
13917 (change_frame_size_1): Use resize_frame_windows.
13918
13919 * xdisp.c (init_xdisp): Don't use set_window_height but set
13920 heights directly.
13921
13922 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
13923 Use resize_frame_windows instead of change_window_heights and run
13924 run_window_configuration_change_hook.
13925
13926 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
13927 instead of change_window_heights and run
13928 run_window_configuration_change_hook.
13929
13930 2011-06-09 Martin Rudalics <rudalics@gmx.at>
13931
13932 * window.c (replace_window): Rename second argument REPLACEMENT to
13933 NEW. New third argument SETFLAG. Rewrite.
13934 (delete_window, make_dummy_parent): Call replace_window with
13935 third argument 1.
13936 (window_list_1): Move down in code.
13937 (run_window_configuration_change_hook): Move set_buffer part
13938 before select_frame_norecord part in order to unwind correctly.
13939 Rename count1 to count.
13940 (recombine_windows, delete_deletable_window, resize_root_window)
13941 (Fdelete_other_windows_internal)
13942 (Frun_window_configuration_change_hook, make_parent_window)
13943 (resize_window_check, resize_window_apply, Fresize_window_apply)
13944 (resize_frame_windows, Fsplit_window_internal)
13945 (Fdelete_window_internal, Fresize_mini_window_internal):
13946 New functions.
13947 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
13948
13949 2011-06-08 Martin Rudalics <rudalics@gmx.at>
13950
13951 * window.h (window): Add some new members to window structure -
13952 normal_lines, normal_cols, new_total, new_normal, clone_number,
13953 splits, nest, prev_buffers, next_buffers.
13954 (WINDOW_TOTAL_SIZE): Move here from window.c.
13955 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
13956
13957 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
13958 Remove.
13959 (make_dummy_parent): Set new members of windows structure.
13960 (make_window): Move down in code. Handle new members of window
13961 structure.
13962 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
13963 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
13964 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
13965 (Fset_window_prev_buffers, Fwindow_next_buffers)
13966 (Fset_window_next_buffers, Fset_window_clone_number):
13967 New functions.
13968 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
13969 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
13970 Doc-string fixes.
13971 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
13972 Argument WINDOW can be now internal window too.
13973 (Fwindow_use_time): Move up in code.
13974 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
13975 Rewrite doc-string.
13976 (Fset_window_configuration, saved_window)
13977 (Fcurrent_window_configuration, save_window_save): Handle new
13978 members of window structure.
13979 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
13980 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
13981 (syms_of_window): New Lisp objects Qrecord_window_buffer,
13982 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
13983 Qget_mru_window, Qresize_root_window,
13984 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
13985 Qauto_buffer_name; staticpro them.
13986
13987 2011-06-07 Martin Rudalics <rudalics@gmx.at>
13988
13989 * window.c (Fwindow_total_size, Fwindow_left_column)
13990 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
13991 (Fwindow_list_1): New functions.
13992 (window_box_text_cols): Replace with window_body_cols.
13993 (Fwindow_width, Fscroll_left, Fscroll_right):
13994 Use window_body_cols instead of window_box_text_cols.
13995 (delete_window, Fset_window_configuration):
13996 Call delete_all_subwindows with window as argument.
13997 (delete_all_subwindows): Take a window as argument and not a
13998 structure. Rewrite.
13999 (window_loop): Remove handling of GET_LRU_WINDOW and
14000 GET_LARGEST_WINDOW.
14001 (Fget_lru_window, Fget_largest_window): Move to window.el.
14002
14003 * window.h: Extern window_body_cols instead of
14004 window_box_text_cols. delete_all_subwindows now takes a
14005 Lisp_Object as argument.
14006
14007 * indent.c (compute_motion, Fcompute_motion):
14008 Use window_body_cols instead of window_box_text_cols.
14009
14010 * frame.c (delete_frame): Call delete_all_subwindows with root
14011 window as argument.
14012
14013 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
14014
14015 * fns.c (Fputhash): Document return value.
14016
14017 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
14018
14019 * image.c (gif_load): Implement gif89a spec "no disposal" method.
14020
14021 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
14022
14023 Cons<->int and similar integer overflow fixes (Bug#8794).
14024
14025 Check for overflow when converting integer to cons and back.
14026 * charset.c (Fdefine_charset_internal, Fdecode_char):
14027 Use cons_to_unsigned to catch overflow.
14028 (Fencode_char): Use INTEGER_TO_CONS.
14029 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
14030 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
14031 * data.c (long_to_cons, cons_to_long): Remove.
14032 (cons_to_unsigned, cons_to_signed): New functions.
14033 These signal an error for invalid or out-of-range values.
14034 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
14035 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
14036 * font.c (Ffont_variation_glyphs):
14037 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
14038 * lisp.h: Include <intprops.h>.
14039 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
14040 (cons_to_signed, cons_to_unsigned): New decls.
14041 (long_to_cons, cons_to_long): Remove decls.
14042 * undo.c (record_first_change): Use INTEGER_TO_CONS.
14043 (Fprimitive_undo): Use CONS_TO_INTEGER.
14044 * xfns.c (Fx_window_property): Likewise.
14045 * xselect.c: Include <limits.h>.
14046 (x_own_selection, selection_data_to_lisp_data):
14047 Use INTEGER_TO_CONS.
14048 (x_handle_selection_request, x_handle_selection_clear)
14049 (x_get_foreign_selection, Fx_disown_selection_internal)
14050 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
14051 (lisp_data_to_selection_data): Use cons_to_unsigned.
14052 (x_fill_property_data): Use cons_to_signed.
14053 Report values out of range.
14054
14055 Check for buffer and string overflow more precisely.
14056 * buffer.h (BUF_BYTES_MAX): New macro.
14057 * lisp.h (STRING_BYTES_MAX): New macro.
14058 * alloc.c (Fmake_string):
14059 * character.c (string_escape_byte8):
14060 * coding.c (coding_alloc_by_realloc):
14061 * doprnt.c (doprnt):
14062 * editfns.c (Fformat):
14063 * eval.c (verror):
14064 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
14065 since they may not be the same number.
14066 * editfns.c (Finsert_char):
14067 * fileio.c (Finsert_file_contents):
14068 Likewise for BUF_BYTES_MAX.
14069
14070 * image.c: Use ptrdiff_t, not int, for sizes.
14071 (slurp_file): Switch from int to ptrdiff_t.
14072 All uses changed.
14073 (slurp_file): Check that file size fits in both size_t (for
14074 malloc) and ptrdiff_t (for sanity and safety).
14075
14076 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
14077 if b->modtime has its maximal value.
14078
14079 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
14080
14081 Don't assume time_t can fit into int.
14082 * buffer.h (struct buffer.modtime): Now time_t, not int.
14083 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
14084 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
14085
14086 Minor fixes for signed vs unsigned integers.
14087 * character.h (MAYBE_UNIFY_CHAR):
14088 * charset.c (maybe_unify_char):
14089 * keyboard.c (read_char, reorder_modifiers):
14090 XINT -> XFASTINT, since the integer must be nonnegative.
14091 * ftfont.c (ftfont_spec_pattern):
14092 * keymap.c (access_keymap, silly_event_symbol_error):
14093 XUINT -> XFASTINT, since the integer must be nonnegative.
14094 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
14095 since it makes no difference and we prefer signed.
14096 * keyboard.c (record_char): Use XUINT when all the neighbors do.
14097 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
14098 nonnegative.
14099
14100 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14101
14102 * window.h (Fwindow_frame): Declare.
14103
14104 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
14105
14106 * alloc.c: Simplify handling of large-request failures (Bug#8800).
14107 (SPARE_MEMORY): Always define.
14108 (LARGE_REQUEST): Remove.
14109 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
14110
14111 2011-06-06 Martin Rudalics <rudalics@gmx.at>
14112
14113 * lisp.h: Move EXFUNS for Fframe_root_window,
14114 Fframe_first_window and Fset_frame_selected_window to window.h.
14115
14116 * window.h: Move EXFUNS for Fframe_root_window,
14117 Fframe_first_window and Fset_frame_selected_window here from
14118 lisp.h.
14119
14120 * frame.c (Fwindow_frame, Fframe_first_window)
14121 (Fframe_root_window, Fframe_selected_window)
14122 (Fset_frame_selected_window): Move to window.c.
14123 (Factive_minibuffer_window): Move to minibuf.c.
14124 (Fother_visible_frames_p): New function.
14125
14126 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
14127
14128 * window.c (decode_window, decode_any_window): Move up in code.
14129 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
14130 (inhibit_frame_unsplittable): Remove unused variable.
14131 (Fwindow_buffer): Move up and rewrite doc-string.
14132 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
14133 (Fwindow_prev): New functions.
14134 (Fwindow_frame): Move here from frame.c. Accept any window as
14135 argument.
14136 (Fframe_root_window, Fframe_first_window)
14137 (Fframe_selected_window): Move here from frame.c. Accept frame
14138 or arbitrary window as argument. Update doc-strings.
14139 (Fminibuffer_window): Move up in code.
14140 (Fwindow_minibuffer_p): Move up in code and simplify.
14141 (Fset_frame_selected_window): Move here from frame.c.
14142 Marginal rewrite.
14143 (Fselected_window, select_window, Fselect_window): Move up in
14144 code. Minor doc-string fixes.
14145
14146 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
14147
14148 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
14149 Do not assume that spare memory exists; that assumption is valid
14150 only if SYSTEM_MALLOC.
14151 (LARGE_REQUEST): New macro, so that the issue of large requests
14152 is separated from the issue of spare memory.
14153
14154 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
14155
14156 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
14157 format. (Bug#8806)
14158
14159 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
14160
14161 * xfns.c (x_set_scroll_bar_default_width): Move declarations
14162 before statements.
14163
14164 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
14165
14166 * gtkutil.c (xg_get_default_scrollbar_width): New function.
14167
14168 * gtkutil.h: Declare xg_get_default_scrollbar_width.
14169
14170 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
14171 min width by calling x_set_scroll_bar_default_width (Bug#8505).
14172
14173 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
14174
14175 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
14176
14177 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
14178
14179 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
14180 (x_clipboard_manager_save): Add return value.
14181 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
14182 New error handlers.
14183 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
14184 Obey Vx_select_enable_clipboard_manager. Catch errors in
14185 x_clipboard_manager_save (Bug#8779).
14186 (Vx_select_enable_clipboard_manager): New variable.
14187 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
14188
14189 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
14190
14191 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
14192
14193 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14194
14195 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
14196 in the current matrix if keep_current_p is non-zero.
14197
14198 2011-06-04 Eli Zaretskii <eliz@gnu.org>
14199
14200 * bidi.c (bidi_level_of_next_char): Fix last change.
14201
14202 2011-06-03 Eli Zaretskii <eliz@gnu.org>
14203
14204 Support bidi reordering of text covered by display properties.
14205
14206 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
14207 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
14208 (bidi_cache_search, bidi_cache_iterator_state)
14209 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
14210 (bidi_level_of_next_char, bidi_move_to_visually_next):
14211 Support character positions inside a run of characters covered by a
14212 display string.
14213 (bidi_paragraph_init, bidi_resolve_explicit_1)
14214 (bidi_level_of_next_char): Call bidi_fetch_char and
14215 bidi_fetch_char_advance instead of FETCH_CHAR and
14216 FETCH_CHAR_ADVANCE.
14217 (bidi_init_it): Initialize new members.
14218 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
14219 definitions.
14220 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
14221 instead of using explicit *_CHAR codes.
14222 (bidi_resolve_explicit, bidi_resolve_weak):
14223 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
14224 bidirectional text is supported only in multibyte buffers.
14225 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
14226 it to initialize the frame_window_p member of struct bidi_it.
14227 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
14228 (bidi_resolve_explicit, bidi_resolve_weak)
14229 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
14230 bidi_it->nchars is non-positive.
14231 (bidi_level_of_next_char): Don't try to lookup the cache for the
14232 next/previous character if nothing is cached there yet, or if we
14233 were just reseat()'ed to a new position.
14234
14235 * xdisp.c (set_cursor_from_row): Set start and stop points
14236 according to the row's direction when priming the loop that looks
14237 for the glyph on which to display cursor.
14238 (single_display_spec_intangible_p): Function deleted.
14239 (display_prop_intangible_p): Reimplement to call
14240 handle_display_spec instead of single_display_spec_intangible_p.
14241 Accept 3 additional arguments needed by handle_display_spec.
14242 This fixes incorrect cursor motion across display property with complex
14243 values: lists, `(when COND...)' forms, etc.
14244 (single_display_spec_string_p): Support property values that are
14245 lists with the argument STRING its top-level element.
14246 (display_prop_string_p): Fix the condition for processing a
14247 property that is a list to be consistent with handle_display_spec.
14248 (handle_display_spec): New function, refactored from the
14249 last portion of handle_display_prop.
14250 (compute_display_string_pos): Accept additional argument
14251 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
14252 value of a `display' property is a "replacing spec".
14253 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
14254 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
14255 the display property, but just return a value indicating whether
14256 the display property will replace the characters it covers.
14257 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
14258 frame_window_p members of struct bidi_it.
14259 (compute_display_string_pos, compute_display_string_end):
14260 New functions.
14261 (push_it): Accept second argument POSITION, where pop_it should
14262 jump to continue iteration.
14263 (reseat_1): Initialize bidi_it.disp_pos.
14264
14265 * keyboard.c (adjust_point_for_property): Adjust the call to
14266 display_prop_intangible_p to its new signature.
14267
14268 * dispextern.h (struct bidi_it): New member frame_window_p.
14269 (bidi_init_it): Update prototypes.
14270 (display_prop_intangible_p): Update prototype.
14271 (compute_display_string_pos, compute_display_string_end):
14272 Declare prototypes.
14273 (struct bidi_it): New members nchars and disp_pos. ch_len is now
14274 EMACS_INT.
14275
14276 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
14277
14278 Malloc failure behavior now depends on size of allocation.
14279 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
14280 * lisp.h: Change signatures accordingly.
14281 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
14282 All callers changed. (Bug#8762)
14283
14284 * gnutls.c: Use Emacs's memory allocators.
14285 Without this change, the gnutls library would invoke malloc etc.
14286 directly, which causes problems on non-SYNC_INPUT hosts, and which
14287 runs afoul of improving memory_full behavior. (Bug#8761)
14288 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
14289 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
14290 xfree instead of the default malloc, realloc, free.
14291 (Fgnutls_boot): No need to check for memory allocation failure,
14292 since xmalloc does that for us.
14293
14294 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
14295 * category.c (hash_get_category_set):
14296 * ccl.c (ccl_driver):
14297 * charset.c (Fdefine_charset_internal):
14298 * charset.h (struct charset.hash_index):
14299 * composite.c (get_composition_id, gstring_lookup_cache)
14300 (composition_gstring_put_cache):
14301 * composite.h (struct composition.hash_index):
14302 * dispextern.h (struct image.hash):
14303 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
14304 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
14305 (hashfn_equal, hashfn_user_defined, make_hash_table)
14306 (maybe_resize_hash_table, hash_lookup, hash_put)
14307 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
14308 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
14309 (Fsxhash, Fgethash, Fputhash, Fmaphash):
14310 * image.c (make_image, search_image_cache, lookup_image)
14311 (xpm_put_color_table_h):
14312 * lisp.h (struct Lisp_Hash_Table):
14313 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
14314 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
14315 for hashes and hash indexes, instead of 'unsigned' and 'int'.
14316 * alloc.c (allocate_vectorlike):
14317 Check for overflow in vector size calculations.
14318 * ccl.c (ccl_driver):
14319 Check for overflow when converting EMACS_INT to int.
14320 * fns.c, image.c: Remove unnecessary static decls that would otherwise
14321 need to be updated by these changes.
14322 * fns.c (make_hash_table, maybe_resize_hash_table):
14323 Check for integer overflow with large hash tables.
14324 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
14325 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
14326 (SXHASH_REDUCE): New macro.
14327 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
14328 Use it instead of discarding useful hash info with large hash values.
14329 (sxhash_float): New function.
14330 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
14331 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
14332 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
14333 Rewrite to use FIXNUM_BITS, as this simplifies things.
14334 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
14335 Adjust signatures to match updated version of code.
14336 (consing_since_gc): Now EMACS_INT, since a single hash table can
14337 use more than INT_MAX bytes.
14338
14339 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
14340
14341 Make it possible to build with GCC-4.6+ -O2 -flto.
14342
14343 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
14344
14345 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14346
14347 * minibuf.c (get_minibuffer, read_minibuf_unwind):
14348 Call minibuffer-inactive-mode.
14349
14350 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
14351
14352 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
14353 Update dependencies.
14354
14355 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14356
14357 * data.c (init_data): Remove code for UTS, this system is not
14358 supported anymore.
14359
14360 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14361
14362 Don't force ./temacs to start in terminal mode.
14363
14364 * frame.c (make_initial_frame): Initialize faces in all cases, not
14365 only when CANNOT_DUMP is defined.
14366 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
14367
14368 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14369
14370 * dispnew.c (add_window_display_history): Use const for the string
14371 pointer. Remove declaration, not needed.
14372
14373 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
14374
14375 Use 'inline', not 'INLINE'.
14376 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
14377 * alloc.c, fontset.c (INLINE): Remove.
14378 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
14379 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
14380 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
14381 * gmalloc.c (register_heapinfo): Use inline unconditionally.
14382 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
14383
14384 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14385
14386 Make it possible to run ./temacs.
14387
14388 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
14389 syms_of_callproc does the same thing. Remove test for
14390 "initialized", do it in the caller.
14391 * emacs.c (main): Avoid calling set_initial_environment when dumping.
14392
14393 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14394
14395 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
14396 (read_minibuf): Use get_minibuffer.
14397 (syms_of_minibuf): Use DEFSYM.
14398 (Qmetadata): New var.
14399 * data.c (Qbuffer): Don't make it static.
14400 (syms_of_data): Use DEFSYM.
14401
14402 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
14403
14404 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
14405 (CCL_CODE_MIN): New macro.
14406
14407 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
14408
14409 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
14410
14411 * eval.c (Qdebug): Now static.
14412 * lisp.h (Qdebug): Remove decl. This reverts a part of the
14413 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
14414 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
14415
14416 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14417
14418 * image.c: Various fixes to ImageMagick code comments.
14419 (Fimagemagick_types): Doc fix.
14420
14421 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
14422
14423 Minor fixes prompted by GCC 4.6.0 warnings.
14424
14425 * xselect.c (converted_selections, conversion_fail_tag): Now static.
14426
14427 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
14428 (x_clipboard_manager_save_all): Move extern decl to ...
14429 * xterm.h: ... here, so that it can be checked for consistency.
14430
14431 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
14432
14433 * xselect.c (x_clipboard_manager_save_frame)
14434 (x_clipboard_manager_save_all): New functions.
14435 (Fx_clipboard_manager_save): Lisp function deleted.
14436
14437 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
14438 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
14439
14440 * xterm.h: Update prototype.
14441
14442 2011-05-28 William Xu <william.xwl@gmail.com>
14443
14444 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
14445 exiting (Bug#8239).
14446
14447 2011-05-28 Jim Meyering <meyering@redhat.com>
14448
14449 Avoid a sign-extension bug in crypto_hash_function.
14450 * fns.c (to_uchar): Define.
14451 (crypto_hash_function): Use it to convert some newly-signed
14452 variables to unsigned, to avoid sign-extension bugs. For example,
14453 without this change, (md5 "truc") would evaluate to
14454 45723a2aff78ff4fff7fff1114760e62 rather than the expected
14455 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
14456 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
14457
14458 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
14459
14460 Integer overflow fixes.
14461
14462 * dbusbind.c: Serial number integer overflow fixes.
14463 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
14464 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
14465 to hold a serial number that is too large for a fixnum.
14466 (Fdbus_method_return_internal, Fdbus_method_error_internal):
14467 Check for serial numbers out of range. Decode any serial number
14468 that was so large that it became a float. (Bug#8722)
14469
14470 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
14471 (Fdbus_call_method, Fdbus_call_method_asynchronously):
14472 Use XFASTINT rather than XUINT when numbers are nonnegative.
14473 (xd_append_arg, Fdbus_method_return_internal):
14474 (Fdbus_method_error_internal): Likewise. Also, for unsigned
14475 arguments, check that Lisp number is nonnegative, rather than
14476 silently wrapping negative numbers around. (Bug#8722)
14477 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
14478 (Bug#8722)
14479
14480 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
14481
14482 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
14483
14484 ccl: Add integer overflow checks.
14485 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
14486 (IN_INT_RANGE): New macros.
14487 (ccl_driver): Use them to check for integer overflow when
14488 decoding a CCL program. Many of the new checks are whether XINT (x)
14489 fits in int; it doesn't always, on 64-bit hosts. The new version
14490 doesn't catch all possible integer overflows, but it's an
14491 improvement. (Bug#8719)
14492
14493 * alloc.c (make_event_array): Use XINT, not XUINT.
14494 There's no need for unsigned here.
14495
14496 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
14497 This follows up to the 2011-05-06 change that substituted uintptr_t
14498 for EMACS_INT. This case wasn't caught back then.
14499
14500 Rework Fformat to avoid integer overflow issues.
14501 * editfns.c: Include <float.h> unconditionally, as it's everywhere
14502 now (part of C89). Include <verify.h>.
14503 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
14504 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
14505 (Fformat): Avoid the prepass trying to compute sizes; it was only
14506 approximate and thus did not catch overflow reliably. Instead, walk
14507 through the format just once, formatting and computing sizes as we go,
14508 checking for integer overflow at every step, and allocating a larger
14509 buffer as needed. Keep track separately whether the format is
14510 multibyte. Keep only the most-recently calculated precision, rather
14511 than them all. Record whether each argument has been converted to
14512 string. Use EMACS_INT, not int, for byte and char and arg counts.
14513 Support field widths and precisions larger than INT_MAX. Avoid
14514 sprintf's undefined behavior with conversion specifications such as %#d
14515 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
14516 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
14517 formatting out-of-range floating point numbers with int
14518 formats. (Bug#8668)
14519
14520 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
14521
14522 * data.c: Avoid integer truncation in expressions involving floats.
14523 * data.c: Include <intprops.h>.
14524 (arith_driver): When there's an integer overflow in an expression
14525 involving floating point, convert the integers to floating point
14526 so that the resulting value does not suffer from catastrophic
14527 integer truncation. For example, on a 64-bit host (* 4
14528 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
14529 Do not rely on undefined behavior after integer overflow.
14530
14531 merge count_size_as_multibyte, parse_str_to_multibyte
14532 * character.c, character.h (count_size_as_multibyte):
14533 Rename from parse_str_to_multibyte; all uses changed.
14534 Check for integer overflow.
14535 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
14536 since it's now a duplicate of the other. This is more of
14537 a character than a buffer op, so better that it's in character.c.
14538 * fns.c, print.c: Adjust to above changes.
14539
14540 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14541
14542 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
14543
14544 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
14545
14546 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
14547 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
14548 (x_clipboard_manager_save): Now static.
14549 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
14550
14551 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
14552 (crypto_hash_function): Now static.
14553 Fix pointer signedness problems. Avoid unnecessary initializations.
14554
14555 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
14556
14557 * termhooks.h (Vselection_alist): Make it terminal-local.
14558
14559 * terminal.c (create_terminal): Initialize it.
14560
14561 * xselect.c: Support for clipboard managers.
14562 (Vselection_alist): Move to termhooks.h as terminal-local var.
14563 (LOCAL_SELECTION): New macro.
14564 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
14565 (symbol_to_x_atom): Remove gratuitous arg.
14566 (x_handle_selection_request, lisp_data_to_selection_data)
14567 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
14568 (x_own_selection, x_get_local_selection, x_convert_selection):
14569 New arg, specifying work frame. Use terminal-local Vselection_alist.
14570 (some_frame_on_display): Delete unused function.
14571 (Fx_own_selection_internal, Fx_get_selection_internal)
14572 (Fx_disown_selection_internal, Fx_selection_owner_p)
14573 (Fx_selection_exists_p): New optional frame arg.
14574 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
14575 (x_handle_selection_clear): Don't treat other terminals with the
14576 same keyboard specially. Use the terminal-local Vselection_alist.
14577 (x_clear_frame_selections): Use Frun_hook_with_args.
14578
14579 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
14580
14581 * xterm.h: Add support for those atoms.
14582
14583 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
14584
14585 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
14586 (converted_selections, conversion_fail_tag): New global variables.
14587 (x_selection_request_lisp_error): Free the above.
14588 (x_get_local_selection): Remove unnecessary code.
14589 (x_reply_selection_request): Args changed; handle arbitrary array
14590 of converted selections stored in converted_selections.
14591 Separate the XChangeProperty and SelectionNotify steps.
14592 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
14593 (x_convert_selection): New function.
14594 (x_handle_selection_event): Simplify.
14595 (x_get_foreign_selection): Don't ignore incoming requests while
14596 waiting for an answer; this will fail when we implement
14597 SAVE_TARGETS, and seems unnecessary anyway.
14598 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
14599 (Vx_sent_selection_functions): Doc fix.
14600
14601 2011-05-26 Leo Liu <sdl.web@gmail.com>
14602
14603 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
14604
14605 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14606
14607 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
14608
14609 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
14610 for fringe update if it has periodic bitmap.
14611 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
14612 and fringe_bitmap_periodic_p.
14613
14614 * fringe.c (get_fringe_bitmap_data): New function.
14615 (draw_fringe_bitmap_1, update_window_fringes): Use it.
14616 (update_window_fringes): Record periodicity of fringe bitmap in glyph
14617 row. Mark glyph row for fringe update if periodicity changed.
14618
14619 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
14620 for fringe update unless it has periodic bitmap.
14621
14622 2011-05-25 Kenichi Handa <handa@m17n.org>
14623
14624 * xdisp.c (get_next_display_element): Set correct it->face_id for
14625 a static composition.
14626
14627 2011-05-24 Leo Liu <sdl.web@gmail.com>
14628
14629 * deps.mk (fns.o):
14630 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
14631
14632 * fns.c (crypto_hash_function, Fsha1): New function.
14633 (Fmd5): Use crypto_hash_function.
14634 (syms_of_fns): Add Ssha1.
14635
14636 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
14637
14638 * gnutls.c: Remove unused macros.
14639 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
14640 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
14641 Remove macros that are defined and never used.
14642 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
14643
14644 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
14645
14646 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
14647 (Fx_get_selection_internal): Minor cleanup.
14648 (Fx_own_selection_internal): Rename arguments for consistency with
14649 select.el.
14650
14651 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
14652
14653 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
14654
14655 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
14656
14657 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
14658
14659 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14660
14661 * dispnew.c (scrolling_window): Don't exclude the case that the
14662 last enabled row in the desired matrix touches the bottom boundary.
14663
14664 2011-05-21 Glenn Morris <rgm@gnu.org>
14665
14666 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
14667 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
14668 and add some more files.
14669
14670 2011-05-20 Eli Zaretskii <eliz@gnu.org>
14671
14672 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
14673 report_file_error introduced by the change from 2011-05-07.
14674
14675 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
14676
14677 * systime.h (Time): Define only if emacs is defined.
14678 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
14679 where the include path doesn't have X11/X.h by default. See
14680 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
14681
14682 2011-05-20 Kenichi Handa <handa@m17n.org>
14683
14684 * composite.c (find_automatic_composition): Fix previous change.
14685
14686 2011-05-20 Glenn Morris <rgm@gnu.org>
14687
14688 * lisp.mk: New file, split from Makefile.in.
14689 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
14690 (shortlisp): Remove.
14691 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
14692
14693 2011-05-19 Glenn Morris <rgm@gnu.org>
14694
14695 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
14696 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
14697 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
14698 (lisp): Set the order to that of loadup.el.
14699 (shortlisp): Make it a copy of $lisp.
14700 (SOME_MACHINE_LISP): Remove.
14701 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
14702 Use just $shortlisp, not $SOME_MACHINE_LISP too.
14703
14704 2011-05-18 Kenichi Handa <handa@m17n.org>
14705
14706 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
14707 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
14708 (find_automatic_composition): Mostly rewrite for efficiency.
14709
14710 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
14711
14712 * makefile.w32-in: Update dependencies.
14713
14714 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
14715
14716 * menu.c: Include limits.h (fixes the MS-Windows build broken by
14717 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
14718
14719 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
14720
14721 Fix some integer overflow issues, such as string length overflow.
14722
14723 * insdel.c (count_size_as_multibyte): Check for string overflow.
14724
14725 * character.c (lisp_string_width): Check for string overflow.
14726 Use EMACS_INT, not int, for string indexes and lengths; in
14727 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
14728 the resulting string length overflows an EMACS_INT; instead,
14729 report a string overflow if no precision given. When checking for
14730 precision exhaustion, use a check that cannot possibly have
14731 integer overflow. (Bug#8675)
14732 * character.h (lisp_string_width): Adjust to new signature.
14733
14734 * alloc.c (string_overflow): New function.
14735 (Fmake_string): Use it. This doesn't change behavior, but saves
14736 a few bytes and will simplify future changes.
14737 * character.c (string_escape_byte8): Likewise.
14738 * lisp.h (string_overflow): New decl.
14739
14740 Fixups, following up to the user-interface timestamp change.
14741 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
14742 for UI timestamps, instead of unsigned long.
14743 * msdos.c (mouse_get_pos): Likewise.
14744 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
14745 * w32gui.h (Time): Define by including "systime.h" rather than by
14746 declaring it ourselves. (Bug#8664)
14747
14748 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
14749 * image.c (clear_image_cache): Likewise.
14750
14751 * term.c (term_mouse_position): Don't assume time_t wraparound.
14752
14753 Be more systematic about user-interface timestamps.
14754 Before, the code sometimes used 'Time', sometimes 'unsigned long',
14755 and sometimes 'EMACS_UINT', to represent these timestamps.
14756 This change causes it to use 'Time' uniformly, as that's what X uses.
14757 This makes the code easier to follow, and makes it easier to catch
14758 integer overflow bugs such as Bug#8664.
14759 * frame.c (Fmouse_position, Fmouse_pixel_position):
14760 Use Time, not unsigned long, for user-interface timestamps.
14761 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
14762 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
14763 * keyboard.h (last_event_timestamp): Likewise.
14764 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
14765 * menu.h (xmenu_show): Likewise.
14766 * term.c (term_mouse_position): Likewise.
14767 * termhooks.h (struct input_event.timestamp): Likewise.
14768 (struct terminal.mouse_position_hook): Likewise.
14769 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
14770 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
14771 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
14772 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
14773 what it was before.
14774 * menu.h, termhooks.h: Include "systime.h", for Time.
14775
14776 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
14777 Don't assume that the difference between two unsigned long values
14778 can fit into an integer. At this point, we know button_down_time
14779 <= event->timestamp, so the difference must be nonnegative, so
14780 there's no need to cast the result if double-click-time is
14781 nonnegative, as it should be; check that it's nonnegative, just in
14782 case. This bug is triggered when events are more than 2**31 ms
14783 apart (about 25 days). (Bug#8664)
14784
14785 * xselect.c (last_event_timestamp): Remove duplicate decl.
14786 (x_own_selection): Remove needless cast to unsigned long.
14787
14788 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
14789 that always fit in int. Use a sentinel instead of a counter, to
14790 avoid a temp and to allay GCC's concerns about possible int overflow.
14791 * frame.h (struct frame): Use int for menu_bar_items_used
14792 instead of EMACS_INT, since it always fits in int.
14793
14794 * menu.c (grow_menu_items): Check for int overflow.
14795
14796 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
14797
14798 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
14799 Before, the code was not consistent. These values cannot exceed
14800 2**31 - 1 so there's no need to make them unsigned.
14801 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
14802 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
14803 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
14804 as modifiers.
14805 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
14806
14807 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
14808 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
14809 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
14810 presumably because the widths might not match.
14811
14812 * window.c (size_window): Avoid needless test at loop start.
14813
14814 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
14815
14816 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
14817
14818 2011-05-12 Drew Adams <drew.adams@oracle.com>
14819
14820 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
14821
14822 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14823
14824 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
14825 `width' to `bar_area_x' and `bar_area_width', respectively.
14826 (x_scroll_run): Take account of fringe background extension.
14827
14828 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
14829 Rename local vars `left' and `width' to `bar_area_x' and
14830 `bar_area_width', respectively.
14831 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
14832 background extension.
14833
14834 2011-05-10 Jim Meyering <meyering@redhat.com>
14835
14836 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
14837
14838 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
14839
14840 * image.c (Finit_image_library): Return t for built-in image types,
14841 like pbm and xbm. (Bug#8640)
14842
14843 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
14844
14845 * w32menu.c (set_frame_menubar): Fix submenu allocation.
14846
14847 2011-05-07 Eli Zaretskii <eliz@gnu.org>
14848
14849 * w32console.c (Fset_screen_color): Doc fix.
14850 (Fget_screen_color): New function.
14851 (syms_of_ntterm): Defsubr it.
14852
14853 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
14854 unlink the temporary file if Fcall_process didn't create it in the
14855 first place.
14856 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
14857 child process will be redirected to a file specified with `:file'.
14858 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
14859 cue to call_process_cleanup not to close that handle.
14860
14861 2011-05-07 Ben Key <bkey76@gmail.com>
14862
14863 * makefile.w32-in: The bootstrap-temacs rule now makes use of
14864 one of two shell specific rules, either bootstrap-temacs-CMD or
14865 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
14866 to the previous implementation of the bootstrap-temacs rule.
14867 The bootstrap-temacs-CMD rule is similar to the previous
14868 implementation of the bootstrap-temacs rule except that it
14869 makes use of the ESC_CFLAGS variable instead of the CFLAGS
14870 variable.
14871
14872 These changes, along with some changes to nt/configure.bat,
14873 nt/gmake.defs, and nt/nmake.defs, are required to extend my
14874 earlier fix to add support for --cflags and --ldflags options
14875 that include quotes so that it works whether make uses cmd or
14876 sh as the shell.
14877
14878 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
14879
14880 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
14881 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
14882 is a constant.
14883 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
14884 a string. Handle both cases.
14885 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
14886 (Fdbus_register_method): Use Qinvalid_function.
14887
14888 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
14889
14890 * makefile.w32-in: Update dependencies.
14891 (LISP_H): Add inttypes.h and stdin.h.
14892 (PROCESS_H): Add unistd.h.
14893
14894 2011-05-06 Eli Zaretskii <eliz@gnu.org>
14895
14896 * lread.c: Include limits.h (fixes the MS-Windows build broken by
14897 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
14898
14899 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
14900
14901 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
14902
14903 * term.c (vfatal): Remove stray call to va_end.
14904 It's not needed and the C Standard doesn't allow it here anyway.
14905
14906 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
14907 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
14908
14909 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
14910 bytes.
14911
14912 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
14913
14914 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
14915
14916 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
14917
14918 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
14919
14920 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
14921
14922 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
14923 * charset.c (Fdefine_charset_internal): Don't initialize
14924 charset.code_space[15]. The value was garbage, on hosts with
14925 32-bit int (Bug#8600).
14926
14927 * lread.c (read_integer): Be more consistent with string-to-number.
14928 Use string_to_number to do the actual conversion; this avoids
14929 rounding errors and fixes some other screwups. Without this fix,
14930 for example, #x1fffffffffffffff was misread as -2305843009213693952.
14931 (digit_to_number): Move earlier, for benefit of read_integer.
14932 Return -1 if the digit is out of range for the base, -2 if it is
14933 not a digit in any supported base. (Bug#8602)
14934
14935 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
14936
14937 * dispnew.c (scrolling_window): Return 1 if we scrolled,
14938 to match comment at start of function. This also removes a
14939 GCC warning about overflow in a 32+64-bit port.
14940
14941 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
14942
14943 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
14944 Reported by Stefan Monnier in
14945 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
14946 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
14947 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
14948
14949 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
14950 (EMACS_UINTPTR): Likewise, with uintptr_t.
14951
14952 * lisp.h: Prefer 64-bit EMACS_INT if available.
14953 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
14954 on 32-bit hosts that have 64-bit int, so that they can access
14955 large files.
14956 However, temporarily disable this change unless the temporary
14957 symbol WIDE_EMACS_INT is defined.
14958
14959 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
14960
14961 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
14962 This removes an assumption that EMACS_INT and long are the same
14963 width as pointers. The assumption is true for Emacs porting targets
14964 now, but we want to make other targets possible.
14965 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
14966 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
14967 In the rest of the code, change types of integers that hold casted
14968 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
14969 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
14970 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
14971 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
14972 No need to cast type when ORing.
14973 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
14974 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
14975 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
14976 assume EMACS_INT is the same width as char *.
14977 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
14978 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
14979 Remove no-longer-needed casts.
14980 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
14981 (xg_tool_bar_help_callback, xg_make_tool_item):
14982 Use EMACS_INTPTR to hold an integer
14983 that will be cast to void *; this can avoid a GCC warning
14984 if EMACS_INT is not the same width as void *.
14985 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
14986 * xdisp.c (display_echo_area_1, resize_mini_window_1):
14987 (current_message_1, set_message_1):
14988 Use a local to convert to proper width without a cast.
14989 * xmenu.c (dialog_selection_callback): Likewise.
14990
14991 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
14992 Also, don't assume VALBITS / RAND_BITS is less than 5,
14993 and don't rely on undefined behavior when shifting a 1 left into
14994 the sign bit.
14995 * lisp.h (get_random): Change signature to match.
14996
14997 * lread.c (hash_string): Use size_t, not int, for hash computation.
14998 Normally we prefer signed values; but hashing is special, because
14999 it's better to use unsigned division on hash table sizes so that
15000 the remainder is nonnegative. Also, size_t is the natural width
15001 for hashing into memory. The previous code used 'int', which doesn't
15002 retain enough info to hash well into very large tables.
15003 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
15004
15005 * dbusbind.c: Don't possibly lose pointer info when converting.
15006 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
15007 Use XPNTR rather than XHASH, so that the high-order bits of
15008 the pointer aren't lost when converting through void *.
15009
15010 * eval.c (Fautoload): Don't double-shift a pointer.
15011
15012 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
15013
15014 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
15015
15016 * gnutls.c (DEF_GNUTLS_FN):
15017 * image.c (DEF_IMGLIB_FN): Make function pointers static.
15018
15019 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
15020
15021 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
15022 marker. (Bug#8610)
15023
15024 2011-05-05 Eli Zaretskii <eliz@gnu.org>
15025
15026 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
15027 New version that can reserve upto 2GB of heap space.
15028
15029 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
15030
15031 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
15032
15033 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
15034
15035 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
15036 `gnutls_certificate_set_x509_key_file'.
15037
15038 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
15039
15040 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
15041 Update dependencies.
15042
15043 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
15044
15045 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
15046 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
15047 Remove unused parameter `fildes'.
15048 * process.c (read_process_output, send_process): Don't pass it.
15049
15050 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
15051
15052 Fix previous change: the library cache is defined in w32.c.
15053 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
15054 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
15055
15056 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
15057
15058 Implement dynamic loading of GnuTLS on Windows.
15059
15060 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
15061 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
15062 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
15063 Declare.
15064
15065 * gnutls.c (Qgnutls_dll): Define.
15066 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
15067 (gnutls_*): Declare function pointers.
15068 (init_gnutls_functions): New function to initialize function pointers.
15069 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
15070 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
15071 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
15072 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
15073 (emacs_gnutls_write, emacs_gnutls_read)
15074 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
15075 (Fgnutls_available_p): New function.
15076 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
15077 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
15078 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
15079
15080 * image.c: Include w32.h.
15081 (Vimage_type_cache): Delete.
15082 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
15083 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
15084 (w32_delayed_load): Move to w32.c.
15085
15086 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
15087
15088 * w32.c (QCloaded_from, Vlibrary_cache): Define.
15089 (w32_delayed_load): Move from image.c. When loading a library, record
15090 its filename in the :loaded-from property of the library id.
15091 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
15092 Initialize and staticpro them.
15093 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
15094
15095 * process.c: Include lisp.h before w32.h, not after.
15096 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
15097 instead of gnutls_record_check_pending.
15098
15099 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
15100
15101 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
15102
15103 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
15104 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
15105 as passed in.
15106
15107 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
15108
15109 * xterm.c (x_set_frame_alpha): Do not set property on anything
15110 else than FRAME_X_OUTER_WINDOW (Bug#8608).
15111
15112 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
15113
15114 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
15115
15116 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
15117
15118 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
15119 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
15120 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
15121 (gnutls_global_initialized, Qgnutls_bootprop_priority)
15122 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
15123 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
15124 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
15125 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
15126 (Qgnutls_bootprop_callbacks_verify): Make static.
15127
15128 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
15129
15130 * callproc.c: Indentation fixup.
15131
15132 * sysdep.c (wait_for_termination_1): Make static.
15133 (wait_for_termination, interruptible_wait_for_termination):
15134 Move after wait_for_termination_1.
15135
15136 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15137
15138 * sysdep.c (interruptible_wait_for_termination): New function
15139 which is like wait_for_termination, but allows keyboard
15140 interruptions.
15141
15142 * callproc.c (Fcall_process): Add (:file "file") as an option for
15143 the STDOUT buffer.
15144 (Fcall_process_region): Ditto.
15145
15146 2011-04-30 Eli Zaretskii <eliz@gnu.org>
15147
15148 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
15149 rather than `XVECTOR (FOO)->size'.
15150
15151 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
15152 inttypes.h, as a gnulib replacement is used if it not available in
15153 system headers.
15154
15155 2011-04-21 Eli Zaretskii <eliz@gnu.org>
15156
15157 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
15158 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
15159 of MOST_POSITIVE_FIXNUM. (Bug#8528)
15160
15161 * coding.c (coding_alloc_by_realloc): Error out if destination
15162 will grow beyond MOST_POSITIVE_FIXNUM.
15163 (decode_coding_emacs_mule): Abort if there isn't enough place in
15164 charbuf for the composition carryover bytes. Reserve an extra
15165 space for up to 2 characters produced in a loop.
15166 (decode_coding_iso_2022): Abort if there isn't enough place in
15167 charbuf for the composition carryover bytes.
15168
15169 2011-04-21 Eli Zaretskii <eliz@gnu.org>
15170
15171 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
15172 aborting when %lld or %lll format is passed.
15173 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
15174 %llo or %llx format is passed. (Bug#8545)
15175
15176 * window.c (window_scroll_line_based): Use a marker instead of
15177 simple variables to record original value of point. (Bug#7952)
15178
15179 * doprnt.c (doprnt): Fix the case where a multibyte sequence
15180 produced by %s or %c overflows available buffer space. (Bug#8545)
15181
15182 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
15183
15184 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
15185 (SIZE_MAX): Move defn after all includes, as they might #define it.
15186
15187 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
15188
15189 * w32.c (init_environment): Warn about defaulting HOME to C:\.
15190
15191 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
15192
15193 * keyboard.c (Qdelayed_warnings_hook): Define.
15194 (command_loop_1): Run `delayed-warnings-hook'
15195 if Vdelayed_warnings_list is non-nil.
15196 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
15197 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
15198
15199 2011-04-28 Eli Zaretskii <eliz@gnu.org>
15200
15201 * doprnt.c (doprnt): Don't return value smaller than the buffer
15202 size if the message was truncated. (Bug#8545).
15203
15204 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
15205
15206 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
15207 (Fx_window_property): #if-0 the whole functions, not just the bodies.
15208
15209 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
15210
15211 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
15212
15213 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
15214
15215 * makefile.w32-in: Update dependencies.
15216
15217 2011-04-27 Eli Zaretskii <eliz@gnu.org>
15218
15219 Improve `doprnt' and its usage. (Bug#8545)
15220 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
15221 `format_end'. Remove support for %l as a conversion specifier.
15222 Don't use xrealloc. Improve diagnostics when the %l size modifier
15223 is used. Update the commentary.
15224
15225 * eval.c (verror): Simplify calculation of size_t.
15226
15227 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
15228 messages.
15229
15230 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
15231
15232 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
15233 change.
15234
15235 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
15236
15237 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
15238 This makes this file independent of the recent pseudovector change.
15239
15240 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
15241
15242 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
15243
15244 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
15245 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
15246 Remove unused local.
15247 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
15248
15249 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
15250 GCC 4.6.0 optimizes based on type-based alias analysis.
15251 For example, if b is of type struct buffer * and v of type struct
15252 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
15253 != &v->size, and therefore "v->size = 1; b->size = 2; return
15254 v->size;" must therefore return 1. This assumption is incorrect
15255 for Emacs, since it type-puns struct Lisp_Vector * with many other
15256 types. To fix this problem, this patch adds a new type struct
15257 vectorlike_header that documents the constraints on layout of vectors
15258 and pseudovectors, and helps optimizing compilers not get fooled
15259 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
15260 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
15261 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
15262 the size member.
15263 (XSETPVECTYPE): Rewrite in terms of new macro.
15264 (XSETPVECTYPESIZE): New macro, specifying both type and size.
15265 This is a bit clearer, and further avoids the possibility of
15266 undesirable aliasing.
15267 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
15268 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
15269 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
15270 since Lisp_Subr is a special case (no "next" field).
15271 (ASIZE): Now uses header.size rather than size.
15272 All previous uses of XVECTOR (foo)->size replaced to use this macro,
15273 to avoid the hassle of writing XVECTOR (foo)->header.size.
15274 (struct vectorlike_header): New type.
15275 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
15276 object, to help avoid aliasing.
15277 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
15278 (SUBRP): Likewise, since Lisp_Subr is a special case.
15279 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
15280 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
15281 (struct Lisp_Hash_Table): Combine first two members into a single
15282 struct vectorlike_header member. All uses of "size" and "next" members
15283 changed to be "header.size" and "header.next".
15284 * buffer.h (struct buffer): Likewise.
15285 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
15286 * frame.h (struct frame): Likewise.
15287 * process.h (struct Lisp_Process): Likewise.
15288 * termhooks.h (struct terminal): Likewise.
15289 * window.c (struct save_window_data, struct saved_window): Likewise.
15290 * window.h (struct window): Likewise.
15291 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
15292 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
15293 * buffer.c (init_buffer_once): Likewise.
15294 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
15295 special case.
15296 * process.c (Fformat_network_address): Use local var for size,
15297 for brevity.
15298
15299 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
15300
15301 Make the Lisp reader and string-to-float more consistent (Bug#8525)
15302 * data.c (atof): Remove decl; no longer used or needed.
15303 (digit_to_number): Move to lread.c.
15304 (Fstring_to_number): Use new string_to_number function, to be
15305 consistent with how the Lisp reader treats infinities and NaNs.
15306 Do not assume that floating-point numbers represent EMACS_INT
15307 without losing information; this is not true on most 64-bit hosts.
15308 Avoid double-rounding errors, by insisting on integers when
15309 parsing non-base-10 numbers, as the documentation specifies.
15310 * lisp.h (string_to_number): New decl, replacing ...
15311 (isfloat_string): Remove.
15312 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
15313 (read1): Do not accept +. and -. as integers; this
15314 appears to have been a coding error. Similarly, do not accept
15315 strings like +-1e0 as floating point numbers. Do not report
15316 overflow for integer overflows unless the base is not 10 which
15317 means we have no simple and reliable way to continue.
15318 Break out the floating-point parsing into a new
15319 function string_to_number, so that Fstring_to_number parses
15320 floating point numbers consistently with the Lisp reader.
15321 (digit_to_number): Move here from data.c. Make it static inline.
15322 (E_CHAR, EXP_INT): Remove, replacing with ...
15323 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
15324 (string_to_number): New function, replacing isfloat_string.
15325 This function checks for valid syntax and produces the resulting
15326 Lisp float number too. Rework it so that string-to-number
15327 no longer mishandles examples like "1.0e+". Use strtoumax,
15328 so that overflow for non-base-10 numbers is reported only when
15329 there's no portable and simple way to convert to floating point.
15330
15331 * textprop.c (set_text_properties_1): Rewrite for clarity,
15332 and to avoid GCC warning about integer overflow.
15333
15334 * intervals.h (struct interval): Use EMACS_INT for members
15335 where EMACS_UINT might cause problems. See
15336 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
15337 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
15338 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
15339 All uses changed.
15340 (offset_intervals): Tell GCC not to worry about length overflow
15341 when negating a negative length.
15342
15343 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
15344 (overrun_check_free): Likewise.
15345
15346 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
15347 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
15348 word size.
15349
15350 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
15351 (gnutls_make_error): Rename local to avoid shadowing.
15352 (gnutls_emacs_global_deinit): ifdef out; not used.
15353 (Fgnutls_boot): Use const for pointer to readonly storage.
15354 Comment out unused local. Fix pointer signedness problems.
15355
15356 * lread.c (openp): Don't stuff size_t into an 'int'.
15357 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
15358 about possible signed overflow.
15359
15360 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
15361 (GDK_KEY_g): Don't define if already defined.
15362 (xg_prepare_tooltip): Avoid pointer signedness problem.
15363 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
15364
15365 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
15366 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
15367
15368 * xfns.c (Fx_window_property): Simplify a bit,
15369 to make a bit faster and to avoid GCC 4.6.0 warning.
15370 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
15371
15372 * fns.c (internal_equal): Don't assume size_t fits in int.
15373
15374 * alloc.c (compact_small_strings): Tighten assertion a little.
15375
15376 Replace pEd with more-general pI, and fix some printf arg casts.
15377 * lisp.h (pI): New macro, generalizing old pEd macro to other
15378 conversion specifiers. For example, use "...%"pI"d..." rather
15379 than "...%"pEd"...".
15380 (pEd): Remove. All uses replaced with similar uses of pI.
15381 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
15382 * alloc.c (check_pure_size): Don't overflow by converting size to int.
15383 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
15384 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
15385 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
15386 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
15387 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
15388 64-bit hosts.
15389 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
15390 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
15391 * print.c (safe_debug_print, print_object): Likewise.
15392 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
15393 to int.
15394 Use pI instead of if-then-else-abort. Use %p to avoid casts,
15395 avoiding the 0 flag, which is not portable.
15396 * process.c (Fmake_network_process): Use pI to avoid cast.
15397 * region-cache.c (pp_cache): Likewise.
15398 * xdisp.c (decode_mode_spec): Likewise.
15399 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
15400 behavior on 64-bit hosts with printf arg.
15401 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
15402 (x_stop_queuing_selection_requests): Likewise.
15403 (x_get_window_property): Don't truncate byte count to an 'int'
15404 when tracing.
15405
15406 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
15407 here, since it parses constructs like leading '-' and spaces,
15408 which are not wanted; and it overflows with large numbers.
15409 Instead, simply match F[0-9]+, which is what is wanted anyway.
15410
15411 * alloc.c: Remove unportable assumptions about struct layout.
15412 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
15413 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
15414 (allocate_vectorlike, make_pure_vector): Use the new macros,
15415 plus offsetof, to remove unportable assumptions about struct layout.
15416 These assumptions hold on all porting targets that I know of, but
15417 they are not guaranteed, they're easy to remove, and removing them
15418 makes further changes easier.
15419
15420 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
15421 This doesn't fix a bug but makes the code clearer.
15422 (string_overrun_cookie): Now const. Use initializers that
15423 don't formally overflow signed char, to avoid warnings.
15424 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
15425 can cause Emacs to crash when string overrun checking is enabled.
15426 (allocate_buffer): Don't assume sizeof (struct buffer) is a
15427 multiple of sizeof (EMACS_INT); it need not be, if
15428 alignof(EMACS_INT) < sizeof (EMACS_INT).
15429 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
15430
15431 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
15432
15433 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
15434
15435 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
15436
15437 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
15438 supposed to be handshaking. (Bug#8556)
15439 Reported by Paul Eggert <eggert@cs.ucla.edu>.
15440
15441 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
15442
15443 * lisp.h (Qdebug): List symbol.
15444 * eval.c (Qdebug): Restore global linkage.
15445 * keyboard.c (debug-on-event): New variable.
15446 (handle_user_signal): Break into debugger when debug-on-event
15447 matches the current signal symbol.
15448
15449 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
15450
15451 * alloc.c (check_sblock, check_string_bytes)
15452 (check_string_free_list): Convert to standard C.
15453
15454 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
15455
15456 * w32.c (emacs_gnutls_push): Fix typo.
15457
15458 2011-04-25 Eli Zaretskii <eliz@gnu.org>
15459
15460 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
15461 "cast to pointer from integer of different size".
15462
15463 Improve doprnt and its use in verror. (Bug#8545)
15464 * doprnt.c (doprnt): Document the set of format control sequences
15465 supported by the function. Use SAFE_ALLOCA instead of always
15466 using `alloca'.
15467
15468 * eval.c (verror): Don't limit the buffer size at size_max-1, that
15469 is one byte too soon. Don't use xrealloc; instead xfree and
15470 xmalloc anew.
15471
15472 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
15473
15474 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
15475 callbacks stage.
15476
15477 * gnutls.c: Renamed global_initialized to
15478 gnutls_global_initialized. Added internals for the
15479 :verify-hostname-error, :verify-error, and :verify-flags
15480 parameters of `gnutls-boot' and documented those parameters in the
15481 docstring. Start callback support.
15482 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
15483 unless a fatal error occurred. Call gnutls_alert_send_appropriate
15484 on error. Return error code.
15485 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
15486 (emacs_gnutls_read): Likewise.
15487 (Fgnutls_boot): Return handshake error code.
15488 (emacs_gnutls_handle_error): New function.
15489 (wsaerror_to_errno): Likewise.
15490
15491 * w32.h (emacs_gnutls_pull): Add prototype.
15492 (emacs_gnutls_push): Likewise.
15493
15494 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
15495 (emacs_gnutls_push): Likewise.
15496
15497 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
15498
15499 * process.c (wait_reading_process_output): Check if GnuTLS
15500 buffered some data internally if no FDs are set for TLS
15501 connections.
15502
15503 * makefile.w32-in (OBJ2): Add gnutls.$(O).
15504 (LIBS): Link to USER_LIBS.
15505 ($(BLD)/gnutls.$(0)): New target.
15506
15507 2011-04-24 Eli Zaretskii <eliz@gnu.org>
15508
15509 * xdisp.c (handle_single_display_spec): Rename the
15510 display_replaced_before_p argument into display_replaced_p, to
15511 make it consistent with the commentary. Fix typos in the
15512 commentary.
15513
15514 * textprop.c (syms_of_textprop): Remove dead code.
15515 (copy_text_properties): Delete obsolete commentary about an
15516 interface that was deleted long ago. Fix typos in the description
15517 of arguments.
15518
15519 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
15520 to changes in oldXMenu/XMenu.h from 2011-04-16.
15521 <menu_help_message, prev_menu_help_message>: Constify.
15522 (IT_menu_make_room): menu->help_text is now `const char **';
15523 adjust.
15524
15525 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
15526 to changes in oldXMenu/XMenu.h from 2011-04-16.
15527 (struct XMenu): Declare `help_text' `const char **'.
15528
15529 * xfaces.c <Qunspecified>: Make extern again.
15530
15531 * syntax.c: Include sys/types.h before including regex.h, as
15532 required by POSIX.
15533
15534 * doc.c (get_doc_string): Improve the format passed to `error'.
15535
15536 * doprnt.c (doprnt): Improve commentary.
15537
15538 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
15539
15540 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
15541 them with etags.
15542
15543 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
15544 changes in globals.h immediately force recompilation.
15545 (TAGS): Depend on $(CURDIR)/m/intel386.h and
15546 $(CURDIR)/s/ms-w32.h.
15547 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
15548
15549 * character.c (Fchar_direction): Function deleted.
15550 (syms_of_character): Don't defsubr it.
15551 <char-direction-table>: Deleted.
15552
15553 2011-04-23 Eli Zaretskii <eliz@gnu.org>
15554
15555 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
15556 * doprnt.c: Include limits.h.
15557 (SIZE_MAX): New macro.
15558 (doprnt): Return a size_t value. 2nd arg is now size_t.
15559 Many local variables are now size_t instead of int or unsigned.
15560 Improve overflow protection. Support `l' modifier for integer
15561 conversions. Support %l conversion. Don't assume an EMACS_INT
15562 argument for integer conversions and for %c.
15563
15564 * lisp.h (doprnt): Restore prototype.
15565
15566 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
15567 $(SRC)/character.h.
15568
15569 * Makefile.in (base_obj): Add back doprnt.o.
15570
15571 * deps.mk (doprnt.o): Add back prerequisites.
15572 (callint.o): Depend on character.h.
15573
15574 * eval.c (internal_lisp_condition_case): Include the handler
15575 representation in the error message.
15576 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
15577 when breaking from the loop.
15578
15579 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
15580
15581 * callint.c (Fcall_interactively): When displaying error message
15582 about invalid control letter, pass the character's codepoint, not
15583 a pointer to its multibyte form. Improve display of the character
15584 in octal and display also its hex code.
15585
15586 * character.c (char_string): Use %x to display the (unsigned)
15587 codepoint of an invalid character, to avoid displaying a bogus
15588 negative value.
15589
15590 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
15591 `error', not SYMBOL_NAME itself.
15592
15593 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
15594 character arguments to `error'.
15595
15596 * charset.c (check_iso_charset_parameter): Fix incorrect argument
15597 to `error' in error message about FINAL_CHAR argument. Make sure
15598 FINAL_CHAR is a character, and use %c when it is passed as
15599 argument to `error'.
15600
15601 2011-04-23 Eli Zaretskii <eliz@gnu.org>
15602
15603 * s/ms-w32.h (localtime): Redirect to sys_localtime.
15604
15605 * w32.c: Include <time.h>.
15606 (sys_localtime): New function.
15607
15608 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
15609
15610 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
15611
15612 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
15613
15614 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
15615
15616 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
15617 zombies (Bug#8467).
15618
15619 2011-04-19 Eli Zaretskii <eliz@gnu.org>
15620
15621 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
15622 gl_state.e_property when gl_state.object is Qt.
15623
15624 * insdel.c (make_gap_larger): Remove limitation of buffer size
15625 to <= INT_MAX.
15626
15627 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
15628
15629 * xdisp.c (lookup_glyphless_char_display)
15630 (produce_glyphless_glyph): Handle cons cell entry in
15631 glyphless-char-display.
15632 (Vglyphless_char_display): Document it.
15633
15634 * term.c (produce_glyphless_glyph): Handle cons cell entry in
15635 glyphless-char-display.
15636
15637 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
15638
15639 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
15640
15641 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
15642
15643 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
15644 definition for no-X builds.
15645
15646 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
15647
15648 Static checks with GCC 4.6.0 and non-default toolkits.
15649
15650 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
15651
15652 * process.c (keyboard_bit_set): Define only if SIGIO.
15653 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
15654 (send_process): Repair possible setjmp clobbering.
15655
15656 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
15657
15658 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
15659
15660 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
15661
15662 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
15663 Define only if needed.
15664
15665 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
15666 by pacifying GCC about it. Maybe it's time to retire it?
15667 * xfaces.c (USG, __TIMEVAL__): Likewise.
15668
15669 * dispextern.h (struct redisplay_interface): Rename param
15670 to avoid shadowing.
15671 * termhooks.h (struct terminal): Likewise.
15672 * xterm.c (xembed_send_message): Likewise.
15673
15674 * insdel.c (make_gap_smaller): Define only if
15675 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
15676
15677 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
15678 it.
15679
15680 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
15681 so that we aren't warned about unused symbols.
15682
15683 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
15684
15685 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
15686
15687 * xfns.c (x_real_positions): Mark locals as initialized.
15688
15689 * xmenu.c (xmenu_show): Don't use uninitialized vars.
15690
15691 * xterm.c: Fix problems found by static analysis with other toolkits.
15692 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
15693 (x_dispatch_event): Declare static if USE_GTK, and
15694 define if USE_GTK || USE_X_TOOLKIT.
15695 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
15696 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
15697 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
15698 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
15699
15700 * xmenu.c (menu_help_callback): Pointer type fixes.
15701 Use const pointers when pointing at readonly data. Avoid pointer
15702 signedness clashes.
15703 (FALSE): Remove unused macro.
15704 (update_frame_menubar): Remove unused decl.
15705
15706 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
15707
15708 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
15709 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
15710 (single_menu_item): Rename local to avoid shadowing.
15711
15712 * keyboard.c (make_lispy_event): Remove unused local var.
15713
15714 * frame.c, frame.h (x_get_resource_string): Bring this back, but
15715 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
15716
15717 * bitmaps: Change bitmaps from unsigned char back to the X11
15718 compatible char. Avoid the old compiler warnings about
15719 out-of-range initializers by using, for example, '\xab' rather
15720 than 0xab.
15721
15722 * xgselect.c (xgselect_initialize): Check vs interface
15723 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
15724
15725 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
15726
15727 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
15728 to read-only memory.
15729
15730 * fns.c (vector): Remove; this old hack is no longer needed.
15731
15732 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
15733 Remove unused var.
15734 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
15735
15736 * xrdb.c (x_load_resources): Omit unused local.
15737
15738 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
15739 (x_window): Rename locals to avoid shadowing.
15740 (USG): Use the kludged USG macro, to pacify gcc.
15741
15742 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
15743 (x_term_init): Remove local to avoid shadowing.
15744
15745 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
15746
15747 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
15748 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
15749
15750 2011-04-16 Eli Zaretskii <eliz@gnu.org>
15751
15752 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
15753
15754 Fix regex.c, syntax.c and friends for buffers > 2GB.
15755 * syntax.h (struct gl_state_s): Declare character position members
15756 EMACS_INT.
15757
15758 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
15759
15760 * textprop.c (verify_interval_modification, interval_of):
15761 Declare arguments EMACS_INT.
15762
15763 * intervals.c (adjust_intervals_for_insertion): Declare arguments
15764 EMACS_INT.
15765
15766 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
15767
15768 * indent.c (Fvertical_motion): Local variable it_start is now
15769 EMACS_INT.
15770
15771 * regex.c (re_match, re_match_2, re_match_2_internal)
15772 (bcmp_translate, regcomp, regexec, print_double_string)
15773 (group_in_compile_stack, re_search, re_search_2, regex_compile)
15774 (re_compile_pattern, re_exec): Declare arguments and local
15775 variables `size_t' and `ssize_t' and return values `regoff_t', as
15776 appropriate.
15777 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
15778 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
15779 <compile_stack_type>: `size' and `avail' are now `size_t'.
15780
15781 * regex.h <regoff_t>: Use ssize_t, not int.
15782 (re_search, re_search_2, re_match, re_match_2): Arguments that
15783 specify buffer/string position and length are now ssize_t and
15784 size_t. Return type is regoff_t.
15785
15786 2011-04-16 Ben Key <bkey76@gmail.com>
15787
15788 * nsfont.m: Fixed bugs in ns_get_family and
15789 ns_descriptor_to_entity that were caused by using free to
15790 deallocate memory blocks that were allocated by xmalloc (via
15791 xstrdup). This caused Emacs to crash when compiled with
15792 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
15793 --enable-checking=xmallocoverrun). xfree is now used to
15794 deallocate these memory blocks.
15795
15796 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
15797
15798 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
15799
15800 emacs_write: Accept and return EMACS_INT for sizes.
15801 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
15802 et seq.
15803 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
15804 Accept and return EMACS_INT.
15805 (emacs_gnutls_write): Return the number of bytes written on
15806 partial writes.
15807 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
15808 (emacs_read, emacs_write): Remove check for negative size, as the
15809 Emacs source code has been audited now.
15810 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
15811 (emacs_read, emacs_write): Use it.
15812 * process.c (send_process): Adjust to the new signatures of
15813 emacs_write and emacs_gnutls_write. Do not attempt to store
15814 a byte offset into an 'int'; it might overflow.
15815 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
15816
15817 * sound.c: Don't assume sizes fit in 'int'.
15818 (struct sound_device.period_size, alsa_period_size):
15819 Return EMACS_INT, not int.
15820 (struct sound_device.write, vox_write, alsa_write):
15821 Accept EMACS_INT, not int.
15822 (wav_play, au_play): Use EMACS_INT to store sizes and to
15823 record read return values.
15824
15825 2011-04-15 Ben Key <bkey76@gmail.com>
15826
15827 * keyboard.c (Qundefined): Don't declare static since it is used
15828 in nsfns.m.
15829 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
15830 static since they are used in nsfont.m.
15831
15832 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15833
15834 * process.c (Qprocessp): Don't declare static.
15835 * lisp.h (Qprocessp): Declare again.
15836
15837 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
15838
15839 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
15840
15841 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
15842
15843 Improve C-level modularity by making more things 'static'.
15844
15845 Don't publish debugger-only interfaces to other modules.
15846 * lisp.h (safe_debug_print, debug_output_compilation_hack):
15847 (verify_bytepos, count_markers): Move decls to the only modules
15848 that need them.
15849 * region-cache.h (pp_cache): Likewise.
15850 * window.h (check_all_windows): Likewise.
15851 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
15852
15853 * sysdep.c (croak): Now static, if
15854 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
15855 * syssignal.h (croak): Declare only if not static.
15856
15857 * alloc.c (refill_memory_reserve): Now static if
15858 !defined REL_ALLOC || defined SYSTEM_MALLOC.
15859 * lisp.h (refill_memory_reserve): Declare only if not static.
15860
15861 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
15862 Define only if USE_LUCID.
15863
15864 * xrdb.c (x_customization_string, x_rm_string): Now static.
15865
15866 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
15867 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
15868
15869 * xdisp.c (draw_row_with_mouse_face): Now static.
15870 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
15871
15872 * window.h (check_all_windows): Mark externally visible.
15873
15874 * window.c (window_deletion_count): Now static.
15875
15876 * undo.c: Make symbols static if they're not exported.
15877 (last_undo_buffer, last_boundary_position, pending_boundary):
15878 Now static.
15879
15880 * textprop.c (interval_insert_behind_hooks): Now static.
15881 (interval_insert_in_front_hooks): Likewise.
15882
15883 * term.c: Make symbols static if they're not exported.
15884 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
15885 (max_frame_lines, tty_set_terminal_modes):
15886 (tty_reset_terminal_modes, tty_turn_off_highlight):
15887 (get_tty_terminal): Now static.
15888 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
15889 * termhooks.h (term_mouse_moveto): Do not declare if
15890 HAVE_WINDOW_SYSTEM.
15891 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
15892 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
15893
15894 * sysdep.c: Make symbols static if they're not exported.
15895 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
15896 Now static.
15897 (sigprocmask_set, full_mask): Remove; unused.
15898 (wait_debugging): Mark as visible.
15899 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
15900 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
15901
15902 * syntax.c (syntax_temp): Define only if !__GNUC__.
15903
15904 * sound.c (current_sound_device, current_sound): Now static.
15905
15906 * search.c (searchbufs, searchbuf_head): Now static.
15907
15908 * scroll.c (scroll_cost): Remove; unused.
15909 * dispextern.h (scroll_cost): Remove decl.
15910
15911 * region-cache.h (pp_cache): Mark as externally visible.
15912
15913 * process.c: Make symbols static if they're not exported.
15914 (process_tick, update_tick, create_process, chan_process):
15915 (Vprocess_alist, proc_buffered_char, datagram_access):
15916 (fd_callback_data, send_process_frame, process_sent_to): Now static.
15917 (deactivate_process): Mark defn as static, as well as decl.
15918 * lisp.h (create_process): Remove decl.
15919 * process.h (chan_process, Vprocess_alist): Remove decls.
15920
15921 * print.c: Make symbols static if they're not exported.
15922 (print_depth, new_backquote_output, being_printed, print_buffer):
15923 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
15924 (print_interval, print_number_index, initial_stderr_stream):
15925 Now static.
15926 * lisp.h (Fprinc): Remove decl.
15927 (debug_output_compilation_hack): Mark as externally visible.
15928
15929 * sysdep.c (croak): Move decl from here to syssignal.h.
15930 * syssignal.h (croak): Put it here, so the API can be checked when
15931 'croak' is called from dissociate_if_controlling_tty.
15932
15933 * minibuf.c: Make symbols static if they're not exported.
15934 (minibuf_save_list, choose_minibuf_frame): Now static.
15935 * lisp.h (choose_minibuf_frame): Remove decl.
15936
15937 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
15938
15939 * lread.c: Make symbols static if they're not exported.
15940 (read_objects, initial_obarray, oblookup_last_bucket_number):
15941 Now static.
15942 (make_symbol): Remove; unused.
15943 * lisp.h (initial_obarray, make_symbol): Remove decls.
15944
15945 * keyboard.c: Make symbols static if they're not exported.
15946 (single_kboard, recent_keys_index, total_keys, recent_keys):
15947 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
15948 (this_single_command_key_start, echoing, last_auto_save):
15949 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
15950 (command_loop, echo_now, keyboard_init_hook, help_char_p):
15951 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
15952 (Vlispy_mouse_stem, double_click_count):
15953 Now static.
15954 (force_auto_save_soon): Define only if SIGDANGER.
15955 (ignore_mouse_drag_p): Now static if
15956 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
15957 (print_help): Remove; unused.
15958 (stop_character, last_timer_event): Mark as externally visible.
15959 * keyboard.h (ignore_mouse_drag_p): Declare only if
15960 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
15961 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
15962 * lisp.h (echoing): Remove decl.
15963 (force_auto_save_soon): Declare only if SIGDANGER.
15964 * xdisp.c (redisplay_window): Simplify code, to make it more
15965 obvious that ignore_mouse_drag_p is not accessed if !defined
15966 USE_GTK && !defined HAVE_NS.
15967
15968 * intervals.c: Make symbols static if they're not exported.
15969 (merge_properties_sticky, merge_interval_right, delete_interval):
15970 Now static.
15971 * intervals.h (merge_interval_right, delete_interval): Remove decls.
15972
15973 * insdel.c: Make symbols static if they're not exported.
15974 However, leave prepare_to_modify_buffer alone. It's never
15975 called from outside this function, but that appears to be a bug.
15976 (combine_after_change_list, combine_after_change_buffer):
15977 (adjust_after_replace, signal_before_change): Now static.
15978 (adjust_after_replace_noundo): Remove; unused.
15979 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
15980 (signal_before_change): Remove decls.
15981
15982 * indent.c (val_compute_motion, val_vmotion): Now static.
15983
15984 * image.c: Make symbols static if they're not exported.
15985 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
15986 if USE_GTK.
15987 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
15988 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
15989
15990 * fringe.c (standard_bitmaps): Now static.
15991 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
15992
15993 * frame.c: Make symbols static if they're not exported.
15994 (x_report_frame_params, make_terminal_frame): Now static.
15995 (get_frame_param): Now static, unless HAVE_NS.
15996 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
15997 (x_get_resource_string): Remove; not used.
15998 * frame.h (make_terminal_frame, x_report_frame_params):
15999 (x_get_resource_string); Remove decls.
16000 (x_fullscreen_adjust): Declare only if WINDOWSNT.
16001 * lisp.h (get_frame_param): Declare only if HAVE_NS.
16002
16003 * font.c, fontset.c: Make symbols static if they're not exported.
16004 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
16005 (FACE_SUITABLE_FOR_CHAR_P): Use it.
16006 * font.c (font_close_object): Now static.
16007 * font.h (font_close_object): Remove.
16008 * fontset.c (FONTSET_OBJLIST): Remove.
16009 (free_realized_fontset) #if-0 the body, which does nothing.
16010 (face_suitable_for_char_p): #if-0, as it's never called.
16011 * fontset.h (face_suitable_for_char_p): Remove decl.
16012 * xfaces.c (face_at_string_position):
16013 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
16014 since 0 is always ASCII.
16015
16016 * fns.c (weak_hash_tables): Now static.
16017
16018 * fileio.c: Make symbols static if they're not exported.
16019 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
16020 (Vwrite_region_annotation_buffers): Now static.
16021
16022 * eval.c: Make symbols static if they're not exported.
16023 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
16024 * lisp.h (backtrace_list): Remove decl.
16025
16026 * emacs.c: Make symbols static if they're not exported.
16027 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
16028 (fatal_error_code, fatal_error_signal_hook, standard_args):
16029 Now static.
16030 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
16031 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
16032 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
16033 * lisp.h (fatal_error_signal_hook): Remove decl.
16034 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
16035
16036 * editfns.c: Move a (normally-unused) function to its only use.
16037 * editfns.c, lisp.h (get_operating_system_release): Remove.
16038 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
16039 worth the hassle of breaking this out.
16040
16041 * xterm.c: Make symbols static if they're not exported.
16042 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
16043 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
16044 (x_destroy_window, x_delete_display):
16045 Now static.
16046 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
16047 (x_mouse_leave): Remove; unused.
16048 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
16049 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
16050 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
16051 Remove decls.
16052 (x_mouse_leave): Declare only if WINDOWSNT.
16053 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
16054 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
16055 USE_X_TOOLKIT.
16056
16057 * ftxfont.c: Make symbols static if they're not exported.
16058 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
16059 HAVE_FREETYPE.
16060 * font.h (ftxfont_driver): Likewise.
16061
16062 * xfns.c: Make symbols static if they're not exported.
16063 (x_last_font_name, x_display_info_for_name):
16064 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
16065 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
16066 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
16067 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
16068 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
16069 (last_show_tip_args): Now static.
16070 (xic_defaut_fontset, xic_create_fontsetname): Define only if
16071 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
16072 (x_screen_planes): Remove; unused.
16073 * dispextern.h (x_screen_planes): Remove decl.
16074
16075 * dispnew.c: Make symbols static if they're not exported.
16076 * dispextern.h (redraw_garbaged_frames, scrolling):
16077 (increment_row_positions): Remove.
16078 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
16079 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
16080 Now static.
16081 (redraw_garbaged_frames): Remove; unused.
16082
16083 * xfaces.c: Make symbols static if they're not exported.
16084 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
16085 Remove decls.
16086 * xterm.h (defined_color): Remove decls.
16087 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
16088 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
16089 (menu_face_changed_default, defined_color, free_realized_face):
16090 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
16091 (ascii_face_of_lisp_face): Remove; unused.
16092
16093 * xdisp.c: Make symbols static if they're not exported.
16094 * dispextern.h (scratch_glyph_row, window_box_edges):
16095 (glyph_to_pixel_coords, set_cursor_from_row):
16096 (get_next_display_element, set_iterator_to_next):
16097 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
16098 (show_mouse_face): Remove decls
16099 * frame.h (message_buf_print): Likewise.
16100 * lisp.h (pop_message, set_message, check_point_in_composition):
16101 Likewise.
16102 * xterm.h (set_vertical_scroll_bar): Likewise.
16103 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
16104 (message_buf_print, scratch_glyph_row, displayed_buffer):
16105 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
16106 (get_next_display_element, show_mouse_face, window_box_edges):
16107 (frame_to_window_pixel_xy, check_point_in_composition):
16108 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
16109 (glyph_to_pixel_coords): Remove; unused.
16110
16111 * dired.c (file_name_completion): Now static.
16112
16113 * dbusbind.c (xd_in_read_queued_messages): Now static.
16114
16115 * lisp.h (circular_list_error, FOREACH): Remove; unused.
16116 * data.c (circular_list_error): Remove.
16117
16118 * commands.h (last_point_position, last_point_position_buffer):
16119 (last_point_position_window): Remove decls.
16120 * keyboard.c: Make these variables static.
16121
16122 * coding.h (coding, code_convert_region, encode_coding_gap):
16123 Remove decls.
16124 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
16125 (iso_code_class, detect_coding, code_convert_region): Now static.
16126 (encode_coding_gap): Remove; unused.
16127
16128 * chartab.c (chartab_chars, chartab_bits): Now static.
16129
16130 * charset.h (charset_iso_8859_1): Remove decl.
16131 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
16132 Now static.
16133
16134 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
16135 * ccl.c (Vccl_program_table): Now static.
16136 (check_ccl_update): Remove; unused.
16137
16138 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
16139 * category.h: ... from here.
16140 * category.c (check_category_table, set_category_set): Now static.
16141
16142 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
16143 * lisp.h: Remove these decls.
16144
16145 * buffer.c (buffer_count): Remove unused var.
16146
16147 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
16148 so that it's not optimized away.
16149 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
16150 * dispextern.h (bidi_dump_cached_states): Remove, since it's
16151 exported only to the debugger.
16152
16153 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
16154 * atimer.h (run_all_atimers): Remove; not exported.
16155
16156 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
16157 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
16158 was inaccessible from Lisp.
16159 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
16160 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
16161
16162 alloc.c: Import and export fewer symbols, and remove unused items.
16163 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
16164 is defined.
16165 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
16166 it's not optimized away by whole-program optimization.
16167 (message_enable_multibyte, free_misc): Remove.
16168 (catchlist, handlerlist, mark_backtrace):
16169 Declare only if BYTE_MARK_STACK.
16170 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
16171 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
16172 (message_enable_multibyte): Remove decl.
16173 (free_misc, interval_free_list, float_block, float_block_index):
16174 (n_float_blocks, float_free_list, cons_block, cons_block_index):
16175 (cons_free_list, last_marked_index):
16176 Now static.
16177 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
16178 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
16179 (mark_backtrace): Define only if BYTE_MARK_STACK.
16180 * xdisp.c (message_enable_multibyte): Now static.
16181
16182 Declare Lisp_Object Q* variables to be 'static' if not exported.
16183 This makes it easier for human readers (and static analyzers)
16184 to see whether these variables are used from other modules.
16185 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
16186 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
16187 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
16188 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
16189 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
16190 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
16191 * xmenu.c, xselect.c:
16192 Declare Q* vars static if they are not used in other modules.
16193 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
16194 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
16195 Remove decls of unexported vars.
16196 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
16197
16198 * lisp.h (DEFINE_FUNC): Make sname 'static'.
16199
16200 Make Emacs functions such as Fatom 'static' by default.
16201 This makes it easier for human readers (and static analyzers)
16202 to see whether these functions can be called from other modules.
16203 DEFUN now defines a static function. To make the function external
16204 so that it can be used in other C modules, use the new macro DEFUE.
16205 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
16206 (Finit_image_library):
16207 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
16208 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
16209 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
16210 Remove decls, since these functions are now static.
16211 (Funintern, Fget_internal_run_time): New decls, since these functions
16212 were already external.
16213
16214 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
16215 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
16216 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
16217 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
16218 * keyboard.c, keymap.c, lread.c:
16219 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
16220 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
16221 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
16222 Mark functions with DEFUE instead of DEFUN,
16223 if they are used in other modules.
16224 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
16225 decls for now-static functions.
16226 * buffer.h (Fdelete_overlay): Remove decl.
16227 * callproc.c (Fgetenv_internal): Mark as internal.
16228 * composite.c (Fremove_list_of_text_properties): Remove decl.
16229 (Fcomposition_get_gstring): New forward static decl.
16230 * composite.h (Fcomposite_get_gstring): Remove decl.
16231 * dired.c (Ffile_attributes): New forward static decl.
16232 * doc.c (Fdocumntation_property): New forward static decl.
16233 * eval.c (Ffetch_bytecode): New forward static decl.
16234 (Funintern): Remove extern decl; now in .h file where it belongs.
16235 * fileio.c (Fmake_symbolic_link): New forward static decl.
16236 * image.c (Finit_image_library): New forward static decl.
16237 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
16238 * intervals.h (Fprevious_property_change):
16239 (Fremove_list_of_text_properties): Remove decls.
16240 * keyboard.c (Fthis_command_keys): Remove decl.
16241 (Fcommand_execute): New forward static decl.
16242 * keymap.c (Flookup_key): New forward static decl.
16243 (Fcopy_keymap): Now static.
16244 * keymap.h (Flookup_key): Remove decl.
16245 * process.c (Fget_process): New forward static decl.
16246 (Fprocess_datagram_address): Mark as internal.
16247 * syntax.c (Fsyntax_table_p): New forward static decl.
16248 (skip_chars): Remove duplicate decl.
16249 * textprop.c (Fprevious_property_change): New forward static decl.
16250 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
16251 Now internal.
16252 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
16253 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
16254
16255 * editfns.c (Fformat): Remove unreachable code.
16256
16257 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
16258
16259 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
16260 change. (Bug#8496)
16261
16262 2011-04-13 Eli Zaretskii <eliz@gnu.org>
16263
16264 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
16265 when at ZV. (Bug#8487)
16266
16267 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
16268
16269 * charset.c (Fclear_charset_maps): Use xfree instead of free.
16270 (Bug#8437)
16271 * keyboard.c (parse_tool_bar_item): Likewise.
16272 * sound.c (sound_cleanup, alsa_close): Likewise.
16273 * termcap.c (tgetent): Likewise.
16274 * xfns.c (x_default_font_parameter): Likewise.
16275 * xsettings.c (read_and_apply_settings): Likewise.
16276
16277 * alloc.c (overrun_check_malloc, overrun_check_realloc)
16278 (overrun_check_free): Protoize.
16279
16280 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
16281
16282 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
16283 since callers should never pass a negative size.
16284 Change the signature to match that of plain 'read' and 'write'; see
16285 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
16286 * lisp.h: Update prototypes of emacs_write and emacs_read.
16287
16288 2011-04-11 Eli Zaretskii <eliz@gnu.org>
16289
16290 * xdisp.c (redisplay_window): Don't try to determine the character
16291 position of the scroll margin if the window start point w->startp
16292 is outside the buffer's accessible region. (Bug#8468)
16293
16294 2011-04-10 Eli Zaretskii <eliz@gnu.org>
16295
16296 Fix write-region and its subroutines for buffers > 2GB.
16297 * fileio.c (a_write, e_write): Modify declaration of arguments and
16298 local variables to support buffers larger than 2GB.
16299 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
16300
16301 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
16302 argument, local variables, and return value.
16303
16304 * lisp.h: Update prototypes of emacs_write and emacs_read.
16305
16306 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
16307
16308 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
16309
16310 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
16311
16312 Fix more problems found by GCC 4.6.0's static checks.
16313
16314 * xdisp.c (vmessage): Use a better test for character truncation.
16315
16316 * charset.c (load_charset_map): <, not <=, for optimization,
16317 and to avoid potential problems with integer overflow.
16318 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
16319 * casetab.c (set_identity, shuffle): Likewise.
16320 * editfns.c (Fformat): Likewise.
16321 * syntax.c (skip_chars): Likewise.
16322
16323 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
16324 This also lets GCC 4.6.0 generate slightly better loop code.
16325
16326 * callint.c (Fcall_interactively): <, not <=, for optimization.
16327 (Fcall_interactively): Count the number of arguments produced,
16328 not the number of arguments given. This is simpler and lets GCC
16329 4.6.0 generate slightly better code.
16330
16331 * ftfont.c: Distingish more carefully between FcChar8 and char.
16332 The previous code passed unsigned char * to a functions like
16333 strlen and xstrcasecmp that expect char *, which does not
16334 conform to the C standard.
16335 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
16336 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
16337 char * when the C standard requires it.
16338
16339 * keyboard.c (read_char): Remove unused var.
16340
16341 * eval.c: Port to Windows vsnprintf (Bug#8435).
16342 Include <limits.h>.
16343 (SIZE_MAX): Define if the headers do not.
16344 (verror): Do not give up if vsnprintf returns a negative count.
16345 Instead, grow the buffer. This ports to Windows vsnprintf, which
16346 does not conform to C99. Problem reported by Eli Zaretskii.
16347 Also, simplify the allocation scheme, by avoiding the need for
16348 calling realloc, and removing the ALLOCATED variable.
16349
16350 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
16351
16352 Remove invocations of doprnt, as Emacs now uses vsnprintf.
16353 But keep the doprint source code for now, as we might revamp it
16354 and use it again (Bug#8435).
16355 * lisp.h (doprnt): Remove.
16356 * Makefile.in (base_obj): Remove doprnt.o.
16357 * deps.mk (doprnt.o): Remove.
16358
16359 error: Print 32- and 64-bit integers portably (Bug#8435).
16360 Without this change, on typical 64-bit hosts error ("...%d...", N)
16361 was used to print both 32- and 64-bit integers N, which relied on
16362 undefined behavior.
16363 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
16364 * lisp.h (error, verror): Mark as printf-like functions.
16365 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
16366 Report overflow in size calculations when allocating printf buffer.
16367 Do not truncate output string at its first null byte.
16368 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
16369 Truncate the output at a character boundary, since vsnprintf does not
16370 do that.
16371 * charset.c (check_iso_charset_parameter): Convert internal
16372 character to string before calling 'error', since %c now has the
16373 printf meaning.
16374 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
16375 overflow when computing char to be passed to 'error'. Do not
16376 pass Lisp_Object to 'error'; pass the integer instead.
16377 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
16378 formatted with plain %d.
16379
16380 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
16381
16382 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
16383
16384 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
16385
16386 * xterm.c (x_catch_errors): Remove duplicate declaration.
16387
16388 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
16389
16390 * xdisp.c, lisp.h (message_nolog): Remove; unused.
16391
16392 2011-04-10 Jim Meyering <meyering@redhat.com>
16393
16394 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
16395 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
16396 return ssize_t not "int", and use size_t as the buffer length.
16397 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
16398 * gnutls.h: Update declarations.
16399 * process.c (read_process_output): Use ssize_t, to match.
16400 (send_process): Likewise.
16401
16402 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
16403
16404 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
16405
16406 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
16407
16408 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
16409 Use unsigned char, to match FcChar8 type definition.
16410
16411 * xterm.c (handle_one_xevent):
16412 * xmenu.c (create_and_show_popup_menu):
16413 * xselect.c (x_decline_selection_request)
16414 (x_reply_selection_request): Avoid type-punned deref of X events.
16415
16416 2011-04-09 Eli Zaretskii <eliz@gnu.org>
16417
16418 Fix some uses of `int' instead of EMACS_INT.
16419 * search.c (string_match_1, fast_string_match)
16420 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
16421 (scan_buffer, find_next_newline_no_quit)
16422 (find_before_next_newline, search_command, Freplace_match)
16423 (Fmatch_data): Make some `int' variables be EMACS_INT.
16424
16425 * xdisp.c (display_count_lines): 3rd argument and return value now
16426 EMACS_INT. All callers changed.
16427 (pint2hrstr): Last argument is now EMACS_INT.
16428
16429 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
16430 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
16431 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
16432 (decode_coding_utf_16, decode_coding_emacs_mule)
16433 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16434 (decode_coding_ccl, decode_coding_charset)
16435 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
16436 (decode_coding_iso_2022, decode_coding_emacs_mule)
16437 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
16438 <char_offset, last_offset>: Declare EMACS_INT.
16439 (encode_coding_utf_8, encode_coding_utf_16)
16440 (encode_coding_emacs_mule, encode_invocation_designation)
16441 (encode_designation_at_bol, encode_coding_iso_2022)
16442 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
16443 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
16444 Declare EMACS_INT.
16445 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
16446 (encode_invocation_designation): Last argument P_NCHARS is now
16447 EMACS_INT.
16448 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
16449 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
16450
16451 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
16452 All users changed.
16453
16454 * ccl.c (Fccl_execute_on_string): Declare some variables
16455 EMACS_INT.
16456
16457 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
16458
16459 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
16460
16461 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
16462
16463 * process.c (Fformat_network_address): Doc fix.
16464
16465 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
16466
16467 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
16468
16469 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
16470
16471 * keyboard.c (read_char): Call Lisp function help-form-show,
16472 instead of using internal_with_output_to_temp_buffer.
16473 (Qhelp_form_show): New var.
16474 (syms_of_keyboard): Use DEFSYM macro.
16475
16476 * print.c (internal_with_output_to_temp_buffer): Function deleted.
16477
16478 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
16479
16480 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
16481
16482 * process.c (Flist_processes): Remove to Lisp.
16483 (list_processes_1): Delete.
16484
16485 2011-04-06 Eli Zaretskii <eliz@gnu.org>
16486
16487 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
16488
16489 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
16490
16491 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
16492
16493 Fix more problems found by GCC 4.6.0's static checks.
16494
16495 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
16496
16497 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
16498
16499 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
16500
16501 * xdisp.c (vmessage): Mark as a printf-like function.
16502
16503 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
16504
16505 * sound.c (sound_warning): Don't crash if arg contains a printf format.
16506
16507 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
16508 printf-like functions.
16509 (tiff_load): Add casts to remove these marks before passing them
16510 to system-supplied API.
16511
16512 * eval.c (Fsignal): Remove excess argument to 'fatal'.
16513
16514 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
16515 This avoids several warnings with gcc -Wstrict-overflow.
16516 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
16517 directly, rather than having caller test rule sign. This avoids
16518 some unnecessary tests.
16519 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
16520 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
16521 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
16522
16523 * xfont.c (xfont_text_extents): Remove var that was set but not used.
16524 (xfont_open): Avoid unnecessary tests.
16525
16526 * composite.c (composition_gstring_put_cache): Use unsigned integer.
16527
16528 * composite.h, composite.c (composition_gstring_put_cache):
16529 Use EMACS_INT, not int, for length.
16530
16531 * composite.h (COMPOSITION_DECODE_REFS): New macro,
16532 breaking out part of COMPOSITION_DECODE_RULE.
16533 (COMPOSITION_DECODE_RULE): Use it.
16534 * composite.c (get_composition_id): Remove unused local vars,
16535 by using the new macro.
16536
16537 * textprop.c (set_text_properties_1): Change while to do-while,
16538 since the condition is always true at first.
16539
16540 * intervals.c (graft_intervals_into_buffer): Mark var as used.
16541 (interval_deletion_adjustment): Return unsigned value.
16542 All uses changed.
16543
16544 * process.c (list_processes_1, create_pty, read_process_output):
16545 (exec_sentinel): Remove vars that were set but not used.
16546 (create_pty): Remove unnecessary "volatile"s.
16547 (Fnetwork_interface_info): Avoid possibility of int overflow.
16548 (read_process_output): Do adaptive read buffering even if carryover.
16549 (read_process_output): Simplify nbytes computation if buffered.
16550
16551 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
16552
16553 * syntax.c (scan_words): Remove var that was set but not used.
16554 (update_syntax_table): Use unsigned instead of int.
16555
16556 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
16557 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
16558 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
16559
16560 * print.c (print_error_message): Avoid int overflow.
16561
16562 * font.c (font_list_entities): Redo for clarity,
16563 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
16564
16565 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
16566 (font_score): Avoid potential overflow in diff calculation.
16567
16568 * fns.c (substring_both): Remove var that is set but not used.
16569 (sxhash): Redo loop for clarity and to avoid wraparound warning.
16570
16571 * eval.c (funcall_lambda): Rename local to avoid shadowing.
16572
16573 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
16574 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
16575 can always succeed if overflow has undefined behavior.
16576
16577 * search.c (boyer_moore, wordify): Remove vars set but not used.
16578 (wordify): Omit three unnecessary tests.
16579
16580 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
16581 All callers changed. This avoids the need for an unused var.
16582
16583 * casefiddle.c (casify_region): Remove var that is set but not used.
16584
16585 * dired.c (file_name_completion): Remove var that is set but not used.
16586
16587 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
16588
16589 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
16590 (Finsert_file_contents): Remove unnecessary code checking fd.
16591
16592 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
16593 Check for integer overflow on size calculations.
16594
16595 * buffer.c (Fprevious_overlay_change): Remove var that is set
16596 but not used.
16597
16598 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
16599 Remove vars that are set but not used.
16600 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
16601 (timer_check_2): Mark vars as initialized.
16602
16603 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
16604
16605 * image.c (lookup_image): Remove var that is set but not used.
16606 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
16607
16608 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
16609 that are set but not used.
16610
16611 * xfns.c (make_invisible_cursor): Don't return garbage
16612 if XCreateBitmapFromData fails (Bug#8410).
16613
16614 * xselect.c (x_get_local_selection, x_handle_property_notify):
16615 Remove vars that are set but not used.
16616
16617 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
16618 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
16619
16620 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
16621 Remove var that is set but not used.
16622 (scroll_bar_windows_size): Now size_t, not int.
16623 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
16624 Check for overflow.
16625
16626 * xfaces.c (realize_named_face): Remove vars that are set but not used.
16627 (map_tty_color) [!defined MSDOS]: Likewise.
16628
16629 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
16630
16631 * coding.c: Remove vars that are set but not used.
16632 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
16633 All callers changed.
16634 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
16635 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
16636 (decode_coding_charset): Remove vars that are set but not used.
16637
16638 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
16639 that is set but not used.
16640
16641 * print.c (print_object): Remove var that is set but not used.
16642
16643 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
16644 The gnulib version avoids calling malloc in the usual case,
16645 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
16646 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
16647 * filelock.c (current_lock_owner): Likewise.
16648 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
16649 * sysdep.c: Include allocator.h, careadlinkat.h.
16650 (emacs_no_realloc_allocator): New static constant.
16651 (emacs_readlink): New function.
16652 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
16653 ../lib/careadlinkat.h.
16654
16655 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16656
16657 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
16658 first non-nil return value).
16659
16660 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
16661
16662 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
16663 if not defined (Bug#8403).
16664
16665 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
16666
16667 * xdisp.c (display_count_lines): Remove parameter `start',
16668 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
16669 (get_char_face_and_encoding): Remove parameter `multibyte_p',
16670 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
16671 (fill_stretch_glyph_string): Remove parameters `row' and `area',
16672 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
16673 and thereabouts. All callers changed.
16674 (get_per_char_metric): Remove parameter `f', unused since
16675 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
16676
16677 2011-04-02 Jim Meyering <meyering@redhat.com>
16678
16679 do not dereference NULL upon failed strdup
16680 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
16681 (ns_get_family): Likewise.
16682
16683 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
16684
16685 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
16686
16687 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
16688
16689 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
16690 later (Bug#8403).
16691
16692 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16693
16694 Add lexical binding.
16695
16696 * window.c (Ftemp_output_buffer_show): New fun.
16697 (Fsave_window_excursion):
16698 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
16699
16700 * lread.c (lisp_file_lexically_bound_p): New function.
16701 (Fload): Bind Qlexical_binding.
16702 (readevalloop): Remove `evalfun' arg.
16703 Bind Qinternal_interpreter_environment.
16704 (Feval_buffer): Bind Qlexical_binding.
16705 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
16706 Mark as dynamic.
16707 (syms_of_lread): Declare `lexical-binding'.
16708
16709 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
16710
16711 * keyboard.c (eval_dyn): New fun.
16712 (menu_item_eval_property): Use it.
16713
16714 * image.c (parse_image_spec): Use Ffunctionp.
16715
16716 * fns.c (concat, mapcar1): Accept byte-code-functions.
16717
16718 * eval.c (Fsetq): Handle lexical vars.
16719 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
16720 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
16721 (FletX, Flet): Obey lexical binding.
16722 (Fcommandp): Handle closures.
16723 (Feval): New `lexical' arg.
16724 (eval_sub): New function extracted from Feval. Use it almost
16725 everywhere where Feval was used. Look up vars in lexical env.
16726 Handle closures.
16727 (Ffunctionp): Move from subr.el.
16728 (Ffuncall): Handle closures.
16729 (apply_lambda): Remove `eval_flags'.
16730 (funcall_lambda): Handle closures and new byte-code-functions.
16731 (Fspecial_variable_p): New function.
16732 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
16733 but without exporting it to Lisp.
16734
16735 * doc.c (Fdocumentation, store_function_docstring):
16736 * data.c (Finteractive_form): Handle closures.
16737
16738 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
16739 interactive spec.
16740
16741 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
16742 New byte-codes.
16743 (exec_byte_code): New function extracted from Fbyte_code to handle new
16744 calling convention for byte-code-functions. Add new byte-codes.
16745
16746 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
16747
16748 * alloc.c (Fmake_symbol): Init new `declared_special' field.
16749
16750 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
16751
16752 * xdisp.c (redisplay_internal): Fix prototype.
16753
16754 2011-03-31 Eli Zaretskii <eliz@gnu.org>
16755
16756 * xdisp.c (SCROLL_LIMIT): New macro.
16757 (try_scrolling): Use it when setting scroll_limit.
16758 Limit scrolling to 100 screen lines.
16759 (redisplay_window): Even when falling back on "recentering",
16760 position point in the window according to scroll-conservatively,
16761 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
16762
16763 (try_scrolling): When point is above the window, allow searching
16764 as far as scroll_max, or one screenful, to compute vertical
16765 distance from PT to the scroll margin position. This prevents
16766 try_scrolling from unnecessarily failing when
16767 scroll-conservatively is set to a value slightly larger than the
16768 window height. Clean up the case of PT below the margin at bottom
16769 of window: scroll_max can no longer be INT_MAX. When aggressive
16770 scrolling is in use, don't let point enter the opposite scroll
16771 margin as result of the scroll.
16772 (syms_of_xdisp) <scroll-conservatively>: Document the
16773 threshold of 100 lines for never-recentering scrolling.
16774
16775 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
16776
16777 * dispextern.h (move_it_by_lines):
16778 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
16779 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
16780 (message_log_check_duplicate): Remove parameters `prev_bol' and
16781 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
16782 (redisplay_internal): Remove parameter `preserve_echo_area',
16783 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
16784
16785 * indent.c (Fvertical_motion):
16786 * window.c (window_scroll_pixel_based, Frecenter):
16787 Don't pass `need_y_p' to `move_it_by_lines'.
16788
16789 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16790
16791 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
16792 steal a few bits to be more compact.
16793 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
16794 Remove unneeded casts.
16795
16796 * bytecode.c (Fbyte_code): CAR and CDR can GC.
16797
16798 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
16799
16800 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
16801 binding" message (bug#7967).
16802
16803 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
16804
16805 Fix more problems found by GCC 4.6.0's static checks.
16806
16807 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
16808 Remove unused local var.
16809
16810 * editfns.c (Fmessage_box): Remove unused local var.
16811
16812 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
16813 (note_mode_line_or_margin_highlight, note_mouse_highlight):
16814 Omit unused local vars.
16815 * window.c (shrink_windows): Omit unused local var.
16816 * menu.c (digest_single_submenu): Omit unused local var.
16817 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
16818 Omit unused local var.
16819
16820 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
16821 Don't assume string length fits in int.
16822 (keyremap_step, read_key_sequence): Use size_t for sizes.
16823 (read_key_sequence): Don't check last_real_key_start redundantly.
16824
16825 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
16826 instead of alloca (Bug#8344).
16827
16828 * eval.c (Fbacktrace): Don't assume nargs fits in int.
16829 (Fbacktrace_frame): Don't assume nframes fits in int.
16830
16831 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
16832
16833 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
16834 concerns.
16835
16836 * term.c (produce_glyphless_glyph): Remove unnecessary test.
16837
16838 * cm.c (calccost): Turn while-do into do-while, for clarity.
16839
16840 * keyboard.c (syms_of_keyboard): Use the same style as later
16841 in this function when indexing through an array. This also
16842 works around GCC bug 48267.
16843
16844 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
16845
16846 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
16847
16848 * chartab.c (sub_char_table_ref_and_range): Redo for slight
16849 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
16850
16851 * keyboard.c, keyboard.h (num_input_events): Now size_t.
16852 This avoids undefined behavior on integer overflow, and is a bit
16853 more convenient anyway since it is compared to a size_t variable.
16854
16855 Variadic C functions now count arguments with size_t, not int.
16856 This avoids an unnecessary limitation on 64-bit machines, which
16857 caused (substring ...) to crash on large vectors (Bug#8344).
16858 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
16859 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
16860 All variadic functions and their callers changed accordingly.
16861 (struct gcpro.nvars): Now size_t, not int. All uses changed.
16862 * data.c (arith_driver, float_arith_driver): Likewise.
16863 * editfns.c (general_insert_function): Likewise.
16864 * eval.c (struct backtrace.nargs, interactive_p)
16865 (internal_condition_case_n, run_hook_with_args, apply_lambda)
16866 (funcall_lambda, mark_backtrace): Likewise.
16867 * fns.c (concat): Likewise.
16868 * frame.c (x_set_frame_parameters): Likewise.
16869 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
16870 0 if not found, not -1. All callers changed.
16871
16872 * alloc.c (garbage_collect): Don't assume stack size fits in int.
16873 (stack_copy_size): Now size_t, not int.
16874 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
16875
16876 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
16877
16878 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
16879 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
16880 All callers changed.
16881
16882 * lisp.h (multibyte_char_to_unibyte):
16883 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
16884 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
16885 * character.h (CHAR_TO_BYTE8):
16886 * cmds.c (internal_self_insert):
16887 * editfns.c (general_insert_function):
16888 * keymap.c (push_key_description):
16889 * search.c (Freplace_match):
16890 * xdisp.c (message_dolog, set_message_1): All callers changed.
16891
16892 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16893
16894 * keyboard.c (safe_run_hook_funcall): New function.
16895 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
16896 don't set the hook to nil, but remove the offending function instead.
16897 (Qcommand_hook_internal): Remove, unused.
16898 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
16899 Vcommand_hook_internal.
16900
16901 * eval.c (enum run_hooks_condition): Remove.
16902 (funcall_nil, funcall_not): New functions.
16903 (run_hook_with_args): Call each function through a `funcall' argument.
16904 Remove `cond' argument, now redundant.
16905 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
16906 (Frun_hook_with_args_until_failure): Adjust accordingly.
16907 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
16908
16909 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
16910
16911 * dispextern.h (string_buffer_position): Remove declaration.
16912
16913 * print.c (strout): Remove parameter `multibyte', unused since
16914 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
16915
16916 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
16917 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
16918 All callers changed.
16919
16920 * w32.c (_wsa_errlist): Use braces for struct initializers.
16921
16922 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
16923 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
16924 All callers changed.
16925 (string_buffer_position): Likewise. Also, make static (it's never
16926 used outside xdisp.c).
16927 (cursor_row_p): Remove parameter `w', unused since
16928 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
16929 (decode_mode_spec): Remove parameter `precision', introduced during
16930 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
16931 All callers changed.
16932
16933 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16934
16935 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
16936
16937 2011-03-27 Anders Lindgren <andlind@gmail.com>
16938
16939 * nsterm.m (ns_menu_bar_is_hidden): New variable.
16940 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
16941 (ns_update_auto_hide_menu_bar): New functions.
16942 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
16943 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
16944 ns_constrain_all_frames.
16945 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
16946 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
16947
16948 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16949
16950 * nsmenu.m (runDialogAt): Remove argument to timer_check.
16951
16952 2011-03-27 Glenn Morris <rgm@gnu.org>
16953
16954 * syssignal.h: Replace RETSIGTYPE with void.
16955 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
16956 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
16957 Replace SIGTYPE with void everywhere.
16958 * s/usg5-4-common.h (SIGTYPE): Remove definition.
16959 * s/template.h (SIGTYPE): Remove commented out definition.
16960
16961 2011-03-26 Eli Zaretskii <eliz@gnu.org>
16962
16963 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
16964 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
16965
16966 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
16967
16968 * w32.c (read_unc_volume): Use parameter `henum', instead of
16969 global variable `wget_enum_handle'.
16970
16971 * keymap.c (describe_vector): Remove parameters `indices' and
16972 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
16973 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
16974
16975 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
16976
16977 * keyboard.c (timer_check): Remove parameter `do_it_now',
16978 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
16979 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
16980 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
16981
16982 * keyboard.c (read_char):
16983 * w32menu.c (w32_menu_display_help):
16984 * xmenu.c (show_help_event, menu_help_callback):
16985 Adjust calls to `show_help_echo'.
16986
16987 * gtkutil.c (xg_maybe_add_timer):
16988 * keyboard.c (readable_events):
16989 * process.c (wait_reading_process_output):
16990 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
16991
16992 * insdel.c (adjust_markers_gap_motion):
16993 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
16994 (gap_left, gap_right): Don't call it.
16995
16996 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
16997
16998 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
16999 incurred during fontification.
17000
17001 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
17002
17003 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
17004 (DEFVAR_PER_BUFFER): Don't pass it.
17005
17006 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
17007 (scrolling_window): Don't pass it.
17008
17009 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
17010
17011 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
17012
17013 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
17014 and `suffix'.
17015 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
17016 of variables specific to SELinux and computation of `encoded_absname'.
17017
17018 * image.c (XPutPixel): Remove unused variable `height'.
17019
17020 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
17021
17022 * unexw32.c (get_section_info): Remove unused variable `section'.
17023
17024 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
17025 (system_process_attributes): Remove unused variable `sess'.
17026 (sys_read): Remove unused variable `err'.
17027
17028 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
17029 (w32_wnd_proc): Remove unused variable `isdead'.
17030 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
17031 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
17032 (x_create_tip_frame): Remove unused variable `tem'.
17033
17034 * w32inevt.c (w32_console_read_socket):
17035 Remove unused variable `no_events'.
17036
17037 * w32term.c (x_draw_composite_glyph_string_foreground):
17038 Remove unused variable `width'.
17039
17040 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
17041
17042 * w32term.c (x_set_glyph_string_clipping):
17043 Don't pass uninitialized region to CombineRgn.
17044
17045 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
17046
17047 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
17048 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
17049 (Fx_close_connection): Remove unused variable `i'.
17050
17051 * w32font.c (w32font_draw): Return number of glyphs.
17052 (w32font_open_internal): Remove unused variable `i'.
17053 (w32font_driver): Add missing initializer.
17054
17055 * w32menu.c (utf8to16): Remove unused variable `utf16'.
17056 (fill_in_menu): Remove unused variable `items_added'.
17057
17058 * w32term.c (last_mouse_press_frame): Remove static global variable.
17059 (w32_clip_to_row): Remove unused variable `f'.
17060 (x_delete_terminal): Remove unused variable `i'.
17061
17062 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
17063 (NOTHING): Remove unused static global variable.
17064 (uniscribe_check_otf): Remove unused variable `table'.
17065 (uniscribe_font_driver): Add missing initializers.
17066
17067 2011-03-23 Julien Danjou <julien@danjou.info>
17068
17069 * term.c (Fsuspend_tty, Fresume_tty):
17070 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
17071 * window.c (temp_output_buffer_show):
17072 * insdel.c (signal_before_change):
17073 * frame.c (Fhandle_switch_frame):
17074 * fileio.c (Fdo_auto_save):
17075 * emacs.c (Fkill_emacs):
17076 * editfns.c (save_excursion_restore):
17077 * cmds.c (internal_self_insert):
17078 * callint.c (Fcall_interactively):
17079 * buffer.c (Fkill_all_local_variables):
17080 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
17081 Use Frun_hooks.
17082 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
17083 unconditionally since it does the check itself.
17084
17085 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
17086
17087 Fix more problems found by GCC 4.5.2's static checks.
17088
17089 * coding.c (encode_coding_raw_text): Avoid unnecessary test
17090 the first time through the loop, since we know p0 < p1 then.
17091 This also avoids a gcc -Wstrict-overflow warning.
17092
17093 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
17094 leading to a memory leak, possible in functions like
17095 load_charset_map_from_file that can allocate an unbounded number
17096 of objects (Bug#8318).
17097
17098 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
17099 that could (at least in theory) be that large.
17100
17101 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
17102 This is less likely to overflow, and avoids undefined behavior if
17103 overflow does occur. All callers changed. Use strtoul to scan
17104 for the unsigned long integer.
17105 (pint2hrstr): Simplify and tune code slightly.
17106 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
17107
17108 * scroll.c (do_scrolling): Work around GCC bug 48228.
17109 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
17110
17111 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
17112 This also avoids a warning with gcc -Wstrict-overflow.
17113 (validate_x_resource_name): Simplify count usage.
17114 This also avoids a warning with gcc -Wstrict-overflow.
17115
17116 * fileio.c (Fcopy_file): Report error if fchown or fchmod
17117 fail (Bug#8306).
17118
17119 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
17120
17121 * process.c (Fmake_network_process): Use socklen_t, not int,
17122 where POSIX says socklen_t is required in portable programs.
17123 This fixes a porting bug on hosts like 64-bit HP-UX, where
17124 socklen_t is wider than int (Bug#8277).
17125 (Fmake_network_process, server_accept_connection):
17126 (wait_reading_process_output, read_process_output):
17127 Likewise.
17128
17129 * process.c: Rename or move locals to avoid shadowing.
17130 (list_processes_1, Fmake_network_process):
17131 (read_process_output_error_handler, exec_sentinel_error_handler):
17132 Rename or move locals.
17133 (Fmake_network_process): Define label "retry_connect" only if needed.
17134 (Fnetwork_interface_info): Fix pointer signedness.
17135 (process_send_signal): Add cast to avoid pointer signedness problem.
17136 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
17137 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
17138
17139 Make tparam.h and terminfo.c consistent.
17140 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
17141 Include tparam.h instead, since it declares them.
17142 * cm.h (PC): Remove extern decl; tparam.h now does this.
17143 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
17144 * terminfo.c: Include tparam.h, to check interfaces.
17145 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
17146 (tparam): Adjust signature to match interface in tparam.h;
17147 this removes some undefined behavior. Check that outstring and len
17148 are zero, which they always are with Emacs.
17149 * tparam.h (PC, BC, UP): New extern decls.
17150
17151 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
17152 (xftfont_open): Rename locals to avoid shadowing.
17153
17154 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
17155 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
17156 (OTF_TAG_SYM): Omit macro if not needed.
17157 (ftfont_list): Remove unused local.
17158 (get_adstyle_property, ftfont_pattern_entity):
17159 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
17160 Rename locals to avoid shadowing.
17161
17162 * xfont.c (xfont_list_family): Mark var as initialized.
17163
17164 * xml.c (make_dom): Now static.
17165
17166 * composite.c (composition_compute_stop_pos): Rename local to
17167 avoid shadowing.
17168 (composition_reseat_it): Remove unused locals.
17169 (find_automatic_composition, composition_adjust_point): Likewise.
17170 (composition_update_it): Mark var as initialized.
17171 (find_automatic_composition): Mark vars as initialized,
17172 with a FIXME (Bug#8290).
17173
17174 character.h: Rename locals to avoid shadowing.
17175 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
17176 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
17177 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
17178 (BUF_DEC_POS): Be more systematic about renaming local temporaries
17179 to avoid shadowing.
17180
17181 * textprop.c (property_change_between_p): Remove; unused.
17182
17183 * intervals.c (interval_start_pos): Now static.
17184
17185 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
17186
17187 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
17188 Rename locals to avoid shadowing.
17189
17190 * sound.c (wav_play, au_play, Fplay_sound_internal):
17191 Fix pointer signedness.
17192 (alsa_choose_format): Remove unused local var.
17193 (wav_play): Initialize a variable to 0, to prevent undefined
17194 behavior (Bug#8278).
17195
17196 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
17197
17198 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
17199
17200 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
17201 clobbering (Bug#8298).
17202 * sysdep.c (sys_subshell): Likewise.
17203 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
17204
17205 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
17206 This should get cleaned up, so that child_setup has the
17207 same signature on all platforms.
17208
17209 * callproc.c (call_process_cleanup): Now static.
17210 (relocate_fd): Rename locals to avoid shadowing.
17211
17212 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
17213
17214 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
17215 not to be necessary, and produces flickering.
17216
17217 2011-03-20 Glenn Morris <rgm@gnu.org>
17218
17219 * config.in: Remove file.
17220
17221 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
17222
17223 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
17224 are now in src/globals.h.
17225 (syms_of_minibuf): Remove spurious & from previous change.
17226
17227 2011-03-20 Leo Liu <sdl.web@gmail.com>
17228
17229 * minibuf.c (completing-read-function): New variable.
17230 (completing-read-default): Rename from completing-read.
17231 (completing-read): Call completing-read-function.
17232
17233 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
17234
17235 * xfaces.c (Fx_load_color_file):
17236 Read color file from absolute filename (bug#8250).
17237
17238 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
17239
17240 * makefile.w32-in: Update dependencies.
17241
17242 2011-03-17 Eli Zaretskii <eliz@gnu.org>
17243
17244 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
17245
17246 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
17247
17248 Fix more problems found by GCC 4.5.2's static checks.
17249
17250 * process.c (make_serial_process_unwind, send_process_trap):
17251 (sigchld_handler): Now static.
17252
17253 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
17254 That way, the code declares only the vars that it needs.
17255 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
17256 * s/cygwin.h (PTY_ITERATION): Likewise.
17257 * s/darwin.h (PTY_ITERATION): Likewise.
17258 * s/gnu-linux.h (PTY_ITERATION): Likewise.
17259
17260 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
17261 * process.c (allocate_pty): Don't declare stb unless it's needed.
17262
17263 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
17264 (CONSTANTLIM): Remove; unused.
17265 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
17266 Define only if needed.
17267
17268 * unexelf.c (unexec): Name an expression,
17269 to avoid gcc -Wbad-function-cast warning.
17270 Use a different way to cause a compilation error if anyone uses
17271 n rather than nn, a way that does not involve shadowing.
17272 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
17273
17274 * deps.mk (unexalpha.o): Remove; unused.
17275
17276 New file unexec.h, the (simple) interface for unexec (Bug#8267).
17277 * unexec.h: New file.
17278 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
17279 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
17280 Depend on unexec.h.
17281 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
17282 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
17283 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
17284 Change as necessary to match prototype in unexec.h.
17285
17286 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
17287 shadowing.
17288 (back_comment, skip_chars): Mark vars as initialized.
17289
17290 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
17291 Rename locals to avoid shadowing.
17292
17293 * lread.c (read1): Rewrite so as not to use empty "else".
17294 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
17295
17296 * print.c (Fredirect_debugging_output): Fix pointer signedess.
17297
17298 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
17299 warning when compiling print.c.
17300
17301 * font.c (font_unparse_fcname): Abort in an "impossible" situation
17302 instead of using an uninitialized var.
17303 (font_sort_entities): Mark var as initialized.
17304
17305 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
17306
17307 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
17308 pointers to constants.
17309 (font_parse_fcname): Remove unused vars.
17310 (font_delete_unmatched): Now static.
17311 (font_get_spec): Remove; unused.
17312 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
17313 (font_update_drivers, Ffont_get_glyphs, font_add_log):
17314 Rename or move locals to avoid shadowing.
17315
17316 * fns.c (require_nesting_list, require_unwind): Now static.
17317 (Ffillarray): Rename locals to avoid shadowing.
17318
17319 * floatfns.c (domain_error2): Define only if needed.
17320 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
17321
17322 * alloc.c (mark_backtrace): Move decl from here ...
17323 * lisp.h: ... to here, so that it can be checked.
17324
17325 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
17326 (Fdefvar): Rewrite so as not to use empty "else".
17327 (lisp_indirect_variable): Name an expression,
17328 to avoid gcc -Wbad-function-cast warning.
17329 (Fdefvar): Rename locals to avoid shadowing.
17330
17331 * callint.c (quotify_arg, quotify_args): Now static.
17332 (Fcall_interactively): Rename locals to avoid shadowing.
17333 Use const pointer when appropriate.
17334
17335 * lisp.h (get_system_name, get_operating_system_release):
17336 Move decls here, to check interfaces.
17337 * process.c (get_operating_system_release): Move decl to lisp.h.
17338 * xrdb.c (get_system_name): Likewise.
17339 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
17340 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
17341 some of which prompt warnings from gcc -Wbad-function-cast.
17342 (Fformat_time_string, Fencode_time, Finsert_char):
17343 (Ftranslate_region_internal, Fformat):
17344 Rename or remove local vars to avoid shadowing.
17345 (Ftranslate_region_internal): Mark var as initialized.
17346
17347 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
17348 avoid shadowing.
17349
17350 * lisp.h (eassert): Check that the argument compiles, even if
17351 ENABLE_CHECKING is not defined.
17352
17353 * data.c (Findirect_variable): Name an expression, to avoid
17354 gcc -Wbad-function-cast warning.
17355 (default_value, arithcompare, arith_driver, arith_error): Now static.
17356 (store_symval_forwarding): Rename local to avoid shadowing.
17357 (Fmake_variable_buffer_local, Fmake_local_variable):
17358 Mark variables as initialized.
17359 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
17360
17361 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
17362 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
17363 Rename locals to avoid shadowing.
17364 (mark_stack): Move local variables into the #ifdef region where
17365 they're used.
17366 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
17367 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
17368 needed otherwise.
17369 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
17370 (GC_STRING_CHARS): Remove; not used.
17371 (Fmemory_limit): Cast sbrk's returned value to char *.
17372
17373 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
17374 avoids undefined behavior in theory.
17375
17376 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
17377
17378 Use functions, not macros, for up- and down-casing (Bug#8254).
17379 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
17380 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
17381 to use the following functions instead of these macros.
17382 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
17383 EMACS_INT, since callers assume the returned value fits in int.
17384 (upcase1): Likewise, for UPCASE_TABLE.
17385 (uppercasep, lowercasep, upcase): New static inline functions.
17386 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
17387 the race-condition problem in the old DOWNCASE.
17388
17389 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
17390 Rename locals to avoid shadowing.
17391 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
17392 (regex_compile, re_search_2, re_match_2_internal):
17393 Remove unused local vars.
17394 (FREE_VAR): Rewrite so as not to use empty "else",
17395 which gcc can warn about.
17396 (regex_compile, re_match_2_internal): Mark locals as initialized.
17397 (RETALLOC_IF): Define only if needed.
17398 (WORDCHAR_P): Likewise. This one is never needed, but is used
17399 only in a comment talking about a compiler bug, so put inside
17400 the #if 0 of that comment.
17401 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
17402 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
17403 Remove; unused.
17404
17405 * search.c (boyer_moore): Rename locals to avoid shadowing.
17406 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
17407 (PREV_CHAR_BOUNDARY): Likewise.
17408
17409 * search.c (simple_search): Remove unused var.
17410
17411 * dired.c (compile_pattern): Move decl from here ...
17412 * lisp.h: ... to here, so that it can be checked.
17413 (struct re_registers): New forward decl.
17414
17415 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
17416
17417 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
17418 All uses changed.
17419 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
17420 Rename locals to avoid shadowing.
17421 (Fvertical_motion): Mark locals as initialized.
17422
17423 * casefiddle.c (casify_object, casify_region): Now static.
17424 (casify_region): Mark local as initialized.
17425
17426 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
17427
17428 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
17429 New macros, so that the caller can use some names other than
17430 gcpro1, gcpro2, etc.
17431 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
17432 of the new macros.
17433 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
17434 argument, for consistency with GCPRO2_VAR, etc: it is now the
17435 prefix of the variable, not the variable itself. All uses
17436 changed.
17437 * dired.c (directory_files_internal, file_name_completion):
17438 Rename locals to avoid shadowing.
17439
17440 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
17441 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
17442 dired.c's scmp function, had undefined behavior.
17443 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
17444 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
17445 * buffer.h: ... to here, because these macros use current_buffer,
17446 and the new implementation with inline functions needs to have
17447 current_buffer in scope now, rather than later when the macros
17448 are used.
17449 (downcase, upcase1): New static inline functions.
17450 (DOWNCASE, UPCASE1): Reimplement using these functions.
17451 This avoids undefined behavior in expressions like
17452 DOWNCASE (x) == DOWNCASE (y), which previously suffered
17453 from race conditions in accessing the global variables
17454 case_temp1 and case_temp2.
17455 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
17456 * lisp.h (case_temp1, case_temp2): Remove their decls.
17457 * character.h (ASCII_CHAR_P): Move from here ...
17458 * lisp.h: ... to here, so that the inline functions mentioned
17459 above can use them.
17460
17461 * dired.c (directory_files_internal_unwind): Now static.
17462
17463 * fileio.c (file_name_as_directory, directory_file_name):
17464 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
17465 Now static.
17466 (file_name_as_directory): Use const pointers when appropriate.
17467 (Fexpand_file_name): Likewise. In particular, newdir might
17468 point at constant storage, so make it a const pointer.
17469 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
17470 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
17471 signedness issues.
17472 (Fset_file_times, Finsert_file_contents, auto_save_error):
17473 Rename locals to avoid shadowing.
17474
17475 * minibuf.c (choose_minibuf_frame_1): Now static.
17476 (Ftry_completion, Fall_completions): Rename or remove locals
17477 to avoid shadowing.
17478
17479 * marker.c (bytepos_to_charpos): Remove; unused.
17480
17481 * lisp.h (verify_bytepos, count_markers): New decls,
17482 so that gcc does not warn that these functions aren't declared.
17483
17484 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
17485 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
17486 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
17487 (copy_text): Remove unused local var.
17488
17489 * filelock.c (within_one_second): Now static.
17490 (lock_file_1): Rename local to avoid shadowing.
17491
17492 * buffer.c (fix_overlays_before): Mark locals as initialized.
17493 (fix_start_end_in_overlays): Likewise. This function should be
17494 simplified by using pointers-to-pointers, but that's a different
17495 matter.
17496 (switch_to_buffer_1): Now static.
17497 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
17498 (report_overlay_modification): Rename locals to avoid shadowing.
17499
17500 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
17501 Fix pointer signedness issue.
17502 (sys_subshell): Mark local as volatile if checking for lint,
17503 to suppress a gcc -Wclobbered warning that does not seem to be right.
17504 (MAXPATHLEN): Define only if needed.
17505
17506 * process.c (serial_open, serial_configure): Move decls from here ...
17507 * systty.h: ... to here, so that they can be checked.
17508
17509 * fns.c (get_random, seed_random): Move extern decls from here ...
17510 * lisp.h: ... to here, so that they can be checked.
17511
17512 * sysdep.c (reset_io): Now static.
17513 (wait_for_termination_signal): Remove; unused.
17514
17515 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
17516 (copy_keymap_item, append_key, push_text_char_description):
17517 Now static.
17518 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
17519 (DENSE_TABLE_SIZE): Remove; unused.
17520 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
17521 (describe_map_tree):
17522 Rename locals to avoid shadowing.
17523
17524 * keyboard.c: Declare functions static if they are not used elsewhere.
17525 (echo_char, echo_dash, cmd_error, top_level_2):
17526 (poll_for_input, handle_async_input): Now static.
17527 (read_char, kbd_buffer_get_event, make_lispy_position):
17528 (make_lispy_event, make_lispy_movement, apply_modifiers):
17529 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
17530 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
17531 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
17532 (read_key_sequence, read_char): Mark locals as initialized.
17533 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
17534
17535 * keyboard.h (make_ctrl_char): New decl.
17536 (mark_kboards): Move decl here ...
17537 * alloc.c (mark_kboards): ... from here.
17538
17539 * lisp.h (force_auto_save_soon): New decl.
17540
17541 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
17542 (DEFINE_DUMMY_FUNCTION): New macro.
17543 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
17544 Use it.
17545 (main): Add casts to avoid warnings
17546 if GCC considers string literals to be constants.
17547
17548 * lisp.h (fatal_error_signal): Add decl, since it's exported.
17549
17550 * dbusbind.c: Pointer signedness fixes.
17551 (xd_signature, xd_append_arg, xd_initialize):
17552 (Fdbus_call_method, Fdbus_call_method_asynchronously):
17553 (Fdbus_method_return_internal, Fdbus_method_error_internal):
17554 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
17555 (Fdbus_register_signal): Use SSDATA when the context wants char *.
17556
17557 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
17558 if GCC considers string literals to be constants.
17559 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
17560
17561 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
17562
17563 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
17564 (print_preprocess, print_object): New macro to fix last change.
17565
17566 * print.c (print_preprocess): Don't forget font objects.
17567
17568 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
17569
17570 * emacs.c (USAGE3): Doc fixes.
17571
17572 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
17573
17574 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
17575 structure.
17576
17577 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
17578
17579 * lisp.h (VWindow_system, Qfile_name_history):
17580 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
17581 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
17582 (w32_system_caret_x, w32_system_caret_y): Declare extern.
17583
17584 * w32select.c: Don't #include "keyboard.h".
17585 (run_protected): Add extern declaration for waiting_for_input.
17586
17587 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
17588 * w32console.c (detect_input_pending, read_input_pending)
17589 (encode_terminal_code):
17590 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
17591 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
17592 (w32_system_caret_y, Qfile_name_history):
17593 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
17594 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
17595 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
17596 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
17597 * w32proc.c (Qlocal, report_file_error):
17598 * w32term.c (Vwindow_system, updating_frame):
17599 * w32uniscribe.c (initialized, uniscribe_font_driver):
17600 Remove unneeded extern declarations.
17601
17602 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
17603
17604 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
17605
17606 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
17607
17608 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
17609 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
17610 These macros can no longer be used for assignment.
17611
17612 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
17613 Assign struct members directly, instead of using BUF_BEGV etc.
17614 (record_buffer_markers, fetch_buffer_markers): New functions for
17615 recording and fetching special buffer markers.
17616 (set_buffer_internal_1, set_buffer_temp): Use them.
17617
17618 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
17619
17620 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
17621
17622 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
17623 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
17624
17625 * xdisp.c (hscroll_window_tree):
17626 (reconsider_clip_changes): Use PT instead of BUF_PT.
17627
17628 2011-03-13 Eli Zaretskii <eliz@gnu.org>
17629
17630 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
17631 $(EMACS_ROOT)/lib/intprops.h.
17632
17633 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
17634
17635 Fix more problems found by GCC 4.5.2's static checks.
17636
17637 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
17638 to unsigned char * to avoid compiler diagnostic.
17639 (xg_free_frame_widgets): Make it clear that a local variable is
17640 needed only if USE_GTK_TOOLTIP.
17641 (gdk_window_get_screen): Make it clear that this macro is needed
17642 only if USE_GTK_TOOLTIP.
17643 (int_gtk_range_get_value): New function, which avoids a diagnostic
17644 from gcc -Wbad-function-cast.
17645 (xg_set_toolkit_scroll_bar_thumb): Use it.
17646 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
17647 diagnostic from gcc -Wbad-function-cast.
17648 (get_utf8_string, xg_get_file_with_chooser):
17649 Rename locals to avoid shadowing.
17650 (create_dialog): Move locals to avoid shadowing.
17651
17652 * xgselect.c (xg_select): Remove unused var.
17653
17654 * image.c (four_corners_best): Mark locals as initialized.
17655 (gif_load): Initialize transparent_p to zero (Bug#8238).
17656 Mark another local as initialized.
17657 (my_png_error, my_error_exit): Mark with NO_RETURN.
17658
17659 * image.c (clear_image_cache): Now static.
17660 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
17661 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
17662 (x_edge_detection): Remove unnecessary cast that
17663 gcc -Wbad-function-cast diagnoses.
17664 (gif_load): Fix pointer signedness.
17665 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
17666 (jpeg_load, gif_load): Rename locals to avoid shadowing.
17667
17668 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
17669
17670 Improve quality of tests for time stamp overflow.
17671 For example, without this patch (encode-time 0 0 0 1 1
17672 1152921504606846976) returns the obviously-bogus value (-948597
17673 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
17674 reports time overflow. See
17675 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
17676 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
17677 * editfns.c: Include limits.h and intprops.h.
17678 (TIME_T_MIN, TIME_T_MAX): New macros.
17679 (time_overflow): Move earlier, to before first use.
17680 (hi_time, lo_time): New functions, for an accurate test for
17681 out-of-range times.
17682 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
17683 (Fget_internal_run_time): Don't assume time_t fits in int.
17684 (make_time): Use list2 instead of Fcons twice.
17685 (Fdecode_time): More accurate test for out-of-range times.
17686 (check_tm_member): New function.
17687 (Fencode_time): Use it, to test for out-of-range times.
17688 (lisp_time_argument): Don't rely on undefined left-shift and
17689 right-shift behavior when checking for time stamp overflow.
17690
17691 * editfns.c (time_overflow): New function, refactoring common code.
17692 (Fformat_time_string, Fdecode_time, Fencode_time):
17693 (Fcurrent_time_string): Use it.
17694
17695 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
17696 * dired.c (make_time): Move to ...
17697 * editfns.c (make_time): ... here.
17698 * systime.h: Note the move.
17699
17700 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17701
17702 * fringe.c (update_window_fringes): Remove unused variables.
17703
17704 * unexmacosx.c (copy_data_segment): Also copy __got section.
17705 (Bug#8223)
17706
17707 2011-03-12 Eli Zaretskii <eliz@gnu.org>
17708
17709 * termcap.c [MSDOS]: Include "msdos.h".
17710 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
17711 Constify `char *' arguments and their references according to
17712 prototypes in tparam.h.
17713
17714 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
17715
17716 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
17717 Adapt all references accordingly.
17718
17719 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
17720
17721 2011-03-11 Tom Tromey <tromey@redhat.com>
17722
17723 * buffer.c (syms_of_buffer): Remove obsolete comment.
17724
17725 2011-03-11 Eli Zaretskii <eliz@gnu.org>
17726
17727 * termhooks.h (encode_terminal_code): Declare prototype.
17728
17729 * msdos.c (encode_terminal_code): Don't declare prototype.
17730
17731 * term.c (encode_terminal_code): Now external again, used by
17732 w32console.c and msdos.c.
17733
17734 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
17735 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
17736
17737 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
17738
17739 Fix some minor problems found by GCC 4.5.2's static checks.
17740
17741 * fringe.c (update_window_fringes): Mark locals as initialized
17742 (Bug#8227).
17743 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
17744
17745 * alloc.c (mark_fringe_data): Move decl from here ...
17746 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
17747 to check its interface.
17748 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
17749
17750 * fontset.c (free_realized_fontset): Now static.
17751 (Fset_fontset_font): Rename local to avoid shadowing.
17752 (fontset_font): Mark local as initialized.
17753 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
17754
17755 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
17756
17757 * xselect.c (x_disown_buffer_selections): Remove; not used.
17758 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
17759 (x_own_selection, Fx_disown_selection_internal): Rename locals
17760 to avoid shadowing.
17761 (x_handle_dnd_message): Remove local to avoid shadowing.
17762
17763 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
17764 so that the caller can use some name other than gcpro1.
17765 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
17766 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
17767 (Fx_backspace_delete_keys_p):
17768 Use them to avoid shadowing, and rename vars to avoid shadowing.
17769 (x_decode_color, x_set_name, x_window): Now static.
17770 (Fx_create_frame): Add braces to silence GCC warning.
17771 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
17772 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
17773 Remove unused locals.
17774 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
17775 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
17776 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
17777 macros.
17778
17779 * xterm.h (x_mouse_leave): New decl.
17780
17781 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
17782 Remove unused functions.
17783 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
17784 (x_calc_absolute_position): Now static.
17785 (XTread_socket): Don't define label "out" unless it's used.
17786 Don't declare local "event" unless it's used.
17787 (x_iconify_frame, x_free_frame_resources): Don't declare locals
17788 unless they are used.
17789 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
17790 (x_fatal_error_signal): Remove; not used.
17791 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
17792 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
17793 (x_error_catcher, x_connection_closed, x_error_handler):
17794 (x_error_quitter, xembed_send_message, x_iconify_frame):
17795 (my_log_handler): Rename locals to avoid shadowing.
17796 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
17797 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
17798
17799 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
17800 Rename or move locals to avoid shadowing.
17801 (tty_defined_color, merge_face_heights): Now static.
17802 (free_realized_faces_for_fontset): Remove; not used.
17803 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
17804 does not deduce is never used uninitialized.
17805 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
17806 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
17807
17808 * terminal.c (store_terminal_param): Now static.
17809
17810 * xmenu.c (menu_highlight_callback): Now static.
17811 (set_frame_menubar): Remove unused local.
17812 (xmenu_show): Rename parameter to avoid shadowing.
17813 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
17814 since they might point to immutable storage.
17815 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
17816 since it's unused otherwise.
17817
17818 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
17819 Add a FIXME, since the code still doesn't look right. (Bug#8215)
17820 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
17821 avoids a gcc -Wuninitialized diagnostic.
17822 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
17823 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
17824 does not deduce are never used uninitialized.
17825
17826 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
17827
17828 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
17829 * window.c (window_loop, size_window):
17830 (run_window_configuration_change_hook, enlarge_window): Likewise.
17831
17832 * window.c (display_buffer): Now static.
17833 (size_window): Mark variables that gcc -Wuninitialized
17834 does not deduce are never used uninitialized.
17835 * window.h (check_all_windows): New decl, to forestall
17836 gcc -Wmissing-prototypes diagnostic.
17837 * dispextern.h (bidi_dump_cached_states): Likewise.
17838
17839 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
17840 shadowing.
17841 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
17842 Include <limits.h>.
17843 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
17844 and to avoid gcc -Wuninitialized warning.
17845 (load_charset_map): Mark variables that gcc -Wuninitialized
17846 does not deduce are never used uninitialized.
17847 (load_charset): Abort instead of using uninitialized var (Bug#8229).
17848
17849 * coding.c (coding_set_source, coding_set_destination):
17850 Use "else { /* comment */ }" rather than "else /* comment */;"
17851 for clarity, and to avoid gcc -Wempty-body warning.
17852 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
17853 a block, when the outer 'i' will do.
17854 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
17855 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
17856 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
17857 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
17858 (Fdecode_sjis_char, Fdefine_coding_system_internal):
17859 Rename locals to avoid shadowing.
17860 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
17861 * coding.c (emacs_mule_char, encode_invocation_designation):
17862 Now static, since they're not used elsewhere.
17863 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
17864 (decode_coding_object, encode_coding_object, detect_coding_system):
17865 (decode_coding_emacs_mule): Mark variables that gcc
17866 -Wuninitialized does not deduce are never used uninitialized.
17867 (detect_coding_iso_2022): Initialize a local variable that might
17868 be used uninitialized. Leave a FIXME because it's not clear that
17869 this initialization is needed. (Bug#8211)
17870 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
17871 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
17872 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
17873 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
17874 Remove unused macros.
17875
17876 * category.c (hash_get_category_set): Remove unused local var.
17877 (copy_category_table): Now static, since it's not used elsewhere.
17878 * character.c (string_count_byte8): Likewise.
17879
17880 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
17881 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
17882
17883 * chartab.c (copy_sub_char_table): Now static, since it's not used
17884 elsewhere.
17885 (sub_char_table_ref_and_range, char_table_ref_and_range):
17886 Rename locals to avoid shadowing.
17887 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
17888
17889 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
17890 (BIDI_BOB): Remove unused macro.
17891
17892 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
17893 deduce are never used uninitialized.
17894 * term.c (encode_terminal_code): Likewise.
17895
17896 * term.c (encode_terminal_code): Now static. Remove unused local.
17897
17898 * tparam.h: New file.
17899 * term.c, tparam.h: Include it.
17900 * deps.mk (term.o, tparam.o): Depend on tparam.h.
17901 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
17902 Move these decls to tparam.h, and make them agree with what
17903 is actually in tparam.c. The previous trick of using incompatible
17904 decls in different modules does not conform to the C standard.
17905 All callers of tparam changed to use tparam's actual API.
17906 * tparam.c (tparam1, tparam, tgoto):
17907 Use const pointers where appropriate.
17908
17909 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
17910 * cm.h (struct cm): Likewise.
17911 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
17912 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
17913 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
17914 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
17915 (turn_on_face, init_tty): Likewise.
17916 * termchar.h (struct tty_display_info): Likewise.
17917
17918 * term.c (term_mouse_position): Rename local to avoid shadowing.
17919
17920 * alloc.c (mark_ttys): Move decl from here ...
17921 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
17922
17923 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
17924
17925 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
17926
17927 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
17928
17929 * search.c (compile_pattern_1): Remove argument regp, unused since
17930 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
17931 (compile_pattern): Don't pass it.
17932
17933 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
17934
17935 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
17936 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
17937 for ! HAVE_GTK3.
17938 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
17939
17940 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
17941
17942 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
17943 gdk_window_get_screen, gdk_window_get_geometry,
17944 gdk_x11_window_lookup_for_display and GDK_KEY_g.
17945 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
17946 (xg_get_pixbuf_from_pixmap): New function.
17947 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
17948 to Pixmap, take frame as parameter, remove GdkColormap parameter.
17949 Call xg_get_pixbuf_from_pixmap instead of
17950 gdk_pixbuf_get_from_drawable.
17951 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
17952 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
17953 (xg_check_special_colors): Use GtkStyleContext and its functions
17954 for HAVE_GTK3.
17955 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
17956 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
17957 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
17958 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
17959 Call gtk_widget_get_preferred_size.
17960 (xg_frame_resized): gdk_window_get_geometry only takes 5
17961 parameters.
17962 (xg_win_to_widget, xg_event_is_for_menubar):
17963 Call gdk_x11_window_lookup_for_display.
17964 (xg_set_widget_bg): New function.
17965 (delete_cb): New function.
17966 (xg_create_frame_widgets): Connect delete-event to delete_cb.
17967 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
17968 (xg_set_background_color): Call xg_set_widget_bg.
17969 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
17970 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
17971 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
17972 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
17973 if ! HAVE_GTK3.
17974 (update_frame_tool_bar): Call gtk_widget_hide.
17975 (xg_initialize): Use GDK_KEY_g.
17976
17977 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
17978 if ! HAVE_GTK3
17979 (x_session_initialize): Call gdk_x11_set_sm_client_id.
17980
17981 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
17982 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
17983 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
17984
17985 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
17986
17987 * w32xfns.c (select_palette): Check success of RealizePalette against
17988 GDI_ERROR, not zero.
17989
17990 See ChangeLog.11 for earlier changes.
17991
17992 ;; Local Variables:
17993 ;; coding: utf-8
17994 ;; End:
17995
17996 Copyright (C) 2011-2012 Free Software Foundation, Inc.
17997
17998 This file is part of GNU Emacs.
17999
18000 GNU Emacs is free software: you can redistribute it and/or modify
18001 it under the terms of the GNU General Public License as published by
18002 the Free Software Foundation, either version 3 of the License, or
18003 (at your option) any later version.
18004
18005 GNU Emacs is distributed in the hope that it will be useful,
18006 but WITHOUT ANY WARRANTY; without even the implied warranty of
18007 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
18008 GNU General Public License for more details.
18009
18010 You should have received a copy of the GNU General Public License
18011 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.