* lisp/json.el (json-encode-char): Codes 127 isn't "ASCII printable" either.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
a615a3ae
PE
12012-09-27 Paul Eggert <eggert@cs.ucla.edu>
2
3 Check more robustly for timer_settime.
4 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
5 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
6 call timer_settime.
7
3670daf7
TM
82012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
9
10 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
11
6a586b7f
JB
122012-09-26 Juanma Barranquero <lekktu@gmail.com>
13
14 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
15
41c8bfcf
PE
162012-09-26 Paul Eggert <eggert@cs.ucla.edu>
17
18 * character.h (MAYBE_UNIFY_CHAR): Remove.
19 * charset.c, charset.h (maybe_unify_char): Now static.
20 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
21 Since this stuff is now private to charset.c, there's no need for
22 a public macro and no need to inline by hand.
23
3a880af4
SM
242012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
25 Stefan Monnier <monnier@iro.umontreal.ca>
26 Juanma Barranquero <lekktu@gmail.com>
611b7507 27
3a880af4
SM
28 * profiler.c: New file.
29 * Makefile.in (base_obj): Add profiler.o.
611b7507
JB
30 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
31 ($(BLD)/profiler.$(O)): New target.
3a880af4
SM
32 * emacs.c (main): Call syms_of_profiler.
33 * alloc.c (Qautomatic_gc): New constant.
34 (MALLOC_PROBE): New macro.
35 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
36 (total_bytes_of_live_objects): New function.
37 (Fgarbage_collect): Use it. Record itself in backtrace_list.
38 Call malloc_probe for the memory profiler.
39 (syms_of_alloc): Define Qautomatic_gc.
40 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
41 race condition.
42 (struct backtrace): Move definition...
43 * lisp.h (struct backtrace): ..here.
44 (Qautomatic_gc, profiler_memory_running): Declare vars.
45 (malloc_probe, syms_of_profiler): Declare functions.
46 * xdisp.c (Qautomatic_redisplay): New constant.
47 (redisplay_internal): Record itself in backtrace_list.
48 (syms_of_xdisp): Define Qautomatic_redisplay.
611b7507 49
b67238c2
JB
502012-09-25 Juanma Barranquero <lekktu@gmail.com>
51
52 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
53
e26fd2e4
PE
542012-09-25 Paul Eggert <eggert@cs.ucla.edu>
55
56 Prefer POSIX timers if available.
57 They avoid a race if the timer is too close to the current time.
58 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
59 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
9180598c 60 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
e26fd2e4 61
eedec3ee
EZ
622012-09-25 Eli Zaretskii <eliz@gnu.org>
63
64 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
65 CHAR_STRING_ADVANCE.
66 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
67 STRING_CHAR_ADVANCE.
68
aa15c6bb
JB
692012-09-25 Juanma Barranquero <lekktu@gmail.com>
70
71 Move Vlibrary_cache to emacs.c and reset before dumping.
72
73 * lisp.h (reset_image_types): Declare.
74 [WINDOWSNT] (Vlibrary_cache): Declare.
75
76 * image.c (reset_image_types): New function.
77
78 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
79 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
80 (Fdump_emacs): Reset Vlibrary_cache and image_types.
81
82 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
83 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
84
85 * w32.h (Vlibrary_cache): Do not declare.
86
54d629be
EZ
872012-09-25 Eli Zaretskii <eliz@gnu.org>
88
16b22fef
EZ
89 * w32proc.c (sys_signal): Handle all signals defined by the
90 MS-Windows runtime, not just SIGCHLD. Actually install the signal
91 handlers for signals supported by Windows. Don't override
92 term_ntproc as the handler for SIGABRT.
93 (sigaction): Rewrite to call sys_signal instead of duplicating its
94 code.
95 (sys_kill): Improve commentary.
96
97 * w32.c (term_ntproc): Accept (and ignore) one argument, for
98 consistency with a signature of a signal handler. All callers
99 changed.
100 (init_ntproc): Accept an argument DUMPING. If dumping, don't
101 install term_ntproc as a signal handler for SIGABRT, as that
102 should be done by the dumped Emacs.
103
104 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
105
106 * w32select.c (term_w32select): Protect against repeated
107 invocation by setting clipboard_owner to NULL after calling
108 DestroyWindow.
109
110 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
111 and term_ntproc to their modified signatures.
112
54d629be
EZ
113 * character.c (char_string, string_char): Remove calls to
114 MAYBE_UNIFY_CHAR. See the discussion starting at
115 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
116 for the details.
117
59f7af81
CY
1182012-09-25 Chong Yidong <cyd@gnu.org>
119
120 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
121
22e8cf4a
SM
1222012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
123
124 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
125 when encountering an unknown bytecode.
126
578098f3
PE
1272012-09-24 Paul Eggert <eggert@cs.ucla.edu>
128
129 image.c, indent.c: Use bool for booleans.
130 * dispextern.h (struct image_type): Members valid_p, load, init
131 now return bool, not int. All uses changed.
132 * image.c: Omit unnecessary static decls.
133 (x_create_bitmap_mask, x_build_heuristic_mask):
134 Return void, not int, since callers don't care about the return value.
135 (x_create_bitmap_mask, define_image_type, valid_image_p)
136 (struct image_keyword, parse_image_spec, image_spec_value)
137 (check_image_size, image_background)
138 (image_background_transparent, x_clear_image_1)
139 (postprocess_image, lookup_image, x_check_image_size)
140 (x_create_x_image_and_pixmap, xbm_image_p)
141 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
142 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
143 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
144 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
145 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
146 (png_image_p, init_png_functions, png_load_body, png_load)
147 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
148 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
149 (init_gif_functions, gif_load, imagemagick_image_p)
150 (imagemagick_load_image, imagemagick_load, svg_image_p)
151 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
152 (gs_load):
153 * nsimage.m (ns_load_image):
154 * nsterm.m (ns_defined_color):
155 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
156 * xfns.c (x_defined_color):
157 * xterm.c (x_alloc_lighter_color_for_widget)
158 (x_alloc_nearest_color_1, x_alloc_nearest_color)
159 (x_alloc_lighter_color):
160 * indent.c (disptab_matches_widthtab, current_column)
161 (scan_for_column, string_display_width, indented_beyond_p)
162 (compute_motion, vmotion, Fvertical_motion):
163 Use bool for booleans.
164
a5f2b6ec
CY
1652012-09-24 Chong Yidong <cyd@gnu.org>
166
167 * chartab.c (Fset_char_table_default): Obsolete function removed.
168
18e27ea8
PE
1692012-09-23 Paul Eggert <eggert@cs.ucla.edu>
170
afea8a8a
PE
171 Move pid_t related decls out of lisp.h.
172 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
173 (interruptible_wait_for_termination):
174 Move these decls from lisp.h to syswait.h, since they use pid_t.
175 Needed on FreeBSD; see Herbert J. Skuhra in
176 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
177 * callproc.c: Include syswait.h.
178
18e27ea8
PE
179 gnutls.c, gtkutil.c: Use bool for boolean.
180 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
181 (emacs_gnutls_handle_error):
182 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
183 (xg_hide_tooltip, xg_create_frame_widgets)
184 (create_dialog, xg_uses_old_file_dialog)
185 (xg_get_file_with_chooser, xg_get_file_with_selection)
186 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
187 (xg_item_label_same_p, xg_update_menubar)
188 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
189 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
190 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
191 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
192 (update_frame_tool_bar, free_frame_tool_bar):
193 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
194 * nsmenu.m (ns_update_menubar):
195 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
196 * xfns.c (Fx_show_tip) [USE_GTK]:
197 Use bool for boolean.
198 * gtkutil.c (xg_update_frame_menubar):
199 * xmenu.c (update_frame_menubar):
200 Return void, not int, since caller ignores return value.
201 * gtkutil.c (xg_change_toolbar_position):
202 Return void, not 1.
203
af0e9f75
JB
2042012-09-23 Juanma Barranquero <lekktu@gmail.com>
205
206 * makefile.w32-in (BLOCKINPUT_H): Remove.
207 (SYSSIGNAL_H): New macro.
208 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
209 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
210 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
211 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
212 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
213 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
214 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
215 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
216 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
217 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
218 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
219 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
220 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
221 ($(BLD)/w32xfns.$(O)): Update dependencies.
222
5101529e
EZ
2232012-09-23 Eli Zaretskii <eliz@gnu.org>
224
225 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
226 fatal_error_backtrace.
227
228 * w32proc.c (sys_kill): Undo last change: don't do anything when
229 invoked to deliver SIGABRT to our own process. This is now
230 handled by emacs_raise.
231
2c3ee0ad
JB
2322012-09-23 Juanma Barranquero <lekktu@gmail.com>
233
234 * w32term.c (w32_read_socket): Remove leftover reference to
235 interrupt_input_pending.
236
62a1d661
PE
2372012-09-23 Paul Eggert <eggert@cs.ucla.edu>
238
239 Do not use SA_NODEFER.
240 Problem reported by Dani Moncayo in
241 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
242 * alloc.c (die):
243 * sysdep.c (emacs_abort): Do not reset signal handler.
244 * emacs.c (terminate_due_to_signal): Reset signal handler here.
245 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
246 wanted even on POSIXish hosts, and it doesn't work on Windows.
247
a0942b9a
JD
2482012-09-23 Jan Djärv <jan.h.d@swipnet.se>
249
250 * xterm.c (x_term_init): Call fixup_locale before and after calling
251 gtk_init (Bug#12392).
252
d07ff9db
CY
2532012-09-23 Chong Yidong <cyd@gnu.org>
254
255 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
256 Vdynamic_library_alist.
257
258 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
259 (Fgnutls_available_p): Caller changed.
260
261 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
262 (Flibxml_parse_xml_region): Likewise.
263
264 * dispextern.h (struct image_type): Remove arg from init function.
265
266 * image.c (Finit_image_library, lookup_image_type)
267 (define_image_type): Remove now-unneeded second arg.
268 (init_xpm_functions, init_png_functions, init_jpeg_functions)
269 (init_tiff_functions, init_gif_functions, init_svg_functions):
270 Arglist and w32_delayed_load calling convention changed.
271 (gs_type): Remove init_gs_functions; there is no such function.
641cfd14 272 (valid_image_p, make_image): Fix caller to lookup_image_type.
d07ff9db 273
4d7e6e51
PE
2742012-09-23 Paul Eggert <eggert@cs.ucla.edu>
275
276 Simplify and avoid signal-handling races (Bug#12471).
277 * alloc.c (die):
278 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
279 Avoid recursive loop if there's a fatal error in the function itself.
280 * atimer.c (pending_atimers):
281 * blockinput.h: Don't include "atimer.h"; no longer needed.
282 (interrupt_input_pending): Remove. All uses removed.
283 pending_signals now counts both atimers and ordinary interrupts.
284 This is less racy than having three separate pending-signal flags.
285 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
286 (input_blocked_p):
287 Rename from their upper-case counterparts BLOCK_INPUT,
288 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
289 INPUT_BLOCKED_P, and turn into functions. All uses changed.
290 This makes it easier to access volatile variables more accurately.
291 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
292 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
293 that's more reliable if the code is buggy and sets
294 interrupt_input_blocked to a negative value. All uses changed.
295 * atimer.c (deliver_alarm_signal):
296 Remove. No need to deliver this to the parent; any thread can
297 handle this signal now. All uses replaced by underlying handler.
298 * atimer.c (turn_on_atimers):
299 * dispnew.c (handle_window_change_signal):
300 * emacs.c (handle_danger_signal):
301 * keyboard.c (kbd_buffer_get_event):
302 Don't reestablish signal handler; not needed with sigaction.
303 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
304 (UNBLOCK_INPUT_TO):
305 Rework to avoid unnecessary accesses to volatile variables.
306 (UNBLOCK_INPUT_TO): Now a function.
307 (totally_unblock_input, unblock_input): New decls.
308 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
309 (init_data): Remove. Necessary stuff now done in init_signal.
310 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
311 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
312 (fatal_error_code): Remove; no longer needed.
313 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
314 it doesn't always backtrace. All uses changed. No need to reset
315 signal to default, since sigaction and/or die does that for us now.
316 Use emacs_raise (FOO), not kill (getpid (), FOO).
317 (main): Check more-accurately whether we're dumping.
318 Move fatal-error setup to sysdep.c
319 * floatfns.c: Do not include "syssignal.h"; no longer needed.
320 * gtkutil.c (xg_get_file_name, xg_get_font):
321 Remove no-longer-needed signal-mask manipulation.
322 * keyboard.c, process.c (POLL_FOR_INPUT):
323 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
324 * keyboard.c (read_avail_input): Remove.
325 All uses replaced by gobble_input.
326 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
327 (kbd_buffer_store_event_hold, gobble_input):
328 (record_asynch_buffer_change) [USABLE_SIGIO]:
329 (store_user_signal_events):
330 No need to mess with signal mask.
331 (gobble_input): If blocking input and there are terminals, simply
332 set pending_signals to 1 and return. All hooks changed to not
333 worry about whether input is blocked.
334 (process_pending_signals): Clear pending_signals before processing
335 them, in case a signal comes in while we're processing.
336 By convention callers now test pending_signals before calling us.
337 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
338 New functions, to support changes to blockinput.h.
339 (handle_input_available_signal): Now extern.
340 (reinvoke_input_signal): Remove. All uses replaced by
341 handle_async_input.
342 (quit_count): Now volatile, since a signal handler uses it.
3a880af4
SM
343 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
344 All callers changed. Block SIGINT only if not already blocked.
4d7e6e51
PE
345 Clear sigmask reliably, even if Fsignal returns, which it can.
346 Omit unnecessary accesses to volatile var.
347 (quit_throw_to_read_char): No need to restore sigmask.
348 * keyboard.c (gobble_input, handle_user_signal):
349 * process.c (wait_reading_process_output):
350 Call signal-handling code rather than killing ourselves.
351 * lisp.h: Include <float.h>, for...
352 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
353 (pending_signals): Now volatile.
354 (syms_of_data): Now const if IEEE floating point.
355 (handle_input_available_signal) [USABLE_SIGIO]:
356 (terminate_due_to_signal, record_child_status_change): New decls.
357 * process.c (create_process): Avoid disaster if memory is exhausted
358 while we're processing a vfork, by tightening the critical section
359 around the vfork.
360 (send_process_frame, process_sent_to, handle_pipe_signal)
361 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
362 ignores SIGPIPE.
363 (send_process): No need for setjmp/longjmp any more, since the
364 SIGPIPE stuff is now gone. Instead, report an error if errno
365 is EPIPE.
366 (record_child_status_change): Now extern. PID and W are now args.
367 Return void, not bool. All callers changed.
368 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
369 Remove. All uses removed. This bug should be fixed now in a
370 different way.
371 (wait_for_termination_1): Use waitpid rather than sigsuspend,
372 and record the child status change directly. This avoids the
373 need to futz with the signal mask.
374 (process_fatal_action): Move here from emacs.c.
375 (emacs_sigaction_flags): New function, containing
376 much of what used to be in emacs_sigaction_init.
377 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
378 caught by emacs, to make races less likely.
379 (deliver_process_signal): Rename from handle_on_main_thread.
380 All uses changed.
381 (BACKTRACE_LIMIT_MAX): Now at top level.
382 (thread_backtrace_buffer, threadback_backtrace_pointers):
383 New static vars.
384 (deliver_thread_signal, deliver_fatal_thread_signal):
385 New functions, for more-accurate delivery of thread-specific signals.
386 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
387 (deliver_arith_signal): Handle in this thread, not
388 in the main thread, since it's triggered by this thread.
389 (maybe_fatal_sig): New function.
390 (init_signals): New arg DUMPING so that we can be more accurate
391 about whether we're dumping. Caller changed.
392 Treat thread-specific signals differently from process-general signals.
393 Block all signals while handling fatal error; that's safer.
394 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
395 on IEEE hosts.
396 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
397 Ignore SIGPIPE unless batch.
398 (emacs_backtrace): Output backtrace for the appropriate thread,
399 which is not necessarily the main thread.
400 * syssignal.h: Include <stdbool.h>.
401 (emacs_raise): New macro.
402 * xterm.c (x_connection_signal): Remove; no longer needed
403 now that we use sigaction.
404 (x_connection_closed): No need to mess with sigmask now.
405 (x_initialize): No need to reset SIGPIPE handler here, since
406 init_signals does this for us now.
407
8f4635e9
JD
4082012-09-23 Jan Djärv <jan.h.d@swipnet.se>
409
410 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
fb39b937 411 background rect may be larger (Bug#12245).
8f4635e9 412
3296976d
CY
4132012-09-23 Chong Yidong <cyd@gnu.org>
414
415 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
416
d41e491e
PE
4172012-09-22 Paul Eggert <eggert@cs.ucla.edu>
418
419 * .gdbinit: Just stop at fatal_error_backtrace.
420 See Stefan Monnier's request in
421 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
422 Remove no-longer-used query of system type.
423
c88b867f
CY
4242012-09-22 Chong Yidong <cyd@gnu.org>
425
426 * search.c (Freplace_match): Doc fix (Bug#12325).
427
428 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
429
430 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
431 (Fline_end_position): Doc fix.
432
433 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
434
bb4d86b4
CY
4352012-09-22 Chong Yidong <cyd@gnu.org>
436
437 * dispextern.h (struct image_type): Add new slot, storing a type
438 initialization function.
439
440 * image.c (define_image_type): Call the image initializer function
441 if it is defined. Arguments and return value changed.
442 (valid_image_p, make_image): Callers changed.
443 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
3a880af4
SM
444 (gif_type, imagemagick_type, svg_type, gs_type):
445 Add initialization functions.
bb4d86b4
CY
446 (Finit_image_library): Call lookup_image_type.
447 (CHECK_LIB_AVAILABLE): Macro deleted.
448 (lookup_image_type): Call define_image_type here, rather than via
449 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
450 (syms_of_image): Move define_image_type calls for xbm_type and
451 pbm_type to lookup_image_type.
452
df9685f3
EZ
4532012-09-22 Eli Zaretskii <eliz@gnu.org>
454
455 * keyboard.c (timer_check_2): Move calculation of 'timers' and
456 'idle_timers' from here ...
457 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
458 lists, to avoid infloops when the timer does something stupid,
459 like reinvoke itself with the same or smaller time-out.
460 (Bug#12447)
461
8e17c9ba
MR
4622012-09-22 Martin Rudalics <rudalics@gmx.at>
463
464 * window.c (Fsplit_window_internal): Handle only Qt value of
465 Vwindow_combination_limit separately.
466 (Qtemp_buffer_resize): New symbol.
3a880af4
SM
467 (Vwindow_combination_limit): New default value.
468 Rewrite doc-string.
8e17c9ba 469
589bd69b
EZ
4702012-09-22 Eli Zaretskii <eliz@gnu.org>
471
472 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
473 the new overlay string. (Bug#10159)
474
01108e3f
PE
4752012-09-22 Paul Eggert <eggert@cs.ucla.edu>
476
477 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
478 or that fprintf is async-signal-safe. POSIX doesn't require
479 either assumption.
480
82f8cd94
CY
4812012-09-22 Chong Yidong <cyd@gnu.org>
482
483 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
484 (Bug#8207).
485
3cccbd87
KH
4862012-09-22 Kenichi Handa <handa@gnu.org>
487
488 * composite.c (composition_reseat_it): Handle the case that a
489 grapheme cluster is not covered by a single font (Bug#12352).
490
09c01941
CY
4912012-09-21 Chong Yidong <cyd@gnu.org>
492
493 * image.c (define_image_type): Avoid adding duplicate types to
494 image_types (Bug#12463). Suggested by Jörg Walter.
495
acfa068f 4962012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
e25c1a30
YM
497
498 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
499 (print_load_command_name): Add case LC_DATA_IN_CODE.
500 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
501
acfa068f 5022012-09-21 Glenn Morris <rgm@gnu.org>
1e9bbf47
GM
503
504 * eval.c (Frun_hook_with_args_until_success)
505 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
506
acfa068f 5072012-09-21 Andreas Schwab <schwab@linux-m68k.org>
c6ba4138
AS
508
509 * fileio.c (Ffile_selinux_context): Only call freecon when
510 lgetfilecon succeeded.
511 (Fset_file_selinux_context): Likewise. (Bug#12444)
512
acfa068f 5132012-09-21 Eli Zaretskii <eliz@gnu.org>
aa36e4d2
EZ
514
515 * xdisp.c (try_window_reusing_current_matrix): Under bidi
516 reordering, locate the cursor by calling set_cursor_from_row; if
517 that fails, clear the desired glyph matrix before returning a
518 failure indication to the caller. Fixes leaving garbled display
519 when fast scrolling with a down-key. (Bug#12403)
f2016bea
EZ
520 (compute_stop_pos_backwards): Fix a typo that caused crashes while
521 scrolling through multibyte text.
aa36e4d2 522
e99f70c8
SM
5232012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
524
525 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
526 calling mark_vectorlike since that's the one that marks the window.
527 (mark_discard_killed_buffers): Mark the final cdr.
528 * window.h (struct window): Move prev/next_buffers to the
529 non-standard fields.
530 * window.c (make_window): Initialize prev/next_buffers manually.
531
f75beb47
PE
5322012-09-20 Paul Eggert <eggert@cs.ucla.edu>
533
534 Omit unused arg EXPECTED from socket hooks.
535 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
536 * nsterm.m (ns_term_init):
537 * termhooks.h (struct terminal.read_socket_hook):
538 * w32inevt.c (w32_console_read_socket):
539 * w32term.c (w32_read_socket):
540 * xterm.c (XTread_socket):
541 Omit unused arg EXPECTED. All callers changed.
542 (store_user_signal_events): Return void, not int, since callers no
543 longer care about the return value. All uses changed.
544
b019b76a
JB
5452012-09-20 Juanma Barranquero <lekktu@gmail.com>
546
547 * w32gui.h (XParseGeometry): Do not declare.
548
05642592
PE
5492012-09-19 Paul Eggert <eggert@cs.ucla.edu>
550
e4bce92a
PE
551 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
552 Ignore 'expected'. See Eli Zaretskii in
553 <http://bugs.gnu.org/12471#8> (last line).
554
05642592
PE
555 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
556 (XParseGeometry): Now static. Substitute extremal values for
557 values that are out of range.
558
e543ae91
JD
5592012-09-19 Jan Djärv <jan.h.d@swipnet.se>
560
561 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
562
563 * nsfns.m (XParseGeometry): Remove.
564 (Fx_create_frame): Call x_set_offset to correctly interpret
565 top_pos in geometry.
566
3a880af4 567 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
e543ae91
JD
568 (Fx_parse_geometry): If there is a space in string, call
569 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
570
45ba16c7
EZ
5712012-09-17 Eli Zaretskii <eliz@gnu.org>
572
c8b9f1bc
EZ
573 * search.c (scan_buffer): Use character positions in calls to
574 region_cache_forward and region_cache_backward, not byte
575 positions. (Bug#12196)
576
b4c932a2
EZ
577 * w32term.c (w32_read_socket): Set pending_signals to 1, like
578 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
579
45ba16c7
EZ
580 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
581 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
582 emacs_blocked_malloc, now deleted.
583
eeceac93
PE
5842012-09-17 Paul Eggert <eggert@cs.ucla.edu>
585
586 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
587 The workaround was for improving performance on Solaris 2.4, but
588 is getting in the way now. Emacs will still work if someone is
589 still running Solaris 2.4 in a museum somewhere; Sun dropped
590 support for Solaris 2.4 in 2003.
591 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
592 * process.c (create_process) [HAVE_WORKING_VFORK]:
593 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
594 since Emacs no longer uses vfork on that platform.
595
78f83752
GM
5962012-09-17 Glenn Morris <rgm@gnu.org>
597
598 * emacs.c: Use COPYRIGHT.
599
634b8cac
PE
6002012-09-16 Paul Eggert <eggert@cs.ucla.edu>
601
0caaedb1
PE
602 Remove configure's --without-sync-input option (Bug#12450).
603 When auditing signal-handling in preparation for cleaning it up,
604 I found that SYNC_INPUT has race conditions and would be a real
605 pain to fix. Since it's an undocumented and deprecated
606 configure-time option, now seems like a good time to remove it.
607 Also see <http://bugs.gnu.org/11080#16>.
608 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
609 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
610 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
611 (malloc_hysteresis):
612 (check_depth) [XMALLOC_OVERRUN_CHECK]:
613 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
614 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
615 (dont_register_blocks, bytes_used_when_reconsidered)
616 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
617 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
618 [!SYSTEM_MALLOC && !SYNC_INPUT]:
619 Remove. All uses removed.
620 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
621 implementation, one that depends on whether the new macro
622 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
623 is defined.
624 * atimer.c (run_timers, handle_alarm_signal):
625 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
626 (handle_async_input, process_pending_signals)
627 (handle_input_available_signal, init_keyboard):
628 * nsterm.m (ns_read_socket):
629 * process.c (wait_reading_process_output):
630 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
631 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
632 (emacs_write):
633 * xterm.c (XTread_socket):
634 Assume SYNC_INPUT.
635 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
636 * eval.c (handling_signal): Remove. All uses removed.
637 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
638 All uses replaced with the SYNC_INPUT version.
639 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
640 Remove decls.
641 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
642 Now static.
643
634b8cac
PE
644 * font.c (Ffont_shape_gstring): Remove unused local.
645
83da1b55
GM
6462012-09-16 Glenn Morris <rgm@gnu.org>
647
518650a5
GM
648 * Makefile.in (clean): No longer run nextstep's clean.
649
83da1b55
GM
650 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
651 (ns_frag): Remove.
652 (ns-app): Move here from ns.mk, and simplify.
653 (clean): Simplify nextstep entry.
654 * ns.mk: Remove file.
655
85a43e2e
KH
6562012-09-17 Kenichi Handa <handa@gnu.org>
657
658 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
659 not covert the last few charactes.
660
ba13e616 6612012-09-16 Kenichi Handa <handa@gnu.org>
ea964864
KH
662
663 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
664 here, but just check the validity of glyphs in the glyph-string.
665
a8c729af
MR
6662012-09-16 Martin Rudalics <rudalics@gmx.at>
667
3a880af4
SM
668 * window.c (Fwindow_parameter, Fset_window_parameter):
669 Accept any window as argument (Bug#12452).
a8c729af 670
c077c059
JD
6712012-09-16 Jan Djärv <jan.h.d@swipnet.se>
672
673 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
674 to ns_term_init to avoid memory leak.
675
676 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
677 explicit retain/release.
678 (ns_term_init): Only allow one display. Initialize outerpool and
679 ns_*_types.
680
39a57ad0
PE
6812012-09-15 Paul Eggert <eggert@cs.ucla.edu>
682
683 Port _setjmp fix to POSIXish hosts as well as Microsoft.
684 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
685 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
686 the Microsoft problem in a different way, by altering ../nt/config.nt.
687
7105c8cb
EZ
6882012-09-15 Eli Zaretskii <eliz@gnu.org>
689
690 * w32xfns.c:
691 * w32uniscribe.c:
692 * w32term.c:
693 * w32select.c:
694 * w32reg.c:
695 * w32proc.c:
696 * w32menu.c:
697 * w32inevt.c:
698 * w32heap.c:
699 * w32font.c:
700 * w32fns.c:
701 * w32console.c:
702 * w32.c:
703 * w16select.c: Remove inclusion of setjmp.h, as it is now included
704 by lisp.h. This completes removal of setjmp.h inclusion
705 erroneously announced in the previous commit. (Bug#12446)
706
707 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
708 more accurate.
709
710 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
711 not defined as a macro. The latter happens on MS-Windows.
712 (Bug#12446)
713
0328b6de
PE
7142012-09-15 Paul Eggert <eggert@cs.ucla.edu>
715
716 Port better to POSIX hosts lacking _setjmp (Bug#12446).
717 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
7105c8cb 718 Some instances of '#include <setjmp.h>' removed, if the
0328b6de
PE
719 only reason for the instance was because "lisp.h" was included.
720 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
721 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
722 and _longjmp with the new symbols. Emacs already uses _setjmp if
723 available, so this change affects only POSIXish hosts that have
724 sigsetjmp but not _setjmp, such as some versions of Solaris and
725 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
726 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
727 (png_load_body) [HAVE_PNG]:
728 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
729 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
730 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
731 since PNG requires jmp_buf. This is the only exception to the
732 general rule that we now use sys_setjmp and sys_longjmp.
733 This exception is OK since this code does not change the signal
734 mask or longjmp out of a signal handler.
735
2af03429
PE
7362012-09-14 Paul Eggert <eggert@cs.ucla.edu>
737
738 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
739 Include "syssignal.h", for 'main_thread'.
740
2f294edf
DA
7412012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
742
743 Avoid out-of-range marker position (Bug#12426).
3a880af4
SM
744 * insdel.c (replace_range, replace_range_2):
745 Adjust markers before overlays, as suggested by comments.
2f294edf
DA
746 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
747 Remove redundant check before calling offset_intervals.
748
6b533e9c
MR
7492012-09-14 Martin Rudalics <rudalics@gmx.at>
750
751 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
752 current buffer (Bug#12387).
753
2a7931e3
JB
7542012-09-14 Juanma Barranquero <lekktu@gmail.com>
755
756 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
757
c18e885b
PE
7582012-09-13 Paul Eggert <eggert@cs.ucla.edu>
759
760 Use a more backwards-compatible timer format (Bug#12430).
761 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
762 vector element, not from the 4th, since PSECS is now at the end.
763 (Fcurrent_idle_time): Doc fix.
764
d59a1afb
DA
7652012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
766
767 Function to mark objects and remove killed buffers at once.
768 * alloc.c (discard_killed_buffers): Rename to ...
769 (mark_discard_killed buffers) ... new name. Add marking
770 of remaining objects. Fix comment. Adjust users.
771 (mark_object): Do not touch frame buffer lists here.
772 * frame.c (delete_frame): Reset frame buffer lists here.
773
5f0cb45a
PE
7742012-09-13 Paul Eggert <eggert@cs.ucla.edu>
775
8ea47e3a
PE
776 Better workaround for GNOME bug when --enable-gcc-warnings.
777 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
778 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
779 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
780
4a4bbad2
PE
781 Simplify SIGIO usage (Bug#12408).
782 The code that dealt with SIGIO was crufty and confusing, e.g., it
783 played tricks like "#undef SIGIO" but these tricks were not used
784 consistently. Simplify mostly by not #undeffing standard symbols,
785 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
786 or not as we please) rather than "defined SIGIO" (standard symbol
787 that we probably shouldn't #undef).
788 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
789 Modules that need it can include it.
790 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
791 * dispextern.h (ignore_sigio): New decl.
792 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
793 unconditionally, since it's now a no-op if !USABLE_SIGIO.
794 * emacs.c (shut_down_emacs):
795 * keyboard.c (kbd_buffer_store_event_hold):
796 Use ignore_sigio rather than invoking 'signal' directly.
797 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
798 for FIONREAD.
799 (FIONREAD, SIGIO): Do not #undef.
800 (tty_read_avail_input): Use #error rather than a syntax error.
801 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
802 for I_PIPE, used by SETUP_SLAVE_PTY.
803 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
804 * sysdep.c (croak): Remove; no longer needed. This bit of
805 temporary code, with Fred N. Fish's comment that it's temporary,
806 has been in Emacs since at least 1992!
807 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
808 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
809 * syssignal.h (croak): Remove decl.
810 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
811 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
812 now that we're termios-only.
813 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
814 * term.c (dissociate_if_controlling_tty): Use #error rather than
815 a run-time error.
816
5f0cb45a
PE
817 Work around GCC and GNOME bugs when --enable-gcc-warnings.
818 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
819 to work around GNOME bug 683906.
820 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
821 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
822 This works around GCC bug 54561.
823
40bce90b
PE
8242012-09-12 Paul Eggert <eggert@cs.ucla.edu>
825
826 More fixes for 'volatile' and setjmp/longjmp.
827 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
828 * image.c (struct png_load_context) [HAVE_PNG]: New type.
829 (png_load_body) [HAVE_PNG]:
830 (jpeg_load_body) [HAVE_JPEG]:
831 New function, with most of the old parent function's body.
832 (png_load) [HAVE_PNG]:
833 (jpeg_load) [HAVE_JPEG]:
834 Invoke the new function, to avoid longjmp munging our locals.
835 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
836 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
837 longjmp is passed 2, as the C standard doesn't guarantee this.
838 Instead, store the failure code into mgr->failure_code.
839
bfeae2cf
SM
8402012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
841
842 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
843 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
844 (syms_of_keyboard): Remove support for unread-command-char.
845
8099e36b
EZ
8462012-09-12 Eli Zaretskii <eliz@gnu.org>
847
848 * w32proc.c (sys_kill): If PID is our process ID and the signal is
849 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
850 violation. (Bug#12426)
851
92547ff9
PE
8522012-09-12 Paul Eggert <eggert@cs.ucla.edu>
853
854 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
855
45b82ad0
SM
8562012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
857
858 * eval.c: Add `inhibit-debugger'.
859 (Qinhibit_debugger): New symbol.
860 (call_debugger): Bind it instead of Qdebug_on_error.
861 (maybe_call_debugger): Test Vinhibit_debugger.
862 (syms_of_eval): Define inhibit-debugger.
863 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
864 (syms_of_xdisp): Remove inhibit-debug-on-message.
865
5779a1dc
PE
8662012-09-11 Paul Eggert <eggert@cs.ucla.edu>
867
50f2e553
PE
868 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
869 If a nonvolatile local variable is written before a _longjmp to
870 the frame containing the variable, and is read after the _longjmp,
871 the value read is indeterminate. Some local variables of type
872 'struct handler' and 'struct catchtag' are used in this way, so
873 mark each of their slots as volatile if the slot can be set before
874 _longjmp and read afterwards.
875 * lisp.h (struct handler): var and chosen_clause are now volatile.
876 (struct catchtag): val, next, and pdlcount are now volatile.
877
ae1d87e2
PE
878 * bidi.c (bidi_push_it, bidi_pop_it):
879 * fns.c (copy_hash_table):
880 * image.c (define_image_type):
881 * keyboard.c (kbd_buffer_store_event_hold):
882 * process.c (Fprocess_send_eof):
883 * xfaces.c (x_create_gc) [HAVE_NS]:
884 * xgselect.c (xg_select):
885 Prefer assignment to memcpy when either will do.
886
5779a1dc
PE
887 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
888 Use pointer-to-a-pointer to simplify and avoid a NILP check each
889 time an item is removed. No need to mark this function 'inline';
890 the compiler knows better than we do.
891
c4c9756b
JD
8922012-09-11 Jan Djärv <jan.h.d@swipnet.se>
893
894 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
895 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
896 to change_frame_size (Bug#12388).
897 (windowDidResize:): Pass YES to updateFrameSize.
898
899 * nsterm.h: Add delay parameter to updateFrameSize.
900
d73e321c
DA
9012012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
902
903 Discard killed buffers from deleted window and frame objects.
904 This reduces an amount of references to killed buffers and
905 helps GC to reclaim them faster.
906 * alloc.c (discard_killed_buffers): New function.
907 (mark_object): Use it for deleted windows and frames.
908 (mark_object): If symbol's value is set up for a killed buffer
909 or deleted frame, restore it's global binding.
910 * data.c (swap_in_global_binding): Add GC notice.
911 (swap_in_symval_forwarding): Use convenient set_blv_where.
912 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
913 * window.h: ... to here.
914
e578f381
DA
9152012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
916
917 Convenient macro to check whether the buffer is live.
918 * buffer.h (BUFFER_LIVE_P): New macro.
919 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
920 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
921
3057e615
YM
9222012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
923
924 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
925 composition cases (Bug#12364).
926
927 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
928 overhang of succeeding glyphs overlapping box cursor.
929
930 * w32term.c (x_draw_glyph_string): Likewise.
931
6fda35f2
PE
9322012-09-11 Paul Eggert <eggert@cs.ucla.edu>
933
c990426a
PE
934 Simplify, document, and port floating-point (Bug#12381).
935 The porting part of this patch fixes bugs on non-IEEE platforms
936 with frexp, ldexp, logb.
937 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
938 Now static.
939 * floatfns.c: Simplify discussion of functions that Emacs doesn't
940 support, by removing commented-out code and briefly listing the
941 C89 functions excluded. The commented-out stuff was confusing
942 maintenance, e.g., we thought we needed cbrt but it was commented out.
943 (logb): Remove decl; no longer needed.
944 (isfinite): New macro, if not already supplied.
945 (isnan): Don't replace any existing macro.
946 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
947 are present on all C89 platforms.
948 (Ffrexp): Do not special-case zero, as frexp does the right thing
949 for that case.
950 (Flogb): Do not use logb, as it doesn't have the desired meaning
951 on hosts that use non-base-2 floating point. Instead, stick with
952 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
953 frexp, to avoid getting an unspecified result.
954
6fda35f2
PE
955 * xdisp.c (Qinhibit_debug_on_message): Now static.
956
16130a58
JD
9572012-09-10 Jan Djärv <jan.h.d@swipnet.se>
958
959 * nsterm.m (ns_update_begin): Set clip path to whole view by using
960 NSBezierPath (Bug#12131).
961
d105a573
CY
9622012-09-10 Chong Yidong <cyd@gnu.org>
963
964 * fns.c (Fdelq, Fdelete): Doc fix.
965
ff55dfe8
PE
9662012-09-10 Paul Eggert <eggert@cs.ucla.edu>
967
968 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
969 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
970
e7032e7c
SM
9712012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
972
973 * lisp.h (make_lisp_ptr): New macro to replace XSET.
974 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
975 Use it.
976
e9957956
EZ
9772012-09-09 Eli Zaretskii <eliz@gnu.org>
978
aba05ce9
EZ
979 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
980 left fringe if the window has a left margin. This avoids leaving
981 traces of the cursor because its leftmost pixel is not drawn over.
982
e9957956
EZ
983 * dispnew.c (update_window_line): When the left margin area of a
984 screen line is updated, set the redraw_fringe_bitmaps_p flag of
985 that screen line. (Bug#12277)
986
f6196b87
PE
9872012-09-09 Paul Eggert <eggert@cs.ucla.edu>
988
989 Assume C89 or later for math functions (Bug#12381).
990 This simplifies the code, and makes it a bit smaller and faster,
991 and (most important) makes it easier to clean up signal handling
992 since we can stop worring about floating-point exceptions in
993 library code. That was a problem before C89, but the problem
994 went away many years ago on all practical Emacs targets.
995 * data.c, image.c, lread.c, print.c:
996 Don't include <math.h>; no longer needed.
997 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
998 might be autoconfigured, as that never happens.
999 * data.c (fmod):
1000 * doprnt.c (DBL_MAX_10_EXP):
1001 * print.c (DBL_DIG):
1002 Remove. C89 or later always defines these.
1003 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
1004 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
1005 (arith_error, domain_error, domain_error2):
1006 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
1007 no longer needed -- we simply return what C returns. All uses removed.
1008 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
1009 the wrapped code.
1010 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
1011 Remove. All uses expanded, as these macros are no longer used
1012 more than once and are now more trouble than they're worth.
1013 (Ftan): Use tan, not sin / cos.
1014 (Flogb): Assume C89 frexp.
1015 (fmod_float): Assume C89 fmod.
1016 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
1017 (init_floatfns): Remove. All uses removed.
1018
9d7f1863
JD
10192012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1020
1021 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
1022 compositeToPoint for OSX < 10.6 (Bug#12390).
1023
eabf0404
PE
10242012-09-08 Paul Eggert <eggert@cs.ucla.edu>
1025
1026 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
1027 This produces more-accurate results.
1028
0b3b1d23
JD
10292012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1030
1031 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
1032 changes (Bug#12088).
1033
6dcef6ec
CY
10342012-09-08 Chong Yidong <cyd@gnu.org>
1035
1036 * syntax.c (Fstring_to_syntax): Doc fix.
1037
aa7d57c5
JD
10382012-09-08 Jan Djärv <jan.h.d@swipnet.se>
1039
1040 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
1041 in the internal border.
1042 (x_set_window_size): Remove static variables and their usage.
1043 (ns_redraw_scroll_bars): Fix NSTRACE arg.
3a880af4
SM
1044 (ns_after_update_window_line, ns_draw_fringe_bitmap):
1045 Remove fringe/internal border adjustment (Bug#11052).
aa7d57c5
JD
1046 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
1047 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
1048 (ns_fix_rect_ibw): Remove.
1049 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
1050 (ns_dumpglyphs_box_or_relief): Ditto.
1051 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
1052 adjustment.
1053 (ns_dumpglyphs_image): Ditto.
fc0c31f8 1054 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
aa7d57c5
JD
1055 border adjustment.
1056 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
1057 their usage. Add fringe_extended_p and its use as in other terms.
1058 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
1059 scroll bar was removed.
1060 (updateFrameSize): New function.
1061 (windowDidResize): Move code to updateFrameSize and call it.
1062
1063 * nsterm.h (EmacsView): Add updateFrameSize.
1064
1a5432bc
CY
10652012-09-07 Chong Yidong <cyd@gnu.org>
1066
b4f5313e
CY
1067 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
1068
1a5432bc
CY
1069 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
1070
1a4f1e9b
PE
10712012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1072
1073 More signal-handler cleanup (Bug#12327).
eddb36a7
PE
1074 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
1075 Problem introduced when merging patches. Noted by Eli Zaretskii in
1076 <http://bugs.gnu.org/12327#67>.
1a4f1e9b
PE
1077 * floatfns.c: Comment fix.
1078 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
1079 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
1080 and anyway the declaration is harmless even if SIGDANGER is not defined.
1081 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
1082 defined BROKEN_FIONREAD). systty.h formerly did this, but other
1083 source files not surprisingly expected syssignal.h to define, or
1084 not define, SIGIO, and it's cleaner to do it that way, for consistency.
1085 Include <sys/ioctl.h>, for FIONREAD.
1086 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
1087 This eliminates a problem whereby other files mysteriously had
1088 to include "syssignal.h" before including "systty.h" if they
1089 wanted to use "#ifdef SIGIO".
1090
bc8000ff
EZ
10912012-09-07 Eli Zaretskii <eliz@gnu.org>
1092
3e6d6928
EZ
1093 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
1094
1095 * w32.c (sigemptyset): Empty the set.
1096 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
1097
bc8000ff
EZ
1098 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
1099
b4fa72f2
DA
11002012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
1101
1102 * alloc.c (mark_buffer): Revert unsafe marking optimization.
1103 (mark_object): Likewise for frame objects.
1104
30730c93
PE
11052012-09-07 Paul Eggert <eggert@cs.ucla.edu>
1106
1107 * syssignal.h (handle_on_main_thread): Always declare,
1108 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
1109 This ports to platforms without HAVE_PTHREAD.
1110
2fe28299
PE
11112012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1112
1113 Signal-handler cleanup (Bug#12327).
1114 Emacs's signal handlers were written in the old 4.2BSD style with
1115 sigblock and sigmask and so forth, and this led to some
1116 inefficiencies and confusion. Rewrite these to use
1117 pthread_sigmask etc. without copying signal sets around. Also,
1118 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
1119 'signal', and instead use functions that do not attempt to take
1120 over the system name space. This patch causes Emacs's text
1121 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
1122 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
1123 Do not include <signal.h> or "syssignal.h", as these
1124 modules do not use signals.
1125 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
1126 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
1127 Do not include <signal.h>, as "syssignal.h" does that for us now.
1128 * atimer.c (sigmask_atimers): New function.
1129 (block_atimers, unblock_atimers): New functions,
1130 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
1131 All uses replaced.
1132 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
1133 no longer needed here.
1134 * emacs.c (main): Inspect existing signal handler with sigaction,
fc0c31f8 1135 so that there's no need to block and unblock SIGHUP.
2fe28299
PE
1136 * sysdep.c (struct save_signal): New member 'action', replacing
1137 old member 'handler'.
1138 (save_signal_handlers, restore_signal_handlers):
1139 Use sigaction instead of 'signal' to save and restore.
1140 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
1141 New function. All users of 'signal' modified to use set_sighandler
1142 if they're writeonly, and to use sys_signal if they're read+write.
1143 (emacs_sigaction_init, forwarded_signal): New functions.
1144 (sys_signal): Remove. All uses replaced by calls to sigaction
1145 and emacs_sigaction_init, or by direct calls to 'signal'.
1146 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
1147 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
1148 all uses replaced by pthread_sigmask etc. calls.
1149 * syssignal.h: Include <signal.h>.
1150 (emacs_sigaction_init, forwarded_signal): New decls.
1151 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
1152 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
1153 (sigmask, sys_sigmask): Remove; no longer needed.
1154 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
1155 (sigblock, sigunblock, sigfree):
1156 (sigsetmask) [!defined sigsetmask]:
1157 Remove. All uses replaced by pthread_sigmask.
1158 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
1159 no longer need to be replaced, and its typical old uses
1160 are now done via emacs_sigaction_init and sigaction.
1161 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
1162 (sys_sigdel): Remove; unused.
1163 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
1164
0216c128
EZ
11652012-09-06 Eli Zaretskii <eliz@gnu.org>
1166
1167 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
1168 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
1169
c752cfa9
DA
11702012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
1171
1172 Explicitly mark buffer_defaults and buffer_local_symbols.
1173 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
1174 mark_local_symbols here.
1175 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
1176 since special buffers aren't marked here any more.
1177 (allocate_buffer): Chain new buffer with all_buffers here...
1178 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
1179 not here.
1180 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
1181 (syms_of_buffer): Remove staticpro of the above.
1182 (init_buffer_once): Set names for buffer_defaults and
1183 buffer_local_symbols.
1184
a864ef14
PE
11852012-09-06 Paul Eggert <eggert@cs.ucla.edu>
1186
1187 Use bool for booleans in font-related modules.
1188 * font.c (font_intern_prop, font_style_to_value)
1189 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
1190 (generate_otf_features, font_check_otf_features, font_check_otf)
1191 (font_match_p, font_list_entities, font_at):
1192 * fontset.c (fontset_id_valid_p, reorder_font_vector
1193 (fontset_find_font, Fset_fontset_font)
1194 (face_suitable_for_char_p) [0]:
1195 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
1196 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
1197 (m17n_flt_initialized, ftfont_shape_by_flt):
1198 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
1199 * nsfont.m (nsfont_draw):
1200 * w32font.c (w32font_draw):
1201 * w32term.c (x_draw_glyphless_glyph_string_foreground):
1202 Use bool for booleans.
1203 * font.h: Adjust to above API changes.
1204 (struct font, struct font_driver, struct font_driver_list):
1205 Use bool for booleans.
1206 (struct font): Remove useless member encoding_type.
1207 All users removed.
1208 * fontset.c, xftfont.c: Omit unnecessary static decls.
1209
0699fc18
DA
12102012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
1211
1212 * alloc.c (mark_object): Revert window marking code
1213 since it's unsafe for the Fset_window_configuration.
1214
20ef56db
PE
12152012-09-05 Paul Eggert <eggert@cs.ucla.edu>
1216
2fe28299 1217 Fix race conditions with signal handlers and errno (Bug#12327).
20ef56db
PE
1218 Be more systematic about preserving errno whenever a signal
1219 handler returns, even if it's not in the main thread. Do this by
1220 renaming signal handlers to distinguish between signal delivery
1221 and signal handling. All uses changed.
1222 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
1223 * data.c (deliver_arith_signal): Rename from arith_error.
1224 * dispnew.c (deliver_window_change_signal): Rename from
1225 window_change_signal.
1226 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
1227 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
1228 * keyboard.c (deliver_input_available_signal): Rename from
1229 input_available_signal.
1230 (deliver_user_signal): Rename from handle_user_signal.
1231 (deliver_interrupt_signal): Rename from interrupt_signal.
1232 * process.c (deliver_pipe_signal): Rename from send_process_trap.
1233 (deliver_child_signal): Rename from sigchld_handler.
1234 * atimer.c (handle_alarm_signal):
1235 * data.c (handle_arith_signal):
1236 * dispnew.c (handle_window_change_signal):
1237 * emacs.c (handle_fatal_signal, handle_danger_signal):
1238 * keyboard.c (handle_input_available_signal):
1239 * keyboard.c (handle_user_signal, handle_interrupt_signal):
1240 * process.c (handle_pipe_signal, handle_child_signal):
1241 New functions, with the actual signal-handling code taken from the
1242 original respective signal handlers, sans the sporadic attempts to
1243 preserve errno, since that's now done by handle_on_main_thread.
1244 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
1245 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
1246 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1247 Move to sysdep.c.
1248 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1249 Move initialization of main_thread to sysdep.c's init_signals.
1250 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
1251 our usage, and simplifies the mainline code.
1252 (record_child_status_change): New static function, as a helper
1253 for handle_child_signal, and with most of the old child handler's
1254 contents.
1255 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
1256 (handle_child_signal): Use the above.
1257 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
1258 Moved here from emacs.c.
1259 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
1260 code moved here from emacs.c's main function.
1261 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
3a880af4
SM
1262 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
1263 This lets callers save and restore errno properly.
20ef56db 1264
e3ccf108
DA
12652012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1266
1267 Remove redundant or unused things here and there.
1268 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
1269 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
1270 * editfns.c (Fcompare_buffer_substrings): Likewise.
1271 * frame.h (struct terminal, struct font_driver_list):
1272 Remove redundant declarations.
1273 * window.h (Qleft, Qright): Likewise.
1274
697e1e39
DA
12752012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1276
1277 Do not mark objects from deleted buffers, windows and frames.
1278 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
1279 (mark_object): Likewise for windows and frames.
1280
c1ca42ca
DA
12812012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
1282
1283 * alloc.c (valid_lisp_object_p): Treat killed buffers,
1284 buffer_defaults and buffer_local_symbols as valid objects.
1285 Return special value to denote them.
1286
014d93be
PE
12872012-09-05 Paul Eggert <eggert@cs.ucla.edu>
1288
f75d7a91
PE
1289 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
1290 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
1291 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
1292 (file_name_absolute_p, Fsubstitute_in_file_name):
1293 (check_executable, check_writable, Ffile_accessible_directory_p)
1294 (Fset_file_selinux_context, Fdefault_file_modes)
1295 (Finsert_file_contents, choose_write_coding_system)
1296 (Fwrite_region, build_annotations, a_write, e_write)
1297 (Fdo_auto_save):
1298 * filelock.c (boot_time_initialized, get_boot_time)
1299 (get_boot_time_1, lock_file_1, within_one_second):
1300 * floatfns.c (in_float):
1301 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
1302 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
1303 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
1304 * lisp.h (struct Lisp_Hash_Table.cmpfn):
1305 * window.c (compare_window_configurations):
1306 Use bool for booleans.
1307 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
1308 (Fdefault_file_modes): Now mode_t, not int, for modes.
1309 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
1310 (internal_delete_file): Now returns void, not a (boolean) int,
1311 since nobody was looking at the return value.
1312 * lisp.h, window.h: Adjust to above API changes.
1313
014d93be
PE
1314 * xdisp.c (set_message): Simplify and reindent last change.
1315
776f29e1
JB
13162012-09-05 Juanma Barranquero <lekktu@gmail.com>
1317
1318 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
1319
7f7e0167
LI
13202012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
1321
1322 * eval.c (call_debugger): Make the function non-static so that we
1323 can call it from set_message.
1324
1325 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
1326 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
1327
cf29dd84
PE
13282012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1329
1330 Give more-useful info on a fatal error (Bug#12328).
1331 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
1332 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
1333 of doing the work ourselves.
1334 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
1335 do most of the work.
1336 (fatal_error_backtrace): New function, taken from the guts
1337 of the old fatal_error_signal, but with a new option to output
1338 a backtrace.
1339 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
1340 info about the signal than just its number.
1341 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
1342 * sysdep.c: Include <execinfo.h>
1343 (emacs_backtrace): New function, taken partly from the previous
1344 code of the 'die' function.
1345 (emacs_abort): Call fatal_error_backtrace rather than abort.
1346
972debf2
SM
13472012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
1348
1349 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
1350 eager (load-time) macro-expansion.
1351 * lisp.mk (lisp): Add macroexp.
1352
1088b922
PE
13532012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1354
1355 Simplify redefinition of 'abort' (Bug#12316).
1356 Do not try to redefine the 'abort' function. Instead, redo
1357 the code so that it calls 'emacs_abort' rather than 'abort'.
1358 This removes the need for the NO_ABORT configure-time macro
1359 and makes it easier to change the abort code to do a backtrace.
1360 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
1361 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
1362 Remove; sysdep.c's emacs_abort now takes its place.
1363 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
1364 'abort' changed to use 'emacs_abort'.
1365 * msdos.c (dos_abort) [defined abort]: Remove; not used.
1366 (abort) [!defined abort]: Rename to ...
1367 (emacs_abort): ... new name.
1368 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
1369 the place of the old 'abort' in emacs.c.
1370 * w32.c, w32fns.c (abort): Do not #undef.
1371 * w32.c (emacs_abort): Rename from w32_abort.
1372
30934d33
EZ
13732012-09-04 Eli Zaretskii <eliz@gnu.org>
1374
1375 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
1376 offsets[j].dv, since the y axis of the screen coordinates points
1377 down, while the y axis of the font definition coordinates points
1378 up. This fixes display of Arabic diacritics such as KASRA and
1379 KASRATAN. (Bug#11860)
1380
af26b72c
PE
13812012-09-04 Paul Eggert <eggert@cs.ucla.edu>
1382
1383 Be more systematic about _setjmp vs setjmp.
1384 * alloc.c (test_setjmp, mark_stack):
1385 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
1386 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
1387 (png_load, my_error_exit, jpeg_load):
1388 * process.c (send_process_trap, send_process):
1389 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
1390 The underscored versions are up to 30x faster on some hosts.
1391 Formerly, the code used setjmp+longjmp sometimes and
1392 _setjmp+_longjmp at other times, with no particular reason to
1393 prefer setjmp+longjmp.
1394
26d4541d
PE
13952012-09-03 Paul Eggert <eggert@cs.ucla.edu>
1396
d42f4f0f 1397 Fix minor problem found by static checking.
26d4541d 1398 * buffer.c (Fdelete_all_overlays): Return nil.
26d4541d 1399
c5e28e39
MR
14002012-09-03 Martin Rudalics <rudalics@gmx.at>
1401
1402 * buffer.c (Fdelete_all_overlays): New function.
1403
3eab3ca9
CY
14042012-09-03 Chong Yidong <cyd@gnu.org>
1405
1406 * gtkutil.c: Add extern decl for Qxft.
1407
c04889f8
PE
14082012-09-02 Paul Eggert <eggert@cs.ucla.edu>
1409
1882aa38
PE
1410 * emacs.c, eval.c: Use bool for boolean.
1411 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
1412 (malloc_using_checking) [DOUG_LEA_MALLOC]:
1413 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
1414 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
1415 (main, decode_env_path, Fdaemon_initialized):
1416 * eval.c (call_debugger, Finteractive_p, interactive_p):
1417 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
1418 (maybe_call_debugger, Fbacktrace):
1419 * process.c (read_process_output, exec_sentinel):
1420 Use bool for booleans.
1421 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
1422 All callers changed.
1423 * eval.c (interactive_p): Omit always-true boolean argument
1424 EXCLUDE_SUBRS_P. All callers changed.
1425 * dispextern.h, lisp.h: Reflect above API changes.
1426 * firstfile.c (dummy): Use the address of 'main', whose signature
1427 won't change, instead of the address of 'initialize', whose
1428 signature just changed from int to bool.
1429 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
1430 * msdos.c (fatal_error_in_progress): ... from here.
1431 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
1432 of incrementing it.
1433 (redisplay_internal, unwind_redisplay): Simply clear
1434 REDISPLAYING_P when unwinding, instead of saving its previous,
1435 always-false value and then restoring it.
1436
a411ac43
PE
1437 Clean up some extern decls.
1438 Mostly, this hoists extern decls out of .c files and into .h files.
1439 That way, we're more likely to catch errors if the interfaces change.
1440 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
1441 declare xg_mark_data.
1442 * dispextern.h (x_frame_parm_handlers):
1443 * font.h (Qxft):
1444 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
1445 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
1446 (Qultra_bold, Qoblique, Qitalic):
1447 Move extern decl here from .c file.
1448 * alloc.c (xg_mark_data) [USE_GTK]:
1449 * doc.c (Qclosure):
1450 * eval.c (Qlexical_binding):
1451 * fns.c (time) [!HAVE_UNISTD_H]:
1452 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
1453 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
1454 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
1455 * lread.c (Qinternal_interpreter_environment):
1456 * minibuf.c (Qbuffer):
1457 * process.c (QCfamily, QCfilter):
1458 * widget.c (free_frame_faces):
1459 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
1460 * xfont.c (x_clear_errors):
1461 * xterm.c (x_frame_parm_handlers):
1462 Remove now-redundant extern decls.
1463 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
1464 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
1465 Now static.
1466 * xfaces.c: Remove unnecessary static decls.
1467 * xterm.c (updating_frame): Remove decl of nonexistent object.
1468
c04889f8
PE
1469 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
1470 when building globals.h, as the objects that are not built on
1471 this host are not needed to compile C files on this host.
1472
8b339673
JD
14732012-09-02 Jan Djärv <jan.h.d@swipnet.se>
1474
1475 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
1476
1477 * frame.h: Add missing prototype for x_wm_set_size_hint.
1478
a08d4ba7
PE
14792012-09-02 Paul Eggert <eggert@cs.ucla.edu>
1480
1481 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
1482 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
1483 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
1484 (Fsubstitute_command_keys):
1485 * editfns.c (region_limit, find_field, Fconstrain_to_field)
1486 (save_excursion_save, save_excursion_restore)
1487 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
1488 (format_time_string, general_insert_function)
1489 (make_buffer_string, make_buffer_string_both)
1490 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
1491 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
1492 (copy_text, insert_1, insert_1_both, insert_from_string)
1493 (insert_from_string_before_markers, insert_from_string_1)
1494 (insert_from_buffer, insert_from_buffer_1, replace_range)
1495 (replace_range_2, del_range_1, del_range_byte, del_range_both)
1496 (del_range_2, modify_region):
1497 * intervals.c (intervals_equal, balance_possible_root_interval)
1498 (adjust_intervals_for_insertion, merge_properties_sticky)
1499 (graft_intervals_into_buffer, lookup_char_property)
1500 (adjust_for_invis_intang, set_point_both)
1501 (get_property_and_range, compare_string_intervals)
1502 (set_intervals_multibyte_1, set_intervals_multibyte):
1503 * keyboard.c (decode_timer):
1504 Use bool for boolean.
1505 * intervals.h, lisp.h, systime.h: Reflect above API changes.
1506 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
1507
48c948de
CY
15082012-09-02 Chong Yidong <cyd@gnu.org>
1509
1510 * keymap.c (push_key_description): Print M-TAB as C-M-i
1511 (Bug#11758).
1512
6c49a40b
JB
15132012-09-02 Juanma Barranquero <lekktu@gmail.com>
1514
1515 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
1516 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
1517 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
1518 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
1519 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
1520 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
1521 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
1522
4dfbd238
EZ
15232012-09-01 Eli Zaretskii <eliz@gnu.org>
1524
7e510e28
EZ
1525 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
1526 more than one grapheme cluster passed to the shaper: compute the
1527 offset adjustment values separately for each cluster. (Bug#11860)
1528
4dfbd238
EZ
1529 * image.c: Restore mistakenly removed inclusion of w32.h. Without
1530 it, GCC doesn't see prototypes of w32_delayed_load, and complains
1531 about implicit conversions from integer to pointer.
1532
86571ae0
DC
15332012-09-01 Daniel Colascione <dancol@dancol.org>
1534
1535 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
1536 system used too early.
1537
0e23ef9d
PE
15382012-09-01 Paul Eggert <eggert@cs.ucla.edu>
1539
1540 Better seed support for (random).
1541 * emacs.c (main): Call init_random.
1542 * fns.c (Frandom): Set the seed from a string argument, if given.
1543 Remove long-obsolete Gentzel cruft.
1544 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
1545 (init_random): New function.
1546
17a2cbbd
DC
15472012-09-01 Daniel Colascione <dancol@dancol.org>
1548
1549 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
1550 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
1551 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
1552 x_wm_set_size_hint, x_query_colors, x_real_positions,
1553 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
1554 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
1555 all of which have been moved to common code.
1556
1557 * xfaces.c: Include TERM_HEADER instead of listing all possible
1558 window-system headers.
1559
1560 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
1561 to match header.
1562
1563 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
1564 directly accessing frame internals.
1565
f18cbb28 1566 * w32font.h: Include font.h. Define syms_of_w32font and
17a2cbbd
DC
1567 globals_of_w32font.
1568
1569 * process.c: Include TERM_HEADER instead of listing all possible
1570 window-system headers.
1571
3a880af4
SM
1572 * nsterm.h: Remove declarations now in frame.h.
1573 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
17a2cbbd
DC
1574
1575 * menu.c: Include TERM_HEADER instead of listing all possible
1576 window-system headers.
1577
1578 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
1579 window system.
1580
1581 * keyboard.c: Include TERM_HEADER instead of listing all possible
1582 window-system headers.
1583
1584 * image.c: Include TERM_HEADER instead of listing all possible
1585 window-system headers. Declare Vlibrary_cache when compiling for
1586 Windows.
1587
1588 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
1589 window system declarations.
1590
1591 * frame.h: Move common functions here: set_frame_menubar,
1592 x_set_window_size, x_sync, x_get_focus_frame,
1593 x_set_mouse_position, x_set_mouse_pixel_position,
1594 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
1595 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
1596 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
1597 x_activate_menubar, x_real_positions, x_bitmap_icon,
1598 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
1599 and x_query_colors.
1600
1601 * frame.c: Include TERM_HEADER instead of listing all possible
1602 window-system headers.
1603
1604 * font.c: Include TERM_HEADER instead of listing all possible
1605 window-system headers.
1606
1607 * emacs.c: Include TERM_HEADER.
1608
f18cbb28
EZ
1609 * dispnew.c: Include TERM_HEADER instead of listing all possible
1610 window-system headers.
17a2cbbd 1611
f18cbb28 1612 * ccl.h: Include character.h.
17a2cbbd
DC
1613
1614 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
1615 the current window system; include in list of objects to link into
1616 Emacs.
1617
c650a5de
DA
16182012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1619
1620 Remove mark_ttys function and fix tty_display_info initialization.
1621 * lisp.h (mark_ttys): Remove prototype.
1622 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
1623 to mark_ttys because all possible values of 'top_frame' slot are
1624 the frames which are reachable from Vframe_list.
1625 * term.c (mark_ttys): Remove.
1626 (init_tty): Safely initialize 'top_frame' slot with Qnil.
1627
4e0f6479
DA
16282012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1629
1630 Change struct frame bitfields from unsigned char to unsigned.
1631 * frame.h (struct frame): Change type of 'display_preempted',
1632 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
1633 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
1634 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
1635 bitfields from unsigned char to unsigned.
1636
8b96a52c
DA
16372012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
1638
1639 Remove unused member of struct x_output and struct w32_output.
1640 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
1641 * w32term.h (struct w32_output): Likewise.
1642
b4444c8a
JD
16432012-08-30 Jan Djärv <jan.h.d@swipnet.se>
1644
1645 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
1646 does not become zero (Bug#12234).
1647
b98521db
PE
16482012-08-30 Paul Eggert <eggert@cs.ucla.edu>
1649
1650 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
1651 for GCC 4.7.1 x86-64.
1652
31d02438
GM
16532012-08-30 Glenn Morris <rgm@gnu.org>
1654
1655 * lread.c (init_lread): For out-of-tree builds, only add the
1656 source directory's site-lisp dir to the load-path if it exists,
1657 consistent with in-tree builds. (Bug#12302)
1658
7f8941d8
JD
16592012-08-28 Jan Djärv <jan.h.d@swipnet.se>
1660
1661 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
fc0c31f8 1662 button_values to NULL. Call setStykeMask so dialogs get a close button.
7f8941d8
JD
1663 (windowShouldClose:): Set window_closed.
1664 (dealloc): New member, free button_values.
fc0c31f8
JB
1665 (process_dialog:): Make member function. Remove window argument,
1666 replace window with self. Count buttons and allocate and store values
7f8941d8
JD
1667 in button_values.
1668 (addButton:value:row:): value is int with the name tag. Call setTag
fc0c31f8 1669 with tag. Remove return self, declare return value as void.
7f8941d8
JD
1670 (addString:row:): Remove return self, declare return value as void.
1671 (addSplit): Remove return self, declare return value as void.
1672 (clicked:): Remove return self, declare return value as void.
fc0c31f8 1673 Set dialog_return to button_values[seltag]. Code formatting change.
7f8941d8
JD
1674 (initFromContents:isQuestion:): Adjust call to process_dialog.
1675 Code formatting change.
1676 (timeout_handler:): Set timer_fired to YES.
1677 (runDialogAt:): Set timer_fired to NO.
1678 Handle click on close button as quit.
1679
1680 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
1681 Add window_closed and button_values. Add void as return value for
1682 add(Button|String|Split). addButton takes int instead of Lisp_Object.
1683 Add process_dialog as new member.
1684
eada0861 16852012-08-28 Eli Zaretskii <eliz@gnu.org>
19c17fc1 1686
eada0861
GM
1687 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
1688 is not one of the heaps we manage. (Bug#12242)
1689
16902012-08-28 Glenn Morris <rgm@gnu.org>
1691
1692 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
1693
457294dd
MR
16942012-08-28 Martin Rudalics <rudalics@gmx.at>
1695
1696 * window.c (Fset_window_configuration): Remove handling of
37b9743e
MR
1697 auto-buffer-name window parameter. Install revision of reverted
1698 fix.
457294dd 1699
4f2daf31
DA
17002012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1701
1702 Do not allow to set major mode for a dead buffer.
1703 * buffer.c (Fset_buffer_major_mode): Signal an error
1704 if the buffer is dead.
1705 (Fother_buffer, other_buffer_safely): Remove redundant
1706 nested declaration.
1707
66322887
DA
17082012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1709
1710 Always use set_buffer_if_live to restore original buffer at unwind.
1711 * buffer.h (record_unwind_current_buffer): New function.
1712 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
1713 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
1714 * undo.c, window.c: Adjust users.
1715 * buffer.c (set_buffer_if_live): Fix comment.
1716
a3d794a1
DA
17172012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
1718
1719 Fix usage of set_buffer_internal.
1720 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
1721 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
1722 * coding.c (decode_coding): Omit redundant test.
1723 * fileio.c (decide_coding_unwind): Likewise.
1724 * fns.c (secure_hash): Likewise.
1725 * insdel.c (modify_region): Likewise.
1726 * keyboard.c (command_loop_1): Likewise.
1727 * print.c (PRINTFINISH): Likewise.
1728 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
1729
59ea14cd
PE
17302012-08-27 Paul Eggert <eggert@cs.ucla.edu>
1731
1732 * dispnew.c: Use bool for boolean.
1733 (frame_garbaged, display_completed, delayed_size_change)
1734 (fonts_changed_p, add_window_display_history)
1735 (add_frame_display_history, verify_row_hash)
1736 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
1737 (row_equal_p, realloc_glyph_pool)
1738 (allocate_matrices_for_frame_redisplay)
1739 (showing_window_margins_p)
1740 (adjust_frame_glyphs_for_frame_redisplay)
1741 (build_frame_matrix_from_leaf_window, make_current)
1742 (mirrored_line_dance, mirror_line_dance, update_frame)
1743 (update_window_tree, update_single_window)
1744 (check_current_matrix_flags, update_window, update_text_area)
1745 (update_window_line, set_window_update_flags, scrolling_window)
1746 (update_frame_1, scrolling, buffer_posn_from_coords)
1747 (do_pending_window_change, change_frame_size)
1748 (change_frame_size_1, sit_for):
1749 Use bool for boolean.
1750 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
1751 and remove last int (actually boolean) argument, which was always 0.
1752 All callers changed.
1753 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
1754 * dispextern.h (struct composition_it): Use bool for boolean.
1755 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
1756 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
1757 * dired.c (file_name_completion):
1758 Use bool for boolean. (This was missed in an earlier change.)
1759
95072a94
MR
17602012-08-27 Martin Rudalics <rudalics@gmx.at>
1761
1762 * window.c (Fset_window_configuration): Revert first part of
1763 last change.
1764
0f19feff
JD
17652012-08-27 Jan Djärv <jan.h.d@swipnet.se>
1766
1767 * nsterm.h (NSPanel): New class variable dialog_return.
1768
3a880af4
SM
1769 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
1770 Initialize dialog_return.
0f19feff
JD
1771 (windowShouldClose:): Use stop instead of stopModalWithCode.
1772 (clicked:): Ditto, and also set dialog_return (Bug#12258).
1773 (timeout_handler:): Use stop instead of abortModal. Send a dummy
1774 event.
1775 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
1776 modal loop returns.
1777
f10fe38f
PE
17782012-08-27 Paul Eggert <eggert@cs.ucla.edu>
1779
de1339b0
PE
1780 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
1781 * composite.c (find_composition, composition_gstring_p)
1782 (composition_reseat_it, find_automatic_composition):
1783 * data.c (let_shadows_buffer_binding_p)
1784 (let_shadows_global_binding_p, set_internal, make_blv)
1785 (Fmake_variable_buffer_local, Fmake_local_variable)
1786 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
1787 (cons_to_signed, arith_driver):
1788 * dbusbind.c (xd_in_read_queued_messages):
1789 * dired.c (directory_files_internal, file_name_completion):
1790 Use bool for booleans.
1791 * dired.c (file_name_completion):
1792 * process.h (fd_callback):
1793 Omit int (actually boolean) argument. It wasn't being used.
1794 All uses changed.
1795 * composite.h, lisp.h: Reflect above API changes.
1796
f10fe38f
PE
1797 * cmds.c, coding.c: Use bool for booleans.
1798 * cmds.c (move_point, Fself_insert_command):
1799 * coding.h (struct composition status, struct coding_system):
1800 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
1801 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
1802 (emacs_mule_char, decode_coding_emacs_mule)
1803 (encode_coding_emacs_mule, detect_coding_iso_2022)
1804 (decode_coding_iso_2022, encode_invocation_designation)
1805 (encode_designation_at_bol, encode_coding_iso_2022)
1806 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
1807 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
1808 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
1809 (encode_coding_raw_text, detect_coding_charset)
1810 (decode_coding_charset, encode_coding_charset, detect_eol)
1811 (detect_coding, get_translation_table, produce_chars)
1812 (consume_chars, reused_workbuf_in_use)
1813 (make_conversion_work_buffer, code_conversion_save)
1814 (decode_coding_object, encode_coding_object)
1815 (detect_coding_system, char_encodable_p)
1816 (Funencodable_char_position, code_convert_region)
1817 (code_convert_string, code_convert_string_norecord)
1818 (Fset_coding_system_priority):
1819 * fileio.c (Finsert_file_contents):
1820 Use bool for booleans.
1821 * coding.h, lisp.h: Reflect above API changes.
1822 * coding.c: Remove unnecessary static function decls.
1823 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
1824 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
1825 not a boolean 'int', since callers never look at the return value.
1826 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
1827 * coding.h (decoding_buffer_size, encoding_buffer_size)
1828 (emacs_mule_string_char): Remove unused extern decls.
1829 (struct iso_2022_spec, struct coding_system):
1830 Use 'unsigned int : 1' for boolean fields, since there's more than one.
1831 (struct emacs_mule_spec): Remove unused field 'full_support'.
1832 All initializations removed.
1833 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
1834
5474c384
DA
18352012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
1836
f10fe38f 1837 Fix spare memory change (Bug#12286).
5474c384
DA
1838 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
1839 (valid_lisp_object_p): Likewise.
1840
c4b6914d
MR
18412012-08-27 Martin Rudalics <rudalics@gmx.at>
1842
1843 * window.c (Fset_window_configuration): Record any window's old
1844 buffer if it's replaced (see Bug#8789). If the new current
1845 buffer doesn't appear in the selected window, go to its old
1846 point (Bug#12208).
1847
35aaa1ea
DA
18482012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
1849
1850 Special MEM_TYPE_SPARE to denote reserved memory.
1851 * alloc.c (enum mem_type): New memory type.
1852 (refill_memory_reserve): Use new type for spare memory.
1853 This prevents live_cons_p and live_string_p from incorrect
1854 detection of uninitialized objects from spare memory as live.
1855
6af64513
PE
18562012-08-26 Paul Eggert <eggert@cs.ucla.edu>
1857
8b2e00a3
PE
1858 Spelling fixes.
1859 * Makefile.in (.PHONY): versioclean -> versionclean.
1860
b52d6985
PE
1861 Remove unused external symbols.
1862 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
1863 * window.c (Qwindow_valid_p, decode_valid_window):
1864 Now static, not extern.
1865 * data.c (Qinterval): Remove; unused.
1866 (syms_of_data): Do not define 'interval'.
1867 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
1868 * window.h (decode_valid_window):
1869 Remove decls.
1870
d5172d4f
PE
1871 * character.c, charset.c, chartab.c: Use bool for booleans.
1872 * character.c (lisp_string_width, string_count_byte8)
1873 (string_escape_byte8):
1874 * charset.c (charset_map_loaded, load_charset_map, read_hex):
1875 (load_charset_map_from_file, map_charset_chars)
1876 (Fdefine_charset_internal, define_charset_internal)
1877 (Fdeclare_equiv_charset, find_charsets_in_text)
1878 (Ffind_charset_region, char_charset, Fiso_charset):
1879 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
1880 (sub_char_table_set, sub_char_table_set_range)
1881 (char_table_set_range, optimize_sub_char_table)
1882 (map_sub_char_table):
1883 Use bool for boolean.
1884 * character.c (str_to_unibyte): Omit last boolean argument; it was
1885 always 0. All callers changed.
1886 * character.h, charset.h: Adjust to match previous changes.
1887 * character.h (char_printable_p): Remove decl of nonexistent function.
1888 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
1889 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
1890 are all boolean, so make them single-bit bitfields.
1891
6af64513
PE
1892 * lisp.h (ASET): Remove attempt to detect side effects.
1893 It was meant to be temporary and it often doesn't work,
1894 because when IDX has side effects the behavior of IDX==IDX
1895 is undefined. See Stefan Monnier in
1896 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
1897
e1f29348
BR
18982012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1899
1900 * lisp.h (functionp): New function (extracted from Ffunctionp).
1901 (FUNCTIONP): Use it.
1902 * eval.c (Ffunctionp): Use it.
1903
17c05d74
PE
19042012-08-25 Paul Eggert <eggert@cs.ucla.edu>
1905
0f46bc75
PE
1906 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
1907 as that's faster and simpler than static storage. Don't bother
1908 with the g_main_context_query overhead if g_main_context_pending
1909 says no events are pending.
1910 (gfds, gfds_size): Remove these static vars.
1911 (xgselect_initialize): Remove; no longer needed.
1912 All uses and decls removed.
1913
ee4c0f69
PE
1914 * emacs.c (fatal_error_signal_hook): Remove.
1915 All uses removed. This leftover from old code was always 0.
1916
17c05d74
PE
1917 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
1918 * casefiddle.c (casify_object, casify_region):
1919 * casetab.c (set_case_table):
1920 * category.c, category.h (word_boundary_p):
1921 * category.h (CHAR_HAS_CATEGORY):
1922 Use bool for booleans, instead of int.
1923
391ceac5
EZ
19242012-08-25 Eli Zaretskii <eliz@gnu.org>
1925
1926 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
1927
2f221583
PE
19282012-08-25 Paul Eggert <eggert@cs.ucla.edu>
1929
f4a681b0
PE
1930 On assertion failure, print backtrace if available.
1931 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
1932 (die) [ENABLE_CHECKING]: Print a backtrace if available.
1933 * Makefile.in (LIB_EXECINFO): New macro.
1934 (LIBES): Use it.
1935
2f221583
PE
1936 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
1937 * bytecode.c (exec_byte_code):
1938 * callint.c (check_mark, Fcall_interactively):
1939 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
1940 (getenv_internal, sync_process_alive, call_process_exited):
1941 * lisp.h (USE_SAFE_ALLOCA):
1942 Use bool for booleans, instead of int.
1943 * lisp.h, process.h: Adjust prototypes to match above changes.
1944 * callint.c (Fcall_interactively): Don't assume the mark's
1945 offset fits in 'int'.
1946
37ef52bb
PE
19472012-08-24 Paul Eggert <eggert@cs.ucla.edu>
1948
1949 * buffer.c, buffer.h: Use bool for boolean.
1950 * buffer.c (reset_buffer_local_variables)
1951 (buffer_lisp_local_variables, Fset_buffer_modified_p)
1952 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
1953 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
1954 (overlay_touches_p, overlay_strings, Foverlay_put)
1955 (report_overlay_modification, call_overlay_mod_hooks):
1956 (mmap_enlarge, mmap_set_vars):
1957 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
1958 Use bool for booleans, instead of int.
1959 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
1960 since the 1-or-0 return value is always ignored anyway.
1961 (mmap_initialized_p):
1962 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
1963 * buffer.h, lisp.h: Adjust prototypes to match above changes.
1964
2cc21167
PE
19652012-08-23 Paul Eggert <eggert@cs.ucla.edu>
1966
1967 * bidi.c: Use bool for boolean.
1968 This is a bit more readable, and makes the text segment of bidi.o
1969 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
1970 Presumably it's faster too.
1971 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
1972 Now bool.
1973 (bidi_cache_find_level_change, bidi_cache_iterator_state)
1974 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
1975 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
1976 (bidi_explicit_dir_char, bidi_level_of_next_char)
1977 (bidi_find_other_level_edge, bidi_move_to_visually_next):
1978 Use bool for booleans, instead of int.
1979 * dispextern.h (bidi_init_it, bidi_paragraph_init)
1980 (bidi_unshelve_cache): Adjust decls to match code.
1981
7db4ddf4
MR
19822012-08-23 Martin Rudalics <rudalics@gmx.at>
1983
1984 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
1985 argument.
1986
b1bb8011
PE
19872012-08-23 Paul Eggert <eggert@cs.ucla.edu>
1988
1989 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
1990 * atimer.h: Include <stdbool.h>.
1991
ff687885
DN
19922012-08-22 Dan Nicolaescu <dann@gnu.org>
1993
1994 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
1995 compile time tests instead of run time tests on systems that do
1996 not use them.
1997 (FRAME_MAC_P): Remove leftover from deleted code.
1998 * frame.c (syms_of_frame): Remove leftover from deleted code.
1999
4ce7a138
JD
20002012-08-22 Jan Djärv <jan.h.d@swipnet.se>
2001
2002 * nsterm.m (insertText:): Don't clear modifiers if code is space.
2003
d733ec6d
PE
20042012-08-22 Paul Eggert <eggert@cs.ucla.edu>
2005
2006 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
2007 Otherwise, the compiler complains about (A?B:C) where B is void
fc0c31f8 2008 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
d733ec6d
PE
2009 (fontset_add): Return void, for FONTSET_ADD.
2010
d0d2d26f
PE
20112012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2012
fce31d69
PE
2013 * alloc.c: Use bool for booleans.
2014 (gc_in_progress, abort_on_gc)
2015 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
2016 (dont_register_blocks) [GC_MALLOC_CHECK]:
2017 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
2018 (check_string_bytes, make_specified_string, memory_full)
2019 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
2020 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
2021 (mark_stack, valid_pointer_p, make_pure_string)
2022 (Fgarbage_collect, survives_gc_p, gc_sweep):
2023 Use bool for booleans, instead of int.
2024 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
2025 Remove unused local.
2026 * alloc.c (PURE_POINTER_P):
2027 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
2028 * editfns.c (Fformat):
2029 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
2030 (Fdo_auto_save):
2031 * fns.c (sweep_weak_table):
2032 * lisp.h (suppress_checking, push_message, survives_gc_p)
2033 (make_pure_string, gc_in_progress, abort_on_gc):
2034 * lread.c (readchar, read1):
2035 * print.c (Fprin1_to_string):
2036 * xdisp.c (push_message):
2037 Use bool for booleans affected directly or indirectly by
2038 alloc.c's changes.
2039
d0d2d26f
PE
2040 Make recently-introduced setters macros.
2041 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
2042 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
2043 (set_fontset_default, set_fontset_fallback): Rename from their
2044 upper-case counterparts, and make them functions rather than macros.
2045 This is more consistent with the other recently-introduced setters.
2046 These don't need to be inline, since they're local.
2047
d18e2bb6
JD
20482012-08-21 Jan Djärv <jan.h.d@swipnet.se>
2049
2050 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
2051 the loop (Bug#12247).
2052
1b9d9d16
PE
20532012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2054
2055 * lisp.h (vcopy): Use memcpy rather than our own loop.
2056 This fixes a performance regression introduced by the recent
2057 addition of vcopy. This means 'vcopy' will need to be modified
2058 for a copying collector, but that's OK. Also, tighten the
2059 checking in the assertion.
2060
b2f09701
EZ
20612012-08-21 Eli Zaretskii <eliz@gnu.org>
2062
2063 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
2064 components for RTL text (Bug#11860). Adjust X-OFFSET of each
2065 non-base glyph for the width of the base character, according to
e1f29348
BR
2066 what x_draw_composite_glyph_string_foreground expects.
2067 Generate WADJUST value according to composition_gstring_width's
b2f09701
EZ
2068 expectations, to produce correct width of the composed character.
2069 Reverse the sign of the DU offset produced by ScriptPlace.
2070
9b994fed
PE
20712012-08-21 Paul Eggert <eggert@cs.ucla.edu>
2072
2073 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
2074
086ca913
DA
20752012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
2076
2077 Avoid direct writes to contents member of struct Lisp_Vector.
2078 * lisp.h (vcopy): New function to copy data into vector.
2079 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
2080 * fns.c (Ffillarray): Use ASET.
2081 * keyboard.c (timer_check_2): Use AREF and ASET.
2082 (append_tool_bar_item, Frecent_keys): Use vcopy.
2083 * lread.c (read_vector): Use ASET.
2084 * msdos.c (Frecent_doskeys): Use vcopy.
2085 * xface.c (Finternal_copy_lisp_face): Use vcopy.
2086 (Finternal_merge_in_global_face): Use ASET and vcopy.
2087 * xfont.c (xfont_list_pattern): Likewise.
2088
5481664a
MR
20892012-08-21 Martin Rudalics <rudalics@gmx.at>
2090
2091 * window.c (Fwindow_point): For the selected window always return
2092 the position of its buffer's point.
2093 (Fset_window_point): For the selected window always go in its
2094 buffer to the specified position.
2095
6d470bdd
DA
20962012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
2097
2098 Setter macros for fontsets.
2099 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
2100 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
2101 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
2102 Adjust users.
2103
24564fe1
GM
21042012-08-20 Glenn Morris <rgm@gnu.org>
2105
2106 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
2107 Don't assume that `ln -f' works.
2108
0a05a035
EZ
21092012-08-20 Eli Zaretskii <eliz@gnu.org>
2110
2111 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
2112 and later about non-assignments with no effect. See discussion at
2113 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
2114 details.
2115
e46f2325
DA
21162012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2117
2118 Inline setter functions for Lisp_Objects slots of struct specbinding.
2119 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
2120 Adjust users.
2121
734fbd86
MR
21222012-08-20 Martin Rudalics <rudalics@gmx.at>
2123
2124 * window.c (select_window): Always make selected window's buffer
2125 current.
2126
f1a95992
DA
21272012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2128
2129 Use AREF and ASET for docstrings of category tables.
2130 * category.h (CATEGORY_DOCSTRING): Use AREF.
2131 (SET_CATEGORY_DOCSTRING): Use ASET.
2132 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
2133
e83064be
DA
21342012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2135
2136 Inline setter functions for hash table members.
2137 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
2138 (set_hash_hash, set_hash_index): Rename with _slot suffix.
2139 (set_hash_key_and_value, set_hash_index, set_hash_next)
2140 (set_hash_hash): New functions.
2141 * charset.c, fns.c: Adjust users.
2142
4ce60d2e
DA
21432012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
2144
2145 Inline getter and setter functions for per-buffer values.
2146 * buffer.h (per_buffer_default, set_per_buffer_default)
2147 (per_buffer_value, set_per_buffer_value): New functions.
2148 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
2149 * buffer.c, data.c: Adjust users.
2150
c06c9690
JB
21512012-08-20 Juanma Barranquero <lekktu@gmail.com>
2152
2153 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
2154
32bd4250
PE
21552012-08-19 Paul Eggert <eggert@cs.ucla.edu>
2156
bad03192 2157 Rely on <config.h> + <unistd.h> to declare 'environ',
b69a6d22
PE
2158 as gnulib does this if the system doesn't.
2159 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
72279493
EZ
2160 Remove declaration. MS-Windows declares it on stdlib.h which is
2161 included by conf_post.h.
b69a6d22
PE
2162 * emacs.c (environ) [DOUG_LEA_MALLOC]:
2163 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
2164 * vm-limit.c: Include <unistd.h>, for 'environ'.
2165
22d7feb2
PE
2166 * unexaix.c, unexcoff.c: Include "mem-limits.h".
2167 (start_of_data): Remove decl; mem-limits.h provides it.
2168
32bd4250
PE
2169 * xdisp.c (handle_invisible_prop): Make it a bit faster
2170 and avoid a gcc -Wmaybe-uninitialized diagnostic.
2171
450809af
CY
21722012-08-19 Chong Yidong <cyd@gnu.org>
2173
2174 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
2175 ends (Bug#3874).
2176
9e677988
AS
21772012-08-19 Andreas Schwab <schwab@linux-m68k.org>
2178
6b1319ce
AS
2179 * .gdbinit: Use call instead of set when calling a function in the
2180 inferior.
2181
9e677988
AS
2182 * data.c (set_internal): Don't use set_blv_found.
2183 (Fkill_local_variable): Likewise.
2184
d7191076
AA
21852012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
2186
2187 * nsfont.m (ns_ascii_average_width): Ensure the string
2188 ascii_printable is initialized with a null-terminated character
2189 array. Otherwise, it can contain undesired extra characters.
2190
e757f1c6
PE
21912012-08-18 Paul Eggert <eggert@cs.ucla.edu>
2192
2193 port new setting code to Sun C 5.8 2005/10/13
2194 * chartab.c, lisp.h (char_table_set, char_table_set_range):
2195 Return void, not Lisp_Object. Otherwise, the compiler
2196 complains about (A?B:C) where B is void and C is Lisp_Object
2197 when compiling CHAR_TABLE_SET, due to the recent change to
2198 the API of sub_char_table_set_contents.
2199
a999ce26
CY
22002012-08-18 Chong Yidong <cyd@gnu.org>
2201
2202 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
2203 for the string case (Bug#3874).
2204
3f22b86f
PE
22052012-08-18 Paul Eggert <eggert@cs.ucla.edu>
2206
39eb03f1
PE
2207 * buffer.h (BSET): Remove (Bug#12215).
2208 Replace all uses with calls to new setter functions.
2209 (bset_bidi_paragraph_direction, bset_case_canon_table)
2210 (bset_case_eqv_table, bset_directory, bset_display_count)
2211 (bset_display_time, bset_downcase_table)
2212 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
2213 (bset_last_selected_window, bset_local_var_alist)
2214 (bset_mark_active, bset_point_before_scroll, bset_read_only)
2215 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
2216 (bset_width_table):
2217 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
2218 (bset_auto_fill_function, bset_auto_save_file_format)
2219 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
2220 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
2221 (bset_cache_long_line_scans, bset_case_fold_search)
2222 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
2223 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
2224 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
2225 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
2226 (bset_header_line_format, bset_indicate_buffer_boundaries)
2227 (bset_indicate_empty_lines, bset_invisibility_spec)
2228 (bset_left_fringe_width, bset_major_mode, bset_mark)
2229 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
2230 (bset_name, bset_overwrite_mode, bset_pt_marker)
2231 (bset_right_fringe_width, bset_save_length)
2232 (bset_scroll_bar_width, bset_scroll_down_aggressively)
2233 (bset_scroll_up_aggressively, bset_selective_display)
2234 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
2235 (bset_word_wrap, bset_zv_marker):
2236 * category.c (bset_category_table):
2237 * syntax.c (bset_syntax_table):
2238 New setter functions.
2239
6a09a33b
PE
2240 * process.h (PSET): Remove (Bug#12215).
2241 Replace all uses with calls to new setter functions.
2242 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2243 (PROCESS_INLINE): New macro.
2244 (pset_childp): New setter function.
2245 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
2246 * process.c (PROCESS_INLINE):
2247 Define to EXTERN_INLINE, so that the corresponding functions
2248 are compiled into code.
2249 (pset_buffer, pset_command, pset_decode_coding_system)
2250 (pset_decoding_buf, pset_encode_coding_system)
2251 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
2252 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
2253 (pset_type, pset_write_queue): New setter functions.
2254
e8c17b81
PE
2255 * window.h (WSET): Remove (Bug#12215).
2256 Replace all uses with calls to new setter functions.
2257 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2258 (WINDOW_INLINE): New macro.
2259 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
2260 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
2261 (wset_total_lines, wset_vertical_scroll_bar)
2262 (wset_window_end_pos, wset_window_end_valid)
2263 (wset_window_end_vpos): New setter functions.
2264 * window.c (WINDOW_INLINE):
2265 Define to EXTERN_INLINE, so that the corresponding functions
2266 are compiled into code.
2267 (wset_combination_limit, wset_dedicated, wset_display_table)
2268 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
2269 (wset_new_normal, wset_new_total, wset_next_buffers)
2270 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
2271 (wset_prev_buffers, wset_right_fringe_width)
2272 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
2273 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
2274 (wset_window_parameters):
2275 * xdisp.c (wset_base_line_number, wset_base_line_pos)
2276 (wset_column_number_displayed, wset_region_showing):
2277 New setter functions.
2278
3f22b86f
PE
2279 * termhooks.h (TSET): Remove (Bug#12215).
2280 Replace all uses with calls to new setter functions.
2281 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2282 (TERMHOOKS_INLINE): New macro.
2283 (tset_charset_list, tset_selection_alist): New setter functions.
2284 * terminal.c (TERMHOOKS_INLINE):
2285 Define to EXTERN_INLINE, so that the corresponding functions
2286 are compiled into code.
2287 (tset_param_alist): New setter function.
2288
742af32f
PE
22892012-08-17 Paul Eggert <eggert@cs.ucla.edu>
2290
15dbb4d6
PE
2291 * keyboard.h (KSET): Remove (Bug#12215).
2292 Replace all uses with calls to new setter functions.
2293 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2294 (KEYBOARD_INLINE): New macro.
2295 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
2296 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
2297 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
2298 New setter functions.
2299 * keyboard.c (KEYBOARD_INLINE):
2300 Define to EXTERN_INLINE, so that the corresponding functions
2301 are compiled into code.
2302 (kset_echo_string, kset_kbd_queue)
2303 (kset_keyboard_translate_table, kset_last_prefix_arg)
2304 (kset_last_repeatable_command, kset_local_function_key_map)
2305 (kset_overriding_terminal_local_map, kset_real_last_command)
2306 (kset_system_key_syms): New setter functions.
2307
f00af5b1
PE
2308 * frame.h (FSET): Remove (Bug#12215).
2309 Replace all uses with calls to new setter functions.
2310 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
2311 (FRAME_INLINE): New macro.
2312 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
2313 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
2314 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
2315 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
2316 (fset_param_alist, fset_root_window, fset_scroll_bars)
2317 (fset_selected_window, fset_title, fset_tool_bar_items)
2318 (fset_tool_bar_position, fset_tool_bar_window): New functions.
2319 * frame.c (FRAME_INLINE):
2320 Define to EXTERN_INLINE, so that the corresponding functions
2321 are compiled into code.
2322 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
2323
0c94c8d6
PE
2324 A few more naming-convention fixes for getters and setters.
2325 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
2326 and rename from buffer_overlays_set_before.
2327 (set_buffer_overlays_after): Move here from buffer.h, and rename
2328 from buffer_overlays_set_after.
2329 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
2330 All uses changed.
2331 (set_buffer_intervals): Rename from buffer_set_intervals.
2332 * intervals.c (set_interval_object): Move here from intervals.h,
2333 and rename from interval_set_object.
2334 (set_interval_left): Move here from intervals.h, and rename from
2335 interval_set_left.
2336 (set_interval_right): Move here from intervals.h, and rename from
2337 interval_set_right.
2338 (copy_interval_parent): Move here from intervals.h, and rename from
2339 interval_copy_parent.
2340 * intervals.h (set_interval_parent): Rename from interval_set_parent.
2341 (set_interval_plist): Rename from interval_set_plist.
2342 Return void, not Lisp_Object, since no caller uses the result.
2343 * lisp.h (string_intervals): Rename from string_get_intervals.
2344 (set_string_intervals): Rename from string_set_intervals.
2345
34dabdb7
PE
2346 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
2347 (set_char_table_contents): Rename from char_table_set_contents.
0b390a9d 2348 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
34dabdb7
PE
2349 All uses changed. See the end of
2350 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
2351
742af32f
PE
2352 * lisp.h (CSET): Remove (Bug#12215).
2353 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
2354 (set_char_table_purpose): New functions,
2355 replacing CSET. All uses changed. For example, replace
2356 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
c24eb18a 2357 "set_char_table_parent (char_table, parent);".
742af32f
PE
2358 The old version was confusing because it used the same name
2359 'parent' for two different things.
2360
a04e2c62
DA
23612012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
2362
2363 Functions to get and set Lisp_Object fields of buffer-local variables.
2364 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
2365 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
2366 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
2367 * data.c, eval.c, frame.c: Adjust users.
2368
383dcbf9
CY
23692012-08-17 Chong Yidong <cyd@gnu.org>
2370
2371 * xfaces.c (merge_face_vectors): If the target font specfies a
2372 font spec, make the font's attributes take precedence over
2373 directly-specified attributes.
2374 (merge_face_ref): Recognize :font.
2375
44386687
DA
23762012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
2377
2378 Do not use memcpy for copying intervals.
2379 * intervals.c (reproduce_interval): New function.
2380 (reproduce_tree, reproduce_tree_obj): Use it.
2381 (reproduce_tree_obj): Remove prototype.
2382
927c7216
PE
23832012-08-17 Paul Eggert <eggert@cs.ucla.edu>
2384
2385 * lisp.h (duration_to_sec_usec): Remove unused decl.
2386
93044f7b
AA
23872012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
2388
2389 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
2390 to an allocated instance of NSString, not to the class itself.
2391
9851e4a5
JB
23922012-08-17 Juanma Barranquero <lekktu@gmail.com>
2393
2394 * makefile.w32-in (C_CTYPE_H): New macro.
2395 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
2396 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
2397 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
2398
620f13b0
PE
23992012-08-16 Paul Eggert <eggert@cs.ucla.edu>
2400
2401 Use ASCII tests for character types.
2402 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
2403 * xfns.c, xterm.c:
2404 Don't include <ctype.h>; was not needed.
2405 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
2406 * sysdep.c, xfaces.c:
2407 Include <c-ctype.h> instead of <ctype.h>.
2408 * nsterm.m: Include <c-ctype.h>.
2409 * charset.c (read_hex):
2410 * doc.c (Fsnarf_documentation):
2411 * fileio.c (IS_DRIVE) [WINDOWSNT]:
2412 (DRIVE_LETTER) [DOS_NT]:
2413 (Ffile_name_directory, Fexpand_file_name)
2414 (Fsubstitute_in_file_name):
2415 * font.c (font_parse_xlfd, font_parse_fcname):
2416 * frame.c (x_set_font_backend):
2417 * gtkutil.c (xg_get_font):
2418 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
2419 * nsimage.m (hexchar):
2420 * nsterm.m (ns_xlfd_to_fontname):
2421 * sysdep.c (system_process_attributes):
2422 * xfaces.c (hash_string_case_insensitive):
2423 Use C-locale tests instead of locale-specific tests for character
2424 types, since we want the ASCII interpretation here, not the
2425 interpretation suitable for whatever happens to be the current locale.
2426
52162052
MR
24272012-08-16 Martin Rudalics <rudalics@gmx.at>
2428
2429 Consistently check windows for validity/liveness
2430 (Bug#11984, Bug#12025, Bug#12026).
2431 * lisp.h (CHECK_VALID_WINDOW): New macro.
2432 * window.c (decode_window): Rename to decode_live_window.
2433 (decode_valid_window, Fwindow_valid_p): New functions.
2434 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
2435 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
2436 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
2437 (Fwindow_prev_sibling, Fwindow_combination_limit)
2438 (Fset_window_combination_limit, Fwindow_use_time)
2439 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
2440 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
2441 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
2442 (Fwindow_hscroll, Fset_window_hscroll)
2443 (Fwindow_redisplay_end_trigger)
2444 (Fset_window_redisplay_end_trigger, Fwindow_edges)
2445 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
2446 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
2447 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
2448 (Fwindow_end, Fset_window_point, Fset_window_start)
2449 (Fpos_visible_in_window_p, Fwindow_line_height)
2450 (Fwindow_dedicated_p, Fset_window_dedicated_p)
2451 (Fwindow_prev_buffers, Fset_window_prev_buffers)
2452 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
2453 (Fset_window_parameter, Fwindow_display_table)
2454 (Fset_window_display_table, Fdelete_other_windows_internal)
2455 (Fset_window_buffer, Fset_window_new_total)
2456 (Fset_window_new_normal, Fdelete_window_internal)
2457 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
2458 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
2459 (Fwindow_scroll_bars): Check whether argument window is a valid or
2460 live window. Update doc-strings.
2461 (syms_of_window): New symbol Qwindow_valid_p.
2462 * keyboard.c (Fposn_at_x_y): Check whether argument
2463 frame_or_window denotes a valid window.
2464
2751c80f
DA
24652012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
2466
2467 Fix previous char table change.
2468 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
2469 * chartab.c (optimize_sub_char_table): Likewise.
2470
032a42c8
CY
24712012-08-16 Chong Yidong <cyd@gnu.org>
2472
a2d19368
CY
2473 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
2474
032a42c8
CY
2475 * xfont.c (xfont_open):
2476 * xftfont.c (xftfont_open): Set the font's max_width field.
2477
2478 * nsfont.m (nsfont_open): Similar to the Xft backend, set
2479 min_width to space_width and average_width to the average over
2480 printable ASCII characters.
2481 (ns_char_width): Code cleanup.
2482 (ns_ascii_average_width): New utility function.
2483
2484 * font.h (struct font): Update comments.
2485
a098c930
DA
24862012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
2487
032a42c8 2488 Simple interface to set Lisp_Object fields of character tables.
a098c930
DA
2489 * lisp.h (CSET): New macro.
2490 (char_table_set_extras, char_table_set_contents)
2491 (sub_char_table_set_contents): New function.
2492 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
2493 * syntax.c: Adjust users.
2494
8be3a09c
SM
24952012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
2496
2497 * eval.c (eval_sub): Bind lexical-binding.
2498 * lread.c (Qlexical_binding): Make non-static.
2499
ac4845a6
JD
25002012-08-15 Jan Djärv <jan.h.d@swipnet.se>
2501
ddee6515
JD
2502 * nsmenu.m (popupSession): Remove.
2503 (pop_down_menu): Remove endModalSession.
2504 (timeout_handler:): New method.
2505 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
2506 Call runModalForWindow. Check timer_fired when it returns.
2507 If not set, cancel timer and break out of loop.
2508 Otherwise loop again, with a new timeout.
2509
2510 * nsterm.m: Include fcntl.h if present.
2511 (fd_entry, t_readfds, inNsSelect): Remove.
2512 (select_writefds, select_valid, select_timeout, selfds)
2513 (select_mutex, apploopnr): Add.
2514 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
2515 Otherwise call kbd_buffer_store_event.
2516 (ns_send_appdefined): Remove release of fd_entry.
2517 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
2518 Increment and decrement apploopnr.
2519 (ns_select): If no file descriptors, just do a NSTimer.
2520 Otherwise copy read/write masks and start select thread (fd_handler).
2521 Start main loop and wait for application defined event.
2522 Inform select thread to stop selecting after main loop is exited.
2523 (ns_term_init): Create selfds pipe and set non-blocking.
fc0c31f8 2524 Initialize select_mutex. Start the select thread (fd_handler).
ddee6515
JD
2525 (fd_handler:): Loop forever, wait for info from the main thread
2526 to either start or stop selecting. When select returns, send
2527 and appdefined event.
2528 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
2529 If not call kbd_buffer_store_event.
2530
2531 * nsterm.h (EmacsApp): fd_handler takes id argument.
2532 (EmacsDialogPanel): Add timer_fired and timeout_handler.
2533
ac4845a6
JD
2534 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
2535
eb424fe3
EZ
25362012-08-15 Eli Zaretskii <eliz@gnu.org>
2537
2538 * region-cache.c (move_cache_gap): Update gap_len using the actual
2539 growth of the boundaries array. Do not change cache_len.
2540 (Bug#12196)
2541
4e6a86c6
DA
25422012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
2543
2544 Generalize and cleanup font subsystem checks.
2545 * font.h (FONT_DEBUG, font_assert): Remove.
8be3a09c
SM
2546 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
2547 Change font_assert to eassert. Use eassert where appropriate.
4e6a86c6 2548
5bf192ca
DA
25492012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
2550
2551 * gtkutil.c (xg_get_font): Use pango_units_to_double.
2552
f2045622
CY
25532012-08-15 Chong Yidong <cyd@gnu.org>
2554
8be3a09c
SM
2555 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
2556 When using the new font chooser, use gtk_font_chooser_get_font_desc to
2557 extract the font descriptor instead of just the font name.
2558 In that case, return a font spec instead of a string.
f2045622
CY
2559 (x_last_font_name): Move to this file from xfns.c.
2560
2561 * xfns.c (Fx_select_font): The return value can also be a font
2562 spec. Move x_last_font_name management to gtkutil.c.
2563
2564 * xfaces.c: Make font weight and style symbols non-static.
2565
7f6feb56
SM
25662012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
2567
2568 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
2569 (bug#12117).
2570
fecbd8ff
SM
25712012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
2572
2573 * alloc.c (Fgarbage_collect): Use plural form consistently.
2574
9b8d5165
EZ
25752012-08-14 Eli Zaretskii <eliz@gnu.org>
2576
2577 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
2578 iteration through the command loop. Fixes a problem whereby mouse
2579 movements are ignored until the first mouse click.
2580
f5d9e83a
PE
25812012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2582
2583 Use bool, not int, for Lisp booleans.
2584 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
2585 makes Emacs a bit smaller and presumably a bit faster.
2586 * lisp.h: Include <stdbool.h>.
2587 (struct Lisp_Boolfwd, defvar_bool):
2588 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
2589 * regex.c [!emacs]: Include <stdbool.h>.
2590 (false, true): Remove; <stdbool.h> does this for us now.
2591
55802e4a
CY
25922012-08-14 Chong Yidong <cyd@gnu.org>
2593
4abcdac8
CY
2594 * character.c (Fcharacterp): Doc fix (Bug#12076).
2595
2596 * data.c (Findirect_variable): Doc fix (Bug#11040).
2597
55802e4a
CY
2598 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
2599
2600 * editfns.c (Fformat): Doc fix (Bug#12059).
4abcdac8 2601 (Fsave_current_buffer): Doc fix (Bug#11542).
55802e4a 2602
8e99d072
BR
26032012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
2604
2605 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
2606 (bug#12022).
2607
08908aca
MR
26082012-08-14 Martin Rudalics <rudalics@gmx.at>
2609
2610 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
2611 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
2612 * minibuf.c (choose_minibuf_frame, read_minibuf):
2613 * w32fns.c (x_create_tip_frame):
2614 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
2615 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
2616
56120d6f
PE
26172012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2618
2619 * intervals.c (offset_intervals): Remove obsolete comment.
2620
67b77c0b
AS
26212012-08-14 Andreas Schwab <schwab@linux-m68k.org>
2622
2623 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
2624
f48b82fd
GR
26252012-08-14 Gergely Risko <gergely@risko.hu>
2626
2627 * coding.c (decode_coding): Record buffer modification before
2628 disabling undo_list (Bug#11773).
2629
fd318b54
DA
26302012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
2631
2632 Revert and cleanup some recent overlay changes.
2633 * buffer.h (enum overlay_type): Remove.
2634 (buffer_get_overlays, buffer_set_overlays): Likewise.
2635 (buffer_set_overlays_before, buffer_set_overlays_after):
2636 New function. Adjust users.
2637 (unchain_both): Add eassert.
2638
41a62dd9
DA
26392012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
2640
2641 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
2642
5884c324
PE
26432012-08-14 Paul Eggert <eggert@cs.ucla.edu>
2644
2645 * gtkutil.c (xg_mark_data): Don't assume C99.
2646
ca06f160
JD
26472012-08-13 Jan Djärv <jan.h.d@swipnet.se>
2648
2649 * gtkutil.c (xg_frame_tb_info): New struct.
2650 (TB_INFO_KEY): New define.
2651 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
2652 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
2653 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
2654 if not present.
2655 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
fc0c31f8 2656 is up to date. Otherwise store new data.
ca06f160
JD
2657 (free_frame_tool_bar): Free xg_frame_tb_info if present.
2658
7864a3f7
DA
26592012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
2660
2661 Use KSET for write access to Lisp_Object members of struct kboard.
2662 * keyboard.h (KSET): New macro.
2663 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
2664 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
2665 * xterm.c: Adjust users.
2666
4c31be61
DA
26672012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
2668
2669 Use BSET for write access to Lisp_Object members of struct buffer.
2670 * buffer.h (BSET): New macro.
2671 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
2672 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
2673 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
2674 * window.c, xdisp.c, xfns.c: Adjust users.
2675
14ae4239
BT
26762012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
2677
2678 * lread.c (syms_of_lread): Initialize Vlexical_binding.
2679
32bcadb4
JD
26802012-08-11 Jan Djärv <jan.h.d@swipnet.se>
2681
3d29b2ce 2682 * nsterm.m (not_in_argv): New function.
fc0c31f8 2683 (application:openFile, application:openTempFile:):
3d29b2ce
JD
2684 (application:openFileWithoutUI:, application:openFiles:): Open file
2685 if not_in_argv returns non-zero (bug#12171).
2686
32bcadb4 2687 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
14ae4239
BT
2688 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
2689 Define for Gtk+ versions less than 3.2.
32bcadb4
JD
2690 (xg_get_font_name): Use those functions/macros here.
2691 Reported by Frans Oilinki <moilinki@gmail.com>.
2692
9ff9402d 26932012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8ccd072a
YM
2694
2695 * unexmacosx.c (copy_data_segment): Copy initialized data in
2696 statically linked libraries from input file rather than memory.
2697
db74a5fc
YM
2698 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
2699 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
2700 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
2701
25e65510
GM
27022012-08-10 Glenn Morris <rgm@gnu.org>
2703
2704 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
2705 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
2706
7961135c
DA
27072012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2708
2709 Fix last change to allow compilation with low optimization levels.
2710 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
2711 Reported by Jan Djärv <jan.h.d@swipnet.se>.
2712
42b3a444
DA
27132012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2714
2715 Use common inline syntax in intervals.h.
2716 * intervals.h (INTERVALS_INLINE): New macro.
2717 Change all users from LISP_INLINE.
2718
9fb0c957
DA
27192012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2720
2721 Define Qnone once for all platforms.
2722 * frame.c (Qnone): Define here.
2723 (syms_of_frame): DEFSYM it.
2724 * lisp.h (Qnone): New declaration.
2725 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
2726 * xfns.c: Remove duplication. Adjust users.
2727
65e8ee52
DA
27282012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
2729
2730 Remove unused macros from intervals.h.
2731 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
2732 * intervals.c: Adjust comment.
2733
9b855fd6
EZ
27342012-08-10 Eli Zaretskii <eliz@gnu.org>
2735
2736 * w32fns.c <w32_unicode_gui>: New static variable.
2737 (globals_of_w32fns): Initialize it according to os_subtype.
2738 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
2739 testing os_subtype.
2740
39cb9e56 27412012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
d30be705
EZ
2742 Eli Zaretskii <eliz@gnu.org>
2743
2744 Fix bug #10299 with Unicode characters sent by customized
2745 keyboards created by MSKLC.
2746 * w32fns.c (INIT_WINDOW_CLASS): New macro.
2747 (w32_init_class): Use it to initialize the Emacs class with either
2748 ANSI or Unicode API calls.
2749 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
2750 later.
2751 (w32_wnd_proc): If the character code sent by WM_CHAR or
2752 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
2753 original message. Call DefWindowProcW on NT and later.
2754
9374581a
GM
27552012-08-10 Glenn Morris <rgm@gnu.org>
2756
4b94e8cf
GM
2757 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
2758
9374581a
GM
2759 * lisp.h (DIRECTORY_SEP): Let configure set it.
2760
a2752828
DA
27612012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
2762
2763 Use TSET for write access to Lisp_Object slots of struct terminal.
2764 * termhooks.h (TSET): New macro.
2765 * coding.c, terminal.c, xselect.c: Adjust users.
2766
cc92c454
SM
27672012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
2768
2769 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
2770 the failing expression, include them in the error message.
2771 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
2772 * lisp.h (internal_condition_case_n): Update declaration.
2773
4cb3e6b3
DA
27742012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2775
2776 Inline functions to examine and change buffer overlays.
2777 * buffer.c (unchain_both): New function.
2778 * buffer.h (buffer_get_overlays, buffer_set_overlays):
2779 (buffer_has_overlays): New function.
2780 (enum overlay_type): New enum.
2781 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
2782 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
2783
8707c1e5
DA
27842012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2785
2786 Inline functions to examine and change buffer intervals.
2787 * alloc.c (mark_interval_tree): Remove.
2788 (MARK_INTERVAL_TREE): Simplify.
2789 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
2790 * intervals.c (buffer_balance_intervals): New function.
2791 (graft_intervals_into_buffer): Adjust indentation.
2792 (set_intervals_multibyte): Simplify.
2793 * buffer.h (BUF_INTERVALS): Remove.
2794 (buffer_get_intervals, buffer_set_intervals): New function.
2795 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
2796 * intervals.c, textprop.c: Adjust users.
2797
ad8c997f
DA
27982012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2799
2800 Inline functions to examine and change string intervals.
2801 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
2802 (string_get_intervals, string_set_intervals): New function.
2803 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
2804 * lread.c, print.c, textprop.c: Adjust users.
2805
32ac3a6b
GM
28062012-08-08 Glenn Morris <rgm@gnu.org>
2807
2808 * lisp.mk (lisp): Remove language/persian.elc.
2809
77c7bcb1
DA
28102012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2811
2812 Cleanup intervals.
2813 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
2814 (NULL_INTERVAL_P): Likewise. Adjust users.
14ae4239
BT
2815 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
2816 Adjust comment. Move under #if 0.
77c7bcb1
DA
2817 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
2818 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
2819
9c08a8d4
DA
28202012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
2821
2822 Check total length of intervals with eassert.
2823 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
2824 * intervals.c: Change all users to eassert.
2825
26d16b35
EZ
28262012-08-07 Eli Zaretskii <eliz@gnu.org>
2827
14ae4239
BT
2828 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
2829 Rename fields to match removal of FGET and WGET and disuse of
26d16b35
EZ
2830 INTERNAL_FIELD in Lisp_Cons.
2831
c644523b
DA
28322012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2833
2834 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
2835 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
2836 name since all xname users are fixed long time ago. Do not
2837 use INTERNAL_FIELD.
2838 (set_symbol_name, set_symbol_function, set_symbol_plist):
2839 (set_symbol_next, set_overlay_plist): New function.
2840 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
2841 (struct Lisp_Overlay): Likewise.
2842 (CVAR, MVAR, SVAR): Remove.
2843 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
2844 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
2845 * xterm.c: Adjust users.
2846 * .gdbinit: Change to use name field of struct Lisp_Symbol
2847 where appropriate.
2848
6a3d20cc
DA
28492012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2850
2851 Basic functions to set Lisp_Object and pointer slots of intervals.
2852 * intervals.h (interval_set_parent, interval_set_object):
2853 (interval_set_left, interval_set_right, interval_set_plist):
2854 (interval_copy_parent): New function.
2855 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
14ae4239
BT
2856 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
2857 Adjust indentation.
6a3d20cc
DA
2858 (INTERVAL_SIZE): Remove. Adjust users.
2859 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
2860
4d2b044c
DA
28612012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2862
2863 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
2864 * process.h (PGET): Remove.
2865 (struct Lisp_Process): Do not use INTERNAL_FIELD.
2866 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
2867
d3d50620
DA
28682012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2869
2870 Drop WGET and revert read access to Lisp_Objects slots of struct window.
2871 * window.h (WGET): Remove.
2872 (struct window): Do not use INTERNAL_FIELD.
2873 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2874 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2875 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
2876 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
2877 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
2878 Adjust users.
2879
d10a51dc
CY
28802012-08-07 Chong Yidong <cyd@gnu.org>
2881
2882 * window.c (Fwindow_edges, Fwindow_pixel_edges)
2883 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
2884 (Fdelete_window_internal): Signal an error if the window is not on
2885 a live frame (Bug#12025).
2886
e69b0960
DA
28872012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
2888
2889 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
2890 * frame.h (FGET): Remove.
2891 (struct frame): Do not use INTERNAL_FIELD.
2892 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
2893 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
2894 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
2895 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
2896
25a20a3a
JB
28972012-08-06 Juanma Barranquero <lekktu@gmail.com>
2898
2899 * w32.c: Silence compiler warnings.
2900 (map_w32_filename): Remove unused variable `is_fat'.
2901 (chase_symlinks): Add parentheses around expression.
2902
1c6f11f4
GM
29032012-08-06 Glenn Morris <rgm@gnu.org>
2904
1db4583a
GM
2905 * sysdep.c: Respect BROKEN_GETWD.
2906
1c6f11f4
GM
2907 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
2908 Let configure handle it.
2909 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
2910
2b90362b
DA
29112012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2912
2913 Use GCALIGNMENT where appropriate.
2914 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
2915 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
2916 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
2917
5f50daf2
EZ
29182012-08-06 Eli Zaretskii <eliz@gnu.org>
2919
14ae4239
BT
2920 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
2921 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5f50daf2 2922
cbcc7007
SM
29232012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
2924
2925 * buffer.h (struct buffer): Revert `indirections' to a simple int;
2926 that should be sufficient for everyone.
2927
4d365fa4
JD
29282012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2929
2930 * keyboard.c (timer_check_2): Add break so timer_check returns next
2931 timeout.
2932
dd86bd82
DA
29332012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2934
2935 Fix Windows build errors introduced after converting to WGET and WSET.
2936 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
2937 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2938
054e1668
JD
29392012-08-06 Jan Djärv <jan.h.d@swipnet.se>
2940
2941 * nsterm.m (ns_frame_rehighlight): Use FSET.
2942
2943 * nsmenu.m (ns_update_menubar): Use FSET.
2944
21238f11
DA
29452012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2946
2947 Separate read and write access to Lisp_Object slots of Lisp_Process.
2948 * process.h (PGET, PSET): New macros similar to AREF and ASET.
2949 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
2950
077288cf
DA
29512012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2952
2953 Separate read and write access to Lisp_Object slots of struct window.
2954 * window.h (WGET, WSET): New macros similar to AREF and ASET.
2955 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
2956 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
2957 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
2958 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
2959 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
2960 Adjust users.
2961
71688bd7
DA
29622012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2963
2964 Fix Windows build errors introduced after converting to FGET and FSET.
2965 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
2966 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
2967 (w32_judge_scroll_bars): Change to use FSET.
2968 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
2969
f99bac93
DA
29702012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2971
2972 Fix replacement typo.
2973 * window.c (replace_window): Set root_window instead of
2974 selected_window. This fixes a total window subsystem
2975 malfunction reported by Bastien Guerry <bzg@gnu.org>.
2976
8c2a0f2d
GM
29772012-08-06 Glenn Morris <rgm@gnu.org>
2978
2979 * lisp.mk (lisp): Add language/persian.elc.
2980
edd74c35
DA
29812012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
2982
2983 Separate read and write access to Lisp_Object slots of struct frame.
2984 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
2985 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
2986 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
2987 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
2988 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
2989
8671676c
AS
29902012-08-05 Andreas Schwab <schwab@linux-m68k.org>
2991
2992 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
2993
663e2b3f
DA
29942012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
2995
2996 Generalize common compile-time constants.
2997 * lisp.h (header_size, bool_header_size, word_size): Now here.
2998 (struct Lisp_Vector): Add comment.
2999 (struct Lisp_Bool_Vector): Move up to define handy constants.
3000 (VECSIZE, PSEUDOVECSIZE): Simplify.
3001 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
3002 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
3003 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
3004 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
3005 * xfont.c, xmenu.c: Use word_size where appropriate.
3006
d32e47af
LM
30072012-08-05 Lawrence Mitchell <wence@gmx.li>
3008
3009 * search.c (Freplace_match): Treat \? in the replacement text
3010 literally (Bug#8161).
3011
e5d9c0d1
CY
30122012-08-05 Chong Yidong <cyd@gnu.org>
3013
3014 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
3015 * frame.c (Vdelete_frame_functions):
3016 * emacs.c (Vkill_emacs_hook): Doc fix.
3017
8da0576b
EZ
30182012-08-04 Eli Zaretskii <eliz@gnu.org>
3019
3020 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
3021 --with-x-toolkit=no builds.
3022 Reported by Carsten Mattner <carstenmattner@gmail.com>.
3023
02676e5d
CY
30242012-08-04 Chong Yidong <cyd@gnu.org>
3025
3026 * syntax.c (Fmodify_syntax_entry): Doc fix.
3027
97147da9
EZ
30282012-08-04 Eli Zaretskii <eliz@gnu.org>
3029
76151e2c
EZ
3030 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
3031 * w32.c (init_environment): Change the default values of many
3032 environment variables in dflt_envvars[] to NULL, to avoid pushing
14ae4239
BT
3033 them into environment when they were not already defined.
3034 Remove the code that deletes site-lisp subdirectories from the default
76151e2c 3035 value of EMACSLOADPATH, as it is no longer needed.
14ae4239
BT
3036 (check_windows_init_file): Now external, not static.
3037 Use Vload_path as is, without adding anything, as this function is now
76151e2c
EZ
3038 called when Vload_path is already set up.
3039
3040 * w32.h (check_windows_init_file): Add prototype.
3041
3042 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
3043 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
3044 compatibility with Posix platforms.
3045 (main): Move the call to check_windows_init_file to here from
3046 w32.c.
3047 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
3048 any, in the DEFALT argument into the root of the Emacs build or
3049 installation tree, as appropriate.
3050
3051 * callproc.c (init_callproc_1): Call decode_env_path instead of
3052 doing its equivalent by hand.
3053 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
3054 the code that sets Vexec_path run on MS-Windows.
3055
3056 * lread.c (init_lread): Add comments to #ifdef's.
3057
97147da9
EZ
3058 * msdos.c (dos_set_window_size, IT_update_begin)
3059 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
3060 instead of direct references.
3061
185ee146
PE
30622012-08-04 Paul Eggert <eggert@cs.ucla.edu>
3063
3064 Export DEFAULT_REHASH_* to GDB.
3065 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
3066 Now constants, not macros.
3067
8834c57a
PE
30682012-08-03 Paul Eggert <eggert@cs.ucla.edu>
3069
98c6f1e3
PE
3070 Remove unnecessary casts involving pointers.
3071 These casts are no longer needed now that we assume C89 or later,
3072 since they involve casting to or from void *.
3073 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
3074 (make_pure_float, make_pure_vector):
3075 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
3076 * macros.c (Fstart_kbd_macro):
3077 * menu.c (find_and_return_menu_selection):
3078 * minibuf.c (read_minibuf_noninteractive):
3079 * sysdep.c (closedir):
3080 * xdisp.c (x_produce_glyphs):
3081 * xfaces.c (compare_fonts_by_sort_order):
3082 * xfns.c (x_real_positions, select_visual):
3083 * xselect.c (x_stop_queuing_selection_requests)
3084 (x_get_window_property, x_get_window_property_as_lisp_data):
3085 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
3086 Remove unnecessary pointer casts.
3087 * alloc.c (record_xmalloc): New function.
3088 * lisp.h (record_xmalloc): New decl.
3089 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
3090 more like a function. This is because the pointer cast is not
3091 needed. All uses changed.
3092 * print.c (print_string, print_error_message): Avoid length recalc.
3093
8834c57a
PE
3094 Improve fix for macroexp crash with debugging (Bug#12118).
3095 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
3096 ARRAY_MARK_FLAG when checking subscripts, because ASET is
3097 not supposed to be invoked from the garbage collector.
3098 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
3099 (gc_aset): New function, which is like ASET but can be
3100 used in the garbage collector.
3101 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
3102 (set_hash_index): Use it instead of ASET.
3103
6dad7178
EZ
31042012-08-03 Eli Zaretskii <eliz@gnu.org>
3105
3106 Support symlinks on latest versions of MS-Windows.
3107 * w32.c: Include winioctl.h and aclapi.h.
3108 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
3109 (revert_to_self): Forward declarations of static functions.
3110 <static BOOL g_b_init_get_security_info>:
3111 <g_b_init_create_symbolic_link>: New static flags.
3112 (globals_of_w32): Initialize them to zero.
3113 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
3114 (map_w32_filename): Improve commentary. Simplify switch.
3115 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
3116 headers (most versions of MinGW w32api don't).
3117 (get_security_info, create_symbolic_link)
3118 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
3119 New functions.
3120 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
3121 in the argument file name.
3122 (sys_access): Call unc_volume_file_attributes only if
3123 GetFileAttributes fails with network-related error codes.
3124 (sys_rename): Diagnose renaming of a symlink when the user doesn't
3125 have the required privileges.
14ae4239 3126 (get_file_security_desc_by_name): Rename from
6dad7178
EZ
3127 get_file_security_desc.
3128 (stat_worker): New function, with most of the guts of 'stat', and
14ae4239
BT
3129 with addition of handling of symlinks and support for 'lstat'.
3130 If possible, get file's attributes and security information by
6dad7178
EZ
3131 handle, not by name. Produce S_IFLNK bit for symlinks, when
3132 called from 'lstat'.
3133 (stat, lstat): New functions, call 'stat_worker'.
3134 (symlink, readlink, careadlinkat): Rewritten to create and resolve
3135 symlinks when the underlying filesystem supports them.
3136
f162bcc3
PE
31372012-08-02 Paul Eggert <eggert@cs.ucla.edu>
3138
79ea6c20
PE
3139 Fix macroexp crash on Windows with debugging (Bug#12118).
3140 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
3141 checking subscripts; problem introduced with the recent
3142 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
3143 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
3144 since it's used in non-static inline functions now.
3145
c0ce93fd
PE
3146 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
3147 Don't assume buffer size fits in 'int'. Remove unused local.
c71f5156 3148
f162bcc3
PE
3149 Use C99-style 'extern inline' if available.
3150 * buffer.h (BUFFER_INLINE):
3151 * category.h (CATEGORY_INLINE):
3152 * character.h (CHARACTER_INLINE):
3153 * charset.h (CHARSET_INLINE):
3154 * composite.h (COMPOSITE_INLINE):
3155 * dispextern.h (DISPEXTERN_INLINE):
3156 * lisp.h (LISP_INLINE):
3157 * systime.h (SYSTIME_INLINE):
3158 New macro, replacing 'static inline' in this header.
3159 * buffer.h, category.h, character.h, charset.h, composite.h:
3160 * dispextern.h, lisp.h, systime.h:
3161 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
3162 * alloc.c (LISP_INLINE):
3163 * buffer.c (BUFFER_INLINE):
3164 * category.c (CATEGORY_INLINE):
3165 * character.c (CHARACTER_INLINE):
3166 * charset.c (CHARSET_INLINE):
3167 * composite.c (COMPOSITE_INLINE):
3168 * dispnew.c (DISPEXTERN_INLINE):
3169 * sysdep.c (SYSTIME_INLINE):
3170 Define to EXTERN_INLINE, so that the corresponding functions
3171 are compiled into code.
3172 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
3173 (INLINE_HEADER_END): New macros.
3174 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
3175 since it's used in non-static inline functions now.
a8333d03 3176 (VALMASK) [!USE_LSB_TAG]: Likewise.
f162bcc3 3177
837b365b
GM
31782012-08-02 Glenn Morris <rgm@gnu.org>
3179
d66b744d
GM
3180 * s/: Remove empty directory.
3181
837b365b
GM
3182 * s/ms-w32.h: Move to ../nt/inc.
3183 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
3184 Update for new ms-w32.h location.
3185
13294f95
PE
31862012-08-02 Paul Eggert <eggert@cs.ucla.edu>
3187
3188 Port to Solaris 8.
3189 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
3190
90df0db3
GM
31912012-08-02 Glenn Morris <rgm@gnu.org>
3192
3193 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
3194 hard-coding the path separator.
3195
4939150c
PE
31962012-08-01 Paul Eggert <eggert@cs.ucla.edu>
3197
3198 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
3199 This how ASET and AREF are supposed to work, and makes
3200 it easier to think about future improvements. See
3201 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
3202 * charset.h (set_charset_attr): New function.
3203 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
3204 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
3205 (aref_addr): New function. All uses of &AREF(...) changed.
3206 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
3207 (set_hash_index): New functions. All lvalue-style uses of
3208 HASH_KEY etc. changed.
3209 * keyboard.c (set_prop): New function. All lvalue-style uses
3210 of PROP changed.
3211
947b2afd
AA
32122012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
3213
3214 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
3215 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
3216 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
3217 * nsfns.m (ns_set_name_as_filename): Likewise.
3218 * nsmenu.m (ns_update_menubar): Likewise.
3219 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
3220
4f5d0325
EZ
32212012-08-01 Eli Zaretskii <eliz@gnu.org>
3222
2008beae
EZ
3223 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
3224 Adapt to latest changes in field names of the corresponding Lisp
288479f6 3225 objects.
2008beae 3226
4f5d0325
EZ
3227 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
3228
fe3cc771
GM
32292012-08-01 Glenn Morris <rgm@gnu.org>
3230
3231 * s/msdos.h: Remove file.
3232 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
3233 * Makefile.in (S_FILE): Remove.
3234 (config_h): Remove S_FILE.
3235
c90acc54
JB
32362012-08-01 Juanma Barranquero <lekktu@gmail.com>
3237
3238 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
3239 Remove; moved to nt/config.nt.
3240
d8a05828
DA
32412012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3242
3243 Use INTERNAL_FIELD for conses and overlays.
3244 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
3245 Remove obsolete comment.
3246 (MVAR): New macro.
3247 (struct Lisp_Overlay): Use INTERNAL_FIELD.
3248 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
3249
8271d590
DA
32502012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3251
3252 Use INTERNAL_FIELD for symbols.
3253 * lisp.h (SVAR): New macro. Adjust users.
3254 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
3255 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
3256
3193acd2
DA
32572012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3258
3259 Use INTERNAL_FIELD for processes.
3260 * process.h (PVAR): New macro. Adjust style.
3261 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
3262 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
3263
3a45383a
DA
32642012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
3265
3266 Use INTERNAL_FIELD for windows.
3267 * window.h (WVAR): New macro.
3268 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
3269 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
3270 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
3271 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
3272 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
3273 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
3274
c1dbc63c
PE
32752012-08-01 Paul Eggert <eggert@cs.ucla.edu>
3276
3277 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
3278
5c0c0e8a
GM
32792012-08-01 Glenn Morris <rgm@gnu.org>
3280
3281 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
3282 Move to configure.ac.
3283
552a99b4
JB
32842012-08-01 Juanma Barranquero <lekktu@gmail.com>
3285
3286 * makefile.w32-in (CONFIG_H): Update dependencies.
3287 (CONF_POST_H): New macro.
3288
3289 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
3290
8d8e2dfe
GM
32912012-07-31 Glenn Morris <rgm@gnu.org>
3292
bc96620a
GM
3293 * Makefile.in (S_FILE): No longer set by configure.
3294
476b1b2d
GM
3295 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
3296 is available.
3297 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
3298
b2c7a106
GM
3299 * process.h (NULL_DEVICE):
3300 * emacs.c (SEPCHAR):
3301 * editfns.c (USER_FULL_NAME): Let configure set them.
3302
d53d062a
GM
3303 * s/README, s/template.h: Remove files.
3304
4515017f
GM
3305 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
3306
8d8e2dfe
GM
3307 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
3308 Move to configure.ac.
3309
5b20b3cc
EZ
33102012-07-31 Eli Zaretskii <eliz@gnu.org>
3311
1e0afd9a
EZ
3312 * .gdbinit (xframe): Adapt to introduction of FVAR and the
3313 resulting renaming of 'struct frame' members.
3314
5b20b3cc
EZ
3315 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
3316
3317 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
3318 after introduction of FVAR.
3319
f1310128
JD
33202012-07-31 Jan Djärv <jan.h.d@swipnet.se>
3321
79e721e0
JD
3322 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
3323
3324 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
3325 instead of compositeToPoint.
3326 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
3327
8d7c7eed 3328 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
f1310128 3329
e34f7f79
DA
33302012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3331
3332 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
3333 * lisp.h (INTERNAL_FIELD): New macro.
14ae4239 3334 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
e34f7f79
DA
3335 (BVAR): Change to use INTERNAL_FIELD.
3336 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
3337 (KVAR): Change to use INTERNAL_FIELD.
3338 * frame.h (FVAR): New macro.
3339 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
3a45383a
DA
3340 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
3341 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
3342 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
e34f7f79
DA
3343 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
3344
c09bfb2f
DA
33452012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
3346
3347 Miscellaneous fixes for non-default X toolkits.
3348 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
3349 * xterm.c (x_frame_of_widget): Remove redundant prototype.
3350 Move under #ifdef USE_LUCID.
3351 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
3352 definition and usage to avoid warnings.
3353
14c114ae
JD
33542012-07-31 Jan Djärv <jan.h.d@swipnet.se>
3355
3356 * nsterm.m (openFiles): Fix previous checkin.
3357
3bd21e82
PE
33582012-07-31 Paul Eggert <eggert@cs.ucla.edu>
3359
3360 * indent.c (compute_motion): Remove unused local.
3361
c1529ded
GM
33622012-07-31 Glenn Morris <rgm@gnu.org>
3363
400d5621
GM
3364 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
3365
268e2432
GM
3366 * conf_post.h [USG5_4]:
3367 Move remaining contents of s/usg5-4-common.h here.
3368 * s/usg5-4-common.h: Remove file.
3369
7552f3ee
GM
3370 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
3371 * s/irix6-5.h: Remove file.
3372
6a381852
GM
3373 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
3374 * s/darwin.h: Remove file.
3375
c1529ded
GM
3376 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
3377 * s/hpux10-20.h: Remove file, which is now empty.
3378
b429a4ee
GM
33792012-07-30 Glenn Morris <rgm@gnu.org>
3380
3381 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
3382 * Makefile.in (config_h): Add conf_post.h.
3383 * makefile.w32-in (CONFIG_H): Add conf_post.h.
3384
adff3182
JD
33852012-07-30 Jan Djärv <jan.h.d@swipnet.se>
3386
3387 * nsterm.m (ns_do_open_file): New variable.
b9031d69 3388 (ns_term_init): Set ns_do_open_file to YES after run returns.
14ae4239
BT
3389 (openFile, openTempFile, openFileWithoutUI, openFiles):
3390 Open files only if ns_do_open_file.
adff3182 3391
c32af1e4
PE
33922012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3393
7393bcbb
PE
3394 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
3395 This no-op macro hasn't been needed for many years.
3396 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
3397
c32af1e4
PE
3398 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
3399 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
3400 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
3401 gdb_make_enums_visible.
3402 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
3403 (DIRECTORY_SEP): Now a constant, not a macro.
3404
302fc036
EZ
34052012-07-30 Eli Zaretskii <eliz@gnu.org>
3406
3407 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
3408 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
3409
3410 * w32term.c <w32_keyboard_codepage>: Renamed from
3411 keyboard_codepage and now external. All users changed.
3412
3413 * w32term.h: Add declaration of w32_keyboard_codepage.
3414
3415 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
3416 the codepage to translate keys to Unicode. If this argument is
3417 -1, use the value returned by GetConsoleCP. All callers changed.
3418
88fb40b4
PE
34192012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3420
0aee6912
PE
3421 Update .PHONY listings in makefiles.
3422 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
3423 bootstrap-clean, distclean, maintainer-clean, versioclean,
3424 extraclean, frc.
3425
88fb40b4
PE
3426 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
3427 This is a bit clearer. Fix some commentary typos.
3428
0a763bd1
GM
34292012-07-30 Glenn Morris <rgm@gnu.org>
3430
32bac6d6
GM
3431 * s/netbsd.h: Let configure include signal.h if needed.
3432 Remove file, which is now empty.
3433
b65e7c46
GM
3434 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
3435 Let configure set them.
3436 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
3437 No more need to undefine.
0a763bd1 3438
169304bd
AS
34392012-07-30 Andreas Schwab <schwab@linux-m68k.org>
3440
3441 * keymap.c (Fkey_description): Don't remove 0x80 bit from
3442 non-single-byte char when adding meta modifier. (Bug#12090)
3443
6cd7a139
DA
34442012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
3445
3446 Convert safe_call to use variable number of arguments.
3447 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
3448 (safe_call2): Fix comment.
3449 * lisp.h (safe_call): Adjust prototype.
3450 * coding.c (encode_coding_object): Change to use safe_call2.
3451 * xfaces.c (merge_face_heights): Change to use safe_call1.
3452
d34d6ffc
GM
34532012-07-30 Glenn Morris <rgm@gnu.org>
3454
7b8a48e4 3455 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
227f5bd0 3456 does that unconditionally. Remove file, which is now empty.
7b8a48e4 3457
d34d6ffc
GM
3458 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
3459 Remove empty files.
3460
03a660a6
PE
34612012-07-30 Paul Eggert <eggert@cs.ucla.edu>
3462
3463 Export to GDB most of lisp.h's remaining object-like macros.
3464 * lisp.h (min, max): Move earlier, because they're used earlier now.
3465 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
3466 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
3467 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
3468 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
3469 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
3470 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
3471 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
3472 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
3473 Now constants, for GDB. They need not be macros.
3474 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
3475 Now constants, for GDB, as well as macros, for static initializers.
3476 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
3477 Move to after the definition of struct Lisp_Char_Table,
3478 since the former now needs that type defined.
3479 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
3480 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
3481 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
3482 New enums, for gdb_make_enums_visible.
3483 (GLYPH_MODE_LINE_FACE): Remove; unused.
88fb40b4 3484 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
03a660a6
PE
3485 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
3486 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
3487 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
3488 enum maxargs, enum MAX_ALLOCA.
3489 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
3490 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
3491 no longer needed, now that they are done in lisp.h.
3492
e499d0ee
DA
34932012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
3494
3495 Cleanup string bytes checking.
3496 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
3497 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
3498 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
3499 (check_sblock, compact_small_strings): Simplify.
3500
d5040d2d
PE
35012012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3502
3503 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
3504 These macros are confusing and no longer need to be defined, as
3505 the enum values now suffice. All uses replaced with definiens.
3506 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
3507
7f259ae6
JB
35082012-07-29 Juanma Barranquero <lekktu@gmail.com>
3509
3510 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
3511 ($(BLD)/w32console.$(O)): Update dependencies.
3512
7e63e0c3
DA
35132012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3514
3515 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
3516 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
3517 time. Adjust users.
3518 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
3519
ffd817eb
JD
35202012-07-29 Jan Djärv <jan.h.d@swipnet.se>
3521
3522 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
3523 setting sitelisp (Bug#12010).
3524
417a7a0e
EZ
35252012-07-29 Eli Zaretskii <eliz@gnu.org>
3526
14ae4239 3527 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
417a7a0e
EZ
3528
3529 * w32heap.c (cache_system_info):
3530 * w32.c (sys_rename):
3531 * w32proc.c (find_child_console, sys_kill): All users changed.
3532
387d4d92
PE
35332012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3534
3535 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
3536
55a6cca6
EZ
35372012-07-29 Eli Zaretskii <eliz@gnu.org>
3538
3539 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
3540
dbcf001c
DA
35412012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3542
3543 Cleanup statistics calculation in Fgarbage_collect.
14ae4239
BT
3544 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
3545 Fix zombies percentage calculation. Simplify elapsed time calculation.
dbcf001c 3546
e2688e4a
DA
35472012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
3548
3549 Generalize marker debugging code under MARKER_DEBUG and use eassert.
3550 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
3551 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
3552 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
3553 (replace_range, replace_range_2, del_range_2): Change to eassert.
3554 * marker.c (byte_char_debug_check): Adjust style.
3555
b46a6a83
PE
35562012-07-29 Paul Eggert <eggert@cs.ucla.edu>
3557
3558 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
3559 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
3560 long-ago-commented-out code that talks about "WIN32".
3561 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
3562 All uses changed.
3563
e32a5799
PE
35642012-07-28 Paul Eggert <eggert@cs.ucla.edu>
3565
3566 Use Gnulib stdalign module (Bug#9772, Bug#9960).
3567 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
3568 Simplify by using alignof.
3569 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
3570 * lisp.h: Include <stdalign.h>.
3571 (GCALIGNMENT): New macro and constant.
3572 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
3573 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
3574 (stdalign): New macro, if not already defined.
3575
df81cd29
EZ
35762012-07-28 Eli Zaretskii <eliz@gnu.org>
3577
01bd1b0d
EZ
3578 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
3579 * w32inevt.c: Include w32inevt.h.
3580 (w32_read_console_input): New inline function, calls either
3581 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
3582 w32_console_unicode_input.
3583 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
3584 (w32_kbd_patch_key, key_event): Use the codepage returned by
3585 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
3586 (key_event): use uChar.UnicodeChar only if
3587 w32_console_unicode_input is non-zero.
3588
3589 * w32console.c: Include w32heap.h.
3590 <w32_console_unicode_input>: New global variable.
3591 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
3592 family of Windows, zero otherwise.
3593
3594 * w32inevt.h: Declare w32_console_unicode_input.
3595
df81cd29
EZ
3596 * xdisp.c (init_iterator): Don't reference tip_frame in a build
3597 --without-x. (Bug#11742)
3598
c20fdd9e
PE
35992012-07-27 Paul Eggert <eggert@cs.ucla.edu>
3600
3601 Adjust GDB to reflect pvec_type changes (Bug#12036).
3602 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
14ae4239
BT
3603 2012-07-04 changes to pseudovector representation.
3604 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
c20fdd9e 3605
32770973 36062012-07-27 Michael Albinus <michael.albinus@gmx.de>
e518bc71
MA
3607
3608 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
3609 bus address.
3610 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
3611
3438fe21
EZ
36122012-07-27 Eli Zaretskii <eliz@gnu.org>
3613
bcfbc9de
EZ
3614 * alloc.c (listn): Fix the order the arguments are consed onto the
3615 list.
3616
3438fe21
EZ
3617 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
3618 enumeration constants, as PURE and HEAP are too general, and clash
3619 with other headers and sources, such as gmalloc.c and the
3620 MS-Windows system headers. All users changed.
3621
eeaea515
DA
36222012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3623
3624 Revert last save_excursion_save and save_excursion_restore changes.
3625 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
3626 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
3627
073c88c2
DA
36282012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3629
3630 Fix recently-introduced typos in Windows port.
3631 Reported by Martin Rudalics <rudalics@gmx.at>.
3632 * w32.c (init_environment): Replace comma with semicolon.
eeaea515 3633 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
073c88c2 3634
4706125e
PE
36352012-07-27 Paul Eggert <eggert@cs.ucla.edu>
3636
3637 Improve GDB symbol export (Bug#12036).
3638 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
3639 arms of an 'if', not using conditional expressions; otherwise GDB
3640 complains about the types in the unevaluated arm when the argument
3641 is an integer literal.
3642 (xgetint): Simplify expression.
3643 * alloc.c (gdb_make_enums_visible): New constant. This ports to
3644 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
3645 Zaretskii in <http://bugs.gnu.org/12036#13>.
3646 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
3647 needed now that we have gdb_make_enums_visible.
3648 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
3649 (enum enum_USE_LSB_TAG):
3650 New enum types, packaging up enums that need to be exported to GDB.
3651
694b6c97
DA
36522012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3653
3654 Utility function to make a list from specified amount of objects.
3655 * lisp.h (enum constype): New datatype.
3656 (listn): New prototype.
3657 * alloc.c (listn): New function.
3658 (Fmemory_use_count, syms_of_alloc): Use it.
3659 * buffer.c (syms_of_buffer): Likewise.
3660 * callint.c (syms_of_callint): Likewise.
3661 * charset.c (define_charset_internal): Likewise.
3662 * coding.c (syms_of_coding): Likewise.
3663 * keymap.c (syms_of_keymap): Likewise.
3664 * search.c (syms_of_search): Likewise.
3665 * syntax.c (syms_of_syntax): Likewise.
3666 * w32.c (init_environment): Likewise.
3667 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
3668 * xdisp.c (syms_of_xdisp): Likewise.
3669 * xfns.c (syms_of_xfns): Likewise.
3670
6195f384
DA
36712012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
3672
3673 Fast save_excursion_save and save_excursion_restore.
3674 * lisp.h (struct Lisp_Excursion): New data type.
3675 (PVEC_EXCURSION): New pseudovector type.
3676 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
3677 to deal with it. Adjust comments.
3678 (init_marker, attach_marker): New prototype.
3679 (unchain_marker): Adjust prototype.
3680 * marker.c (attach_marker): Change to global.
3681 (init_marker): New function.
3682 * alloc.c (Fmake_marker, build_marker): Use it.
3683 (build_marker): More easserts.
3684 (mark_object): Handle struct Lisp_Excursion.
3685 * editfns.c (save_excursion_save, save_excursion_restore):
3686 Reimplement to use struct Lisp_Excursion. Add comments.
3687
5eceb8fb
PE
36882012-07-26 Paul Eggert <eggert@cs.ucla.edu>
3689
3690 Fix export of symbols to GDB (Bug#12036).
3691 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
3692 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
3693 emacs.c, as this is a more-suitable home. Had this been done earlier
3694 the fix for 12036 would have avoided some of the problems noted in
3695 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
3696 would have been more obvious.
562157c8
PE
3697 * emacs.c: Do not include <verify.h>; no longer needed.
3698 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
5eceb8fb
PE
3699 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
3700 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
3701 Remove; now done in lisp.h.
3702 * lisp.h (PUBLISH_TO_GDB): New macro.
3703 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
3704 (DATA_SEG_BITS): Use it.
3705 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
3706 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
3707 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
3708 not be usable in #if. This simplifies things.
3709
d6749401
JB
37102012-07-26 Juanma Barranquero <lekktu@gmail.com>
3711
3712 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
3713
1781b9e9
PE
37142012-07-26 Paul Eggert <eggert@cs.ucla.edu>
3715
d89518db 3716 Simplify export of symbols to GDB (Bug#12036).
1781b9e9
PE
3717 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
3718 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
3719 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
3720 Adjust to changes in lisp.h and emacs.c, by using
3721 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
3722 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
3723 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
3724 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
3725 instead of gdb_valbits.
3726 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
3727 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
3728 instead of gdb_array_mark_flag.
3729 (xboolvector): Get size from $->size, not $->header.size.
3730 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
3731 (xreload, hook-run, hookpost-run): Remove.
3732 * emacs.c: Include <verify.h>.
3733 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
3734 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
3735 Remove.
3736 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
3737 (gdb_USE_LSB_TAG): New enum constants.
3738 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
3739 Also define these as enum constants, so they're visible to GDB.
3740 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
3741 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
3742 as constants, so they're visible to GDB.
3743 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
3744 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
3745 Now enum constants, not macros, so they're visible to GDB.
3746 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
3747 more convenient now. All uses changed.
3748 (VALMASK) [USE_LSB_TAG]: Also define in this case.
3749 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
3750
3628596a
DA
37512012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
3752
3753 Explicitly free restriction data that are not needed anymore.
3754 * editfns.c (save_restriction_restore): Free restriction data.
3755
7abaf5cc
SM
37562012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
3757
3758 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
3759 add argument, tune behavior, and adjust all callers.
3760
71f88e00
PE
37612012-07-25 Paul Eggert <eggert@cs.ucla.edu>
3762
3763 Use typedef for EMACS_INT, EMACS_UINT.
3764 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
3765 than macros. This simplifies debugging in the usual case, since
3766 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
3767 and it allows expressions involving EMACS_INT casts.
3768 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
3769
57ec3034
JD
37702012-07-25 Jan Djärv <jan.h.d@swipnet.se>
3771
3772 * nsterm.m (ns_read_socket): Return early if there is a modal
3773 window (Bug#12043).
3774
8137e7b3
MR
37752012-07-25 Martin Rudalics <rudalics@gmx.at>
3776
3777 * frame.c (Fredirect_frame_focus): In doc-string don't mention
3778 that FOCUS-FRAME can be omitted.
3779
04e9897c
DA
37802012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
3781
3782 Adjust buffer text indirection counters at the end of Fkill_buffer.
3783 * buffer.c (Fkill_buffer): Adjust indirection counters when the
3784 buffer is definitely dead. This should really fix an issue reported
3785 by Christoph Scholtes again. (Bug#12007).
3786 (init_buffer_once): Initialize indirection counters of
3787 buffer_defaults and buffer_local_symbols (for sanity and safety).
3788
8a0484e1
EZ
37892012-07-24 Eli Zaretskii <eliz@gnu.org>
3790
3791 * xdisp.c (init_iterator): Don't compute dimensions of truncation
3792 and continuation glyphs on tooltip frames, leave them at zero.
3793 Avoids continued lines in tooltips. (Bug#11832)
3794
fa691a83
DA
37952012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
3796
3797 Simplify copy_overlay.
04e9897c 3798 * buffer.c (copy_overlay): Simplify. Use build_marker.
fa691a83
DA
3799 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
3800
436bc8e0
EZ
38012012-07-23 Eli Zaretskii <eliz@gnu.org>
3802
3803 * print.c (print_object): Don't crash when a frame's name is nil
3804 or invalid. (Bug#12025)
3805
3806 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
3807 it signals an error when a tooltip frame is being created.
3808
d7a7fda3
DA
38092012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
3810
3811 Cleanup miscellaneous objects allocation and initialization.
3812 * alloc.c (allocate_misc): Change to static. Add argument to
3813 specify the subtype. Adjust comment and users.
3814 (build_overlay): New function.
3815 * buffer.c (copy_overlays, Fmake_overlay): Use it.
3816 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
3817 (allocate_misc): Remove prototype.
3818 (build_overlay): Add prototype.
3819
38202012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
372f8ffc
DA
3821
3822 Swap buffer text indirection counters in Fbuffer_swap_text.
3823 * buffer.c (Fbuffer_swap_text): Swap indirections too.
3824 This avoids crash reported by Christoph Scholtes at
3825 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
3826
9d7fa573
JD
38272012-07-22 Jan Djärv <jan.h.d@swipnet.se>
3828
3829 * nsmenu.m (Popdown_data): New struct.
3830 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
3831 free Popdown_data.
3832 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
3833 (initWithContentRect): Make imgView and contentView non-static
3834 and autorelease them. Also autorelease img and matrix (Bug#12005).
3835 (dealloc): Remove (Bug#12005).
3836
0dd6d66d
DA
38372012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
3838
3839 Adjust consing_since_gc when objects are explicitly freed.
3840 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
3841 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
3842 (free_cons, free_misc): Subtract object size from consing_since_gc.
3843
d36d71df
DA
38442012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
3845
3846 Simplify and cleanup markers positioning code.
3847 * marker.c (attach_marker): More useful eassert.
3848 (live_buffer, set_marker_internal): New function.
3849 (Fset_marker, set_marker_restricted): Use set_marker_internal.
3850 (set_marker_both, set_marker_restricted_both): Use live_buffer.
3851
fb9ea40f
PE
38522012-07-22 Paul Eggert <eggert@cs.ucla.edu>
3853
3854 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
3855 as it's limited by the amount of memory, not by INT_MAX.
3856
2d5c5f7d
EZ
38572012-07-21 Eli Zaretskii <eliz@gnu.org>
3858
07fb592e
EZ
3859 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
3860 in special-event-map. See the discussion at
3861 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
3862 for the reasons.
3863
37a9eac8 3864 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
14ae4239
BT
3865 info.dwItemData. Fixes crashes on 64-bit Windows.
3866 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2d5c5f7d 3867
c4328746
JD
38682012-07-21 Jan Djärv <jan.h.d@swipnet.se>
3869
fc0c31f8 3870 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
4b17afa7 3871 (conversationIdentifier): Return value is NSInteger.
784051c4 3872 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
c4328746 3873
6e5d1c12
CY
38742012-07-21 Chong Yidong <cyd@gnu.org>
3875
3876 * window.c (decode_any_window): Signal an error if the window is
3877 on a dead frame (Bug#11984).
3878
9928463d
DA
38792012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3880
3881 Add indirection counting to speed up Fkill_buffer.
3882 * buffer.h (struct buffer): New member.
3883 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
3884 (Fmake_indirect_buffer): Set indirection counter to -1, increment
3885 base buffer indirection counter.
3886 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
3887 (Fkill_buffer): Adjust indirection counters as needed, don't walk
3888 through buffer list if indirection counter is 0.
3889
f8643a6b
DA
38902012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3891
3892 Extend the value returned by Fgarbage_collect with heap statistics.
3893 * alloc.c (Qheap): New symbol.
3894 (syms_of_alloc): DEFSYM it.
3895 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
3896 (Fmemory_free): Remove.
3897 (syms_of_alloc): Don't defsubr it.
3898 * buffer.c (Fcompact_buffer): Remove.
3899 (syms_of_buffer): Don't defsubr it.
3900
dac616ff
DA
39012012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3902
3903 Make maybe_gc inline.
3904 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
3905 * lisp.h (consing_since_gc, gc_relative_threshold)
3906 (memory_full_cons_threshold): Revert declaration.
3907 (maybe_gc): Remove prototype, define as inline.
3908 * alloc.c: Remove old commented-out code.
3909 (consing_since_gc, gc_relative_threshold)
3910 (memory_full_cons_threshold): Revert to global.
3911 (maybe_gc): Remove.
3912
d7ea76b4
DA
39132012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3914
3915 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
3916 * lisp.h (build_unibyte_string): New function.
3917 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
3918 * sysdep.c, w32fns.c, xfns.c: Use it.
3919 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
3920 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
3921 Adjust users accordingly.
3922 * font.h (font_open_by_name): Adjust prototype.
3923
765e61e3
DA
39242012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
3925
3926 Cleanup calls to Fgarbage_collect.
3927 * lisp.h (maybe_gc): New prototype.
3928 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3929 Remove declarations.
3930 * alloc.c (maybe_gc): New function.
3931 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
3932 Make them static.
3933 * bytecode.c (MAYBE_GC): Use maybe_gc.
3934 * eval.c (eval_sub, Ffuncall): Likewise.
3935 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
3936 to avoid dependency from auto-save feature.
3937
52b852c7
PE
39382012-07-19 Paul Eggert <eggert@cs.ucla.edu>
3939
3940 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
3941 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
3942 'for_each_per_buffer_object_at'.
3943 All uses changed. It's better to use upper-case for macros that
3944 cannot be implemented as functions, to give the reader a clue
3945 that they're special.
3946
5db81e33
SM
39472012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
3948
3949 * alloc.c (Fgarbage_collect): Tweak docstring.
3950
5b835e1d
DA
39512012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3952
3953 Tweak the value returned from Fgarbage_collect again.
3954 * alloc.c (Fgarbage_collect): New return value, as confirmed in
3955 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
3956 Adjust documentation.
3957 (total_vector_bytes): Rename to total_vector_slots, adjust
3958 accounting.
3959 (total_free_vector_bytes): Rename to total_free_vector_slots,
3960 adjust accounting.
3961 (Qstring_bytes, Qvector_slots): New symbols.
3962 (syms_of_alloc): DEFSYM them.
3963
9cd47b72
DA
39642012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3965
3966 Buffer compaction primitive which may be used from Lisp.
3967 * buffer.c (compact_buffer, Fcompact_buffer): New function.
3968 (syms_of_buffer): Register Fcompact_buffer.
3969 * alloc.c (Fgarbage_collect): Use compact_buffer.
3970 * buffer.h (compact_buffer): New prototype.
3971 (struct buffer_text): New member.
3972
d17337e5
DA
39732012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
3974
3975 New macro to iterate over all buffers, miscellaneous cleanups.
3976 * lisp.h (all_buffers): Remove declaration.
3977 * buffer.h (all_buffers): Add declaration, with comment.
3978 (for_each_buffer): New macro.
3979 * alloc.c (Fgarbage_collect, mark_object): Use it.
3980 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
3981 (init_buffer): Likewise.
3982 * data.c (Fset_default): Likewise.
3983 * coding.c (code_conversion_restore): Remove redundant check
3984 for dead buffer.
3985 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
3986
60cfd278
AS
39872012-07-18 Andreas Schwab <schwab@linux-m68k.org>
3988
3989 Fix bug that created negative-length intervals.
3990 * intervals.c (merge_interval_right, merge_interval_left):
3991 Do not zero out this interval if it is absorbed by its children,
3992 as this interval's total length doesn't change in that case. See
3993 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
3994
d06714cb
PE
39952012-07-18 Paul Eggert <eggert@cs.ucla.edu>
3996
83713154
PE
3997 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
3998 when invoking (make-bool-vector N t) and N is a positive
3999 multiple of 8 -- the last 8 bits were mistakenly cleared.
4000
d06714cb
PE
4001 Remove some struct layout assumptions in bool vectors.
4002 * alloc.c (bool_header_size): New constant.
4003 (header_size, word_size): Move earlier, as they're now used earlier.
4004 Use 'word_size' in a few more places, where it's appropriate.
4005 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
4006 padding before the data member of a bool vector.
4007 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
4008 than doing the check by hand with an abort ().
4009
464d5a5e
SM
40102012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
4011
5fbc0409
SM
4012 * eval.c (Fdefvar): Don't check constants since we only set the var if
4013 it's not yet defined anyway (bug#11904).
4014
464d5a5e
SM
4015 * lisp.h (last_undo_boundary): Declare new var.
4016 * keyboard.c (command_loop_1): Set it.
4017 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
4018 were auto-added by the command loop (bug#11774).
4019
8dc2e44a
AS
40202012-07-18 Andreas Schwab <schwab@linux-m68k.org>
4021
4022 * w32font.c (Qsymbol): Remove local definition.
4023 (syms_of_w32font): Don't DEFSYM it.
4024
169925ec
DA
40252012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4026
4027 Fix sweep_vectors to handle large bool vectors correctly.
4028 * alloc.c (sweep_vectors): Account total_vector_bytes for
4029 bool vectors larger than VBLOCK_BYTES_MAX.
4030
5fbfb018
CY
40312012-07-18 Chong Yidong <cyd@gnu.org>
4032
4033 * frame.c (x_set_frame_parameters): Revert bogus change introduced
4034 in 2012-05-25 commit by Paul Eggert (Bug#11738).
4035
3ab6e069
DA
40362012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
4037
4038 Return more descriptive data from Fgarbage_collect.
4039 Suggested by Stefan Monnier in
4040 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
4041 * alloc.c (bounded_number): New function.
4042 (total_buffers, total_vectors): New variable.
4043 (total_string_size): Rename to total_string_bytes, adjust users.
4044 (total_vector_size): Rename to total_vector_bytes, adjust users.
4045 (sweep_vectors): Account total_vectors and total_vector_bytes.
4046 (Fgarbage_collect): New return value. Adjust documentation.
4047 (gc_sweep): Account total_buffers.
4048 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
4049 (VECTOR_SIZE): Remove.
4050 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
4051 (Qinterval, Qmisc): New symbols.
4052 (syms_of_data): Initialize them.
4053 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
4054 (Qcons, Qbuffer): New declarations.
4055
6d02fe5b
PE
40562012-07-17 Paul Eggert <eggert@cs.ucla.edu>
4057
4058 * alloc.c (Fmemory_free): Account for memory-free's own storage.
4059 Round up, not down. Improve doc.
4060
b7ffe040
DA
40612012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4062
4063 Restore old code in allocate_string_data to avoid Faset breakage.
4064 Reported by Julien Danjou <julien@danjou.info> in
4065 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
4066 * alloc.c (allocate_string_data): Restore old code with minor
4067 adjustments, fix comment to explain this subtle issue.
4068
4dc7c8d5
SM
40692012-07-17 Eli Zaretskii <eliz@gnu.org>
4070
4071 Remove FILE_SYSTEM_CASE.
4072 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
4073
4074 * fileio.c (FILE_SYSTEM_CASE): Don't define.
4075 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
4076 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
4077 call-process-region passes it through expand-file-name.
4078
4079 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
4080
40812012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4082
4083 Fix crash when creating indirect buffer (Bug#11917)
4084 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
4085 Don't handle unbound variables specially if non-zero.
4086 (Fbuffer_local_variables): Pass zero.
4087 (clone_per_buffer_values): Pass non-zero.
4088
40892012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4090
4091 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
4092 to make the loop interruptible.
4093
40942012-07-17 Andreas Schwab <schwab@linux-m68k.org>
4095
4096 * gnutls.c (emacs_gnutls_handshake): Only retry if
4097 GNUTLS_E_INTERRUPTED.
4098
cce7fefc
DA
40992012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4100
4101 Cleanup and convert miscellaneous checks to eassert.
4102 * alloc.c (mark_interval): Fix comment, partially rephrase
4103 old comment from intervals.h (see below).
4104 * intervals.c (find_interval, adjust_intervals_for_insertion)
4105 (delete_interval, adjust_intervals_for_deletion)
4106 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
4107 Convert to eassert.
4108 (adjust_intervals_for_insertion, make_new_interval):
4109 Remove obsolete and unused code.
4110 * intervals.h (struct interval): Remove obsolete comment.
4111 * textprotp.c (erase_properties): Remove unused code.
4112 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
4113 (Fremove_list_of_text_properties): Convert to eassert.
4114
9ea10cc3
CY
41152012-07-17 Chong Yidong <cyd@gnu.org>
4116
4117 * editfns.c (Finsert_char): Doc fix.
4118
3900d5de
DA
41192012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4120
4121 Fix previous change to make Fmemory_free always accurate.
4122 * alloc.c (make_interval): Update total_free_intervals.
4123 (make_float): Likewise for total_free_floats.
4124 (free_cons, Fcons): Likewise for total_free_conses.
4125 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
4126 Likewise for total_free_vector_bytes.
4127 (Fmake_symbol): Likewise for total_free_symbols.
4128 (bytes_free): Remove.
4129
7098646f
DA
41302012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4131
4132 Simple free memory accounting feature.
4133 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
4134 (sweep_vectors): Accumulate size of free vectors.
4135 (Fgarbage_collect): Setup bytes_free.
4136 (Fmemory_free): New function.
4137 (syms_of_alloc): Register it.
4138
22657b40
DA
41392012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
4140
4141 Cleanup overlays checking.
4142 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
4143 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
4144 eassert and OVERLAYP.
4145 (sort_overlays): Change to use OVERLAYP.
4146
ddfc8813
RK
41472012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
4148
4149 * editfns.c (Finsert_char): Make it interactive, and make the
4150 second arg optional. Copy interactive spec and docstring from
4151 ucs-insert.
4152
7c26cf3c
PE
41532012-07-17 Paul Eggert <eggert@cs.ucla.edu>
4154
4155 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
4156 Unlike the other wrapped functions, fabs has an unspecified
4157 effect on errno.
4158
5d127af9
JD
41592012-07-16 Jan Djärv <jan.h.d@swipnet.se>
4160
4161 * nsterm.m (keyDown): Interpret flags without left/right bits
4162 as the left key (Bug#11670).
4163
6a0dd1d7
DA
41642012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
4165
4166 Remove empty and useless init functions.
4167 * lisp.h (init_character_once, init_fns, init_image)
4168 (init_filelock, init_sound): Remove prototype.
4169 * character.c (init_character_once): Remove.
4170 * filelock.c (init_filelock): Likewise.
4171 * fns.c (init_fns): Likewise.
4172 * image.c (init_image): Likewise.
4173 * sound.c (init_sound): Likewise.
4174 * emacs.c (main): Adjust accordingly.
4175
7a6136fd
DA
41762012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
4177
4178 * gtkutil.h: Tiny cleanups.
4179 (use_old_gtk_file_dialog): Remove useless declaration.
4180 (xg_uses_old_file_dialog): Add suggested const attribute.
4181
ce811ad9
EZ
41822012-07-15 Eli Zaretskii <eliz@gnu.org>
4183
4184 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
4185 (bidi_paragraph_init): Use it to limit search forward for a strong
4186 directional character in abnormally large paragraphs full of
4187 neutral or weak characters. (Bug#11943)
4188
c9adfeaa
SF
41892012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
4190
4191 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
4192 the toolbar (Bug#9451).
4193 (xg_make_tool_item): Give the widget event box a transparent
4194 background.
4195
fff62aa9
DA
41962012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
4197
4198 Cleanup basic allocation variables and functions.
4199 * alloc.c (ignore_warnings, init_intervals, init_float)
4200 (init_cons, init_symbol, init_marker): Remove.
4201 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
4202 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
4203 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
4204 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
4205 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
4206 (staticidx, init_alloc_once, init_strings, free_ablock):
4207 Remove redundant initialization.
4208 * fns.c (init_weak_hash_tables): Remove.
4209 * lisp.h (init_weak_hash_tables): Remove prototype.
4210
9730daca
DA
42112012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
4212
4213 Use zero_vector where appropriate.
4214 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
4215 accordingly.
4216 * lisp.h (zero_vector): New declaration.
4217 * font.c (null_vector): Remove.
4218 (syms_of_font): Remove initialization and staticpro.
4219 (font_list_entities, font_find_for_lface): Change to use zero_vector.
4220 * keymap.c (Faccessible_keymaps): Likewise.
4221
2e2d2a13
LL
42222012-07-15 Leo Liu <sdl.web@gmail.com>
4223
4224 * fringe.c: Fix typo in comments.
4225
cd276f6e
LL
42262012-07-14 Leo Liu <sdl.web@gmail.com>
4227
4228 * fringe.c: Add a new bitmap exclamation-mark.
4229
5a1131d9
EZ
42302012-07-14 Eli Zaretskii <eliz@gnu.org>
4231
4232 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
4233
4234 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
4235 (HAVE_MENUS): Don't define, defined by editing config.in with
4236 msdos/sed2v2.inp.
4237 (GMALLOC_INHIBIT_VALLOC): Don't define.
4238 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
4239
22e983b7
JB
42402012-07-14 Juanma Barranquero <lekktu@gmail.com>
4241
4242 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
4243
5b3f250f
GM
42442012-07-14 Glenn Morris <rgm@gnu.org>
4245
4246 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
4247 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
4248 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
4249
33d63ff4
GM
42502012-07-13 Glenn Morris <rgm@gnu.org>
4251
5b633342
GM
4252 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
4253
33d63ff4
GM
4254 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
4255 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
4256
b55b9f85
JD
42572012-07-13 Jan Djärv <jan.h.d@swipnet.se>
4258
0dc8cf50
JD
4259 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
4260 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
4261 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
4262 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
4263 where appropriate.
4264 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
4265 as boolean expression.
4266 (x_set_window_size): Remove unused variable toolbar.
4267 (ns_get_color_default, ns_mod_to_lisp): Remove.
4268 (ns_mouse_position): Remove unused variables xchar and ychar.
4269 (ns_compute_glyph_string_overhangs): Remove unused variable face.
4270 (ns_set_vertical_scroll_bar): Remove unused variable count.
4271 (ns_delete_terminal): Remove unused variable i.
4272 (ns_term_init): Remove unused variables r, g and b.
4273 (mouseDown): Remove unused variable window.
4274 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
4275 (initFrameFromEmacs): Remove unused variable vbextra.
4276 (mouseEntered): Remove unused variables p and dpyinfo.
4277 (mouseExited): Remove unused variables p and r.
4278 (ns_define_frame_cursor, ns_clear_frame_area)
4279 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
4280 (menuDown): Assign [sender tag] to variable and cast the variable.
4281
4282 * nsterm.h (menuDown): Add id as type to argument sender.
4283 (ns_display_info_for_name): Add Lisp_Object argument.
4284 (ns_term_init): Add Lisp_Object argument.
4285 (ns_map_event_to_object): Add void argument.
4286 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
4287 prototype with arguments and only declare if __OBJC__.
4288 (nxatoms_of_nsselect): Add void argument.
4289 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
4290 (ns_alloc_autorelease_pool): Add void argument.
4291 (ns_release_autorelease_pool): Add void* argument.
4292 (ns_get_defaults_value): Add const char* argument.
4293
4294 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
4295 (initFromContents): Use SSDATA where appropriate.
4296 (ns_update_menubar): Add braces to ambigous if-else.
4297 (initWithTitle): Put () around assignment in if statement.
4298 (ns_menu_show): Remove unused variables window and keymap.
4299 (update_frame_tool_bar): Remove unused variable selected_p.
4300 (initWithContentRect): Remove unused variable this_cmd_name.
4301
4302 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
4303 appropriate.
4304 (setXBMColor): Remove unused variable len.
4305 (setPixmapData): Put () around assignment in loop statement.
4306
4307 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
4308 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
4309 where appropriate.
4310 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
4311 around assignment in loop statement.
4312 (nsfont_open): Remove unused variable i.
4313 (nsfont_open): Remove unused variable len.
4314 (nsfont_draw): Remove unused variable cs.
4315
4316 * nsfns.m (x_set_icon_name, ns_set_name_internal)
4317 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
4318 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
4319 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
4320 (Fns_font_name, Fns_perform_service)
4321 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
4322 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
4323 (ns_set_name): Remove unused variable view.
4324 (x_set_menu_bar_lines): Remove unused variable olines.
4325 (x_set_tool_bar_lines): Remove unused variable root_window.
4326 (Fns_list_colors): Put () around assignment in while statement.
4327 (Fns_perform_service): Remove unused variable len.
4328 (Fns_display_usable_bounds): Remove unused variable top.
4329 (syms_of_nsfns): Remove unused variable i.
4330
b55b9f85
JD
4331 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
4332 memcpy (Bug#11907).
4333
ed9265fc 43342012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
2277de02
JD
4335
4336 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
4337 and free it with DestroyExceptionInfo (Bug#11558).
4338
ef099b57
JB
43392012-07-13 Juanma Barranquero <lekktu@gmail.com>
4340
4341 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
4342 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
4343 Set here, not in nt/config.nt.
4344
ea814a5d
EZ
43452012-07-13 Eli Zaretskii <eliz@gnu.org>
4346
4347 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
4348 cursor overflow into the last glyph on display line when the right
4349 fringe is off. (Bug#11832)
4350
1a952767
PE
43512012-07-13 Paul Eggert <eggert@cs.ucla.edu>
4352
4353 * xdisp.c (produce_special_glyphs): Now static.
4354 * dispextern.h (produce_special_glyphs): Remove decl.
4355
983188fd
GM
43562012-07-13 Glenn Morris <rgm@gnu.org>
4357
8d7c7eed 4358 * s/bsd-common.h, s/cygwin.h: Remove empty files.
32fb4bb6
GM
4359 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
4360
983188fd
GM
4361 * s/usg5-4-common.h (USG, USG5):
4362 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
4363 * s/sol2-6.h (SOLARIS2):
4364 * s/irix6-5.h (IRIX6_5):
4365 * s/hpux10-20.h (USG, USG5, HPUX):
4366 * s/gnu-linux.h (USG, GNU_LINUX):
4367 * s/freebsd.h (BSD_SYSTEM):
4368 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
4369 * s/cygwin.h (CYGWIN):
4370 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
4371 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
4372
d1e68667 43732012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
24ef80ae
PE
4374
4375 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
24ef80ae 4376
6de0e799
GM
43772012-07-13 Glenn Morris <rgm@gnu.org>
4378
739ae010
GM
4379 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
4380
dbee5793
GM
4381 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
4382
6de0e799
GM
4383 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
4384 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
4385
b82da769
GM
43862012-07-12 Glenn Morris <rgm@gnu.org>
4387
4fae5a7a 4388 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
b82da769
GM
4389
4390 * process.c (init_process_emacs): Rename from init_process.
4391 The old name is also the name of a Mach system call.
4392 * lisp.h, emacs.c: Update for this name change.
4393 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
4394 longer needed.
4395
5a979817
EZ
43962012-07-12 Eli Zaretskii <eliz@gnu.org>
4397
4398 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
4399 memmove call that removes glyphs covered by the left truncation
4400 glyph. Improve commentary.
4401 (display_line): Fix display of continuation glyphs on GUI frames
4402 when the right fringe is turned off and variable-size fonts are
4403 used in the window. Move the code that appends a stretch glyph to
4404 produce_special_glyphs, so that it could be used for truncation
4405 and continuation glyphs alike.
4406 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
4407 glyph of a suitably computed width, to align the special glyphs at
4408 the window margin. Code moved from display_line. (Bug#11832)
4409
3e91a053
GM
44102012-07-12 Glenn Morris <rgm@gnu.org>
4411
ba9e4b84
GM
4412 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
4413
4414 * s/gnu-linux.h, s/hpux10-20.h:
4415 Do not unconditionally define HAVE_XRMSETDATABASE.
4416
3e91a053
GM
4417 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
4418
b300b1f4
PE
44192012-07-12 Paul Eggert <eggert@cs.ucla.edu>
4420
4421 Fix typos that broke OS X build.
4422 Reported by Randal L. Schwartz in
4423 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
4424 * nsterm.m (ns_timeout): Add missing local decl.
4425 (ns_get_color): snprintf -> sprintf, to fix typo.
4426
6e777848
GM
44272012-07-12 Glenn Morris <rgm@gnu.org>
4428
3f922c37
GM
4429 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
4430 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
4431 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
4432 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
4433
0ab7b23a
GM
4434 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
4435 Move PTY_OPEN to configure.
4436
6e777848
GM
4437 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
4438 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
4439 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
4440
4a7edc24
DA
44412012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
4442
4443 Use empty_unibyte_string where applicable.
4444 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
4445 * lread.c (read1): Likewise.
4446 * xsettings.c (syms_of_xsettings): Likewise.
4447
308aab79
GM
44482012-07-12 Glenn Morris <rgm@gnu.org>
4449
42bd1719
GM
4450 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
4451 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7ccad002
GM
4452 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
4453 * s/hpux10-20.h (RUN_TIME_REMAP):
4454 * s/bsd-common.h (TABDLY): Move to configure.
4455
4456 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
4457
4458 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
4459
ea0bbd17 4460 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
42bd1719 4461 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
ea0bbd17
GM
4462
4463 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
51c3b9b4 4464
308aab79
GM
4465 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
4466 * s/template.h: Move NARROWPROTO to configure.
4467
ee1cf5cf
GM
44682012-07-11 Glenn Morris <rgm@gnu.org>
4469
30fe9bf4
GM
4470 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
4471 unused since 2011-01-17 change to systty.h.
4472
ee1cf5cf
GM
4473 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
4474 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
4475 Move HAVE_PTYS and HAVE_SOCKETS to configure.
4476
63e47e07
PE
44772012-07-11 Paul Eggert <eggert@cs.ucla.edu>
4478
4479 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
4480
c43fb4c3
GM
44812012-07-11 Glenn Morris <rgm@gnu.org>
4482
4483 * s/darwin.h, s/gnu-linux.h, s/template.h:
4484 Move INTERRUPT_INPUT to configure.
4485
e8df9267
DA
44862012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4487
4488 Minor adjustments to interning code.
4489 * lisp.h (intern, intern_c_string): Redefine as static inline
4490 wrappers for intern_1 and intern_c_string_1, respectively.
4491 (intern_1, intern_c_string_1): Rename prototypes.
14ae4239
BT
4492 * lread.c (intern_1, intern_c_string_1, oblookup):
4493 Simplify Vobarray checking.
e8df9267
DA
4494 * font.c (font_intern_prop): Likewise. Adjust comment.
4495 * w32font.c (intern_font_name): Likewise.
4496
34348bd4
AS
44972012-07-11 Andreas Schwab <schwab@linux-m68k.org>
4498
d96a1e0c
AS
4499 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
4500
34348bd4
AS
4501 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
4502 of Fcar/Fcdr if possible.
4503 * font.c (check_otf_features): Likewise.
4504 * fontset.c (Fnew_fontset): Likewise.
4505 * gnutls.c (Fgnutls_boot): Likewise.
4506 * minibuf.c (read_minibuf): Likewise.
4507 * msdos.c (IT_set_frame_parameters): Likewise.
4508 * xmenu.c (Fx_popup_dialog): Likewise.
4509 * w32menu.c (Fx_popup_dialog): Likewise.
4510
c8add24e
GM
45112012-07-11 Glenn Morris <rgm@gnu.org>
4512
4b575b3c
GM
4513 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
4514 since nothing has defined it on these platforms.
4515
09f4e3b0
GM
4516 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
4517 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
4518
172bedef
GM
4519 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
4520 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
4521 Move CLASH_DETECTION to configure.
4522
249685df
GM
4523 * s/gnu.h: Remove file, which is now empty.
4524
c8add24e
GM
4525 * s/gnu.h, s/gnu-linux.h:
4526 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
4527
b41253a3
JW
45282012-07-11 John Wiegley <johnw@newartisans.com>
4529
4530 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
4531 function attribute, so we only use it if it exists in the
4532 compiler.
4533
d923b542
DA
45342012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4535
4536 Avoid call to strlen in fast_c_string_match_ignore_case.
4537 * search.c (fast_c_string_match_ignore_case): Change to use
4538 length argument. Adjust users accordingly.
4539 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
4540
5ebbef1d
PE
45412012-07-11 Paul Eggert <eggert@cs.ucla.edu>
4542
bb352260
PE
4543 Assume mkdir, rmdir.
4544 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
4545 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
4546
57054ddd
PE
4547 Assume rename.
4548 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
4549
b747d3f7
PE
4550 Assume perror.
4551 * s/hpux10-20.h (HAVE_PERROR): Remove.
4552 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
4553 Remove dummy definition, as this problem was obsolete long ago.
4554
5ebbef1d
PE
4555 Assume strerror.
4556 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
4557
984e7f30
DA
45582012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
4559
4560 Avoid calls to strlen in font processing functions.
4561 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
14ae4239
BT
4562 (font_open_by_name): Change to use length argument.
4563 Adjust users accordingly.
d923b542
DA
4564 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
4565 Adjust prototypes.
4566 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
4567 Change to return ptrdiff_t.
984e7f30
DA
4568 (xfont_list_pattern, xfont_match): Use length returned by
4569 xfont_decode_coding_xlfd.
4570 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
4571
20e94fdd
GM
45722012-07-11 Glenn Morris <rgm@gnu.org>
4573
9d596af3
GM
4574 * s/darwin.h, s/freebsd.h, s/netbsd.h:
4575 Move DONT_REOPEN_PTY to configure.
4576
20e94fdd
GM
4577 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
4578 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
4579
e99a530f
PE
45802012-07-10 Paul Eggert <eggert@cs.ucla.edu>
4581
22ffb973
PE
4582 Remove "#define unix" that is no longer needed (Bug#11905).
4583 * s/aix4-2.h (unix): Remove; no longer needed.
4584
e9a9ae03
PE
4585 EMACS_TIME simplification (Bug#11875).
4586 This replaces macros (which typically do not work in GDB)
4587 with functions, typedefs and enums, making the code easier to debug.
4588 The functional style also makes code easier to read and maintain.
4589 * systime.h: Include <sys/time.h> on all hosts, not just if
4590 WINDOWSNT, since 'struct timeval' is needed in general.
4591 (EMACS_TIME): Now a typedef, not a macro.
4592 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
4593 not macros.
4594 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
4595 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
4596 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
4597 (EMACS_TIME_LE): Now functions, not macros.
4598 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
4599 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
4600 which are not functions. All uses rewritten to use:
4601 (make_emacs_time): New function.
4602 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
4603 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
4604 not functions. All uses rewritten to use the following, respectively:
4605 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
4606 (add_emacs_time, sub_emacs_time): New functions.
ed9265fc 4607 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
e9a9ae03
PE
4608 * fileio.c (Fcopy_file):
4609 * xterm.c (XTflash): Get the current time closer to when it's used.
4610 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
4611
ffacb126
PE
4612 * bytecode.c (targets): Suppress -Woverride-init warnings.
4613
e99a530f
PE
4614 Simplify by avoiding confusing use of strncpy etc.
4615 * doc.c (Fsnarf_documentation):
4616 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
4617 * frame.c (Fmake_terminal_frame):
4618 * gtkutil.c (get_utf8_string):
4619 * lread.c (openp):
4620 * nsmenu.m (ns_update_menubar):
4621 * regex.c (regerror):
4622 Prefer memcpy to strncpy and strncat when either will do.
4623 * fileio.c (Fsubstitute_in_file_name):
4624 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
4625 (menu_separator_name_p):
4626 * nsmenu.m (ns_update_menubar):
4627 Prefer memcmp to strncmp when either will do.
4628 * nsterm.m: Include <ftoastr.h>.
4629 (ns_get_color):
4630 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
4631 Prefer snprintf to strncpy.
4632 * nsterm.m (ns_term_init):
4633 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
4634 * nsterm.m (ns_term_init):
4635 Avoid the need for strncpy, by using build_string or
4636 make_unibyte_string directly. Use dtoastr, not snprintf.
4637 * process.c (Fmake_network_process): Diagnose service names that
4638 are too long, rather than silently truncating them or creating
4639 non-null-terminated names.
4640 (Fnetwork_interface_info): Likewise, for interface names.
4641 * sysdep.c (system_process_attributes) [GNU_LINUX]:
4642 Prefer sprintf to strncat.
4643 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
4644 Prefer vsnprintf to vsprintf + strncpy.
4645
c59592b3
GM
46462012-07-10 Glenn Morris <rgm@gnu.org>
4647
4648 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
4649 Clarify fallback case.
4650
7d7bbefd
DA
46512012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4652
4653 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
4654 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
4655 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
d923b542 4656 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7d7bbefd
DA
4657 where argument type is known to be a Lisp_Cons.
4658
3a4c8000
TT
46592012-07-10 Tom Tromey <tromey@redhat.com>
4660
4661 * bytecode.c (BYTE_CODE_THREADED): New macro.
4662 (BYTE_CODES): New macro. Replaces all old byte-code defines.
4663 (enum byte_code_op): New type.
4664 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
4665 (exec_byte_code): Use them. Use token threading when applicable.
4666
2a0213a6
DA
46672012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4668
4669 Optimize pure C strings initialization.
4670 * lisp.h (make_pure_string): Fix prototype.
4671 (build_pure_c_string): New function, defined as static inline. This
4672 provides a better opportunity to optimize away calls to strlen when
4673 the function is called with compile-time constant argument.
4674 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
4675 argument, adjust users accordingly. Use build_pure_c_string where
4676 appropriate.
4677 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
4678 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
4679 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
4680
cb1caeaf
DA
46812012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4682
4683 Avoid calls to strlen in miscellaneous functions.
4684 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
4685 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
4686 * lread.c (openp): Likewise.
4687
c293e30c
DA
46882012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
4689
4690 Avoid calls to strlen in path processing functions.
4691 * fileio.c (file_name_as_directory): Add comment. Change to add
4692 srclen argument and return the length of result. Adjust users
4693 accordingly.
4694 (directory_file_name): Fix comment. Change to add srclen argument,
14ae4239
BT
4695 swap 1st and 2nd arguments to obey the common convention.
4696 Adjust users accordingly.
c293e30c
DA
4697 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
4698
9e059e3f
GM
46992012-07-10 Glenn Morris <rgm@gnu.org>
4700
d02eb359
GM
4701 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
4702 Move PENDING_OUTPUT_COUNT definition to configure.
4703
882cf227
GM
4704 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
4705 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
4706 * s/gnu.h (DATA_START): Move definitions to configure.
4707
af6e839f
GM
4708 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
4709 We include usg5-4-common.h, which defines them both.
4710
40289a12
GM
4711 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
4712 O_RDONLY already includes it).
4713
9e059e3f
GM
4714 Stop ns builds setting the EMACSLOADPATH environment variable.
4715 * nsterm.m (ns_load_path): Rename from ns_init_paths.
4716 Now it does not set EMACSLOADPATH, just returns the load-path string.
4717 * nsterm.h: Update accordingly.
4718 * lread.c [HAVE_NS]: Include nsterm.h.
4719 (init_lread) [HAVE_NS]: Use ns_load_path.
4720 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
4721
7c4e8ec0
GM
47222012-07-09 Glenn Morris <rgm@gnu.org>
4723
d4f600ff
GM
4724 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
4725 since the included bsd-common.h does so.
4726
cbb31951
GM
4727 Stop ns builds setting the EMACSPATH environment variable.
4728 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
4729 (ns_init_paths): Do not set EMACSPATH.
4730 * nsterm.h (ns_exec_path): Add it.
4731 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
4732 Use ns_exec_path.
4733
7c4e8ec0
GM
4734 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
4735
26bccfae
PE
47362012-07-09 Paul Eggert <eggert@cs.ucla.edu>
4737
a0bee46f
PE
4738 * process.c (wait_reading_process_output): 'waitchannels' was unset
4739 when read_kbd || !NILP (wait_for_cell); fix this.
4740
5994c183
PE
4741 Add GCC-style 'const' attribute to functions that can use it.
4742 * character.h (char_resolve_modifier_mask):
4743 * keyboard.h (make_ctrl_char):
4744 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
4745 (init_character_once, next_almost_prime, init_fns, init_image)
4746 (flush_pending_output, init_sound):
4747 * mem-limits.h (start_of_data):
4748 * menu.h (finish_menu_items):
4749 Add ATTRIBUTE_CONST.
4750 * emacs.c (DEFINE_DUMMY_FUNCTION):
4751 Declare the dummy function with ATTRIBUTE_CONST.
4752 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
4753 Add decls with ATTRIBUTE_CONST.
4754
26bccfae
PE
4755 Minor improvements to make_formatted_string.
4756 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
4757 where int is good enough, as vsprintf returns an int.
4758 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
4759
a8290ec3
DA
47602012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
4761
4762 Use make_formatted_string to avoid double length calculation.
4763 * lisp.h (make_formatted_string): New prototype.
4764 * alloc.c (make_formatted_string): New function.
4765 * buffer.c (Fgenerate_new_buffer_name): Use it.
4766 * dbus.c (syms_of_dbusbind): Likewise.
4767 * editfns.c (Fcurrent_time_zone): Likewise.
4768 * filelock.c (get_boot_time): Likewise.
4769 * frame.c (make_terminal_frame, set_term_frame_name)
4770 (x_report_frame_params): Likewise.
4771 * image.c (gs_load): Likewise.
4772 * minibuf.c (get_minibuffer): Likewise.
4773 * msdos.c (dos_set_window_size): Likewise.
4774 * process.c (make_process): Likewise.
4775 * xdisp.c (ensure_echo_area_buffers): Likewise.
4776 * xsettings.c (apply_xft_settings): Likewise.
4777
d01ba2f1
GM
47782012-07-09 Glenn Morris <rgm@gnu.org>
4779
4780 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
4781 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
4782 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
4783 * nsterm.h (ns_etc_directory): Add it.
4784 * callproc.c [HAVE_NS]: Include nsterm.h.
4785 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
4786
f1f924b6
DA
47872012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
4788
4789 Move marker debugging code under MARKER_DEBUG.
4790 * marker.c (MARKER_DEBUG): Move marker debugging code under
4791 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
4792 for bootstrap with --enable-checking (~3x slowdown reported
4793 by Juanma Barranquero <lekktu@gmail.com>).
4794 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
4795
ab531b66
PE
47962012-07-08 Paul Eggert <eggert@cs.ucla.edu>
4797
4798 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
4799 See <http://bugs.gnu.org/11825#29>.
4800
c4b3bc8a
EZ
48012012-07-08 Eli Zaretskii <eliz@gnu.org>
4802
4803 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
4804 has no font, use the frame's font. (Bug#11813)
3434fe8a
EZ
4805 (display_line): Add commentary about displaying truncation glyphs
4806 on GUI frames.
4807 (produce_special_glyphs): Move here from term.c.
4808
4809 * term.c (produce_special_glyphs): Move to xdisp.c.
4810
4811 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
4812 section.
c4b3bc8a 4813
b676b881
AS
48142012-07-07 Andreas Schwab <schwab@linux-m68k.org>
4815
f17c5273
AS
4816 * xdisp.c (display_line): Avoid warning about implicit declaration
4817 of FRAME_FONT.
4818
298819b9
AS
4819 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
4820
b676b881
AS
4821 * lisp.h: Remove empty conditional.
4822
6045c4fd
PE
48232012-07-07 Paul Eggert <eggert@cs.ucla.edu>
4824
b3350bf9
PE
4825 * lread.c (load_path_check): Now static.
4826
6045c4fd
PE
4827 Fix some minor --with-ns problems found by static checking.
4828 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
4829 (x_set_font) [!HAVE_X_WINDOWS]:
4830 * image.c (xpm_load_image) [HAVE_NS]:
4831 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
4832 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
4833 Remove unused local.
4834 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
4835 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
4836 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
4837 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
4838 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
4839 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
4840 Fix pointer signedness problem.
4841 * xfaces.c (FRAME_X_FONT_TABLE):
4842 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
4843
929e7845
GM
48442012-07-07 Glenn Morris <rgm@gnu.org>
4845
4846 * lread.c (load_path_check): New function, split from init_lread.
4847 (init_lread): Reorganize. Motivation:
4848 If EMACSLOADPATH is set, check/warn about that rather than the
4849 defaults, which we are not going to use. Hence we can remove
4850 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
4851 Don't warn if site-lisp directories are missing.
4852 If not installed, start from a blank load-path, since
4853 PATH_LOADSEARCH refers to the eventual installation directories.
4854
58dd0aa4
EZ
48552012-07-07 Eli Zaretskii <eliz@gnu.org>
4856
4857 Support truncation and continuation glyphs on GUI frames, when
4858 fringes are disabled. (Bug#11832)
4859 * xdisp.c (init_iterator): Get dimensions of truncation and
14ae4239
BT
4860 continuation glyphs even if on GUI frames.
4861 Adjust it->last_visible_x on GUI frames when the left or right fringes,
58dd0aa4
EZ
4862 or both, are absent.
4863 (start_display, move_it_in_display_line_to): Handle the case of a
4864 GUI frame without a fringe to display continuation or truncation
4865 glyphs.
4866 (insert_left_trunc_glyphs): Support GUI frames: make sure
4867 truncation glyphs overwrite enough glyphs from the current line to
4868 have sufficient space in pixels.
4869 (display_line): Support truncation and continuation glyphs on GUI
4870 frames. If some spare pixels are left on the line after inserting
4871 the truncation glyphs, fill that space with a stretch glyph of a
4872 suitably computed width.
4873
4874 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
4875 produce_glyphs, to support GUI sessions.
4876
31571fd7
PE
48772012-07-07 Paul Eggert <eggert@cs.ucla.edu>
4878
5a16b9bc
PE
4879 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
4880
f3047c75
PE
4881 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
4882
31571fd7
PE
4883 Do not require float-time's arg to fit in time_t (Bug#11825).
4884 This works better on hosts where time_t is unsigned, and where
4885 float-time is applied to the (negative) difference between two times.
4886 * editfns.c (decode_time_components): Last arg is now double *,
4887 not int *, and means to store all the result as a double, without
4888 worrying about whether the seconds part fits in time_t.
4889 All callers changed.
4890 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
4891 All callers changed.
4892 (Ffloat_time): Do not fail merely because the specified time falls
4893 outside of time_t range.
4894
4516fbef
GM
48952012-07-07 Glenn Morris <rgm@gnu.org>
4896
4897 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
4898 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
4899 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
4900
07adc2c6
JB
49012012-07-07 Juanma Barranquero <lekktu@gmail.com>
4902
4903 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
4904 Update dependencies.
4905
4906 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
4907
fd573f31
PE
49082012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4909
fee5959d
PE
4910 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
4911 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
4912 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
4913 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
4914 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
4915 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
4916
fd573f31
PE
4917 * xfont.c (compare_font_names): Redo to omit the need for casts.
4918
ddadbc0e
AS
49192012-07-06 Andreas Schwab <schwab@linux-m68k.org>
4920
fca8d6b6
AS
4921 * xfns.c (Fx_change_window_property): Doc fix.
4922 * w32fns.c (Fx_change_window_property): Doc fix.
4923
ddadbc0e
AS
4924 * w32fns.c (Fx_window_property): Accept the same arguments as the
4925 X Windows version. Doc fix.
4926 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
4927
ed9265fc 49282012-07-06 Juanma Barranquero <lekktu@gmail.com>
f247498e
JB
4929 Eli Zaretskii <eliz@gnu.org>
4930
4931 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
4932 Windows-specific code from nt/config.nt moved here.
4933 Obsolete settings removed.
4934
216ee680
PE
49352012-07-06 Paul Eggert <eggert@cs.ucla.edu>
4936
4937 * process.c: Avoid unnecessary calls to gettime.
4938 (wait_reading_process_output): Don't get the time of day
4939 when gobbling data immediately and not waiting, as there's no need
4940 for it in that case. This removes a FIXME.
4941
bdd091e4
JD
49422012-07-06 Jan Djärv <jan.h.d@swipnet.se>
4943
4944 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
4945 is defined (Bug#11768).
4946
9d44f8ce
DA
49472012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4948
4949 Fix marker debugging code.
4950 * marker.c (byte_char_debug_check): Do not perform the check
4951 if buffer is not multibyte.
090bd7cb
JB
4952 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4953 Call byte_char_debug_check with correct arguments.
9d44f8ce 4954
90fc4786
DA
49552012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4956
4957 Compile marker debugging code only if ENABLE_CHECKING is defined.
090bd7cb
JB
4958 * marker.c (byte_char_debug_check, count_markers):
4959 Use only if ENABLE_CHECKING is defined.
90fc4786
DA
4960 (byte_debug_flag): Remove.
4961 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
4962 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
4963
7b7ae965
DA
49642012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4965
4e57b342
DA
4966 Avoid code repetition in marker-related functions.
4967 * marker.c (attach_marker): New function.
4968 (Fset_marker, set_marker_restricted, set_marker_both)
4969 (set_marker_restricted_both): Use it.
4970 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
4971 Consistently rename charno to charpos.
4972 (marker_position): Add eassert.
4973 (marker_byte_position): Convert to eassert.
4974
49752012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4976
4977 Simplify list operations in unchain_overlay and unchain_marker.
7b7ae965 4978 * buffer.c (unchain_overlay): Simplify. Add comment.
4e57b342 4979 * marker.c (unchain_marker): Simplify. Fix comments.
7b7ae965 4980
657924ff
DA
49812012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4982
4983 Introduce fast path for the widely used marker operation.
4984 * alloc.c (build_marker): New function.
4985 * lisp.h (build_marker): New prototype.
4986 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
4987 * composite.c (autocmp_chars): Likewise.
4988 * editfns.c (buildmark): Remove.
4989 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
4990 (save_restriction_save): Use build_marker.
4991 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
4992 * window.c (save_window_save): Likewise.
4993
041a49a6
DA
49942012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
4995
4996 Do not use Fdelete_overlay in delete_all_overlays
4997 to avoid redundant calls to unchain_overlay.
4998 * buffer.c (drop_overlay): New function.
4999 (delete_all_overlays, Fdelete_overlay): Use it.
5000 * minibuf.c (get_minibuffer): Fix comment.
5001
7dca65a4
PE
50022012-07-06 Paul Eggert <eggert@cs.ucla.edu>
5003
5004 Port to OpenBSD 5.1 amd64.
5005 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
5006 This is needed for OpenBSD, and should be harmless on all BSD systems.
5007 Also, include <sys/sysctl.h>, as it should be available on all
5008 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
5009 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
5010 use p_pid member, not kp_proc.pid.
5011
8eb876e2
GM
50122012-07-06 Glenn Morris <rgm@gnu.org>
5013
5014 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
5015
38182d90
PE
50162012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5017
5018 More xmalloc and related cleanup.
5019 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
5020 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
5021 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
5022 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
5023 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
5024 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
5025 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
5026 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
5027 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
5028 * xterm.c:
5029 Omit needless casts involving void * pointers and allocation.
5030 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
5031 as the former is more robust if P's type is changed.
5032 Prefer xzalloc to xmalloc + memset 0.
5033 Simplify malloc-or-realloc to realloc.
5034 Don't worry about xmalloc returning a null pointer.
5035 Prefer xstrdup to xmalloc + strcpy.
5036 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
5037 growing it.
5038 * keyboard.c (apply_modifiers_uncached): Prefer local array to
5039 alloca of a constant.
5040
6dd5a677
EZ
50412012-07-05 Eli Zaretskii <eliz@gnu.org>
5042
5043 * xdisp.c (display_line): Fix horizontal pixel coordinates when
5044 hscroll is larger than the line width. Fixes long and futile
5045 looping inside extend_face_to_end_of_line (on a TTY) producing
5046 glyphs that are not needed and thrown away.
5047
6b312f0f
DA
50482012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
5049
5050 * marker.c (set_marker_restricted_both): Simplify by using
5051 clip_to_bounds.
5052
f520ef9b
PE
50532012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5054
5055 * editfns.c (region_limit): Simplify by using clip_to_bounds.
5056
383b7c95
JD
50572012-07-05 Jan Djärv <jan.h.d@swipnet.se>
5058
5059 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
5060 not defined (Bug#11768).
5061 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
5062 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
5063 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
5064 followed by gtk_box_set_homogeneous (Bug#11768).
5065 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
090bd7cb
JB
5066 (update_theme_scrollbar_width, xg_create_scroll_bar):
5067 Use gtk_scrollbar_new (Bug#11768).
383b7c95
JD
5068 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
5069 (is_box_type): New function (Bug#11768).
5070 (xg_tool_item_stale_p): Call is_box_type.
5293d758 5071 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
383b7c95
JD
5072 with default display (Bug#11768).
5073
d6e7bf45
EZ
50742012-07-05 Eli Zaretskii <eliz@gnu.org>
5075
5076 * xdisp.c (window_hscroll_limited): New function.
5077 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
5078 coordinates when window's hscroll is set to insanely large
5079 values. (Bug#11857)
5080
431391ec
JB
50812012-07-05 Juanma Barranquero <lekktu@gmail.com>
5082
5083 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
5084 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
5085
23f86fce
DA
50862012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
5087
5088 Cleanup xmalloc.
5089 * lisp.h (xzalloc): New prototype. Omit needless casts.
5090 * alloc.c (xzalloc): New function. Omit needless casts.
5091 * charset.c: Omit needless casts. Convert all calls to
5092 xmalloc with following memset to xzalloc.
5093 * dispnew.c: Likewise.
5094 * fringe.c: Likewise.
5095 * image.c: Likewise.
5096 * sound.c: Likewise.
5097 * term.c: Likewise.
5098 * w32fns.c: Likewise.
5099 * w32font.c: Likewise.
5100 * w32term.c: Likewise.
5101 * xfaces.c: Likewise.
5102 * xfns.c: Likewise.
5103 * xterm.c: Likewise.
5104 * atimer.c: Omit needless casts.
5105 * buffer.c: Likewise.
5106 * callproc.c: Likewise.
5107 * ccl.c: Likewise.
5108 * coding.c: Likewise.
5109 * composite.c: Likewise.
5110 * doc.c: Likewise.
5111 * doprnt.c: Likewise.
5112 * editfns.c: Likewise.
5113 * emacs.c: Likewise.
5114 * eval.c: Likewise.
5115 * filelock.c: Likewise.
5116 * fns.c: Likewise.
5117 * gtkutil.c: Likewise.
5118 * keyboard.c: Likewise.
5119 * lisp.h: Likewise.
5120 * lread.c: Likewise.
5121 * minibuf.c: Likewise.
5122 * msdos.c: Likewise.
5123 * print.c: Likewise.
5124 * process.c: Likewise.
5125 * region-cache.c: Likewise.
5126 * search.c: Likewise.
5127 * sysdep.c: Likewise.
5128 * termcap.c: Likewise.
5129 * terminal.c: Likewise.
5130 * tparam.c: Likewise.
5131 * w16select.c: Likewise.
5132 * w32.c: Likewise.
5133 * w32reg.c: Likewise.
5134 * w32select.c: Likewise.
5135 * w32uniscribe.c: Likewise.
5136 * widget.c: Likewise.
5137 * xdisp.c: Likewise.
5138 * xmenu.c: Likewise.
5139 * xrdb.c: Likewise.
5140 * xselect.c: Likewise.
5141
0497dc44
PE
51422012-07-05 Paul Eggert <eggert@cs.ucla.edu>
5143
5144 * fileio.c (time_error_value): Check the right error number.
5145 Problem reported by Troels Nielsen in
5146 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
5147
356e7178
PE
51482012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5149
4e71fd89
PE
5150 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
5151 This should be fixed in a better way; see Eli Zaretskii in
5152 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
5153 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
5154
f0941253
PE
5155 * fileio.c (time_error_value): Rename from special_mtime.
5156 The old name's problems were noted by Eli Zaretskii in
5157 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
5158
065c9eb4
PE
5159 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
5160 This variable's comment says Emacs needs at least one GDB-visible
5161 symbol of type enum pvec_type, to work around GDB problems.
5162 The symbol's value doesn't matter.
5163
356e7178
PE
5164 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
5165 that causes compilation to fail on pre-C99 compilers.
5166
ed9265fc 51672012-07-04 Juanma Barranquero <lekktu@gmail.com>
95f61aa2
JB
5168
5169 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
5170 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
5171
3884d954
DA
51722012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5173
d209e2fb 5174 * buffer.c (init_buffer_once): Fix initialization of
3884d954
DA
5175 headers for buffer_defaults and buffer_local_symbols.
5176 Reported by Juanma Barranquero <lekktu@gmail.com>.
5177
ee28be33
SM
51782012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
5179
5180 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
5181 * lisp.h (enum pvec_type): Use fewer bits.
5182 (PSEUDOVECTOR_SIZE_BITS): New constant.
5183 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
5184 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
5185 change in pvec_type.
5186 (PSEUDOVECTOR_TYPEP): New macro.
5187 (TYPED_PSEUDOVECTORP): Use it.
5188 * fns.c (internal_equal): Adapt code to extract pvectype.
5189 * emacs.c (gdb_pvec_type): Update type.
5190 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
5191 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
5192 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
5193 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
5194 (sweep_vectors): Use it. Use local var `total_bytes' instead of
5195 abusing vector->header.next.nbytes.
5196 (live_vector_p): Use PVEC_TYPE.
5197 (mark_object): Adapt code to extract pvectype. Use switch.
5198
c7f2cd7f
PE
51992012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5200
5201 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
5202 Tighten new eassert a bit.
5203
8ce70ed2
DA
52042012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5205
5206 Fix compilation with --enable-gcc-warnings and -O1
5207 optimization level.
5208 * doprnt.c (doprnt): Change type of tem to int, initialize
5209 to avoid compiler warning. Add eassert.
5210 * search.c (simple_search): Initialize match_byte to avoid
5211 compiler warning. Add eassert.
5212
dea7f1e5
PE
52132012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5214
24a212eb
PE
5215 Avoid weird behavior with large horizontal scrolls.
5216 Without this change, for example, large hscroll values would
5217 mess up Emacs's display on Fedora 15 x86, presumably due to
5218 overflows in int calculations in the display code.
5219 Also, if buffers had long lines, Emacs would freeze.
5220 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
5221 (set_window_hscroll): New function, containing the old guts of
5222 Fset_window_hscroll. Return the clipped value.
5223 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
5224 This avoids the need to check against PTRDIFF_MAX.
5225
dea7f1e5
PE
5226 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
5227
76046526
DA
52282012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
5229
5230 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
5231
39adff0d
PE
52322012-07-04 Paul Eggert <eggert@cs.ucla.edu>
5233
63807d47
PE
5234 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
5235 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
5236 since GCC 4.4.6 issues a bogus warning for them.
5237
39adff0d
PE
5238 Fix bugs in file timestamp newness comparisons.
5239 * fileio.c (Ffile_newer_than_file_p):
5240 * lread.c (Fload): Use full timestamp resolution of files,
5241 not just the 1-second resolution, so that files that are only
5242 slightly newer still count as newer.
5243 * fileio.c (Ffile_newer_than_file_p): Don't assume file
5244 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
5245
dbeed9a6
PE
52462012-07-03 Paul Eggert <eggert@cs.ucla.edu>
5247
5248 * fileio.c: Improve handling of file time marker. (Bug#11852)
5249 (special_mtime): New function.
5250 (Finsert_file_contents, Fverify_visited_file_modtime):
5251 Use it to set special mtime values consistently.
5252
636334d6
AS
52532012-07-03 Andreas Schwab <schwab@linux-m68k.org>
5254
5255 * fileio.c (Finsert_file_contents): Properly handle st_mtime
5256 marker for non-existing file. (Bug#11852)
5257
e2017fe2
GM
52582012-07-03 Glenn Morris <rgm@gnu.org>
5259
5260 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
5261 and did not make it into globals.h).
5262
404dbd37
TT
52632012-07-03 Tom Tromey <tromey@redhat.com>
5264
5265 * window.c (Fset_window_margins, Fset_window_fringes)
5266 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
5267 * textprop.c (Fprevious_property_change): No longer static.
5268 * syntax.c (Fsyntax_table_p): No longer static.
5269 * process.c (Fget_process, Fprocess_datagram_address): No longer
5270 static.
5271 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
5272 * keyboard.c (Fcommand_execute): No longer static.
5273 Remove EXFUN.
5274 * insdel.c (Fcombine_after_change_execute): No longer static.
5275 * image.c (Finit_image_library): No longer static.
5276 * fileio.c (Fmake_symbolic_link): No longer static.
5277 * eval.c (Ffetch_bytecode): No longer static.
5278 * editfns.c (Fuser_full_name): No longer static.
d209e2fb
JB
5279 * doc.c (Fdocumentation_property, Fsnarf_documentation):
5280 No longer static.
404dbd37
TT
5281 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
5282 static.
5283 * dired.c (Ffile_attributes): No longer static.
5284 * composite.c (Fcomposition_get_gstring): No longer static.
5285 * callproc.c (Fgetenv_internal): No longer static.
5286
5287 * ccl.h: Remove EXFUNs.
5288 * buffer.h: Remove EXFUNs.
5289 * dispextern.h: Remove EXFUNs.
5290 * intervals.h: Remove EXFUNs.
5291 * fontset.h: Remove EXFUN.
5292 * font.h: Remove EXFUNs.
5293 * dosfns.c (system_process_attributes): Remove EXFUN.
5294 * keymap.h: Remove EXFUNs.
5295 * lisp.h: Remove EXFUNs.
5296 * w32term.h: Remove EXFUNs.
5297 * window.h: Remove EXFUNs.
5298 * xsettings.h: Remove EXFUN.
5299 * xterm.h: Remove EXFUN.
5300
8e4fd1e1
GM
53012012-07-03 Glenn Morris <rgm@gnu.org>
5302
5303 * lisp.h (Frandom): Make it visible to C.
5304 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
5305 buffer for invisible buffers. (Bug#1229)
5306
ca95b3eb
DA
53072012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5308
5309 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
5310 values which aren't power of 2.
14ae4239
BT
5311 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
5312 Verify it's value and the value of VECTOR_BLOCK_SIZE. Adjust users
ca95b3eb
DA
5313 accordingly.
5314
7555c33f
SM
53152012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
5316
5317 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
5318
5319 * alloc.c (mark_object): Revert part of last patch to use `switch'.
5320
d12e8f5a
DA
53212012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5322
5323 * alloc.c (allocate_vector_block): Remove redundant
5324 calls to mallopt if DOUG_LEA_MALLOC is defined.
5325 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
5326 avoid calls to mallopt if zero_vector is returned.
5327
296094c3
DA
53282012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5329
5330 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
5331 is enabled, avoid dereferencing NULL current_sblock if
5332 running undumped.
5333
36429c89
DA
53342012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
5335
5336 Cleanup basic buffer management.
5337 * buffer.h (struct buffer): Change layout to use generic vector
5338 marking code. Fix some comments. Change type of 'clip_changed'
5339 to bitfield. Remove unused #ifndef old.
5340 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
5341 (GET_OVERLAYS_AT): Fix indentation.
5342 (for_each_per_buffer_object_at): New macro.
5343 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
5344 (Fbuffer_local_variables): Use it.
5345 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
5346 * alloc.c (allocate_buffer): Adjust to match new layout of
5347 struct buffer. Fix comment.
5348 (mark_overlay): New function.
5349 (mark_buffer): Use it. Use mark_vectorlike to mark normal
5350 Lisp area of struct buffer.
5351 (mark_object): Use it. Adjust marking of misc objects
5352 and related comments.
5353
3b3e4cac
PE
53542012-07-02 Paul Eggert <eggert@cs.ucla.edu>
5355
5356 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
5357 wrapper that is not needed because the wrapped code is a no-op (zero
5358 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
5359 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
5360
cf5c0175
DA
53612012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
5362
5363 * alloc.c (mark_buffer): Simplify. Remove prototype.
5364 (mark_object): Add comment. Reorganize marking of vector-like
faf611c7 5365 objects. Use CHECK_LIVE for all vector-like objects except buffers
14ae4239
BT
5366 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
5367 Avoid redundant calls to mark_vectorlike for bool vectors.
cf5c0175 5368
ca26824c
GM
53692012-06-30 Glenn Morris <rgm@gnu.org>
5370
2e4c5312
GM
5371 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
5372
ca26824c
GM
5373 * epaths.in (PATH_SITELOADSEARCH): New.
5374 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
5375 This is rather than relying on --enable-locallisppath elements
5376 having "site-lisp" in their names. (Bug#10208#25, 11658)
5377
0d23c240
EZ
53782012-06-30 Eli Zaretskii <eliz@gnu.org>
5379
c9240d7a
EZ
5380 * w32proc.c (sys_select): Accept and ignore one more argument.
5381
5382 * w32.c (emacs_gnutls_pull): Call select with one more argument.
5383
0d23c240 5384 * sysselect.h [DOS_NT]: Don't include sys/select.h.
9ff8f76b 5385 (pselect) [!MS_DOS]: Redirect to sys_select.
0d23c240
EZ
5386
5387 * sysdep.c: Don't include dos.h and dosfns.h.
5388
5389 * process.c (sys_select):
5390 * msdos.c (sys_select): Accept one more argument and ignore it.
5391
5392 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
5393 adapt data types and code to that.
5394
5395 * dosfns.c:
5396 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
5397 which clashes with the gnulib function of the same name.
5398
af5a5a98
AS
53992012-06-30 Andreas Schwab <schwab@linux-m68k.org>
5400
c5e4379c
AS
5401 * font.c (font_style_to_value, font_style_symbolic)
5402 (font_prop_validate_style): Add type checks for values in
5403 font_style_table.
5404
af5a5a98
AS
5405 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
5406 argument.
5407 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
5408 uses.
5409
8d38f461
EZ
54102012-06-29 Eli Zaretskii <eliz@gnu.org>
5411
2e5a6631
EZ
5412 * xdisp.c (try_window_id): Undo last change.
5413
8d38f461
EZ
5414 * w32.c (getwd): Adjust commentary about startup_dir.
5415 (init_environment): Always call sys_access, even in non-MSVC
5416 builds. Don't chdir to the directory of the Emacs executable.
5417 This undoes code from 1997 which was justified by the need to
5418 "avoid conflicts when removing and renaming directories". But its
5419 downside was that every relative file name was being interpreted
5420 relative to the directory of the Emacs executable, which can never
5421 be TRT. In particular, it broke sys_access when called with
5422 relative file names.
5423 (sys_access): Map GetLastError to errno.
5424
2af3565e
DA
54252012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5426
5427 * window.h (struct window): Change type of 'fringes_outside_margins'
5428 to bitfield. Fix comment. Adjust users accordingly.
cf5c0175 5429 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
2af3565e
DA
5430 Adjust comment.
5431 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
5432 to ptrdiff_t.
5433
c8d3a25c 54342012-06-29 Andreas Schwab <schwab@linux-m68k.org>
57570cd3 5435
c8d3a25c
GM
5436 * gnutls.c (emacs_gnutls_handshake):
5437 Add QUIT to make the loop interruptible.
57570cd3 5438
c8d3a25c 54392012-06-29 Glenn Morris <rgm@gnu.org>
d01fd55f 5440
c8d3a25c
GM
5441 * charset.c (init_charset): Make lack of etc/charsets fatal.
5442
3e984ee8
DA
54432012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5444
5445 * editfns.c (region_limit): Fix type mismatch.
5446
ef884f23
DA
54472012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
5448
5449 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
5450 undefined. Convert from xassert to eassert.
5451 * nsmenu.m: Convert from xassert to eassert.
5452 * nsterm.m: Likewise.
5453
7d7e0027
SM
54542012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
5455
5456 * editfns.c (region_limit): Clip to narrowing (bug#11770).
5457
aa754e6a
PE
54582012-06-28 Paul Eggert <eggert@cs.ucla.edu>
5459
5460 Avoid integer overflow on scroll-left and scroll-right.
5461 * window.c (HSCROLL_MAX): New macro.
5462 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
5463 overflow when requested scroll falls outside ptrdiff_t range.
5464
80b00b08
DA
54652012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5466
5467 * window.h (struct window): Change type of 'hscroll',
5468 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
5469 'last_modified' and 'last_overlay_modified' to EMACS_INT.
5470 Adjust users accordingly.
5471 * xdisp.c (try_cursor_movement): Replace type check with eassert.
5472 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
5473 from EMACS_INT to ptrdiff_t.
5474 (make_window): Omit redundant initialization.
5475
62b2bcf6
JB
54762012-06-28 Juanma Barranquero <lekktu@gmail.com>
5477
5478 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
5479
45942c7d
DA
54802012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5481
5482 * window.h (struct window): Change type of 'use_time' and
5483 'sequence_number' from Lisp_Object to int.
5484 * frame.c (make_frame): Adjust users accordingly.
5485 * print.c (print_object): Likewise.
5486 * window.c (select_window, Fwindow_use_time, make_parent_window)
5487 (make_window): Likewise.
5488
e509cfa6
DA
54892012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5490
5491 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
5492 enabled with --enable-checking=[all,glyphs] configure option.
5493 Fix GLYPH_DEBUG usage assuming that it may be undefined,
5494 adjust comments accordingly.
5495 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
5496 undefined, adjust comments accordingly.
5497 * image.c: Likewise.
5498 * scroll.c: Likewise.
5499 * w32fns.c: Likewise.
5500 * w32term.c: Likewise.
5501 * xdisp.c: Likewise.
5502 * xfaces.c: Likewise.
5503 * xfns.c: Likewise.
5504 * xterm.c: Likewise.
5505
a54e2c05
DA
55062012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
5507
5508 Generalize run-time debugging checks.
5509 * dispextern.h (XASSERTS): Remove.
5510 * fontset.c (xassert): Remove.
5511 Convert from xassert to eassert.
5512 * alloc.c: Convert from xassert to eassert.
5513 * bidi.c: Likewise.
5514 * dispnew.c: Likewise.
5515 * fns.c: Likewise.
5516 * fringe.c: Likewise.
5517 * ftfont.c: Likewise.
5518 * gtkutil.c: Likewise.
5519 * image.c: Likewise.
5520 * keyboard.c: Likewise.
5521 * menu.c: Likewise.
5522 * process.c: Likewise.
5523 * scroll.c: Likewise.
5524 * sound.c: Likewise.
5525 * term.c: Likewise.
5526 * w32console.c: Likewise.
5527 * w32fns.c: Likewise.
5528 * w32term.c: Likewise.
5529 * window.c: Likewise.
5530 * xdisp.c: Likewise.
5531 * xfaces.c: Likewise.
5532 * xfns.c: Likewise.
5533 * xselect.c: Likewise.
5534 * xterm.c: Likewise.
5535
1ec4b7b2
SM
55362012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
5537
5538 * fns.c (maybe_resize_hash_table): Output message when growing the
5539 purify-hashtable.
5540
2014308a
DA
55412012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5542
5543 * alloc.c (allocate_string_data): Remove dead code.
5544 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
5545 avoid GCC warning about unused macro.
5546
246155eb
DA
55472012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5548
5549 * alloc.c (allocate_string): Omit intervals initialization.
5550 * alloc.c (make_uninit_multibyte_string): Initialize intervals
5551 as in make_pure_string and make_pure_c_string.
5552
43184b7b
DA
55532012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5554
d209e2fb 5555 * alloc.c (allocate_string): Fix last change.
43184b7b 5556
3fe6dd74
DA
55572012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
5558
d209e2fb 5559 * alloc.c (allocate_string): Remove two redundant calls
3fe6dd74
DA
5560 to memset, add explicit initialization where appropriate.
5561
1ba6038a
GM
55622012-06-27 Glenn Morris <rgm@gnu.org>
5563
5564 * lisp.mk (lisp): Remove paths.elc.
5565
c89926a5
CY
55662012-06-27 Chong Yidong <cyd@gnu.org>
5567
5568 * doc.c (Fsubstitute_command_keys): Fix punctuation.
5569
ed6b3510
JW
55702012-06-26 John Wiegley <johnw@newartisans.com>
5571
1ec4b7b2 5572 * unexmacosx.c (copy_data_segment): Add two section names used
157e99e4
JW
5573 on Mac OS X Lion: __mod_init_func and __mod_term_func.
5574
ed6b3510
JW
5575 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
5576 when building with Clang.
5577
8edd4a2b
SM
55782012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
5579
5580 * eval.c (Fapply): Allow calling it with a single argument.
5581
f6f62d1b
EZ
55822012-06-26 Eli Zaretskii <eliz@gnu.org>
5583
5584 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
5585 _stricmp and _strnicmp.
5586 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
5587
62efea5e
DA
55882012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5589
5590 * alloc.c (allocate_window): Zero out non-Lisp part of newly
5591 allocated window.
5592 (allocate_process): Likewise for new process.
8edd4a2b 5593 (allocate_terminal): Change to use offsetof.
62efea5e
DA
5594 (allocate_frame): Likewise.
5595 * frame.c (make_frame): Omit redundant initialization.
5596 * window.c (make_parent_window): Use memset.
5597 (make_window): Omit redundant initialization.
5598 * process.c (make_process): Omit redundant initialization.
5599 * terminal.c (create_terminal): Likewise.
5600
42997f4d
DA
56012012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5602
5603 * term.c (delete_tty): Remove redundant call to memset.
5604
1130ecfc
DA
56052012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
5606
5607 * alloc.c: Remove build_string.
5608 * lisp.h: Define build_string as static inline. This provides
5609 a better opportunity to optimize away calls to strlen when the
5610 function is called with compile-time constant argument.
5611 * image.c (imagemagick_error): Convert to build_string.
5612 * w32proc.c (sys_spawnve): Likewise.
5613 * xterm.c (x_term_init): Likewise.
5614
cf38a720
PE
56152012-06-26 Paul Eggert <eggert@cs.ucla.edu>
5616
99027bdd
PE
5617 Use sprintf return value instead of invoking strlen on result.
5618 In the old days this wasn't portable, since some sprintf
5619 implementations returned char *. But they died out years ago and
5620 Emacs already assumes sprintf returns int.
5621 Similarly for float_to_string.
5622 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
5623 * ccl.c (ccl_driver):
5624 * character.c (string_escape_byte8):
5625 * data.c (Fnumber_to_string):
5626 * doprnt.c (doprnt):
5627 * print.c (print_object):
5628 * xdisp.c (message_dolog):
5629 * xfns.c (syms_of_xfns):
5630 Use sprintf or float_to_string result to avoid need to call strlen.
5631 * data.c (Fnumber_to_string):
5632 Use make_unibyte_string, since the string must be ASCII.
5633 * lisp.h, print.c (float_to_string): Now returns int length.
5634 * term.c (produce_glyphless_glyph):
5635 Use sprintf result rather than recomputing it.
5636
cf38a720
PE
5637 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
5638 * Makefile.in (ALL_CFLAGS):
5639 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
5640 * gmalloc.c, regex.c: Include <config.h> unconditionally.
5641
3511c784
DA
56422012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5643
0a08eb21 5644 * dispextern.h (xstrcasecmp): Define to library function
3511c784
DA
5645 strcasecmp if available.
5646 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
5647
fb7da12e
AS
56482012-06-25 Andreas Schwab <schwab@linux-m68k.org>
5649
5650 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
5651 Avoid comma operator.
5652 * menu.c (push_submenu_start, push_submenu_end)
5653 (push_left_right_boundary, push_menu_pane): Likewise.
5654 * msdos.c (dos_rawgetc): Likewise.
5655
afa2ffd8
DA
56562012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5657
5658 * xfns.c (xic_create_fontsetname): Remove redundant calls
5659 to memset.
5660
b3b4476b
PE
56612012-06-25 Paul Eggert <eggert@cs.ucla.edu>
5662
4495ff38
PE
5663 * gtkutil.c (get_utf8_string): Remove redundant assignment.
5664 sprintf already null-terminates its output.
5665
b3b4476b
PE
5666 * xfns.c (x_window): Remove redundant cast.
5667
b00876c9
DA
56682012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
5669
5670 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
5671 `const char *' to `char *' to avoid compiler warning.
5672
d188e26b
PE
56732012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5674
885d1d74
PE
5675 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
5676 instead of truncating it to 63 (admittedly a generous limit).
5677
d188e26b
PE
5678 * process.c: Fix spelling and caps in comments.
5679
e2f560b1
DN
56802012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
5681
e86db54b 5682 * emacs.c (setpgrp): Remove definition, unused.
e2f560b1
DN
5683 * sysdep.c (setpgrp): Remove definition, not used in this file.
5684
7583a3a1
JB
56852012-06-24 Juanma Barranquero <lekktu@gmail.com>
5686
5687 * makefile.w32-in: Update dependencies.
5688
696056c2
EZ
56892012-06-24 Eli Zaretskii <eliz@gnu.org>
5690
5691 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
5692 (SYSTIME_H): Add nt/inc/sys/time.h.
5693
5694 * systime.h [WINDOWSNT]: Include sys/time.h.
5695
5696 * s/ms-w32.h (struct timespec): Definition moved from
5697 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
5698
845ca893
PE
56992012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5700
5701 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
5702 * buffer.h (buffer_slot_type_mismatch):
5703 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
5704 * eval.c (unwind_to_catch):
5705 * image.c (my_png_error, my_error_exit):
5706 * keyboard.c (quit_throw_to_read_char, user_error)
5707 (Fexit_recursive_edit, Fabort_recursive_edit):
5708 * lisp.h (die, args_out_of_range, args_out_of_range_3)
5709 (wrong_type_argument, buffer_overflow, __executable_start)
5710 (memory_full, buffer_memory_full, string_overflow, Fthrow)
5711 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
5712 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
5713 (fatal):
5714 (child_setup) [!DOS_NT]:
5715 * lread.c (end_of_file_error, invalid_syntax):
5716 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
5717 * puresize.h (pure_write_error):
5718 * search.c (matcher_overflow):
5719 * sound.c (sound_perror, alsa_sound_perror):
5720 * sysdep.c, syssignal.h (croak):
5721 * term.c (maybe_fatal, vfatal):
5722 * textprop.c (text_read_only):
5723 * undo.c (user_error):
5724 * unexmacosx.c (unexec_error):
5725 * xterm.c (x_ins_del_lines, x_delete_glyphs):
5726 Use _Noreturn rather than NO_RETURN.
5727 No need for separate decl merely because of _Noreturn.
5728 * sound.c (sound_warning, parse_sound):
5729 Remove unnecessary forward decls.
5730
f1dd8073
PE
57312012-06-24 Paul Eggert <eggert@cs.ucla.edu>
5732
5733 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
5734 * lisp.h (WAIT_READING_MAX): New macro.
5735 * dispnew.c (Fsleep_for, sit_for):
5736 * keyboard.c (kbd_buffer_get_event):
5737 * process.c (Faccept_process_output):
5738 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
5739 This improves on the previous patch, which introduced a bug
5740 when time_t is unsigned and as wide as intmax_t.
5741 See <http://bugs.gnu.org/9000#51>.
5742
b82c1755
EZ
57432012-06-23 Eli Zaretskii <eliz@gnu.org>
5744
5745 * dispnew.c (sit_for, Fsleep_for):
5746 * keyboard.c (kbd_buffer_get_event):
5747 * process.c (Faccept_process_output): Avoid compiler warnings when
5748 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
5749
ca300656
JB
57502012-06-23 Juanma Barranquero <lekktu@gmail.com>
5751
049ec95b
JB
5752 * makefile.w32-in: Update dependencies.
5753
ca300656
JB
5754 * w32.c (ltime): Add return type and declare static.
5755 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
5756
db7b8d06
PE
57572012-06-23 Paul Eggert <eggert@cs.ucla.edu>
5758
5759 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
5760 Privately reported by Herbert J. Skuhra.
5761 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
5762 All uses changed.
5763 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
5764 not make_lisp_timeval, when the argument is of type EMACS_TIME.
5765
0bd8297f
EZ
57662012-06-23 Eli Zaretskii <eliz@gnu.org>
5767
96512555
EZ
5768 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
5769 last argument of make_unibyte_string.
5770
0bd8297f
EZ
5771 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
5772 language ID in the event parameters.
5773
5774 * w32term.c (w32_read_socket): Put the new keyboard codepage into
5775 event.code, not the obscure "character set ID".
5776
63def6b6
CY
57772012-06-23 Chong Yidong <cyd@gnu.org>
5778
5779 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
5780
e8a02204
EZ
57812012-06-23 Eli Zaretskii <eliz@gnu.org>
5782
388cdec0
EZ
5783 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
5784 * w32.c (fdutimens): New function.
5785
5786 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
5787
5788 * s/ms-w32.h (pselect): Redirect to sys_select.
5789
5790 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
5791
e8a02204
EZ
5792 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
5793 in the logic of incrementing and decrementing the value of
5794 use_relocatable_buffers.
5795
d054f3fb
PE
57962012-06-23 Paul Eggert <eggert@cs.ucla.edu>
5797
5798 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
5799 Privately reported by Herbert J. Skuhra.
5800 [__FreeBSD__]: Remove "*/" typo after "#include".
5801 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
5802 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
5803 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
5804 Don't assume EMACS_TIME and struct timeval are the same type.
5805
d35af63c
PE
58062012-06-22 Paul Eggert <eggert@cs.ucla.edu>
5807
5808 Support higher-resolution time stamps (Bug#9000).
5809 The time stamps are only nanosecond-resolution at the C level,
5810 since that's the best that any real-world system supports now.
5811 But they are picosecond-resolution at the Lisp level, as that's
5812 easy, and leaves room for future OS improvements.
5813
5814 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
5815 (LIBES): Use it.
5816
5817 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
5818 Don't get current time unless it's needed.
5819
5820 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
5821 now provides it if it's absent.
5822 (start_atimer): Port to higher-res time stamps.
5823 Check for time stamp overflow. Don't get current time more
5824 often than is needed.
5825
5826 * buffer.h (struct buffer): Buffer modtime now has high resolution.
5827 Include systime.h, not time.h.
5828 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
5829
5830 * dired.c: Include stat-time.h.
5831 (Ffile-attributes): File times now have higher resolution.
5832
5833 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
5834 (struct image): Timestamp now has higher resolution.
5835
5836 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
5837 has at least microseconds now. All uses removed.
5838 (update_frame, update_single_window, update_window, update_frame_1)
5839 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
927c7216 5840 (duration_to_sec_usec): Remove; no longer needed.
d35af63c
PE
5841
5842 * editfns.c (time_overflow): Now extern.
5843 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
5844 (float-time, Fformat_time_string, Fcurrent_time_string)
5845 (Fcurrent_time_zone): Accept and generate higher-resolution
5846 time stamps.
5847 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
5848 (decode_time_components, lisp_seconds_argument): New functions.
5849 (make_time): Now static.
5850 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
5851 Report an error if the time is invalid, rather than having the caller
5852 do that.
5853
5854 * fileio.c: Include <stat-time.h>
5855 (Fcopy_file): Copy higher-resolution time stamps.
5856 Prefer to set the time stamp via a file descriptor if that works.
5857 (Fset_file_times, Finsert_file_contents, Fwrite_region)
5858 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
5859 (Fvisited_file_modtime, Fset_visited_file_modtime):
5860 Support higher-resolution time stamps.
5861
5862 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
5863
5864 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
5865
5866 * image.c (prepare_image_for_display, clear_image_cache)
5867 (lookup_image): Port to higer-resolution time stamps.
5868
5869 * keyboard.c (start_polling, bind_polling_period):
5870 Check for time stamp overflow.
5871 (read_char, kbd_buffer_get_event, timer_start_idle)
5872 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
5873 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
5874 Port to higher-resolution time stamps. Do not assume time_t is signed.
5875 (decode_timer): New function. Timers are now vectors of length 9,
5876 not 8, to accommodate the picosecond component.
5877 (timer_check_2): Use it.
5878
5879 * nsterm.m (select_timeout, timeval_subtract): Remove.
5880 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
5881 as they're a bit more accurate and handle overflow better.
5882 (ns_select): Change prototype to be compatible with pselect.
5883 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
5884 * nsterm.h (ns_select): Adjust prototype.
5885
5886 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
5887 us-resolution time stamps.
5888 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
5889
5890 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
5891
5892 * lisp.h (time_overflow): New decl.
5893 (wait_reading_process_output): First arg is now intmax_t, not int,
5894 to accommodate larger waits.
5895
5896 * process.h (struct Lisp_Process.read_output_delay):
5897 Now counts nanoseconds, not microseconds.
5898 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
5899 EMACS_HAS_USECS.
5900 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
5901 (wait_reading_process_output):
5902 Port to ns-resolution time stamps.
5903 (Faccept_process_output, wait_reading_process_output):
5904 Check for time stamp overflow. Do not assume time_t is signed.
5905 (select_wrapper): Remove; we now use pselect.
5906 (Fprocess_attributes): Now generates ns-resolution time stamps.
5907
5908 * sysdep.c: Include utimens.h. Don't include utime.h
5909 or worry about struct utimbuf; gnulib does that for us now.
5910 (gettimeofday): Remove; gnulib provides a substitute.
5911 (make_timeval): New function.
5912 (set_file_times): Now sets ns-resolution time stamps.
5913 New arg FD; all uses changed.
5914 (time_from_jiffies, ltime_from_jiffies, get_up_time)
5915 (system_process_attributes):
5916 Now returns ns-resolution time stamp. All uses changed.
5917 Check for time stamp overflow.
5918
5919 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
5920 provides a substitute now.
5921
5922 * systime.h: Include timespec.h rather than sys/time.h and time.h,
5923 since it guarantees struct timespec.
5924 (EMACS_TIME): Now struct timespec, so that we can support
5925 ns-resolution time stamps.
5926 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
5927 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
5928 (EMACS_USECS): Remove.
5929 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
5930 so multiply the arg by 1000 before storing it.
5931 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
5932 New macros.
5933 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
5934 Port to ns-resolution time stamps.
5935 (EMACS_TIME_NEG_P): Remove; replaced by....
5936 (EMACS_TIME_SIGN): New macro.
5937 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
5938 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
5939 (set_file_times, make_time, lisp_time_argument): Adjust signature.
5940 (make_timeval, make_lisp_time, decode_time_components): New decls.
5941 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
5942 that it mishandled time_t overflow. You can't compare by subtracting!
5943 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
5944 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
5945
5946 * term.c: Include <sys/time.h>.
5947 (timeval_to_Time): New function, for proper overflow wraparound.
5948 (term_mouse_position, term_mouse_click): Use it.
5949
5950 * undo.c (record_first_change): Support higher-resolution time stamps
5951 in the undo buffer.
5952 (Fprimitive_undo): Use them when restoring time stamps.
5953
5954 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
5955 (w32_get_internal_run_time):
5956 Port to higher-resolution Emacs time stamps.
5957 (ltime): Now accepts single 64-bit integer, as that's more convenient
5958 for callers.
5959
5960 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
5961
5962 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
5963 for compatibility with pselect. Support ns-resolution time stamps.
5964
5965 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
5966
5967 * xselect.c (wait_for_property_change, x_get_foreign_selection):
5968 Check for time stamp overflow, and support ns-resolution time stamps.
5969
5970 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
5971 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
5972 (timeval_subtract): Remove; no longer needed.
5973 (XTflash, XTring_bell, x_wait_for_event):
5974 Port to ns-resolution time stamps. Don't assume time_t is signed.
5975
b6a92dfe
CY
59762012-06-22 Chong Yidong <cyd@gnu.org>
5977
5978 * xdisp.c (x_consider_frame_title): Revert last change.
5979
d251c37c
EZ
59802012-06-22 Eli Zaretskii <eliz@gnu.org>
5981
5982 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
5983 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
5984 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
5985 staticidx goes up to 1597 out of 1600 = 0x640.)
5986
f10deafb
PE
59872012-06-20 Paul Eggert <eggert@cs.ucla.edu>
5988
5989 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
5990 Otherwise, the umask might be mistakenly 0 while handling input signals.
5991
ec6de1e2
SM
59922012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
5993
5994 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
5995
28be1ada
DA
59962012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
5997
5998 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
5999 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
6000 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
6001 access to `contents' member of Lisp_Vector objects with AREF and ASET
6002 where appropriate.
6003
c6bf3022
CY
60042012-06-19 Chong Yidong <cyd@gnu.org>
6005
6006 * frame.c (delete_frame): When selecting a frame on a different
6007 text terminal, do not alter the terminal's top-frame.
6008
6009 * xdisp.c (format_mode_line_unwind_data): Record the target
6010 frame's selected window and its terminal's top-frame.
6011 (unwind_format_mode_line): Restore them.
6012 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
6013 Callers changed.
6014 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
6015 since tty frames can be explicitly named.
6016 (prepare_menu_bars): Likewise.
6017
6018 * term.c (Ftty_top_frame): New function.
6019
defd4196
PE
60202012-06-18 Paul Eggert <eggert@cs.ucla.edu>
6021
6022 Port byte-code-meter to modern targets.
6023 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
6024 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8b5257e1 6025 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
defd4196
PE
6026 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
6027 (METER_1, METER_2): Simplify.
6028
1053a871
SM
60292012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
6030
6031 * data.c (Fdefalias): Return `symbol' (bug#11686).
6032
b7e8d081
MR
60332012-06-18 Martin Rudalics <rudalics@gmx.at>
6034
6035 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
1053a871
SM
6036 gets killed during executing of this function (Bug#11665).
6037 Try to always return Qt when the buffer has been actually killed.
b7e8d081
MR
6038 (Vkill_buffer_query_functions): In doc-string say that functions
6039 run by this hook should not change the current buffer.
6040
7ea2b339
PE
60412012-06-18 Paul Eggert <eggert@cs.ucla.edu>
6042
6043 Fix recently-introduced process.c problems found by static checking.
6044 * process.c (write_queue_push, write_queue_pop, send_process):
6045 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
6046 (write_queue_pop): Fix pointer signedness problem.
6047 (send_process): Remove unused local.
6048
96a313a1
CY
60492012-06-17 Chong Yidong <cyd@gnu.org>
6050
6051 * xdisp.c (redisplay_internal): No need to redisplay terminal
6052 frames that are not on top.
6053
20ca2e94
TN
60542012-06-17 Troels Nielsen <bn.troels@gmail.com>
6055
6056 * process.c (make_process): Initialize write_queue.
6057 (write_queue_push, write_queue_pop): New functions.
6058 (send_process): Use them to maintain correct ordering of process
6059 writes (Bug#10815).
6060
9a900ca9
PE
60612012-06-17 Paul Eggert <eggert@cs.ucla.edu>
6062
310fbfa8
PE
6063 * lisp.h (eassert): Assume C89 or later.
6064 This removes the need for CHECK.
6065 (CHECK): Remove. Its comments about always evaluating its
6066 argument were confusing, as 'eassert' typically does not evaluate
6067 its argument.
6068
27bb1ca4
PE
6069 * coding.c (produce_chars): Use ptrdiff_t, not int.
6070
9a900ca9
PE
6071 * xterm.c (x_draw_underwave): Check for integer overflow.
6072 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
6073
41b7f8bc 60742012-06-17 Jan Djärv <jan.h.d@swipnet.se>
50a93863
JD
6075
6076 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
6077 referenced (Bug#11583).
6078
9b0e3eba
AA
60792012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
6080
6081 Implement wave-style variant of underlining.
6082 * dispextern.h (face_underline_type): New enum.
6083 (face): Add field for underline type.
6084 * nsterm.m (ns_draw_underwave): New function.
6085 (ns_draw_text_decoration): Use it.
6086 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
6087 New functions.
6088 (x_draw_glyph_string): Use them.
6089 * xfaces.c (Qline, Qwave): New Lisp objects.
6090 (check_lface_attrs, merge_face_ref)
1053a871
SM
6091 (Finternal_set_lisp_face_attribute, realize_x_face):
6092 Handle wave-style underline face attributes.
9b0e3eba
AA
6093 * xterm.c (x_draw_underwave): New function.
6094 (x_draw_glyph_string): Use it.
6095
0fb52f11
JB
60962012-06-16 Juanma Barranquero <lekktu@gmail.com>
6097
6098 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
6099 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
6100 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
6101 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
6102 ($(BLD)/w32select.$(O)): Update dependencies.
6103
e5560ff7
AS
61042012-06-16 Andreas Schwab <schwab@linux-m68k.org>
6105
6106 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
6107 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
6108 * character.c (_fetch_multibyte_char_p): Remove.
6109 * alloc.c: Include "character.h" before "buffer.h".
6110 * bidi.c: Likewise.
6111 * buffer.c: Likewise.
6112 * bytecode.c: Likewise.
6113 * callint.c: Likewise.
6114 * callproc.c: Likewise.
6115 * casefiddle.c: Likewise.
6116 * casetab.c: Likewise.
6117 * category.c: Likewise.
6118 * cmds.c: Likewise.
6119 * coding.c: Likewise.
6120 * composite.c: Likewise.
6121 * dired.c: Likewise.
6122 * dispnew.c: Likewise.
6123 * doc.c: Likewise.
6124 * dosfns.c: Likewise.
6125 * editfns.c: Likewise.
6126 * emacs.c: Likewise.
6127 * fileio.c: Likewise.
6128 * filelock.c: Likewise.
6129 * font.c: Likewise.
6130 * fontset.c: Likewise.
6131 * fringe.c: Likewise.
6132 * indent.c: Likewise.
6133 * insdel.c: Likewise.
6134 * intervals.c: Likewise.
6135 * keyboard.c: Likewise.
6136 * keymap.c: Likewise.
6137 * lread.c: Likewise.
6138 * macros.c: Likewise.
6139 * marker.c: Likewise.
6140 * minibuf.c: Likewise.
6141 * nsfns.m: Likewise.
6142 * nsmenu.m: Likewise.
6143 * print.c: Likewise.
6144 * process.c: Likewise.
6145 * regex.c: Likewise.
6146 * region-cache.c: Likewise.
6147 * search.c: Likewise.
6148 * syntax.c: Likewise.
6149 * term.c: Likewise.
6150 * textprop.c: Likewise.
6151 * undo.c: Likewise.
6152 * unexsol.c: Likewise.
6153 * w16select.c: Likewise.
6154 * w32fns.c: Likewise.
6155 * w32menu.c: Likewise.
6156 * window.c: Likewise.
6157 * xdisp.c: Likewise.
6158 * xfns.c: Likewise.
6159 * xmenu.c: Likewise.
6160 * xml.c: Likewise.
6161 * xselect.c: Likewise.
6162
2f07e6af
EZ
61632012-06-16 Eli Zaretskii <eliz@gnu.org>
6164
1053a871
SM
6165 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
6166 If all the glyphs of the glyph row came from strings, and we have no
2f07e6af 6167 cursor positioning clues, put the cursor on the first glyph of the
1097afe4
EZ
6168 row.
6169 (handle_face_prop): Use chunk-relative overlay string index when
6170 indexing into it->string_overlays array. (Bug#11653)
946fdb73
EZ
6171 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
6172 the rightmost. (Bug#11720)
2f07e6af 6173
29b83cec
AS
61742012-06-16 Andreas Schwab <schwab@linux-m68k.org>
6175
6176 * category.h (CHAR_HAS_CATEGORY): Define as inline.
6177 (CATEGORY_MEMBER): Enforce 1/0 value.
6178 * category.c (_temp_category_set): Remove.
6179
4c5501e9
EZ
61802012-06-16 Eli Zaretskii <eliz@gnu.org>
6181
6182 * window.c (Fdelete_other_windows_internal)
6183 (Fdelete_window_internal): Don't access frame's mouse highlight
6184 info of the initial frame. (Bug#11677)
6185
2b570124
PE
61862012-06-14 Paul Eggert <eggert@cs.ucla.edu>
6187
e93864f9
PE
6188 * .gdbinit (xgetint): Fix recently-introduced paren typo.
6189 Assume USE_2_TAGS_FOR_INTS.
6190 (xreload): Adjust $tagmask width to match recent lisp.h change.
6191
2b570124
PE
6192 Simplify lisp.h in minor ways that should not affect code.
6193 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
6194 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
6195 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
6196 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
6197 (INTTYPEBITS): New macro, for clarity.
6198 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
1053a871
SM
6199 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
6200 Simplify now that USE_LSB_TAG is always defined.
2b570124
PE
6201 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
6202 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
6203
81755f69
JB
62042012-06-13 Juanma Barranquero <lekktu@gmail.com>
6205
6206 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
6207
16192a57
GM
62082012-06-13 Glenn Morris <rgm@gnu.org>
6209
6210 * s/bsd-common.h (BSD4_3):
6211 * s/usg5-4-common.h (USG5_4): No longer define; unused.
6212
646b5f55
AS
62132012-06-13 Andreas Schwab <schwab@linux-m68k.org>
6214
6215 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
6216 instead of union.
6217 (XLI, XIL): Define.
1053a871
SM
6218 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
6219 Use them.
6220 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
646b5f55 6221 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
1053a871 6222 * alloc.c (widen_to_Lisp_Object): Remove.
646b5f55
AS
6223 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
6224 * frame.c (delete_frame): Remove outdated comment.
6225 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
6226 USE_LISP_UNION_TYPE.
6227 (Fw32_unregister_hot_key): Likewise.
6228 (Fw32_toggle_lock_key): Likewise.
6229 * w32menu.c (add_menu_item): Likewise.
6230 (w32_menu_display_help): Use XIL instead of checking
6231 USE_LISP_UNION_TYPE.
6232 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
6233 (init_heap): Likewise.
6234 * w32term.c (w32_read_socket): Update comment.
6235
1d3823c9
GM
62362012-06-13 Glenn Morris <rgm@gnu.org>
6237
c62ff706
GM
6238 * s/usg5-4-common.h, src/s/unixware.h:
6239 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
6240
1d3823c9
GM
6241 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
6242
bfe3e0a2
PE
62432012-06-13 Paul Eggert <eggert@cs.ucla.edu>
6244
6245 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
6246 * alloc.c (make_number) [!defined make_number]:
6247 Remove, as lisp.h always defines this now.
6248 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
6249 (roundup_size): Verify that it is a power of 2.
6250 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
6251 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
6252 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
6253 -DUSE_LSB_TAG=0, to override the automatically-selected default.
6254 USE_LSB_TAG now is always defined to be either 0 or 1.
6255 All uses changed.
6256 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
6257 code works fine either way, and efficiency is not a concern here,
6258 as the union type is for debugging, not for production.
6259 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
6260 Use an inline function on all platforms when using the union type,
6261 since this is simpler and 'static inline' can be used portably
6262 within Emacs now.
6263 (LISP_INITIALLY_ZERO): New macro.
6264 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
6265 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
6266
45fa9c0f
GM
62672012-06-12 Glenn Morris <rgm@gnu.org>
6268
b4492cba
GM
6269 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
6270
6271 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
0d369729 6272
45fa9c0f
GM
6273 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
6274 Move BROKEN_SIGIO to configure.
6275
6276 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
6277 Move NO_TERMIO to configure.
6278
0e25d334
CY
62792012-06-12 Chong Yidong <cyd@gnu.org>
6280
6281 * image.c (imagemagick_load_image): Use MagickFlattenImage if
6282 MagickMergeImageLayers is undefined. Use pixel pusher loop if
6283 MagickExportImagePixels is undefined.
6284
43682bb6
PE
62852012-06-12 Paul Eggert <eggert@cs.ucla.edu>
6286
6287 * image.c (imagemagick_load_image): Remove unused label.
6288
a9be7d2b
GM
62892012-06-11 Glenn Morris <rgm@gnu.org>
6290
6291 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
6292 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
6293 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
6294 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
6295
3017f87f
SM
62962012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
6297
6298 * alloc.c (make_byte_code): New function.
6299 (Fmake_byte_code): Use it. Don't purify here.
6300 * lread.c (read1): Use it as well to avoid extra allocation.
6301
1b9b4cf4
CY
63022012-06-11 Chong Yidong <cyd@gnu.org>
6303
6304 * image.c (imagemagick_load_image): Implement transparency.
6305
95988fcf
AS
63062012-06-10 Andreas Schwab <schwab@linux-m68k.org>
6307
6308 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
6309 account for preceding backslashes. (Bug#11663)
6310
cd4eb164
CY
63112012-06-09 Chong Yidong <cyd@gnu.org>
6312
6313 * term.c: Support italics in capable terminals (Bug#9652).
6314 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
6315 (turn_on_face): Output using TS_enter_italic_mode if available.
6316 Don't handle unused blinking and alt-charset cases.
6317 (turn_off_face): Handle italic case; discard unused tty_blinking_p
6318 and tty_alt_charset_p cases.
6319 (tty_capable_p, init_tty): Support italics.
6320
6321 * termchar.h (struct tty_display_info): Add field for italics.
6322 Remove unused blink field.
6323
6324 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
6325 Handle slant.
6326
6327 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
6328 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
6329 tty_alt_charset_p. Add tty_italic_p.
6330
ff88beb8
MA
63312012-06-09 Michael Albinus <michael.albinus@gmx.de>
6332
6333 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
6334 dbus_type_is_basic if available.
6335 (xd_extract_signed, xd_extract_unsigned): Rename from
6336 extract_signed and extract_unsigned, respectively. Adapt callers.
6337
44286096
CY
63382012-06-09 Chong Yidong <cyd@gnu.org>
6339
1682701f
CY
6340 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
6341
44286096
CY
6342 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
6343 case (Bug#9752).
6344
d86feb17
PE
63452012-06-08 Paul Eggert <eggert@cs.ucla.edu>
6346
6347 * xdisp.c (vmessage): Treat frame message as multibyte.
6348 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
6349 would generate the diagnostic "Making \302\247 buffer-local while
6350 let-bound!".
6351
d5c20fe8
EZ
63522012-06-08 Eli Zaretskii <eliz@gnu.org>
6353
6354 * dispnew.c (showing_window_margins_p): Undo last change, which
6355 was done due to an inadvertent commit.
6356 (adjust_frame_glyphs_for_frame_redisplay): Do call
6357 showing_window_margins_p.
6358
513749ee
SM
63592012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6360
6361 * eval.c (Fmake_var_non_special): New primitive.
6362 (syms_of_eval): Defsubr it.
6363 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
6364
d4a8f5c1
JB
63652012-06-08 Juanma Barranquero <lekktu@gmail.com>
6366
6367 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
6368 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
6369
8bbbc977
EZ
63702012-06-08 Eli Zaretskii <eliz@gnu.org>
6371
6372 * alloc.c (allocate_vectorlike): Fix last change.
6373
f3372c87
DA
63742012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
6375
6376 Block-based vector allocation of small vectors.
6377 * lisp.h (struct vectorlike_header): New field `nbytes',
6378 adjust comment accordingly.
6379 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
fc0c31f8 6380 to denote vector blocks. Adjust users (live_vector_p,
f3372c87
DA
6381 mark_maybe_pointer, valid_lisp_object_p) accordingly.
6382 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
6383 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
6384 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
6385 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
6386 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
6387 (roundup_size): New constant.
6388 (struct vector_block): New data type.
6389 (vector_blocks, vector_free_lists, zero_vector): New variables.
513749ee 6390 (all_vectors): Rename to `large_vectors'.
f3372c87
DA
6391 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
6392 (sweep_vectors): New functions.
6393 (allocate_vectorlike): Return `zero_vector' as the only vector of
fc0c31f8 6394 0 items. Allocate new vector from block if vector size is less than
f3372c87
DA
6395 or equal to VBLOCK_BYTES_MAX.
6396 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
6397 (init_alloc_once): Add call to init_vectors.
6398
4f18a4ed
SM
63992012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
6400
6401 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
6402
86f158bc
PE
64032012-06-07 Paul Eggert <eggert@cs.ucla.edu>
6404
6405 * doprnt.c (doprnt): Truncate multibyte char correctly.
6406 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
6407 would mishandle a string argument "Xc" if X was a multibyte
6408 character of length 2: it would truncate after X's first byte
6409 rather than including all of X.
6410
c5cfcbe0
CY
64112012-06-06 Chong Yidong <cyd@gnu.org>
6412
6413 * buffer.c (word_wrap): Doc fix.
6414
c05cf390
PE
64152012-06-04 Paul Eggert <eggert@cs.ucla.edu>
6416
6417 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
6418
0c3461de
GM
64192012-06-03 Glenn Morris <rgm@gnu.org>
6420
6421 * xdisp.c (tool-bar-style): Doc fix.
6422
c71232db
UM
64232012-06-03 Ulrich Müller <ulm@gentoo.org>
6424
6425 * Makefile.in (PAXCTL): Define.
6426 (temacs$(EXEEXT)): Disable memory randomization for the temacs
6427 binary via PaX flags if the paxctl utility is available.
6428 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
6429 Restore PaX flags to their default. (Bug#11398)
6430
383f7350
CY
64312012-06-03 Chong Yidong <cyd@gnu.org>
6432
6433 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
6434 buffer (Bug#11226).
6435
5f2c76c6
CY
64362012-06-03 Chong Yidong <cyd@gnu.org>
6437
6438 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
6439 (note_mode_line_or_margin_highlight): If there is no help echo,
6440 use mode-line-default-help-echo. Handle the case where the mouse
6441 position is past the end of the mode line string.
6442
6443 * buffer.c (buffer_local_value_1): New function, split from
6444 Fbuffer_local_value; can return Qunbound.
6445 (Fbuffer_local_value): Use it.
6446 (Vmode_line_format): Docstring tweaks.
6447
773d47f6
PE
64482012-06-02 Paul Eggert <eggert@cs.ucla.edu>
6449
6450 * sysdep.c (system_process_attributes): Improve comment.
6451
f2d6a3df
SM
64522012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
6453
6454 * keyboard.c: Export real-this-command to Elisp.
6455 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
6456 and DEFVAR it. Update all users.
6457
63810350
PE
64582012-06-02 Paul Eggert <eggert@cs.ucla.edu>
6459
7bd5c1f4
PE
6460 * minibuf.c (Fassoc_string): Remove duplicate declaration.
6461
63810350
PE
6462 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
6463 Convert pctcpu and pctmem to Lisp float properly.
6464 Let the compiler fold better, as 100.0/0x8000 is exact.
6465
a2821611
AS
64662012-06-02 Andreas Schwab <schwab@linux-m68k.org>
6467
6468 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
6469 cons_block.
6470
5fceba1d
PE
64712012-06-01 Paul Eggert <eggert@cs.ucla.edu>
6472
6473 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
6474
c98ff5dd
DA
64752012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
6476
6477 For a 'struct window', replace some Lisp_Object fields to
6478 bitfields where appropriate, remove unused fields.
6479 * window.h (struct window): Remove unused 'last_mark_x' and
6480 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
6481 change it's type from Lisp_Object to bitfield.
6482 Change type of 'force_start', 'optional_new_start',
6483 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
fc0c31f8 6484 fields from Lisp_Object to bitfield. Adjust users accordingly.
c98ff5dd 6485
ca34e0be
PE
64862012-05-31 Paul Eggert <eggert@cs.ucla.edu>
6487
6488 Pacify gcc -Wdouble-precision when using Xaw.
6489 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
6490 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
6491 Use 'float' consistently, rather than 'float' in most places
6492 and 'double' in a couple of places.
6493
efc00ab1 64942012-05-31 Eli Zaretskii <eliz@gnu.org>
d5fd2c54
EZ
6495
6496 * xdisp.c (handle_stop): Detect whether we have overlay strings
6497 loaded by testing it->current.overlay_string_index to be
6498 non-negative, instead of checking whether n_overlay_strings is
6499 positive. (Bug#11587)
6500
efc00ab1 65012012-05-31 Chong Yidong <cyd@gnu.org>
353c87f6
CY
6502
6503 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
6504
6505 * doc.c (Fsubstitute_command_keys): Doc fix.
6506
efc00ab1 65072012-05-31 Eli Zaretskii <eliz@gnu.org>
a02ae4e5
EZ
6508
6509 * search.c (search_buffer): Remove calls to
6510 r_alloc_inhibit_buffer_relocation, as it is now called by
6511 maybe_unify_char, which was the cause of relocation of buffer text
6512 in bug#11519.
6513
efc00ab1 65142012-05-31 Eli Zaretskii <eliz@gnu.org>
291d430f
EZ
6515
6516 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
6517 for the duration of call to load_charset, to avoid problems with
6518 callers of maybe_unify_char that access buffer text through C
6519 pointers.
6520
6521 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
6522 decrement the inhibition flag, instead of just setting or
6523 resetting it.
6524
ba93a187
PE
65252012-05-31 Paul Eggert <eggert@cs.ucla.edu>
6526
6527 Remove obsolete '#define static' cruft.
6528 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
6529 This #undef was "temporary" in 2000; it is no longer needed
6530 now that '#define static' has gone away.
6531 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
6532 (gray_bitmap_bits): Remove; no longer needed.
6533 All uses replaced with definiens.
6534 * xterm.c: Include "bitmaps/gray.xbm".
6535
9e4bf381
PE
65362012-05-30 Paul Eggert <eggert@cs.ucla.edu>
6537
6538 Clean up __executable_start, monstartup when --enable-profiling.
6539 The following changes affect the code only when profiling.
6540 * dispnew.c (__executable_start): Rename from safe_bcopy.
6541 Define only on platforms that need it.
6542 * emacs.c: Include <sys/gmon.h> when profiling.
6543 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
6544 (__executable_start): Remove decl, since lisp.h does it now.
6545 (safe_bcopy): Remove decl; no longer has that name.
6546 (main): Coalesce #if into single bit of code, for simplicity.
6547 Cast pointers to uintptr_t, since standard libraries want integers
6548 and not pointers.
6549 * lisp.h (__executable_start): New decl.
6550
32d72c2f
GM
65512012-05-31 Glenn Morris <rgm@gnu.org>
6552
6553 * image.c (Fimagemagick_types): Doc fix.
6554
baac5bc7
JM
65552012-05-30 Jim Meyering <meyering@redhat.com>
6556
6557 * callproc.c (Fcall_process_region): Include directory component
6558 in mkstemp error message (Bug#11586).
6559
72cb32cf
PE
65602012-05-30 Paul Eggert <eggert@cs.ucla.edu>
6561
6562 * alloc.c, lisp.h (make_pure_vector): Now static.
6563
61b108cc
SM
65642012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
6565
6566 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
6567 Move to byte-run.el.
6568 (Fautoload): Do the hash-doc more carefully.
6569 * data.c (Fdefalias): Purify definition, except for keymaps.
6570 (Qdefun): Move from eval.c.
6571 * lisp.h (Qdefun): Remove.
6572 * lread.c (read1): Tiny simplification.
6573
471fe23d
TN
65742012-05-29 Troels Nielsen <bn.troels@gmail.com>
6575
934f3f58 6576 Do not create empty overlays with the evaporate property (Bug#9642).
471fe23d
TN
6577 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
6578 Bug#9642, but explicitly check that the buffer the overlay would
6579 be moved to is live and rearrange lines to make sure that errors
6580 will not put the overlay in an inconsistent state.
6581 (Fdelete_overlay): Cosmetics.
6582
85d0efd1
EZ
65832012-05-28 Eli Zaretskii <eliz@gnu.org>
6584
6585 * w32term.c (my_bring_window_to_top): New function.
6586 (x_raise_frame): Use handle returned by DeferWindowPos, which
61b108cc
SM
6587 could be different from the original one.
6588 Call my_bring_window_to_top instead of my_set_foreground_window.
85d0efd1
EZ
6589 (Bug#11513)
6590
6591 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
6592 by calling BringWindowToTop.
6593
6594 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
6595 (WM_EMACS_END): Increase by one.
6596
da92a98c
PE
65972012-05-28 Paul Eggert <eggert@cs.ucla.edu>
6598
6599 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
6600 This avoids undefined behavior that might cause the eassert
6601 to not catch an out-of-range value.
6602
74d1f848
JB
66032012-05-28 Juanma Barranquero <lekktu@gmail.com>
6604
6605 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
6606 Update dependencies.
6607
9e1a06fc
EZ
66082012-05-27 Eli Zaretskii <eliz@gnu.org>
6609
6610 * bidi.c (bidi_mirror_char): Fix last change.
6611
f3dd7312
AS
66122012-05-27 Andreas Schwab <schwab@linux-m68k.org>
6613
6614 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
6615 when referring to sectname field in printf format.
6616
81899c91
PE
66172012-05-27 Paul Eggert <eggert@cs.ucla.edu>
6618
57b81a9f
PE
6619 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
6620 Only r_alloc_inhibit_buffer_relocation needed to be added;
6621 the others were already declared.
6622
81899c91
PE
6623 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
6624 before checking whether it's out of range. Put the check inside
6625 eassert. See
6626 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
6627
33017faf 66282012-05-27 Ken Brown <kbrown@cornell.edu>
2f9b9adb
KB
6629
6630 * callproc.c (Fcall_process): Restore a line that was accidentally
6631 commented out in the 2011-02-13 change (bug#11547).
6632
33017faf 66332012-05-27 Eli Zaretskii <eliz@gnu.org>
52c55cc7
EZ
6634
6635 * lisp.h [REL_ALLOC]: Add prototypes for external functions
6636 defined on ralloc.c.
6637
6638 * buffer.c [REL_ALLOC]: Remove prototypes of
6639 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
6640 they are now on lisp.h.
6641
6642 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
6643
6644 * search.c (search_buffer): Use it to inhibit relocation of buffer
6645 text while re_search_2 is doing its job, because re_search_2 is
6646 passed C pointers to buffer text. (Bug#11519)
6647
23415acf
EZ
6648 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
6649 Update value to 24.
6650
44e27368
EZ
6651 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
6652 state after an additional call to move_it_in_display_line_to, keep
6653 the values of it->max_ascent and it->max_descent found for the
6654 entire line.
6655 (pos_visible_p): Revert the comparison against bottom_y to what it
6656 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
6657 (Bug#11464)
6658
c1892f11
PE
66592012-05-26 Paul Eggert <eggert@cs.ucla.edu>
6660
6661 Fix coding-related core dumps with gcc -ftrapv.
6662 The code was computing A - B, where A and B are pointers, and B is
6663 random garbage. This can lead to core dumps on platforms that
6664 have special pointer registers, and it also leads to core dumps on
6665 x86-64 when compiled with gcc -ftrapv. The fix is to compute
6666 A - B only when B is initialized properly.
6667 * coding.c (coding_set_source, coding_set_destination): Return void.
6668 (coding_change_source, coding_change_destinations): New functions,
6669 with the old behaviors of coding_set_source and coding_set_destination.
6670 All callers that need an offset changed to use these new functions.
6671
eb7afdad
GM
66722012-05-26 Glenn Morris <rgm@gnu.org>
6673
6674 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
6675
f12fdf02
EZ
66762012-05-26 Eli Zaretskii <eliz@gnu.org>
6677
53a63be6 6678 Extend mouse support on W32 text-mode console.
61b108cc
SM
6679 * xdisp.c (draw_row_with_mouse_face):
6680 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
eb3f6f01 6681
eb3f6f01 6682 * w32console.c: Include window.h.
61b108cc
SM
6683 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
6684 New functions.
eb3f6f01
EZ
6685 (initialize_w32_display): Initialize mouse-highlight data.
6686
53a63be6
EZ
6687 * w32inevt.c: Include termchar.h and window.h.
6688 (do_mouse_event): Support mouse-autoselect-window. When the mouse
6689 moves, call note_mouse_highlight. If help_echo changed, call
6690 gen_help_event to produce help-echo message in the echo area.
6691 Call clear_mouse_face if mouse_face_hidden is set in the mouse
6692 highlight info.
6693
4cfd81f6
PE
66942012-05-26 Paul Eggert <eggert@cs.ucla.edu>
6695
6696 * lread.c (read1): Simplify slightly to avoid an overflow warning
6697 with GCC 4.7.0 on x86-64.
6698
4446092a
EZ
66992012-05-26 Eli Zaretskii <eliz@gnu.org>
6700
6701 * bidi.c (bidi_mirror_char): Revert last change: an int is
6702 definitely wide enough here.
6703
42b2a986 67042012-05-25 Paul Eggert <eggert@cs.ucla.edu>
3164aeac 6705
42b2a986 6706 Fix integer width and related bugs (Bug#9874).
eb106a49 6707 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
d311d28c
PE
6708 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
6709 (string_bytes, check_sblock, allocate_string_data):
6710 (compact_small_strings, Fmake_bool_vector, make_string)
6711 (make_unibyte_string, make_multibyte_string)
6712 (make_string_from_bytes, make_specified_string)
6713 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
6714 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
6715 (mark_vectorlike):
6716 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6717 (allocate_pseudovector):
6718 Use int, not EMACS_INT, where int is wide enough.
6719 (inhibit_garbage_collection, Fgarbage_collect):
6720 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6721 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
6722 int might not be wide enough.
6723 (bidi_cache_search, bidi_cache_find, bidi_init_it)
6724 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
6725 (bidi_at_paragraph_end, bidi_find_paragraph_start)
6726 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
6727 (bidi_level_of_next_char, bidi_move_to_visually_next):
6728 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6729 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
6730 (Fkill_buffer, Fset_buffer_major_mode)
6731 (advance_to_char_boundary, Fbuffer_swap_text)
6732 (Fset_buffer_multibyte, overlays_at, overlays_in)
6733 (overlay_touches_p, struct sortvec, record_overlay_string)
6734 (overlay_strings, recenter_overlay_lists)
6735 (adjust_overlays_for_insert, adjust_overlays_for_delete)
6736 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
6737 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
6738 (Foverlay_recenter, last_overlay_modification_hooks_used)
6739 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
6740 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
977b0e45
PE
6741 (validate_region): Omit unnecessary test for b <= e,
6742 since that's guaranteed by the previous test.
d311d28c
PE
6743 (adjust_overlays_for_delete): Avoid pos + length overflow.
6744 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
6745 (report_overlay_modification):
6746 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6747 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
6748 Omit pointer cast, which isn't needed anyway, and doesn't work
6749 after the EMACS_INT -> ptrdiff_t change.
02481186 6750 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
d311d28c
PE
6751 * buffer.h: Adjust decls to match defn changes elsewhere.
6752 (struct buffer_text, struct buffer):
6753 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6754 Use EMACS_INT, not int, where int might not be wide enough.
39b5db3b
PE
6755 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
6756 not int, to avoid needless 32-bit limit on 64-bit hosts.
6757 (exec_byte_code): Use tighter memory-full test, one that checks
6758 for alloca overflow. Don't compute the address of the object just
6759 before an array, as that's not portable. Use EMACS_INT, not
6760 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
d311d28c
PE
6761 * callint.c (Fcall_interactively):
6762 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6763 * callproc.c (call_process_kill, Fcall_process):
6764 Don't assume pid_t fits into an Emacs fixnum.
6765 (call_process_cleanup, Fcall_process, child_setup):
6766 Don't assume pid_t fits into int.
6767 (call_process_cleanup, Fcall_process, delete_temp_file)
6768 (Fcall_process_region):
6769 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6770 (Fcall_process): Simplify handling of volatile integers.
6771 Use int, not EMACS_INT, where int will do.
6772 * casefiddle.c (casify_object, casify_region, operate_on_word)
6773 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
6774 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6775 (casify_object): Avoid integer overflow when overallocating buffer.
6776 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
45c2afd6 6777 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
d311d28c
PE
6778 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
6779 * category.h (CATEGORYP): Don't assume arg is nonnegative.
6780 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
6781 integers are now checked earlier. All uses replaced with XINT.
6782 (ccl_driver):
6783 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6784 For CCL_MapSingle, check that content and value are in int range.
c801946a
PE
6785 (ccl_driver, Fregister_code_conversion_map):
6786 Check that Vcode_version_map_vector is a vector.
d311d28c
PE
6787 (resolve_symbol_ccl_program): Check that vector header is in range.
6788 Always copy the vector, so that we can check its contents reliably
6789 now rather than having to recheck each instruction as it's being
6790 executed. Check that vector words fit in 'int'.
6791 (ccl_get_compiled_code, Fregister_ccl_program)
6792 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
6793 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
6794 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
6795 contents are in range.
6796 (Fccl_execute_on_string): Check that status is in range.
6797 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
6798 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
6799 Accept and return EMACS_INT, not int, because callers can pass values
6800 out of 'int' range.
6801 (c_string_width, strwidth, lisp_string_width, chars_in_text)
6802 (multibyte_chars_in_text, parse_str_as_multibyte)
6803 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
6804 (str_as_unibyte, str_to_unibyte, string_count_byte8)
6805 (string_escape_byte8, Fget_byte):
6806 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
a14e1568 6807 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
d311d28c
PE
6808 avoid mishandling large integers.
6809 * character.h: Adjust decls to match defn changes elsewhere.
6810 * charset.c (load_charset_map_from_file, find_charsets_in_text)
6811 (Ffind_charset_region):
6812 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6813 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
6814 (load_charset_map_from_vector, Fdefine_charset_internal):
3c7649c1 6815 Don't assume fixnum fits in int.
d311d28c
PE
6816 (load_charset_map_from_vector, Fmap_charset_chars):
6817 Remove now-unnecessary CHECK_NATNUMs.
6818 (Fdefine_charset_internal): Check ranges here, more carefully.
3c7649c1
PE
6819 Don't rely on undefined behavior with signed left shift overflow.
6820 Don't assume unsigned int fits into fixnum, or that fixnum fits
6821 into unsigned int. Don't require max_code to be a valid fixnum;
6822 that's not true for gb10830 4-byte on a 32-bit host. Allow
6823 invalid_code to be a cons, for the same reason. Require code_offset
6824 to be a character. Avoid int overflow if max_char is close
6825 to INT_MAX.
6826 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
6827 this is intended anyway and avoids some undefined behavior.
6828 (load_charset_map): Pass unsigned, not int, as 2nd arg of
6829 INDEX_TO_CODE_POINT, as that's what it expects.
6830 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
60ad3eab
PE
6831 * charset.h (DECODE_CHAR): Return int, not unsigned;
6832 this is what was intended anyway, and it avoids undefined behavior.
6833 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
6834 integer-overflow issues.
6835 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
6836 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
6837 where the argument is EMACS_INT, and this behavior is not intended.
d311d28c
PE
6838 * chartab.c (Fmake_char_table, Fset_char_table_range)
6839 (uniprop_get_decoder, uniprop_get_encoder):
6840 Don't assume fixnum fits in int.
6841 * cmds.c (move_point): New function, that does the gist of
6842 Fforward_char and Fbackward_char, but does so while checking
6843 for integer overflow more accurately.
c96e5d6a 6844 (Fforward_char, Fbackward_char): Use it.
d311d28c
PE
6845 (Fforward_line, Fend_of_line, internal_self_insert)
6846 (internal_self_insert):
6847 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6848 Fix a FIXME, by checking for integer overflow when calculating
6849 target_clm and actual_clm.
6850 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
8f50130c 6851 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
d311d28c
PE
6852 (ASSURE_DESTINATION, coding_alloc_by_realloc)
6853 (coding_alloc_by_making_gap, alloc_destination)
6854 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
6855 (encode_coding_utf_16, detect_coding_emacs_mule)
6856 (decode_coding_emacs_mule, encode_coding_emacs_mule)
6857 (detect_coding_iso_2022, decode_coding_iso_2022)
6858 (encode_invocation_designation, encode_designation_at_bol)
6859 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
6860 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
6861 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
6862 (encode_coding_ccl, encode_coding_raw_text)
6863 (detect_coding_charset, decode_coding_charset)
6864 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
6865 (produce_composition, produce_charset, produce_annotation)
6866 (decode_coding, handle_composition_annotation)
6867 (handle_charset_annotation, consume_chars, decode_coding_gap)
6868 (decode_coding_object, encode_coding_object, detect_coding_system)
6869 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
6870 (code_convert_region, code_convert_string)
8f50130c
PE
6871 (Fdefine_coding_system_internal)
6872 (coding_set_source, coding_set_destination):
d311d28c
PE
6873 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6874 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
6875 (Fdefine_coding_system_internal):
6876 Don't assume fixnums fit in int.
6877 (decode_coding_gap, decode_coding_object, encode_coding_object)
5895d7b9 6878 (Fread_coding_system, Fdetect_coding_region)
2c6a9faa
PE
6879 (Funencodable_char_position, Fcheck_coding_systems_region)
6880 (get_translation, handle_composition_annotation, consume_chars):
d311d28c 6881 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
977b0e45 6882 (consume_chars): Rewrite to not calculate an address outside buffer.
d311d28c 6883 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
7b09a37a 6884 Don't access memory outside of the args array.
d311d28c 6885 (Fdefine_coding_system_internal): Check for charset-id overflow.
47664caa
PE
6886 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
6887 result of ENCODE_CHAR.
d311d28c
PE
6888 * coding.h: Adjust decls to match defn changes elsewhere.
6889 (struct coding_system):
6890 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6891 * composite.c (get_composition_id, find_composition)
6892 (run_composition_function, update_compositions)
6893 (compose_text, composition_gstring_put_cache)
6894 (composition_gstring_p, composition_gstring_width)
6895 (fill_gstring_header, fill_gstring_body, autocmp_chars)
6896 (composition_compute_stop_pos, composition_reseat_it)
6897 (composition_update_it, struct position_record)
6898 (find_automatic_composition, composition_adjust_point)
6899 (Fcomposition_get_gstring, Ffind_composition_internal):
6900 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6901 (update_compositions):
6902 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6903 * composite.h: Adjust decls to match defn changes elsewhere.
6904 (struct composition):
6905 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6906 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
6907 Do not attempt to compute the address of the object just before a
6908 buffer; this is not portable.
6909 (Faref, Faset):
6910 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6911 (Faset): Use int, not EMACS_INT, where int is wide enough.
6912 (Fstring_to_number): Don't assume fixnums fit in int.
6913 (Frem): Don't assume arg is nonnegative.
6914 * dbusbind.c (xd_append_arg): Check for integers out of range.
6915 (Fdbus_call_method): Don't overflow the timeout int.
42b2a986 6916 (extract_signed, extract_unsigned): New functions.
243e0530
PE
6917 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
6918 (xd_get_connection_references): Return ptrdiff_t, not int.
6919 All uses changed.
6920 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
6921 (xd_read_message_1):
6922 Use int, not unsigned, where the dbus API uses int.
6923 (Fdbus_message_internal): Don't overflow mtype.
6924 (syms_of_dbusbind): Allocate right-sized buffer for integers.
d311d28c
PE
6925 * dired.c (directory_files_internal, file_name_completion, scmp)
6926 (file_name_completion_stat):
6927 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6928 (file_name_completion): Don't overflow matchcount.
6929 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
6930 * dispextern.h: Adjust decls to match defn changes elsewhere.
6931 (struct text_pos, struct glyph, struct bidi_saved_info)
6932 (struct bidi_string_data, struct bidi_it, struct composition_it)
6933 (struct it):
6934 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6935 (struct display_pos, struct composition_it, struct it):
6936 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6937 * dispnew.c (increment_matrix_positions)
6938 (increment_row_positions, mode_line_string)
6939 (marginal_area_string):
6940 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
54e1617f 6941 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
d311d28c
PE
6942 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6943 (duration_to_sec_usec): New function, to check for overflow better.
6944 (Fsleep_for, sit_for): Use it.
6945 * doc.c (get_doc_string, store_function_docstring):
6946 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6947 (get_doc_string, Fsnarf_documentation):
6948 Use int, not EMACS_INT, where int is wide enough.
6949 (get_doc_string):
6950 Use SAFE_ALLOCA, not alloca.
6951 Check for overflow when converting EMACS_INT to off_t.
6952 * doprnt.c (doprnt):
6953 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6954 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
6955 Don't assume uid_t fits into fixnum.
6956 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
6957 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
6958 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
6959 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
6960 (general_insert_function)
6961 (Finsert_char, make_buffer_string, make_buffer_string_both)
6962 (update_buffer_properties, Fbuffer_substring)
6963 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
6964 (Fsubst_char_in_region, check_translation)
6965 (Ftranslate_region_internal, save_restriction_restore, Fformat)
6966 (transpose_markers, Ftranspose_regions):
6967 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6968 (clip_to_bounds): Move to lisp.h as an inline function).
6969 (Fconstrain_to_field): Don't assume integers are nonnegative.
6970 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
6971 (Fsubst_char_in_region, Fsave_restriction):
6972 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6973 (Femacs_pid): Don't assume pid_t fits into fixnum.
6974 (lo_time): Use int, not EMACS_INT, when int suffices.
6975 (lisp_time_argument): Check for usec out of range.
6976 (Fencode_time): Don't assume fixnum fits in int.
3f4eabd1
PE
6977 (Fuser_login_name, Fuser_full_name): Signal an error
6978 if a uid argument is out of range, rather than relying on
6979 undefined behavior.
c8d5c857
PE
6980 (Fformat_time_string): Remove now-unnecessary check.
6981 lisp_time_argument checks for out-of-range usec now.
243e0530 6982 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
d311d28c
PE
6983 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
6984 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
6985 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
6986 (init_cmdargs, Fdump_emacs):
6987 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6988 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
6989 the bottom (typically) 32 bits of the fixnum.
6990 * eval.c (specpdl_size, call_debugger):
6991 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6992 (when_entered_debugger, Fbacktrace_debug):
6993 Don't assume fixnum can fit in int.
6994 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
6995 the object just before a buffer; this is not portable.
6996 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
6997 (grow_specpdl, unbind_to):
6998 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6999 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
7000 (grow_specpdl): Simplify allocation by using xpalloc.
856bbc81 7001 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
d311d28c
PE
7002 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
7003 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
7004 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7005 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
7006 (a_write, e_write):
7007 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7008 (Fcopy_file, non_regular_nbytes, read_non_regular)
7009 (Finsert_file_contents):
7010 Use int, not EMACS_INT, where int is wide enough.
7011 (READ_BUF_SIZE): Verify that it fits in int.
7012 (Finsert_file_contents): Check that counts are in proper range,
7013 rather than assuming fixnums fit into ptrdiff_t etc.
7014 Don't assume fixnums fit into int.
125b3835 7015 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
5895d7b9
PE
7016 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
7017 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
d311d28c
PE
7018 (string_char_to_byte, string_byte_to_char)
7019 (string_make_multibyte, string_to_multibyte)
7020 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
7021 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
7022 (substring_both, Fdelete, internal_equal, Ffillarray)
7023 (Fclear_string, mapcar1)
7024 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
7025 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
7026 (larger_vector, make_hash_table, maybe_resize_hash_table)
7027 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
7028 (Fmaphash, secure_hash):
7029 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7030 (concat): Check for string index and length overflow.
7031 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
7032 (Frequire):
7033 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7034 (larger_vector): New API (vec, incr_min, size_max) replaces old
7035 one (vec, new_size, init). This catches size overflow.
7036 INIT was removed because it was always Qnil.
7037 All callers changed.
7038 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
7039 the upper bound on a hash table index size.
7040 (make_hash_table, maybe_resize_hash_table): Use it.
7041 (secure_hash): Computer start_byte and end_byte only after
7042 they're known to be in ptrdiff_t range.
7043 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
7044 (Ffont_get_glyphs, Ffont_at):
7045 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7046 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
7047 (Flist_fonts, Fopen_font):
7048 Don't assume fixnum can fit in int.
7049 (check_gstring): Don't assume index can fit in int.
7050 (font_match_p): Check that fixnum is a character, not a nonnegative
7051 fixnum, since the later code needs to stuff it into an int.
7052 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
7053 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
7054 conversion overflow issues.
7055 (Fopen_font): Check for integer out of range.
7056 (Ffont_get_glyphs): Don't assume index can fit in int.
7057 * font.h: Adjust decls to match defn changes elsewhere.
7058 * fontset.c (reorder_font_vector): Redo score calculation to avoid
7059 integer overflow.
7060 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
7061 printmax_t, where ptrdiff_t is wide enough.
7062 (Finternal_char_font):
7063 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7064 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
7065 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
7066 (Fset_frame_position, x_set_frame_parameters)
7067 (x_set_line_spacing, x_set_border_width)
7068 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
7069 Check that fixnums are in proper range for system types.
7070 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
7071 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7072 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
7073 Use SAFE_ALLOCA_LISP, not alloca.
7074 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
7075 intptr_t is wide enough.
7076 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
7077 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
7078 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
7079 Check for fixnum out of range.
7080 * ftfont.c (ftfont_list): Don't assume index fits in int.
7081 Check that fixnums are in proper range for system types.
7082 (ftfont_shape_by_flt):
7083 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
d311d28c
PE
7084 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
7085 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7086 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
7087 Check that fixnums are in proper range for system types.
7088 * gnutls.h: Adjust decls to match defn changes elsewhere.
7089 * gtkutil.c (xg_dialog_run):
7090 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7091 (update_frame_tool_bar):
7092 Check that fixnums are in proper range for system types.
7093 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
5895d7b9 7094 (lookup_image): Check that fixnums are in range for system types.
d311d28c
PE
7095 * indent.c (last_known_column, last_known_column_point):
7096 (current_column_bol_cache):
7097 (skip_invisible, current_column, check_display_width):
7098 (check_display_width, scan_for_column, current_column_1)
7099 (Findent_to, Fcurrent_indentation, position_indentation)
7100 (indented_beyond_p, Fmove_to_column, compute_motion):
7101 (Fcompute_motion, Fvertical_motion):
7102 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7103 (last_known_column_modified): Use EMACS_INT, not int.
7104 (check_display_width):
7105 (Fcompute_motion):
7106 Check that fixnums and floats are in proper range for system types.
7107 (compute_motion): Don't assume index or fixnum fits in int.
7108 (compute_motion, Fcompute_motion):
7109 Use int, not EMACS_INT, when it is wide enough.
7110 (vmotion): Omit local var start_hpos that is always 0; that way
7111 we don't need to worry about overflow in expressions involving it.
7112 * indent.h: Adjust decls to match defn changes elsewhere.
7113 (struct position):
7114 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7115 Use int, not EMACS_INT, where int is wide enough.
7116 Remove unused members ovstring_chars_done and tab_offset;
7117 all uses removed.
7118 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
7119 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
7120 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
7121 (make_gap, copy_text, insert, insert_and_inherit)
7122 (insert_before_markers, insert_before_markers_and_inherit)
7123 (insert_1, count_combining_before, count_combining_after)
7124 (insert_1_both, insert_from_string)
7125 (insert_from_string_before_markers, insert_from_string_1)
7126 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
7127 (adjust_after_replace, adjust_after_insert, replace_range)
7128 (replace_range_2, del_range, del_range_1, del_range_byte)
7129 (del_range_both, del_range_2, modify_region)
7130 (prepare_to_modify_buffer, signal_before_change)
7131 (signal_after_change, Fcombine_after_change_execute):
7132 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7133 * intervals.c (traverse_intervals, rotate_right, rotate_left)
7134 (balance_an_interval, split_interval_right, split_interval_left)
7135 (find_interval, next_interval, update_interval)
7136 (adjust_intervals_for_insertion, delete_node, delete_interval)
7137 (interval_deletion_adjustment, adjust_intervals_for_deletion)
7138 (static_offset_intervals, offset_intervals)
7139 (merge_interval_right, merge_interval_left, make_new_interval)
7140 (graft_intervals_into_buffer, temp_set_point_both)
7141 (temp_set_point, set_point, adjust_for_invis_intang)
7142 (set_point_both, move_if_not_intangible, get_property_and_range)
7143 (get_local_map, copy_intervals, copy_intervals_to_string)
7144 (compare_string_intervals, set_intervals_multibyte_1):
7145 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7146 * intervals.h: Adjust decls to match defn changes elsewhere.
7147 (struct interval):
7148 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7149 * keyboard.c (this_command_key_count, this_single_command_key_start)
7150 (before_command_key_count, before_command_echo_length, echo_now)
7151 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
7152 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
7153 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
7154 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
7155 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7156 (last_non_minibuf_size, last_point_position, echo_truncate)
7157 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
7158 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
7159 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
7160 (stuff_buffered_input):
7161 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7162 (last_auto_save, command_loop_1, read_char):
7163 Use EMACS_INT, not int, to avoid integer overflow.
7164 (record_char): Avoid overflow in total_keys computation.
7165 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
7166 * keyboard.h: Adjust decls to match defn changes elsewhere.
7167 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
7168 (Fkey_description, Fdescribe_vector, Flookup_key):
7169 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7170 (click_position): New function, to check that positions are in range.
7171 (Fcurrent_active_maps):
7172 (describe_command):
7173 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7174 (Faccessible_keymaps, Fkey_description):
7175 (preferred_sequence_p):
7176 Don't assume fixnum can fit into int.
7177 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
7178 Check for integer overflow in size calculations.
7179 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
7180 avoid mishandling large integers.
7181 * lisp.h: Adjust decls to match defn changes elsewhere.
7182 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
7183 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
7184 (struct Lisp_Marker):
7185 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7186 (clip_to_bounds): Now an inline function, moved here from editfns.c.
d311d28c
PE
7187 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
7188 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
7189 All callers changed.
7190 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
7191 Assume the arg has valid form, since it always does.
7192 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
7193 unsigned integer system type.
7194 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
7195 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
7196 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7197 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
7198 (duration_to_sec_usec): New decl.
7199 * lread.c (read_from_string_index, read_from_string_index_byte)
7200 (read_from_string_limit, readchar, unreadchar, openp)
7201 (read_internal_start, read1, oblookup):
7202 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7203 (Fload, readevalloop, Feval_buffer, Feval_region):
7204 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7205 (openp): Check for out-of-range argument to 'access'.
7206 (read1): Use int, not EMACS_INT, where int is wide enough.
7207 Don't assume fixnum fits into int.
6efdadfd 7208 Fix off-by-one error that can read outside a buffer.
1ab7b8ac
PE
7209 (read_filtered_event): Use duration_to_sec_usec
7210 to do proper overflow checking on durations.
d311d28c
PE
7211 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
7212 in size calculation.
7213 (Fexecute_kbd_macro):
7214 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7215 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
7216 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
7217 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
7218 (set_marker_both, set_marker_restricted_both, marker_position)
7219 (marker_byte_position, Fbuffer_has_markers_at):
7220 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7221 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
61b108cc 7222 * menu.c (ensure_menu_items): Rename from grow_menu_items.
d311d28c
PE
7223 It now merely ensures that the menu is large enough, without
7224 necessarily growing it, as this avoids some integer overflow issues.
7225 All callers changed.
7226 (keymap_panes, parse_single_submenu, Fx_popup_menu):
7227 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7228 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
7229 Use SAFE_ALLOCA_LISP, not alloca.
7230 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
7231 to EMACS_INT. Check that fixnums are in proper range for system types.
7232 * minibuf.c (minibuf_prompt_width, string_to_object)
7233 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
7234 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
7235 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7236 (get_minibuffer, read_minibuf_unwind):
7237 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7238 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
7239 this simplifies overflow checking. All callers changed.
7240 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
7241 (Ftest_completion):
7242 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7243 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
7244 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
7245 Check that fixnums are in proper range for system types.
7246 (Fx_create_frame, Fx_show_tip):
7247 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7248 * nsfont.m (ns_findfonts, nsfont_list_family):
7249 Don't assume fixnum fits in long.
7250 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
7251 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7252 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
7253 wide enough.
17fdb222 7254 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
d311d28c
PE
7255 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7256 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
7257 (PRINTDECLARE, PRINTPREPARE):
7258 (strout, print_string):
7259 (print, print_preprocess, print_check_string_charset_prop)
7260 (print_object):
7261 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7262 (PRINTDECLARE):
7263 (temp_output_buffer_setup, Fprin1_to_string, print_object):
7264 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7265 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
d311d28c 7266 (printchar, strout): Use xpalloc to catch size calculation overflow.
0fd11aa5 7267 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
d311d28c
PE
7268 (print_error_message): Use SAFE_ALLOCA, not alloca.
7269 (print_object): Use int, not EMACS_INT, where int is wide enough.
a8b7caa3
PE
7270 (print_depth, new_backquote_output, print_number_index):
7271 Use ptrdiff_t, not int, where int might not be wide enough.
d311d28c
PE
7272 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
7273 (Fset_process_window_size, Fformat_network_address)
7274 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
d44287d4 7275 (sigchld_handler):
d311d28c 7276 Check that fixnums are in proper range for system types.
d44287d4 7277 (Fsignal_process): Simplify by avoiding a goto.
d83cf4cc
PE
7278 Check for process-ids out of pid_t range rather than relying on
7279 undefined behavior.
e4d81efc 7280 (process_tick, update_tick): Use EMACS_INT, not int.
d311d28c
PE
7281 (Fformat_network_address, read_process_output, send_process)
7282 (Fprocess_send_region, status_notify):
7283 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7284 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
7285 (wait_reading_process_output, read_process_output, exec_sentinel):
7286 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7287 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
7288 (Faccept_process_output): Use duration_to_sec_usec to do proper
7289 overflow checking on durations.
dde14581
PE
7290 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
7291 Don't assume pid_t fits in int.
02481186
PE
7292 * process.h (struct Lisp_Process): Members tick and update_tick
7293 are now of type EMACS_INT, not int.
b62b53e8
PE
7294 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
7295 configured --with-wide-int.
d311d28c
PE
7296 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
7297 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
7298 * search.c (looking_at_1, string_match_1):
7299 (fast_string_match, fast_c_string_match_ignore_case)
7300 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
7301 (scan_newline, find_before_next_newline, search_command)
7302 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
7303 (set_search_regs, wordify):
7304 (Freplace_match):
7305 (Fmatch_data):
7306 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7307 (string_match_1, search_buffer, set_search_regs):
7308 (Fmatch_data):
7309 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7310 (wordify): Check for overflow in size calculation.
7311 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
7312 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
7313 Check that fixnums are in proper range for system types.
7314 * sound.c (struct sound_device)
7315 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
7316 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7317 (Fplay_sound_internal):
7318 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
eacd378d 7319 * syntax.c (struct lisp_parse_state, find_start_modiff)
d311d28c
PE
7320 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
7321 (Fparse_partial_sexp):
7322 Don't assume fixnums can fit in int.
7323 (struct lisp_parse_state, find_start_pos, find_start_value)
7324 (find_start_value_byte, find_start_begv)
7325 (update_syntax_table, char_quoted, dec_bytepos)
7326 (find_defun_start, prev_char_comend_first, back_comment):
7327 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
7328 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
7329 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7330 (Finternal_describe_syntax_value): Check that match_lisp is a
7331 character, not an integer, since the code stuffs it into int.
7332 (scan_words, scan_sexps_forward):
7333 Check that fixnums are in proper range for system types.
7334 (Fforward_word):
7335 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7336 (scan_sexps_forward):
7337 Use CHARACTERP, not INTEGERP, since the value must fit into int.
7338 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
7339 * syntax.h: Adjust decls to match defn changes elsewhere.
7340 (struct gl_state_s):
7341 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
e4ecdc9c
PE
7342 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
7343 MOST_POSITIVE_FIXNUM.
d311d28c
PE
7344 * sysdep.c (wait_for_termination_1, wait_for_termination)
7345 (interruptible_wait_for_termination, mkdir):
7346 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
7347 (emacs_read, emacs_write):
7348 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
225a2cff
PE
7349 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
7350 and double all fit in int.
d311d28c
PE
7351 * term.c (set_tty_color_mode):
7352 Check that fixnums are in proper range for system types.
7353 * termhooks.h (struct input_event):
7354 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7355 * textprop.c (validate_interval_range, interval_of)
7356 (Fadd_text_properties, set_text_properties_1)
7357 (Fremove_text_properties, Fremove_list_of_text_properties)
7358 (Ftext_property_any, Ftext_property_not_all)
7359 (copy_text_properties, text_property_list, extend_property_ranges)
7360 (verify_interval_modification):
7361 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7362 (Fnext_single_char_property_change)
7363 (Fprevious_single_char_property_change):
7364 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5895d7b9
PE
7365 (copy_text_properties):
7366 Check for integer overflow in index calculation.
d311d28c
PE
7367 * undo.c (last_boundary_position, record_point, record_insert)
7368 (record_delete, record_marker_adjustment, record_change)
7369 (record_property_change):
7370 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7371 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
7372 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7373 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
7374 (Fx_hide_tip, Fx_file_dialog):
7375 * w32menu.c (set_frame_menubar):
7376 Use ptrdiff_t, not int, for consistency with rest of code.
7377 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
7378 (select_window, Fdelete_other_windows_internal)
7379 (window_scroll_pixel_based, window_scroll_line_based)
7380 (Frecenter, Fset_window_configuration):
7381 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7382 (Fset_window_hscroll, run_window_configuration_change_hook)
7383 (set_window_buffer, temp_output_buffer_show, scroll_command)
5895d7b9 7384 (Fscroll_other_window, Frecenter):
d311d28c
PE
7385 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7386 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
7387 Don't assume fixnum fits in int.
7388 (Fset_window_scroll_bars):
7389 Check that fixnums are in proper range for system types.
7390 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
7391 (string_pos, c_string_pos, number_of_chars, init_iterator)
7392 (in_ellipses_for_invisible_text_p, init_from_display_pos)
7393 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
7394 (compute_display_string_end, handle_face_prop)
5895d7b9
PE
7395 (face_before_or_after_it_pos, handle_invisible_prop)
7396 (handle_display_prop, handle_display_spec, handle_single_display_spec)
d311d28c
PE
7397 (display_prop_intangible_p, string_buffer_position_lim)
7398 (string_buffer_position, handle_composition_prop, load_overlay_strings)
7399 (get_overlay_strings_1, get_overlay_strings)
7400 (iterate_out_of_display_property, forward_to_next_line_start)
7401 (back_to_previous_visible_line_start, reseat, reseat_to_string)
7402 (get_next_display_element, set_iterator_to_next)
7403 (get_visually_first_element, compute_stop_pos_backwards)
7404 (handle_stop_backwards, next_element_from_buffer)
7405 (move_it_in_display_line_to, move_it_in_display_line)
7406 (move_it_to, move_it_vertically_backward, move_it_by_lines)
7407 (add_to_log, message_dolog, message_log_check_duplicate)
7408 (message2, message2_nolog, message3, message3_nolog
7409 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
7410 (current_message_1, truncate_echo_area, truncate_message_1)
7411 (set_message, set_message_1, store_mode_line_noprop)
7412 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
7413 (text_outside_line_unchanged_p, check_point_in_composition)
7414 (reconsider_clip_changes)
7415 (redisplay_internal, set_cursor_from_row, try_scrolling)
7416 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
7417 (redisplay_window, find_last_unchanged_at_beg_row)
7418 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
7419 (trailing_whitespace_p, find_row_edges, display_line)
7420 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
7421 (display_mode_element, store_mode_line_string)
7422 (pint2str, pint2hrstr, decode_mode_spec)
7423 (display_count_lines, display_string, draw_glyphs)
7424 (x_produce_glyphs, x_insert_glyphs)
7425 (rows_from_pos_range, mouse_face_from_buffer_pos)
7426 (fast_find_string_pos, mouse_face_from_string_pos)
7427 (note_mode_line_or_margin_highlight, note_mouse_highlight):
7428 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7429 (safe_call, init_from_display_pos, handle_fontified_prop)
7430 (handle_single_display_spec, load_overlay_strings)
7431 (with_echo_area_buffer, setup_echo_area_for_printing)
7432 (display_echo_area, echo_area_display)
7433 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
7434 (update_tool_bar, hscroll_window_tree, redisplay_internal)
5895d7b9
PE
7435 (redisplay_window, dump_glyph_row, display_mode_line)
7436 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
43ad2e9a 7437 (handle_display_spec, display_prop_string_p):
d311d28c
PE
7438 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7439 (handle_single_display_spec, build_desired_tool_bar_string)
7440 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
7441 (get_specified_cursor_type):
7442 Check that fixnums are in proper range for system types.
7443 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
7444 (Flookup_image_map):
7445 Don't assume fixnums fit in int.
7446 (compare_overlay_entries):
7447 Avoid mishandling comparisons due to subtraction overflow.
7448 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
7449 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
7450 (handle_tool_bar_click):
7451 Use int, not unsigned, since we prefer signed and the signedness
7452 doesn't matter here.
7453 (get_next_display_element, next_element_from_display_vector):
7454 Use int, not EMACS_INT, when int is wide enough.
7455 (start_hourglass): Use duration_to_sec_usec to do proper
7456 overflow checking on durations.
7457 * xfaces.c (Fbitmap_spec_p):
7458 Check that fixnums are in proper range for system types.
7459 (compare_fonts_by_sort_order):
7460 Avoid mishandling comparisons due to subtraction overflow.
7461 (Fx_family_fonts, realize_basic_faces):
7462 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7463 (Fx_family_fonts):
7464 Don't assume fixnum fits in int.
7465 Use SAFE_ALLOCA_LISP, not alloca.
7466 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
7467 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
7468 (face_at_buffer_position, face_for_overlay_string)
7469 (face_at_string_position):
7470 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7471 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
7472 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
7473 (Fx_show_tip):
7474 Check that fixnums are in proper range for system types.
7475 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
7476 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
7477 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7478 (Fx_change_window_property): Don't assume fixnums fit in int.
7479 * xfont.c (xfont_chars_supported):
7480 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7481 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
7482 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
7483 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7484 * xml.c (parse_region):
7485 * xrdb.c (magic_file_p):
7486 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
7487 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
7488 (x_get_local_selection, x_reply_selection_request)
7489 (x_handle_selection_request, wait_for_property_change):
7490 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7491 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
7492 short is wide enough.
7493 (x_send_client_event): Don't assume fixnum fits in int.
7494 * xterm.c (x_x_to_emacs_modifiers):
7495 Don't assume EMACS_INT overflows nicely into int.
7496 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
7497 may come from Lisp.
7498 (handle_one_xevent): NATNUMP can eval its arg twice.
7499 (x_connection_closed):
7500 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
7501 * xterm.h: Adjust decls to match defn changes elsewhere.
7502 (struct scroll_bar): Use struct vectorlike_header
7503 rather than rolling our own approximation.
7504 (SCROLL_BAR_VEC_SIZE): Remove; not used.
7505
c6574eb5
GM
75062012-05-25 Glenn Morris <rgm@gnu.org>
7507
7508 * lisp.mk (lisp): Update for more files being compiled now.
7509
e8d32c7e
SM
75102012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
7511
48def666
SM
7512 * lread.c: Remove `read_pure' which makes no difference.
7513 (read_pure): Remove var.
7514 (unreadpure): Remove function.
7515 (readevalloop): Don't call read_list with -1 flag.
7516 (read1, read_vector): Don't test read_pure any more.
7517 (read_list): Simplify.
7518
e8d32c7e
SM
7519 * fileio.c, character.h: Minor style tweaks.
7520
4b2addb7
DA
75212012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
7522
7523 * window.h (clip_changed): Remove useless declaration.
7524
584461b2
JB
75252012-05-22 Juanma Barranquero <lekktu@gmail.com>
7526
7527 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
7528 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
7529
34374650
PE
75302012-05-22 Paul Eggert <eggert@cs.ucla.edu>
7531
7532 Remove src/m/*.
7533 This directory predates autoconf and is no longer needed nowadays.
7534 Move its few remaining bits of functionality to where they're needed.
7535 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
7536 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
7537 * m/template.h: Remove.
7538 * Makefile.in (M_FILE): Remove. All uses removed.
7539 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
7540 * lisp.h (USE_LSB_TAG):
7541 * mem-limits.h (EXCEEDS_LISP_PTR):
7542 Use VAL_MAX, not VALBITS, in #if.
7543 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
7544 (EMACS_UINT): Define unconditionally now.
7545 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
7546 (BITS_PER_EMACS_INT): New constants, replacing
7547 what used to be in config.h, but not useful in #if.
7548 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
7549 define them any more.
7550 (VAL_MAX): New macro.
7551 (VALMASK): Use it.
7552 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
7553 BITS_PER_EMACS_INT, in #if.
7554 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
7555 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
7556 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
7557 * s/ms-w32.h (DATA_START):
7558 Move here from removed file m/intel386.h.
7559 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
7560 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
7561
261cb4bb
PE
75622012-05-21 Paul Eggert <eggert@cs.ucla.edu>
7563
7564 Assume C89 or later.
7565 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
7566 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
7567 (xrealloc):
7568 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
7569 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
7570 * textprop.c, tparam.c (NULL): Remove.
7571 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
7572 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
7573 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
7574 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
7575 * xterm.c (input_signal_count): Assume volatile works.
7576
ff23cd9f
KB
75772012-05-21 Ken Brown <kbrown@cornell.edu>
7578
7579 * xgselect.c (xg_select): Fix first argument in call to 'select'
7580 (bug#11508).
7581
1b170bc6
KB
75822012-05-20 Ken Brown <kbrown@cornell.edu>
7583
7584 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
bd7239f5 7585 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
1b170bc6 7586
b2f4d39f
KB
75872012-05-19 Ken Brown <kbrown@cornell.edu>
7588
7589 * xfns.c (x_in_use): Remove `static' qualifier.
7590 * xterm.h (x_in_use): Declare.
7591 * xgselect.c: Include xterm.h.
7592 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
7593 and `display_arg' (bug#9754).
7594
003fdae2
PE
75952012-05-19 Paul Eggert <eggert@cs.ucla.edu>
7596
9232a6d9
PE
7597 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
7598
003fdae2
PE
7599 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
7600 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
7601
784b56e2
EZ
76022012-05-18 Eli Zaretskii <eliz@gnu.org>
7603
7604 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
7605
7606 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
090bd7cb 7607 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
784b56e2
EZ
7608
7609 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
7610 reference to image_cache->refcount.
7611 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
7612
a0a79cde
JL
76132012-05-17 Juri Linkov <juri@jurta.org>
7614
7615 * search.c (Fword_search_regexp, Fword_search_backward)
7616 (Fword_search_forward, Fword_search_backward_lax)
7617 (Fword_search_forward_lax): Move functions to isearch.el
7618 (bug#10145, bug#11381).
7619
b0572523
PE
76202012-05-16 Paul Eggert <eggert@cs.ucla.edu>
7621
7622 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
7623
9660f5fc
SM
76242012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
7625
7626 * lread.c (init_obarray): Declare Qt and Qnil as special.
7627
4374de83
GM
76282012-05-14 Glenn Morris <rgm@gnu.org>
7629
7630 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
985584ae 7631 Put "libexec" before "bin", for the sake of init_callproc_1.
4374de83 7632
dc44c39a
PE
76332012-05-14 Paul Eggert <eggert@cs.ucla.edu>
7634
078c97cb
PE
7635 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
7636
dc44c39a
PE
7637 * unexaix.c: Port to more-recent AIX compilers.
7638 (report_error, report_error_1, make_hdr, copy_sym)
7639 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
7640 Make arguments const char *, not char *, to avoid violations of C
7641 standard and to fix some AIX warnings reported by Gilles Pion.
7642
e18afed7 76432012-05-14 Eli Zaretskii <eliz@gnu.org>
ac268e67
EZ
7644
7645 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
7646 already have overlays loaded.
7647 (handle_single_display_spec): Before returning without displaying
7648 fringe bitmap, synchronize the bidi iterator with the main display
7649 iterator, by calling iterate_out_of_display_property.
7650 (iterate_out_of_display_property): Detect buffer iteration by
7651 testing that it->string is a Lisp string.
7652 (get_next_display_element): When the current object is exhausted,
7653 and there's something on it->stack, call set_iterator_to_next to
7654 proceed with what's on the stack, instead of returning zero.
7655 (set_iterator_to_next): If called at the end of a Lisp string,
7656 proceed to consider_string_end without incrementing string
7657 position. Don't increment display vector index past the end of
7658 the display vector. (Bug#11417)
c8fb9dc6
EZ
7659 (pos_visible_p): Don't report a position visible when move_it_to
7660 stopped at the last line of window, which happens to be scanned
7661 backwards by the bidi iteration. (Bug#11464)
ac268e67 7662
e18afed7 76632012-05-14 Eli Zaretskii <eliz@gnu.org>
82f9b393
EZ
7664
7665 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
7666 and right-margin display specs even if the spec is invalid or we
61b108cc
SM
7667 are on a TTY, and thus unable to display on the fringes.
7668 That's because the text with the property will not be displayed anyway,
82f9b393
EZ
7669 so we need to signal to the caller that this is a "replacing"
7670 display spec. This fixes display when the spec is invalid or we
7671 are on a TTY.
7672
e18afed7 76732012-05-14 Paul Eggert <eggert@cs.ucla.edu>
297834cd
PE
7674
7675 * unexaix.c (make_hdr): Fix typo in prototype.
7676 This bug broke the build on AIX. Problem reported by Gilles Pion.
7677
9d0a235a
MA
76782012-05-14 Michael Albinus <michael.albinus@gmx.de>
7679
7680 * keyboard.c (kbd_buffer_get_event): Read special events also in
7681 batch mode. (Bug#11415)
7682
9e6b06ed
GM
76832012-05-12 Glenn Morris <rgm@gnu.org>
7684
7685 * ns.mk: Update for ns_appbindir no longer having trailing "/".
7686
c1a1d7a3
EZ
76872012-05-12 Eli Zaretskii <eliz@gnu.org>
7688
7689 * lisp.mk (lisp): Add newcomment.elc.
7690
3fe7cdc8
GM
76912012-05-12 Glenn Morris <rgm@gnu.org>
7692
7693 * Makefile.in (MKDIR_P): New, set by configure.
7694 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
7695
53f7d2c0
PE
76962012-05-11 Paul Eggert <eggert@cs.ucla.edu>
7697
7698 Remove unused function hourglass_started.
7699 * dispextern.h (hourglass_started):
7700 * w32fns.c (hourglass_started):
7701 * xdisp.c (hourglass_started): Remove.
7702
75aafb17
JB
77032012-05-10 Juanma Barranquero <lekktu@gmail.com>
7704
7705 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
7706 Update dependencies.
7707
12959e8e
PE
77082012-05-10 Paul Eggert <eggert@cs.ucla.edu>
7709
97107e2e
PE
7710 * xgselect.c (xg_select): Put maxfds+1 into a var.
7711 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
7712
12959e8e
PE
7713 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
7714
836d29b3
DA
77152012-05-10 Dave Abrahams <dave@boostpro.com>
7716
7717 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
7718 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
7719
5cb67954
MA
77202012-05-09 Michael Albinus <michael.albinus@gmx.de>
7721
7722 * dbusbind.c (xd_registered_buses): New internal Lisp object.
7723 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
7724 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
7725 Initialize xd_registered_buses.
7726
3478ec45
PE
77272012-05-09 Paul Eggert <eggert@cs.ucla.edu>
7728
b263a6b0
PE
7729 Untag more efficiently if USE_LSB_TAG.
7730 This is based on a proposal by YAMAMOTO Mitsuharu in
7731 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
7732 For an admittedly artificial (nth 8000 longlist) benchmark on
7733 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
7734 Emacs's overall text size by 1%.
7735 * lisp.h (XUNTAG): New macro.
7736 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
7737 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
7738 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
7739 * eval.c (Fautoload):
7740 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
7741 * frame.h (XFRAME): Use XUNTAG.
7742
3478ec45
PE
7743 Port recent dbusbind.c changes to 32-bit --with-wide-int.
7744 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
7745 Remove unportable assumptions about print widths of types like
7746 dbus_uint32_t.
7747 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
7748 intptr_t when converting between pointer and integer, to avoid GCC
7749 warnings about wrong width.
7750
666b903b 77512012-05-09 Eli Zaretskii <eliz@gnu.org>
0d887c7d
EZ
7752
7753 * w32proc.c (new_child): Force Windows to reserve only 64KB of
7754 stack for each reader_thread, instead of defaulting to 8MB
7755 determined by the linker. This avoids failures in creating
7756 subprocesses on Windows 7, see the discussion in this thread:
7757 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
7758
b120cc17
JC
77592012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
7760
7761 Fix up display of the *Minibuf-0* buffer in the mini window.
7762 * keyboard.c (read_char): Don't clear the echo area if there's no
7763 message to clear.
7764 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
2fed2689 7765 contents of *Minibuf-0*) if there's no message displayed in its stead.
b120cc17 7766
9a4b36f8
MA
77672012-05-07 Michael Albinus <michael.albinus@gmx.de>
7768
7769 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
7770 batch mode.
7771
e5f9458f
CY
77722012-05-06 Chong Yidong <cyd@gnu.org>
7773
7774 * lisp.mk (lisp): Update.
7775
eceeb5fc 77762012-05-05 Jim Meyering <meyering@redhat.com>
bf98199c
JM
7777
7778 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
7779
71873e2b
SM
77802012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
7781
7782 * data.c (PUT_ERROR): New macro.
7783 (syms_of_data): Use it. Add new error type `user-error'.
7784 * undo.c (user_error): New function.
7785 (Fprimitive_undo): Use it.
7786 * print.c (print_error_message): Adjust print style for `user-error'.
7787 * keyboard.c (user_error): New function.
7788 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
7789
ab0fa4e4
PE
77902012-05-03 Paul Eggert <eggert@cs.ucla.edu>
7791
7792 Do not limit current-time-string to years 1000..9999.
7793 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
7794 (Fcurrent_time_string): Support any year that is supported by the
7795 underlying localtime representation. Don't use asctime, as it
7796 has undefined behavior for years outside the range -999..9999.
7797
7ed806a7
PE
77982012-05-02 Paul Eggert <eggert@cs.ucla.edu>
7799
7800 Fix race conditions involving setenv, gmtime, localtime, asctime.
7801 Without this fix, interrupts could mess up code that uses these
7802 nonreentrant functions, since setting TZ invalidates existing
7803 tm_zone or tzname values, and since most of these functions return
7804 pointers to static storage.
7805 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
7806 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
7807 Grow the critical sections to include not just invoking
7808 localtime/gmtime, but also accessing these functions' results
7809 including their tm_zone values if any, and any related TZ setting.
7810 (format_time_string): Last arg is now struct tm *, not struct tm **,
71873e2b
SM
7811 so that the struct tm is saved in the critical section.
7812 All callers changed. Simplify allocation of initial buffer, partly
7ed806a7
PE
7813 motivated by the fact that memory allocation needs to be outside
7814 the critical section.
7815
0c16dfed
DA
78162012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
7817
7818 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
7819 with RESET_INTERVAL.
7820
7821 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
7822 Remove duplicated buffer name initialization.
7823
3f83ace8
JM
78242012-05-02 Jim Meyering <jim@meyering.net>
7825
7826 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
7827
c7b8541e
JM
7828 * xfns.c (x_window): Use xstrdup (Bug#11375).
7829
90207a15 78302012-05-02 Eli Zaretskii <eliz@gnu.org>
2fa85638
EZ
7831
7832 * xdisp.c (pos_visible_p): If already at a newline from the
7833 display string before the 'while' loop, don't walk back the glyphs
7834 from it3.glyph_row. Solves assertion violation when the display
7835 string begins with a newline (egg.el). (Bug#11367)
7836
b593d6a9
AH
78372012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
7838
7839 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
7840 Move to simple.el.
7841
4737362e
GM
78422012-05-01 Glenn Morris <rgm@gnu.org>
7843
99cf43f9
GM
7844 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
7845 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
7846 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
7847 All were removed before 23.1.
7848
9311dcff
GM
7849 * dispnew.c: Remove HAVE_LIBNCURSES test;
7850 it is always true on relevant platforms.
7851
4d5c6349
GM
7852 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
7853 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
7854
4737362e
GM
7855 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
7856
74dd3a6b
AS
78572012-04-30 Andreas Schwab <schwab@linux-m68k.org>
7858
7859 * .gdbinit (xpr): Remove checks for no longer existing misc types.
7860 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
7861 Remove.
7862
13c379ee
PE
78632012-04-28 Paul Eggert <eggert@cs.ucla.edu>
7864
7865 Do not avoid creating empty evaporating overlays (Bug#9642).
7866 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
7867 That is, do not delete an evaporating overlay if it becomes
7868 empty after its bounds are adjusted to fit within its buffer.
7869 This fix caused other problems, and I'm reverting it until we get
7870 to the bottom of them.
7871
a8e7d6d7 78722012-04-27 Chong Yidong <cyd@gnu.org>
9be2fd9b
CY
7873
7874 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
7875
a8e7d6d7 78762012-04-27 Eli Zaretskii <eliz@gnu.org>
f0ee99a0
EZ
7877
7878 * xdisp.c (pos_visible_p): If the window start position is beyond
7879 ZV, start the display from buffer beginning. Prevents assertion
7880 violation in init_iterator when the minibuffer window is scrolled
7881 via the scroll bar.
7882
7883 * window.c (window_scroll_pixel_based): Likewise.
7884
a8e7d6d7 78852012-04-27 Chong Yidong <cyd@gnu.org>
9ec7751f
CY
7886
7887 * keymap.c (where_is_internal): Doc fix (Bug#10872).
7888
a8e7d6d7 78892012-04-27 Glenn Morris <rgm@gnu.org>
24c51a09
GM
7890
7891 * fileio.c (Fcopy_file, Fset_file_selinux_context):
7892 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
7893
a8e7d6d7 78942012-04-27 Eli Zaretskii <eliz@gnu.org>
73055685 7895
b593d6a9
AH
7896 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
7897 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
73055685 7898
1c6900d9
EZ
78992012-04-26 Eli Zaretskii <eliz@gnu.org>
7900
4c3fa1d9
EZ
7901 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
7902 display element, check also the underlying string or buffer
7903 character. (Bug#11341)
7904
1c6900d9
EZ
7905 * w32menu.c: Include w32heap.h.
7906 (add_menu_item): If the call to AppendMenuW (via
7907 unicode_append_menu) fails, disable Unicode menus only if we are
7908 running on Windows 9X/Me.
7909
42bf8205
AS
79102012-04-24 Andreas Schwab <schwab@linux-m68k.org>
7911
7912 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
7913 (xgetint): Add missing shift for LSB tags.
7914
b1bac16e
MR
79152012-04-24 Martin Rudalics <rudalics@gmx.at>
7916
7917 * keyboard.c (read_char): Don't wipe echo area for select window
7918 events: These might get delayed via `mouse-autoselect-window'
7919 (Bug#11304).
7920
d69621cc
JB
79212012-04-24 Juanma Barranquero <lekktu@gmail.com>
7922
7923 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
7924 manipulation of :loaded-from data.
7925
02fd101b
JB
79262012-04-23 Juanma Barranquero <lekktu@gmail.com>
7927
7928 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
7929 now a cons (bug#11311).
7930
888bec30
PE
79312012-04-23 Paul Eggert <eggert@cs.ucla.edu>
7932
89a438bd
PE
7933 Do not create empty overlays with the evaporate property (Bug#9642).
7934 * buffer.c (Fmove_overlay): Delete an evaporating overlay
7935 if it becomes empty after its bounds are adjusted to fit within
7936 its buffer. Without this fix, in a nonempty buffer (let ((o
7937 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
7938 yields an empty overlay that has the evaporate property, which is
7939 not supposed to happen.
7940
1068fe4d
PE
7941 Fix minor GTK3 problems found by static checking.
7942 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7943 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7944 (struct _EmacsFixedClass, emacs_fixed_get_type):
7945 Move decls here from emacsgtkfixed.h, since they needn't be public.
7946 (emacs_fixed_get_type): Now static.
7947 (emacs_fixed_class_init): Omit unused local.
7948 (emacs_fixed_child_type): Remove; unused.
7949 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
7950 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
7951 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
7952 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
7953 (EMACS_FIXED_GET_CLASS): Remove; unused.
7954 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
7955
888bec30
PE
7956 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
7957 Problem reported by Juanma Barranquero for Windows -Wunused-function.
7958
de85e130
PE
79592012-04-22 Paul Eggert <eggert@cs.ucla.edu>
7960
d0baac98 7961 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
bd7239f5 7962 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
d0baac98
PE
7963 (__malloc_size_t, __malloc_ptrdiff_t):
7964 Remove. All uses removed, replaced by the definiens if needed,
7965 since we can assume C89 or better now.
7966 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
7967 (protect_malloc_state, align, get_contiguous_space)
7968 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
7969 (malloc_atfork_handler_child, malloc_enable_thread)
7970 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
7971 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
7972 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
7973 (special_realloc, _realloc_internal_nolock, _realloc_internal)
7974 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
7975 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
7976 Define using prototypes, not old style.
7977 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
7978 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
7979 (align): Don't assume that signed integer overflow wraps around.
7980 Omit unused local var.
7981 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
7982 (_free_internal_nolock, memalign, mallochook, reallochook):
7983 Omit no-longer-needed casts.
7984 (valloc): Use getpagesize, not __getpagesize.
7985 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
7986 (struct hdr): The 'magic' member is now size_t, not unsigned long.
7987
de85e130
PE
7988 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
7989
dcbf5805
MA
79902012-04-22 Michael Albinus <michael.albinus@gmx.de>
7991
7992 Move functions from C to Lisp. Make non-blocking method calls
7993 the default. Implement further D-Bus standard interfaces.
7994
7995 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
7996 (QCdbus_request_name_allow_replacement)
7997 (QCdbus_request_name_replace_existing)
7998 (QCdbus_request_name_do_not_queue)
7999 (QCdbus_request_name_reply_primary_owner)
8000 (QCdbus_request_name_reply_in_queue)
8001 (QCdbus_request_name_reply_exists)
8002 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
8003 (QCdbus_registered_serial, QCdbus_registered_method)
8004 (QCdbus_registered_signal): New Lisp objects.
8005 (XD_DEBUG_MESSAGE): Use sizeof.
8006 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
8007 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
8008 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
8009 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
8010 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
8011 (xd_signature, xd_append_arg): Allow float for integer types.
8012 (xd_get_connection_references): New function.
b593d6a9
AH
8013 (xd_get_connection_address): Rename from xd_initialize.
8014 Return cached address.
dcbf5805
MA
8015 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
8016 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
8017 level.
8018 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9a4b36f8 8019 Return number of refcounts.
dcbf5805
MA
8020 (Fdbus_get_unique_name): Make stronger parameter check.
8021 (Fdbus_message_internal): New defun.
8022 (Fdbus_call_method, Fdbus_call_method_asynchronously)
8023 (Fdbus_method_return_internal, Fdbus_method_error_internal)
8024 (Fdbus_send_signal, Fdbus_register_service)
8025 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
8026 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
8027 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
8028 (Vdbus_compiled_version, Vdbus_runtime_version)
8029 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
8030 (Vdbus_message_type_method_return, Vdbus_message_type_error)
8031 (Vdbus_message_type_signal): New defvars.
b593d6a9
AH
8032 (Vdbus_registered_buses, Vdbus_registered_objects_table):
8033 Adapt docstring.
dcbf5805 8034
52828e02
PE
80352012-04-22 Paul Eggert <eggert@cs.ucla.edu>
8036
da05bc4c
PE
8037 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
8038 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
8039 Do not assume ptrdiff_t is the same width as 'int'.
8040
52828e02
PE
8041 * alloc.c: Handle unusual debugging option combinations.
8042 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
8043 since the two debugging options are incompatible.
8044 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
8045 is defined.
8046 (mem_init, mem_insert, mem_insert_fixup):
8047 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
8048 (NEED_MEM_INSERT): Remove; no longer needed.
8049
f01769f9
LL
80502012-04-22 Leo Liu <sdl.web@gmail.com>
8051
8052 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
8053
5790543d
PE
80542012-04-22 Paul Eggert <eggert@cs.ucla.edu>
8055
8056 * sysdep.c [__FreeBSD__]: Minor cleanups.
8057 (list_system_processes, system_process_attributes) [__FreeBSD__]:
8058 Use Emacs indenting style more consistently. Avoid some casts.
8059 Use 'double' consistently rather than mixing 'float' and 'double'.
8060
b91b7e4d
EW
80612012-04-21 Eduard Wiebe <usenet@pusto.de>
8062
b593d6a9
AH
8063 * sysdep.c (list_system_processes, system_process_attributes):
8064 Add implementation for FreeBSD (Bug#5243).
b91b7e4d 8065
6114eb15
AS
80662012-04-21 Andreas Schwab <schwab@linux-m68k.org>
8067
8068 * lisp.mk (lisp): Update.
8069
2f38dff7
PE
80702012-04-20 Paul Eggert <eggert@cs.ucla.edu>
8071
8072 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
8073 It is never used otherwise.
8074
4ae29f89
SM
80752012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
8076
8077 * print.c (print_preprocess): Only check print_depth if print-circle
8078 is nil.
8079 (print_object): Check for cycles even when print-circle is nil and
8080 print-gensym is t, but only check print_depth if print-circle is nil.
8081
f30d612a
CY
80822012-04-20 Chong Yidong <cyd@gnu.org>
8083
8084 * process.c (wait_reading_process_output): If EIO occurs on a pty,
8085 set the status to "failed" and ensure that sentinel is run.
8086
c07a4c0b 80872012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
8088
8089 * process.c (Fset_process_inherit_coding_system_flag)
8090 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
4373fd43 8091 (Fmake_network_process, Fmake_serial_process): Doc fix.
016a35df 8092
c07a4c0b 80932012-04-20 Eli Zaretskii <eliz@gnu.org>
20a68157
EZ
8094
8095 * xdisp.c (string_buffer_position_lim): Limit starting position to
8096 BEGV.
8097 (set_cursor_from_row): If called for a mode-line or header-line
8098 row, return zero immediately.
8099 (try_cursor_movement): If inside continuation line, don't back up
4ae29f89
SM
8100 farther than the first row after the header line, if any.
8101 Don't consider the header-line row as "partially visible", even if
20a68157
EZ
8102 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
8103
c07a4c0b 81042012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 8105
4ae29f89
SM
8106 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
8107 (bug#11238).
ad3a2b41 8108
c07a4c0b 81092012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
6c94c34f 81102012-04-18 Paul Eggert <eggert@cs.ucla.edu>
ae6e112d
PE
8111
8112 configure: new option --enable-gcc-warnings (Bug#11207)
8113 * Makefile.in (C_WARNINGS_SWITCH): Remove.
8114 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
8115 (ALL_CFLAGS): Use new macros rather than old.
8116 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
8117 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
8118 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
8119 -Wunused-result, -Wunused-variable. This should go away once
8120 the Emacs and Gnulib regex code is merged.
8121 (xmalloc, xrealloc): Now static.
8122
aba027e8
PE
81232012-04-17 Paul Eggert <eggert@cs.ucla.edu>
8124
8125 * dired.c (Fsystem_groups): Remove unused local.
8126
e5a36063
GM
81272012-04-17 Glenn Morris <rgm@gnu.org>
8128
8129 * dired.c (Fsystem_users): Doc fix.
8130
316411f0
DA
81312012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
8132
8133 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
8134 (syms_of_dired): Add them.
8135
9426aba4
PE
81362012-04-16 Paul Eggert <eggert@cs.ucla.edu>
8137
b62a57be
PE
8138 Fix minor alloc.c problems found by static checking.
8139 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
8140 New extern decls, to avoid calling undeclared functions.
8141 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
8142 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
8143 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
8144 (NEED_MEM_INSERT): New macro.
8145 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
4b5afbb0 8146 Remove one incorrect comment and fix another.
b62a57be 8147
3539f31f
PE
8148 Fix minor ralloc.c problems found by static checking.
8149 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
8150 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
8151 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
8152 (r_alloc_sbrk): Now static.
8153
a041960a
PE
8154 Improve ralloc.c interface checking.
8155 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
8156 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
8157 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
8158 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
8159 [REL_ALLOC]: ... to here, to check interface.
8160 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
8161 Remove decls. This fixes an "It stinks!".
8162
9426aba4
PE
8163 * alloc.c (which_symbols): Fix alignment issue / type clash.
8164
d55c12ed
AS
81652012-04-15 Andreas Schwab <schwab@linux-m68k.org>
8166
8167 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
8168 (struct Lisp_Misc_Any): Likewise.
8169 (struct Lisp_Free): Likewise.
8170 * alloc.c (union aligned_Lisp_Symbol): Define.
8171 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
8172 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
8173 (union aligned_Lisp_Misc): Define.
8174 (MARKER_BLOCK_SIZE, struct marker_block): Use union
8175 aligned_Lisp_Misc instead of union Lisp_Misc.
4ae29f89 8176 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
d55c12ed 8177
b948ce8b
PE
81782012-04-14 Paul Eggert <eggert@cs.ucla.edu>
8179
8180 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
8181 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
8182 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
8183 * s/netbsd.h, s/sol2-6.h:
8184 Remove definition of GC_MARK_STACK, since the default now works.
8185 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
8186 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
8187 no longer the default.
8188 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
8189
35dc09a1 81902012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 8191
35dc09a1
GM
8192 * lread.c (lisp_file_lexically_bound_p):
8193 Fix hang at ";-*-\n" (bug#11238).
ad3a2b41 8194
35dc09a1
GM
81952012-04-14 Eli Zaretskii <eliz@gnu.org>
8196
8197 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
8198 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
8199
82002012-04-14 Jan Djärv <jan.h.d@swipnet.se>
8201
8202 * nsterm.m (constrainFrameRect): Always constrain when there is only
8203 one screen (Bug#10962).
8204
bcd86815
KB
82052012-04-13 Ken Brown <kbrown@cornell.edu>
8206
8207 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
8208
c25df26e
RT
82092012-04-13 Reuben Thomas <rrt@sc3d.org>
8210
8211 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
8212
0fc59f1e
DC
82132012-04-11 Daniel Colascione <dancol@dancol.org>
8214
8215 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
8216 against is gone. It's better to use vfork now so that when Cygwin
8217 gains a new, working vfork, we use it automatically (bug#10398).
8218
de8c03dc
SM
82192012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8220
8221 * window.c (save_window_save): Obey window-point-insertion-type.
8222
2f097256
GM
82232012-04-11 Glenn Morris <rgm@gnu.org>
8224
8225 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
8226
453b951e
SM
82272012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
8228
8229 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
8230
75f1671a 82312012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
6bbef4e5
JC
8232
8233 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
8234 (force_quit_count): New var.
8235 (handle_interrupt): Use it.
8236
2a8ce227
JB
82372012-04-10 Juanma Barranquero <lekktu@gmail.com>
8238
8239 * w32.c (w32_delayed_load): Record the full path of the library
8240 being loaded (bug#10424).
8241
935396c0
GM
82422012-04-09 Glenn Morris <rgm@gnu.org>
8243
05920a43
GM
8244 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
8245 not just in the obarray, before snarfing them. (Bug#11036)
8246
935396c0
GM
8247 * Makefile.in ($(leimdir)/leim-list.el):
8248 Pass EMACS rather than BUILT_EMACS.
8249
a18ecafa
TZ
82502012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
8251
8252 * process.c (make_process):
8253 * process.h: Add integer `gnutls_handshakes_tried' member to
8254 process struct.
8255
6bbef4e5
JC
8256 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
8257 Add convenience `GNUTLS_LOG2i' macro.
a18ecafa
TZ
8258
8259 * gnutls.c (gnutls_log_function2i): Convenience log function.
8260 (emacs_gnutls_read): Use new log functions,
8261 `gnutls_handshakes_tried' process member, and
8262 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
8263 attempts per process (connection).
8264
b4d3bc10
CY
82652012-04-09 Chong Yidong <cyd@gnu.org>
8266
8267 * eval.c (Fuser_variable_p, user_variable_p_eh)
8268 (lisp_indirect_variable): Functions deleted.
8269 (Fdefvar): Caller changed.
8270
8271 * callint.c (Finteractive, Fcall_interactively):
8272 * minibuf.c (Fread_variable): Callers changed.
8273
70f4d973
EZ
82742012-04-09 Eli Zaretskii <eliz@gnu.org>
8275
8276 * xdisp.c (set_cursor_from_row): If the display string appears in
8277 the buffer at position that is closer to point than the position
8278 after the display string, display the cursor on the first glyph of
8279 the display string. Fixes cursor display when a 'display' text
8280 property immediately follows invisible text. (Bug#11094)
8281
cb3c2e3e
PE
82822012-04-09 Paul Eggert <eggert@cs.ucla.edu>
8283
8284 composite.c: use 'double' consistently
8285 * composite.c (get_composition_id): Use 'double' consistently
8286 instead of converting 'float' to 'double' and vice versa; this is
8287 easier to understand and avoids a GCC warning.
8288
fd06db5d
GM
82892012-04-09 Glenn Morris <rgm@gnu.org>
8290
50fe702a
GM
8291 * Makefile.in: Generate leim-list with bootstrap-emacs, in
8292 preparation for dumping it with emacs. (Bug#4789)
8293 (leimdir): New variable.
8294 ($(leimdir)/leim-list.el): New rule.
8295 (emacs$(EXEEXT)): Depend on leim-list.el.
8296
fd06db5d
GM
8297 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
8298 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
8299 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
8300
55c131ee
AS
83012012-04-08 Andreas Schwab <schwab@linux-m68k.org>
8302
8303 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
8304 proper alignment.
8305
9209588f
JB
83062012-04-07 Juanma Barranquero <lekktu@gmail.com>
8307
8308 * xml.c (init_libxml2_functions) [WINDOWSNT]:
8309 Remove unused local variable.
8310
e3fb2efb
PE
83112012-04-07 Paul Eggert <eggert@cs.ucla.edu>
8312
8313 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
8314 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
8315 (mark_memory): Mark Lisp_Objects only if pointers might hide in
8316 objects, as mark_maybe_pointer will catch them otherwise.
8317 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
8318 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
8319
b5385551
PE
83202012-04-07 Paul Eggert <eggert@cs.ucla.edu>
8321
8322 Fix typo that broke non-Windows builds.
8323 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
8324
9078ead6
EZ
83252012-04-07 Eli Zaretskii <eliz@gnu.org>
8326
8327 Support building on MS-Windows with libxml2.
8328
8329 * makefile.w32-in (OBJ2): Add xml.$(O).
8330 (GLOBAL_SOURCES): Add xml.c.
8331 ($(BLD)/xml.$(O)): New dependency list.
8332
8333 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
8334 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
8335 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
8336 [!WINDOWSNT]: New macros.
8337 (init_libxml2_functions, libxml2_loaded_p): New functions.
8338 (parse_region): Call fn_xmlCheckVersion instead of using the macro
8339 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
8340 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
8341 Calls xmlCleanupParser only if libxml2 was loaded (or statically
8342 linked in).
6bbef4e5
JC
8343 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
8344 Call init_libxml2_functions before calling libxml2 functions.
9078ead6
EZ
8345 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
8346
8347 * emacs.c: Don't include libxml/parser.h.
8348 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
8349 xmlCleanupParser directly.
8350
8351 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
8352
3811fdf3
EZ
83532012-04-07 Eli Zaretskii <eliz@gnu.org>
8354
8355 * indent.c (Fvertical_motion): If there is a display string at
8356 point, use it.vpos to compute how many lines to backtrack after
8357 move_it_to point. (Bug#11133)
8358
2f8e16b2
EZ
83592012-04-06 Eli Zaretskii <eliz@gnu.org>
8360
8361 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
8362 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
8363 about subtle differences between FETCH_CHAR* and STRING_CHAR*
8364 macros related to unification of CJK characters. For the details,
8365 see the discussion following the message here:
8366 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
8367
3d439cd1
CY
83682012-04-04 Chong Yidong <cyd@gnu.org>
8369
8370 * keyboard.c (Vdelayed_warnings_list): Doc fix.
8371
8bc53d00
EZ
83722012-04-01 Eli Zaretskii <eliz@gnu.org>
8373
8374 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
8375 instead of alloca. (Bug#11138)
8376
3b0512a3
AS
83772012-04-01 Andreas Schwab <schwab@linux-m68k.org>
8378
8379 * w32menu.c (is_simple_dialog): Properly check lisp types.
8380 (Bug#11141)
8381
8427ddd2
EZ
83822012-03-31 Eli Zaretskii <eliz@gnu.org>
8383
979022ef
EZ
8384 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
8385 position we get to after a call to move_it_to fails the
8386 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
8387 only if we wind up in a string from display property. (Bug#11063)
8388
a6b1c7cc
EZ
8389 * window.c (Fdelete_other_windows_internal): Invalidate the row
8390 and column information about mouse highlight, so that redisplay
8391 restores it after reallocating the glyph matrices. (Bug#7464)
8392
8427ddd2
EZ
8393 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
8394 string comes from a `display' text property, use the buffer
8395 position of that property as if we actually saw that position in
8396 the row's glyphs.
697ba24b
EZ
8397 (move_it_by_lines): Remove the assertion that
8398 "it->current_x == 0 && it->hpos == 0" which can be legitimately
8399 violated when there's a before-string at the beginning of a line.
8400 (Bug#11063)
8427ddd2 8401
65a0a738
EZ
84022012-03-30 Eli Zaretskii <eliz@gnu.org>
8403
8404 * xdisp.c (append_space_for_newline): If the default face was
8405 remapped, use the remapped face for the appended newline.
8406 (extend_face_to_end_of_line): Use the remapped default face for
8407 extending the face to the end of the line.
8408 (display_line): Call extend_face_to_end_of_line when the default
8409 face was remapped. (Bug#11068)
8410
581355cc
EZ
84112012-03-29 Eli Zaretskii <eliz@gnu.org>
8412
8413 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
8414
e8fc049f
SM
84152012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
8416
8417 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
8418
4fb9a543
GM
84192012-03-27 Glenn Morris <rgm@gnu.org>
8420
8421 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
8422 Doc fixes.
8423
679910f1
KH
84242012-03-26 Kenichi Handa <handa@m17n.org>
8425
8426 * dispextern.h (struct glyph): Fix previous change. Change the
8427 bit length of glyphless.ch to 25 (Bug#11082).
8428
90d49b7f
CY
84292012-03-26 Chong Yidong <cyd@gnu.org>
8430
8431 * keyboard.c (Vselection_inhibit_update_commands): New variable.
8432 (command_loop_1): Use it; inhibit selection update for
8433 handle-select-window too (Bug#8996).
8434
f514f6f0
FP
84352012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
8436
e8fc049f 8437 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
f514f6f0 8438
bf43fa51
KH
84392012-03-25 Kenichi Handa <handa@m17n.org>
8440
8441 * dispextern.h (struct glyph): Change the bit length of
8442 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
8443
8a0c01dd
EZ
84442012-03-24 Eli Zaretskii <eliz@gnu.org>
8445
8446 * s/ms-w32.h (tzname): Include time.h before redirecting to
8447 _tzname. Fixes the MSVC build. (Bug#9960)
8448
7d1c3a76
AS
84492012-03-24 Andreas Schwab <schwab@linux-m68k.org>
8450
8ed79523
AS
8451 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
8452 characters.
8453
7d1c3a76
AS
8454 * xterm.c (XTread_socket): Only modify handling_signal if
8455 !SYNC_INPUT. (Bug#11080)
8456
e99a9b8b
EZ
84572012-03-23 Eli Zaretskii <eliz@gnu.org>
8458
8459 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
8460 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
8461 when fetching a multibyte character consumes more bytes than
8462 CHAR_BYTES returns, due to unification of CJK characters in
8463 string_char. (Bug#11073)
8464
5063c0e1
TN
84652012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
8466
8467 * process.c (wait_reading_process_output): Handle pty disconnect
8468 by refraining from sending oneself a SIGCHLD (bug#10933).
8469
9f851fbd
CY
84702012-03-22 Chong Yidong <cyd@gnu.org>
8471
8472 * dispextern.h (struct it): New member string_from_prefix_prop_p.
8473
5063c0e1 8474 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9f851fbd
CY
8475 Mark string as coming from a prefix property.
8476 (handle_face_prop): Use default face for prefix strings (Bug#4281).
8477 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
8478
fb5b8aca
CY
84792012-03-21 Chong Yidong <cyd@gnu.org>
8480
8481 * xfaces.c (Vface_remapping_alist): Doc fix.
8482
62356a1b
EZ
84832012-03-20 Eli Zaretskii <eliz@gnu.org>
8484
8485 * w32proc.c (Fw32_set_console_codepage)
5063c0e1
TN
8486 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
8487 Doc fixes.
62356a1b 8488
025de85b
CY
84892012-03-20 Chong Yidong <cyd@gnu.org>
8490
8491 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
8492 to reflect default non-nil value of redisplay-dont-pause.
8493
4827f94e
KH
84942012-03-19 Kenichi Handa <handa@m17n.org>
8495
8496 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
8497 it fit in a valid range (Bug#11003).
8498
e50a24a2
EZ
84992012-03-18 Eli Zaretskii <eliz@gnu.org>
8500
8501 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
8502 that is not from display property, accept the row as a "cursor
8503 row" if one of the string's character has a non-nil `cursor'
8504 property. Fixes cursor positioning when there are newlines in
8505 overlay strings, e.g. in icomplete.el. (Bug#11035)
8506
9af5ed87
PE
85072012-03-12 Paul Eggert <eggert@cs.ucla.edu>
8508
8509 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
8510
d1f55f16
CY
85112012-03-12 Chong Yidong <cyd@gnu.org>
8512
8513 * eval.c (inhibit_lisp_code): Rename from
8514 inhibit_window_configuration_change_hook; move from window.c.
8515
8516 * xfns.c (unwind_create_frame_1, Fx_create_frame):
8517 * window.c (run_window_configuration_change_hook)
8518 (syms_of_window): Callers changed.
8519
66c5eebd
CY
85202012-03-11 Chong Yidong <cyd@gnu.org>
8521
413df973
CY
8522 * keymap.c (Fkey_description): Doc fix (Bug#9700).
8523
66c5eebd
CY
8524 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
8525
1de11f56
CY
85262012-03-10 Chong Yidong <cyd@gnu.org>
8527
8528 * frame.c (other_visible_frames): Don't assume the selected frame
8529 is visible (Bug#10955).
8530
cae07000
SM
85312012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
8532
8533 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
8534
89c94350
JD
85352012-03-08 Jan Djärv <jan.h.d@swipnet.se>
8536
8537 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
8538 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
8539 zero (Bug#10954).
8540
999dd333
GM
85412012-03-03 Glenn Morris <rgm@gnu.org>
8542
01a6dcc8 8543 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
999dd333 8544
de0100f2
EZ
85452012-03-02 Eli Zaretskii <eliz@gnu.org>
8546
8547 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
8548 position past the first glyph_row that ends at ZV. (Bug#10902)
b8456c5c
EZ
8549 (redisplay_window, next_element_from_string): Fix typos in
8550 comments.
3e441275
EZ
8551 (redisplay_window): Pass to move_it_vertically the margin in
8552 pixels, not in screen lines.
de0100f2 8553
96a72ee9
GM
85542012-03-02 Glenn Morris <rgm@gnu.org>
8555
8556 * buffer.c (buffer-list-update-hook): Doc fix.
8557
312508d7
EZ
85582012-02-29 Eli Zaretskii <eliz@gnu.org>
8559
8560 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
8561 push_it before setting up the iterator for the first overlay
8562 string, even if we have an empty string loaded.
8563 (next_overlay_string): If there's an empty string on the iterator
8564 stack, pop the stack. (Bug#10903)
8565
27f3c637
PE
85662012-02-25 Paul Eggert <eggert@cs.ucla.edu>
8567
8568 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
8569 Suggested by Stefan Monnier in
8570 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
8571 * alloc.c (widen_to_Lisp_Object): New static function.
8572 (mark_memory): Also mark Lisp_Objects by fetching pointer words
8573 and widening them to Lisp_Objects. This would work even if
8574 USE_LSB_TAG is defined and wide integers are used, which might
8575 happen in a future version of Emacs.
8576
3c9dfce6
CY
85772012-02-25 Chong Yidong <cyd@gnu.org>
8578
fa74b241
CY
8579 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
8580 Doc fix.
8581
3c9dfce6
CY
8582 * xselect.c (Fx_selection_exists_p): Doc fix.
8583 (x_clipboard_manager_save_all): Print an informative message
8584 before saving to clipboard manager.
8585
9486df08
CY
85862012-02-24 Chong Yidong <cyd@gnu.org>
8587
8588 * keyboard.c (process_special_events): Handle all X selection
8589 requests in kbd_buffer, not just the next one (Bug#8869).
8590
f01d3321
CY
85912012-02-23 Chong Yidong <cyd@gnu.org>
8592
8593 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
8594 call when setting menu-bar-lines and tool-bar-lines parameters.
8595 (unwind_create_frame_1): New helper function.
8596
8597 * window.c (inhibit_window_configuration_change_hook): New var.
8598 (run_window_configuration_change_hook): Obey it.
b2e4ca7d 8599 (syms_of_window): Initialize it.
f01d3321 8600
86b847b6
CY
86012012-02-22 Chong Yidong <cyd@gnu.org>
8602
8603 * xterm.c (x_draw_image_relief): Add missing type check for
8604 Vtool_bar_button_margin (Bug#10743).
8605
a59225b1
CY
86062012-02-21 Chong Yidong <cyd@gnu.org>
8607
8608 * fileio.c (Vfile_name_handler_alist): Doc fix.
8609
8610 * buffer.c (Fget_file_buffer): Protect against invalid file
8611 handler return value.
8612
310f5bd4
PE
86132012-02-20 Paul Eggert <eggert@cs.ucla.edu>
8614
cb3a28cc
PE
8615 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
8616 when computing $valmask.
8617
310f5bd4
PE
8618 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
8619 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
8620 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
8621 It's useless in that case, and it can cause problems on hosts
8622 that allocate halves of EMACS_INT values separately.
8623 Reported by Dan Horák. Diagnosed by Andreas Schwab in
8624 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
8625 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
8626 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
8627 it avoids undefined behavior on hosts where shifting right by more
8628 than the word width has undefined behavior.
8629
2375c96a
CY
86302012-02-19 Chong Yidong <cyd@gnu.org>
8631
8632 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
8633 (Funhandled_file_name_directory, Ffile_name_as_directory)
8634 (Fdirectory_file_name, Fexpand_file_name)
8635 (Fsubstitute_in_file_name): Protect against invalid file handler
8636 return values (Bug#10845).
8637
3eb49e71
EZ
86382012-02-18 Eli Zaretskii <eliz@gnu.org>
8639
8640 * .gdbinit (pitx): Fix incorrect references to fields of the
8641 iterator stack.
8642
7b926f3f
CY
86432012-02-17 Chong Yidong <cyd@gnu.org>
8644
8645 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
8646
11273115
PE
86472012-02-15 Paul Eggert <eggert@cs.ucla.edu>
8648
8649 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
8650 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
8651
c3a70e2b
CY
86522012-02-15 Chong Yidong <cyd@gnu.org>
8653
8654 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
8655 marked as special. Also, starting docstrings with * is obsolete.
8656
0ca43699
AS
86572012-02-13 Andreas Schwab <schwab@linux-m68k.org>
8658
8659 * gnutls.c (emacs_gnutls_write): Fix last change.
8660
2e8f3c56
LI
86612012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
8662
8663 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
8664 send_process.
8665
af70074f
SM
86662012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
8667
8668 * keymap.c (Fsingle_key_description): Handle char ranges.
8669
95986d52
CY
86702012-02-12 Chong Yidong <cyd@gnu.org>
8671
afd83bd1
CY
8672 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
8673 as that creates a dangerous corner case.
8674
95986d52
CY
8675 * window.c (Fdelete_window_internal): Invalidate the mouse
8676 highlight (Bug#9904).
8677
bd7da63e
GM
86782012-02-12 Glenn Morris <rgm@gnu.org>
8679
8680 * xselect.c (Fx_own_selection_internal)
8681 (Fx_get_selection_internal, Fx_disown_selection_internal)
8682 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
8683 * nsselect.m (Fx_own_selection_internal)
8684 (Fx_disown_selection_internal, Fx_selection_exists_p)
8685 (Fx_selection_owner_p, Fx_get_selection_internal):
8686 Sync docs and argument specs with the xselect.c versions.
8687
77abcbc2
LI
86882012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
8689
8690 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
8691
90b671e2
EZ
86922012-02-11 Eli Zaretskii <eliz@gnu.org>
8693
1c0ca0b7
EZ
8694 * w32select.c (Fx_selection_exists_p): Sync doc string and
8695 argument list with xselect.c. (Bug#10783)
8696
8697 * w16select.c (Fx_selection_exists_p): Sync doc string and
8698 argument list with xselect.c. (Bug#10783)
90b671e2 8699
49241268
GM
87002012-02-10 Glenn Morris <rgm@gnu.org>
8701
8702 * fns.c (Fsecure_hash): Doc fix.
8703
f998bbe7 87042012-02-09 Kenichi Handa <handa@m17n.org>
5c1ca13d
KH
8705
8706 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
8707
0992bd9c
CY
87082012-02-07 Chong Yidong <cyd@gnu.org>
8709
8710 * buffer.c (Fbuffer_local_variables)
8711 (buffer_lisp_local_variables): Handle unbound vars correctly;
8712 don't let Qunbound leak into Lisp.
8713
af008560
GM
87142012-02-07 Glenn Morris <rgm@gnu.org>
8715
dd605cc4
GM
8716 * image.c (Fimagemagick_types): Doc fix.
8717
af008560
GM
8718 * image.c (imagemagick-render-type): Change it from a lisp object
8719 to an integer. Move the doc here from the lisp manual.
8720 Treat all values not equal to 0 the same.
8721
1449fa1d
CY
87222012-02-06 Chong Yidong <cyd@gnu.org>
8723
8724 * doc.c (store_function_docstring): Avoid applying docstring of
8725 alias to base function (Bug#2603).
8726
3723ec07
AS
87272012-02-04 Andreas Schwab <schwab@linux-m68k.org>
8728
8729 * .gdbinit (pp1, pv1): Remove redundant defines.
8730 (pr): Use pp.
8731
79c1cc1e
CY
87322012-02-04 Chong Yidong <cyd@gnu.org>
8733
8734 * nsterm.m: Declare a global (Bug#10694).
8735
d7f29f8e
EZ
87362012-02-04 Eli Zaretskii <eliz@gnu.org>
8737
cae07000
SM
8738 * w32.c (get_emacs_configuration_options):
8739 Include --enable-checking, if specified, in the return value.
d7f29f8e 8740
3b95a6f9
MR
87412012-02-04 Martin Rudalics <rudalics@gmx.at>
8742
8743 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
8744 after rounding frame sizes. (Bug#9723)
8745
d6fa96a6
EZ
87462012-02-04 Eli Zaretskii <eliz@gnu.org>
8747
8748 * keyboard.c (adjust_point_for_property): Don't position point
8749 before BEGV. (Bug#10696)
8750
df0b2940
PE
87512012-02-03 Paul Eggert <eggert@cs.ucla.edu>
8752
8753 Handle overflow when computing char display width (Bug#9496).
8754 * character.c (char_width): Return EMACS_INT, not int.
8755 (char_width, c_string_width): Check for overflow when
8756 computing the width; this is possible now that individual
8757 characters can have unbounded width. Problem introduced
8758 by merge from Emacs 23 on 2012-01-19.
8759
6bee44d6
MA
87602012-02-02 Michael Albinus <michael.albinus@gmx.de>
8761
8762 * dbusbind.c (Fdbus_register_method): Mention the return value
8763 :ignore in the docstring.
8764
44f92739
GM
87652012-02-02 Glenn Morris <rgm@gnu.org>
8766
1b9f60cc
GM
8767 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
8768
44f92739
GM
8769 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
8770 Unconditionally set to t. (Bug#10673)
8771 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
8772 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
8773 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
8774
c5d3843c
KH
87752012-02-02 Kenichi Handa <handa@m17n.org>
8776
8777 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
8778 0, do not call append_composite_glyph.
8779
159462d4 87802012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
8781
8782 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
8783 NULL (Bug#6988).
8784 (x_produce_glyphs): If the component of a composition is a null
8785 string, set it->pixel_width to 1 to avoid zero-width glyph.
8786
78cef877
EZ
87872012-02-01 Eli Zaretskii <eliz@gnu.org>
8788
8789 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
8790 first 2 arguments are identical. This makes inserting large
8791 output from a subprocess an order of magnitude faster on
8792 MS-Windows, where all sbrk'ed memory is always contiguous.
8793
97897668
GM
87942012-01-31 Glenn Morris <rgm@gnu.org>
8795
8796 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
c78c6e0b 8797 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
97897668
GM
8798 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
8799
31fd3586
GM
88002012-01-29 Glenn Morris <rgm@gnu.org>
8801
8802 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
8803
0e24a8b2
CY
88042012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
8805
8806 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
8807
cc0adcb0
CY
88082012-01-28 Chong Yidong <cyd@gnu.org>
8809
8810 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
8811
acc28cb9
CY
88122012-01-26 Chong Yidong <cyd@gnu.org>
8813
9c69cfb7
CY
8814 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
8815
acc28cb9
CY
8816 * search.c (Fsearch_forward, Fsearch_backward): Document negative
8817 repeat counts (Bug#10507).
8818
48da7392
GM
88192012-01-26 Glenn Morris <rgm@gnu.org>
8820
8821 * lread.c (syms_of_lread): Doc fix.
8822
14af5f7f
CY
88232012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
8824
8825 * coding.c (encode_designation_at_bol): Change return value to
8826 EMACS_INT.
8827
0b21c100
CY
88282012-01-25 Chong Yidong <cyd@gnu.org>
8829
8830 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
8831
3c2907f7
CY
88322012-01-21 Chong Yidong <cyd@gnu.org>
8833
8834 * floatfns.c (Fcopysign): Make the second argument non-optional,
8835 since nil is not allowed anyway.
8836
959ad23f
AS
88372012-01-21 Andreas Schwab <schwab@linux-m68k.org>
8838
8839 * process.c (read_process_output): Use p instead of XPROCESS (proc).
8840 (send_process): Likewise.
8841
34a02f46
MR
88422012-01-19 Martin Rudalics <rudalics@gmx.at>
8843
8844 * window.c (save_window_save, Fcurrent_window_configuration)
cae07000
SM
8845 (Vwindow_persistent_parameters): Do not use Qstate.
8846 Rewrite doc-strings.
34a02f46 8847
1259009a 88482012-01-19 Kenichi Handa <handa@m17n.org>
25ed9e61
KH
8849
8850 * character.c (char_width): New function.
70d4fdf6
GM
8851 (Fchar_width, c_string_width, lisp_string_width):
8852 Use char_width (Bug#9496).
25ed9e61 8853
6a6ee00d
MR
88542012-01-16 Martin Rudalics <rudalics@gmx.at>
8855
8856 * window.c (Vwindow_persistent_parameters): New variable.
8857 (Fset_window_configuration, save_window_save): Handle persistent
8858 window parameters.
8859
c85efaf7
EZ
88602012-01-14 Eli Zaretskii <eliz@gnu.org>
8861
8862 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
8863 thrashing the stack of the thread. (Bug#9087)
8864
5944709e
PE
88652012-01-12 Paul Eggert <eggert@cs.ucla.edu>
8866
8867 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
8868
e71f5d99
EZ
88692012-01-11 Eli Zaretskii <eliz@gnu.org>
8870
8871 * xdisp.c (rows_from_pos_range): Handle the case where the
8872 highlight ends on a newline. (Bug#10464)
8873 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
8874 he end column for display of highlight that ends on a newline
8875 before a R2L line.
8876
ce316182
GM
88772012-01-11 Glenn Morris <rgm@gnu.org>
8878
8879 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
8880 from load-path also when installation-directory is nil. (Bug#10208)
8881
5b43da69
GM
88822012-01-10 Glenn Morris <rgm@gnu.org>
8883
74cc8ff9
GM
8884 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
8885
7d8d6e4e
GM
8886 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
8887 Update template values to be closer to their typical values these days.
5b43da69 8888
a0db8d43
EZ
88892012-01-09 Eli Zaretskii <eliz@gnu.org>
8890
8891 * xdisp.c (rows_from_pos_range): Accept additional argument
8892 DISP_STRING, and accept any glyph in a row whose object is that
8893 string as eligible for mouse highlight. Fixes mouse highlight of
8894 display strings from overlays. (Bug#10464)
8895
9a0115ab 88962012-01-07 Paul Eggert <eggert@cs.ucla.edu>
09450bae 8897
b9110d6a 8898 emacs: fix an auto-save permissions race condition (Bug#10400)
09450bae
PE
8899 * fileio.c (auto_saving_dir_umask): New static var.
8900 (Fmake_directory_internal): Use it.
8901 (do_auto_save_make_dir): Set it, instead of invoking chmod after
8902 creating the directory. The old code temporarily assigns
8903 too-generous permissions to the directory.
8904 (do_auto_save_eh): Clear it.
b9110d6a 8905 (Fdo_auto_save): Catch all errors, not just file errors, so
09450bae
PE
8906 that the var is always cleared.
8907
6c1bd3f3
EZ
89082012-01-07 Eli Zaretskii <eliz@gnu.org>
8909
8910 * search.c (scan_buffer): Pass character positions to
8911 know_region_cache, not byte positions. (Bug#6540)
8912
069d2b50
L
89132012-01-07 LynX <_LynX@bk.ru> (tiny change)
8914
8915 * w32.c (sys_rename): Report EXDEV when rename of a directory
8916 fails because the target is on another logical disk. (Bug#10284)
8917
75bf0d33
DB
89182012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
8919
8920 * xterm.c (x_embed_request_focus): New function.
8921
8922 * xterm.h: Add prototype.
8923
8924 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
8925
1c6e5a32
GM
89262012-01-05 Glenn Morris <rgm@gnu.org>
8927
8928 * emacs.c (emacs_copyright): Update short copyright year to 2012.
8929
651e947e
EZ
89302012-01-01 Eli Zaretskii <eliz@gnu.org>
8931
8932 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
8933 Load gnutls_transport_set_lowat only if GnuTLS version is below
8934 2.11.1.
8935 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
8936 GnuTLS versions below 2.11.1.
8937
3778cdd8
AL
89382011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
8939
8940 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
8941 to the doc string advising against its use for altering the way
8942 windows are scrolled.
8943
0e5317f7
KH
89442011-12-28 Kenichi Handa <handa@m17n.org>
8945
8946 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
8947 coding-system ASCII compatible only when it does not produce BOM
8948 on encoding (Bug#10383).
8949
93d5ca1f
JD
89502011-12-26 Jan Djärv <jan.h.d@swipnet.se>
8951
8952 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
8953 can scroll.
8954 (create_and_show_popup_menu): Always use menu_position_func for
8955 Gtk3 (Bug#10361).
8956
ca22b785
AS
89572011-12-24 Andreas Schwab <schwab@linux-m68k.org>
8958
8959 * callint.c (Fcall_interactively): Don't truncate prompt string.
8960
d048e1e6
EZ
89612011-12-23 Eli Zaretskii <eliz@gnu.org>
8962
8963 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
8964 property that ends at ZV, so that the bidi iteration could be
3ba1a2ad 8965 resumed from there (after widening). (Bug#10360)
d048e1e6 8966
5ccaba1f
JD
89672011-12-22 Jan Djärv <jan.h.d@swipnet.se>
8968
8969 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
8970
204ee57f
JD
89712011-12-21 Jan Djärv <jan.h.d@swipnet.se>
8972
b81d40f0
JB
8973 * nsterm.m (x_free_frame_resources):
8974 Release f->output_data.ns->miniimage.
204ee57f
JD
8975 (ns_index_color): Fix indentation. Do not retain
8976 color_table->colors[i].
8977
8978 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
8979 before returning.
8980
8981 * nsfns.m (x_set_background_color): Assign return value from
8982 ns_index_color to face-background instead of NSColor*.
8983 (ns_implicitly_set_icon_type): Fix indentation.
8984 Change assignment in for loop to comparison.
8985
8986 * emacs.c (ns_pool): New variable.
8987 (main): Assign ns_pool.
8988 (Fkill_emacs): Call ns_release_autorelease_pool.
8989
8990 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
8991 autorelease fdesc, release fdAttrs and tdict.
8992 (ns_get_covering_families): Release charset.
8993 (ns_findfonts): Release NSFontDescriptor created with new.
8994 (ns_uni_to_glyphs): Fix indentation.
8995 (setString): Release attrStr before assigning new value.
8996
c803b2b7
JD
89972011-12-18 Jan Djärv <jan.h.d@swipnet.se>
8998
678f4426
JD
8999 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
9000 and NS_IMPL_COCOA.
9001 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
9002 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
9003
cd394be1 90042011-12-18 David Reitter <reitter@cmu.edu>
678f4426 9005
5fecd5fc
JD
9006 * nsterm.m (ns_term_init): Subscribe for notifications
9007 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
9008 to method trackingNotification in EmacsMenu.
9009
9010 * nsmenu.m (trackingMenu): New variable.
3771cb17 9011 (trackingNotification): New method (from Aquamacs).
5fecd5fc 9012 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
3771cb17 9013 from Aquamacs (Bug#7030).
678f4426
JD
9014
90152011-12-18 Jan Djärv <jan.h.d@swipnet.se>
5fecd5fc 9016
c803b2b7
JD
9017 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
9018 (symbol_to_nsstring): Fix indentation.
9019 (ns_symbol_to_pb): New function.
cae07000
SM
9020 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
9021 (Fns_rotate_cut_buffers_internal): Remove.
9022 (Fns_store_selection_internal): Rename from
c803b2b7
JD
9023 Fns_store_cut_buffer_internal.
9024 (ns_get_foreign_selection, Fx_own_selection_internal)
9025 (Fx_disown_selection_internal, Fx_selection_exists_p)
b81d40f0
JB
9026 (Fns_get_selection_internal, Fns_store_selection_internal):
9027 Use ns_symbol_to_pb and check if return value is nil.
9028 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
9029 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
c803b2b7
JD
9030 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
9031 renamed to Sns_store_selection_internal.
9032 (ns_handle_selection_request): Move code to Fx_own_selection_internal
9033 and remove this function.
9034 (ns_handle_selection_clear): Remove, never used.
9035 (Fx_own_selection_internal): Move code from ns_handle_selection_request
9036 here.
9037
e1b01a3a
KB
90382011-12-17 Ken Brown <kbrown@cornell.edu>
9039
9040 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
9041 GID is unknown (Bug#10257).
9042
2adb6e85
PE
90432011-12-17 Paul Eggert <eggert@cs.ucla.edu>
9044
9045 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
9046 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
9047 which caused a build failure on GNU/Linux IA-64. This problem was
9048 introduced by my 2011-10-07 patch.
9049
d1d7b339
JL
90502011-12-15 Juri Linkov <juri@jurta.org>
9051
9052 * image.c (imagemagick_error): New function. (Bug#10112)
9053 (imagemagick_load_image): Comment out `MagickSetResolution' call.
9054 Use `imagemagick_error' where ImageMagick functions return
9055 `MagickFalse'.
9056 (Fimagemagick_types): Add `Fnreverse' to return the list in the
9057 proper order.
9058
100d5755
KH
90592011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9060
9061 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
9062 fill background (Bug#8992).
9063
454592a6
MR
90642011-12-13 Martin Rudalics <rudalics@gmx.at>
9065
9066 * window.c (Vwindow_combination_resize)
9067 (Vwindow_combination_limit): Use t instead of non-nil in
9068 doc-strings.
61d4b438
MR
9069 (Vrecenter_redisplay): Add first sentence of doc-string on
9070 separate line.
53524d93 9071 (Frecenter): Fix doc-string typo.
454592a6 9072
3633e3aa
KH
90732011-12-11 Kenichi Handa <handa@m17n.org>
9074
9075 * coding.c (Funencodable_char_position): Pay attention to the
9076 buffer text relocation (Bug#9389).
9077
7b9d523a 90782011-12-10 Jan Djärv <jan.h.d@swipnet.se>
61ccba97 9079
7b9d523a
JD
9080 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
9081 gtk_init (Bug#10100).
9082
b73189c6
EZ
90832011-12-10 Eli Zaretskii <eliz@gnu.org>
9084
9085 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
9086 IT->string is nil. (Bug#10263)
9087
f7dfe5d6
JD
90882011-12-10 Jan Djärv <jan.h.d@swipnet.se>
9089
83faebb4
JD
9090 * nsterm.h (x_free_frame_resources): Declare.
9091
f7dfe5d6
JD
9092 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
9093 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
9094
9095 * nsterm.h (ns_get_defaults_value): Declare.
9096
9097 * nsterm.m (ns_default): Call ns_get_defaults_value.
9098
7cd4e72c
EZ
90992011-12-09 Eli Zaretskii <eliz@gnu.org>
9100
9101 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
9102 (Bug#10170)
9103
b34d7317
YM
91042011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9105
9106 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
9107 that where the value of an _OBJC_* symbol points to is in the .bss
9108 section (Bug#10240).
9109
76470ad1
KH
91102011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
9111
9112 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
2fac8180 9113 after the loop to call ccl_driver at least once (Bug#8619).
76470ad1 9114
745fff94
KH
91152011-12-08 Kenichi Handa <handa@m17n.org>
9116
9117 * ftfont.c (get_adstyle_property): Fix previous change
9118 (Bug#10233).
9119
6e44397c
JB
91202011-12-07 Juanma Barranquero <lekktu@gmail.com>
9121
9122 * w32.c (init_environment): If no_site_lisp, remove site-lisp
9123 dirs from the default value of EMACSLOADPATH (bug#10208).
9124
7efa6272
GM
91252011-12-07 Glenn Morris <rgm@gnu.org>
9126
9127 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
9128 installation and source directories as well. (Bug#10208)
9129
f6fc4d87
CY
91302011-12-06 Chong Yidong <cyd@gnu.org>
9131
9132 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
9133
2bf26180
GM
91342011-12-06 Glenn Morris <rgm@gnu.org>
9135
9136 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
9137 as an error, not just -1. (Bug#10217)
9138
3a6ad4f0
CY
91392011-12-05 Chong Yidong <cyd@gnu.org>
9140
9141 * keyboard.c (process_special_events): New function.
9142 (swallow_events, Finput_pending_p): Use it (Bug#10195).
9143
75a3b399
PE
91442011-12-05 Paul Eggert <eggert@cs.ucla.edu>
9145
9146 * coding.c (encode_designation_at_bol): Don't use uninitialized
9147 local variable (Bug#9318).
9148
c3c9e25e
KH
91492011-12-05 Kenichi Handa <handa@m17n.org>
9150
9151 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
9152 return Qnil (Bug#8046, Bug#10193).
9153
5eb05ea3
KH
91542011-12-05 Kenichi Handa <handa@m17n.org>
9155
9156 * coding.c (encode_designation_at_bol): New args charbuf_end and
9157 dst. Return the number of produced bytes. Callers changed.
a79703f5
KH
9158 (coding_set_source): Return how many bytes coding->source was
9159 relocated.
9160 (coding_set_destination): Return how many bytes
9161 coding->destination was relocated.
9162 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
cae07000 9163 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
5eb05ea3
KH
9164
91652011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
9166
9167 * coding.c (CODING_CHAR_CHARSET_P): New macro.
9168 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
9169 macro (Bug#9318).
9170
91712011-12-05 Andreas Schwab <schwab@linux-m68k.org>
9172
9173 The following changes are to fix Bug#9318.
9174
a79703f5 9175 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
5eb05ea3
KH
9176 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
9177 (encode_coding_iso_2022, encode_coding_sjis)
a79703f5 9178 (encode_coding_big5, encode_coding_charset): Use the above macros.
5eb05ea3 9179
7dbda6df
JB
91802011-12-05 Juanma Barranquero <lekktu@gmail.com>
9181
9182 * lisp.h (process_quit_flag): Fix external declaration.
9183
6d5eb5b0
SM
91842011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
9185
9186 Don't macro-inline non-performance-critical code.
9187 * eval.c (process_quit_flag): New function.
9188 * lisp.h (QUIT): Use it.
9189
a0c3fad0
JD
91902011-12-04 Jan Djärv <jan.h.d@swipnet.se>
9191
9192 * nsfns.m (get_geometry_from_preferences): New function.
9193 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
9194
6c07aac2
AS
91952011-12-04 Andreas Schwab <schwab@linux-m68k.org>
9196
9197 * emacs.c (Qkill_emacs): Define.
9198 (syms_of_emacs): Initialize it.
9199 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
9200 Qquit_flag to `kill-emacs' instead.
6d5eb5b0
SM
9201 (quit_throw_to_read_char): Add parameter `from_signal'.
9202 All callers changed. Call Fkill_emacs if requested and safe.
6c07aac2
AS
9203 * lisp.h (QUIT): Call Fkill_emacs if requested.
9204
c052ead4
JD
92052011-12-03 Jan Djärv <jan.h.d@swipnet.se>
9206
9207 * widget.c (update_wm_hints): Return if wmshell is null.
9208 (widget_update_wm_size_hints): New function.
9209
9210 * widget.h (widget_update_wm_size_hints): Declare.
9211
9212 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
9213 widget_update_wm_size_hints (Bug#10104).
9214
9e49252b
EZ
92152011-12-03 Eli Zaretskii <eliz@gnu.org>
9216
9217 * xdisp.c (handle_invisible_prop): If the invisible text ends just
9218 before a newline, prepare the bidi iterator for consuming the
9219 newline, and keep the current paragraph direction. (Bug#10183)
e9a49426 9220 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
9e49252b 9221
02b16839
JL
92222011-12-02 Juri Linkov <juri@jurta.org>
9223
9224 * search.c (Fword_search_regexp): New Lisp function created from
9225 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
9226 (Fword_search_backward, Fword_search_forward)
9227 (Fword_search_backward_lax, Fword_search_forward_lax):
9228 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
9229 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
9230
0068070e
SM
92312011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
9232
9233 * fileio.c (Finsert_file_contents): Move after-change-function call
9234 to before the "handled:" label, since all "goto handled" appear in
9235 cases where the *-change-functions have already been properly called
9236 (bug#10117).
9237
3360a3fc
AS
92382011-12-01 Andreas Schwab <schwab@linux-m68k.org>
9239
9240 * keyboard.c (interrupt_signal): Don't call kill-emacs when
9241 waiting for input. (Bug#10169)
9242
73d6c093
EZ
92432011-11-30 Eli Zaretskii <eliz@gnu.org>
9244
9245 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
9246 verifies glyph row's hash code--we have just reallocated the
9247 glyphs, so their contents can be complete garbage. (Bug#10164)
9248
febe6bea
JB
92492011-11-30 Juanma Barranquero <lekktu@gmail.com>
9250
9251 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
9252
801a4313
EZ
92532011-11-30 Eli Zaretskii <eliz@gnu.org>
9254
9255 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
9256 attributes are tested _before_ calling verify_row_hash, to protect
9257 against GCC re-ordering of the tests. (Bug#10164)
9258
2b56b87e
JD
92592011-11-29 Jan Djärv <jan.h.d@swipnet.se>
9260
9261 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
9262
9263 * xterm.c (handle_one_xevent): Only set async_visible and friends
9264 if net_wm_state_hidden_seen is non-zero (Bug#10002)
7dbda6df 9265 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
2b56b87e
JD
9266 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
9267
dbf31225
PE
92682011-11-28 Paul Eggert <eggert@cs.ucla.edu>
9269
9270 Remove GCPRO-related macros that exist only to avoid shadowing locals.
9271 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
9272 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
9273 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
9274 All uses changed to use GCPRO1 etc.
9275 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
9276 Revert to old implementation (i.e., before 2011-03-11).
9277
1305621b
YM
92782011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
9279
9280 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
9281 of scroll runs so as to avoid assigning disabled bogus rows and
9282 unnecessary graphics copy operations.
9283
8c9afb46
EZ
92842011-11-27 Eli Zaretskii <eliz@gnu.org>
9285
9286 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
9287 (snprintf) [_MSC_VER]: Redirect to _snprintf.
9288 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
9289 (malloc, free, realloc, calloc): Redirect to e_* only when
9290 compiling Emacs.
9291
9292 * lisp.h (GCTYPEBITS): Move before first use.
9293 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
9294 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
9295 this macro definition.
9296
9297 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
9298 _MSC_VER.
9299
54e9e3bf
JD
93002011-11-27 Jan Djärv <jan.h.d@swipnet.se>
9301
6d5eb5b0
SM
9302 * gtkutil.c (xg_create_frame_widgets):
9303 Call gtk_window_set_has_resize_grip (FALSE) if that function is
54e9e3bf
JD
9304 present with Gtk+ 2.0.
9305
83aca1cb
PE
93062011-11-26 Paul Eggert <eggert@cs.ucla.edu>
9307
9308 * fileio.c (Finsert_file_contents): Undo previous change; see
9309 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
9310
5b76caa4
PE
93112011-11-26 Paul Eggert <eggert@cs.ucla.edu>
9312
9313 Rename locals to avoid shadowing.
9314 * fileio.c (Finsert_file_contents):
9315 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
9316 * process.c (wait_reading_process_output):
9317 Rename inner 'proc' to 'p' to avoid shadowing.
9318 Indent for consistency with usual Emacs style.
9319
8c535114
EZ
93202011-11-25 Eli Zaretskii <eliz@gnu.org>
9321
9322 * xdisp.c (redisplay_window): If cursor row is not fully visible
9323 after recentering, and scroll-conservatively is set to a large
9324 number, scroll window by a few more lines to make the cursor fully
9325 visible and out of scroll-margin. (Bug#10105)
91b4a718
EZ
9326 (start_display): Don't move to the next line if the display should
9327 start at a newline that is part of a display vector or an overlay
9328 string. (Bug#10119)
8c535114 9329
fa4fdb5c
JL
93302011-11-24 Juri Linkov <juri@jurta.org>
9331
9332 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
9333 after the `MagickPingImage' call. (Bug#10112)
9334
90ec88df
CY
93352011-11-23 Chong Yidong <cyd@gnu.org>
9336
9337 * window.c (Fcoordinates_in_window_p): Accept only live windows.
9338
56e2e794
MR
93392011-11-23 Martin Rudalics <rudalics@gmx.at>
9340
9341 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
9342 making another buffer current. (Bug#10114)
9343
b6e64c41
GM
93442011-11-23 Glenn Morris <rgm@gnu.org>
9345
9346 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
9347
6b21de18
CY
93482011-11-23 Chong Yidong <cyd@gnu.org>
9349
9350 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
9351 using it (Bug#5984).
9352
b12cd789
EZ
93532011-11-22 Eli Zaretskii <eliz@gnu.org>
9354
9355 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
9356 and header-lines, as they don't have one computed for them.
9357 (Bug#10098)
9358
9359 * .gdbinit (prow): Make displayed values more self-explaining.
9360 Add row's hash code.
9361
261b6fd4
LMI
93622011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
9363
9364 * process.c (wait_reading_process_output): Fix asynchrounous
9365 GnuTLS socket handling on some versions of the GnuTLS library.
16c1ad08 9366 (wait_reading_process_output): Add comment and URL.
261b6fd4 9367
e7cfd277
JD
93682011-11-21 Jan Djärv <jan.h.d@swipnet.se>
9369
9370 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
9371
a9b9b7f5
CY
93722011-11-21 Chong Yidong <cyd@gnu.org>
9373
9374 * window.c (Fnext_window, Fprevious_window): Doc fix.
9375
b0d15b4f
SM
93762011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9377
9378 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
9379
fe7a3057
JB
93802011-11-20 Juanma Barranquero <lekktu@gmail.com>
9381
9382 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
9383
d2999b1a
MR
93842011-11-20 Martin Rudalics <rudalics@gmx.at>
9385
9386 * window.c (Fset_window_combination_limit): Rename argument
9387 STATUS to LIMIT.
9388 (Vwindow_combination_limit): Remove "status" from doc-string.
9389
d5ff9cd0
AS
93902011-11-20 Andreas Schwab <schwab@linux-m68k.org>
9391
9392 * m/ibms390.h: Remove.
9393 * m/ibms390x.h: Don't include "ibms390.h".
9394
a5bb9bd3
SM
93952011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
9396
9397 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
9398 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
9399
cd1181db
JB
94002011-11-20 Juanma Barranquero <lekktu@gmail.com>
9401
9402 * casetab.c (Fset_case_table):
9403 * charset.c (Fcharset_after): Fix typos.
9404
615a3b8d 94052011-11-20 Paul Eggert <eggert@cs.ucla.edu>
6a0bf43d 9406
17e845af
PE
9407 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
9408 Otherwise, valgrind does not work on some platforms.
9409 Problem reported by Andreas Schwab in
6a0bf43d
PE
9410 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
9411 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
9412 is set, removing the need for VIRT_ADDRESS_VARIES.
9413 (PURE_P): Use a more-efficient implementation that needs just one
9414 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
9415 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
9416 to 4 (xorl, subq, cmpq, setbe).
9417 * alloc.c (pure): Always extern now, since that's the
9418 VIRT_ADDR_VARIES behavior.
9419 (PURE_POINTER_P): Use a single comparison, not two, for
9420 consistency with the new puresize.h.
9421 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
9422 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
9423 Remove VIRT_ADDR_VARIES no longer needed.
9424
f8fe6f96
EZ
94252011-11-19 Eli Zaretskii <eliz@gnu.org>
9426
9427 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
9428 (erase_phys_cursor, update_window_cursor, show_mouse_face)
9429 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
9430 behave as if the cursor position were at the window margin.
9431
9432 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
9433 and the cursor position is out of bounds, behave as if the cursor
9434 position were at the window margin. (Bug#10075)
9435
df05a53c
CY
94362011-11-18 Chong Yidong <cyd@gnu.org>
9437
9438 * window.c (Fwindow_combination_limit): Make first argument
9439 non-optional, since it is meaningless for live windows like the
9440 selected window.
61ccba97 9441
2071918e
DA
94422011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
9443
9444 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
9445
b50a28de
SM
94462011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
9447
9448 * intervals.c: Fix grafting over the whole buffer (bug#10071).
9449 (graft_intervals_into_buffer): Simplify.
9450
015137db
EZ
94512011-11-18 Eli Zaretskii <eliz@gnu.org>
9452
9453 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
9454 hash values of the two rows.
9455 (copy_row_except_pointers): Preserve the used[] arrays and the
9456 hash values of the two rows. (Bug#10035)
68c95424 9457 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
015137db
EZ
9458
9459 * xdisp.c (row_hash): New function, body extracted from
9460 compute_line_metrics.
9461 (compute_line_metrics): Call row_hash, instead of computing the
9462 hash code inline.
9463
9464 * dispnew.c (verify_row_hash): Call row_hash for computing the
9465 hash code of a row, instead of duplicating code from xdisp.c.
9466
9467 * dispextern.h (row_hash): Add prototype.
9468
a2addb04
TH
94692011-11-18 Tassilo Horn <tassilo@member.fsf.org>
9470
9471 * frame.c (delete_frame): Don't delete the terminal when the last
9472 X frame is closed if emacs is built with GTK toolkit.
9473
df85d315
JB
94742011-11-17 Juanma Barranquero <lekktu@gmail.com>
9475
9476 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
9477
a0c2d0ae
MR
94782011-11-17 Martin Rudalics <rudalics@gmx.at>
9479
9480 * window.c (Vwindow_splits): Rename to
9481 Vwindow_combination_resize. Suggested by Juri Linkov.
9482 (Fsplit_window_internal): Use Vwindow_combination_resize instead
9483 of Vwindow_splits.
9484
58179cce
JB
94852011-11-16 Juanma Barranquero <lekktu@gmail.com>
9486
7877f373
JB
9487 * nsfns.m (Fns_font_name):
9488 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
58179cce 9489
b6f67890
MR
94902011-11-16 Martin Rudalics <rudalics@gmx.at>
9491
9492 * window.h (window): Rename slot "nest" to "combination_limit".
9493 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
9494 (Fset_window_nest): Rename to Fset_window_combination_limit.
9495 (Vwindow_nest): Rename to Vwindow_combination_limit.
9496 (recombine_windows, make_parent_window, make_window)
9497 (Fsplit_window_internal, saved_window)
9498 (Fset_window_configuration, save_window_save): Rename all
9499 occurrences of window_nest to window_combination_limit.
9500
c7015153
JB
95012011-11-15 Juanma Barranquero <lekktu@gmail.com>
9502
9503 * image.c (imagemagick_load_image): Fix typo.
9504
322ad6ec
EZ
95052011-11-14 Eli Zaretskii <eliz@gnu.org>
9506
9507 * xdisp.c (display_line): Move the call to
9508 highlight_trailing_whitespace before the call to
9509 compute_line_metrics, since the latter needs to see the final
6d5eb5b0
SM
9510 faces of all the glyphs to compute ROW's hash value.
9511 Fixes assertion violations in row_equal_p. (Bug#10035)
322ad6ec 9512
f067b8ec
JB
95132011-11-14 Juanma Barranquero <lekktu@gmail.com>
9514
9515 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
9516 just return (bug#10044).
9517
1e5b2111
EZ
95182011-11-12 Eli Zaretskii <eliz@gnu.org>
9519
7ef3cbd5
EZ
9520 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
9521 with user-defined heap size. Bump the default size of the temacs
9522 heap to 27MB, to avoid memory warning when running temacs.
9523 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
9524
1e5b2111
EZ
9525 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
9526 current_matrix and desired_matrix. (Bug#9990)
7a7270dd
EZ
9527 (verify_row_hash) [XASSERTS]: New function.
9528 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
9529 that the hash value of glyph rows is correct.
1e5b2111 9530
89d61221
MR
95312011-11-12 Martin Rudalics <rudalics@gmx.at>
9532
9533 * window.h (window): Remove splits slot.
9534 * window.c (Fwindow_splits, Fset_window_splits): Remove.
9535 (Fdelete_other_windows_internal, make_parent_window)
9536 (make_window, Fsplit_window_internal, Fdelete_window_internal)
9537 (Fset_window_configuration, save_window_save): Don't deal with
9538 split status of windows.
9539 (saved_window): Remove splits slot.
9540 (Vwindow_splits): Rewrite doc-string.
9541
97f18cc8
JD
95422011-11-11 Jan Djärv <jan.h.d@swipnet.se>
9543
9544 * xfns.c (unwind_create_frame):
9545 * nsfns.m (unwind_create_frame):
9546 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
9547 Vframe_list (Bug#9999).
9548
22a648b4
DA
95492011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
9550
0b381c7e 9551 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
22a648b4 9552
659afede
KH
95532011-11-11 Kenichi Handa <handa@m17n.org>
9554
9555 * callproc.c (Fcall_process): Set the member dst_multibyte of
9556 process_coding.
9557
9ac0394b
KH
95582011-11-11 Johan Bockgård <bojohan@gnu.org>
9559
9560 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
9561 avoid a crash (bug#9496).
9562
2fbdc249
CY
95632011-11-09 Chong Yidong <cyd@gnu.org>
9564
9565 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
9566 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
9567
ac6b1f81
PE
95682011-11-08 Paul Eggert <eggert@cs.ucla.edu>
9569
9570 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
9571
09db192c
PE
95722011-11-08 Paul Eggert <eggert@cs.ucla.edu>
9573
9574 Avoid some portability problems by eschewing 'extern inline' functions.
9575 The trivial performance wins aren't worth the portability hassles; see
9576 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
9577 et seq.
9578 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
9579 (window_box_width, window_box_left, window_box_left_offset)
9580 (window_box_right, window_box_right_offset): Undo previous change,
9581 by removing the "extern"s.
9582 * intervals.c (adjust_intervals_for_insertion)
9583 (adjust_intervals_for_deletion): Undo previous change,
9584 making these static again.
9585 (offset_intervals, temp_set_point_both, temp_set_point)
9586 (copy_intervals_to_string): No longer inline.
9587 * xdisp.c (window_text_bottom_y, window_box_width)
9588 (window_box_height, window_box_left_offset)
9589 (window_box_right_offset, window_box_left, window_box_right)
9590 (window_box): No longer inline.
9591
105216ed
CY
95922011-11-08 Chong Yidong <cyd@gnu.org>
9593
9594 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
6d5eb5b0
SM
9595 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
9596 Signal an error if not a live window.
105216ed
CY
9597 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
9598 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
9599
ae9e237f
JB
96002011-11-07 Juanma Barranquero <lekktu@gmail.com>
9601
9602 * lisp.h (syms_of_abbrev): Remove declaration.
9603 Reported by CHENG Gao <chenggao@royau.me>.
9604
c7aa8333
EZ
96052011-11-07 Eli Zaretskii <eliz@gnu.org>
9606
9607 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
9608 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
9609 of temacs in GUI mode.
9610
be7f5545
MR
96112011-11-07 Martin Rudalics <rudalics@gmx.at>
9612
9613 * window.h: Declare delete_all_child_windows instead of
9614 delete_all_subwindows.
9615 * window.c (Fwindow_nest, Fset_window_nest)
9616 (Fset_window_new_total, Fset_window_new_normal)
9617 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
9618 (delete_all_subwindows): Rename to delete_all_child_windows.
9619 (Fdelete_other_windows_internal, Fset_window_configuration):
9620 Call delete_all_child_windows instead of delete_all_subwindows.
9621 * frame.c (delete_frame): Call delete_all_child_windows instead
9622 of delete_all_subwindows.
9623
ca78dc43
PE
96242011-11-07 Paul Eggert <eggert@cs.ucla.edu>
9625
9626 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
9627 This is also needed for porting to any host where GC_MARK_STACK is
9628 not GC_MAKE_GCPROS_NOOPS.
9629 (which_symbols): Use it.
9630
a0241d01
KH
96312011-11-07 Kenichi Handa <handa@m17n.org>
9632
9633 * coding.c (coding_set_destination): Check coding->src_pos only
9634 when coding->src_object is a buffer (bug#9910).
9635
9636 * process.c (send_process): Set the member src_multibyte of coding
9637 to 0 (bug#9911) when sending a unibyte text.
9638
9639 * callproc.c (Fcall_process): Set the member src_multibyte of
9640 process_coding to 0 (bug#9912).
9641
a64bfdfa 96422011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ba24cea2
YM
9643
9644 * xmenu.c (cleanup_widget_value_tree): New function.
9645 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
9646 calling free_menubar_widget_value_tree directly (Bug#9830).
9647
cb41b32a
PE
96482011-11-06 Paul Eggert <eggert@cs.ucla.edu>
9649
9650 Fix some portability problems with 'inline'.
9651 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
9652 (window_box_width, window_box_left, window_box_left_offset)
9653 (window_box_right, window_box_right_offset): Declare extern.
9654 Otherwise, these inline functions do not conform to C99 and
9655 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
9656 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
9657 * intervals.c (adjust_intervals_for_insertion)
9658 (adjust_intervals_for_deletion): Now extern, because otherwise the
9659 extern inline functions 'offset_intervals' couldn't refer to it.
9660 (static_offset_intervals): Remove.
9661 (offset_intervals): Rewrite using the old contents of
9662 static_offset_intervals. The old version didn't conform to C99
9663 because an extern inline function contained a reference to an
9664 identifier with static linkage.
9665
b7041366
AS
96662011-11-06 Andreas Schwab <schwab@linux-m68k.org>
9667
9668 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
9669 GC.
9670
88a37c4d
EZ
96712011-11-06 Eli Zaretskii <eliz@gnu.org>
9672
9673 * xdisp.c (init_iterator, reseat_to_string): Don't set the
9674 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
9675 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
9676 return Qleft_to_right.
9677
49745b39
CY
96782011-11-06 Chong Yidong <cyd@gnu.org>
9679
9680 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
9681 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
9682 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
9683 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
9684 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
9685 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
9686 (Fwindow_vscroll): Doc fix.
9687 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
9688 argument, since it makes no sense to pass a live window and for
9689 consistency with window-child.
9690
1f05cd82
CS
96912011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
9692
9693 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
9694 support MSVC.
9695
22610910
JR
96962011-11-05 Jason Rumney <jasonr@gnu.org>
9697
9698 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
9699 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
9700 fonts (Bug#6029).
9701 (add_font_entity_to_list): Fix logic errors in mixed boolean and
9702 bitwise arithmetic preventing use of unicode-sip and non-truetype
9703 opentype fonts.
9704
a06776b2
EZ
97052011-11-05 Eli Zaretskii <eliz@gnu.org>
9706
3ad924ba
EZ
9707 * s/ms-w32.h (fstat, stat, utime): Move redirections to
9708 "emacs"-only part.
9709
a06776b2
EZ
9710 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
9711 initialization code to keep similarity to xfns.c after changes
9712 from 2011-11-05.
9713
c9e7db78
JD
97142011-11-05 Jan Djärv <jan.h.d@swipnet.se>
9715
a97f8f3f
JD
9716 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
9717 (unwind_create_frame): New function (Bug#9943).
9718 (Fx_create_frame): Restructure code to be more similar to the one in
9719 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
9720 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
9721 Move terminal->reference_count++ just before making the frame official
9722 (Bug#9943).
9723
9724 * nsterm.m (x_free_frame_resources): New function.
9725 (x_destroy_window): Move code to x_free_frame_resources.
9726
c9e7db78 9727 * xfns.c (unwind_create_frame): Fix comment.
6d5eb5b0
SM
9728 (Fx_create_frame, x_create_tip_frame):
9729 Move terminal->reference_count++ just before making the frame
75f1671a 9730 official. Move initialization of image_cache_refcount and
c9e7db78
JD
9731 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
9732
a6fc3b5c
EZ
97332011-11-05 Eli Zaretskii <eliz@gnu.org>
9734
9735 Support MSVC build with newer versions of Visual Studio.
9736 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
9737 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
9738 nt/gmake.defs.
9739
9740 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
9741 which are not supported by MSVC.
9742 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
9743 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
9744 bitfields.
9745 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
9746 types in bitfields.
9747 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
9748
9749 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
9750
58179cce 97512011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
a6fc3b5c
EZ
9752
9753 Support MSVC build with newer versions of Visual Studio.
9754 * w32.c: Don't include w32api.h for MSVC.
9755 (init_environment) [_MSC_VER]: Call sys_access, not _access.
9756
9757 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
9758 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
9759 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
9760 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
9761 e_* cousins.
9762 (alloca) [_MSC_VER]: Define to _alloca.
9763
9764 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
9765
9766 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
9767
a58c13ed
EZ
97682011-11-04 Eli Zaretskii <eliz@gnu.org>
9769
9770 * xdisp.c (note_mouse_highlight): If either of
9771 previous/next-single-property-change returns nil, treat that as
9772 the beginning or the end of the buffer. (Bug#9955)
9773
fe0b6370
JD
97742011-11-04 Jan Djärv <jan.h.d@swipnet.se>
9775
a58c13ed 9776 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
fe0b6370
JD
9777 label is not null (Bug#9951).
9778 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
9779 may be NULL.
9780
89bd5ee1
EZ
97812011-11-04 Eli Zaretskii <eliz@gnu.org>
9782
9783 * window.c (Fwindow_body_size): Mention in the doc string that the
9784 return value is in frame's canonical units. (Bug#9949)
9785
84c3edb9
EZ
97862011-11-03 Eli Zaretskii <eliz@gnu.org>
9787
4e2fb5c7
EZ
9788 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
9789
84c3edb9 9790 * w32fns.c (unwind_create_frame): If needed, free the glyph
3ab15fd6 9791 matrices of the partially constructed frame. (Bug#9943)
2a58bbc1 9792 * xfns.c (unwind_create_frame): Likewise.
84c3edb9 9793
bc17a887
EZ
97942011-11-01 Eli Zaretskii <eliz@gnu.org>
9795
9796 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
9797 Don't stop backward scan on the continuation glyph, even though
9798 its CHARPOS is positive.
6d5eb5b0
SM
9799 (mouse_face_from_buffer_pos, note_mouse_highlight):
9800 Rename cover_string to disp_string.
bc17a887 9801
4ee88440
MR
98022011-11-01 Martin Rudalics <rudalics@gmx.at>
9803
9804 * window.c (temp_output_buffer_show): Don't use
9805 Vtemp_buffer_show_specifiers.
9806 (Vtemp_buffer_show_specifiers): Remove unused variable.
9807
c2ff3c02
EZ
98082011-10-30 Eli Zaretskii <eliz@gnu.org>
9809
9810 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
9811 past the beginning of the current glyph matrix.
9812
58179cce 98132011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
6e56383b
JD
9814
9815 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
9816 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
9817 HAVE_GTK3 (Bug#9869).
b77a6a7f 9818
3b574623
JD
9819 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
9820 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
9821
b77a6a7f
JD
9822 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
9823
9824 * xterm.c: Declare x_handle_net_wm_state to return int.
9825 (handle_one_xevent): Check if we are iconified but don't have
9826 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
9827 (get_current_wm_state): Return non-zero if not hidden,
9828 check for _NET_WM_STATE_HIDDEN (Bug#9893).
9829 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
9830 (x_handle_net_wm_state): Return what get_current_wm_state returns.
9831 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
9832
196e41e4
PE
98332011-10-29 Paul Eggert <eggert@cs.ucla.edu>
9834
9835 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
9836 so that this new function doesn't get optimized away by a
9837 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
9838
021f2e1a
AS
98392011-10-29 Andreas Schwab <schwab@linux-m68k.org>
9840
9841 * frame.h (MOUSE_HL_INFO): Remove excess parens.
9842
8b058d44
EZ
98432011-10-29 Eli Zaretskii <eliz@gnu.org>
9844
9845 Fix the `xbytecode' command.
9846 * .gdbinit (xprintbytestr): New command.
b50a28de 9847 (xwhichsymbols): Rename from `which'; all callers changed.
8b058d44
EZ
9848 (xbytecode): Print the byte-code string as well.
9849
4452fb80
EZ
98502011-10-29 Kim Storm <storm@cua.dk>
9851
8b058d44
EZ
9852 * alloc.c (which_symbols): New function.
9853
21b72067
AS
98542011-10-29 Andreas Schwab <schwab@linux-m68k.org>
9855
9856 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
9857 line. (Bug#9903)
9858
83ed7b5c
GM
98592011-10-29 Glenn Morris <rgm@gnu.org>
9860
9861 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
9862 Not clear what it was for, and it causes various bugs. (Bug#9839)
9863
5a7a728b
EZ
98642011-10-28 Eli Zaretskii <eliz@gnu.org>
9865
9866 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
9867 possible random value that matches one of those tested as
9868 condition to clear the mouse face.
9869
d3d0842f
CY
98702011-10-28 Chong Yidong <cyd@gnu.org>
9871
9872 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
9873
31b39d13
DN
98742011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
9875
9876 * window.c (make_window): Initialize phys_cursor_on_p.
9877
9aba6043
SM
98782011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
9879
9880 * lisp.h (struct Lisp_Symbol): Update comments.
9881
c20992f4
JB
98822011-10-28 Juanma Barranquero <lekktu@gmail.com>
9883
9884 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
9885
db4f02f2
EZ
98862011-10-28 Eli Zaretskii <eliz@gnu.org>
9887
9888 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
9889 <oslsachem@gmail.com> for helping to debug this.
9890
9891 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
9892 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
9893 (g_b_init_get_glyph_outline_w): New static variables.
9894 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
9895 (GetGlyphOutlineW_Proc): New typedefs.
9896 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
9aba6043
SM
9897 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
9898 New functions.
9899 (w32font_open_internal, compute_metrics):
9900 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
db4f02f2
EZ
9901 instead of calling the "wide" APIs directly.
9902
9903 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
9904
9905 * w32.h (syms_of_w32font): Add prototype.
9906
87e68db4
JB
99072011-10-27 Juanma Barranquero <lekktu@gmail.com>
9908
9909 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
9910 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
9911 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
9912 (Fmove_to_window_line): Doc fix.
9913
435c1d67
CY
99142011-10-27 Chong Yidong <cyd@gnu.org>
9915
9916 * process.c (make_process): Set gnutls_state to NULL.
9917
9918 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
9919 non-NULL, regardless of GNUTLS_INITSTAGE.
9920 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
9921 an error. Set process slots as soon as we allocate them.
9922
9923 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
9924
9c6c6f49
CY
99252011-10-27 Chong Yidong <cyd@gnu.org>
9926
9aba6043
SM
9927 * gnutls.c (emacs_gnutls_deinit): New function.
9928 Deallocate credentials structures as well as calling gnutls_deinit.
9c6c6f49
CY
9929 (Fgnutls_deinit, Fgnutls_boot): Use it.
9930
9931 * process.c (make_process): Initialize GnuTLS credentials to NULL.
9932 (deactivate_process): Call emacs_gnutls_deinit.
9933
657d08d3
JB
99342011-10-27 Juanma Barranquero <lekktu@gmail.com>
9935
9936 * image.c (x_create_x_image_and_pixmap):
9937 * w32.c (sys_rename, w32_delayed_load):
9938 * w32font.c (fill_in_logfont):
9939 * w32reg.c (x_get_string_resource): Silence compiler warnings.
9940
5430d399
JB
99412011-10-26 Juanma Barranquero <lekktu@gmail.com>
9942
9943 * w32fns.c (w32_default_color_map): New function,
9944 extracted from Fw32_default_color_map.
a7ef684b 9945 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
5430d399 9946
fe0055fa
PE
99472011-10-25 Paul Eggert <eggert@cs.ucla.edu>
9948
9949 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
9950
e6346438
SM
99512011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
9952
9953 * keyboard.c (test_undefined): New function (bug#9751).
9954 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
9955
e112cc37
ET
99562011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
9957
9958 * sysdep.c (init_sys_modes): Fix the check for the controlling
9959 terminal (Bug#6649).
9960
7b5d6677
EZ
99612011-10-20 Eli Zaretskii <eliz@gnu.org>
9962
9963 * dispextern.h (struct bidi_it): New member next_en_type.
9964
9965 * bidi.c (bidi_line_init): Initialize the next_en_type member.
9966 (bidi_resolve_explicit_1): When next_en_pos is valid for the
9967 current character, check also for next_en_type being WEAK_EN.
9968 (bidi_resolve_weak): Don't enter the expensive loop if the current
9969 position is before next_en_pos. Record the bidi type of the first
9970 non-ET, non-BN character we find, in addition to its position.
9971 (bidi_level_of_next_char): Invalidate next_en_type when
9972 next_en_pos is over-stepped.
9973
7da0b018
PE
99742011-10-20 Paul Eggert <eggert@cs.ucla.edu>
9975
9976 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
9977 * editfns.c: Rewrite current-time-zone so that it invokes
9978 the equivalent of (format-time-string "%Z") to get the time zone name.
9979 This fixes a bug when the time zone name contains characters that
9980 need converting from the system time locale to Emacs internal format.
9981 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
9982 that patch fixed format-time-string to do the conversion, but
9983 I forgot to fix current-time-zone.
9984 (format_time_string): New function, containing most of
9985 what Fformat_time_string used to contain.
9986 (Fformat_time_string): Rewrite in terms of format_time_string.
9987 This doesn't change this function's behavior.
9988 (current-time-zone): Rewrite to use format_time_string.
9989 This fixes the bug reported by Michael Schierl in
9990 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
9991 Jason Rumney's 2007-06-07 change worked around this bug, but
9992 didn't fix it.
9993 * systime.h (tzname, timezone): Remove no-longer-used declarations.
9994
8547b010
EZ
99952011-10-19 Eli Zaretskii <eliz@gnu.org>
9996
9997 * xdisp.c (start_display): If the character at POS is displayed
9998 via a display vector, reset IT->current.dpvec_index to zero.
12b32963
EZ
9999 (try_window_reusing_current_matrix): If a line ends in a display
10000 vector or the next line starts in a display vector, continue
10001 redrawing the window even though the character position of
10002 start_row was reached.
8547b010
EZ
10003 (Bug#9771, part 2)
10004
4e948d15
CY
100052011-10-18 Chong Yidong <cyd@gnu.org>
10006
10007 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
10008 with nobreak-char-display too.
10009
4787455f
EZ
100102011-10-18 Eli Zaretskii <eliz@gnu.org>
10011
10012 Fix part 3 of bug#9771.
10013 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
10014 (bidi_resolve_neutral): Don't enter the expensive loop looking for
10015 non-neutral characters if the current character is a paragraph
10016 separator (a.k.a. Newline). This avoids running the same
10017 expensive loop twice, once when we consume the preceding newline
10018 and the other time when the line actually needs to be displayed.
10019 Avoid the loop when we see neutrals on the base embedding level
10020 following a character whose directionality is the same as the
10021 paragraph's. This avoids running the expensive loop when a line
10022 ends in a long sequence of neutrals, like control characters.
10023 Add assertion against STRONG_AL type. Slightly rearrange code
10024 that determines the type of a neutral given the first non-neutral
10025 that follows it.
10026 (bidi_level_of_next_char): Set next_en_pos to zero when
10027 invalidating its info.
10028
2c91f553
EZ
100292011-10-17 Eli Zaretskii <eliz@gnu.org>
10030
10031 * xdisp.c (push_display_prop): Determine whether to record string
10032 or buffer position by IT->string, not by IT->method. Allow
10033 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
f2ff9e88
EZ
10034 (move_it_vertically_backward): Don't look for character position
10035 immediately after the newline when in a continuation line.
10036 (Bug#9771, part 1)
2c91f553 10037
c7b08b0d
MR
100382011-10-15 Martin Rudalics <rudalics@gmx.at>
10039
10040 * window.c (coordinates_in_window): Rewrite and delabelize
10041 vertical border check. (Bug#5357) (Bug#9618)
10042
6b02f655
SM
100432011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
10044
10045 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
10046 errors in XSetWindowBorder (bug#9310).
10047
81d40c92
DA
100482011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
10049
10050 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
10051 avoid crash when xmalloc overrun checking is enabled.
10052
d4172c3b
EZ
100532011-10-13 Eli Zaretskii <eliz@gnu.org>
10054
10055 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
10056 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
10057 cursor motion with <left> and <right> arrow keys.
10058
10059 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
10060 some callers set that themselves.
10061
b00eea75
EZ
100622011-10-12 Eli Zaretskii <eliz@gnu.org>
10063
10064 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
10065 display string and the previous row comes from the same string and
10066 is empty. (Bug#9739) (Bug#9738)
10067
8fe012c4
SM
100682011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
10069
10070 * doc.c (get_doc_string): Encode file name (bug#9735).
10071
0074aef2
EZ
100722011-10-12 Eli Zaretskii <eliz@gnu.org>
10073
79beb178
EZ
10074 * bidi.c (bidi_level_of_next_char):
10075 * xdisp.c (get_visually_first_element): Remove old incorrect
10076 comments regarding the Unicode Line Separator character.
10077
0074aef2
EZ
10078 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
10079
6e4b3fbe
DA
100802011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
10081
10082 * alloc.c (Fgc_status): Do not access beyond zombies array
10083 boundary if nzombies > MAX_ZOMBIES.
10084 * alloc.c (dump_zombies): Add missing format specifier.
10085
0324f3af
PE
100862011-10-12 Paul Eggert <eggert@cs.ucla.edu>
10087
b5525cac
PE
10088 * xdisp.c (set_cursor_from_row): Simplify conditionals,
10089 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
10090
0324f3af
PE
10091 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
10092 Some packages use them to denote characters with modifiers.
10093
e9b5f888
AS
100942011-10-11 Andreas Schwab <schwab@linux-m68k.org>
10095
10096 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
10097 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
10098 matching a pp-number. Rename parameter var to var1.
10099
127827c0
SM
101002011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
10101
10102 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
10103
c8fd3bd0
GM
101042011-10-08 Glenn Morris <rgm@gnu.org>
10105
10106 * callint.c (Fcall_interactively): Give a more explicit error for the
10107 'c' case with a non-character input. (Bug#8479)
10108
352ec8ff
EZ
101092011-10-08 Eli Zaretskii <eliz@gnu.org>
10110
03669ccb
EZ
10111 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
10112 lines.
7061c986
EZ
10113 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
10114 lines that are hscrolled on the left.
03669ccb 10115
352ec8ff
EZ
10116 * dispnew.c (buffer_posn_from_coords): Account for a possible
10117 presence of header-line. (Bug#4426)
10118
a66cfb1c
SM
101192011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
10120
6b02f655
SM
10121 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
10122 Don't advertise functionality which we discourage or doesn't work.
a66cfb1c 10123
7c5ee88e
PE
101242011-10-07 Paul Eggert <eggert@cs.ucla.edu>
10125
10126 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
10127 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
10128 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
10129 this makes Emacs dump core during garbage collection on rare
10130 occasions. sizeof is obviously inferior to offsetof here, so
10131 stick with offsetof.
10132 (GC_POINTER_ALIGNMENT): New macro.
10133 (mark_memory): Omit 3rd (offset) arg; caller changed.
10134 Don't assume EMACS_INT alignment is the same as pointer alignment.
10135
df1bbe5b
SM
101362011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
10137
10138 * keyboard.c (read_key_sequence_remapped): New var.
10139 (read_key_sequence): Compute remapping in the right buffer.
10140 (command_loop_1): Use read_key_sequence's remapping directly.
10141
51553db6
SM
101422011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
10143
32c1fffd
SM
10144 * dired.c (file_name_completion): Don't expand file name.
10145 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
10146 before checking file name handler.
10147
51553db6
SM
10148 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
10149 they've been requested explicitly (bug#9591).
10150
b6bd1599 101512011-10-01 Andreas Schwab <schwab@linux-m68k.org>
fa2ec41f
AS
10152
10153 * keymap.c (Fsingle_key_description): Use make_specified_string
10154 instead of build_string to build string from push_key_description.
10155 (Bug#5193)
10156
f701dc2a
PE
101572011-09-30 Paul Eggert <eggert@cs.ucla.edu>
10158
4222c55d
PE
10159 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
10160 This fixes a Y2038 bug on 64-bit hosts.
10161 * buffer.c (reset_buffer):
10162 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
10163 (Fclear_buffer_auto_save_failure):
10164 Use 0, not -1, to represent an unset failure time, since time_t
10165 might not be signed.
10166
f701dc2a
PE
10167 Remove dependency on glibc malloc internals.
10168 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10169 Move back here from lisp.h, but with their new implementations.
10170 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10171 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
10172 * charset.c (charset_table_init): New static var.
10173 (syms_of_charset): Use it instead of xmalloc. This removes a
10174 dependency on glibc malloc internals. See Eli Zaretskii's comment in
10175 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
10176 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10177 Move back to alloc.c.
10178 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10179 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
10180
9ceebf39
JD
101812011-09-30 Jan Djärv <jan.h.d@swipnet.se>
10182
10183 * nsterm.m (windowDidResize): Call x_set_window_size only when
10184 ns_in_resize is true. Otherwise set pixelwidth/height and
10185 call change_frame_size (Bug#9628).
10186
cb993c58
PE
101872011-09-30 Paul Eggert <eggert@cs.ucla.edu>
10188
3930c88b
PE
10189 Port --enable-checking=all to Fedora 14 x86-64.
10190 * charset.c (syms_of_charset): Also account for glibc malloc's
10191 internal overhead when calculating the initial malloc maximum.
10192
cb993c58
PE
10193 Port --enable-checking=all to Fedora 14 x86.
10194 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10195 Move to lisp.h.
10196 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
10197 (overrun_check_realloc, overrun_check_free):
10198 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
10199 That way, xmalloc returns a properly-aligned pointer even if
10200 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
10201 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
10202 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
10203 into account when calculating the initial malloc maximum.
10204 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
10205 Move here from alloc.c, so that charset.c can use it too.
10206 Properly align; the old code wasn't right for common 32-bit hosts
10207 when configured with --enable-checking=all.
10208 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
10209 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
10210
31bed486
EZ
102112011-09-29 Eli Zaretskii <eliz@gnu.org>
10212
04c70788 10213 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
31bed486
EZ
10214 use EDOM.
10215
fbcaa2f3
EZ
102162011-09-28 Eli Zaretskii <eliz@gnu.org>
10217
10218 * xdisp.c (compute_display_string_end): If there's no display
10219 string at CHARPOS, return -1.
10220
10221 * bidi.c (bidi_fetch_char): When compute_display_string_end
10222 returns a negative value, treat the character as a normal
10223 character not covered by a display string. (Bug#9624)
10224
a239d4e9
JB
102252011-09-28 Juanma Barranquero <lekktu@gmail.com>
10226
10227 * lread.c (Fread_from_string): Fix typo in docstring.
10228
88652fd5
EZ
102292011-09-27 Eli Zaretskii <eliz@gnu.org>
10230
10231 * xdisp.c (handle_invisible_prop): If invisible text ends on a
10232 newline, reseat the iterator instead of bidi-iterating there one
10233 character at a time. (Bug#9610)
32c1fffd
SM
10234 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
10235 TO_CHARPOS if the bidi iterator is at base embedding level.
88652fd5 10236
ed497dd4
AS
102372011-09-27 Andreas Schwab <schwab@linux-m68k.org>
10238
10239 * lread.c (readevalloop): Use correct code for NBSP.
10240 (read1): Likewise. (Bug#9608)
10241
b2bf61aa
MA
102422011-09-25 Michael Albinus <michael.albinus@gmx.de>
10243
10244 * dbusbind.c (Fdbus_register_signal): When service is not
10245 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
10246
32bbb17c
GM
102472011-09-25 Glenn Morris <rgm@gnu.org>
10248
10249 * buffer.c (truncate-lines): Doc fix.
10250
94e0933e
CY
102512011-09-24 Chong Yidong <cyd@stupidchicken.com>
10252
10253 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
10254 (Fset_window_next_buffers): Doc fix.
10255
cddde921
GM
102562011-09-24 Glenn Morris <rgm@gnu.org>
10257
10258 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
10259
1260aef1
PE
102602011-09-24 Paul Eggert <eggert@cs.ucla.edu>
10261
25b4bfa0
PE
10262 Fix minor problems found by static checking.
10263 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
1260aef1
PE
10264 * indent.c (Fvertical_motion): Fix == vs = typo.
10265
e3cbd34b
EZ
102662011-09-24 Eli Zaretskii <eliz@gnu.org>
10267
a66cfb1c
SM
10268 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
10269 Default value is now t. Doc fix.
6bf7006f 10270
e3cbd34b 10271 * indent.c (Fvertical_motion): Compute and apply the overshoot
32c1fffd 10272 logic when moving up, not only when moving down. Fix the
e3cbd34b 10273 confusing name and values of the it_overshoot_expected variable;
32c1fffd 10274 logic changes accordingly. (Bug#9254) (Bug#9549)
e3cbd34b
EZ
10275
10276 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
10277 CHARPOS is covered by a display string which includes newlines.
10278 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
10279 is covered by a display string with embedded newlines.
10280
a3de0cbd
MA
102812011-09-24 Michael Albinus <michael.albinus@gmx.de>
10282
10283 * dbusbind.c (Fdbus_register_signal): Add match rule to
10284 Vdbus_registered_objects_table. (Bug#9581)
a66cfb1c
SM
10285 (Fdbus_register_method, Vdbus_registered_objects_table):
10286 Fix docstring.
a3de0cbd 10287
b260039d
JM
102882011-09-24 Jim Meyering <meyering@redhat.com>
10289
32c1fffd 10290 do not ignore write error for any output size
b260039d
JM
10291 The previous change was incomplete.
10292 While it makes emacs --batch detect the vast majority of stdout
10293 write failures, errors were still ignored whenever the output size is
10294 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
10295 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
10296 && echo FAIL: ignored write error
10297 FAIL: ignored write error
10298 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
10299 && echo FAIL: ignored write error
10300 FAIL: ignored write error
10301 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
10302
8eca8a7c
AS
103032011-09-23 Andreas Schwab <schwab@linux-m68k.org>
10304
10305 * emacs.c (Fkill_emacs): In noninteractive mode exit
10306 non-successfully if a write error occurred on stdout. (Bug#9574)
10307
3341db62
EZ
103082011-09-21 Eli Zaretskii <eliz@gnu.org>
10309
10310 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
10311 the xassert test.
10312
10313 * dispextern.h (struct it): Update the comment documenting what
10314 can it->OBJECT be.
10315
8c203dbf
EZ
103162011-09-20 Eli Zaretskii <eliz@gnu.org>
10317
10318 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
10319 a display string, extend search for cursor position to end of row.
10320 (find_row_edges): If the row ends in a newline from a display
10321 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
10322 Handle the case of a display string with multiple newlines.
fd317ddf
EZ
10323 (Fcurrent_bidi_paragraph_direction): Fix search for previous
10324 non-empty line. Fixes confusing cursor motion with arrow keys at
10325 the beginning of a line that starts with whitespace.
8c203dbf 10326
a4824228
LMI
103272011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10328
10329 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
10330 (bug#9493).
10331
33ed493b
CY
103322011-09-18 Chong Yidong <cyd@stupidchicken.com>
10333
10334 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
10335 boolean (Bug#9154).
10336
56cd55c8
EZ
103372011-09-18 Eli Zaretskii <eliz@gnu.org>
10338
10339 * xdisp.c (display_line): Record maximum and minimum buffer
10340 positions even if no glyphs were produced (e.g., by a zero-width
10341 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
10342 buffer positions that will be removed from the glyph row because
10343 they don't fit.
c02dcedf
EZ
10344 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
10345 column is beyond frame width: don't subtract 1 "pixel" when
10346 computing width of the stretch.
3e62b7e0
EZ
10347 (reseat_at_next_visible_line_start): Undo the change made on
10348 2011-09-17 that saved paragraph information and restored it after
10349 the call to `reseat'. (Bug#9545)
56cd55c8 10350
5ed99d36 103512011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3390454c
YM
10352
10353 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
10354 and turn window cursor on if cleared (Bug#9415).
10355
5ed99d36 103562011-09-18 Andreas Schwab <schwab@linux-m68k.org>
edb7b4dc
AS
10357
10358 * search.c (boyer_moore): Take unibyte characters from pattern
10359 literally. (Bug#9458)
10360
9bade7b2
EZ
103612011-09-18 Eli Zaretskii <eliz@gnu.org>
10362
10363 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
10364
e5e9d610
PE
103652011-09-18 Paul Eggert <eggert@cs.ucla.edu>
10366
87e4427a
PE
10367 Fix minor problem found by static checking.
10368 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
10369 initialized, to pacify gcc -Wuninitialized.
10370
e5e9d610
PE
10371 * fileio.c: Report proper errno when syscall falls.
10372 (Finsert_file_contents): Save and restore errno,
10373 so that report_file_error outputs the correct diagnostic.
10374 (Fwrite_region) [CLASH_DETECTION]: Likewise.
10375
a1674f0b
EZ
103762011-09-18 Eli Zaretskii <eliz@gnu.org>
10377
10378 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
10379
fbfb6dd4
EZ
103802011-09-17 Eli Zaretskii <eliz@gnu.org>
10381
10382 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
10383 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
10384
bb187662
EZ
103852011-09-17 Eli Zaretskii <eliz@gnu.org>
10386
1137e8b8 10387 * xdisp.c (reseat_at_next_visible_line_start): Keep information
6b02f655 10388 about the current paragraph and restore it after the call to reseat.
1137e8b8
EZ
10389
10390 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
10391 (bidi_find_paragraph_start): Search back for paragraph beginning
10392 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
10393 (bidi_move_to_visually_next): Only trigger paragraph-related
10394 computations when the last character is a newline or at EOB, not
10395 just any NEUTRAL_B. (Bug#9470)
10396
bb187662
EZ
10397 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
10398 truncated lines if point is covered by a display string. (Bug#9524)
10399
2e621251
PE
104002011-09-16 Paul Eggert <eggert@cs.ucla.edu>
10401
10402 * xselect.c: Relax test for outgoing X longs (Bug#9498).
10403 (cons_to_x_long): New function.
10404 (lisp_data_to_selection_data): Use it. Correct the test for
10405 short-versus-long data; it was negated. Break out of vector
10406 loop, for efficiency, when a long datum is discovered.
10407
91a15bc6
SM
104082011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
10409
10410 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
10411
b41c3a35
EZ
104122011-09-16 Eli Zaretskii <eliz@gnu.org>
10413
10414 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
10415 GCC PR/17406) by declaring this function with external scope.
10416
7812ba2d
PE
104172011-09-15 Paul Eggert <eggert@cs.ucla.edu>
10418
10419 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
10420 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
10421
cf7edc2a
AS
104222011-09-15 Andreas Schwab <schwab@linux-m68k.org>
10423
10424 * editfns.c (Fformat): Correctly handle text properties on "%%".
10425
bd01620e
EZ
104262011-09-15 Eli Zaretskii <eliz@gnu.org>
10427
10428 * xterm.c (x_draw_composite_glyph_string_foreground):
10429 * w32term.c (x_draw_composite_glyph_string_foreground):
10430 * term.c (encode_terminal_code):
10431 * composite.c (composition_update_it, get_composition_id):
10432 * xdisp.c (get_next_display_element)
10433 (fill_composite_glyph_string): Add comments about special meaning
10434 of TAB characters in a composition.
10435
a02719a3
PE
104362011-09-15 Paul Eggert <eggert@cs.ucla.edu>
10437
10438 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
4c122725
PE
10439 This occurs when processing a multibyte format.
10440 Problem reported by Wolfgang Jenker.
a02719a3 10441
72589a3c
JB
104422011-09-15 Johan Bockgård <bojohan@gnu.org>
10443
10444 * xdisp.c (try_cursor_movement): Only check for exact match if
10445 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
10446
1c14176c
PE
104472011-09-14 Paul Eggert <eggert@cs.ucla.edu>
10448
10449 Remove unused external symbols.
10450 * dispextern.h (calc_pixel_width_or_height): Remove decl.
10451 * xdisp.c (calc_pixel_width_or_height): Now static.
10452 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
10453 * indent.c (check_display_width):
10454 * w32term.c: Fix comment to match code.
10455 * xterm.c, xterm.h (x_catching_errors): Remove.
10456
d2eea5b5
PE
104572011-09-14 Paul Eggert <eggert@cs.ucla.edu>
10458
10459 * xselect.c: Use signed conversions more consistently (Bug#9498).
10460 (selection_data_to_lisp_data): Assume incoming selection data are
10461 signed integers, not unsigned. This is to be consistent with
10462 outgoing selection data, which was modified to use signed integers
10463 in as part of the fix to Bug#9196 in response to Jan D.'s comment
10464 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
10465 expects long, not unsigned long.
10466
46888499
EZ
104672011-09-14 Eli Zaretskii <eliz@gnu.org>
10468
10469 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
10470 computation of loop end. Reported by Johan Bockgård
10471 <bojohan@gnu.org>.
10472
ef8ef9fb
CY
104732011-09-13 Chong Yidong <cyd@stupidchicken.com>
10474
10475 * frame.c (Fother_visible_frames_p): Function deleted.
10476
fa819fed
EZ
104772011-09-12 Eli Zaretskii <eliz@gnu.org>
10478
10479 * indent.c (compute_motion): Process display vector front to back
10480 rather than the other way around. (Bug#2496)
10481
2ba8e008
SM
104822011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
10483
10484 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
10485
20f53c69
CY
104862011-09-11 Chong Yidong <cyd@stupidchicken.com>
10487
10488 * minibuf.c (Fread_from_minibuffer): Doc fix.
10489
d562d7a4
EZ
104902011-09-11 Eli Zaretskii <eliz@gnu.org>
10491
10492 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
10493 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
10494
1c4d7f3d
LMI
104952011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
10496
10497 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
10498 value for non-existent files.
10499
b885bf36
EZ
105002011-09-11 Eli Zaretskii <eliz@gnu.org>
10501
10502 * fileio.c (Finsert_file_contents): If the file cannot be opened,
10503 set its "size" to -1. This will set the modtime_size field of
10504 the corresponding buffer to -1, which is what
10505 verify-visited-file-modtime expects for files that do not exist.
10506 (Bug#9139)
10507
6612f0bf
PE
105082011-09-11 Paul Eggert <eggert@cs.ucla.edu>
10509
10510 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
10511 here ...
10512 * lisp.h: ... from here. push_key_description is no longer
10513 defined in keyboard.c, so its declaration should not be in
10514 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
10515 logically belongs with push_key_description.
10516
dfb3f755
PE
105172011-09-10 Paul Eggert <eggert@cs.ucla.edu>
10518
10519 * buffer.h: Include <sys/types.h> instead of <time.h>.
10520 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
10521 Problem reported by Herbert J. Skuhra.
10522
3134906c
LMI
105232011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
10524
10525 * xml.c (parse_region): Make the parsing work for
10526 non-comment-starting XML files again (bug#9144).
10527
8d903f4e
AS
105282011-09-10 Andreas Schwab <schwab@linux-m68k.org>
10529
10530 * image.c (gif_load): Fix calculation of bottom and right corner.
10531 (Bug#9468)
10532
80ad64f4
EZ
105332011-09-10 Eli Zaretskii <eliz@gnu.org>
10534
10535 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
10536 redisplay in small windows.
10537
208a048d
EZ
105382011-09-09 Eli Zaretskii <eliz@gnu.org>
10539
10540 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
10541
9b1c252e
MR
105422011-09-08 Martin Rudalics <rudalics@gmx.at>
10543
10544 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
10545 Operate on live windows only.
10546
2949f33b
JB
105472011-09-08 Juanma Barranquero <lekktu@gmail.com>
10548
10549 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
10550
e08dcafd
EZ
105512011-09-07 Eli Zaretskii <eliz@gnu.org>
10552
10553 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
10554 only under bidi iteration.
10555
115b96bd
JD
105562011-09-07 Jan Djärv <jan.h.d@swipnet.se>
10557
10558 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
10559
c8199d0f
PE
105602011-09-06 Paul Eggert <eggert@cs.ucla.edu>
10561
10562 isnan: Fix porting problem to Solaris 10 with bundled gcc.
10563 Without this fix, the command to link temacs failed due to an
10564 undefined symbol __builtin_isnan. This is because
10565 /usr/include/iso/math_c99.h #defines isnan(x) to
10566 __builtin_isnan(x), but the bundled gcc, which identifies itself
10567 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
10568 a __builtin_isnan.
10569 * floatfns.c (isnan): #undef, and then #define to a clone of
10570 what's in data.c.
10571 (Fisnan): Always define, since it's always available now.
10572 (syms_of_floatfns): Always define isnan at the Lisp level.
10573
e39b275c 105742011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1c262cae
PE
10575
10576 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
10577
b2db44d9 105782011-09-06 Paul Eggert <eggert@cs.ucla.edu>
728f8f0a 10579
f4af5137 10580 * fileio.c: Fix bugs with large file offsets (Bug#9428).
728f8f0a
PE
10581 The previous code assumed that file offsets (off_t values) fit in
10582 EMACS_INT variables, which is not true on typical 32-bit hosts.
10583 The code messed up by falsely reporting buffer overflow in cases
10584 such as (insert-file-contents "big" nil 1 2) into an empty buffer
10585 when "big" contains more than 2**29 bytes, even though this
10586 inserts just one byte and does not overflow the buffer.
10587 (Finsert_file_contents): Store file offsets as off_t
10588 values, not as EMACS_INT values. Check for overflow when
10589 converting between EMACS_INT and off_t. When checking for
10590 buffer overflow or for overlap, take the offsets into account.
10591 Don't use EMACS_INT for small values where int suffices.
10592 When checking for overlap, fix a typo: ZV was used where
10593 ZV_BYTE was intended.
10594 (Fwrite_region): Don't assume off_t fits into 'long'.
10595 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
10596
ecfc0a49
MA
105972011-09-05 Michael Albinus <michael.albinus@gmx.de>
10598
10599 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
10600
6511acf2 106012011-09-04 Paul Eggert <eggert@cs.ucla.edu>
61bfeeb7 10602
0999621a 10603 sprintf-related integer and memory overflow issues (Bug#9412).
62f19c19
PE
10604
10605 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
8666506e 10606 (esprintf, exprintf, evxprintf): New functions.
62f19c19 10607 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
6b02f655 10608 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
62f19c19
PE
10609 (modify_event_symbol): Do not assume that the length of
10610 name_alist_or_stem is safe to alloca and fits in int.
10611 (Fexecute_extended_command): Likewise for function name and binding.
10612 (Frecursion_depth): Wrap around reliably on integer overflow.
10613 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
10614 since some callers pass EMACS_INT values.
10615 (Fsingle_key_description): Don't crash if symbol name contains more
10616 than MAX_ALLOCA bytes.
10617 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
10618 (get_minibuffer): Arg is now EMACS_INT, not int.
10619 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
8666506e 10620 (esprintf, exprintf, evxprintf): New decls.
62f19c19
PE
10621 * window.h (command_loop_level, minibuf_level): Reflect API changes.
10622
2be7d702
PE
10623 * dbusbind.c (signature_cat): New function.
10624 (xd_signature, Fdbus_register_signal):
2ea16b89
PE
10625 Do not overrun buffer; instead, report string overflow.
10626
9d1df220
PE
10627 * dispnew.c (add_window_display_history): Don't overrun buffer.
10628 Truncate instead; this is OK since it's just a log.
10629
33ef5c64
PE
10630 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
10631 even if the time zone offset is outlandishly large.
10632 Don't mishandle offset == INT_MIN.
10633
66c6fdd5
PE
10634 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
10635 when creating daemon; the previous buffer-overflow check was incorrect.
10636
d749b01b
PE
10637 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
10638 which has the guts of the old verror function.
10639
b5cd1905
PE
10640 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
10641 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
10642
6e1a67fb
PE
10643 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
10644 (font_unparse_xlfd): Don't blindly alloca long strings.
c21721cc 10645 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
8666506e 10646 fits in int, when using sprintf. Use single snprintf to count
c21721cc
PE
10647 length of string rather than counting it via multiple sprintfs;
10648 that's simpler and more reliable.
c21721cc
PE
10649 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
10650 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
10651 sprintf, in case result does not fit in int.
10652
c57b67fc
PE
10653 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
10654 (fontset_from_font): Print it.
10655
8a401434
PE
10656 * frame.c (tty_frame_count): Now printmax_t, not int.
10657 (make_terminal_frame, set_term_frame_name): Print it.
10658 (x_report_frame_params): In X, window IDs are unsigned long,
10659 not signed long, so print them as unsigned.
10660 (validate_x_resource_name): Check for implausibly long names,
10661 and don't assume name length fits in 'int'.
10662 (x_get_resource_string): Don't blindly alloca invocation name;
10663 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
10664 not fit in int.
10665
6e1a67fb
PE
10666 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
10667 (xg_check_special_colors, xg_set_geometry):
84722b3d
PE
10668 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
10669
0df02bf3
PE
10670 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
10671 Use esprintf, not sprintf, in case result does not fit in int.
10672
48e30793
PE
10673 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
10674 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
10675 it as a large positive number.
10676 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
10677 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
10678
a66ff6d8
PE
10679 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
10680 in case result does not fit in int.
10681
aca216ff
PE
10682 * print.c (float_to_string): Detect width overflow more reliably.
10683 (print_object): Make sprintf buffer a bit bigger, to avoid potential
10684 buffer overrun. Don't assume list length fits in 'int'. Treat
10685 print length of 0 as 0, not as infinity; to be consistent with other
10686 uses of print length in this function. Don't overflow print length
10687 index. Don't assume hash table size fits in 'long', or that
10688 vectorlike size fits in 'unsigned long'.
10689
31c286f7
PE
10690 * process.c (make_process): Use printmax_t, not int, to format
10691 process-name gensyms.
10692
55e5faa1
PE
10693 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
10694
80f2e268
PE
10695 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
10696 to avoid potential buffer overrun.
10697
670741ab
PE
10698 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
10699 if X resource line is longer than 512 bytes.
10700
b7163a50
PE
10701 * xfns.c (x_window): Make sprintf buffer a bit bigger
10702 to avoid potential buffer overrun.
10703
ae58ff1f
PE
10704 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
10705
c43c8a6a
PE
10706 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
10707
3f8236f4
PE
107082011-09-04 Paul Eggert <eggert@cs.ucla.edu>
10709
53e9fe90 10710 Integer overflow fixes for scrolling, etc.
6511acf2
PE
10711 Without these, Emacs silently mishandles large integers sometimes.
10712 For example, "C-u 4294967297 M-x recenter" was treated as if
53e9fe90
PE
10713 it were "C-u 1 M-x recenter" on a typical 64-bit host.
10714
6511acf2
PE
10715 * xdisp.c (try_window_id): Check Emacs fixnum range before
10716 converting to 'int'.
806add1d 10717
6511acf2 10718 * window.c (window_scroll_line_based, Frecenter):
71f02bc5
PE
10719 Check that an Emacs fixnum is in range before assigning it to 'int'.
10720 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
10721 values converted from Emacs fixnums.
10722 (Frecenter): Don't wrap around a line count if it is out of 'int'
10723 range; instead, treat it as an extreme value.
10724 (Fset_window_configuration, compare_window_configurations):
10725 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
10726
6511acf2
PE
10727 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
10728 that can exceed INT_MAX. Check that EMACS_INT value is in range
10729 before assigning it to the (possibly-narrower) index.
a0efffc8
PE
10730 (match_limit): Don't assume that a fixnum can fit in 'int'.
10731
6511acf2 10732 * print.c (print_object): Use ptrdiff_t, not int, for index that can
29ebea3b
PE
10733 exceed INT_MAX.
10734
6511acf2 10735 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
3f8236f4
PE
10736 (Fvertical_motion): Don't wrap around LINES values that don't fit
10737 in 'int'. Instead, treat them as extreme values. This is good
10738 enough for windows, which can't have more than INT_MAX lines anyway.
10739
fcb901a7
LMI
107402011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
10741
0f2f6b6d
LMI
10742 * Require libxml/parser.h to avoid compilation warning.
10743
fcb901a7
LMI
10744 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
10745
10746 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
10747 since this reportedly can destroy thread storage.
10748
6e20a0d4
CY
107492011-08-30 Chong Yidong <cyd@stupidchicken.com>
10750
10751 * syntax.c (find_defun_start): Update all cache variables if
10752 exiting early (Bug#9401).
10753
148ae00e
EZ
107542011-08-30 Eli Zaretskii <eliz@gnu.org>
10755
f6cfbd8f
EZ
10756 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
10757
148ae00e
EZ
10758 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
10759 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
10760 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
10761
10762 * term.c (tty_append_glyph): New function.
10763 (produce_stretch_glyph): Static function and its prototype deleted.
10764
a66cfb1c
SM
10765 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
10766 Add prototypes.
148ae00e 10767
c4a07a4c
PE
107682011-08-29 Paul Eggert <eggert@cs.ucla.edu>
10769
10770 * image.c (parse_image_spec): Check for nonnegative, not for positive,
10771 when checking :margin (Bug#9390).
10772 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
a66cfb1c 10773 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
c4a07a4c
PE
10774 so that the name doesn't mislead. All uses changed.
10775
6bc8cd65
JB
107762011-08-28 Johan Bockgård <bojohan@gnu.org>
10777
10778 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
10779 set_tty_hooks.
10780
dca4927e
EZ
107812011-08-27 Eli Zaretskii <eliz@gnu.org>
10782
10783 * xdisp.c (move_it_to): Don't bail out early when reaching
10784 position beyond to_charpos, if we are scanning backwards.
10785 (move_it_vertically_backward): When DY == 0, make sure we get to
10786 the first character in the line after the newline.
10787
f2cad773
PE
107882011-08-27 Paul Eggert <eggert@cs.ucla.edu>
10789
10790 * ccl.c: Improve and simplify overflow checking (Bug#9196).
10791 (ccl_driver): Do not generate an out-of-range pointer.
10792 (Fccl_execute_on_string): Remove unnecessary check for
10793 integer overflow, noted by Stefan Monnier in
10794 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
10795 Remove a FIXME that didn't need fixing.
10796 Simplify the newly-introduced buffer reallocation code.
10797
0cae2cdb
JB
107982011-08-27 Juanma Barranquero <lekktu@gmail.com>
10799
10800 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
10801
5fc295a4 108022011-08-26 Paul Eggert <eggert@cs.ucla.edu>
ddff3151 10803
70c60eb2 10804 Integer and memory overflow issues (Bug#9196).
726e0ab1 10805
d31850da
PE
10806 * doc.c (get_doc_string): Rework so that
10807 get_doc_string_buffer_size is the actual buffer size, rather than
10808 being 1 less than the actual buffer size; this makes xpalloc more
10809 convenient.
10810
a69fbedb
PE
10811 * image.c (x_allocate_bitmap_record, cache_image):
10812 * xselect.c (Fx_register_dnd_atom):
10813 Simplify previous changes by using xpalloc.
10814
fe5c5d37
PE
10815 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
10816 since either will do and ptrdiff_t is convenient with xpalloc.
10817
0065d054
PE
10818 * charset.c (charset_table_size)
10819 (struct charset_sort_data.priority): Now ptrdiff_t.
10820 (charset_compare): Don't overflow if priorities differ greatly.
10821 (Fsort_charsets): Don't assume list length fits in int.
10822 Check for size-calculation overflow when allocating sort data.
10823 (syms_of_charset): Allocate an initial charset table that is
10824 just under 64 KiB, to avoid problems with glibc malloc and mmap.
10825
10826 * cmds.c (internal_self_insert): Check for size-calculation overflow.
10827
10828 * composite.h (struct composition.glyph_len): Now int, not unsigned.
10829 The actual value is always <= INT_MAX, and leaving it unsigned made
10830 overflow checking harder.
10831
10832 * dispextern.h (struct glyph_matrix.rows_allocated)
10833 (struct face_cache.size): Now ptrdiff_t, for convenience in use
10834 with xpalloc. The values are still always <= INT_MAX.
10835
10836 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
10837
10838 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
10839 (SAFE_NALLOCA): New macro.
10840
10841 * region-cache.c (struct boundary.pos, find_cache_boundary)
10842 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
10843 (set_cache_region, invalidate_region_cache)
10844 (revalidate_region_cache, know_region_cache, region_cache_forward)
10845 (region_cache_backward, pp_cache):
10846 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
10847 so that ptrdiff_t * can be passed to xpalloc.
10848 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
10849 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
10850 (pp_cache): Don't assume cache_len fits in int.
10851 * region-cache.h: Adjust extern decls to match.
10852
10853 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
10854 EMACS_INT, since either will do, for xpalloc.
10855
10856 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
10857 (xnmalloc, xnrealloc, xpalloc): New functions.
10858
726e0ab1
PE
10859 * bidi.c (bidi_shelve_header_size): New constant.
10860 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
10861 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
10862
51f30bc5 10863 * bidi.c (bidi_cache_shrink):
726e0ab1
PE
10864 * buffer.c (overlays_at, overlays_in, record_overlay_string)
10865 (overlay_strings):
10866 Don't update size of array until after memory allocation succeeds,
10867 because xmalloc/xrealloc may not return.
0065d054
PE
10868 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
10869 now that we have proper integer overflow checking.
10870 (record_overlay_string, overlay_strings): Catch overflows when
10871 calculating size of overlay_str_buf.
726e0ab1 10872
0065d054
PE
10873 * callproc.c (Fcall_process): Check for size overflow when
10874 calculating size of args2.
10875 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
10876 Normally we prefer signed values, but sticking with ptrdiff_t would
10877 require adding more-complicated checks.
726e0ab1
PE
10878
10879 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
10880 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
10881 Redo buffer-overflow calculations to avoid integer overflow.
0065d054 10882 Add a FIXME comment where memory seems to be over-allocated.
726e0ab1
PE
10883
10884 * character.c (Fstring): Check for size-calculation overflow.
10885
10886 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
10887 unnecessary integer overflow. Check for size overflow.
10888 (encode_coding_object): Don't update size until xmalloc succeeds.
10889
10890 * composite.c (get_composition_id): Check for overflow in glyph
10891 length calculations.
10892
10893 Integer and memory overflow fixes for display code.
10894 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
10895 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
10896 (scrolling_window): Check for overflow in size calculations.
10897 (line_draw_cost, realloc_glyph_pool, add_row_entry):
10898 Don't assume glyph table len fits in int.
10899 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
10900 (row_table_size): Now ptrdiff_t, not int.
10901 (scrolling_window): Avoid overflow in size calculations.
10902 Don't update size until allocation succeeds.
10903 * fns.c (concat): Check for overflow in size calculations.
10904 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
10905 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
10906 (NEXT_ALMOST_PRIME_LIMIT): New constant.
10907
10908 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
10909 (get_doc_string): Check for size calculation overflow.
10910 Don't update size until allocation succeeds.
10911 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
10912 EMACS_INT, where ptrdiff_t will do.
10913 (Fsubstitute_command_keys): Check for string overflow.
10914
10915 * editfns.c (set_time_zone_rule): Don't assume environment length
10916 fits in int.
10917 (message_length): Now ptrdiff_t, not int.
10918 (Fmessage_box): Don't update size until allocation succeeds.
10919 Don't assume message length fits in int.
10920 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
10921
0065d054
PE
10922 * emacs.c (main): Do not reallocate argv, since there is a null at
10923 the end that can be overwritten, and this way there's no need to
10924 worry about size-calculation overflow.
10925 (sort_args): Check for size-calculation overflow.
726e0ab1
PE
10926
10927 * eval.c (init_eval_once, grow_specpdl): Don't update size until
10928 alloc succeeds.
10929 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
10930
10931 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
10932 (x_set_scroll_bar_width, x_figure_window_size):
10933 Check for integer overflow.
10934 (x_set_alpha): Do not assume XINT fits in int.
10935
10936 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
10937 This is for the members text_lines, text_cols, total_lines, total_cols,
10938 where the system imposes an 'int' limit.
10939
10940 * fringe.c (Fdefine_fringe_bitmap):
10941 Don't update size until alloc works.
10942
10943 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
10944 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
10945
10946 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
10947 Check for size-calculation overflow.
10948 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
10949 do, as we prefer signed integers.
10950 (id_to_widget.max_size, id_to_widget.used)
10951 (xg_store_widget_in_map, xg_remove_widget_from_map)
10952 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
10953 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
10954 Use and return ptrdiff_t, not int.
10955 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
10956 * gtkutil.h: Change prototypes to match the above.
10957
10958 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
10959 are duplicate now that they've been promoted to lisp.h.
10960 (x_allocate_bitmap_record, x_alloc_image_color)
10961 (make_image_cache, cache_image, xpm_load):
10962 Don't update size until alloc is done.
10963 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
10964 (x_detect_edges):
3256efce 10965 Check for size calculation overflow.
726e0ab1
PE
10966 (ct_colors_allocated_max): New constant.
10967 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
10968 overflow.
3256efce 10969
726e0ab1
PE
10970 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
10971 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
10972 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
10973 Use ptrdiff_t, not int, to count maps.
10974 (read_char_minibuf_menu_prompt): Check for overflow in size
a66cfb1c
SM
10975 calculations. Don't update size until allocation succeeds.
10976 Redo calculations to avoid overflow.
726e0ab1
PE
10977 * keyboard.h: Change prototypes to match the above.
10978
10979 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
10980 to count maps.
10981 (current_minor_maps): Check for size calculation overflow.
10982 * keymap.h: Change prototypes to match the above.
10983
10984 * lread.c (read1, init_obarray): Don't update size until alloc done.
10985
10986 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
10987 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
10988
726e0ab1
PE
10989 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
10990 Now ptrdiff_t, not int.
10991 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
10992 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
10993
10994 * process.c (Fnetwork_interface_list): Check for overflow
10995 in size calculation.
10996
10997 * region-cache.c (move_cache_gap): Check for size calculation overflow.
10998
10999 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
11000 overflow. Don't bother calling xmalloc when xrealloc will do.
11001
11002 * search.c (Freplace_match): Check for size calculation overflow.
11003 (Fset_match_data): Don't assume list lengths fit in 'int'.
11004
11005 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
11006 for command line length. Do not attempt to address one before the
11007 beginning of an array, as that's not portable.
11008
11009 * term.c (max_frame_lines): Remove; unused.
11010 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
11011 not int.
11012 (encode_terminal_code, calculate_costs): Check for size
11013 calculation overflow.
11014 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
11015 table lengths and related sizes. Don't update size until alloc
11016 done. Redo calculations to avoid overflow.
11017 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
11018
11019 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
11020 subtracting pointers.
11021 (gobble_line): Check for overflow more carefully. Don't update size
11022 until alloc done.
11023
11024 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
11025 Don't update size until alloc done.
11026 Redo size calculations to avoid overflow.
11027 Check for size calculation overflow.
0065d054 11028 (main) [DEBUG]: Fix typo in invoking tparam1.
726e0ab1
PE
11029
11030 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
11031 Use ptrdiff_t, not int, for sizes.
11032 (store_mode_line_noprop_char): Don't update size until alloc done.
11033
0065d054
PE
11034 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
11035 Use ptrdiff_t, not int, for sizes.
11036 (Finternal_make_lisp_face, cache_face):
11037 Check for size calculation overflow.
11038 (cache_face): Treat size calculation overflows as if they were
11039 memory exhaustion (the usual treatment), rather than aborting.
726e0ab1
PE
11040
11041 * xfns.c (x_encode_text, x_set_name_internal)
11042 (Fx_change_window_property): Use ptrdiff_t, not int, to count
11043 sizes, since they can exceed INT_MAX in size. Check for size
11044 calculation overflow.
11045
0065d054
PE
11046 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
11047 (xg_select): Check for size calculation overflow.
726e0ab1
PE
11048 Don't update size until alloc done.
11049
0065d054 11050 * xrdb.c (get_environ_db): Don't assume path length fits in int,
726e0ab1 11051 as sprintf is limited to int lengths.
1d526e2f 11052
252c5ee1
PE
11053 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
11054 (X_LONG_MIN): New macros.
864d7ce7
PE
11055 Use them to make the following changes clearer.
11056 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
11057 This change doesn't affect the value now, but it may help remind
11058 future maintainers not to raise the value too much later.
11059 (SELECTION_QUANTUM): Remove, replacing with ...
11060 (selection_quantum): ... new function, which avoids overflow.
11061 All uses changed.
11062 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
11063 assumption that selection length fits in 'int'.
11064 (x_reply_selection_request, x_handle_selection_request)
11065 (x_get_window_property, receive_incremental_selection)
11066 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
11067 (lisp_data_to_selection_data, clean_local_selection_data):
11068 Use ptrdiff_t, not int, to record length of selection.
11069 (x_reply_selection_request, x_get_window_property)
11070 (receive_incremental_selection, x_property_data_to_lisp):
11071 Redo calculations to avoid overflow.
11072 (x_reply_selection_request): When sending hint, ceiling it at
252c5ee1 11073 X_LONG_MAX rather than relying on wraparound overflow to send
864d7ce7
PE
11074 something.
11075 (x_get_window_property, receive_incremental_selection)
11076 (lisp_data_to_selection_data, x_property_data_to_lisp):
11077 Check for size-calculation overflow.
11078 (x_get_window_property, receive_incremental_selection)
11079 (lisp_data_to_selection_data, Fx_register_dnd_atom):
11080 Don't store size until memory allocation succeeds.
11081 (x_get_window_property): Plug memory leak on memory exhaustion.
11082 Don't double-block input; malloc is safe here. Don't assume 2**34
11083 - 4 fits in unsigned long. Add an xassert to check
11084 XGetWindowProperty overflow. Be more careful about overflow
11085 calculations, and distinguish size from memory overflow better.
11086 (receive_incremental_selection): When tracing, don't assume
11087 unsigned int is less than INT_MAX.
11088 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
11089 harmful) conversions of unsigned short to int.
11090 (lisp_data_to_selection_data): Don't assume that integers
11091 in the range -65535 through -1 fit in an X unsigned short.
11092 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
11093 result parameters unless successful. Rely on cons_to_unsigned
11094 to report problems with elements; the old code wasn't right anyway.
11095 (x_check_property_data): Check for int overflow; we cannot use
11096 a wider type due to X limits.
11097 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
11098
726e0ab1 11099 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
34db673b 11100
0065d054
PE
11101 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
11102 (x_term_init): Check for size calculation overflow.
726e0ab1
PE
11103 (x_color_cells): Don't store size until memory allocation succeeds.
11104 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
0065d054 11105 Don't assume alloca size is less than MAX_ALLOCA.
726e0ab1
PE
11106 (x_term_init): Don't assume length fits in int (sprintf is limited
11107 to int size).
bc18e09d 11108
ebfa62c0
PE
11109 Use ptrdiff_t for composition IDs.
11110 * character.c (lisp_string_width):
11111 * composite.c (composition_table_size, n_compositions)
11112 (get_composition_id, composition_gstring_from_id):
11113 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
11114 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
11115 * window.c (Frecenter):
11116 Use ptrdiff_t, not int, for composition IDs.
11117 * composite.c (get_composition_id): Check for integer overflow.
11118 * composite.h: Adjust prototypes to match the above changes.
11119
d3411f89
PE
11120 Use ptrdiff_t for hash table indexes.
11121 * category.c (hash_get_category_set):
11122 * ccl.c (ccl_driver):
11123 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
11124 * coding.c (coding_system_charset_list, detect_coding_system):
11125 * coding.h (struct coding_system.id):
11126 * composite.c (get_composition_id, gstring_lookup_cache):
11127 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
11128 * image.c (xpm_get_color_table_h):
11129 * lisp.h (hash_lookup, hash_put):
11130 * minibuf.c (Ftest_completion):
11131 Use ptrdiff_t for hash table indexes, not int (which is too
11132 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
11133 32-bit --with-wide-int hosts).
11134
e097a6fa
PE
11135 * charset.c (Fdefine_charset_internal): Check for integer overflow.
11136 Add a FIXME comment about memory leaks.
11137 (syms_of_charset): Don't assume xmalloc returns.
11138
5637687f
PE
11139 Don't assume that stated character widths fit in int.
11140 * character.c (Fchar_width, c_string_width, lisp_string_width):
11141 * character.h (CHAR_WIDTH):
11142 * indent.c (MULTIBYTE_BYTES_WIDTH):
11143 Use sanitize_char_width to avoid undefined and/or bad behavior
11144 with outlandish widths.
a66cfb1c 11145 * character.h (sanitize_tab_width): Rename from sanitize_width,
5637687f
PE
11146 now that we have two such functions. All uses changed.
11147 (sanitize_char_width): New inline function.
11148
a2271ba2
PE
11149 Don't assume that tab-width fits in int.
11150 * character.h (sanitize_width): New inline function.
11151 (SANE_TAB_WIDTH): New macro.
11152 (ASCII_CHAR_WIDTH): Use it.
11153 * indent.c (sane_tab_width): Remove. All uses replaced by
11154 SANE_TAB_WIDTH (current_buffer).
11155 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
11156
18c52557
PE
11157 * fileio.c: Integer overflow issues with file modes.
11158 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
11159
caeeedc1
PE
11160 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
11161 Remove unreachable code.
11162 (read_hex, load_charset_map_from_file): Check for integer overflow.
11163
6df6ae42 11164 * xterm.c: Don't go over XClientMessageEvent limit.
50849c52
PE
11165 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
11166 (x_send_scroll_bar_event): Likewise. Check that the size does not
11167 exceed limits imposed by XClientMessageEvent, as well as the usual
11168 ptrdiff_t and size_t limits.
11169
b13995db
PE
11170 * keyboard.c: Overflow, signedness and related fixes.
11171 (make_lispy_movement): Use same integer type in forward decl
11172 that is used in the definition.
11173 (read_key_sequence, keyremap_step):
11174 Change bufsize argument back to int, undoing my 2011-03-30 change.
11175 We prefer signed types, and int is wide enough here.
11176 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
11177 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
11178 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
11179 length, not size_t. Use ptrdiff_t for index, not int.
11180 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
11181 possibility of integer overflow.
11182
13464394
PE
11183 Overflow, signedness and related fixes for images.
11184
11185 * dispextern.h (struct it.stack[0].u.image.image_id)
11186 (struct_it.image_id, struct image.id, struct image_cache.size)
11187 (struct image_cache.used, struct image_cache.ref_count):
11188 * gtkutil.c (update_frame_tool_bar):
11189 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
11190 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
11191 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
11192 * nsmenu.m (update_frame_tool_bar):
11193 * xdisp.c (calc_pixel_width_or_height):
11194 * xfns.c (image_cache_refcount):
11195 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
11196 on typical 64-bit hosts.
11197
11198 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
11199 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
11200 Omit unnecessary casts to int.
11201 (parse_image_spec): Check that integers fall into 'int' range
11202 when the callers expect that.
11203 (image_ascent): Redo ascent calculation to avoid int overflow.
11204 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
11205 (lookup_image): Remove unnecessary tests.
11206 (xbm_image_p): Locals are now of int, not EMACS_INT,
11207 since parse_image_check makes sure they fit into int.
11208 (png_load, gif_load, svg_load_image):
11209 Prefer int to unsigned where either will do.
11210 (tiff_handler): New function, combining the cores of the
a66cfb1c
SM
11211 old tiff_error_handler and tiff_warning_handler.
11212 This function is rewritten to use vsnprintf and thereby avoid
13464394
PE
11213 stack buffer overflows. It uses only the features of vsnprintf
11214 that are common to both POSIX and native Microsoft.
11215 (tiff_error_handler, tiff_warning_handler): Use it.
11216 (tiff_load, gif_load, imagemagick_load_image):
11217 Don't assume :index value fits in 'int'.
11218 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
11219 (imagemagick_load_image): Check that crop parameters fit into
11220 the integer types that MagickCropImage accepts. Don't assume
11221 Vimagemagick_render_type has a nonnegative value. Don't assume
11222 size_t fits in 'long'.
11223 (gs_load): Use printmax_t to print the widest integers possible.
11224 Check for integer overflow when computing image height and width.
11225
c11821d4
EZ
112262011-08-26 Eli Zaretskii <eliz@gnu.org>
11227
11228 * xdisp.c (redisplay_window): Don't force window start if point
11229 will be invisible in the resulting window. (Bug#9324)
11230
0c95fcf7
EZ
112312011-08-25 Eli Zaretskii <eliz@gnu.org>
11232
11233 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
11234 the display spec is of the form `(space ...)'.
11235 (handle_display_spec): Return the value returned by
11236 handle_single_display_spec, not just 1 or zero.
11237 (handle_single_display_spec): If the display spec is of the form
11238 `(space ...)', and specifies display in the text area, return 2
11239 rather than 1.
fee65a97 11240 (try_cursor_movement): Check for the need to scroll more
a66cfb1c
SM
11241 accurately, and prefer exact match for point under bidi.
11242 Don't advance `row' beyond the last row of the window.
0c95fcf7
EZ
11243
11244 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
11245 into disp_prop; all users changed.
11246
11247 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
11248 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
11249 for the text covered by the display property.
11250
e4ed06f1
CY
112512011-08-25 Chong Yidong <cyd@stupidchicken.com>
11252
11253 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
11254 Change return value to nil.
11255 (Frecord_buffer): Delete unused function.
11256
f67cdd7f
EZ
112572011-08-24 Eli Zaretskii <eliz@gnu.org>
11258
5980d4c6
EZ
11259 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
11260 buffers, return left-to-right.
8610fe8b
EZ
11261 (set_cursor_from_row): Consider candidate row a win if its glyph
11262 represents a newline and point is on that newline. Fixes cursor
11263 positioning on the newline at EOL of R2L text within L2R
11264 paragraph, and vice versa.
11265 (try_cursor_movement): Check continued rows, in addition to
11266 continuation rows. Fixes unwarranted scroll when point enters a
11267 continued line of R2L text within an L2R paragraph, or vice versa.
11268 (cursor_row_p): Consider the case of point being equal to
11269 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
11270 from the end of a short line to the beginning of a continued line
11271 of R2L text within L2R paragraph.
11272 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
11273 composed characters.
5980d4c6 11274
f67cdd7f
EZ
11275 * bidi.c (bidi_check_type): Use xassert.
11276 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
11277 members.
11278
bca633fb
EZ
112792011-08-23 Eli Zaretskii <eliz@gnu.org>
11280
11281 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
11282 a character.
11283
4a5885a7
CY
112842011-08-23 Chong Yidong <cyd@stupidchicken.com>
11285
11286 * nsfont.m (ns_otf_to_script): Fix typo.
11287
0902a04e
KH
112882011-08-22 Kenichi Handa <handa@m17n.org>
11289
11290 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
11291 extra slot even if the purpose is char-code-property-table.
11292
1a2e6670
EZ
112932011-08-23 Eli Zaretskii <eliz@gnu.org>
11294
8ddde651
EZ
11295 * xdisp.c (redisplay_window): When computing centering_position,
11296 account for the height of the header line. (Bug#8874)
11297
425cc014
EZ
11298 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
11299 instead of CHAR_TO_BYTE. Fixes a crash when a completion
11300 candidate is selected by the mouse, and that candidate has a
11301 composed character under the mouse.
11302
1a2e6670
EZ
11303 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
11304 coordinates reported by pos-visible-in-window-p for a composed
11305 character in column zero.
11306
8b76d6f8
SM
113072011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
11308
11309 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
11310
dac347dd
EZ
113112011-08-22 Eli Zaretskii <eliz@gnu.org>
11312
11313 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
11314 consider it a hit if to_charpos is anywhere in the range of the
11315 composed buffer positions.
11316
e013fb34
CY
113172011-08-22 Chong Yidong <cyd@stupidchicken.com>
11318
11319 * image.c (gif_load): Don't assume that each subimage has the same
11320 dimensions as the base image. Handle disposal method that is
11321 "undefined" by the gif spec (Bug#9335).
11322
bd1ba3e8
CY
113232011-08-20 Chong Yidong <cyd@stupidchicken.com>
11324
11325 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
024a2d76 11326 (Fcondition_case): Document `debug' symbol in error handler.
bd1ba3e8 11327
54a1215b
EZ
113282011-08-19 Eli Zaretskii <eliz@gnu.org>
11329
823564e5
EZ
11330 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
11331 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
11332 from an Org mode buffer to a Speedbar frame.
11333
54a1215b
EZ
11334 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
11335 a composition, take its buffer position from IT->cmp_it.charpos.
11336 Fixes cursor positioning at the beginning of a line that begins
11337 with a composed character.
11338
9778ebcc
EZ
113392011-08-18 Eli Zaretskii <eliz@gnu.org>
11340
0be6ee06
EZ
11341 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
11342 character bidirectional type, use STRONG_L instead. Fixes crashes
11343 in a buffer produced by `describe-categories'.
11344
9778ebcc
EZ
11345 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
11346 members before the level stack, so they would be saved and
11347 restored when copying iterator state. Fixes incorrect reordering
11348 around TABs covered by display properties.
11349
156bffbe
AS
113502011-08-18 Andreas Schwab <schwab@linux-m68k.org>
11351
6b02f655 11352 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
156bffbe 11353
72ad093b
CY
113542011-08-17 Chong Yidong <cyd@stupidchicken.com>
11355
11356 * eval.c (internal_condition_case, internal_condition_case_1)
8b76d6f8
SM
11357 (internal_condition_case_2, internal_condition_case_n):
11358 Remove unnecessary aborts (Bug#9081).
72ad093b 11359
35774242
EZ
113602011-08-17 Eli Zaretskii <eliz@gnu.org>
11361
11362 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
11363 has no `load' handler, try opening the file locally. (Bug#9311)
11364
db76dd85
KB
113652011-08-16 Ken Brown <kbrown@cornell.edu>
11366
11367 * gmalloc.c: Expand comment.
11368
b215eee5
EZ
113692011-08-16 Eli Zaretskii <eliz@gnu.org>
11370
11371 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
11372 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
11373
a4579d33
KB
113742011-08-16 Ken Brown <kbrown@cornell.edu>
11375
11376 Fix memory allocation problems in Cygwin build (Bug#9273).
11377
11378 * unexcw.c ( __malloc_initialized): Declare external variable.
11379 (fixup_executable): Force the dumped emacs to reinitialize malloc.
11380
8b76d6f8
SM
11381 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
11382 New variables.
a4579d33
KB
11383 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
11384 dumped emacs.
11385 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
11386 in the static heap.
11387 [CYGWIN] (special_realloc): New function.
11388 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
11389 requests to realloc storage in the static heap.
11390
3ebec551
PE
113912011-08-15 Paul Eggert <eggert@cs.ucla.edu>
11392
11393 * bidi.c (bidi_initialize): Remove unused local.
11394
9fd8be00
EZ
113952011-08-15 Eli Zaretskii <eliz@gnu.org>
11396
6b02f655
SM
11397 * bidimirror.h:
11398 * biditype.h: Remove file.
11399 * makefile.w32-in ($(BLD)/bidi.$(O)):
11400 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
474a8465
EZ
11401
11402 * dispextern.h: Fix a typo in the comment to bidi_type_t.
11403
11404 * chartab.c: Improve commentary for the uniprop_table API.
11405
32413314
EZ
11406 * bidi.c (bidi_paragraph_init): Support zero value of
11407 bidi_ignore_explicit_marks_for_paragraph_level.
474a8465
EZ
11408 (bidi_initialize): Use uniprop_table instead of including
11409 biditype.h and bidimirror.h.
32413314 11410
9fd8be00
EZ
11411 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
11412 coordinates of the iterator when restoring from ppos_it.
11413 (Bug#9296)
11414
5cf2b69b
KH
114152011-08-14 Kenichi Handa <handa@m17n.org>
11416
11417 * process.c (create_process): Call setup_process_coding_systems
72ad093b 11418 after the pid of the process is set to -1 (Bug#8162).
5cf2b69b 11419
daf17d00
EZ
114202011-08-14 Eli Zaretskii <eliz@gnu.org>
11421
11422 * xdisp.c (move_it_in_display_line_to): Don't invoke
11423 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
11424 ppos_it. Fixes vertical cursor motion when line beginning is
11425 covered by an image. (Bug#9296)
11426
08e3161a
JD
114272011-08-14 Jan Djärv <jan.h.d@swipnet.se>
11428
11429 * nsterm.h (ns_run_ascript): Declare.
11430 (NSAPP_DATA2_RUNASSCRIPT): Define.
11431
11432 * nsfns.m (as_script, as_result, as_status): New static variables.
11433 (ns_run_ascript): New function.
5e617bc2 11434 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
08e3161a
JD
11435 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
11436 the event loop. Get status from as_status (Bug#7276).
11437
11438 * nsterm.m (sendEvent): If event is NSApplicationDefined and
11439 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
11440 the event loop (Bug#7276).
11441
a3720aa2
AS
114422011-08-14 Andreas Schwab <schwab@linux-m68k.org>
11443
11444 * gnutls.c (QCgnutls_bootprop_priority)
11445 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
11446 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
11447 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
11448 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
11449 (QCgnutls_bootprop_verify_hostname_error)
11450 (QCgnutls_bootprop_callbacks_verify): Rename from
11451 Qgnutls_bootprop_..., all uses changed.
11452
11453 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
11454 uses changed.
11455
0a0d27fb
PE
114562011-08-14 Paul Eggert <eggert@cs.ucla.edu>
11457
19d5c50c
PE
11458 * xfaces.c (Qframe_set_background_mode): Now static.
11459 * dispextern.h (Qframe_set_background_mode): Remove decl.
11460
0a0d27fb
PE
11461 * process.c (Fnetwork_interface_info): Declare local only if needed.
11462
377538cb
JD
114632011-08-13 Jan Djärv <jan.h.d@swipnet.se>
11464
11465 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
11466 (Fnetwork_interface_list): Allocate in increments of bytes instead
11467 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
11468 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
11469 sockaddr.
11470 (struct ifflag_def): notrailers is smart on OSX.
11471 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
11472 Get hardware address with getifaddrs if available.
11473
08fff70c
EZ
114742011-08-12 Eli Zaretskii <eliz@gnu.org>
11475
11476 * xdisp.c (iterate_out_of_display_property): xassert that
11477 IT->position is set to within IT->object's boundaries. Break from
11478 the loop as soon as EOB is reached; avoids infloops in redisplay
8b76d6f8
SM
11479 when IT->position is set up wrongly due to some bug.
11480 Set IT->current to match the bidi iterator unconditionally.
08fff70c
EZ
11481 (push_display_prop): Allow GET_FROM_STRING as IT->method on
11482 entry. Force push_it to save on the stack the current
11483 buffer/string position, to be restored by pop_it. Fix flags in
11484 the iterator structure wrt the object coming from a display
11485 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
11486 properties. (Bug#9284)
11487
7be1c708 114882011-08-09 Andreas Schwab <schwab@linux-m68k.org>
aac0c6e3 11489
7be1c708
CY
11490 * fontset.c (fontset_get_font_group): Add proper type checks.
11491 (Bug#9172)
aac0c6e3 11492
7be1c708 114932011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 11494
7be1c708
CY
11495 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
11496 and LC_VERSION_MIN_MACOSX.
11497 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
11498 (dump_it) [LC_FUNCTION_STARTS]: Use it.
aac0c6e3 11499
97bb72a6
EZ
115002011-08-08 Eli Zaretskii <eliz@gnu.org>
11501
11502 * xdisp.c (forward_to_next_line_start): Allow to use the
8b76d6f8
SM
11503 no-display-properties-and-no-overlays under bidi display.
11504 Set disp_pos in the bidi iterator to avoid searches for display
757664a4 11505 properties and overlays.
97bb72a6 11506
d5617611
CY
115072011-08-08 Chong Yidong <cyd@stupidchicken.com>
11508
37e11a63
CY
11509 * editfns.c (Fset_time_zone_rule): Document relationship with the
11510 setenv function.
11511
d5617611
CY
11512 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
11513 the font entity extracted from the cache (Bug#8109).
11514
58872834
CY
115152011-08-07 Chong Yidong <cyd@stupidchicken.com>
11516
11517 * composite.c (autocmp_chars): Don't reset point. That is done by
11518 restore_point_unwind (Bug#5984).
11519
75bfc667
JL
115202011-08-07 Juri Linkov <juri@jurta.org>
11521
11522 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
11523 to show the arg `TIME' instead of `TIMEVAL'.
11524
d1410150
EZ
115252011-08-06 Eli Zaretskii <eliz@gnu.org>
11526
11527 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
11528 display property strides EOL and includes a newline, as in
11529 longlines-mode. (Bug#9254)
75b771e4
EZ
11530 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
11531 word-wrap under bidirectional display. (Bug#9224)
d1410150
EZ
11532
11533 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
11534 is non-zero, even if the data buffer is NULL. Fixes a crash in
11535 vertical-motion with longlines-mode. (Bug#9254)
11536
35928349
EZ
115372011-08-05 Eli Zaretskii <eliz@gnu.org>
11538
ec7cc85b
EZ
11539 * bidi.c <bidi_cache_total_alloc>: Now static.
11540 (bidi_initialize): Initialize bidi_cache_total_alloc.
11541
8b76d6f8 11542 * xdisp.c (display_line): Release buffer allocated for shelved bidi
35928349
EZ
11543 cache. (Bug#9221)
11544
11545 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
11546 amount allocated this far in `bidi_cache_total_alloc'.
11547 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
11548 non-zero, only free the data buffer without restoring the cache
11549 contents. All callers changed.
11550
11551 * dispextern.h (bidi_unshelve_cache): Update prototype.
11552
11553 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
11554 (move_it_in_display_line, move_it_to)
11555 (move_it_vertically_backward, move_it_by_lines): Replace the call
11556 to xfree to an equivalent call to bidi_unshelve_cache.
11557 (move_it_in_display_line_to): Fix logic of returning
412b6358 11558 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
35928349 11559
e2e2423b
EZ
115602011-08-05 Eli Zaretskii <eliz@gnu.org>
11561
11562 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
11563 came from a string character with a `cursor' property. (Bug#9229)
11564
ae9e757a
JD
115652011-08-04 Jan Djärv <jan.h.d@swipnet.se>
11566
11567 * Makefile.in (LIB_PTHREAD): New variable.
11568 (LIBES): Add LIB_PTHREAD (Bug#9216).
11569
11570 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
11571 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
11572
213bd7f2
AS
115732011-08-04 Andreas Schwab <schwab@linux-m68k.org>
11574
6b02f655 11575 * regex.c (re_iswctype): Remove some redundant boolean conversions.
213bd7f2 11576
99aaf75f
JD
115772011-08-04 Jan Djärv <jan.h.d@swipnet.se>
11578
11579 * xterm.c (x_find_topmost_parent): New function.
11580 (x_set_frame_alpha): Find topmost parent window with
11581 x_find_topmost_parent and set the property there also (bug#9181).
11582 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
11583
c74e9d86
PE
115842011-08-04 Paul Eggert <eggert@cs.ucla.edu>
11585
11586 * callproc.c (Fcall_process): Avoid vfork clobbering
11587 the local vars buffer, coding_systems, current_dir.
11588
640c8776
SM
115892011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
11590
11591 * keymap.c (Fmake_composed_keymap): Move to subr.el.
11592
f26d0e4c
PE
115932011-08-03 Paul Eggert <eggert@cs.ucla.edu>
11594
8a10d76c
PE
11595 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
11596 so that it is not optimized away.
11597
f26d0e4c
PE
11598 * xdisp.c (compute_display_string_pos): Remove unused local.
11599
55439c61
EZ
116002011-08-02 Eli Zaretskii <eliz@gnu.org>
11601
11602 Fix slow cursor motion and scrolling in large buffers with
11603 selective display, like Org Mode buffers. (Bug#9218)
11604
11605 * dispextern.h (struct bidi_it): New member disp_prop_p.
11606
11607 * xdisp.c: Remove one-slot cache of display string positions.
11608 (compute_display_string_pos): Accept an additional argument
5e617bc2 11609 DISP_PROP_P; callers changed. Scan at most 5K characters forward
55439c61
EZ
11610 for a display string or property. If found, set DISP_PROP_P
11611 non-zero.
11612
11613 * bidi.c (bidi_fetch_char): Accept an additional argument
640c8776
SM
11614 DISP_PROP_P, and pass it to compute_display_string_pos.
11615 Only handle text covered by a display string if DISP_PROP_P is returned
55439c61
EZ
11616 non-zero. All callers of bidi_fetch_char changed.
11617
fb33fa43
SM
116182011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
11619
11620 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
11621
b099e063
DM
116222010-12-03 Don March <don@ohspite.net>
11623
11624 * keymap.c (Fdefine_key): Fix non-prefix key error message when
11625 last character M-[char] is translated to ESC [char] (bug#7541).
11626
5cc7f7af
KH
116272011-08-02 Kenichi Handa <handa@m17n.org>
11628
d0fffa3f 11629 * lisp.h (uniprop_table): Extern it.
5cc7f7af
KH
11630
11631 * chartab.c (uniprop_table): Make it non-static.
11632
525d5e6e
EZ
116332011-08-01 Eli Zaretskii <eliz@gnu.org>
11634
11635 * xdisp.c (forward_to_next_line_start): Accept additional argument
11636 BIDI_IT_PREV, and store into it the state of the bidi iterator had
11637 on the newline.
11638 (reseat_at_next_visible_line_start): Use the bidi iterator state
11639 returned by forward_to_next_line_start to restore the state of
11640 it->bidi_it after backing up to previous newline. (Bug#9212)
11641
31011111
AS
116422011-07-30 Andreas Schwab <schwab@linux-m68k.org>
11643
11644 * regex.c (re_comp): Protoize.
11645 (re_exec): Fix return type.
11646 (regexec): Fix type of `ret'. (Bug#9203)
11647
476371c4
PE
116482011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11649
e5d76069
PE
11650 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
11651 This is needed if max-image-size is a floating-point number.
11652
9a79b20c
AS
116532011-07-28 Andreas Schwab <schwab@linux-m68k.org>
11654
11655 * print.c (print_object): Print empty symbol as ##.
11656
11657 * lread.c (read1): Read ## as empty symbol.
11658
d8c2fa78
AA
116592011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
11660
11661 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
11662 setting frame foreground color (Bug#9175).
11663 (x_set_background_color): Likewise.
11664
ffe57a7a
AA
11665 * nsmenu.m (-setText): Size tooltip dimensions precisely to
11666 contents (Bug#9176).
11667 (EmacsTooltip -init): Remove bezels and add shadows to
11668 tooltip windows.
11669
bf3492a5
AA
11670 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
11671 or scroll bar (Bug#8470).
11672
d55e9c53
AA
11673 * nsfont.m (nsfont_open): Remove assignment to voffset and
11674 unnecessary vars hshink, expand, hd, full_height, min_height.
11675 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
11676
11677 * nsterm.h (nsfont_info): Remove voffset field.
11678
d8c2fa78 116792011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
4843aac3
AA
11680
11681 Implement strike-through and overline on NextStep (Bug#8863).
11682
11683 * nsfont.m (nsfont_open): Use underline position provided by font,
11684 instead of hard-coded value of 2.
11685 (nsfont_draw): Call ns_draw_text_decoration instead.
11686
11687 * nsterm.h: Add declaration for ns_draw_text_decoration.
11688
11689 * nsterm.m (ns_draw_text_decoration): New function for drawing
11690 underline, overline, and strike-through.
11691 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
11692 ns_draw_text_decoration. Change treatment of cursor drawing to
8d5ed899 11693 accommodate underlining, etc.
4843aac3 11694
4cc60b9b
EZ
116952011-07-28 Eli Zaretskii <eliz@gnu.org>
11696
bc7ece87
EZ
11697 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
11698 default.
4cc60b9b 11699
476371c4
PE
117002011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11701
66606eea
PE
11702 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
11703 Without this fix, if a signal arrives just after memory fills up,
11704 'malloc' might be invoked reentrantly.
11705
476371c4
PE
11706 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
11707 In other words, assume that every image size is allowed, on non-X
11708 hosts. This assumption is probably wrong, but it lets Emacs compile.
11709
f3fcc40d
AS
117102011-07-28 Andreas Schwab <schwab@linux-m68k.org>
11711
11712 * regex.c (re_iswctype): Convert return values to boolean.
11713
350c992f
EZ
117142011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
11715
11716 * xdisp.c (compute_display_string_pos): Don't use cached display
11717 string position if the buffer had its restriction changed.
11718 (Bug#9184)
11719
5266b4bb
PE
117202011-07-28 Paul Eggert <eggert@cs.ucla.edu>
11721
11722 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
11723
2573a837 117242011-07-28 Paul Eggert <eggert@cs.ucla.edu>
ca4aa935 11725
41f55ccd 11726 Integer signedness and overflow and related fixes. (Bug#9079)
cf950e6b 11727
39e378da
PE
11728 * bidi.c: Integer size and overflow fixes.
11729 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
11730 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
11731 (bidi_cache_find_level_change, bidi_cache_ensure_space)
11732 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
11733 (bidi_find_other_level_edge):
11734 Use ptrdiff_t instead of EMACS_INT where either will do.
11735 This works better on 32-bit hosts configured --with-wide-int.
11736 (bidi_cache_ensure_space): Check for size-calculation overflow.
11737 Use % rather than repeated addition, for better worst-case speed.
11738 Don't set bidi_cache_size until after xrealloc returns, because it
11739 might not return.
11740 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
f0eb61e9
PE
11741 (bidi_cache_ensure_space): Also check that the bidi cache size
11742 does not exceed that of the largest Lisp string or buffer. See Eli
11743 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
39e378da 11744
5e927815
PE
11745 * alloc.c (__malloc_size_t): Remove.
11746 All uses replaced by size_t. See Andreas Schwab's note
11747 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
11748
ca4aa935
PE
11749 * image.c: Improve checking for integer overflow.
11750 (check_image_size): Assume that f is nonnull, since
11751 it is always nonnull in practice. This is one less thing to
11752 worry about when checking for integer overflow later.
11753 (x_check_image_size): New function, which checks for integer
11754 overflow issues inside X.
11755 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
11756 This removes the need for a memory_full check.
11757 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
11758 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
11759 (xbm_read_bitmap_data): Change locals back to 'int', since
11760 their values must fit in 'int'.
11761 (xpm_load_image, png_load, tiff_load):
11762 Invoke x_create_x_image_and_pixmap earlier,
11763 to avoid much needless work if the image is too large.
11764 (tiff_load): Treat overly large images as if
11765 x_create_x_image_and_pixmap failed, not as malloc failures.
11766 (gs_load): Use x_check_image_size.
11767
5f8f9cc2
PE
11768 * gtkutil.c: Omit integer casts.
11769 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
11770 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
11771
5adf60bc
PE
11772 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
11773
c8907a93
PE
11774 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
11775 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
11776 would wrongly return t on a 64-bit host.
11777
e3c25c68
PE
11778 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
11779 The plain *_OVERFLOW macros run afoul of GCC bug 49705
11780 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
11781 and therefore cause GCC to emit a bogus diagnostic in some cases.
11782
3f791afe
PE
11783 * image.c: Integer signedness and overflow and related fixes.
11784 This is not an exhaustive set of fixes, but it's time to
11785 record what I've got.
11786 (lookup_pixel_color, check_image_size): Remove redundant decls.
11787 (check_image_size): Don't assume that arbitrary EMACS_INT values
11788 fit in 'int', or that arbitrary 'double' values fit in 'int'.
11789 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
11790 (tiff_load, imagemagick_load_image):
11791 Check for overflow in size calculations.
11792 (x_create_x_image_and_pixmap): Remove unnecessary test for
11793 xmalloc returning NULL; that can't happen.
11794 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
11795 (xpm_color_bucket): Use better integer hashing function.
11796 (xpm_cache_color): Don't possibly over-allocate memory.
11797 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
11798 (gif_memory_source):
11799 Use ptrdiff_t, not int or size_t, to record sizes.
11800 (png_load): Don't assume values greater than 2**31 fit in 'int'.
11801 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
11802 either works, as we prefer signed integers.
11803 (tiff_read_from_memory, tiff_write_from_memory):
11804 Return tsize_t, not size_t, since that's what the TIFF API wants.
11805 (tiff_read_from_memory): Don't fail simply because the read would
11806 go past EOF; instead, return a short read.
11807 (tiff_load): Omit no-longer-needed casts.
11808 (Fimagemagick_types): Don't assume size fits into 'int'.
11809
3cc5a532
PE
11810 Improve hashing quality when configured --with-wide-int.
11811 * fns.c (hash_string): New function, taken from sxhash_string.
11812 Do not discard information about ASCII character case; this
11813 discarding is no longer needed.
11814 (sxhash-string): Use it. Change sig to match it. Caller changed.
11815 * lisp.h: Declare it.
11816 * lread.c (hash_string): Remove, since we now use fns.c's version.
11817 The fns.c version returns a wider integer if --with-wide-int is
11818 specified, so this should help the quality of the hashing a bit.
11819
b312a492
PE
11820 * emacs.c: Integer overflow minor fix.
11821 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
11822 Define only if GNU_LINUX.
11823 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
11824
dfd153ae
PE
11825 * dispnew.c: Integer signedness and overflow fixes.
11826 Remove unnecessary forward decls, that were a maintenance hassle.
11827 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
11828 All uses changed.
11829 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
11830 (scrolling_window): Use ptrdiff_t, not int, for byte count.
11831 (prepare_desired_row, line_draw_cost):
11832 Use int, not unsigned, where either works.
11833 (save_current_matrix, restore_current_matrix):
11834 Use ptrdiff_t, not size_t, where either works.
11835 (init_display): Check for overflow more accurately, and without
11836 relying on undefined behavior.
11837
a81d11a3
PE
11838 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
11839 Remove, replacing with the new symbols in lisp.h. All uses changed.
11840 * fileio.c (make_temp_name):
11841 * filelock.c (lock_file_1, lock_file):
11842 * xdisp.c (message_dolog):
11843 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
11844 Use pMd etc. instead.
11845 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
11846 replacing the pWIDE etc. symbols removed from editfns.c.
11847
3300e6fd
PE
11848 * keyboard.h (num_input_events): Now uintmax_t.
11849 This is (very slightly) less likely to mess up due to wraparound.
11850 All uses changed.
11851
fd05c7e9
PE
11852 * buffer.c: Integer signedness fixes.
11853 (alloc_buffer_text, enlarge_buffer_text):
11854 Use ptrdiff_t rather than size_t when either will do, as we prefer
11855 signed integers.
11856
903fe15d
PE
11857 * alloc.c: Integer signedness and overflow fixes.
11858 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
11859 (__malloc_size_t): Default to size_t, not to int.
11860 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
11861 (Fgarbage_collect, mark_object_loop_halt, mark_object):
11862 Prefer ptrdiff_t to size_t when either would do, as we prefer
11863 signed integers.
11864 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
11865 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
11866 Now const. Initialize with values that are in range even if char
11867 is signed.
11868 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
11869 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
11870 These functions do the right thing with sizes > 2**32.
11871 (check_depth): Now ptrdiff_t, not int.
11872 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
11873 Adjust to new way of storing sizes. Check for size overflow bugs
11874 in rest of code.
11875 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
11876 slightly wrong anyway, as it missed one instance of
11877 XMALLOC_OVERRUN_CHECK_OVERHEAD.
11878 (refill_memory_reserve): Omit needless cast to size_t.
11879 (mark_object_loop_halt): Mark as externally visible.
11880
ac82cc6a
PE
11881 * xselect.c: Integer signedness and overflow fixes.
11882 (Fx_register_dnd_atom, x_handle_dnd_message):
11883 Use ptrdiff_t, not size_t, since we prefer signed.
11884 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
11885 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
11886 x_dnd_atoms_size and x_dnd_atoms_length.
11887
c2d1e36d
PE
11888 * doprnt.c: Prefer signed to unsigned when either works.
11889 * eval.c (verror):
11890 * doprnt.c (doprnt):
11891 * lisp.h (doprnt):
11892 * xdisp.c (vmessage):
11893 Use ptrdiff_t, not size_t, when using or implementing doprnt,
11894 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
11895 prefer signed arithmetic to avoid comparison confusion.
11896 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
11897 but is a bit tricky.
11898
0e926e56
PE
11899 Assume freestanding C89 headers, string.h, stdlib.h.
11900 * data.c, doprnt.c, floatfns.c, print.c:
11901 Include float.h unconditionally.
11902 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
11903 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
11904 * regex.c: Likewise for stddef.h, string.h.
11905 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
11906 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
11907 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
11908 (STDC_HEADERS): Remove obsolete defines.
11909 * sysdep.c: Include limits.h unconditionally.
11910
9cfdb3ec
PE
11911 Assume support for memcmp, memcpy, memmove, memset.
11912 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
11913 * regex.c (memcmp, memcpy):
11914 Remove; we assume C89 now.
11915
11916 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
11917 (__malloc_safe_bcopy): Remove; no longer needed.
11918
cf950e6b 11919 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
6089c567
PE
11920 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
11921 well either way, and we prefer signed to unsigned.
11922
dbf38e02
LMI
119232011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
11924
11925 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
11926 closes the connection while we're reading (bug#9182).
11927
d6f0886c 119282011-07-25 Jan Djärv <jan.h.d@swipnet.se>
24e0f6b1 11929
d6f0886c
JD
11930 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
11931 are specified (Bug#9168).
24e0f6b1 11932
2eb1f9e6
PE
119332011-07-25 Paul Eggert <eggert@cs.ucla.edu>
11934
11935 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
11936 Found by GCC static checking and --with-wide-int on a 32-bit host.
11937
22381272 119382011-07-25 Eli Zaretskii <eliz@gnu.org>
7daee910
EZ
11939
11940 * xdisp.c (compute_display_string_pos): Fix logic of caching
11941 previous display string position. Initialize cached_prev_pos to
11942 -1. Fixes slow-down at the beginning of a buffer.
11943
f25e39b4
EZ
119442011-07-24 Eli Zaretskii <eliz@gnu.org>
11945
11946 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
11947 for attrs[LFACE_FONTSET_INDEX].
11948
04c4b52e
PE
119492011-07-23 Paul Eggert <eggert@cs.ucla.edu>
11950
11951 * xml.c (parse_region): Remove unused local
11952 that was recently introduced.
11953
c1734fbd
EZ
119542011-07-23 Eli Zaretskii <eliz@gnu.org>
11955
be18c5a5
EZ
11956 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
11957 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
11958
c1734fbd
EZ
11959 * xdisp.c (move_it_in_display_line_to): Record the best matching
11960 position for TO_CHARPOS while scanning the line, and restore it on
640c8776
SM
11961 exit if none of the characters scanned was an exact match.
11962 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
a9269c18
EZ
11963 when exact match is impossible due to invisible text, and the
11964 lines are truncated.
11965
a258d627
JD
119662011-07-23 Jan Djärv <jan.h.d@swipnet.se>
11967
11968 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
11969 for OSX >= 10.7.
11970
b6d5a689
EZ
119712011-07-22 Eli Zaretskii <eliz@gnu.org>
11972
0f74f785
EZ
11973 Fix a significant slow-down of cursor motion with C-n, C-p,
11974 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
11975 auto-repeat under bidi redisplay in fontified buffers.
b6d5a689 11976 * xdisp.c (compute_stop_pos_backwards): New function.
b6d5a689
EZ
11977 (next_element_from_buffer): Call compute_stop_pos_backwards to
11978 find a suitable prev_stop when we find ourselves before
0f74f785
EZ
11979 base_level_stop.
11980 (reseat): Don't look for prev_stop, as that could mean a very long
11981 run.
11982 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
11983 <cached_disp_overlay_modiff>: Cache for last found display string
11984 position.
551918c1 11985 (compute_display_string_pos): Return the cached position if asked
0f74f785
EZ
11986 about the same buffer in the same area of character positions, and
11987 the buffer wasn't changed since the time the display string
11988 position was cached.
551918c1 11989
b2d0c91a
EZ
119902011-07-22 Eli Zaretskii <eliz@gnu.org>
11991
11992 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
11993 is an integer, which is important for empty lines. (Bug#9149)
11994
043604ee
CY
119952011-07-22 Chong Yidong <cyd@stupidchicken.com>
11996
11997 * frame.c (Fmodify_frame_parameters): In tty case, update the
11998 default face if necessary (Bug#4238).
11999
da4adb04
CY
120002011-07-21 Chong Yidong <cyd@stupidchicken.com>
12001
12002 * editfns.c (Fstring_to_char): No need to explain what a character
12003 is in the docstring (Bug#6576).
12004
9abd0532
LMI
120052011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12006
12007 * xml.c (parse_region): Make sure we always return a tree.
12008
36881d16
HK
120092011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
12010
12011 * xml.c (parse_region): If a document contains only comments,
12012 return that, too.
12013
1e98674d
LMI
120142011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
12015
12016 * xml.c (make_dom): Return comments, too.
12017
590bd467
PE
120182011-07-19 Paul Eggert <eggert@cs.ucla.edu>
12019
12020 Port to OpenBSD.
12021 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
12022 and the surrounding thread.
12023 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
12024 rather than fgets, and retry after EINTR. Otherwise, 'emacs
12025 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
12026 timer goes off.
12027 * s/openbsd.h (BROKEN_SIGIO): Define.
12028 * unexelf.c (unexec) [__OpenBSD__]:
12029 Don't update the .mdebug section of the Alpha COFF symbol table.
12030
f41628b2
LMI
120312011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
12032
12033 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
12034 (bug#8460).
12035
b59b67c5
PE
120362011-07-18 Paul Eggert <eggert@cs.ucla.edu>
12037
15e3a074
PE
12038 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
12039 This fixes some race conditions on the permissions of any newly
12040 created file.
12041
41bed37d
PE
12042 * alloc.c (valid_pointer_p): Use pipe, not open.
12043 This fixes some permissions issues when debugging.
12044
b59b67c5
PE
12045 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
12046 If fchown fails to set both uid and gid, try to set just gid,
12047 as that is sometimes allowed. Adjust the file's mode to eliminate
12048 setuid or setgid bits that are inappropriate if fchown fails.
12049
925a6be7
SM
120502011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
12051
12052 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
12053 to compare Lisp_Objects.
12054 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
12055 global_gnutls_log_level, don't mistake it for a Lisp_Object.
12056 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
12057
52968808
AS
120582011-07-17 Andreas Schwab <schwab@linux-m68k.org>
12059
0a6a104b
AS
12060 * lread.c (read_integer): Unread even EOF character.
12061 (read1): Likewise. Properly record start position of symbol.
12062
52968808
AS
12063 * lread.c (read1): Read `#:' as empty uninterned symbol if no
12064 symbol character follows.
12065
9e381cdd
PE
120662011-07-17 Paul Eggert <eggert@cs.ucla.edu>
12067
12068 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
12069 This works around a problem with the previous change to Fcopy_file.
12070 Recent glibc declares fchown with __attribute__((warn_unused_result)),
12071 and without this change, GCC might complain about discarding
12072 fchown's return value.
12073
b5641435
JB
120742011-07-16 Juanma Barranquero <lekktu@gmail.com>
12075
12076 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
12077
a8031457
PE
120782011-07-16 Paul Eggert <eggert@cs.ucla.edu>
12079
12080 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
12081
dd889327
LMI
120822011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
12083
750c33f7
LMI
12084 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
12085 it's used from the C level.
12086
dd889327
LMI
12087 * process.c: Use the same condition for POLL_FOR_INPUT in both
12088 keyboard.c and process.c (bug#1858).
12089
87e86684
LM
120902011-07-09 Lawrence Mitchell <wence@gmx.li>
12091
12092 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
12093 (Fgnutls_boot): Use it.
12094
64348f40
AS
120952011-07-15 Andreas Schwab <schwab@linux-m68k.org>
12096
12097 * doc.c (Fsubstitute_command_keys): Revert last change.
12098
1d698799
LMI
120992011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
12100
f863868c
LMI
12101 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
12102 quotes the next character, and doesn't affect other longer
12103 sequences (bug#8935).
12104
1d698799
LMI
12105 * lread.c (syms_of_lread): Clarify that is isn't only
12106 `eval-buffer' and `eval-defun' that's affected by
12107 `lexical-binding' (bug#8460).
12108
aa4b6df6
EZ
121092011-07-15 Eli Zaretskii <eliz@gnu.org>
12110
12111 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
6b02f655 12112 bidi redisplay when a line includes both an image and is truncated.
aa4b6df6 12113
5d856da6
PE
121142011-07-14 Paul Eggert <eggert@cs.ucla.edu>
12115
ad6042bb
PE
12116 Fix minor problems found by static checking.
12117 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
12118 (elsz): Now a signed constant, not a size_t var. We prefer signed
12119 types to unsigned, to avoid integer comparison confusion. Without
12120 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
12121 "cannot optimize loop, the loop counter may overflow", a symptom
12122 of the confusion.
f00bbb22 12123 * indent.c (Fvertical_motion): Mark locals as initialized.
5d856da6
PE
12124 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
12125
6468f31c
LMI
121262011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12127
49080b10
LMI
12128 * search.c (Fre_search_backward): Mention `case-fold-search' in
12129 all the re_search_* functions (bug#8138).
12130
6468f31c
LMI
12131 * keyboard.c (Fopen_dribble_file): Document when the file is
12132 closed (bug#8056).
12133
c965adc5
EZ
121342011-07-14 Eli Zaretskii <eliz@gnu.org>
12135
df9733bf
EZ
12136 * bidi.c (bidi_dump_cached_states): Fix format of displaying
12137 bidi_cache_idx.
12138
0bb23927
EZ
12139 Support bidi reordering of display and overlay strings.
12140 * xdisp.c (compute_display_string_pos)
12141 (compute_display_string_end): Accept additional argument STRING.
12142 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
12143 (reseat_to_string): Initialize bidi_it->string.s and
12144 bidi_it->string.schars.
12145 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
640c8776
SM
12146 NULL (avoids a crash in bidi_paragraph_init).
12147 Initialize itb.string.lstring.
0bb23927
EZ
12148 (init_iterator): Call bidi_init_it only of a valid
12149 buffer position was specified. Initialize paragraph_embedding to
12150 L2R.
12151 (reseat_to_string): Initialize the bidi iterator.
12152 (display_string): If we need to ignore text properties of
12153 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
12154 original value of -1 will not work with bidi.)
12155 (compute_display_string_pos): First arg is now struct
12156 `text_pos *'; all callers changed. Support display properties on
12157 Lisp strings.
12158 (compute_display_string_end): Support display properties on Lisp
12159 strings.
12160 (init_iterator, reseat_1, reseat_to_string): Initialize the
12161 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
12162 when iterating on a string not from display properties).
640c8776
SM
12163 (compute_display_string_pos, compute_display_string_end):
12164 Fix calculation of the object to scan. Fixes an error when using
0bb23927
EZ
12165 arrow keys.
12166 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
640c8776
SM
12167 base_level_stop; instead, set base_level_stop to BEGV.
12168 Fixes crashes in vertical-motion.
0bb23927
EZ
12169 (next_element_from_buffer): Improve commentary for when
12170 the iterator is before prev_stop.
12171 (init_iterator): Initialize bidi_p from the default value of
12172 bidi-display-reordering, not from buffer-local value. Use the
12173 buffer-local value only if initializing for buffer iteration.
12174 (handle_invisible_prop): Support invisible properties on strings
12175 that are being bidi-reordered.
12176 (set_iterator_to_next): Support bidi reordering of C strings and
12177 Lisp strings.
12178 (next_element_from_string): Support bidi reordering of Lisp
12179 strings.
12180 (handle_stop_backwards): Support Lisp strings as well.
640c8776
SM
12181 (display_string): Support display of R2L glyph rows.
12182 Use IT_STRING_CHARPOS when displaying from a Lisp string.
0bb23927
EZ
12183 (init_iterator): Don't initialize it->bidi_p for strings
12184 here.
12185 (reseat_to_string): Initialize it->bidi_p for strings here.
12186 (next_element_from_string, next_element_from_c_string)
12187 (next_element_from_buffer): Add xassert's for correspondence
12188 between IT's object being iterated and it->bidi_it.string
12189 structure.
12190 (face_before_or_after_it_pos): Support bidi iteration.
12191 (next_element_from_c_string): Handle the case of the first string
12192 character that is not the first one in the visual order.
12193 (get_visually_first_element): New function, refactored from common
12194 parts of next_element_from_buffer, next_element_from_string, and
12195 next_element_from_c_string.
12196 (tool_bar_lines_needed, redisplay_tool_bar)
12197 (display_menu_bar): Force left-to-right direction. Add a FIXME
12198 comment for making that be controlled by a user option.
12199 (push_it, pop_it): Save and restore the state of the
12200 bidi iterator. Save and restore the bidi_p flag.
12201 (pop_it): Iterate out of display property for string iteration as
12202 well.
12203 (iterate_out_of_display_property): Support iteration over strings.
12204 (handle_single_display_spec): Set up it->bidi_it for iteration
12205 over a display string, and call bidi_init_it.
12206 (handle_single_display_spec, next_overlay_string)
12207 (get_overlay_strings_1, push_display_prop): Set up the bidi
12208 iterator for displaying display or overlay strings.
12209 (forward_to_next_line_start): Don't use the shortcut if
12210 bidi-iterating.
12211 (back_to_previous_visible_line_start): If handle_display_prop
12212 pushed the iterator stack, restore the internal state of the bidi
12213 iterator by calling bidi_pop_it same number of times.
12214 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
12215 and we are bidi-iterating, don't decrement the iterator position;
12216 instead, set the first_elt flag in the bidi iterator, to produce
12217 the same effect.
12218 (reseat_1): Remove redundant setting of string_from_display_prop_p.
12219 (push_display_prop): xassert that we are iterating a buffer.
12220 (push_it, pop_it): Save and restore paragraph_embedding member.
12221 (handle_single_display_spec, next_overlay_string)
12222 (get_overlay_strings_1, reseat_1, reseat_to_string)
12223 (push_display_prop): Set up the `unibyte' member of bidi_it.string
12224 correctly. Don't assume unibyte strings are not bidi-reordered.
12225 (compute_display_string_pos)
12226 (compute_display_string_end): Fix handling the case of C string.
12227 (push_it, pop_it): Save and restore from_disp_prop_p.
12228 (handle_single_display_spec, push_display_prop): Set the
12229 from_disp_prop_p flag.
12230 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
12231 (pop_it): Call iterate_out_of_display_property only if we are
12232 popping after iteration over a string that came from a display
12233 property. Fix a typo in popping stretch info. Add an assertion
12234 for verifying that the iterator position is in sync with the bidi
12235 iterator.
12236 (handle_single_display_spec, get_overlay_strings_1)
12237 (push_display_prop): Fix initialization of paragraph direction for
12238 string when that of the parent object is not yet determined.
12239 (reseat_1): Call bidi_init_it to resync the bidi
12240 iterator with IT's position. (Bug#7616)
12241 (find_row_edges): If ROW->start.pos gives position
12242 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
12243 (handle_stop, back_to_previous_visible_line_start, reseat_1):
12244 Reset the from_disp_prop_p flag.
12245 (SAVE_IT, RESTORE_IT): New macros.
12246 (pos_visible_p, face_before_or_after_it_pos)
12247 (back_to_previous_visible_line_start)
12248 (move_it_in_display_line_to, move_it_in_display_line)
12249 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12250 (try_scrolling, redisplay_window, display_line): Use them when
12251 saving a temporary copy of the iterator and restoring it back.
12252 (back_to_previous_visible_line_start, reseat_1)
12253 (init_iterator): Empty the bidi cache "stack".
12254 (move_it_in_display_line_to): If iterator ended up at
12255 EOL, but we never saw any buffer positions smaller than
12256 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
12257 motion in bidi-reordered lines.
12258 (move_it_in_display_line_to): Record prev_method and prev_pos
12259 immediately before the call to set_iterator_to_next. Fixes cursor
12260 motion in bidi-reordered lines with stretch glyphs and strings
12261 displayed in margins. (Bug#8133) (Bug#8867)
12262 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
12263 TO_CHARPOS.
640c8776
SM
12264 (pos_visible_p): Support positions in bidi-reordered lines.
12265 Save and restore bidi cache.
0bb23927
EZ
12266
12267 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
12268 (bidi_paragraph_info): Delete unused struct.
12269 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
12270 (bidi_cache_start): New variable.
12271 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
12272 to zero.
12273 (bidi_cache_fetch_state, bidi_cache_search)
12274 (bidi_cache_find_level_change, bidi_cache_iterator_state)
12275 (bidi_cache_find, bidi_peek_at_next_level)
12276 (bidi_level_of_next_char, bidi_find_other_level_edge)
12277 (bidi_move_to_visually_next): Compare cache index with
12278 bidi_cache_start rather than with zero.
12279 (bidi_fetch_char): Accept new argument STRING; all callers
12280 changed. Support iteration over a string. Support strings with
12281 display properties. Support unibyte strings. Fix the type of
12282 `len' according to what STRING_CHAR_AND_LENGTH expects.
12283 (bidi_paragraph_init, bidi_resolve_explicit_1)
12284 (bidi_resolve_explicit, bidi_resolve_weak)
640c8776
SM
12285 (bidi_level_of_next_char, bidi_move_to_visually_next):
12286 Support iteration over a string.
0bb23927
EZ
12287 (bidi_set_sor_type, bidi_resolve_explicit_1)
12288 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
12289 can now be zero (for strings); special values 0 and -1 were
12290 changed to -1 and -2, respectively.
12291 (bidi_char_at_pos): New function.
12292 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
12293 Call it instead of FETCH_MULTIBYTE_CHAR.
12294 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
12295 initialized to valid values.
12296 (bidi_init_it): Don't initialize charpos and bytepos with invalid
12297 values.
12298 (bidi_level_of_next_char): Allow the sentinel "position" to pass
12299 the test for valid cached positions. Fix the logic for looking up
12300 the sentinel state in the cache. GCPRO the Lisp string we are
12301 iterating.
12302 (bidi_push_it, bidi_pop_it): New functions.
12303 (bidi_initialize): Initialize the bidi cache start stack pointer.
12304 (bidi_cache_ensure_space): New function, refactored from part of
12305 bidi_cache_iterator_state. Don't assume the required size is just
12306 one BIDI_CACHE_CHUNK away.
12307 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
12308 (bidi_count_bytes, bidi_char_at_pos): New functions.
12309 (bidi_cache_search): Don't assume bidi_cache_last_idx is
12310 always valid if bidi_cache_idx is valid.
12311 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
12312 is valid if it's going to be used.
12313 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
12314 (bidi_cache_fetch_state, bidi_cache_search)
c965adc5
EZ
12315 (bidi_cache_find_level_change, bidi_cache_ensure_space)
12316 (bidi_cache_iterator_state, bidi_cache_find)
640c8776
SM
12317 (bidi_find_other_level_edge, bidi_cache_start_stack):
12318 All variables related to cache indices are now EMACS_INT.
c965adc5 12319
0bb23927
EZ
12320 * dispextern.h (struct bidi_string_data): New structure.
12321 (struct bidi_it): New member `string'. Make flag members be 1-bit
12322 fields, and put them last in the struct.
640c8776
SM
12323 (compute_display_string_pos, compute_display_string_end):
12324 Update prototypes.
0bb23927
EZ
12325 (bidi_push_it, bidi_pop_it): Add prototypes.
12326 (struct iterator_stack_entry): New members bidi_p,
12327 paragraph_embedding, and from_disp_prop_p.
12328 (struct it): Member bidi_p is now a bit field 1 bit wide.
640c8776
SM
12329 (bidi_shelve_cache, bidi_unshelve_cache):
12330 Declare prototypes.
0bb23927
EZ
12331
12332 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
12333 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
12334 and vector-like objects.
12335
12336 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
12337 cache around display iteration.
12338
12339 * window.c (Fwindow_end, window_scroll_pixel_based)
12340 (displayed_window_lines, Frecenter): Save and restore the bidi
12341 cache around display iteration.
12342
3bbd2265
LMI
123432011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
12344
12345 * editfns.c (Fdelete_region): Clarify the use of the named
12346 parameters (bug#6788).
12347
adc47434
MR
123482011-07-14 Martin Rudalics <rudalics@gmx.at>
12349
12350 * indent.c (Fvertical_motion): Set and restore w->pointm when
12351 saving and restoring the window's buffer (Bug#9006).
12352
837c31f8
LMI
123532011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
12354
12355 * editfns.c (Fstring_to_char): Clarify just what is returned
12356 (bug#6576). Text by Eli Zaretskii.
12357
ac389d0c
JB
123582011-07-13 Juanma Barranquero <lekktu@gmail.com>
12359
12360 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
12361
0be0ce47
EZ
123622011-07-13 Eli Zaretskii <eliz@gnu.org>
12363
12364 * buffer.c (mmap_find): Fix a typo.
12365
cd18e7e3
JB
123662011-07-13 Johan Bockgård <bojohan@gnu.org>
12367
12368 Fix execution of x selection hooks.
12369 * xselect.c (Qx_lost_selection_functions)
12370 (Qx_sent_selection_functions): New vars.
12371 (syms_of_xselect): DEFSYM them.
12372 (x_handle_selection_request): Pass Qx_sent_selection_functions
12373 rather than Vx_sent_selection_functions to Frun_hook_with_args.
12374 (x_handle_selection_clear,x_clear_frame_selections):
12375 Pass Qx_lost_selection_functions rather than
12376 Vx_lost_selection_functions to Frun_hook_with_args.
12377
47ea7f44
PE
123782011-07-13 Paul Eggert <eggert@cs.ucla.edu>
12379
ac389d0c 12380 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
2941c447
PE
12381 The old code sometimes used this field without initializing it.
12382
47ea7f44
PE
12383 * alloc.c (gc_sweep): Don't read past end of array.
12384 In theory, the old code could also have corrupted Emacs internals,
12385 though it'd be very unlikely.
12386
bc985c87
AS
123872011-07-12 Andreas Schwab <schwab@linux-m68k.org>
12388
12389 * character.c (Fcharacterp): Don't advertise optional ignored
ac389d0c 12390 argument. (Bug#4026)
bc985c87 12391
0cf34688
LMI
123922011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
12393
b3dadd76
LMI
12394 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
12395 key" (bug#4257).
12396
0cf34688
LMI
12397 * window.c (Fset_window_start): Doc fix (bug#4199).
12398 (Fset_window_hscroll): Ditto.
12399
270768cd
PE
124002011-07-12 Paul Eggert <eggert@cs.ucla.edu>
12401
077e3dda 12402 Fix minor new problems caught by GCC 4.6.1.
270768cd 12403 * term.c (init_tty): Remove unused local.
490011a6 12404 * xsettings.c (store_monospaced_changed): Define this function only
077e3dda 12405 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
490011a6 12406 not used otherwise.
270768cd 12407
b1f58454
CY
124082011-07-12 Chong Yidong <cyd@stupidchicken.com>
12409
12410 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
12411
22b9578d
LMI
124122011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
12413
6e70ab07
LMI
12414 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
12415 are the mini-buffer and the echo area (bug#3320).
12416
22b9578d
LMI
12417 * term.c (init_tty): Remove support for supdup, c10 and perq
12418 terminals, which are no longer supported (bug#1482).
12419
8974cc9f
JB
124202011-07-10 Johan Bockgård <bojohan@gnu.org>
12421
12422 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
12423
a560d974
JD
124242011-07-10 Jan Djärv <jan.h.d@swipnet.se>
12425
12426 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
12427 for non-popups (Bug#3642).
12428
1dae0f0a
AS
124292011-07-10 Andreas Schwab <schwab@linux-m68k.org>
12430
268c2c36 12431 * alloc.c (reset_malloc_hooks): Protoize.
1dae0f0a 12432 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
268c2c36
AS
12433 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
12434 * cm.c (losecursor): Likewise.
1dae0f0a
AS
12435 * data.c (fmod): Likewise.
12436 * dispnew.c (swap_glyphs_in_rows): Likewise.
12437 * emacs.c (memory_warning_signal): Likewise.
12438 * floatfns.c (float_error): Likewise.
12439 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
12440 (otf_open, font_otf_capability, generate_otf_features)
12441 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
12442 Likewise.
12443 * image.c (pbm_read_file): Likewise.
12444 * indent.c (string_display_width): Likewise.
12445 * intervals.c (check_for_interval, search_for_interval)
12446 (inc_interval_count, count_intervals, root_interval)
12447 (adjust_intervals_for_insertion, make_new_interval): Likewise.
12448 * lread.c (defalias): Likewise.
268c2c36 12449 * ralloc.c (r_alloc_check): Likewise.
1dae0f0a
AS
12450 * regex.c (set_image_of_range_1, set_image_of_range)
12451 (regex_grow_registers): Likewise.
12452 * sysdep.c (strerror): Likewise.
12453 * termcap.c (valid_filename_p, tprint, main): Likewise.
12454 * tparam.c (main): Likewise.
12455 * unexhp9k800.c (run_time_remap, save_data_space)
12456 (update_file_ptrs, read_header, write_header, calculate_checksum)
12457 (copy_file, copy_rest, display_header): Likewise.
12458 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
12459 Likewise.
12460 * xdisp.c (check_it): Likewise.
12461 * xfaces.c (register_color, unregister_color, unregister_colors):
12462 Likewise.
12463 * xfns.c (print_fontset_result): Likewise.
12464 * xrdb.c (member, fatal, main): Likewise.
12465
99033785
PE
124662011-07-10 Paul Eggert <eggert@cs.ucla.edu>
12467
12468 Fix minor problems found by static checking (Bug#9031).
12469 * chartab.c (char_table_set_range, map_sub_char_table):
12470 Remove unused locals.
12471 (uniprop_table): Now static.
12472 * composite.c (_work_char): Remove unused static var.
12473
9cb2ac56
JB
124742011-07-09 Juanma Barranquero <lekktu@gmail.com>
12475
12476 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
12477
f25661f0
JD
124782011-07-09 Jan Djärv <jan.h.d@swipnet.se>
12479
12480 * gtkutil.c (qttip_cb): Remove code without function.
12481
8278c4fe
EZ
124822011-07-09 Eli Zaretskii <eliz@gnu.org>
12483
12484 * w32.c (pthread_sigmask): New stub.
12485
1692ae2d 124862011-07-08 Paul Eggert <eggert@cs.ucla.edu>
123403e4 12487
8a6ebd58 12488 Use pthread_sigmask, not sigprocmask (Bug#9010).
123403e4
PE
12489 sigprocmask is portable only for single-threaded applications, and
12490 Emacs can be multi-threaded when it uses GTK.
1301ac26
PE
12491 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
12492 (LIBES): Use it.
12493 * callproc.c (Fcall_process):
12494 * process.c (create_process):
12495 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
12496 Use pthread_sigmask, not sigprocmask.
123403e4 12497
1b854618
JD
124982011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12499
12500 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
12501 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
12502 wrong (Bug#8591).
12503
3fe4b549
JD
125042011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12505
0ce7e563
JD
12506 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
12507 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
12508 (xg_hide_tooltip): Fix comment.
12509
3fe4b549
JD
12510 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
12511 in registerServicesMenuSendTypes.
12512 (validRequestorForSendType): Don't check ns_return_types.
12513
12514 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
12515 ns_return_type.
12516
5df75e47
JR
125172011-07-08 Jason Rumney <jasonr@gnu.org>
12518
22610910
JR
12519 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
12520 SH_SHOW for hidden windows (Bug#5482).
12521
5df75e47
JR
12522 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
12523 frame struct members of non-existent frames (Bug#6284).
12524
699c10bd
JD
125252011-07-08 Jan Djärv <jan.h.d@swipnet.se>
12526
4393663b
JD
12527 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
12528 variable firstTime not needed on OSX >= 10.6.
12529 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
12530 >= 10.5. Use setKnobProportion, setDoubleValue.
12531
12532 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
12533 (MAC_OS_X_VERSION_10_5): Define if not defined.
12534 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
12535 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
12536 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
12537
12538 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
090bd7cb 12539 cString and lossyCString on OSX >= 10.4.
4393663b 12540
58179cce 12541 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
4393663b
JD
12542 sizeToFit on OSX >= 10.2.
12543
12544 * nsimage.m (allocInitFromFile): Don't use deprecated method
12545 bestRepresentationForDevice on OSX >= 10.6.
12546
12547 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
12548 to avoid warning.
12549
12550 * emacs.c: Declare unexec_init_emacs_zone.
12551
a63e0781
JD
12552 * nsgui.h: Fix compiler warning about gnulib redefining verify.
12553
699c10bd
JD
12554 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
12555
12556 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
12557 on svcsMenu (Bug#8842).
12558
12559 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
12560 ns_return_types.
12561 (Fns_list_services): Just return Qnil on 10.6, code not working there.
12562
12563 * nsterm.m (QUTF8_STRING): Declare.
12564 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
12565 (validRequestorForSendType): Return type is (id).
12566 Change indexOfObjectIdenticalTo to indexOfObject.
12567 Check if we have local selection before returning self (Bug#8842).
12568 (writeSelectionToPasteboard): Put local selection into paste board
12569 if we have a local selection (Bug#8842).
12570 (syms_of_nsterm): DEFSYM QUTF8_STRING.
12571
12572 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
12573 (ns_get_local_selection): Declare.
12574
54e10184
LMI
125752011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
12576
9888ff71
LMI
12577 * keymap.c (describe_map_tree): Don't insert a double newline at
12578 the end of the buffer (bug#1169) and return whether we inserted
12579 something.
12580
54e10184
LMI
12581 * callint.c (Fcall_interactively): Change "reading args" to
12582 "providing args" to try to clarify what it does (bug#1010).
12583
15fa4783
KH
125842011-07-07 Kenichi Handa <handa@m17n.org>
12585
12586 * composite.c (composition_compute_stop_pos): Ignore a static
12587 composition starting before CHARPOS (Bug#8915).
12588
12589 * xdisp.c (handle_composition_prop): Likewise.
12590
a8815b00
EZ
125912011-07-07 Eli Zaretskii <eliz@gnu.org>
12592
12593 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
12594 (Bug#9015)
12595
ef7b981d 125962011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
12597
12598 * character.h (unicode_category_t): New enum type.
12599
12600 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
12601 (Qchar_code_property_table): New variable.
12602 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
12603 (UNIPROP_COMPRESSED_FORM_P): New macros.
12604 (char_table_ascii): Uncompress the compressed values.
12605 (sub_char_table_ref): New arg is_uniprop. Callers changed.
12606 Uncompress the compressed values.
ac389d0c 12607 (sub_char_table_ref_and_range): Likewise.
c805dec0
KH
12608 (char_table_ref_and_range): Uncompress the compressed values.
12609 (sub_char_table_set): New arg is_uniprop. Callers changed.
12610 Uncompress the compressed values.
12611 (sub_char_table_set_range): Args changed. Callers changed.
12612 (char_table_set_range): Adjuted for the above change.
12613 (map_sub_char_table): Delete args default_val and parent. Add arg
12614 top. Give decoded values to a Lisp function.
640c8776 12615 (map_char_table): Adjust for the above change. Give decoded
c805dec0
KH
12616 values to a Lisp function. Gcpro more variables.
12617 (uniprop_table_uncompress)
12618 (uniprop_decode_value_run_length): New functions.
12619 (uniprop_decoder, uniprop_decoder_count): New variables.
12620 (uniprop_get_decoder, uniprop_encode_value_character)
12621 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
12622 New functions.
12623 (uniprop_encoder, uniprop_encoder_count): New variables.
12624 (uniprop_get_encoder, uniprop_table)
12625 (Funicode_property_table_internal, Fget_unicode_property_internal)
12626 (Fput_unicode_property_internal): New functions.
12627 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
12628 Sunicode_property_table_internal, Sget_unicode_property_internal,
5e617bc2 12629 and Sput_unicode_property_internal. Defvar_lisp
c805dec0
KH
12630 char-code-property-alist.
12631
640c8776 12632 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
c805dec0
KH
12633 Vunicode_category_table.
12634
640c8776 12635 * font.c (font_range): Adjust for the change of
c805dec0
KH
12636 Vunicode_category_table.
12637
76b397fb
DN
126382011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
12639
12640 * m/iris4d.h: Remove file, move contents ...
12641 * s/irix6-5.h: ... here.
12642
22b4128e
PE
126432011-07-06 Paul Eggert <eggert@cs.ucla.edu>
12644
12645 Remove unportable assumption about struct layout (Bug#8884).
8a5c77bb
PE
12646 * alloc.c (mark_buffer):
12647 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
12648 (clone_per_buffer_values): Don't assume that
22b4128e
PE
12649 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
12650 This isn't true in general, and it's particularly not true
12651 if Emacs is configured with --with-wide-int.
12652 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
12653 New macros, used in the buffer.c change.
12654
869795d6
JD
126552011-07-05 Jan Djärv <jan.h.d@swipnet.se>
12656
12657 * xsettings.c: Use both GConf and GSettings if both are available.
12658 (store_config_changed_event): Add comment.
12659 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
12660 (store_tool_bar_style_changed): New functions.
5e617bc2 12661 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
869795d6
JD
12662 (struct xsettings): Move font inside HAVE_XFT.
12663 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
640c8776 12664 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
869795d6 12665 Move inside HAVE_XFT.
640c8776 12666 (something_changed_gsettingsCB): Rename from something_changedCB.
869795d6
JD
12667 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
12668 also.
12669 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
5e617bc2 12670 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
640c8776 12671 (something_changed_gconfCB): Rename from something_changedCB.
869795d6
JD
12672 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
12673 (parse_settings): Move check for font inside HAVE_XFT.
12674 (read_settings, apply_xft_settings): Add comment.
12675 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
12676 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
12677 call store_font_name_changed.
12678 (xft_settings_event): Add comment.
12679 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
12680 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
12681 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
12682 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
12683 (xsettings_initialize): Call init_gsettings last.
640c8776
SM
12684 (xsettings_get_system_font, xsettings_get_system_normal_font):
12685 Add comment.
869795d6 12686
d8ed26bd
PE
126872011-07-05 Paul Eggert <eggert@cs.ucla.edu>
12688
12689 Random fixes. E.g., (random) never returned negative values.
12690 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
12691 subseconds part to the entropy, as that's a bit more random.
12692 Prefer signed to unsigned, since the signedness doesn't matter and
12693 in general we prefer signed. When given a limit, use a
12694 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
12695 latter isn't right if USE_2_TAGS_FOR_INTS.
12696 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
12697 not 0..VALMASK. Don't discard "excess" bits that random () returns.
12698
cabf1cac
SM
126992011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
12700
12701 * textprop.c (text_property_stickiness):
12702 Obey Vtext_property_default_nonsticky.
12703 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
12704 * w32fns.c (syms_of_w32fns):
12705 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
12706
6e9b2be9
PE
127072011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12708
12709 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
12710 This is more efficient than Ffile_directory_p and avoids a minor race.
12711
90186c68
LMI
127122011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
12713
7c301272
LMI
12714 * buffer.c (Foverlay_put): Say what the return value is
12715 (bug#7835).
12716
c4f2d8d4
LMI
12717 * fileio.c (barf_or_query_if_file_exists): Check first if the file
12718 is a directory before asking whether to use the file name
12719 (bug#7564).
ad637907
LMI
12720 (barf_or_query_if_file_exists): Make the "File is a directory"
12721 error be more correct.
c4f2d8d4 12722
90186c68
LMI
12723 * fns.c (Frequire): Remove the mention of the .gz files, since
12724 that's installation-specific, but keep the mention of
12725 `get-load-suffixes'.
12726
da64016e
PE
127272011-07-04 Paul Eggert <eggert@cs.ucla.edu>
12728
12729 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
12730 Report string overflow if the output is too long.
12731
7d47b580
JB
127322011-07-04 Juanma Barranquero <lekktu@gmail.com>
12733
a555cb87
JB
12734 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
12735 (syms_of_gnutls): Remove duplicate DEFSYM for
12736 Qgnutls_bootprop_verify_hostname_error, an error for
12737 Qgnutls_bootprop_verify_error (which is no longer used).
12738
7d47b580
JB
12739 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
12740 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
12741 Also (re)move comments that are misplaced or no longer relevant.
12742
1e49bfab
LMI
127432011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12744
12745 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
12746
1485f4c0
CY
127472011-07-03 Chong Yidong <cyd@stupidchicken.com>
12748
12749 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
12750 and background color parameters if they have been changed.
12751
a9ab721e
LMI
127522011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
12753
12754 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
12755
cf7cff57
PE
127562011-07-03 Paul Eggert <eggert@cs.ucla.edu>
12757
2e13213d
PE
12758 * xsettings.c (SYSTEM_FONT): Define only when used.
12759 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
12760
cf7cff57
PE
12761 * keymap.c (access_keymap_1): Now static.
12762
7a8e04f7
CY
127632011-07-02 Chong Yidong <cyd@stupidchicken.com>
12764
12765 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
12766 leave any prefix arg for the up event (Bug#1586).
12767
61352f62
LMI
127682011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
12769
69bb1ef7
LMI
12770 * lread.c (syms_of_lread): Mention single symbols defined by
12771 `defvar' or `defconst' (bug#7154).
12772
61352f62 12773 * fns.c (Frequire): Mention .el.gz files (bug#7314).
7b3747f9 12774 (Frequire): Mention get-load-suffixes.
61352f62 12775
28545e04
MR
127762011-07-02 Martin Rudalics <rudalics@gmx.at>
12777
12778 * window.h (window): Remove clone_number slot.
12779 * window.c (Fwindow_clone_number, Fset_window_clone_number):
12780 Remove.
12781 (make_parent_window, make_window, saved_window)
12782 (Fset_window_configuration, save_window_save): Don't deal with
12783 clone numbers.
12784 * buffer.c (Qclone_number): Remove declaration.
12785 (sort_overlays, overlay_strings): Don't deal with clone numbers.
12786
3349e122
SM
127872011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
12788
12789 Add multiple inheritance to keymaps.
12790 * keymap.c (Fmake_composed_keymap): New function.
12791 (Fset_keymap_parent): Simplify.
12792 (fix_submap_inheritance): Remove.
12793 (access_keymap_1): New function extracted from access_keymap to handle
12794 embedded parents and handle lists of maps.
12795 (access_keymap): Use it.
12796 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
12797 (Fcopy_keymap): Handle embedded parents.
12798 (Fcommand_remapping, define_as_prefix): Simplify.
12799 (Fkey_binding): Simplify.
12800 (syms_of_keymap): Move minibuffer-local-completion-map,
12801 minibuffer-local-filename-completion-map,
12802 minibuffer-local-must-match-map, and
12803 minibuffer-local-filename-must-match-map to Elisp.
12804 (syms_of_keymap): Defsubr make-composed-keymap.
12805 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
12806 (parse_menu_item): Trivial simplification.
12807
3279eb87
GM
128082011-07-01 Glenn Morris <rgm@gnu.org>
12809
12810 * Makefile.in (SETTINGS_LIBS): Fix typo.
12811
39cb9e56 128122011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4550efdf
KI
12813
12814 * coding.c (Fencode_coding_string): Record the last coding system
12815 used, as the function doc string says (bug#8738).
12816
0949d2b6
JD
128172011-07-01 Jan Djärv <jan.h.d@swipnet.se>
12818
12819 * xsettings.c (store_monospaced_changed): Take new font as arg and
12820 check for change against current_mono_font.
12821 (EMACS_TYPE_SETTINGS): Remove this and related defines.
12822 (emacs_settings_constructor, emacs_settings_get_property)
12823 (emacs_settings_set_property, emacs_settings_class_init)
12824 (emacs_settings_init, gsettings_obj): Remove.
12825 (something_changedCB): New function for HAVE_GSETTINGS.
12826 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
12827 with value as argument.
12828 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
12829 g_settings_new (Bug#8967). Do not create gsettings_obj.
9173deec 12830 Remove calls to g_settings_bind. Connect something_changedCB to
0949d2b6
JD
12831 "changed".
12832
12833 * xgselect.c: Add defined (HAVE_GSETTINGS).
12834 (xgselect_initialize): Ditto.
12835
12836 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
12837 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
12838 xg_select.
12839
bbc6b304
PE
128402011-07-01 Paul Eggert <eggert@cs.ucla.edu>
12841
12842 * eval.c (struct backtrace): Simplify and port the data structure.
12843 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
12844 signed bit field, as this assumption is not portable and it makes
12845 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
12846 "char debug_on_exit : 1" as this is not portable either; instead,
12847 use the portable "unsigned int debug_on_exit : 1". Remove unused
12848 member evalargs. Remove obsolete comments about cc bombing out.
12849
9851bfc5
JD
128502011-06-30 Jan Djärv <jan.h.d@swipnet.se>
12851
51bb811f 12852 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
9851bfc5
JD
12853 Let HAVE_GSETTINGS override HAVE_GCONF.
12854 (store_monospaced_changed): New function.
12855 (EMACS_SETTINGS): A new type derived from GObject to handle
12856 GSettings notifications.
12857 (emacs_settings_constructor, emacs_settings_get_property)
12858 (emacs_settings_set_property, emacs_settings_class_init):
12859 New functions.
12860 (gsettings_client, gsettings_obj): New variables.
12861 (GSETTINGS_SCHEMA): New define.
12862 (something_changedCB): Call store_monospaced_changed.
12863 (init_gsettings): New function.
12864 (xsettings_initialize): Call init_gsettings.
12865 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
12866 to NULL.
12867
640c8776 12868 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
9851bfc5
JD
12869 GCONF_CFLAGS/LIBS.
12870
5386012d
MR
128712011-06-29 Martin Rudalics <rudalics@gmx.at>
12872
12873 * window.c (resize_root_window, grow_mini_window)
12874 (shrink_mini_window): Rename Qresize_root_window to
12875 Qwindow_resize_root_window and Qresize_root_window_vertically to
12876 Qwindow_resize_root_window_vertically.
12877
f13e0b08
PE
128782011-06-28 Paul Eggert <eggert@cs.ucla.edu>
12879
12880 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
12881
94515237
JB
128822011-06-27 Juanma Barranquero <lekktu@gmail.com>
12883
12884 * makefile.w32-in: Redesign dependencies so they reflect more
12885 clearly which files are directly included by each source file,
12886 and not through other includes.
12887
e43b6e43
MR
128882011-06-27 Martin Rudalics <rudalics@gmx.at>
12889
12890 * buffer.c (Qclone_number): Declare static and DEFSYM it.
12891 (sort_overlays, overlay_strings): When an overlay's clone number
12892 matches the window's clone number process the overlay even if
12893 the overlay's window property doesn't match the current window.
12894
d68443dc
MR
12895 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
12896 (Fwindow_hchild): Rename to Fwindow_left_child.
12897 (Fwindow_next): Rename to Fwindow_next_sibling.
12898 (Fwindow_prev): Rename to Fwindow_prev_sibling.
d615d6d2
MR
12899 (resize_window_check): Rename to window_resize_check.
12900 (resize_window_apply): Rename to window_resize_apply.
12901 (Fresize_window_apply): Rename to Fwindow_resize_apply.
12902 (Fdelete_other_windows_internal, resize_frame_windows)
12903 (Fsplit_window_internal, Fdelete_window_internal)
12904 (grow_mini_window, shrink_mini_window)
12905 (Fresize_mini_window_internal): Fix callers accordingly.
d68443dc 12906
c7e73be5
JD
129072011-06-26 Jan Djärv <jan.h.d@swipnet.se>
12908
12909 * emacsgtkfixed.h: State that this is only used with Gtk+3.
12910 (emacs_fixed_set_min_size): Remove.
12911 (emacs_fixed_new): Take frame as argument.
12912
12913 * emacsgtkfixed.c: State that this is only used with Gtk+3.
12914 (_EmacsFixedPrivate): Remove minwidth/height.
12915 Add struct frame *f.
12916 (emacs_fixed_init): Initialize priv->f.
12917 (get_parent_class, emacs_fixed_set_min_size): Remove.
12918 (emacs_fixed_new): Set priv->f to argument.
12919 (emacs_fixed_get_preferred_width)
12920 (emacs_fixed_get_preferred_height): Use min_width/height from
12921 frames size_hint to set minimum and natural (Bug#8919).
12922 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
12923 and use min_width/height from frames size_hint to set
12924 min_width/height (Bug#8919).
12925
12926 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
9173deec
JB
12927 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
12928 Fix indentation.
c7e73be5 12929
cf99dcf8
EZ
129302011-06-26 Eli Zaretskii <eliz@gnu.org>
12931
12932 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
12933 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
12934 called at ZV.
12935
029529ac
CY
129362011-06-26 Chong Yidong <cyd@stupidchicken.com>
12937
12938 * process.c (wait_reading_process_output): Bypass select if
12939 waiting for a cell while ignoring keyboard input, and input is
12940 pending. Suggested by Jan Djärv (Bug#8869).
12941
7a7ef429
PE
129422011-06-25 Paul Eggert <eggert@cs.ucla.edu>
12943
12944 Use gnulib's dup2 module instead of rolling our own.
12945 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
12946
11fdef7d 129472011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
989b42d2
YM
12948
12949 * dispnew.c (scrolling_window): Before scrolling, turn off a
12950 mouse-highlight in the window being scrolled.
12951
cd3520a4
JB
129522011-06-24 Juanma Barranquero <lekktu@gmail.com>
12953
12954 Move DEFSYM to lisp.h and use everywhere.
12955
12956 * character.h (DEFSYM): Move declaration...
12957 * lisp.h (DEFSYM): ...here.
12958
12959 * gnutls.c:
12960 * minibuf.c:
12961 * w32menu.c:
12962 * w32proc.c:
12963 * w32select.c: Don't include character.h.
12964
12965 * alloc.c (syms_of_alloc):
12966 * buffer.c (syms_of_buffer):
12967 * bytecode.c (syms_of_bytecode):
12968 * callint.c (syms_of_callint):
12969 * casefiddle.c (syms_of_casefiddle):
12970 * casetab.c (init_casetab_once):
12971 * category.c (init_category_once, syms_of_category):
12972 * ccl.c (syms_of_ccl):
12973 * cmds.c (syms_of_cmds):
12974 * composite.c (syms_of_composite):
12975 * dbusbind.c (syms_of_dbusbind):
12976 * dired.c (syms_of_dired):
12977 * dispnew.c (syms_of_display):
12978 * doc.c (syms_of_doc):
12979 * editfns.c (syms_of_editfns):
12980 * emacs.c (syms_of_emacs):
12981 * eval.c (syms_of_eval):
12982 * fileio.c (syms_of_fileio):
12983 * fns.c (syms_of_fns):
12984 * frame.c (syms_of_frame):
12985 * fringe.c (syms_of_fringe):
12986 * insdel.c (syms_of_insdel):
12987 * keymap.c (syms_of_keymap):
12988 * lread.c (init_obarray, syms_of_lread):
12989 * macros.c (syms_of_macros):
12990 * msdos.c (syms_of_msdos):
12991 * print.c (syms_of_print):
12992 * process.c (syms_of_process):
12993 * search.c (syms_of_search):
12994 * sound.c (syms_of_sound):
12995 * syntax.c (init_syntax_once, syms_of_syntax):
12996 * terminal.c (syms_of_terminal):
12997 * textprop.c (syms_of_textprop):
12998 * undo.c (syms_of_undo):
12999 * w32.c (globals_of_w32):
13000 * window.c (syms_of_window):
13001 * xdisp.c (syms_of_xdisp):
13002 * xfaces.c (syms_of_xfaces):
13003 * xfns.c (syms_of_xfns):
13004 * xmenu.c (syms_of_xmenu):
13005 * xsettings.c (syms_of_xsettings):
13006 * xterm.c (syms_of_xterm): Use DEFSYM.
13007
4228cf16
TZ
130082011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
13009
cd3520a4 13010 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
4228cf16 13011
7fcccf1e
PE
130122011-06-23 Paul Eggert <eggert@cs.ucla.edu>
13013
7efb4e0e
PE
13014 Integer and buffer overflow fixes (Bug#8873).
13015
ff5844ad
PE
13016 * print.c (printchar, strout): Check for string overflow.
13017 (PRINTPREPARE, printchar, strout):
13018 Don't set size unless allocation succeeds.
13019
90532f02
PE
13020 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
13021 for sizes. Check for string overflow more accurately.
13022 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
13023
6d84508d
PE
13024 * macros.c: Integer and buffer overflow fixes.
13025 * keyboard.h (struct keyboard.kbd_macro_bufsize):
13026 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
13027 Use ptrdiff_t, not int, for sizes.
13028 Don't increment bufsize until after realloc succeeds.
13029 Check for size-calculation overflow.
13030 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
13031
437b2cb4
PE
13032 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
13033
8b9ac8b4
PE
13034 * lread.c: Integer overflow fixes.
13035 (read_integer): Radix is now EMACS_INT, not int,
13036 to improve quality of diagnostics for out-of-range radices.
13037 Calculate buffer size correctly for out-of-range radices.
13038 (read1): Check for integer overflow in radices, and in
13039 read-circle numbers.
82cb60d3
PE
13040 (read_escape): Avoid int overflow.
13041 (Fload, openp, read_buffer_size, read1)
13042 (substitute_object_recurse, read_vector, read_list, map_obarray):
13043 Use ptrdiff_t, not int, for sizes.
13044 (read1): Use EMACS_INT, not int, for sizes.
20270765 13045 Check for size overflow.
8b9ac8b4 13046
7fcccf1e
PE
13047 * image.c (cache_image): Check for size arithmetic overflow.
13048
bfbbd7e7
PE
13049 * lread.c: Integer overflow issues.
13050 (saved_doc_string_size, saved_doc_string_length)
13051 (prev_saved_doc_string_size, prev_saved_doc_string_length):
13052 Now ptrdiff_t, not int.
13053 (read1): Don't assume doc string length fits in int. Check for
13054 out-of-range doc string lengths.
13055 (read_list): Don't assume file position fits in int.
39019e54 13056 (read_escape): Check for hex character overflow.
bfbbd7e7 13057
4e323265
LL
130582011-06-22 Leo Liu <sdl.web@gmail.com>
13059
13060 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
13061 Move to minibuffer.el.
13062
85fece3e
PE
130632011-06-22 Paul Eggert <eggert@cs.ucla.edu>
13064
20b84ce9 13065 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
85fece3e
PE
13066 The following patches are for when GLYPH_DEBUG && !XASSERT.
13067 * dispextern.h (trace_redisplay_p, dump_glyph_string):
13068 * dispnew.c (flush_stdout):
13069 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
13070 Mark as externally visible.
13071 * dispnew.c (check_window_matrix_pointers): Now static.
13072 * dispnew.c (window_to_frame_vpos):
13073 * xfns.c (unwind_create_frame):
13074 * xterm.c (x_check_font): Remove unused local.
13075 * scroll.c (CHECK_BOUNDS):
13076 * xfaces.c (cache_fache): Rename local to avoid shadowing.
13077 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
13078 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
13079 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
13080 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
13081 Now static.
13082 (debug_method_add): Use va_list and vsprintf rather than relying
13083 on undefined behavior with wrong number of arguments.
13084 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
13085 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
13086 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
13087 since we're not interested in debugging glyphs with old libraries.
13088 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
13089 GCC 4.6.0's static checking.
13090
0766b489
PE
130912011-06-22 Paul Eggert <eggert@cs.ucla.edu>
13092
31fd4b32
PE
13093 Integer overflow and signedness fixes (Bug#8873).
13094 A few related buffer overrun fixes, too.
13095
b79e8648
PE
13096 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
13097
0766b489
PE
13098 * dispextern.h (struct face.stipple):
13099 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
13100 (x_bitmap_mask, x_allocate_bitmap_record)
13101 (x_create_bitmap_from_data, x_create_bitmap_from_file)
13102 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
13103 (x_create_bitmap_from_xpm_data):
13104 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
13105 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
13106 (.bitmaps_last):
13107 * xfaces.c (load_pixmap):
13108 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
13109 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
13110 (.bitmaps_last, struct x_output.icon_bitmap):
13111 Use ptrdiff_t, not int, for bitmap indexes.
13112 (x_allocate_bitmap_record): Check for size overflow.
13113 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
13114
b081724f
PE
13115 Use ptrdiff_t, not int, for overlay counts.
13116 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
13117 * editfns.c (overlays_around, get_pos_property):
13118 * textprop.c (get_char_property_and_overlay):
13119 * xdisp.c (next_overlay_change, note_mouse_highlight):
13120 * xfaces.c (face_at_buffer_position):
21514da7
PE
13121 * buffer.c (OVERLAY_COUNT_MAX): New macro.
13122 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
13123 (Fnext_overlay_change, Fprevious_overlay_change)
13124 (mouse_face_overlay_overlaps, Foverlays_in):
b081724f 13125 Use ptrdiff_t, not int, for sizes.
21514da7 13126 (overlays_at, overlays_in): Check for size-calculation overflow.
b081724f 13127
3de73e5e
PE
13128 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
13129
2606c57b
PE
13130 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
13131 (x_session_initialize): Do not assume string length fits in int.
13132
aaafe47a
PE
13133 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
13134 This is unlikely, but can occur if DPI is outlandish.
13135
2674ddc8 13136 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
3a5077c5
PE
13137 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
13138
28154962
PE
13139 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
13140 * xrdb.c (magic_file_p, search_magic_path):
13141 Omit last arg SUFFIX; it was always 0. All callers changed.
13142 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
13143
7de51af5
PE
13144 * xfont.c (xfont_match): Avoid need for strlen.
13145
25ed6cc3
PE
13146 * xfns.c: Don't assume strlen fits in int.
13147 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
13148
4eab31dd
PE
13149 * xdisp.c (message_log_check_duplicate): Return intmax_t,
13150 not unsigned long, as we prefer signed integers. All callers changed.
13151 Detect integer overflow in repeat count.
13152 (message_dolog): Don't assume print length fits in 39 bytes.
df1f27af 13153 (display_mode_element): Don't assume strlen fits in int.
4eab31dd 13154
171e2a58
PE
13155 * termcap.c: Don't assume sizes fit in int and never overflow.
13156 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
13157 (gobble_line): Check for size-calculation overflow.
13158
ad39faca 13159 * minibuf.c (Fread_buffer):
6e5bb2dc 13160 * lread.c (intern, intern_c_string):
74ca2eb3
PE
13161 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
13162 Don't assume string length fits in int.
13163
52c61c22 13164 * keyboard.c (parse_tool_bar_item):
9bda3520
PE
13165 * gtkutil.c (style_changed_cb): Avoid need for strlen.
13166
b5b8c9e5
PE
13167 * font.c: Don't assume string length fits in int.
13168 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
13169 Use ptrdiff_t, not int.
ccd6111c
PE
13170 (font_intern_prop): Don't assume string length fits in int.
13171 Don't assume integer property fits in fixnum.
13172 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
b5b8c9e5 13173
882f0d81 13174 * filelock.c: Fix some buffer overrun and integer overflow issues.
51cab52b 13175 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
882f0d81
PE
13176 Reformulate so as not to need the command string.
13177 Invoke gzip -cd rather than gunzip, as it's more portable.
13178 (lock_info_type, lock_file_1, lock_file):
13179 Don't assume pid_t and time_t fit in unsigned long.
13180 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
13181 (current_lock_owner): Prefer signed type for sizes.
13182 Use memcpy, not strncpy, where memcpy is what is really wanted.
13183 Don't assume (via atoi) that time_t and pid_t fit in int.
13184 Check for time_t and/or pid_t out of range, e.g., via a network share.
13185 Don't alloca where an auto var works fine.
13186
93f4cf88
PE
13187 * fileio.c: Fix some integer overflow issues.
13188 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
13189 Don't assume string length fits in int.
13190 (directory_file_name): Don't assume string length fits in long.
13191 (make_temp_name): Don't assume pid fits in int, or that its print
13192 length is less than 20.
13193
f3e92b69
PE
13194 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
13195
1bfdaf10
PE
13196 * coding.c (make_subsidiaries): Don't assume string length fits in int.
13197
35016e9a
PE
13198 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
13199
3d1e65a1
PE
13200 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
13201 We prefer signed integers, even for size calculations.
13202
0b963a93
PE
13203 * emacs.c: Don't assume string length fits in 'int'.
13204 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
13205 (main): Don't invoke strlen when not needed.
13206
573f4b54
PE
13207 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
13208 (XD_DEBUG_MESSAGE): Don't waste a byte.
13209
989f33ba
PE
13210 * callproc.c (getenv_internal_1, getenv_internal)
13211 (Fgetenv_internal):
965d34eb
PE
13212 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
13213
e4d29b33
PE
13214 * lread.c (invalid_syntax): Omit length argument.
13215 All uses changed. This doesn't fix a bug, but it simplifies the
13216 code away from its former Hollerith-constant appearance, and it's
13217 one less 'int' to worry about when looking at integer-overflow issues.
51cab52b 13218 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
e4d29b33 13219
eb49b136
PE
13220 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
13221 This didn't break anything, but it didn't help either.
13222 It's confusing to put a bogus integer in a place where the actual
13223 value does not matter.
9f62aeb1 13224 (LIST_END_P): Remove unused macro and its bogus comment.
cbeff735 13225 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
eb49b136 13226
15375a22
PE
13227 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
13228 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
13229 implementation.
b61cc01c
PE
13230 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
13231 We prefer signed types, and the value cannot exceed the EMACS_INT
13232 range anyway (because otherwise the length would not be representable).
9a8e8d9b
PE
13233 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
13234 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
13235 This avoids a GCC warning when WIDE_EMACS_INT.
15375a22 13236
53b2623d
PE
13237 * indent.c (sane_tab_width): New function.
13238 (current_column, scan_for_column, Findent_to, position_indentation)
13239 (compute_motion): Use it. This is just for clarity.
8fcaf9cc 13240 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
53b2623d 13241
51cab52b 13242 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
45aebb64 13243
f2ed8a70
PE
13244 * lisp.h (lint_assume): New macro.
13245 * composite.c (composition_gstring_put_cache):
13246 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
13247
abe80cc6
PE
13248 * editfns.c, insdel.c:
13249 Omit unnecessary forward decls, to simplify future changes.
a9e860e1 13250
b02c740e
PE
13251 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
13252
ebc96716
PE
13253 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
13254
b4e50fa0 13255 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
f03dc6ef 13256 Use much-faster test for byte-length change.
311d5d7c 13257 Don't assume string byte-length fits in 'int'.
a4cf38e4 13258 Check that character arg fits in 'int'.
85461888 13259 (mapcar1): Declare byte as byte, for clarity.
b4e50fa0 13260
c0c1ee9f
PE
13261 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
13262
a498d7f4
PE
13263 * fns.c (concat): Catch string overflow earlier.
13264 Do not rely on integer wraparound.
13265
51cab52b
PE
13266 * dispextern.h (struct it.overlay_strings_charpos)
13267 (struct it.selective): Now EMACS_INT, not int.
87830974
PE
13268 * xdisp.c (forward_to_next_line_start)
13269 (back_to_previous_visible_line_start)
13270 (reseat_at_next_visible_line_start, next_element_from_buffer):
13271 Don't arbitrarily truncate the value of 'selective' to int.
13272
76031fad
PE
13273 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
13274
5eb55db9
PE
13275 * composite.c: Don't truncate sizes to 'int'.
13276 (composition_gstring_p, composition_reseat_it)
13277 (composition_adjust_point): Use EMACS_INT, not int.
7d100a81
PE
13278 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
13279 not EMACS_UINT, for indexes.
5eb55db9 13280
0703a717
PE
13281 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
13282
d6202519
PE
13283 * buffer.c: Include <verify.h>.
13284 (struct sortvec.priority, struct sortstr.priority):
8961a454 13285 Now EMACS_INT, not int.
c20998a7 13286 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
67c36fce
PE
13287 (struct sortstr.size, record_overlay_string)
13288 (struct sortstrlist.size, struct sortlist.used):
13289 Don't truncate size to int.
13290 (record_overlay_string): Check for size-calculation overflow.
d6202519 13291 (init_buffer_once): Check at compile-time, not run-time.
fadf4e30 13292
d5a19415
JM
132932011-06-22 Jim Meyering <meyering@redhat.com>
13294
029529ac 13295 Don't leak an XBM-image-sized buffer
d5a19415
JM
13296 * image.c (xbm_load): Free the image buffer after using it.
13297
a9041e6c
PE
132982011-06-21 Paul Eggert <eggert@cs.ucla.edu>
13299
13300 Port to Sun C.
13301 * composite.c (find_automatic_composition): Omit needless 'return 0;'
13302 that Sun C diagnosed.
13303 * fns.c (secure_hash): Fix pointer signedness issue.
13304 * intervals.c (static_offset_intervals): New function.
13305 (offset_intervals): Use it.
13306
7f3f739f
LL
133072011-06-21 Leo Liu <sdl.web@gmail.com>
13308
13309 * deps.mk (fns.o):
13310 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
13311 sha512.h.
13312
13313 * fns.c (secure_hash): Rename from crypto_hash_function and change
13314 the first arg to accept symbols.
5b66d427 13315 (Fsecure_hash): New primitive.
7f3f739f
LL
13316 (syms_of_fns): New symbols.
13317
76147d94
DD
133182011-06-20 Deniz Dogan <deniz@dogan.se>
13319
13320 * process.c (Fset_process_buffer): Clarify return value in
13321 docstring.
13322
7d7d0045
CY
133232011-06-18 Chong Yidong <cyd@stupidchicken.com>
13324
13325 * dispnew.c (add_window_display_history): Use BVAR.
13326
13327 * xdisp.c (debug_method_add): Use BVAR.
13328 (check_window_end, dump_glyph_matrix, dump_glyph)
13329 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
13330
13331 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
13332 Likewise.
13333
13334 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
13335 check till after the cache is created in init_frame_faces.
13336
ff2bc410
SM
133372011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
13338
13339 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
13340
28177add
PE
133412011-06-16 Paul Eggert <eggert@cs.ucla.edu>
13342
dd3482fe
PE
13343 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
13344 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
13345 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
13346
393d71f3 13347 Improve buffer-overflow checking (Bug#8873).
1c8e352f
PE
13348 * fileio.c (Finsert_file_contents):
13349 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
13350 Remove the old (too-loose) buffer overflow checks.
13351 They weren't needed, since make_gap checks for buffer overflow.
13352 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
13353 The old code merely checked for Emacs fixnum overflow, and relied
13354 on undefined (wraparound) behavior. The new code avoids undefined
13355 behavior, and also checks for ptrdiff_t and/or size_t overflow.
13356
2e6813b0 13357 * editfns.c (Finsert_char): Don't dump core with very negative counts.
21d890a4
PE
13358 Tune. Don't use wider integers than needed. Don't use alloca.
13359 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
2e6813b0 13360
599a9e4f
PE
13361 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
13362
99561444
PE
13363 * insdel.c, lisp.h (buffer_overflow): New function.
13364 (insert_from_buffer_1, replace_range, replace_range_2):
13365 * insdel.c (make_gap_larger):
13366 * editfns.c (Finsert_char):
13367 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
13368
28177add
PE
13369 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
13370
e69dafad
PE
133712011-06-15 Paul Eggert <eggert@cs.ucla.edu>
13372
4baa020d 13373 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
ff672d2c 13374
b1c46f02
PE
13375 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
13376 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
13377
e69dafad
PE
13378 * fileio.c: Don't assume EMACS_INT fits in off_t.
13379 (emacs_lseek): New static function.
13380 (Finsert_file_contents, Fwrite_region): Use it.
13381 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
13382
566684ea
PE
13383 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
13384
e6966cd6
PE
13385 * fns.c: Don't overflow int when computing a list length.
13386 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
13387 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
13388 truncation on 64-bit hosts. Check for QUIT every
13389 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
13390 faster and is responsive enough.
13391 (Flength): Report an error instead of overflowing an integer.
13392 (Fsafe_length): Return a float if the value is not representable
13393 as a fixnum. This shouldn't happen except in contrived situations.
6346d301 13394 (Fnthcdr, Fsort): Don't assume list length fits in int.
de41a810 13395 (Fcopy_sequence): Don't assume vector length fits in int.
00c604f2 13396
dd0b0efb
PE
13397 * alloc.c: Check that resized vectors' lengths fit in fixnums.
13398 (header_size, word_size): New constants.
13399 (allocate_vectorlike): Don't check size overflow here.
13400 (allocate_vector): Check it here instead, since this is the only
13401 caller of allocate_vectorlike that could cause overflow.
13402 Check that the new vector's length is representable as a fixnum.
13403
86fe5cfe
PE
13404 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
13405 The previous code was bogus. For example, next_almost_prime (32)
13406 returned 39, which is undesirable as it is a multiple of 3; and
13407 next_almost_prime (24) returned 25, which is a multiple of 5 so
13408 why was the code bothering to check for multiples of 7?
13409
80e88859
PE
13410 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
13411
4a2f0ad6
PE
13412 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
13413
f66c7cf8
PE
13414 Variadic C functions now count arguments with ptrdiff_t.
13415 This partly undoes my 2011-03-30 change, which replaced int with size_t.
13416 Back then I didn't know that the Emacs coding style prefers signed int.
13417 Also, in the meantime I found a few more instances where arguments
4a2f0ad6
PE
13418 were being counted with int, which may truncate counts on 64-bit
13419 machines, or EMACS_INT, which may be unnecessarily wide.
f66c7cf8
PE
13420 * lisp.h (struct Lisp_Subr.function.aMANY)
13421 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
13422 Arg counts are now ptrdiff_t, not size_t.
13423 All variadic functions and their callers changed accordingly.
13424 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
13425 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
13426 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
13427 * callint.c (Fcall_interactively): Check arg count for overflow,
13428 to avoid potential buffer overrun. Use signed char, not 'int',
13429 for 'varies' array, so that we needn't bother to check its size
13430 calculation for overflow.
13431 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
13432 * eval.c (apply_lambda):
13433 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
13434 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
13435 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
13436
a1759b76
PE
13437 * callint.c (Fcall_interactively): Don't use index var as event count.
13438
d96be9fc
PE
13439 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
13440 * mem-limits.h (SIZE): Remove; no longer used.
13441
a690a978 13442 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
5efd304b 13443
578c21e6
PE
13444 Remove unnecessary casts.
13445 * xterm.c (x_term_init):
13446 * xfns.c (x_set_border_pixel):
13447 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
13448 These aren't needed now that we assume ANSI C.
13449
96f53c6c
PE
13450 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
13451 It's more likely to cause problems (due to unsigned overflow)
13452 than to cure them.
13453
83c77d31
PE
13454 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
13455
ee2079f1
PE
13456 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
13457
6da65536
PE
13458 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
13459
7147c4a4
PE
13460 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
13461
193e32d9
PE
13462 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
13463
e5533da6
PE
13464 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
13465
9910e595
PE
13466 GLYPH_CODE_FACE returns EMACS_INT, not int.
13467 * dispextern.h (merge_faces):
13468 * xfaces.c (merge_faces):
01103c44
PE
13469 * xdisp.c (get_next_display_element, next_element_from_display_vector):
13470 Don't assume EMACS_INT fits in int.
9910e595 13471
2638320e
PE
13472 * character.h (CHAR_VALID_P): Remove unused parameter.
13473 * fontset.c, lisp.h, xdisp.c: All uses changed.
13474
045eb8d9
PE
13475 * editfns.c (Ftranslate_region_internal): Omit redundant test.
13476
c1f134b5
PE
13477 * fns.c (concat): Minor tuning based on overflow analysis.
13478 This doesn't fix any bugs. Use int to hold character, instead
13479 of constantly refetching from Emacs object. Use XFASTINT, not
13480 XINT, for value known to be a character. Don't bother comparing
13481 a single byte to 0400, as it's always less.
13482
395fcb93 13483 * floatfns.c (Fexpt):
327eeec8
PE
13484 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
13485
abbd3d23
PE
13486 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
13487 for characters.
13488
684a03ef
PE
13489 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
13490
0fed43f3
PE
13491 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
13492 Without this fix, on a 64-bit host (aset S 0 4294967386) would
13493 incorrectly succeed when S was a string, because 4294967386 was
13494 truncated before it was used.
13495
8fd02eb7
PE
13496 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
13497 Otherwise, an out-of-range integer could cause undefined behavior
13498 on a 64-bit host.
13499
f8c86b69
PE
13500 * composite.c: Use int, not EMACS_INT, for characters.
13501 (fill_gstring_body, composition_compute_stop_pos): Use int, not
13502 EMACS_INT, for values that are known to be in character range.
13503 This doesn't fix any bugs but is the usual style inside Emacs and
13504 may generate better code on 32-bit machines.
13505
34206dd2
PE
13506 Make sure a 64-bit char is never passed to ENCODE_CHAR.
13507 This is for reasons similar to the recent CHAR_STRING fix.
13508 * charset.c (Fencode_char): Check that character arg is actually
13509 a character. Pass an int to ENCODE_CHAR.
13510 * charset.h (ENCODE_CHAR): Verify that the character argument is no
13511 wider than 'int', as a compile-time check to prevent future regressions
13512 in this area.
13513
c5958d4c 13514 * character.c (char_string): Remove unnecessary casts.
13bdea59
PE
13515
13516 Make sure a 64-bit char is never passed to CHAR_STRING.
13517 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
13518 by silently ignoring the top 32 bits, allowing some values
13519 that were far too large to be valid characters.
13520 * character.h: Include <verify.h>.
13521 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
13522 arguments are no wider than unsigned, as a compile-time check
13523 to prevent future regressions in this area.
13524 * data.c (Faset):
01103c44 13525 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
13bdea59
PE
13526 (Fsubst_char_in_region):
13527 * fns.c (concat):
13528 * xdisp.c (decode_mode_spec_coding):
13529 Adjust to CHAR_STRING's new requirement.
13530 * editfns.c (Finsert_char, Fsubst_char_in_region):
13531 * fns.c (concat): Check that character args are actually
13532 characters. Without this test, these functions did the wrong
13533 thing with wildly out-of-range values on 64-bit hosts.
13534
d37ca623
PE
13535 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
13536 These casts should not be needed on 32-bit hosts, either.
13537 * keyboard.c (read_char):
13538 * lread.c (Fload): Remove casts to unsigned.
13539
ea204efb
PE
13540 * lisp.h (UNSIGNED_CMP): New macro.
13541 This fixes comparison bugs on 64-bit hosts.
13542 (ASCII_CHAR_P): Use it.
13543 * casefiddle.c (casify_object):
01103c44 13544 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
ea204efb
PE
13545 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
13546 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
13547 * dispextern.h (FACE_FROM_ID):
13548 * keyboard.c (read_char): Use UNSIGNED_CMP.
13549
41cb286c
PE
13550 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
13551 not to EMACS_INT, to avoid GCC warning.
13552
4a1b9832
PE
13553 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
13554
55daad71
PE
13555 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
13556 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
13557 isn't needed on 32-bit machines.
8f95c75c 13558
01103c44
PE
13559 * buffer.c (Fgenerate_new_buffer_name):
13560 Use EMACS_INT for count, not int.
0ceccced 13561 (advance_to_char_boundary): Return EMACS_INT, not int.
e762cafe
PE
13562
13563 * data.c (Qcompiled_function): Now static.
13564
c6f072e7
PE
13565 * window.c (window_body_lines): Now static.
13566
20ce5912
PE
13567 * image.c (gif_load): Rename local to avoid shadowing.
13568
9c4c5f81
PE
13569 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
13570 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
13571 * alloc.c (make_save_value): Integer argument is now of type
13572 ptrdiff_t, not int.
13573 (mark_object): Use ptrdiff_t, not int.
13574 * lisp.h (pD): New macro.
13575 * print.c (print_object): Use it.
13576
c0c5c8ae
PE
13577 * alloc.c: Use EMACS_INT, not int, to count objects.
13578 (total_conses, total_markers, total_symbols, total_vector_size)
13579 (total_free_conses, total_free_markers, total_free_symbols)
01103c44
PE
13580 (total_free_floats, total_floats, total_free_intervals)
13581 (total_intervals, total_strings, total_free_strings):
c0c5c8ae
PE
13582 Now EMACS_INT, not int. All uses changed.
13583 (Fgarbage_collect): Compute overall total using a double, so that
13584 integer overflow is less likely to be a problem. Check for overflow
13585 when converting back to an integer.
5a25e253
PE
13586 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
13587 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
13588 These were 'int' variables that could overflow on 64-bit hosts;
13589 they were never used, so remove them instead of repairing them.
211a0b2a 13590 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
6349ae4d
PE
13591 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
13592 Previously, this ceilinged at INT_MAX, but that doesn't work on
13593 64-bit machines.
e46bb31a 13594 (allocate_pseudovector): Don't use EMACS_INT when int would do.
c0c5c8ae 13595
c78baabf 13596 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
86f61a15 13597 (allocate_vectorlike): Check for ptrdiff_t overflow.
b6439961
PE
13598 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
13599 when a (possibly-narrower) signed value would do just as well.
13600 We prefer using signed arithmetic, to avoid comparison confusion.
c78baabf 13601
c9d624c6
PE
13602 * alloc.c: Catch some string size overflows that we were missing.
13603 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
13604 for convenience in STRING_BYTES_MAX.
13605 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
13606 The definition here is exact; the one in lisp.h was approximate.
13607 (allocate_string_data): Check for string overflow. This catches
13608 some instances we weren't catching before. Also, it catches
13609 size_t overflow on (unusual) hosts where SIZE_MAX <= min
13610 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
13611 and ptrdiff_t and EMACS_INT are both 64 bits.
c78baabf 13612
c9d624c6
PE
13613 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
13614 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
640c8776 13615 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
c9d624c6 13616
353032ce
PE
13617 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
13618
2bccce07
PE
13619 * alloc.c (Fmake_string): Check for out-of-range init.
13620
0ac30604
SM
136212011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
13622
13623 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
13624
c195f2de
JD
136252011-06-14 Jan Djärv <jan.h.d@swipnet.se>
13626
13627 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
13628 xg_get_default_scrollbar_width.
13629
13630 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
13631 (int_gtk_range_get_value): Move to the scroll bar part of the file.
13632 (style_changed_cb): Call update_theme_scrollbar_width and call
13633 x_set_scroll_bar_default_width and xg_frame_set_char_size for
13634 all frames (Bug#8505).
13635 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
13636 Call gtk_window_set_resizable if HAVE_GTK3.
13637 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
13638 and height if HAVE_GTK3 (Bug#8505).
13639 (scroll_bar_width_for_theme): New variable.
13640 (update_theme_scrollbar_width): New function.
13641 (xg_get_default_scrollbar_width): Move code to
13642 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
13643 (xg_initialize): Call update_theme_scrollbar_width.
13644
13645 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
13646
13647 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
13648
e10ac9f1
MR
136492011-06-12 Martin Rudalics <rudalics@gmx.at>
13650
13651 * frame.c (make_frame): Call other_buffer_safely instead of
13652 other_buffer.
13653
13654 * window.c (temp_output_buffer_show): Call display_buffer with
13655 second argument Vtemp_buffer_show_specifiers and reset latter
13656 immediately after the call.
13657 (Vtemp_buffer_show_specifiers): New variable.
13658 (auto_window_vscroll_p, next_screen_context_lines)
13659 (Vscroll_preserve_screen_position): Remove leading asterisks from
13660 doc-strings.
13661
2d3c217e 136622011-06-12 Paul Eggert <eggert@cs.ucla.edu>
4475bec4 13663
7b7f97e8 13664 Fix minor problems found by GCC 4.6.0 static checking.
4475bec4
PE
13665 * buffer.c (Qclone_number): Remove for now, as it's unused.
13666 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
13667 (record_buffer): Remove unused local.
13668 * frame.c (other_visible_frames, frame_buffer_list): Now static.
13669 (set_frame_buffer_list): Remove; unused.
13670 * frame.h (other_visible_frames): Remove decl.
13671 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
13672 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
13673 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
13674 if HAVE_GPM.
13675 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
13676 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
13677 Define only if HAVE_GPM.
13678 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
13679 (update_hints_inhibit): Remove; never set. All uses removed.
13680 * widgetprv.h (emacsFrameClassRec): Remove decl.
13681 * window.c (delete_deletable_window): Now returns void, since it
13682 wasn't returning anything.
13683 (compare_window_configurations): Remove unused locals.
13684 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
13685 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
4475bec4
PE
13686 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
13687 the same widths as pointers. This follows up on the 2011-05-06 patch.
13688 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
13689 * xterm.h: Likewise.
13690 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
13691
1384b89e
JB
136922011-06-12 Juanma Barranquero <lekktu@gmail.com>
13693
13694 * makefile.w32-in: Update dependencies.
13695 (LISP_H): Add lib/intprops.h.
13696
1100a63c
CY
136972011-06-11 Chong Yidong <cyd@stupidchicken.com>
13698
13699 * image.c (gif_load): Add animation frame delay to the metadata.
13700 (syms_of_image): Use DEFSYM. New symbol `delay'.
13701
6198ccd0
MR
137022011-06-11 Martin Rudalics <rudalics@gmx.at>
13703
13704 * window.c (delete_deletable_window): Re-add.
13705 (Fset_window_configuration): Rewrite to handle dead buffers and
13706 consequently deletable windows.
13707 (window_tree, Fwindow_tree): Remove. Supply functionality in
13708 window.el.
13709 (compare_window_configurations): Simplify code.
13710
b6e3633c
AS
137112011-06-11 Andreas Schwab <schwab@linux-m68k.org>
13712
1ab0dee5
AS
13713 * image.c (imagemagick_load_image): Fix type mismatch.
13714 (Fimagemagick_types): Likewise.
13715
b6e3633c
AS
13716 * window.h (replace_buffer_in_windows): Declare.
13717
9397e56f
MR
137182011-06-11 Martin Rudalics <rudalics@gmx.at>
13719
13720 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
13721 Qclone_number. Remove external declaration of Qdelete_window.
13722 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
13723 code.
640c8776
SM
13724 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
13725 Run Qbuffer_list_update_hook if allowed.
9397e56f
MR
13726 (Fother_buffer): Rewrite doc-string. Major rewrite for new
13727 buffer list implementation.
13728 (other_buffer_safely): New function.
13729 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
13730 calls to replace_buffer_in_windows and
13731 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
13732 if allowed.
13733 (record_buffer): Inhibit quitting and rewrite using quittable
13734 functions. Run Qbuffer_list_update_hook if allowed.
13735 (Frecord_buffer, Funrecord_buffer): New functions.
640c8776
SM
13736 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
13737 Move switch-to-buffer to window.el.
9397e56f
MR
13738 (bury-buffer): Move to window.el.
13739 (Vbuffer_list_update_hook): New variable.
13740
13741 * lisp.h (other_buffer_safely): Add prototype in buffer.c
13742 section.
13743
13744 * window.h (resize_frame_windows): Move up in code.
13745 (Fwindow_frame): Remove EXFUN.
13746 (replace_buffer_in_all_windows): Remove prototype.
13747 (replace_buffer_in_windows_safely): Add prototype.
13748
13749 * window.c: Declare Qdelete_window static again. Move down
13750 declaration of select_count.
13751 (Fnext_window, Fprevious_window): Rewrite doc-strings.
13752 (Fother_window): Move to window.el.
13753 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
13754 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
13755 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
13756 window.el.
13757 (replace_buffer_in_windows): Implement by calling
13758 Qreplace_buffer_in_windows.
13759 (replace_buffer_in_all_windows): Remove with some functionality
13760 moved into replace_buffer_in_windows_safely.
13761 (replace_buffer_in_windows_safely): New function.
13762 (select_window_norecord, select_frame_norecord): Move in front
13763 of run_window_configuration_change_hook. Remove now obsolete
13764 declarations.
640c8776
SM
13765 (Fset_window_buffer): Rewrite doc-string.
13766 Call Qrecord_window_buffer.
9397e56f
MR
13767 (keys_of_window): Move binding for other-window to window.el.
13768
b50691aa
CY
137692011-06-11 Chong Yidong <cyd@stupidchicken.com>
13770
13771 * dispextern.h (struct image): Replace data member, whose int_val
13772 and ptr_val fields were not used by anything, with a single
13773 lisp_val object.
13774
13775 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
13776 (gif_clear_image, gif_load, imagemagick_load_image)
13777 (gs_clear_image, gs_load): Callers changed.
13778
3f754b86
PE
137792011-06-10 Paul Eggert <eggert@cs.ucla.edu>
13780
cca69397
PE
13781 * buffer.h: Include <time.h>, for time_t.
13782 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
13783
109e28d0
PE
13784 Fix minor problems found by static checking.
13785
60737f02
PE
13786 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
13787
4b66faf3
PE
13788 Make identifiers static if they are not used in other modules.
13789 * data.c (Qcompiled_function, Qframe, Qvector):
13790 * image.c (QimageMagick, Qsvg):
13791 * minibuf.c (Qmetadata):
13792 * window.c (resize_window_check, resize_root_window): Now static.
13793 * window.h (resize_window_check, resize_root_window): Remove decls.
13794
109e28d0
PE
13795 * window.c (window_deletion_count, delete_deletable_window):
13796 Remove; unused.
46a4ce9e
PE
13797 (window_body_lines): Now static.
13798 (Fdelete_other_windows_internal): Mark vars as initialized.
13799 Make sure 'resize_failed' is initialized.
13800 (run_window_configuration_change_hook): Rename local to avoid shadowing.
13801 (resize_window_apply): Remove unused local.
13802 * window.h (delete_deletable_window): Remove decl.
13803
109e28d0 13804 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
33290528
PE
13805 (imagemagick_load_image): Fix pointer signedness problem by changing
13806 last arg from unsigned char * to char *. All uses changed.
13807 Also, fix a local for similar reasons.
13808 Remove unused locals. Remove locals to avoid shadowing.
13809 (fn_rsvg_handle_free): Remove; unused.
13810 (svg_load, svg_load_image): Fix pointer signedness problem.
f7e13da3 13811 (imagemagick_load_image): Don't use garbage pointer image_wand.
33290528 13812
3f754b86
PE
13813 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
13814
2547adb1
CY
138152011-06-10 Chong Yidong <cyd@stupidchicken.com>
13816
13817 * image.c (gif_load): Fix omitted cast error introduced by
13818 2011-06-06 change.
13819
2c8e37d4
MR
138202011-06-10 Martin Rudalics <rudalics@gmx.at>
13821
13822 * window.h (resize_proportionally, orig_total_lines)
13823 (orig_top_line): Remove from window structure.
13824 (set_window_height, set_window_width, change_window_heights)
13825 (Fdelete_window): Remove prototypes.
13826 (resize_frame_windows): Remove duplicate declaration.
13827
440a42e3
EZ
138282011-06-10 Eli Zaretskii <eliz@gnu.org>
13829
13830 * window.h (resize_frame_windows, resize_window_check)
13831 (delete_deletable_window, resize_root_window)
13832 (resize_frame_windows): Declare prototypes.
13833
13834 * window.c (resize_window_apply): Make definition be "static" to
13835 match the prototype.
13836
562dd5e9
MR
138372011-06-10 Martin Rudalics <rudalics@gmx.at>
13838
13839 * window.c: Remove declarations of Qwindow_size_fixed,
13840 window_min_size_1, window_min_size_2, window_min_size,
13841 size_window, window_fixed_size_p, enlarge_window, delete_window.
13842 Remove static from declaration of Qdelete_window, it's
13843 temporarily needed by Fbury_buffer.
13844 (replace_window): Don't assign orig_top_line and
13845 orig_total_lines.
13846 (Fdelete_window, delete_window): Remove. Window deletion is
13847 handled by window.el.
640c8776
SM
13848 (window_loop): Remove DELETE_OTHER_WINDOWS case.
13849 Replace Fdelete_window calls with calls to Qdelete_window.
562dd5e9
MR
13850 (Fdelete_other_windows): Remove. Deleting other windows is
13851 handled by window.el.
13852 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
13853 handled in window.el.
13854 (window_min_size_2, window_min_size_1, window_min_size): Remove.
13855 Window minimum sizes are handled in window.el.
13856 (shrink_windows, size_window, set_window_height)
13857 (set_window_width, change_window_heights, window_height)
13858 (window_width, CURBEG, CURSIZE, enlarge_window)
13859 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
13860 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
13861 handled in window.el.
13862 (make_dummy_parent): Rename to make_parent_window and give it a
13863 second argument horflag.
13864 (make_window): Don't set resize_proportionally any more.
13865 (Fsplit_window): Remove. Windows are split in window.el.
13866 (save_restore_action, save_restore_orig_size)
13867 (shrink_window_lowest_first, save_restore_orig_size): Remove.
13868 Resize mini windows in window.el.
13869 (grow_mini_window, shrink_mini_window): Implement by calling
13870 Qresize_root_window_vertically, resize_window_check and
13871 resize_window_apply.
640c8776
SM
13872 (saved_window, Fset_window_configuration, save_window_save):
13873 Do not handle orig_top_line, orig_total_lines, and
562dd5e9
MR
13874 resize_proportionally.
13875 (window_min_height, window_min_width): Move to window.el.
13876 (keys_of_window): Move bindings for delete-other-windows,
13877 split-window, delete-window and enlarge-window to window.el.
13878
13879 * buffer.c: Temporarily extern Qdelete_window.
13880 (Fbury_buffer): Temporarily call Qdelete_window instead of
13881 Fdelete_window (Fbury_buffer will move to window.el soon).
13882
13883 * frame.c (set_menu_bar_lines_1): Remove code handling
13884 orig_top_line and orig_total_lines.
13885
13886 * dispnew.c (adjust_frame_glyphs_initially): Don't use
13887 set_window_height but set heights directly.
13888 (change_frame_size_1): Use resize_frame_windows.
13889
13890 * xdisp.c (init_xdisp): Don't use set_window_height but set
13891 heights directly.
13892
640c8776
SM
13893 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
13894 Use resize_frame_windows instead of change_window_heights and run
562dd5e9
MR
13895 run_window_configuration_change_hook.
13896
13897 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
13898 instead of change_window_heights and run
13899 run_window_configuration_change_hook.
13900
1a13852e
MR
139012011-06-09 Martin Rudalics <rudalics@gmx.at>
13902
13903 * window.c (replace_window): Rename second argument REPLACEMENT to
13904 NEW. New third argument SETFLAG. Rewrite.
13905 (delete_window, make_dummy_parent): Call replace_window with
13906 third argument 1.
13907 (window_list_1): Move down in code.
13908 (run_window_configuration_change_hook): Move set_buffer part
13909 before select_frame_norecord part in order to unwind correctly.
13910 Rename count1 to count.
13911 (recombine_windows, delete_deletable_window, resize_root_window)
13912 (Fdelete_other_windows_internal)
13913 (Frun_window_configuration_change_hook, make_parent_window)
13914 (resize_window_check, resize_window_apply, Fresize_window_apply)
13915 (resize_frame_windows, Fsplit_window_internal)
640c8776
SM
13916 (Fdelete_window_internal, Fresize_mini_window_internal):
13917 New functions.
1a13852e
MR
13918 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
13919
f3d1777e
MR
139202011-06-08 Martin Rudalics <rudalics@gmx.at>
13921
496e208e
MR
13922 * window.h (window): Add some new members to window structure -
13923 normal_lines, normal_cols, new_total, new_normal, clone_number,
13924 splits, nest, prev_buffers, next_buffers.
13925 (WINDOW_TOTAL_SIZE): Move here from window.c.
b9e809c2 13926 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
496e208e 13927
f3d1777e
MR
13928 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
13929 Remove.
496e208e
MR
13930 (make_dummy_parent): Set new members of windows structure.
13931 (make_window): Move down in code. Handle new members of window
13932 structure.
13933 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
13934 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
13935 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
13936 (Fset_window_prev_buffers, Fwindow_next_buffers)
640c8776
SM
13937 (Fset_window_next_buffers, Fset_window_clone_number):
13938 New functions.
496e208e
MR
13939 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
13940 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
13941 Doc-string fixes.
13942 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
13943 Argument WINDOW can be now internal window too.
13944 (Fwindow_use_time): Move up in code.
13945 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
13946 Rewrite doc-string.
13947 (Fset_window_configuration, saved_window)
13948 (Fcurrent_window_configuration, save_window_save): Handle new
13949 members of window structure.
b9e809c2
MR
13950 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
13951 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
13952 (syms_of_window): New Lisp objects Qrecord_window_buffer,
13953 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
13954 Qget_mru_window, Qresize_root_window,
13955 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
13956 Qauto_buffer_name; staticpro them.
f3d1777e 13957
abde8f8c
MR
139582011-06-07 Martin Rudalics <rudalics@gmx.at>
13959
13960 * window.c (Fwindow_total_size, Fwindow_left_column)
13961 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
13962 (Fwindow_list_1): New functions.
13963 (window_box_text_cols): Replace with window_body_cols.
640c8776
SM
13964 (Fwindow_width, Fscroll_left, Fscroll_right):
13965 Use window_body_cols instead of window_box_text_cols.
13966 (delete_window, Fset_window_configuration):
13967 Call delete_all_subwindows with window as argument.
fa8a67e6
MR
13968 (delete_all_subwindows): Take a window as argument and not a
13969 structure. Rewrite.
190b47e6
MR
13970 (window_loop): Remove handling of GET_LRU_WINDOW and
13971 GET_LARGEST_WINDOW.
13972 (Fget_lru_window, Fget_largest_window): Move to window.el.
abde8f8c
MR
13973
13974 * window.h: Extern window_body_cols instead of
fa8a67e6
MR
13975 window_box_text_cols. delete_all_subwindows now takes a
13976 Lisp_Object as argument.
abde8f8c 13977
640c8776
SM
13978 * indent.c (compute_motion, Fcompute_motion):
13979 Use window_body_cols instead of window_box_text_cols.
abde8f8c 13980
fa8a67e6
MR
13981 * frame.c (delete_frame): Call delete_all_subwindows with root
13982 window as argument.
13983
a54e3482
DC
139842011-06-07 Daniel Colascione <dan.colascione@gmail.com>
13985
13986 * fns.c (Fputhash): Document return value.
13987
60002bf5
CY
139882011-06-06 Chong Yidong <cyd@stupidchicken.com>
13989
13990 * image.c (gif_load): Implement gif89a spec "no disposal" method.
13991
0c671da6 139922011-06-06 Paul Eggert <eggert@cs.ucla.edu>
ccd9a01a 13993
b862a52a 13994 Cons<->int and similar integer overflow fixes (Bug#8794).
77984278 13995
be44ca6c
PE
13996 Check for overflow when converting integer to cons and back.
13997 * charset.c (Fdefine_charset_internal, Fdecode_char):
13998 Use cons_to_unsigned to catch overflow.
13999 (Fencode_char): Use INTEGER_TO_CONS.
14000 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
14001 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
14002 * data.c (long_to_cons, cons_to_long): Remove.
14003 (cons_to_unsigned, cons_to_signed): New functions.
14004 These signal an error for invalid or out-of-range values.
14005 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
14006 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
14007 * font.c (Ffont_variation_glyphs):
14008 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
14009 * lisp.h: Include <intprops.h>.
14010 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
14011 (cons_to_signed, cons_to_unsigned): New decls.
14012 (long_to_cons, cons_to_long): Remove decls.
14013 * undo.c (record_first_change): Use INTEGER_TO_CONS.
14014 (Fprimitive_undo): Use CONS_TO_INTEGER.
14015 * xfns.c (Fx_window_property): Likewise.
14016 * xselect.c: Include <limits.h>.
14017 (x_own_selection, selection_data_to_lisp_data):
14018 Use INTEGER_TO_CONS.
14019 (x_handle_selection_request, x_handle_selection_clear)
14020 (x_get_foreign_selection, Fx_disown_selection_internal)
14021 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
14022 (lisp_data_to_selection_data): Use cons_to_unsigned.
14023 (x_fill_property_data): Use cons_to_signed.
14024 Report values out of range.
14025
d1f3d2af
PE
14026 Check for buffer and string overflow more precisely.
14027 * buffer.h (BUF_BYTES_MAX): New macro.
14028 * lisp.h (STRING_BYTES_MAX): New macro.
14029 * alloc.c (Fmake_string):
14030 * character.c (string_escape_byte8):
14031 * coding.c (coding_alloc_by_realloc):
14032 * doprnt.c (doprnt):
14033 * editfns.c (Fformat):
14034 * eval.c (verror):
14035 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
14036 since they may not be the same number.
14037 * editfns.c (Finsert_char):
14038 * fileio.c (Finsert_file_contents):
14039 Likewise for BUF_BYTES_MAX.
14040
dd52fcea
PE
14041 * image.c: Use ptrdiff_t, not int, for sizes.
14042 (slurp_file): Switch from int to ptrdiff_t.
14043 All uses changed.
14044 (slurp_file): Check that file size fits in both size_t (for
14045 malloc) and ptrdiff_t (for sanity and safety).
14046
7f9bbdbb
PE
14047 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
14048 if b->modtime has its maximal value.
14049
dfe18f82
PE
14050 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
14051
84acfcf0
PE
14052 Don't assume time_t can fit into int.
14053 * buffer.h (struct buffer.modtime): Now time_t, not int.
14054 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
14055 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
14056
ccd9a01a
PE
14057 Minor fixes for signed vs unsigned integers.
14058 * character.h (MAYBE_UNIFY_CHAR):
14059 * charset.c (maybe_unify_char):
14060 * keyboard.c (read_char, reorder_modifiers):
14061 XINT -> XFASTINT, since the integer must be nonnegative.
14062 * ftfont.c (ftfont_spec_pattern):
14063 * keymap.c (access_keymap, silly_event_symbol_error):
14064 XUINT -> XFASTINT, since the integer must be nonnegative.
14065 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
14066 since it makes no difference and we prefer signed.
14067 * keyboard.c (record_char): Use XUINT when all the neighbors do.
14068 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
14069 nonnegative.
14070
d6d100dd
SM
140712011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
14072
14073 * window.h (Fwindow_frame): Declare.
14074
2b6148e4
PE
140752011-06-06 Paul Eggert <eggert@cs.ucla.edu>
14076
14077 * alloc.c: Simplify handling of large-request failures (Bug#8800).
14078 (SPARE_MEMORY): Always define.
14079 (LARGE_REQUEST): Remove.
14080 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
14081
f230ecc9
MR
140822011-06-06 Martin Rudalics <rudalics@gmx.at>
14083
727e958e
MR
14084 * lisp.h: Move EXFUNS for Fframe_root_window,
14085 Fframe_first_window and Fset_frame_selected_window to window.h.
14086
14087 * window.h: Move EXFUNS for Fframe_root_window,
14088 Fframe_first_window and Fset_frame_selected_window here from
14089 lisp.h.
14090
14091 * frame.c (Fwindow_frame, Fframe_first_window)
14092 (Fframe_root_window, Fframe_selected_window)
14093 (Fset_frame_selected_window): Move to window.c.
14094 (Factive_minibuffer_window): Move to minibuf.c.
14095 (Fother_visible_frames_p): New function.
14096
14097 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
14098
f230ecc9
MR
14099 * window.c (decode_window, decode_any_window): Move up in code.
14100 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
14101 (inhibit_frame_unsplittable): Remove unused variable.
bf60a96b
MR
14102 (Fwindow_buffer): Move up and rewrite doc-string.
14103 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
14104 (Fwindow_prev): New functions.
727e958e
MR
14105 (Fwindow_frame): Move here from frame.c. Accept any window as
14106 argument.
14107 (Fframe_root_window, Fframe_first_window)
14108 (Fframe_selected_window): Move here from frame.c. Accept frame
14109 or arbitrary window as argument. Update doc-strings.
14110 (Fminibuffer_window): Move up in code.
14111 (Fwindow_minibuffer_p): Move up in code and simplify.
d6d100dd
SM
14112 (Fset_frame_selected_window): Move here from frame.c.
14113 Marginal rewrite.
727e958e
MR
14114 (Fselected_window, select_window, Fselect_window): Move up in
14115 code. Minor doc-string fixes.
f230ecc9 14116
4d09bcf6
PE
141172011-06-06 Paul Eggert <eggert@cs.ucla.edu>
14118
14119 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
14120 Do not assume that spare memory exists; that assumption is valid
14121 only if SYSTEM_MALLOC.
14122 (LARGE_REQUEST): New macro, so that the issue of large requests
14123 is separated from the issue of spare memory.
14124
810928a2
AS
141252011-06-05 Andreas Schwab <schwab@linux-m68k.org>
14126
172418ad
AS
14127 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
14128 format. (Bug#8806)
14129
43f862f7
AS
14130 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
14131
810928a2
AS
14132 * xfns.c (x_set_scroll_bar_default_width): Move declarations
14133 before statements.
14134
a059fe24
JD
141352011-06-05 Jan Djärv <jan.h.d@swipnet.se>
14136
14137 * gtkutil.c (xg_get_default_scrollbar_width): New function.
14138
14139 * gtkutil.h: Declare xg_get_default_scrollbar_width.
14140
14141 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
14142 min width by calling x_set_scroll_bar_default_width (Bug#8505).
14143
989bf368
JB
141442011-06-05 Juanma Barranquero <lekktu@gmail.com>
14145
14146 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
14147
4b80f674
CY
141482011-06-04 Chong Yidong <cyd@stupidchicken.com>
14149
14150 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
14151 (x_clipboard_manager_save): Add return value.
d6d100dd
SM
14152 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
14153 New error handlers.
4b80f674
CY
14154 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
14155 Obey Vx_select_enable_clipboard_manager. Catch errors in
14156 x_clipboard_manager_save (Bug#8779).
14157 (Vx_select_enable_clipboard_manager): New variable.
de65b42c 14158 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
4b80f674 14159
99a33b77 141602011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
8b3115e7
DN
14161
14162 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
14163
99a33b77 141642011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14eca62f
YM
14165
14166 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
14167 in the current matrix if keep_current_p is non-zero.
14168
8264569d
EZ
141692011-06-04 Eli Zaretskii <eliz@gnu.org>
14170
14171 * bidi.c (bidi_level_of_next_char): Fix last change.
14172
57f97249
EZ
141732011-06-03 Eli Zaretskii <eliz@gnu.org>
14174
fec2107c 14175 Support bidi reordering of text covered by display properties.
57f97249 14176
fec2107c
EZ
14177 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
14178 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
14179 (bidi_cache_search, bidi_cache_iterator_state)
14180 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
d6d100dd
SM
14181 (bidi_level_of_next_char, bidi_move_to_visually_next):
14182 Support character positions inside a run of characters covered by a
fec2107c
EZ
14183 display string.
14184 (bidi_paragraph_init, bidi_resolve_explicit_1)
14185 (bidi_level_of_next_char): Call bidi_fetch_char and
14186 bidi_fetch_char_advance instead of FETCH_CHAR and
14187 FETCH_CHAR_ADVANCE.
14188 (bidi_init_it): Initialize new members.
14189 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
14190 definitions.
14191 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
14192 instead of using explicit *_CHAR codes.
d6d100dd
SM
14193 (bidi_resolve_explicit, bidi_resolve_weak):
14194 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
fec2107c
EZ
14195 bidirectional text is supported only in multibyte buffers.
14196 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
14197 it to initialize the frame_window_p member of struct bidi_it.
14198 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
14199 (bidi_resolve_explicit, bidi_resolve_weak)
14200 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
14201 bidi_it->nchars is non-positive.
14202 (bidi_level_of_next_char): Don't try to lookup the cache for the
14203 next/previous character if nothing is cached there yet, or if we
14204 were just reseat()'ed to a new position.
c40e2fb2 14205
0e14fe90
EZ
14206 * xdisp.c (set_cursor_from_row): Set start and stop points
14207 according to the row's direction when priming the loop that looks
14208 for the glyph on which to display cursor.
14209 (single_display_spec_intangible_p): Function deleted.
14210 (display_prop_intangible_p): Reimplement to call
14211 handle_display_spec instead of single_display_spec_intangible_p.
d6d100dd
SM
14212 Accept 3 additional arguments needed by handle_display_spec.
14213 This fixes incorrect cursor motion across display property with complex
0e14fe90
EZ
14214 values: lists, `(when COND...)' forms, etc.
14215 (single_display_spec_string_p): Support property values that are
14216 lists with the argument STRING its top-level element.
14217 (display_prop_string_p): Fix the condition for processing a
14218 property that is a list to be consistent with handle_display_spec.
fec2107c 14219 (handle_display_spec): New function, refactored from the
fc6f18ce
EZ
14220 last portion of handle_display_prop.
14221 (compute_display_string_pos): Accept additional argument
14222 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
14223 value of a `display' property is a "replacing spec".
14224 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
14225 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
14226 the display property, but just return a value indicating whether
14227 the display property will replace the characters it covers.
14228 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
14229 frame_window_p members of struct bidi_it.
d6d100dd
SM
14230 (compute_display_string_pos, compute_display_string_end):
14231 New functions.
fec2107c
EZ
14232 (push_it): Accept second argument POSITION, where pop_it should
14233 jump to continue iteration.
14234 (reseat_1): Initialize bidi_it.disp_pos.
fc6f18ce 14235
fec2107c
EZ
14236 * keyboard.c (adjust_point_for_property): Adjust the call to
14237 display_prop_intangible_p to its new signature.
fc6f18ce
EZ
14238
14239 * dispextern.h (struct bidi_it): New member frame_window_p.
fec2107c
EZ
14240 (bidi_init_it): Update prototypes.
14241 (display_prop_intangible_p): Update prototype.
d6d100dd
SM
14242 (compute_display_string_pos, compute_display_string_end):
14243 Declare prototypes.
fec2107c
EZ
14244 (struct bidi_it): New members nchars and disp_pos. ch_len is now
14245 EMACS_INT.
fc6f18ce 14246
40087514 142472011-06-02 Paul Eggert <eggert@cs.ucla.edu>
0de4bb68 14248
57f53182
PE
14249 Malloc failure behavior now depends on size of allocation.
14250 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
14251 * lisp.h: Change signatures accordingly.
14252 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
14253 All callers changed. (Bug#8762)
14254
14255 * gnutls.c: Use Emacs's memory allocators.
14256 Without this change, the gnutls library would invoke malloc etc.
14257 directly, which causes problems on non-SYNC_INPUT hosts, and which
14258 runs afoul of improving memory_full behavior. (Bug#8761)
14259 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
14260 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
14261 xfree instead of the default malloc, realloc, free.
14262 (Fgnutls_boot): No need to check for memory allocation failure,
14263 since xmalloc does that for us.
14264
ac32cd99 14265 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
3870d916
PE
14266 * category.c (hash_get_category_set):
14267 * ccl.c (ccl_driver):
14268 * charset.c (Fdefine_charset_internal):
14269 * charset.h (struct charset.hash_index):
14270 * composite.c (get_composition_id, gstring_lookup_cache)
14271 (composition_gstring_put_cache):
14272 * composite.h (struct composition.hash_index):
14273 * dispextern.h (struct image.hash):
14274 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
14275 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
14276 (hashfn_equal, hashfn_user_defined, make_hash_table)
14277 (maybe_resize_hash_table, hash_lookup, hash_put)
14278 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
14279 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
14280 (Fsxhash, Fgethash, Fputhash, Fmaphash):
14281 * image.c (make_image, search_image_cache, lookup_image)
14282 (xpm_put_color_table_h):
14283 * lisp.h (struct Lisp_Hash_Table):
0de4bb68 14284 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
ac389d0c 14285 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
3870d916 14286 for hashes and hash indexes, instead of 'unsigned' and 'int'.
40087514
PE
14287 * alloc.c (allocate_vectorlike):
14288 Check for overflow in vector size calculations.
14289 * ccl.c (ccl_driver):
14290 Check for overflow when converting EMACS_INT to int.
0de4bb68
PE
14291 * fns.c, image.c: Remove unnecessary static decls that would otherwise
14292 need to be updated by these changes.
40087514
PE
14293 * fns.c (make_hash_table, maybe_resize_hash_table):
14294 Check for integer overflow with large hash tables.
0de4bb68
PE
14295 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
14296 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
14297 (SXHASH_REDUCE): New macro.
14298 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
14299 Use it instead of discarding useful hash info with large hash values.
14300 (sxhash_float): New function.
14301 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
14302 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
40087514
PE
14303 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
14304 Rewrite to use FIXNUM_BITS, as this simplifies things.
0de4bb68
PE
14305 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
14306 Adjust signatures to match updated version of code.
14307 (consing_since_gc): Now EMACS_INT, since a single hash table can
14308 use more than INT_MAX bytes.
14309
698d32e2
DN
143102011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
14311
14312 Make it possible to build with GCC-4.6+ -O2 -flto.
14313
14314 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
14315
fd6fa53f
SM
143162011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
14317
14318 * minibuf.c (get_minibuffer, read_minibuf_unwind):
14319 Call minibuffer-inactive-mode.
14320
864db017
JB
143212011-05-31 Juanma Barranquero <lekktu@gmail.com>
14322
14323 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
14324 Update dependencies.
14325
2ad0baf4
DN
143262011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14327
14328 * data.c (init_data): Remove code for UTS, this system is not
14329 supported anymore.
14330
4fcc2638
DN
143312011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14332
14333 Don't force ./temacs to start in terminal mode.
14334
14335 * frame.c (make_initial_frame): Initialize faces in all cases, not
14336 only when CANNOT_DUMP is defined.
14337 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
14338
c56e0fd5
DN
143392011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14340
14341 * dispnew.c (add_window_display_history): Use const for the string
14342 pointer. Remove declaration, not needed.
14343
333d54da 143442011-05-31 Paul Eggert <eggert@cs.ucla.edu>
9cf9f756 14345
55d4c1b2 14346 Use 'inline', not 'INLINE'.
333d54da 14347 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
55d4c1b2
PE
14348 * alloc.c, fontset.c (INLINE): Remove.
14349 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
14350 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
14351 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
14352 * gmalloc.c (register_heapinfo): Use inline unconditionally.
14353 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
14354
738db178
DN
143552011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
14356
14357 Make it possible to run ./temacs.
14358
14359 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
14360 syms_of_callproc does the same thing. Remove test for
14361 "initialized", do it in the caller.
14362 * emacs.c (main): Avoid calling set_initial_environment when dumping.
14363
620c53a6
SM
143642011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
14365
14366 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
14367 (read_minibuf): Use get_minibuffer.
14368 (syms_of_minibuf): Use DEFSYM.
14369 (Qmetadata): New var.
14370 * data.c (Qbuffer): Don't make it static.
14371 (syms_of_data): Use DEFSYM.
14372
e003a292
PE
143732011-05-31 Paul Eggert <eggert@cs.ucla.edu>
14374
14375 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
14376 (CCL_CODE_MIN): New macro.
14377
ed008a6d
PE
143782011-05-30 Paul Eggert <eggert@cs.ucla.edu>
14379
3687c2ef
PE
14380 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
14381
ed008a6d
PE
14382 * eval.c (Qdebug): Now static.
14383 * lisp.h (Qdebug): Remove decl. This reverts a part of the
14384 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
14385 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
14386
d66c4c7c
CY
143872011-05-29 Chong Yidong <cyd@stupidchicken.com>
14388
14389 * image.c: Various fixes to ImageMagick code comments.
14390 (Fimagemagick_types): Doc fix.
14391
5fbc2025
PE
143922011-05-29 Paul Eggert <eggert@cs.ucla.edu>
14393
0196f88a
PE
14394 Minor fixes prompted by GCC 4.6.0 warnings.
14395
14396 * xselect.c (converted_selections, conversion_fail_tag): Now static.
14397
5fbc2025
PE
14398 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
14399 (x_clipboard_manager_save_all): Move extern decl to ...
14400 * xterm.h: ... here, so that it can be checked for consistency.
14401
1dd3c2d9
CY
144022011-05-29 Chong Yidong <cyd@stupidchicken.com>
14403
14404 * xselect.c (x_clipboard_manager_save_frame)
14405 (x_clipboard_manager_save_all): New functions.
14406 (Fx_clipboard_manager_save): Lisp function deleted.
14407
14408 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
14409 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
14410
14411 * xterm.h: Update prototype.
14412
5ba6571d
WX
144132011-05-28 William Xu <william.xwl@gmail.com>
14414
14415 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
14416 exiting (Bug#8239).
14417
3eaff834
JM
144182011-05-28 Jim Meyering <meyering@redhat.com>
14419
e1900994 14420 Avoid a sign-extension bug in crypto_hash_function.
3eaff834
JM
14421 * fns.c (to_uchar): Define.
14422 (crypto_hash_function): Use it to convert some newly-signed
14423 variables to unsigned, to avoid sign-extension bugs. For example,
14424 without this change, (md5 "truc") would evaluate to
14425 45723a2aff78ff4fff7fff1114760e62 rather than the expected
14426 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
e1900994 14427 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
3eaff834 14428
0f6990a7
PE
144292011-05-27 Paul Eggert <eggert@cs.ucla.edu>
14430
14431 Integer overflow fixes.
c8a9ca5a 14432
08686060
PE
14433 * dbusbind.c: Serial number integer overflow fixes.
14434 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
08686060
PE
14435 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
14436 to hold a serial number that is too large for a fixnum.
14437 (Fdbus_method_return_internal, Fdbus_method_error_internal):
14438 Check for serial numbers out of range. Decode any serial number
59568bf0 14439 that was so large that it became a float. (Bug#8722)
08686060 14440
2d1fc3c7
PE
14441 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
14442 (Fdbus_call_method, Fdbus_call_method_asynchronously):
14443 Use XFASTINT rather than XUINT when numbers are nonnegative.
14444 (xd_append_arg, Fdbus_method_return_internal):
14445 (Fdbus_method_error_internal): Likewise. Also, for unsigned
14446 arguments, check that Lisp number is nonnegative, rather than
59568bf0 14447 silently wrapping negative numbers around. (Bug#8722)
30217ff0 14448 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
59568bf0 14449 (Bug#8722)
2d1fc3c7 14450
c8a9ca5a
PE
14451 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
14452
519e1d69
PE
14453 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
14454
6df6ae42 14455 ccl: Add integer overflow checks.
30569699
PE
14456 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
14457 (IN_INT_RANGE): New macros.
14458 (ccl_driver): Use them to check for integer overflow when
14459 decoding a CCL program. Many of the new checks are whether XINT (x)
14460 fits in int; it doesn't always, on 64-bit hosts. The new version
14461 doesn't catch all possible integer overflows, but it's an
847044ea 14462 improvement. (Bug#8719)
30569699 14463
c11285dc
PE
14464 * alloc.c (make_event_array): Use XINT, not XUINT.
14465 There's no need for unsigned here.
14466
fdccd48e
PE
14467 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
14468 This follows up to the 2011-05-06 change that substituted uintptr_t
14469 for EMACS_INT. This case wasn't caught back then.
14470
37910ab2
PE
14471 Rework Fformat to avoid integer overflow issues.
14472 * editfns.c: Include <float.h> unconditionally, as it's everywhere
14473 now (part of C89). Include <verify.h>.
14474 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
14475 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
14476 (Fformat): Avoid the prepass trying to compute sizes; it was only
14477 approximate and thus did not catch overflow reliably. Instead, walk
14478 through the format just once, formatting and computing sizes as we go,
14479 checking for integer overflow at every step, and allocating a larger
14480 buffer as needed. Keep track separately whether the format is
14481 multibyte. Keep only the most-recently calculated precision, rather
14482 than them all. Record whether each argument has been converted to
14483 string. Use EMACS_INT, not int, for byte and char and arg counts.
14484 Support field widths and precisions larger than INT_MAX. Avoid
14485 sprintf's undefined behavior with conversion specifications such as %#d
14486 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
14487 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
14488 formatting out-of-range floating point numbers with int
9173deec 14489 formats. (Bug#8668)
37910ab2 14490
2e6578fb
PE
14491 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
14492
0ae6bdee
PE
14493 * data.c: Avoid integer truncation in expressions involving floats.
14494 * data.c: Include <intprops.h>.
14495 (arith_driver): When there's an integer overflow in an expression
14496 involving floating point, convert the integers to floating point
14497 so that the resulting value does not suffer from catastrophic
14498 integer truncation. For example, on a 64-bit host (* 4
14499 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
14500 Do not rely on undefined behavior after integer overflow.
14501
de883a70
PE
14502 merge count_size_as_multibyte, parse_str_to_multibyte
14503 * character.c, character.h (count_size_as_multibyte):
fd6fa53f 14504 Rename from parse_str_to_multibyte; all uses changed.
de883a70
PE
14505 Check for integer overflow.
14506 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
14507 since it's now a duplicate of the other. This is more of
14508 a character than a buffer op, so better that it's in character.c.
14509 * fns.c, print.c: Adjust to above changes.
14510
2ff916cb
PE
145112011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
14512
14513 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
14514
f1b54466
PE
145152011-05-27 Paul Eggert <eggert@cs.ucla.edu>
14516
fb1ac845
PE
14517 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
14518 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
14519 (x_clipboard_manager_save): Now static.
14520 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
14521
f1b54466
PE
14522 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
14523 (crypto_hash_function): Now static.
14524 Fix pointer signedness problems. Avoid unnecessary initializations.
14525
a9f737ee
CY
145262011-05-27 Chong Yidong <cyd@stupidchicken.com>
14527
14528 * termhooks.h (Vselection_alist): Make it terminal-local.
14529
14530 * terminal.c (create_terminal): Initialize it.
14531
14532 * xselect.c: Support for clipboard managers.
14533 (Vselection_alist): Move to termhooks.h as terminal-local var.
14534 (LOCAL_SELECTION): New macro.
14535 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
14536 (symbol_to_x_atom): Remove gratuitous arg.
14537 (x_handle_selection_request, lisp_data_to_selection_data)
14538 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
620c53a6
SM
14539 (x_own_selection, x_get_local_selection, x_convert_selection):
14540 New arg, specifying work frame. Use terminal-local Vselection_alist.
a9f737ee
CY
14541 (some_frame_on_display): Delete unused function.
14542 (Fx_own_selection_internal, Fx_get_selection_internal)
14543 (Fx_disown_selection_internal, Fx_selection_owner_p)
14544 (Fx_selection_exists_p): New optional frame arg.
14545 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
14546 (x_handle_selection_clear): Don't treat other terminals with the
14547 same keyboard specially. Use the terminal-local Vselection_alist.
14548 (x_clear_frame_selections): Use Frun_hook_with_args.
14549
14550 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
14551
14552 * xterm.h: Add support for those atoms.
14553
e067f0c1
CY
145542011-05-26 Chong Yidong <cyd@stupidchicken.com>
14555
14556 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
14557 (converted_selections, conversion_fail_tag): New global variables.
14558 (x_selection_request_lisp_error): Free the above.
14559 (x_get_local_selection): Remove unnecessary code.
14560 (x_reply_selection_request): Args changed; handle arbitrary array
620c53a6
SM
14561 of converted selections stored in converted_selections.
14562 Separate the XChangeProperty and SelectionNotify steps.
e067f0c1
CY
14563 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
14564 (x_convert_selection): New function.
14565 (x_handle_selection_event): Simplify.
14566 (x_get_foreign_selection): Don't ignore incoming requests while
14567 waiting for an answer; this will fail when we implement
14568 SAVE_TARGETS, and seems unnecessary anyway.
14569 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
14570 (Vx_sent_selection_functions): Doc fix.
14571
0f4aebc0
LL
145722011-05-26 Leo Liu <sdl.web@gmail.com>
14573
14574 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
14575
e61124cd
YM
145762011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14577
14578 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
14579
14580 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
14581 for fringe update if it has periodic bitmap.
ac389d0c 14582 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
e61124cd
YM
14583 and fringe_bitmap_periodic_p.
14584
14585 * fringe.c (get_fringe_bitmap_data): New function.
14586 (draw_fringe_bitmap_1, update_window_fringes): Use it.
14587 (update_window_fringes): Record periodicity of fringe bitmap in glyph
14588 row. Mark glyph row for fringe update if periodicity changed.
14589
14590 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
14591 for fringe update unless it has periodic bitmap.
14592
f16d9837
KH
145932011-05-25 Kenichi Handa <handa@m17n.org>
14594
14595 * xdisp.c (get_next_display_element): Set correct it->face_id for
14596 a static composition.
14597
e1b90ef6
LL
145982011-05-24 Leo Liu <sdl.web@gmail.com>
14599
14600 * deps.mk (fns.o):
14601 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
14602
14603 * fns.c (crypto_hash_function, Fsha1): New function.
14604 (Fmd5): Use crypto_hash_function.
14605 (syms_of_fns): Add Ssha1.
14606
7400048f
PE
146072011-05-22 Paul Eggert <eggert@cs.ucla.edu>
14608
14609 * gnutls.c: Remove unused macros.
14610 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
14611 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
14612 Remove macros that are defined and never used.
14613 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
14614
abb71cf4
CY
146152011-05-22 Chong Yidong <cyd@stupidchicken.com>
14616
14617 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
14618 (Fx_get_selection_internal): Minor cleanup.
14619 (Fx_own_selection_internal): Rename arguments for consistency with
14620 select.el.
14621
6307db39
PE
146222011-05-22 Paul Eggert <eggert@cs.ucla.edu>
14623
14624 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
14625
f3d4e0a4
CY
146262011-05-22 Chong Yidong <cyd@stupidchicken.com>
14627
14628 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
14629
4d8ade89
YM
146302011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14631
14632 * dispnew.c (scrolling_window): Don't exclude the case that the
14633 last enabled row in the desired matrix touches the bottom boundary.
14634
32078c8d
GM
146352011-05-21 Glenn Morris <rgm@gnu.org>
14636
14637 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
33cf345f
GM
14638 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
14639 and add some more files.
32078c8d 14640
7285dc67
EZ
146412011-05-20 Eli Zaretskii <eliz@gnu.org>
14642
14643 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
14644 report_file_error introduced by the change from 2011-05-07.
14645
89d1bd22
PE
146462011-05-20 Paul Eggert <eggert@cs.ucla.edu>
14647
14648 * systime.h (Time): Define only if emacs is defined.
14649 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
14650 where the include path doesn't have X11/X.h by default. See
14651 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
14652
cd394be1 146532011-05-20 Kenichi Handa <handa@m17n.org>
31bfc35c
KH
14654
14655 * composite.c (find_automatic_composition): Fix previous change.
14656
b9704ad9
GM
146572011-05-20 Glenn Morris <rgm@gnu.org>
14658
14659 * lisp.mk: New file, split from Makefile.in.
14660 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
14661 (shortlisp): Remove.
14662 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
14663
4a720484
GM
146642011-05-19 Glenn Morris <rgm@gnu.org>
14665
14666 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
14667 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
14668 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
14669 (lisp): Set the order to that of loadup.el.
14670 (shortlisp): Make it a copy of $lisp.
14671 (SOME_MACHINE_LISP): Remove.
14672 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
14673 Use just $shortlisp, not $SOME_MACHINE_LISP too.
14674
a28d4396
KH
146752011-05-18 Kenichi Handa <handa@m17n.org>
14676
14677 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
14678 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
14679 (find_automatic_composition): Mostly rewrite for efficiency.
14680
a2b1fa8e
JB
146812011-05-18 Juanma Barranquero <lekktu@gmail.com>
14682
14683 * makefile.w32-in: Update dependencies.
14684
8e1f5610
CS
146852011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
14686
14687 * menu.c: Include limits.h (fixes the MS-Windows build broken by
7d7d0045 14688 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
8e1f5610 14689
7025ee00 146902011-05-18 Paul Eggert <eggert@cs.ucla.edu>
cb93f9be 14691
cdfa6eab
PE
14692 Fix some integer overflow issues, such as string length overflow.
14693
06d6db33
PE
14694 * insdel.c (count_size_as_multibyte): Check for string overflow.
14695
2b4560a8
PE
14696 * character.c (lisp_string_width): Check for string overflow.
14697 Use EMACS_INT, not int, for string indexes and lengths; in
14698 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
14699 the resulting string length overflows an EMACS_INT; instead,
14700 report a string overflow if no precision given. When checking for
14701 precision exhaustion, use a check that cannot possibly have
14702 integer overflow. (Bug#8675)
14703 * character.h (lisp_string_width): Adjust to new signature.
14704
cb93f9be
PE
14705 * alloc.c (string_overflow): New function.
14706 (Fmake_string): Use it. This doesn't change behavior, but saves
14707 a few bytes and will simplify future changes.
14708 * character.c (string_escape_byte8): Likewise.
14709 * lisp.h (string_overflow): New decl.
14710
1a1f3366
PE
14711 Fixups, following up to the user-interface timestamp change.
14712 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
14713 for UI timestamps, instead of unsigned long.
9fbd6841
PE
14714 * msdos.c (mouse_get_pos): Likewise.
14715 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
1a1f3366
PE
14716 * w32gui.h (Time): Define by including "systime.h" rather than by
14717 declaring it ourselves. (Bug#8664)
14718
d4e3e4d3
PE
14719 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
14720 * image.c (clear_image_cache): Likewise.
14721
f6a24d19
PE
14722 * term.c (term_mouse_position): Don't assume time_t wraparound.
14723
08dc5ae6
PE
14724 Be more systematic about user-interface timestamps.
14725 Before, the code sometimes used 'Time', sometimes 'unsigned long',
620c53a6
SM
14726 and sometimes 'EMACS_UINT', to represent these timestamps.
14727 This change causes it to use 'Time' uniformly, as that's what X uses.
08dc5ae6
PE
14728 This makes the code easier to follow, and makes it easier to catch
14729 integer overflow bugs such as Bug#8664.
14730 * frame.c (Fmouse_position, Fmouse_pixel_position):
14731 Use Time, not unsigned long, for user-interface timestamps.
14732 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
14733 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
14734 * keyboard.h (last_event_timestamp): Likewise.
14735 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
14736 * menu.h (xmenu_show): Likewise.
14737 * term.c (term_mouse_position): Likewise.
14738 * termhooks.h (struct input_event.timestamp): Likewise.
14739 (struct terminal.mouse_position_hook): Likewise.
14740 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
14741 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
14742 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
14743 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
14744 what it was before.
14745 * menu.h, termhooks.h: Include "systime.h", for Time.
14746
8e55734a
PE
14747 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
14748 Don't assume that the difference between two unsigned long values
14749 can fit into an integer. At this point, we know button_down_time
14750 <= event->timestamp, so the difference must be nonnegative, so
14751 there's no need to cast the result if double-click-time is
14752 nonnegative, as it should be; check that it's nonnegative, just in
14753 case. This bug is triggered when events are more than 2**31 ms
86db42d2 14754 apart (about 25 days). (Bug#8664)
8e55734a 14755
841f1b75 14756 * xselect.c (last_event_timestamp): Remove duplicate decl.
6434756c 14757 (x_own_selection): Remove needless cast to unsigned long.
841f1b75 14758
3e26f69c
PE
14759 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
14760 that always fit in int. Use a sentinel instead of a counter, to
14761 avoid a temp and to allay GCC's concerns about possible int overflow.
d230cb74
PE
14762 * frame.h (struct frame): Use int for menu_bar_items_used
14763 instead of EMACS_INT, since it always fits in int.
3e26f69c 14764
5cc152c0
PE
14765 * menu.c (grow_menu_items): Check for int overflow.
14766
d89eb65e
PE
14767 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
14768
5235bd3e
PE
14769 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
14770 Before, the code was not consistent. These values cannot exceed
14771 2**31 - 1 so there's no need to make them unsigned.
14772 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
14773 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
14774 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
14775 as modifiers.
14776 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
14777
bc827e23
PE
14778 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
14779 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
14780 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
14781 presumably because the widths might not match.
14782
78eb494e
PE
14783 * window.c (size_window): Avoid needless test at loop start.
14784
04f2d78b
CB
147852011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
14786
14787 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
14788
d2fc7e3d 147892011-05-12 Drew Adams <drew.adams@oracle.com>
e531bdff
DA
14790
14791 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
14792
d2fc7e3d 147932011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7db47798
YM
14794
14795 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
14796 `width' to `bar_area_x' and `bar_area_width', respectively.
14797 (x_scroll_run): Take account of fringe background extension.
14798
04f2d78b
CB
14799 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
14800 Rename local vars `left' and `width' to `bar_area_x' and
7db47798
YM
14801 `bar_area_width', respectively.
14802 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
14803 background extension.
14804
79b70037
GM
148052011-05-10 Jim Meyering <meyering@redhat.com>
14806
14807 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
14808
2f142cc5
JB
148092011-05-10 Juanma Barranquero <lekktu@gmail.com>
14810
14811 * image.c (Finit_image_library): Return t for built-in image types,
14812 like pbm and xbm. (Bug#8640)
14813
57679c86
AS
148142011-05-09 Andreas Schwab <schwab@linux-m68k.org>
14815
14816 * w32menu.c (set_frame_menubar): Fix submenu allocation.
14817
888c9e86
EZ
148182011-05-07 Eli Zaretskii <eliz@gnu.org>
14819
b0512a1d
EZ
14820 * w32console.c (Fset_screen_color): Doc fix.
14821 (Fget_screen_color): New function.
14822 (syms_of_ntterm): Defsubr it.
14823
7285dc67
EZ
14824 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
14825 unlink the temporary file if Fcall_process didn't create it in the
14826 first place.
14827 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
14828 child process will be redirected to a file specified with `:file'.
888c9e86
EZ
14829 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
14830 cue to call_process_cleanup not to close that handle.
14831
4d3fcc8e
BK
148322011-05-07 Ben Key <bkey76@gmail.com>
14833
14834 * makefile.w32-in: The bootstrap-temacs rule now makes use of
14835 one of two shell specific rules, either bootstrap-temacs-CMD or
14836 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
14837 to the previous implementation of the bootstrap-temacs rule.
14838 The bootstrap-temacs-CMD rule is similar to the previous
14839 implementation of the bootstrap-temacs rule except that it
14840 makes use of the ESC_CFLAGS variable instead of the CFLAGS
14841 variable.
14842
14843 These changes, along with some changes to nt/configure.bat,
14844 nt/gmake.defs, and nt/nmake.defs, are required to extend my
14845 earlier fix to add support for --cflags and --ldflags options
14846 that include quotes so that it works whether make uses cmd or
14847 sh as the shell.
14848
b4289b64
MA
148492011-05-06 Michael Albinus <michael.albinus@gmx.de>
14850
14851 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
14852 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
14853 is a constant.
14854 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
14855 a string. Handle both cases.
14856 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
14857 (Fdbus_register_method): Use Qinvalid_function.
14858
af4c0e28
JB
148592011-05-06 Juanma Barranquero <lekktu@gmail.com>
14860
14861 * makefile.w32-in: Update dependencies.
14862 (LISP_H): Add inttypes.h and stdin.h.
14863 (PROCESS_H): Add unistd.h.
14864
c51453d9
EZ
148652011-05-06 Eli Zaretskii <eliz@gnu.org>
14866
14867 * lread.c: Include limits.h (fixes the MS-Windows build broken by
14868 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
14869
8ff0ac3c 148702011-05-06 Paul Eggert <eggert@cs.ucla.edu>
c032b5f8 14871
4c4b566b
PE
14872 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
14873
aab2b9b5
PE
14874 * term.c (vfatal): Remove stray call to va_end.
14875 It's not needed and the C Standard doesn't allow it here anyway.
14876
c378da0b
PE
14877 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
14878 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
14879
288b08c7
PE
14880 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
14881 bytes.
14882
e3601888
PE
14883 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
14884
db6c0e74
PE
14885 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
14886
dd5963ea
PE
14887 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
14888
88c9450f
PE
14889 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
14890
2f9442b8
PE
14891 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
14892
c032b5f8
PE
14893 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
14894 * charset.c (Fdefine_charset_internal): Don't initialize
14895 charset.code_space[15]. The value was garbage, on hosts with
2d38271b 14896 32-bit int (Bug#8600).
a108c10b
PE
14897
14898 * lread.c (read_integer): Be more consistent with string-to-number.
14899 Use string_to_number to do the actual conversion; this avoids
14900 rounding errors and fixes some other screwups. Without this fix,
14901 for example, #x1fffffffffffffff was misread as -2305843009213693952.
14902 (digit_to_number): Move earlier, for benefit of read_integer.
14903 Return -1 if the digit is out of range for the base, -2 if it is
48e400f0 14904 not a digit in any supported base. (Bug#8602)
a108c10b 14905
ad5f9eea
PE
14906 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
14907
aec1708a
PE
14908 * dispnew.c (scrolling_window): Return 1 if we scrolled,
14909 to match comment at start of function. This also removes a
14910 GCC warning about overflow in a 32+64-bit port.
14911
47be4ab5
PE
14912 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
14913
371cac43
PE
14914 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
14915 Reported by Stefan Monnier in
14916 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
04f2d78b
CB
14917 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
14918 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
371cac43 14919
d01a7826
PE
14920 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
14921 (EMACS_UINTPTR): Likewise, with uintptr_t.
14922
7fd47d5c
PE
14923 * lisp.h: Prefer 64-bit EMACS_INT if available.
14924 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
14925 on 32-bit hosts that have 64-bit int, so that they can access
14926 large files.
122b0c86
PE
14927 However, temporarily disable this change unless the temporary
14928 symbol WIDE_EMACS_INT is defined.
7fd47d5c 14929
8727937b
PE
14930 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
14931
8ac068ac
PE
14932 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
14933 This removes an assumption that EMACS_INT and long are the same
14934 width as pointers. The assumption is true for Emacs porting targets
14935 now, but we want to make other targets possible.
14936 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
14937 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
14938 In the rest of the code, change types of integers that hold casted
14939 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
14940 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
14941 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
14942 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
14943 No need to cast type when ORing.
14944 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
14945 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
14946 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
14947 assume EMACS_INT is the same width as char *.
14948 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
14949 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
14950 Remove no-longer-needed casts.
14951 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
14952 (xg_tool_bar_help_callback, xg_make_tool_item):
14953 Use EMACS_INTPTR to hold an integer
14954 that will be cast to void *; this can avoid a GCC warning
14955 if EMACS_INT is not the same width as void *.
14956 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
14957 * xdisp.c (display_echo_area_1, resize_mini_window_1):
14958 (current_message_1, set_message_1):
14959 Use a local to convert to proper width without a cast.
14960 * xmenu.c (dialog_selection_callback): Likewise.
14961
ede49d71
PE
14962 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
14963 Also, don't assume VALBITS / RAND_BITS is less than 5,
14964 and don't rely on undefined behavior when shifting a 1 left into
14965 the sign bit.
14966 * lisp.h (get_random): Change signature to match.
14967
2f30ecd0
PE
14968 * lread.c (hash_string): Use size_t, not int, for hash computation.
14969 Normally we prefer signed values; but hashing is special, because
14970 it's better to use unsigned division on hash table sizes so that
14971 the remainder is nonnegative. Also, size_t is the natural width
14972 for hashing into memory. The previous code used 'int', which doesn't
14973 retain enough info to hash well into very large tables.
14974 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
14975
2a866e7b
PE
14976 * dbusbind.c: Don't possibly lose pointer info when converting.
14977 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
14978 Use XPNTR rather than XHASH, so that the high-order bits of
14979 the pointer aren't lost when converting through void *.
14980
51639eac
PE
14981 * eval.c (Fautoload): Don't double-shift a pointer.
14982
92394119
PE
14983 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
14984
dbdb9a7c
JB
149852011-05-06 Juanma Barranquero <lekktu@gmail.com>
14986
14987 * gnutls.c (DEF_GNUTLS_FN):
14988 * image.c (DEF_IMGLIB_FN): Make function pointers static.
14989
db7a0b4f
AS
149902011-05-05 Andreas Schwab <schwab@linux-m68k.org>
14991
14992 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
14993 marker. (Bug#8610)
14994
cd394be1 149952011-05-05 Eli Zaretskii <eliz@gnu.org>
fab624aa
EZ
14996
14997 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
14998 New version that can reserve upto 2GB of heap space.
14999
f7ff1b0f 150002011-05-05 Chong Yidong <cyd@stupidchicken.com>
45cb8994
CY
15001
15002 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
15003
639c109b
TZ
150042011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
15005
15006 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
15007 `gnutls_certificate_set_x509_key_file'.
15008
d2127135
JB
150092011-05-05 Juanma Barranquero <lekktu@gmail.com>
15010
15011 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
15012 Update dependencies.
15013
e968f4f3
JB
150142011-05-04 Juanma Barranquero <lekktu@gmail.com>
15015
15016 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
15017 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
15018 Remove unused parameter `fildes'.
15019 * process.c (read_process_output, send_process): Don't pass it.
15020
84d358f0
JB
150212011-05-04 Juanma Barranquero <lekktu@gmail.com>
15022
15023 Fix previous change: the library cache is defined in w32.c.
15024 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
15025 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
15026
0898ca10
JB
150272011-05-04 Juanma Barranquero <lekktu@gmail.com>
15028
15029 Implement dynamic loading of GnuTLS on Windows.
15030
15031 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
15032 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
15033 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
15034 Declare.
15035
15036 * gnutls.c (Qgnutls_dll): Define.
15037 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
15038 (gnutls_*): Declare function pointers.
15039 (init_gnutls_functions): New function to initialize function pointers.
15040 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
15041 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
15042 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
15043 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
15044 (emacs_gnutls_write, emacs_gnutls_read)
15045 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
15046 (Fgnutls_available_p): New function.
15047 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
15048 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
15049 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
15050
15051 * image.c: Include w32.h.
15052 (Vimage_type_cache): Delete.
15053 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
15054 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
15055 (w32_delayed_load): Move to w32.c.
15056
15057 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
15058
15059 * w32.c (QCloaded_from, Vlibrary_cache): Define.
15060 (w32_delayed_load): Move from image.c. When loading a library, record
15061 its filename in the :loaded-from property of the library id.
15062 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
15063 Initialize and staticpro them.
15064 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
15065
15066 * process.c: Include lisp.h before w32.h, not after.
15067 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
15068 instead of gnutls_record_check_pending.
15069
15070 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
15071
ff4de4aa
TZ
150722011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
15073
15074 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
15075 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
15076 as passed in.
15077
abe95abb
JD
150782011-05-03 Jan Djärv <jan.h.d@swipnet.se>
15079
15080 * xterm.c (x_set_frame_alpha): Do not set property on anything
15081 else than FRAME_X_OUTER_WINDOW (Bug#8608).
15082
e16e55d4
JB
150832011-05-02 Juanma Barranquero <lekktu@gmail.com>
15084
15085 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
15086
bafcf6a5
JB
150872011-05-02 Juanma Barranquero <lekktu@gmail.com>
15088
15089 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
15090 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
15091 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
15092 (gnutls_global_initialized, Qgnutls_bootprop_priority)
15093 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
15094 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
15095 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
15096 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
15097 (Qgnutls_bootprop_callbacks_verify): Make static.
15098
e7a6747f
AS
150992011-05-01 Andreas Schwab <schwab@linux-m68k.org>
15100
19ed11ba
AS
15101 * callproc.c: Indentation fixup.
15102
e7a6747f 15103 * sysdep.c (wait_for_termination_1): Make static.
04f2d78b
CB
15104 (wait_for_termination, interruptible_wait_for_termination):
15105 Move after wait_for_termination_1.
e7a6747f 15106
1ef14cb4
LMI
151072011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
15108
15109 * sysdep.c (interruptible_wait_for_termination): New function
15110 which is like wait_for_termination, but allows keyboard
15111 interruptions.
15112
15113 * callproc.c (Fcall_process): Add (:file "file") as an option for
15114 the STDOUT buffer.
15115 (Fcall_process_region): Ditto.
15116
330d880c
EZ
151172011-04-30 Eli Zaretskii <eliz@gnu.org>
15118
8db90b73
EZ
15119 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
15120 rather than `XVECTOR (FOO)->size'.
15121
330d880c
EZ
15122 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
15123 inttypes.h, as a gnulib replacement is used if it not available in
15124 system headers.
15125
15cbd324
EZ
151262011-04-21 Eli Zaretskii <eliz@gnu.org>
15127
15128 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
15129 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
15130 of MOST_POSITIVE_FIXNUM. (Bug#8528)
15131
15132 * coding.c (coding_alloc_by_realloc): Error out if destination
15133 will grow beyond MOST_POSITIVE_FIXNUM.
15134 (decode_coding_emacs_mule): Abort if there isn't enough place in
15135 charbuf for the composition carryover bytes. Reserve an extra
15136 space for up to 2 characters produced in a loop.
15137 (decode_coding_iso_2022): Abort if there isn't enough place in
15138 charbuf for the composition carryover bytes.
15139
151402011-04-21 Eli Zaretskii <eliz@gnu.org>
afda1437 15141
ae940cca
EZ
15142 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
15143 aborting when %lld or %lll format is passed.
15144 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
15145 %llo or %llx format is passed. (Bug#8545)
15146
03ab8921
EZ
15147 * window.c (window_scroll_line_based): Use a marker instead of
15148 simple variables to record original value of point. (Bug#7952)
15149
afda1437
EZ
15150 * doprnt.c (doprnt): Fix the case where a multibyte sequence
15151 produced by %s or %c overflows available buffer space. (Bug#8545)
15152
f76dee0c
PE
151532011-04-28 Paul Eggert <eggert@cs.ucla.edu>
15154
15155 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
283cdbef 15156 (SIZE_MAX): Move defn after all includes, as they might #define it.
f76dee0c 15157
fdc5744d
JB
151582011-04-28 Juanma Barranquero <lekktu@gmail.com>
15159
15160 * w32.c (init_environment): Warn about defaulting HOME to C:\.
15161
638f053a
JB
151622011-04-28 Juanma Barranquero <lekktu@gmail.com>
15163
15164 * keyboard.c (Qdelayed_warnings_hook): Define.
15165 (command_loop_1): Run `delayed-warnings-hook'
15166 if Vdelayed_warnings_list is non-nil.
15167 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
15168 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
15169
d178f871
EZ
151702011-04-28 Eli Zaretskii <eliz@gnu.org>
15171
15172 * doprnt.c (doprnt): Don't return value smaller than the buffer
15173 size if the message was truncated. (Bug#8545).
15174
b124fd93
JB
151752011-04-28 Juanma Barranquero <lekktu@gmail.com>
15176
15177 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
15178 (Fx_window_property): #if-0 the whole functions, not just the bodies.
15179
e810457d
PE
151802011-04-27 Paul Eggert <eggert@cs.ucla.edu>
15181
15182 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
15183
ea51cceb
JB
151842011-04-27 Juanma Barranquero <lekktu@gmail.com>
15185
15186 * makefile.w32-in: Update dependencies.
15187
94dcfacf
EZ
151882011-04-27 Eli Zaretskii <eliz@gnu.org>
15189
15190 Improve `doprnt' and its usage. (Bug#8545)
15191 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
15192 `format_end'. Remove support for %l as a conversion specifier.
15193 Don't use xrealloc. Improve diagnostics when the %l size modifier
15194 is used. Update the commentary.
15195
15196 * eval.c (verror): Simplify calculation of size_t.
15197
15198 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
15199 messages.
15200
f61f41d7
PE
152012011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
15202
15203 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
15204 change.
15205
96fb4434
PE
152062011-04-27 Paul Eggert <eggert@cs.ucla.edu>
15207
15208 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
15209 This makes this file independent of the recent pseudovector change.
15210
671875da 152112011-04-26 Paul Eggert <eggert@cs.ucla.edu>
eab3844f 15212
69e9b5a3
PE
15213 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
15214
b5f869a7 15215 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
7754e151 15216 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
8d4c3955 15217 Remove unused local.
c8926152 15218 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
080e5a8d 15219
841a1577 15220 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
04f2d78b
CB
15221 GCC 4.6.0 optimizes based on type-based alias analysis.
15222 For example, if b is of type struct buffer * and v of type struct
eab3844f
PE
15223 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
15224 != &v->size, and therefore "v->size = 1; b->size = 2; return
15225 v->size;" must therefore return 1. This assumption is incorrect
15226 for Emacs, since it type-puns struct Lisp_Vector * with many other
15227 types. To fix this problem, this patch adds a new type struct
f904488f 15228 vectorlike_header that documents the constraints on layout of vectors
eab3844f
PE
15229 and pseudovectors, and helps optimizing compilers not get fooled
15230 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
15231 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
f904488f
PE
15232 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
15233 the size member.
eab3844f
PE
15234 (XSETPVECTYPE): Rewrite in terms of new macro.
15235 (XSETPVECTYPESIZE): New macro, specifying both type and size.
15236 This is a bit clearer, and further avoids the possibility of
15237 undesirable aliasing.
15238 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
f904488f 15239 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
eab3844f
PE
15240 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
15241 since Lisp_Subr is a special case (no "next" field).
04f2d78b
CB
15242 (ASIZE): Now uses header.size rather than size.
15243 All previous uses of XVECTOR (foo)->size replaced to use this macro,
f904488f
PE
15244 to avoid the hassle of writing XVECTOR (foo)->header.size.
15245 (struct vectorlike_header): New type.
eab3844f
PE
15246 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
15247 object, to help avoid aliasing.
15248 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
15249 (SUBRP): Likewise, since Lisp_Subr is a special case.
15250 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
15251 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
15252 (struct Lisp_Hash_Table): Combine first two members into a single
f904488f 15253 struct vectorlike_header member. All uses of "size" and "next" members
eab3844f
PE
15254 changed to be "header.size" and "header.next".
15255 * buffer.h (struct buffer): Likewise.
15256 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
15257 * frame.h (struct frame): Likewise.
15258 * process.h (struct Lisp_Process): Likewise.
15259 * termhooks.h (struct terminal): Likewise.
15260 * window.c (struct save_window_data, struct saved_window): Likewise.
15261 * window.h (struct window): Likewise.
15262 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
15263 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
15264 * buffer.c (init_buffer_once): Likewise.
15265 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
15266 special case.
15267 * process.c (Fformat_network_address): Use local var for size,
15268 for brevity.
15269
0df1eac5
PE
15270 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
15271
847ab9d1 15272 Make the Lisp reader and string-to-float more consistent (Bug#8525)
452f4150
PE
15273 * data.c (atof): Remove decl; no longer used or needed.
15274 (digit_to_number): Move to lread.c.
15275 (Fstring_to_number): Use new string_to_number function, to be
15276 consistent with how the Lisp reader treats infinities and NaNs.
15277 Do not assume that floating-point numbers represent EMACS_INT
15278 without losing information; this is not true on most 64-bit hosts.
15279 Avoid double-rounding errors, by insisting on integers when
15280 parsing non-base-10 numbers, as the documentation specifies.
15281 * lisp.h (string_to_number): New decl, replacing ...
15282 (isfloat_string): Remove.
bc0a5c13 15283 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
d78050d6 15284 (read1): Do not accept +. and -. as integers; this
452f4150
PE
15285 appears to have been a coding error. Similarly, do not accept
15286 strings like +-1e0 as floating point numbers. Do not report
15287 overflow for integer overflows unless the base is not 10 which
15288 means we have no simple and reliable way to continue.
15289 Break out the floating-point parsing into a new
15290 function string_to_number, so that Fstring_to_number parses
15291 floating point numbers consistently with the Lisp reader.
04f2d78b 15292 (digit_to_number): Move here from data.c. Make it static inline.
452f4150
PE
15293 (E_CHAR, EXP_INT): Remove, replacing with ...
15294 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
15295 (string_to_number): New function, replacing isfloat_string.
15296 This function checks for valid syntax and produces the resulting
15297 Lisp float number too. Rework it so that string-to-number
bc0a5c13 15298 no longer mishandles examples like "1.0e+". Use strtoumax,
d78050d6
PE
15299 so that overflow for non-base-10 numbers is reported only when
15300 there's no portable and simple way to convert to floating point.
452f4150 15301
67769ffc
PE
15302 * textprop.c (set_text_properties_1): Rewrite for clarity,
15303 and to avoid GCC warning about integer overflow.
15304
c20db43f
PE
15305 * intervals.h (struct interval): Use EMACS_INT for members
15306 where EMACS_UINT might cause problems. See
15307 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
15308 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
15309 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
15310 All uses changed.
37aa2f85
PE
15311 (offset_intervals): Tell GCC not to worry about length overflow
15312 when negating a negative length.
c20db43f 15313
2538aa2f
PE
15314 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
15315 (overrun_check_free): Likewise.
15316
f2d3008d
PE
15317 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
15318 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
15319 word size.
15320
ec8df744
PE
15321 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
15322 (gnutls_make_error): Rename local to avoid shadowing.
15323 (gnutls_emacs_global_deinit): ifdef out; not used.
15324 (Fgnutls_boot): Use const for pointer to readonly storage.
15325 Comment out unused local. Fix pointer signedness problems.
15326
640ee02d
PE
15327 * lread.c (openp): Don't stuff size_t into an 'int'.
15328 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
15329 about possible signed overflow.
15330
6048fb2a
PE
15331 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
15332 (GDK_KEY_g): Don't define if already defined.
15333 (xg_prepare_tooltip): Avoid pointer signedness problem.
15334 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
15335
fa3c87e1
PE
15336 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
15337 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
15338
2172544b
PE
15339 * xfns.c (Fx_window_property): Simplify a bit,
15340 to make a bit faster and to avoid GCC 4.6.0 warning.
15341 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
15342
9b821a21
PE
15343 * fns.c (internal_equal): Don't assume size_t fits in int.
15344
3c616cfa
PE
15345 * alloc.c (compact_small_strings): Tighten assertion a little.
15346
c2982e87
PE
15347 Replace pEd with more-general pI, and fix some printf arg casts.
15348 * lisp.h (pI): New macro, generalizing old pEd macro to other
15349 conversion specifiers. For example, use "...%"pI"d..." rather
15350 than "...%"pEd"...".
15351 (pEd): Remove. All uses replaced with similar uses of pI.
61bdb816 15352 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
c2982e87
PE
15353 * alloc.c (check_pure_size): Don't overflow by converting size to int.
15354 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
15355 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
15356 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
15357 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
15358 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
15359 64-bit hosts.
15360 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
15361 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
15362 * print.c (safe_debug_print, print_object): Likewise.
15363 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
15364 to int.
6f04d126
PE
15365 Use pI instead of if-then-else-abort. Use %p to avoid casts,
15366 avoiding the 0 flag, which is not portable.
c2982e87
PE
15367 * process.c (Fmake_network_process): Use pI to avoid cast.
15368 * region-cache.c (pp_cache): Likewise.
15369 * xdisp.c (decode_mode_spec): Likewise.
15370 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
15371 behavior on 64-bit hosts with printf arg.
6f04d126 15372 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
c2982e87
PE
15373 (x_stop_queuing_selection_requests): Likewise.
15374 (x_get_window_property): Don't truncate byte count to an 'int'
15375 when tracing.
0b432f21 15376
5e073ec7
PE
15377 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
15378 here, since it parses constructs like leading '-' and spaces,
15379 which are not wanted; and it overflows with large numbers.
15380 Instead, simply match F[0-9]+, which is what is wanted anyway.
15381
36372bf9
PE
15382 * alloc.c: Remove unportable assumptions about struct layout.
15383 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
15384 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
15385 (allocate_vectorlike, make_pure_vector): Use the new macros,
15386 plus offsetof, to remove unportable assumptions about struct layout.
15387 These assumptions hold on all porting targets that I know of, but
15388 they are not guaranteed, they're easy to remove, and removing them
15389 makes further changes easier.
15390
0b432f21
PE
15391 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
15392 This doesn't fix a bug but makes the code clearer.
bfd1c781
PE
15393 (string_overrun_cookie): Now const. Use initializers that
15394 don't formally overflow signed char, to avoid warnings.
000098c1
PE
15395 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
15396 can cause Emacs to crash when string overrun checking is enabled.
c7bda33c
PE
15397 (allocate_buffer): Don't assume sizeof (struct buffer) is a
15398 multiple of sizeof (EMACS_INT); it need not be, if
15399 alignof(EMACS_INT) < sizeof (EMACS_INT).
d0f4e1f5 15400 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
0b432f21 15401
895009e1
JB
154022011-04-26 Juanma Barranquero <lekktu@gmail.com>
15403
15404 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
15405
6a7a1b0b
TZ
154062011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
15407
15408 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
b5f869a7 15409 supposed to be handshaking. (Bug#8556)
6a7a1b0b
TZ
15410 Reported by Paul Eggert <eggert@cs.ucla.edu>.
15411
841a1577 154122011-04-26 Daniel Colascione <dan.colascione@gmail.com>
0438ce91
DC
15413
15414 * lisp.h (Qdebug): List symbol.
895009e1 15415 * eval.c (Qdebug): Restore global linkage.
0438ce91
DC
15416 * keyboard.c (debug-on-event): New variable.
15417 (handle_user_signal): Break into debugger when debug-on-event
15418 matches the current signal symbol.
15419
f2d3ba6f
DN
154202011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
15421
15422 * alloc.c (check_sblock, check_string_bytes)
15423 (check_string_free_list): Convert to standard C.
15424
42ce4c63
TZ
154252011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
15426
15427 * w32.c (emacs_gnutls_push): Fix typo.
15428
825cd63c
EZ
154292011-04-25 Eli Zaretskii <eliz@gnu.org>
15430
fb11d64d
EZ
15431 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
15432 "cast to pointer from integer of different size".
15433
825cd63c
EZ
15434 Improve doprnt and its use in verror. (Bug#8545)
15435 * doprnt.c (doprnt): Document the set of format control sequences
15436 supported by the function. Use SAFE_ALLOCA instead of always
15437 using `alloca'.
15438
15439 * eval.c (verror): Don't limit the buffer size at size_max-1, that
15440 is one byte too soon. Don't use xrealloc; instead xfree and
15441 xmalloc anew.
15442
e061a11b
TZ
154432011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
15444
15445 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
15446 callbacks stage.
15447
15448 * gnutls.c: Renamed global_initialized to
15449 gnutls_global_initialized. Added internals for the
15450 :verify-hostname-error, :verify-error, and :verify-flags
15451 parameters of `gnutls-boot' and documented those parameters in the
15452 docstring. Start callback support.
9173deec
JB
15453 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
15454 unless a fatal error occurred. Call gnutls_alert_send_appropriate
15455 on error. Return error code.
e061a11b
TZ
15456 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
15457 (emacs_gnutls_read): Likewise.
15458 (Fgnutls_boot): Return handshake error code.
15459 (emacs_gnutls_handle_error): New function.
15460 (wsaerror_to_errno): Likewise.
15461
15462 * w32.h (emacs_gnutls_pull): Add prototype.
15463 (emacs_gnutls_push): Likewise.
15464
15465 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
15466 (emacs_gnutls_push): Likewise.
15467
154682011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
15469
15470 * process.c (wait_reading_process_output): Check if GnuTLS
15471 buffered some data internally if no FDs are set for TLS
15472 connections.
15473
15474 * makefile.w32-in (OBJ2): Add gnutls.$(O).
15475 (LIBS): Link to USER_LIBS.
15476 ($(BLD)/gnutls.$(0)): New target.
15477
fa6996bc
EZ
154782011-04-24 Eli Zaretskii <eliz@gnu.org>
15479
eb35682e
EZ
15480 * xdisp.c (handle_single_display_spec): Rename the
15481 display_replaced_before_p argument into display_replaced_p, to
15482 make it consistent with the commentary. Fix typos in the
15483 commentary.
15484
e2ad650c
EZ
15485 * textprop.c (syms_of_textprop): Remove dead code.
15486 (copy_text_properties): Delete obsolete commentary about an
15487 interface that was deleted long ago. Fix typos in the description
15488 of arguments.
15489
1b2de274
EZ
15490 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
15491 to changes in oldXMenu/XMenu.h from 2011-04-16.
15492 <menu_help_message, prev_menu_help_message>: Constify.
15493 (IT_menu_make_room): menu->help_text is now `const char **';
15494 adjust.
15495
15496 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
15497 to changes in oldXMenu/XMenu.h from 2011-04-16.
15498 (struct XMenu): Declare `help_text' `const char **'.
15499
15500 * xfaces.c <Qunspecified>: Make extern again.
15501
15502 * syntax.c: Include sys/types.h before including regex.h, as
75f1671a 15503 required by POSIX.
1b2de274 15504
762b15be
EZ
15505 * doc.c (get_doc_string): Improve the format passed to `error'.
15506
15507 * doprnt.c (doprnt): Improve commentary.
15508
15509 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
15510
15511 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
15512 them with etags.
15513
f1052e5d
EZ
15514 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
15515 changes in globals.h immediately force recompilation.
762b15be
EZ
15516 (TAGS): Depend on $(CURDIR)/m/intel386.h and
15517 $(CURDIR)/s/ms-w32.h.
15518 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
f1052e5d 15519
fa6996bc
EZ
15520 * character.c (Fchar_direction): Function deleted.
15521 (syms_of_character): Don't defsubr it.
15522 <char-direction-table>: Deleted.
15523
e6c3da20
EZ
155242011-04-23 Eli Zaretskii <eliz@gnu.org>
15525
15526 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
15527 * doprnt.c: Include limits.h.
15528 (SIZE_MAX): New macro.
04f2d78b
CB
15529 (doprnt): Return a size_t value. 2nd arg is now size_t.
15530 Many local variables are now size_t instead of int or unsigned.
e6c3da20
EZ
15531 Improve overflow protection. Support `l' modifier for integer
15532 conversions. Support %l conversion. Don't assume an EMACS_INT
15533 argument for integer conversions and for %c.
15534
15535 * lisp.h (doprnt): Restore prototype.
15536
15537 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
15538 $(SRC)/character.h.
15539
15540 * Makefile.in (base_obj): Add back doprnt.o.
15541
15542 * deps.mk (doprnt.o): Add back prerequisites.
15543 (callint.o): Depend on character.h.
15544
15545 * eval.c (internal_lisp_condition_case): Include the handler
15546 representation in the error message.
15547 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
15548 when breaking from the loop.
15549
15550 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
15551
15552 * callint.c (Fcall_interactively): When displaying error message
15553 about invalid control letter, pass the character's codepoint, not
15554 a pointer to its multibyte form. Improve display of the character
15555 in octal and display also its hex code.
15556
15557 * character.c (char_string): Use %x to display the (unsigned)
15558 codepoint of an invalid character, to avoid displaying a bogus
15559 negative value.
15560
15561 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
15562 `error', not SYMBOL_NAME itself.
15563
15564 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
15565 character arguments to `error'.
15566
15567 * charset.c (check_iso_charset_parameter): Fix incorrect argument
15568 to `error' in error message about FINAL_CHAR argument. Make sure
15569 FINAL_CHAR is a character, and use %c when it is passed as
15570 argument to `error'.
15571
4ffd0d6b 155722011-04-23 Eli Zaretskii <eliz@gnu.org>
97a93095
EZ
15573
15574 * s/ms-w32.h (localtime): Redirect to sys_localtime.
15575
15576 * w32.c: Include <time.h>.
15577 (sys_localtime): New function.
15578
4ffd0d6b 155792011-04-23 Chong Yidong <cyd@stupidchicken.com>
c17819f4
CY
15580
15581 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
15582
4ffd0d6b 15583 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
aac0c6e3 15584
4ffd0d6b 155852011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
aac0c6e3 15586
4ffd0d6b
GM
15587 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
15588 zombies (Bug#8467).
aac0c6e3 15589
04c56954
EZ
155902011-04-19 Eli Zaretskii <eliz@gnu.org>
15591
15592 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
15593 gl_state.e_property when gl_state.object is Qt.
15594
15595 * insdel.c (make_gap_larger): Remove limitation of buffer size
15596 to <= INT_MAX.
15597
16a43933
CY
155982011-04-18 Chong Yidong <cyd@stupidchicken.com>
15599
15600 * xdisp.c (lookup_glyphless_char_display)
15601 (produce_glyphless_glyph): Handle cons cell entry in
15602 glyphless-char-display.
15603 (Vglyphless_char_display): Document it.
15604
15605 * term.c (produce_glyphless_glyph): Handle cons cell entry in
15606 glyphless-char-display.
15607
4581706e
CY
156082011-04-17 Chong Yidong <cyd@stupidchicken.com>
15609
15610 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
15611
15612 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
15613
15614 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
15615 definition for no-X builds.
15616
4887c6e2 156172011-04-16 Paul Eggert <eggert@cs.ucla.edu>
764430a3 15618
fd35b6f9
PE
15619 Static checks with GCC 4.6.0 and non-default toolkits.
15620
5c1ccb01
PE
15621 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
15622
006c5daa
PE
15623 * process.c (keyboard_bit_set): Define only if SIGIO.
15624 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
15625 (send_process): Repair possible setjmp clobbering.
15626
efc736d3
PE
15627 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
15628
4e2fe2e6
PE
15629 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
15630
f97334a2
PE
15631 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
15632
4e75f29d
PE
15633 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
15634 Define only if needed.
15635
90efadd1
PE
15636 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
15637 by pacifying GCC about it. Maybe it's time to retire it?
875975e9 15638 * xfaces.c (USG, __TIMEVAL__): Likewise.
90efadd1 15639
3c647824
PE
15640 * dispextern.h (struct redisplay_interface): Rename param
15641 to avoid shadowing.
e264f262 15642 * termhooks.h (struct terminal): Likewise.
761383f4 15643 * xterm.c (xembed_send_message): Likewise.
3c647824 15644
b58c5c4a
PE
15645 * insdel.c (make_gap_smaller): Define only if
15646 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
15647
cad59032
PE
15648 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
15649 it.
15650
c339dc2e
PE
15651 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
15652 so that we aren't warned about unused symbols.
15653
91a3e27b
PE
15654 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
15655
399c71d3 15656 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
7a3fb125 15657
8ffc96f5
PE
15658 * xfns.c (x_real_positions): Mark locals as initialized.
15659
eef9bc79
PE
15660 * xmenu.c (xmenu_show): Don't use uninitialized vars.
15661
098db9dd
PE
15662 * xterm.c: Fix problems found by static analysis with other toolkits.
15663 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
dda3aedd
PE
15664 (x_dispatch_event): Declare static if USE_GTK, and
15665 define if USE_GTK || USE_X_TOOLKIT.
098db9dd 15666 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
dda3aedd 15667 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
841a1577
JB
15668 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
15669 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
098db9dd 15670
eb18f6cc
PE
15671 * xmenu.c (menu_help_callback): Pointer type fixes.
15672 Use const pointers when pointing at readonly data. Avoid pointer
15673 signedness clashes.
15674 (FALSE): Remove unused macro.
15675 (update_frame_menubar): Remove unused decl.
15676
1fe72bf8
PE
15677 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
15678
60d9e1db
PE
15679 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
15680 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
15681 (single_menu_item): Rename local to avoid shadowing.
15682
39261c26
PE
15683 * keyboard.c (make_lispy_event): Remove unused local var.
15684
018c5e19
PE
15685 * frame.c, frame.h (x_get_resource_string): Bring this back, but
15686 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
15687
63d2b86e
PE
15688 * bitmaps: Change bitmaps from unsigned char back to the X11
15689 compatible char. Avoid the old compiler warnings about
15690 out-of-range initializers by using, for example, '\xab' rather
15691 than 0xab.
15692
aefd87e1
PE
15693 * xgselect.c (xgselect_initialize): Check vs interface
15694 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
15695
bf501fb9
PE
15696 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
15697
e9829fdf
PE
15698 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
15699 to read-only memory.
15700
1086c095
PE
15701 * fns.c (vector): Remove; this old hack is no longer needed.
15702
2baccd04 15703 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
401f10cb 15704 Remove unused var.
dde42981 15705 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
2baccd04 15706
72391843 15707 * xrdb.c (x_load_resources): Omit unused local.
3565b346 15708
436c16df 15709 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
8a94ea33 15710 (x_window): Rename locals to avoid shadowing.
dc5ddd85 15711 (USG): Use the kludged USG macro, to pacify gcc.
436c16df 15712
92bb796d 15713 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
bbbef9e1 15714 (x_term_init): Remove local to avoid shadowing.
92bb796d 15715
764430a3 15716 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
4887c6e2
PE
15717
15718 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
15719 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
15720
d1dfb56c
EZ
157212011-04-16 Eli Zaretskii <eliz@gnu.org>
15722
c4354cb4
EZ
15723 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
15724
d1dfb56c
EZ
15725 Fix regex.c, syntax.c and friends for buffers > 2GB.
15726 * syntax.h (struct gl_state_s): Declare character position members
15727 EMACS_INT.
15728
15729 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
15730
04f2d78b
CB
15731 * textprop.c (verify_interval_modification, interval_of):
15732 Declare arguments EMACS_INT.
d1dfb56c
EZ
15733
15734 * intervals.c (adjust_intervals_for_insertion): Declare arguments
15735 EMACS_INT.
15736
15737 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
15738
15739 * indent.c (Fvertical_motion): Local variable it_start is now
15740 EMACS_INT.
15741
15742 * regex.c (re_match, re_match_2, re_match_2_internal)
15743 (bcmp_translate, regcomp, regexec, print_double_string)
15744 (group_in_compile_stack, re_search, re_search_2, regex_compile)
15745 (re_compile_pattern, re_exec): Declare arguments and local
15746 variables `size_t' and `ssize_t' and return values `regoff_t', as
15747 appropriate.
15748 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
15749 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
15750 <compile_stack_type>: `size' and `avail' are now `size_t'.
15751
15752 * regex.h <regoff_t>: Use ssize_t, not int.
15753 (re_search, re_search_2, re_match, re_match_2): Arguments that
15754 specify buffer/string position and length are now ssize_t and
15755 size_t. Return type is regoff_t.
15756
613052cd
BK
157572011-04-16 Ben Key <bkey76@gmail.com>
15758
15759 * nsfont.m: Fixed bugs in ns_get_family and
15760 ns_descriptor_to_entity that were caused by using free to
15761 deallocate memory blocks that were allocated by xmalloc (via
15762 xstrdup). This caused Emacs to crash when compiled with
15763 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
15764 --enable-checking=xmallocoverrun). xfree is now used to
15765 deallocate these memory blocks.
15766
4170f62f 157672011-04-15 Paul Eggert <eggert@cs.ucla.edu>
3e047f51 15768
71b41406
PE
15769 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
15770
9587a89d
PE
15771 emacs_write: Accept and return EMACS_INT for sizes.
15772 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
15773 et seq.
15774 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
15775 Accept and return EMACS_INT.
15776 (emacs_gnutls_write): Return the number of bytes written on
15777 partial writes.
15778 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
273a5f82
PE
15779 (emacs_read, emacs_write): Remove check for negative size, as the
15780 Emacs source code has been audited now.
9587a89d
PE
15781 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
15782 (emacs_read, emacs_write): Use it.
273a5f82
PE
15783 * process.c (send_process): Adjust to the new signatures of
15784 emacs_write and emacs_gnutls_write. Do not attempt to store
15785 a byte offset into an 'int'; it might overflow.
9587a89d 15786 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
273a5f82 15787
3e047f51
PE
15788 * sound.c: Don't assume sizes fit in 'int'.
15789 (struct sound_device.period_size, alsa_period_size):
9c3c56a7 15790 Return EMACS_INT, not int.
3e047f51 15791 (struct sound_device.write, vox_write, alsa_write):
9c3c56a7
PE
15792 Accept EMACS_INT, not int.
15793 (wav_play, au_play): Use EMACS_INT to store sizes and to
3e047f51
PE
15794 record read return values.
15795
cc39a9db
BK
157962011-04-15 Ben Key <bkey76@gmail.com>
15797
c9d0ec6d
JB
15798 * keyboard.c (Qundefined): Don't declare static since it is used
15799 in nsfns.m.
15800 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
15801 static since they are used in nsfont.m.
cc39a9db 15802
6c60eb9f
SM
158032011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
15804
15805 * process.c (Qprocessp): Don't declare static.
15806 * lisp.h (Qprocessp): Declare again.
15807
7990b61a
JB
158082011-04-15 Juanma Barranquero <lekktu@gmail.com>
15809
15810 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
15811
5d4cb038
PE
158122011-04-14 Paul Eggert <eggert@cs.ucla.edu>
15813
8bd7b830 15814 Improve C-level modularity by making more things 'static'.
cd64ea1d 15815
e3b27b31
PE
15816 Don't publish debugger-only interfaces to other modules.
15817 * lisp.h (safe_debug_print, debug_output_compilation_hack):
15818 (verify_bytepos, count_markers): Move decls to the only modules
15819 that need them.
15820 * region-cache.h (pp_cache): Likewise.
15821 * window.h (check_all_windows): Likewise.
15822 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
15823
5d4cb038
PE
15824 * sysdep.c (croak): Now static, if
15825 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
15826 * syssignal.h (croak): Declare only if not static.
69003fd8
PE
15827
15828 * alloc.c (refill_memory_reserve): Now static if
15829 !defined REL_ALLOC || defined SYSTEM_MALLOC.
15830 * lisp.h (refill_memory_reserve): Declare only if not static.
93ea6e8f 15831
e87b6180
PE
15832 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
15833 Define only if USE_LUCID.
15834
ac64929e
PE
15835 * xrdb.c (x_customization_string, x_rm_string): Now static.
15836
6f37259d
PE
15837 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
15838 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
15839
1683e3ab
PE
15840 * xdisp.c (draw_row_with_mouse_face): Now static.
15841 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
15842
de9c2632
PE
15843 * window.h (check_all_windows): Mark externally visible.
15844
2b96acb7
PE
15845 * window.c (window_deletion_count): Now static.
15846
15847 * undo.c: Make symbols static if they're not exported.
15848 (last_undo_buffer, last_boundary_position, pending_boundary):
15849 Now static.
15850
50436f33
PE
15851 * textprop.c (interval_insert_behind_hooks): Now static.
15852 (interval_insert_in_front_hooks): Likewise.
15853
64520e5c
PE
15854 * term.c: Make symbols static if they're not exported.
15855 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
15856 (max_frame_lines, tty_set_terminal_modes):
15857 (tty_reset_terminal_modes, tty_turn_off_highlight):
15858 (get_tty_terminal): Now static.
15859 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
15860 * termhooks.h (term_mouse_moveto): Do not declare if
8bd7b830 15861 HAVE_WINDOW_SYSTEM.
64520e5c
PE
15862 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
15863 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
15864
1fa53021
PE
15865 * sysdep.c: Make symbols static if they're not exported.
15866 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
15867 Now static.
15868 (sigprocmask_set, full_mask): Remove; unused.
15869 (wait_debugging): Mark as visible.
15870 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
15871 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
15872
d4b43b22
PE
15873 * syntax.c (syntax_temp): Define only if !__GNUC__.
15874
b7c513d0
PE
15875 * sound.c (current_sound_device, current_sound): Now static.
15876
989b29ad
PE
15877 * search.c (searchbufs, searchbuf_head): Now static.
15878
13a55a78
PE
15879 * scroll.c (scroll_cost): Remove; unused.
15880 * dispextern.h (scroll_cost): Remove decl.
15881
de68a1fc
PE
15882 * region-cache.h (pp_cache): Mark as externally visible.
15883
40ccffa6
PE
15884 * process.c: Make symbols static if they're not exported.
15885 (process_tick, update_tick, create_process, chan_process):
15886 (Vprocess_alist, proc_buffered_char, datagram_access):
15887 (fd_callback_data, send_process_frame, process_sent_to): Now static.
15888 (deactivate_process): Mark defn as static, as well as decl.
15889 * lisp.h (create_process): Remove decl.
15890 * process.h (chan_process, Vprocess_alist): Remove decls.
15891
ad64fc97
PE
15892 * print.c: Make symbols static if they're not exported.
15893 (print_depth, new_backquote_output, being_printed, print_buffer):
15894 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
15895 (print_interval, print_number_index, initial_stderr_stream):
15896 Now static.
15897 * lisp.h (Fprinc): Remove decl.
15898 (debug_output_compilation_hack): Mark as externally visible.
15899
adddb265
PE
15900 * sysdep.c (croak): Move decl from here to syssignal.h.
15901 * syssignal.h (croak): Put it here, so the API can be checked when
15902 'croak' is called from dissociate_if_controlling_tty.
15903
1717ede2
PE
15904 * minibuf.c: Make symbols static if they're not exported.
15905 (minibuf_save_list, choose_minibuf_frame): Now static.
15906 * lisp.h (choose_minibuf_frame): Remove decl.
15907
fa5fb2bc
PE
15908 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
15909
1e3890d1
PE
15910 * lread.c: Make symbols static if they're not exported.
15911 (read_objects, initial_obarray, oblookup_last_bucket_number):
15912 Now static.
15913 (make_symbol): Remove; unused.
15914 * lisp.h (initial_obarray, make_symbol): Remove decls.
15915
8a1414fa
PE
15916 * keyboard.c: Make symbols static if they're not exported.
15917 (single_kboard, recent_keys_index, total_keys, recent_keys):
15918 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
15919 (this_single_command_key_start, echoing, last_auto_save):
15920 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
15921 (command_loop, echo_now, keyboard_init_hook, help_char_p):
15922 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
15923 (Vlispy_mouse_stem, double_click_count):
15924 Now static.
15925 (force_auto_save_soon): Define only if SIGDANGER.
15926 (ignore_mouse_drag_p): Now static if
15927 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
15928 (print_help): Remove; unused.
15929 (stop_character, last_timer_event): Mark as externally visible.
15930 * keyboard.h (ignore_mouse_drag_p): Declare only if
15931 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
15932 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
15933 * lisp.h (echoing): Remove decl.
15934 (force_auto_save_soon): Declare only if SIGDANGER.
15935 * xdisp.c (redisplay_window): Simplify code, to make it more
15936 obvious that ignore_mouse_drag_p is not accessed if !defined
15937 USE_GTK && !defined HAVE_NS.
15938
93ea6e8f
PE
15939 * intervals.c: Make symbols static if they're not exported.
15940 (merge_properties_sticky, merge_interval_right, delete_interval):
15941 Now static.
15942 * intervals.h (merge_interval_right, delete_interval): Remove decls.
15943
77382fcc
PE
15944 * insdel.c: Make symbols static if they're not exported.
15945 However, leave prepare_to_modify_buffer alone. It's never
15946 called from outside this function, but that appears to be a bug.
15947 (combine_after_change_list, combine_after_change_buffer):
4889fc82 15948 (adjust_after_replace, signal_before_change): Now static.
77382fcc
PE
15949 (adjust_after_replace_noundo): Remove; unused.
15950 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
4889fc82 15951 (signal_before_change): Remove decls.
77382fcc 15952
9306c32e
PE
15953 * indent.c (val_compute_motion, val_vmotion): Now static.
15954
cd44d2eb
PE
15955 * image.c: Make symbols static if they're not exported.
15956 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
15957 if USE_GTK.
15958 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
15959 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
15960
ad9a7a06
PE
15961 * fringe.c (standard_bitmaps): Now static.
15962 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
15963
81626931
PE
15964 * frame.c: Make symbols static if they're not exported.
15965 (x_report_frame_params, make_terminal_frame): Now static.
15966 (get_frame_param): Now static, unless HAVE_NS.
15967 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
15968 (x_get_resource_string): Remove; not used.
15969 * frame.h (make_terminal_frame, x_report_frame_params):
15970 (x_get_resource_string); Remove decls.
15971 (x_fullscreen_adjust): Declare only if WINDOWSNT.
15972 * lisp.h (get_frame_param): Declare only if HAVE_NS.
15973
239f9db9
PE
15974 * font.c, fontset.c: Make symbols static if they're not exported.
15975 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
15976 (FACE_SUITABLE_FOR_CHAR_P): Use it.
15977 * font.c (font_close_object): Now static.
15978 * font.h (font_close_object): Remove.
15979 * fontset.c (FONTSET_OBJLIST): Remove.
15980 (free_realized_fontset) #if-0 the body, which does nothing.
15981 (face_suitable_for_char_p): #if-0, as it's never called.
15982 * fontset.h (face_suitable_for_char_p): Remove decl.
04f2d78b
CB
15983 * xfaces.c (face_at_string_position):
15984 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
239f9db9
PE
15985 since 0 is always ASCII.
15986
dfcf3579
PE
15987 * fns.c (weak_hash_tables): Now static.
15988
5045092b
PE
15989 * fileio.c: Make symbols static if they're not exported.
15990 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
15991 (Vwrite_region_annotation_buffers): Now static.
15992
57a96f5c
PE
15993 * eval.c: Make symbols static if they're not exported.
15994 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
15995 * lisp.h (backtrace_list): Remove decl.
15996
35f08c38
PE
15997 * emacs.c: Make symbols static if they're not exported.
15998 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
15999 (fatal_error_code, fatal_error_signal_hook, standard_args):
16000 Now static.
16001 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
16002 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
16003 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
16004 * lisp.h (fatal_error_signal_hook): Remove decl.
16005 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
16006
f44bd759
PE
16007 * editfns.c: Move a (normally-unused) function to its only use.
16008 * editfns.c, lisp.h (get_operating_system_release): Remove.
16009 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
16010 worth the hassle of breaking this out.
16011
b532497d
PE
16012 * xterm.c: Make symbols static if they're not exported.
16013 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
16014 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
16015 (x_destroy_window, x_delete_display):
16016 Now static.
16017 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
16018 (x_mouse_leave): Remove; unused.
16019 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
16020 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
16021 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
16022 Remove decls.
16023 (x_mouse_leave): Declare only if WINDOWSNT.
16024 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
16025 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
16026 USE_X_TOOLKIT.
16027
1675728f
PE
16028 * ftxfont.c: Make symbols static if they're not exported.
16029 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
16030 HAVE_FREETYPE.
16031 * font.h (ftxfont_driver): Likewise.
16032
e4cebfca
PE
16033 * xfns.c: Make symbols static if they're not exported.
16034 (x_last_font_name, x_display_info_for_name):
16035 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
16036 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
16037 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
16038 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
16039 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
16040 (last_show_tip_args): Now static.
16041 (xic_defaut_fontset, xic_create_fontsetname): Define only if
16042 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
16043 (x_screen_planes): Remove; unused.
16044 * dispextern.h (x_screen_planes): Remove decl.
16045
5bf46f05
PE
16046 * dispnew.c: Make symbols static if they're not exported.
16047 * dispextern.h (redraw_garbaged_frames, scrolling):
16048 (increment_row_positions): Remove.
16049 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
16050 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
16051 Now static.
16052 (redraw_garbaged_frames): Remove; unused.
16053
435f4c28
PE
16054 * xfaces.c: Make symbols static if they're not exported.
16055 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
16056 Remove decls.
16057 * xterm.h (defined_color): Remove decls.
16058 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
16059 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
16060 (menu_face_changed_default, defined_color, free_realized_face):
16061 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
16062 (ascii_face_of_lisp_face): Remove; unused.
16063
8524aef3
PE
16064 * xdisp.c: Make symbols static if they're not exported.
16065 * dispextern.h (scratch_glyph_row, window_box_edges):
16066 (glyph_to_pixel_coords, set_cursor_from_row):
16067 (get_next_display_element, set_iterator_to_next):
16068 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
16069 (show_mouse_face): Remove decls
16070 * frame.h (message_buf_print): Likewise.
16071 * lisp.h (pop_message, set_message, check_point_in_composition):
16072 Likewise.
16073 * xterm.h (set_vertical_scroll_bar): Likewise.
16074 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
16075 (message_buf_print, scratch_glyph_row, displayed_buffer):
16076 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
16077 (get_next_display_element, show_mouse_face, window_box_edges):
16078 (frame_to_window_pixel_xy, check_point_in_composition):
16079 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
16080 (glyph_to_pixel_coords): Remove; unused.
16081
16390cd2
PE
16082 * dired.c (file_name_completion): Now static.
16083
16084 * dbusbind.c (xd_in_read_queued_messages): Now static.
16085
a25f4dfa
PE
16086 * lisp.h (circular_list_error, FOREACH): Remove; unused.
16087 * data.c (circular_list_error): Remove.
16088
14a9c8df
PE
16089 * commands.h (last_point_position, last_point_position_buffer):
16090 (last_point_position_window): Remove decls.
16091 * keyboard.c: Make these variables static.
16092
04f2d78b
CB
16093 * coding.h (coding, code_convert_region, encode_coding_gap):
16094 Remove decls.
74ab6df5
PE
16095 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
16096 (iso_code_class, detect_coding, code_convert_region): Now static.
16097 (encode_coding_gap): Remove; unused.
16098
38dfbee1
PE
16099 * chartab.c (chartab_chars, chartab_bits): Now static.
16100
a2cb4e63
PE
16101 * charset.h (charset_iso_8859_1): Remove decl.
16102 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
16103 Now static.
16104
127198fd
PE
16105 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
16106 * ccl.c (Vccl_program_table): Now static.
16107 (check_ccl_update): Remove; unused.
16108
d85b608f
PE
16109 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
16110 * category.h: ... from here.
16111 * category.c (check_category_table, set_category_set): Now static.
16112
31cd66f3
PE
16113 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
16114 * lisp.h: Remove these decls.
16115
c358e587
PE
16116 * buffer.c (buffer_count): Remove unused var.
16117
e78aecca
PE
16118 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
16119 so that it's not optimized away.
16120 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
16121 * dispextern.h (bidi_dump_cached_states): Remove, since it's
16122 exported only to the debugger.
16123
e192d7d3 16124 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
04f2d78b 16125 * atimer.h (run_all_atimers): Remove; not exported.
e192d7d3 16126
92470028
PE
16127 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
16128 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
16129 was inaccessible from Lisp.
16130 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
16131 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
16132
244ed907
PE
16133 alloc.c: Import and export fewer symbols, and remove unused items.
16134 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
16135 is defined.
16136 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
16137 it's not optimized away by whole-program optimization.
16138 (message_enable_multibyte, free_misc): Remove.
16139 (catchlist, handlerlist, mark_backtrace):
16140 Declare only if BYTE_MARK_STACK.
16141 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
16142 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
16143 (message_enable_multibyte): Remove decl.
16144 (free_misc, interval_free_list, float_block, float_block_index):
16145 (n_float_blocks, float_free_list, cons_block, cons_block_index):
16146 (cons_free_list, last_marked_index):
16147 Now static.
16148 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
16149 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
16150 (mark_backtrace): Define only if BYTE_MARK_STACK.
16151 * xdisp.c (message_enable_multibyte): Now static.
16152
61c2b50e 16153 Declare Lisp_Object Q* variables to be 'static' if not exported.
955cbe7b
PE
16154 This makes it easier for human readers (and static analyzers)
16155 to see whether these variables are used from other modules.
16156 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
16157 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
16158 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
16159 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
16160 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
16161 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
16162 * xmenu.c, xselect.c:
16163 Declare Q* vars static if they are not used in other modules.
16164 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
16165 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
16166 Remove decls of unexported vars.
16167 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
16168
95c82688
PE
16169 * lisp.h (DEFINE_FUNC): Make sname 'static'.
16170
16a97296
PE
16171 Make Emacs functions such as Fatom 'static' by default.
16172 This makes it easier for human readers (and static analyzers)
16173 to see whether these functions can be called from other modules.
16174 DEFUN now defines a static function. To make the function external
16175 so that it can be used in other C modules, use the new macro DEFUE.
8bd7b830
PE
16176 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
16177 (Finit_image_library):
16a97296
PE
16178 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
16179 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
16180 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
16181 Remove decls, since these functions are now static.
16182 (Funintern, Fget_internal_run_time): New decls, since these functions
16183 were already external.
95c82688 16184
16a97296
PE
16185 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
16186 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
16187 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
16188 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
16189 * keyboard.c, keymap.c, lread.c:
16190 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
16191 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
16192 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
16193 Mark functions with DEFUE instead of DEFUN,
16194 if they are used in other modules.
16195 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
16196 decls for now-static functions.
16197 * buffer.h (Fdelete_overlay): Remove decl.
16198 * callproc.c (Fgetenv_internal): Mark as internal.
16199 * composite.c (Fremove_list_of_text_properties): Remove decl.
16200 (Fcomposition_get_gstring): New forward static decl.
16201 * composite.h (Fcomposite_get_gstring): Remove decl.
16202 * dired.c (Ffile_attributes): New forward static decl.
16203 * doc.c (Fdocumntation_property): New forward static decl.
16204 * eval.c (Ffetch_bytecode): New forward static decl.
16205 (Funintern): Remove extern decl; now in .h file where it belongs.
16206 * fileio.c (Fmake_symbolic_link): New forward static decl.
16207 * image.c (Finit_image_library): New forward static decl.
16208 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
16209 * intervals.h (Fprevious_property_change):
16210 (Fremove_list_of_text_properties): Remove decls.
16211 * keyboard.c (Fthis_command_keys): Remove decl.
16212 (Fcommand_execute): New forward static decl.
16213 * keymap.c (Flookup_key): New forward static decl.
16214 (Fcopy_keymap): Now static.
16215 * keymap.h (Flookup_key): Remove decl.
16216 * process.c (Fget_process): New forward static decl.
16217 (Fprocess_datagram_address): Mark as internal.
16218 * syntax.c (Fsyntax_table_p): New forward static decl.
16219 (skip_chars): Remove duplicate decl.
16220 * textprop.c (Fprevious_property_change): New forward static decl.
16221 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
16222 Now internal.
16223 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
16224 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
16225
785bbd42
PE
16226 * editfns.c (Fformat): Remove unreachable code.
16227
8b913b57
AS
162282011-04-14 Andreas Schwab <schwab@linux-m68k.org>
16229
16230 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
16231 change. (Bug#8496)
16232
a6744a35
EZ
162332011-04-13 Eli Zaretskii <eliz@gnu.org>
16234
16235 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
16236 when at ZV. (Bug#8487)
16237
e7974947
AS
162382011-04-12 Andreas Schwab <schwab@linux-m68k.org>
16239
baad03f0
AS
16240 * charset.c (Fclear_charset_maps): Use xfree instead of free.
16241 (Bug#8437)
16242 * keyboard.c (parse_tool_bar_item): Likewise.
16243 * sound.c (sound_cleanup, alsa_close): Likewise.
16244 * termcap.c (tgetent): Likewise.
16245 * xfns.c (x_default_font_parameter): Likewise.
16246 * xsettings.c (read_and_apply_settings): Likewise.
16247
e7974947
AS
16248 * alloc.c (overrun_check_malloc, overrun_check_realloc)
16249 (overrun_check_free): Protoize.
16250
28272684
PE
162512011-04-12 Paul Eggert <eggert@cs.ucla.edu>
16252
16253 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
16254 since callers should never pass a negative size.
16255 Change the signature to match that of plain 'read' and 'write'; see
16256 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
16257 * lisp.h: Update prototypes of emacs_write and emacs_read.
16258
11997c76
EZ
162592011-04-11 Eli Zaretskii <eliz@gnu.org>
16260
16261 * xdisp.c (redisplay_window): Don't try to determine the character
16262 position of the scroll margin if the window start point w->startp
e896f03c 16263 is outside the buffer's accessible region. (Bug#8468)
11997c76 16264
8a2cbd72
EZ
162652011-04-10 Eli Zaretskii <eliz@gnu.org>
16266
16267 Fix write-region and its subroutines for buffers > 2GB.
16268 * fileio.c (a_write, e_write): Modify declaration of arguments and
16269 local variables to support buffers larger than 2GB.
16270 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
16271
16272 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
16273 argument, local variables, and return value.
16274
16275 * lisp.h: Update prototypes of emacs_write and emacs_read.
16276
16277 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
16278
4073e537 162792011-04-10 Paul Eggert <eggert@cs.ucla.edu>
eb3f1cc8 16280
1ebfdcb6
PE
16281 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
16282
b2ded58d
PE
16283 Fix more problems found by GCC 4.6.0's static checks.
16284
7d66342c
PE
16285 * xdisp.c (vmessage): Use a better test for character truncation.
16286
bbf47d44
PE
16287 * charset.c (load_charset_map): <, not <=, for optimization,
16288 and to avoid potential problems with integer overflow.
9248994d 16289 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
f9a68bc5 16290 * casetab.c (set_identity, shuffle): Likewise.
3ab1c7ce 16291 * editfns.c (Fformat): Likewise.
1e69125e 16292 * syntax.c (skip_chars): Likewise.
3befa583 16293
e3019616
PE
16294 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
16295 This also lets GCC 4.6.0 generate slightly better loop code.
16296
becfa255
PE
16297 * callint.c (Fcall_interactively): <, not <=, for optimization.
16298 (Fcall_interactively): Count the number of arguments produced,
16299 not the number of arguments given. This is simpler and lets GCC
16300 4.6.0 generate slightly better code.
16301
dae0cd48
PE
16302 * ftfont.c: Distingish more carefully between FcChar8 and char.
16303 The previous code passed unsigned char * to a functions like
16304 strlen and xstrcasecmp that expect char *, which does not
16305 conform to the C standard.
16306 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
16307 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
16308 char * when the C standard requires it.
16309
76032d70
PE
16310 * keyboard.c (read_char): Remove unused var.
16311
eb3f1cc8
PE
16312 * eval.c: Port to Windows vsnprintf (Bug#8435).
16313 Include <limits.h>.
16314 (SIZE_MAX): Define if the headers do not.
16315 (verror): Do not give up if vsnprintf returns a negative count.
16316 Instead, grow the buffer. This ports to Windows vsnprintf, which
16317 does not conform to C99. Problem reported by Eli Zaretskii.
16318 Also, simplify the allocation scheme, by avoiding the need for
16319 calling realloc, and removing the ALLOCATED variable.
16320
70476b54
PE
16321 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
16322
12020a9e
PE
16323 Remove invocations of doprnt, as Emacs now uses vsnprintf.
16324 But keep the doprint source code for now, as we might revamp it
16325 and use it again (Bug#8435).
ea6c7ae6
PE
16326 * lisp.h (doprnt): Remove.
16327 * Makefile.in (base_obj): Remove doprnt.o.
16328 * deps.mk (doprnt.o): Remove.
16329
5fdb398c
PE
16330 error: Print 32- and 64-bit integers portably (Bug#8435).
16331 Without this change, on typical 64-bit hosts error ("...%d...", N)
16332 was used to print both 32- and 64-bit integers N, which relied on
16333 undefined behavior.
61bdb816 16334 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
5fdb398c
PE
16335 * lisp.h (error, verror): Mark as printf-like functions.
16336 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
16337 Report overflow in size calculations when allocating printf buffer.
16338 Do not truncate output string at its first null byte.
16339 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
16340 Truncate the output at a character boundary, since vsnprintf does not
16341 do that.
16342 * charset.c (check_iso_charset_parameter): Convert internal
16343 character to string before calling 'error', since %c now has the
16344 printf meaning.
16345 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
16346 overflow when computing char to be passed to 'error'. Do not
16347 pass Lisp_Object to 'error'; pass the integer instead.
16348 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
16349 formatted with plain %d.
16350
b189fa66
PE
16351 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
16352
bff87ef0
PE
16353 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
16354
7e2cac20
PE
16355 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
16356
ce4d90b5
PE
16357 * xterm.c (x_catch_errors): Remove duplicate declaration.
16358
266c9547
PE
16359 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
16360
79c49ad2
PE
16361 * xdisp.c, lisp.h (message_nolog): Remove; unused.
16362
368f4090
JM
163632011-04-10 Jim Meyering <meyering@redhat.com>
16364
16365 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
16366 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
16367 return ssize_t not "int", and use size_t as the buffer length.
16368 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
16369 * gnutls.h: Update declarations.
16370 * process.c (read_process_output): Use ssize_t, to match.
16371 (send_process): Likewise.
16372
a32d4040
CY
163732011-04-09 Chong Yidong <cyd@stupidchicken.com>
16374
16375 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
16376
8546720e 163772011-04-09 Chong Yidong <cyd@stupidchicken.com>
aac0c6e3 16378
04f2d78b
CB
16379 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
16380 Use unsigned char, to match FcChar8 type definition.
aac0c6e3 16381
8546720e
GM
16382 * xterm.c (handle_one_xevent):
16383 * xmenu.c (create_and_show_popup_menu):
16384 * xselect.c (x_decline_selection_request)
16385 (x_reply_selection_request): Avoid type-punned deref of X events.
aac0c6e3 16386
0a2f5c1a 163872011-04-09 Eli Zaretskii <eliz@gnu.org>
a53e2e89
EZ
16388
16389 Fix some uses of `int' instead of EMACS_INT.
16390 * search.c (string_match_1, fast_string_match)
16391 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
16392 (scan_buffer, find_next_newline_no_quit)
16393 (find_before_next_newline, search_command, Freplace_match)
16394 (Fmatch_data): Make some `int' variables be EMACS_INT.
16395
16396 * xdisp.c (display_count_lines): 3rd argument and return value now
16397 EMACS_INT. All callers changed.
16398 (pint2hrstr): Last argument is now EMACS_INT.
16399
16400 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
16401 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
16402 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
16403 (decode_coding_utf_16, decode_coding_emacs_mule)
16404 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
16405 (decode_coding_ccl, decode_coding_charset)
16406 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
16407 (decode_coding_iso_2022, decode_coding_emacs_mule)
16408 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
16409 <char_offset, last_offset>: Declare EMACS_INT.
16410 (encode_coding_utf_8, encode_coding_utf_16)
16411 (encode_coding_emacs_mule, encode_invocation_designation)
16412 (encode_designation_at_bol, encode_coding_iso_2022)
16413 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
16414 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
16415 Declare EMACS_INT.
16416 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
16417 (encode_invocation_designation): Last argument P_NCHARS is now
16418 EMACS_INT.
16419 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
16420 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
16421
16422 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
16423 All users changed.
16424
16425 * ccl.c (Fccl_execute_on_string): Declare some variables
16426 EMACS_INT.
16427
8546720e 164282011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
0080dc6b
SS
16429
16430 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
16431
4e19a977
CS
164322011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
16433
16434 * process.c (Fformat_network_address): Doc fix.
16435
87302331
R
164362011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
16437
ee7683eb 16438 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
87302331 16439
cbb59342
CY
164402011-04-08 Chong Yidong <cyd@stupidchicken.com>
16441
16442 * keyboard.c (read_char): Call Lisp function help-form-show,
16443 instead of using internal_with_output_to_temp_buffer.
16444 (Qhelp_form_show): New var.
e0d38eeb 16445 (syms_of_keyboard): Use DEFSYM macro.
cbb59342
CY
16446
16447 * print.c (internal_with_output_to_temp_buffer): Function deleted.
16448
16449 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
16450
e67a13ab
CY
164512011-04-06 Chong Yidong <cyd@stupidchicken.com>
16452
04f2d78b
CB
16453 * process.c (Flist_processes): Remove to Lisp.
16454 (list_processes_1): Delete.
e67a13ab 16455
973f782d
EZ
164562011-04-06 Eli Zaretskii <eliz@gnu.org>
16457
7c106b1e
EZ
16458 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
16459
973f782d
EZ
16460 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
16461
41cf7d1a 164622011-04-06 Paul Eggert <eggert@cs.ucla.edu>
27ccc379 16463
ca23cc88
PE
16464 Fix more problems found by GCC 4.6.0's static checks.
16465
f390e2d5
PE
16466 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
16467
42eea0d0
PE
16468 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
16469
b69769da 16470 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
1e973bc7 16471
f9541e84
PE
16472 * xdisp.c (vmessage): Mark as a printf-like function.
16473
13841b55
PE
16474 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
16475
c136c10f
PE
16476 * sound.c (sound_warning): Don't crash if arg contains a printf format.
16477
5e2d4a30
PE
16478 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
16479 printf-like functions.
16480 (tiff_load): Add casts to remove these marks before passing them
16481 to system-supplied API.
16482
583f48b9
PE
16483 * eval.c (Fsignal): Remove excess argument to 'fatal'.
16484
b25d760e
PE
16485 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
16486 This avoids several warnings with gcc -Wstrict-overflow.
d5efd1d1
PE
16487 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
16488 directly, rather than having caller test rule sign. This avoids
16489 some unnecessary tests.
16490 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
16491 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
16492 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
b25d760e 16493
bc7b6697 16494 * xfont.c (xfont_text_extents): Remove var that was set but not used.
625a3eb1 16495 (xfont_open): Avoid unnecessary tests.
bc7b6697 16496
27ccc379
PE
16497 * composite.c (composition_gstring_put_cache): Use unsigned integer.
16498
dcd5c89a
PE
16499 * composite.h, composite.c (composition_gstring_put_cache):
16500 Use EMACS_INT, not int, for length.
16501
b13a45c6
PE
16502 * composite.h (COMPOSITION_DECODE_REFS): New macro,
16503 breaking out part of COMPOSITION_DECODE_RULE.
16504 (COMPOSITION_DECODE_RULE): Use it.
16505 * composite.c (get_composition_id): Remove unused local vars,
16506 by using the new macro.
16507
1e792e4d
PE
16508 * textprop.c (set_text_properties_1): Change while to do-while,
16509 since the condition is always true at first.
16510
dc6c6455 16511 * intervals.c (graft_intervals_into_buffer): Mark var as used.
aa86731f
PE
16512 (interval_deletion_adjustment): Return unsigned value.
16513 All uses changed.
dc6c6455 16514
aba7731a
PE
16515 * process.c (list_processes_1, create_pty, read_process_output):
16516 (exec_sentinel): Remove vars that were set but not used.
afd4052b 16517 (create_pty): Remove unnecessary "volatile"s.
bc57d757 16518 (Fnetwork_interface_info): Avoid possibility of int overflow.
82eaa333 16519 (read_process_output): Do adaptive read buffering even if carryover.
fe07cdfa 16520 (read_process_output): Simplify nbytes computation if buffered.
aba7731a 16521
fdfc4bf3
PE
16522 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
16523
fca8fe46 16524 * syntax.c (scan_words): Remove var that was set but not used.
12cbf13f 16525 (update_syntax_table): Use unsigned instead of int.
fca8fe46 16526
06a0259a 16527 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
3c346cc3 16528 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
e6eb4e9e 16529 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
06a0259a 16530
e7b9e80f
PE
16531 * print.c (print_error_message): Avoid int overflow.
16532
56201685
PE
16533 * font.c (font_list_entities): Redo for clarity,
16534 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
16535
78834453 16536 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
790771b1 16537 (font_score): Avoid potential overflow in diff calculation.
78834453 16538
0bc0b309 16539 * fns.c (substring_both): Remove var that is set but not used.
8cd55cb4 16540 (sxhash): Redo loop for clarity and to avoid wraparound warning.
0bc0b309 16541
e610eaca
PE
16542 * eval.c (funcall_lambda): Rename local to avoid shadowing.
16543
b895abce
PE
16544 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
16545 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
16546 can always succeed if overflow has undefined behavior.
16547
1f1d9321 16548 * search.c (boyer_moore, wordify): Remove vars set but not used.
6f076cc7 16549 (wordify): Omit three unnecessary tests.
1f1d9321 16550
c59478bc
PE
16551 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
16552 All callers changed. This avoids the need for an unused var.
16553
79b73827
PE
16554 * casefiddle.c (casify_region): Remove var that is set but not used.
16555
a4db5dfe
PE
16556 * dired.c (file_name_completion): Remove var that is set but not used.
16557
43aae36e
PE
16558 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
16559
2a47c44d 16560 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
163c5f32 16561 (Finsert_file_contents): Remove unnecessary code checking fd.
2a47c44d 16562
a37c69bf
PE
16563 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
16564 Check for integer overflow on size calculations.
16565
328ab8e7
PE
16566 * buffer.c (Fprevious_overlay_change): Remove var that is set
16567 but not used.
16568
e5a2a5cb
PE
16569 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
16570 Remove vars that are set but not used.
8d84a6eb 16571 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
6b043475 16572 (timer_check_2): Mark vars as initialized.
e5a2a5cb 16573
a60e5f68
PE
16574 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
16575
f661cb61 16576 * image.c (lookup_image): Remove var that is set but not used.
35fa624f 16577 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
f661cb61 16578
f0397f5a
PE
16579 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
16580 that are set but not used.
16581
8664db06 16582 * xfns.c (make_invisible_cursor): Don't return garbage
03733ee7 16583 if XCreateBitmapFromData fails (Bug#8410).
8664db06 16584
6abdaa4a
PE
16585 * xselect.c (x_get_local_selection, x_handle_property_notify):
16586 Remove vars that are set but not used.
16587
0ce7538d 16588 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
6abdaa4a 16589 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
0ce7538d 16590
9ae848fc
PE
16591 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
16592 Remove var that is set but not used.
0b918413
PE
16593 (scroll_bar_windows_size): Now size_t, not int.
16594 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
16595 Check for overflow.
9ae848fc 16596
a5a62657
PE
16597 * xfaces.c (realize_named_face): Remove vars that are set but not used.
16598 (map_tty_color) [!defined MSDOS]: Likewise.
16599
5c5cdd39
PE
16600 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
16601
66ebf983
PE
16602 * coding.c: Remove vars that are set but not used.
16603 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
16604 All callers changed.
16605 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
16606 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
16607 (decode_coding_charset): Remove vars that are set but not used.
16608
1be4d761
PE
16609 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
16610 that is set but not used.
16611
47553fa8
PE
16612 * print.c (print_object): Remove var that is set but not used.
16613
1f7196bf 16614 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
16615 The gnulib version avoids calling malloc in the usual case,
16616 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
16617 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
16618 * filelock.c (current_lock_owner): Likewise.
16619 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
16620 * sysdep.c: Include allocator.h, careadlinkat.h.
16621 (emacs_no_realloc_allocator): New static constant.
16622 (emacs_readlink): New function.
fdb61804
PE
16623 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
16624 ../lib/careadlinkat.h.
d1fdcab7 16625
f84c17c7
SM
166262011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
16627
16628 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
16629 first non-nil return value).
16630
ef3862ad
JD
166312011-04-03 Jan Djärv <jan.h.d@swipnet.se>
16632
16633 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
16634 if not defined (Bug#8403).
16635
376a7006
JB
166362011-04-02 Juanma Barranquero <lekktu@gmail.com>
16637
16638 * xdisp.c (display_count_lines): Remove parameter `start',
16639 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
16640 (get_char_face_and_encoding): Remove parameter `multibyte_p',
16641 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
16642 (fill_stretch_glyph_string): Remove parameters `row' and `area',
16643 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
16644 and thereabouts. All callers changed.
16645 (get_per_char_metric): Remove parameter `f', unused since
16646 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
16647
6ca3801d
JM
166482011-04-02 Jim Meyering <meyering@redhat.com>
16649
16650 do not dereference NULL upon failed strdup
16651 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
16652 (ns_get_family): Likewise.
16653
d8e2b5ba
JB
166542011-04-02 Juanma Barranquero <lekktu@gmail.com>
16655
16656 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
16657
8c74fcbd
JD
166582011-04-02 Jan Djärv <jan.h.d@swipnet.se>
16659
16660 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
16661 later (Bug#8403).
16662
7200d79c
SM
166632011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
16664
03408648 16665 Add lexical binding.
7200d79c 16666
03408648
SM
16667 * window.c (Ftemp_output_buffer_show): New fun.
16668 (Fsave_window_excursion):
16669 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
16670
16671 * lread.c (lisp_file_lexically_bound_p): New function.
16672 (Fload): Bind Qlexical_binding.
16673 (readevalloop): Remove `evalfun' arg.
16674 Bind Qinternal_interpreter_environment.
16675 (Feval_buffer): Bind Qlexical_binding.
16676 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
16677 Mark as dynamic.
16678 (syms_of_lread): Declare `lexical-binding'.
16679
16680 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
16681
16682 * keyboard.c (eval_dyn): New fun.
16683 (menu_item_eval_property): Use it.
ca105506
SM
16684
16685 * image.c (parse_image_spec): Use Ffunctionp.
ca105506 16686
03408648
SM
16687 * fns.c (concat, mapcar1): Accept byte-code-functions.
16688
16689 * eval.c (Fsetq): Handle lexical vars.
16690 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
16691 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
16692 (FletX, Flet): Obey lexical binding.
16693 (Fcommandp): Handle closures.
16694 (Feval): New `lexical' arg.
16695 (eval_sub): New function extracted from Feval. Use it almost
16696 everywhere where Feval was used. Look up vars in lexical env.
16697 Handle closures.
16698 (Ffunctionp): Move from subr.el.
16699 (Ffuncall): Handle closures.
16700 (apply_lambda): Remove `eval_flags'.
16701 (funcall_lambda): Handle closures and new byte-code-functions.
16702 (Fspecial_variable_p): New function.
16703 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
16704 but without exporting it to Lisp.
23aba0ea 16705
23aba0ea 16706 * doc.c (Fdocumentation, store_function_docstring):
03408648 16707 * data.c (Finteractive_form): Handle closures.
23aba0ea 16708
03408648
SM
16709 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
16710 interactive spec.
ba83908c 16711
04f2d78b
CB
16712 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
16713 New byte-codes.
03408648
SM
16714 (exec_byte_code): New function extracted from Fbyte_code to handle new
16715 calling convention for byte-code-functions. Add new byte-codes.
ba83908c 16716
03408648 16717 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
e2abe5a1 16718
03408648 16719 * alloc.c (Fmake_symbol): Init new `declared_special' field.
e2abe5a1 16720
e2abce01
JB
167212011-03-31 Juanma Barranquero <lekktu@gmail.com>
16722
16723 * xdisp.c (redisplay_internal): Fix prototype.
16724
63696a73 167252011-03-31 Eli Zaretskii <eliz@gnu.org>
09725d26 16726
63696a73 16727 * xdisp.c (SCROLL_LIMIT): New macro.
04f2d78b
CB
16728 (try_scrolling): Use it when setting scroll_limit.
16729 Limit scrolling to 100 screen lines.
63696a73
EZ
16730 (redisplay_window): Even when falling back on "recentering",
16731 position point in the window according to scroll-conservatively,
16732 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
16733
16734 (try_scrolling): When point is above the window, allow searching
16735 as far as scroll_max, or one screenful, to compute vertical
16736 distance from PT to the scroll margin position. This prevents
16737 try_scrolling from unnecessarily failing when
16738 scroll-conservatively is set to a value slightly larger than the
16739 window height. Clean up the case of PT below the margin at bottom
16740 of window: scroll_max can no longer be INT_MAX. When aggressive
16741 scrolling is in use, don't let point enter the opposite scroll
16742 margin as result of the scroll.
16743 (syms_of_xdisp) <scroll-conservatively>: Document the
09725d26
EZ
16744 threshold of 100 lines for never-recentering scrolling.
16745
e4cc2dfc
JB
167462011-03-31 Juanma Barranquero <lekktu@gmail.com>
16747
16748 * dispextern.h (move_it_by_lines):
16749 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
16750 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
16751 (message_log_check_duplicate): Remove parameters `prev_bol' and
16752 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
16753 (redisplay_internal): Remove parameter `preserve_echo_area',
16754 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
16755
16756 * indent.c (Fvertical_motion):
16757 * window.c (window_scroll_pixel_based, Frecenter):
16758 Don't pass `need_y_p' to `move_it_by_lines'.
16759
1c470562
SM
167602011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
16761
44f230aa
SM
16762 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
16763 steal a few bits to be more compact.
16764 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
16765 Remove unneeded casts.
16766
1c470562
SM
16767 * bytecode.c (Fbyte_code): CAR and CDR can GC.
16768
888adce9
ZK
167692011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
16770
16771 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
16772 binding" message (bug#7967).
16773
f838ed7b
PE
167742011-03-30 Paul Eggert <eggert@cs.ucla.edu>
16775
77861b95
PE
16776 Fix more problems found by GCC 4.6.0's static checks.
16777
de6dbc14
PE
16778 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
16779 Remove unused local var.
16780
f838ed7b
PE
16781 * editfns.c (Fmessage_box): Remove unused local var.
16782
792c7b2b
PE
16783 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
16784 (note_mode_line_or_margin_highlight, note_mouse_highlight):
16785 Omit unused local vars.
c499e557 16786 * window.c (shrink_windows): Omit unused local var.
b01a1c29 16787 * menu.c (digest_single_submenu): Omit unused local var.
0bc32927
PE
16788 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
16789 Omit unused local var.
16790
ba0165e1
PE
16791 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
16792 Don't assume string length fits in int.
32ad8845 16793 (keyremap_step, read_key_sequence): Use size_t for sizes.
48011560 16794 (read_key_sequence): Don't check last_real_key_start redundantly.
ba0165e1 16795
3c59b4c9
PE
16796 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
16797 instead of alloca (Bug#8344).
16798
a3eed478 16799 * eval.c (Fbacktrace): Don't assume nargs fits in int.
5d5d959d 16800 (Fbacktrace_frame): Don't assume nframes fits in int.
a3eed478 16801
eb4d412d
PE
16802 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
16803
1658b401
PE
16804 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
16805 concerns.
16806
16807 * term.c (produce_glyphless_glyph): Remove unnecessary test.
16808
16809 * cm.c (calccost): Turn while-do into do-while, for clarity.
44f730c8 16810
9a2c6e05
PE
16811 * keyboard.c (syms_of_keyboard): Use the same style as later
16812 in this function when indexing through an array. This also
16813 works around GCC bug 48267.
16814
03d0a109
PE
16815 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
16816
44f730c8
PE
16817 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
16818
fe75f926
PE
16819 * chartab.c (sub_char_table_ref_and_range): Redo for slight
16820 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
16821
ffa8c828
PE
16822 * keyboard.c, keyboard.h (num_input_events): Now size_t.
16823 This avoids undefined behavior on integer overflow, and is a bit
16824 more convenient anyway since it is compared to a size_t variable.
16825
c5101a77
PE
16826 Variadic C functions now count arguments with size_t, not int.
16827 This avoids an unnecessary limitation on 64-bit machines, which
16828 caused (substring ...) to crash on large vectors (Bug#8344).
16829 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
16830 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
77861b95 16831 All variadic functions and their callers changed accordingly.
c5101a77
PE
16832 (struct gcpro.nvars): Now size_t, not int. All uses changed.
16833 * data.c (arith_driver, float_arith_driver): Likewise.
16834 * editfns.c (general_insert_function): Likewise.
16835 * eval.c (struct backtrace.nargs, interactive_p)
16836 (internal_condition_case_n, run_hook_with_args, apply_lambda)
16837 (funcall_lambda, mark_backtrace): Likewise.
16838 * fns.c (concat): Likewise.
16839 * frame.c (x_set_frame_parameters): Likewise.
16840 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
16841 0 if not found, not -1. All callers changed.
16842
dd3f25f7
PE
16843 * alloc.c (garbage_collect): Don't assume stack size fits in int.
16844 (stack_copy_size): Now size_t, not int.
16845 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
16846
461c2ab9
JB
168472011-03-28 Juanma Barranquero <lekktu@gmail.com>
16848
16849 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
16850 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
16851 All callers changed.
16852
16853 * lisp.h (multibyte_char_to_unibyte):
16854 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
16855 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
16856 * character.h (CHAR_TO_BYTE8):
16857 * cmds.c (internal_self_insert):
16858 * editfns.c (general_insert_function):
16859 * keymap.c (push_key_description):
16860 * search.c (Freplace_match):
16861 * xdisp.c (message_dolog, set_message_1): All callers changed.
16862
f6d62986
SM
168632011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
16864
16865 * keyboard.c (safe_run_hook_funcall): New function.
16866 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
16867 don't set the hook to nil, but remove the offending function instead.
16868 (Qcommand_hook_internal): Remove, unused.
16869 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
16870 Vcommand_hook_internal.
16871
16872 * eval.c (enum run_hooks_condition): Remove.
16873 (funcall_nil, funcall_not): New functions.
16874 (run_hook_with_args): Call each function through a `funcall' argument.
16875 Remove `cond' argument, now redundant.
16876 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
16877 (Frun_hook_with_args_until_failure): Adjust accordingly.
16878 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
16879
1db5b1ad
JB
168802011-03-28 Juanma Barranquero <lekktu@gmail.com>
16881
16882 * dispextern.h (string_buffer_position): Remove declaration.
16883
16884 * print.c (strout): Remove parameter `multibyte', unused since
16885 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
16886
16887 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
16888 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
16889 All callers changed.
16890
16891 * w32.c (_wsa_errlist): Use braces for struct initializers.
16892
16893 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
16894 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
16895 All callers changed.
16896 (string_buffer_position): Likewise. Also, make static (it's never
16897 used outside xdisp.c).
16898 (cursor_row_p): Remove parameter `w', unused since
16899 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
16900 (decode_mode_spec): Remove parameter `precision', introduced during
16901 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
16902 All callers changed.
16903
5ffb62aa
JD
169042011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16905
16906 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
16907
461c2ab9 169082011-03-27 Anders Lindgren <andlind@gmail.com>
f0a1382a
JD
16909
16910 * nsterm.m (ns_menu_bar_is_hidden): New variable.
16911 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
16912 (ns_update_auto_hide_menu_bar): New functions.
16913 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
16914 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
16915 ns_constrain_all_frames.
16916 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
16917 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
16918
5c380ffb
JD
169192011-03-27 Jan Djärv <jan.h.d@swipnet.se>
16920
16921 * nsmenu.m (runDialogAt): Remove argument to timer_check.
16922
9af30bdf
GM
169232011-03-27 Glenn Morris <rgm@gnu.org>
16924
16925 * syssignal.h: Replace RETSIGTYPE with void.
16926 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
16927 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
16928 Replace SIGTYPE with void everywhere.
16929 * s/usg5-4-common.h (SIGTYPE): Remove definition.
16930 * s/template.h (SIGTYPE): Remove commented out definition.
16931
e2abce01
JB
169322011-03-26 Eli Zaretskii <eliz@gnu.org>
16933
16934 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
16935 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
16936
f868cd8a
JB
169372011-03-26 Juanma Barranquero <lekktu@gmail.com>
16938
59eb0929
JB
16939 * w32.c (read_unc_volume): Use parameter `henum', instead of
16940 global variable `wget_enum_handle'.
16941
16942 * keymap.c (describe_vector): Remove parameters `indices' and
16943 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
16944 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
16945
f868cd8a
JB
16946 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
16947
16948 * keyboard.c (timer_check): Remove parameter `do_it_now',
16949 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
16950 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
16951 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
16952
16953 * keyboard.c (read_char):
16954 * w32menu.c (w32_menu_display_help):
16955 * xmenu.c (show_help_event, menu_help_callback):
16956 Adjust calls to `show_help_echo'.
16957
16958 * gtkutil.c (xg_maybe_add_timer):
16959 * keyboard.c (readable_events):
16960 * process.c (wait_reading_process_output):
16961 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
16962
16963 * insdel.c (adjust_markers_gap_motion):
16964 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
16965 (gap_left, gap_right): Don't call it.
16966
2ecf6fdb
CY
169672011-03-25 Chong Yidong <cyd@stupidchicken.com>
16968
16969 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
16970 incurred during fontification.
16971
6b1f9ba4
JB
169722011-03-25 Juanma Barranquero <lekktu@gmail.com>
16973
16974 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
16975 (DEFVAR_PER_BUFFER): Don't pass it.
16976
16977 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
16978 (scrolling_window): Don't pass it.
16979
0f4a96b5
JB
169802011-03-25 Juanma Barranquero <lekktu@gmail.com>
16981
16982 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
16983
16984 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
16985 and `suffix'.
16986 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
16987 of variables specific to SELinux and computation of `encoded_absname'.
16988
16989 * image.c (XPutPixel): Remove unused variable `height'.
16990
16991 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
16992
16993 * unexw32.c (get_section_info): Remove unused variable `section'.
16994
16995 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
16996 (system_process_attributes): Remove unused variable `sess'.
16997 (sys_read): Remove unused variable `err'.
16998
16999 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
17000 (w32_wnd_proc): Remove unused variable `isdead'.
17001 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
17002 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
17003 (x_create_tip_frame): Remove unused variable `tem'.
17004
17005 * w32inevt.c (w32_console_read_socket):
17006 Remove unused variable `no_events'.
17007
17008 * w32term.c (x_draw_composite_glyph_string_foreground):
17009 Remove unused variable `width'.
17010
1149507c
JB
170112011-03-24 Juanma Barranquero <lekktu@gmail.com>
17012
17013 * w32term.c (x_set_glyph_string_clipping):
17014 Don't pass uninitialized region to CombineRgn.
17015
9c88f339
JB
170162011-03-23 Juanma Barranquero <lekktu@gmail.com>
17017
17018 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
17019 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
17020 (Fx_close_connection): Remove unused variable `i'.
17021
17022 * w32font.c (w32font_draw): Return number of glyphs.
17023 (w32font_open_internal): Remove unused variable `i'.
17024 (w32font_driver): Add missing initializer.
17025
17026 * w32menu.c (utf8to16): Remove unused variable `utf16'.
17027 (fill_in_menu): Remove unused variable `items_added'.
17028
17029 * w32term.c (last_mouse_press_frame): Remove static global variable.
17030 (w32_clip_to_row): Remove unused variable `f'.
17031 (x_delete_terminal): Remove unused variable `i'.
17032
17033 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
17034 (NOTHING): Remove unused static global variable.
17035 (uniscribe_check_otf): Remove unused variable `table'.
17036 (uniscribe_font_driver): Add missing initializers.
17037
dee091a3
JD
170382011-03-23 Julien Danjou <julien@danjou.info>
17039
17040 * term.c (Fsuspend_tty, Fresume_tty):
17041 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
17042 * window.c (temp_output_buffer_show):
17043 * insdel.c (signal_before_change):
17044 * frame.c (Fhandle_switch_frame):
17045 * fileio.c (Fdo_auto_save):
17046 * emacs.c (Fkill_emacs):
17047 * editfns.c (save_excursion_restore):
17048 * cmds.c (internal_self_insert):
17049 * callint.c (Fcall_interactively):
17050 * buffer.c (Fkill_all_local_variables):
17051 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
17052 Use Frun_hooks.
0f4a96b5 17053 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
e9fce1ac 17054 unconditionally since it does the check itself.
dee091a3 17055
2c520ab5 170562011-03-23 Paul Eggert <eggert@cs.ucla.edu>
f0641eff 17057
c9c49752
PE
17058 Fix more problems found by GCC 4.5.2's static checks.
17059
8abc3f12
PE
17060 * coding.c (encode_coding_raw_text): Avoid unnecessary test
17061 the first time through the loop, since we know p0 < p1 then.
17062 This also avoids a gcc -Wstrict-overflow warning.
17063
a2d26660
PE
17064 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
17065 leading to a memory leak, possible in functions like
17066 load_charset_map_from_file that can allocate an unbounded number
b12ef411 17067 of objects (Bug#8318).
a2d26660 17068
916c72e9
PE
17069 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
17070 that could (at least in theory) be that large.
17071
19ab8a18
PE
17072 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
17073 This is less likely to overflow, and avoids undefined behavior if
17074 overflow does occur. All callers changed. Use strtoul to scan
17075 for the unsigned long integer.
b7cbbd6f
PE
17076 (pint2hrstr): Simplify and tune code slightly.
17077 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19ab8a18 17078
f0641eff
PE
17079 * scroll.c (do_scrolling): Work around GCC bug 48228.
17080 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
17081
7f650bb9
PE
17082 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
17083 This also avoids a warning with gcc -Wstrict-overflow.
39f5e519
PE
17084 (validate_x_resource_name): Simplify count usage.
17085 This also avoids a warning with gcc -Wstrict-overflow.
7f650bb9 17086
37dd57d1
PE
17087 * fileio.c (Fcopy_file): Report error if fchown or fchmod
17088 fail (Bug#8306).
81e56e61 17089
699979fc 17090 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
dc1ca6a8 17091
401bf9b4
PE
17092 * process.c (Fmake_network_process): Use socklen_t, not int,
17093 where POSIX says socklen_t is required in portable programs.
17094 This fixes a porting bug on hosts like 64-bit HP-UX, where
591b2973 17095 socklen_t is wider than int (Bug#8277).
401bf9b4
PE
17096 (Fmake_network_process, server_accept_connection):
17097 (wait_reading_process_output, read_process_output):
17098 Likewise.
17099
b93aacde
PE
17100 * process.c: Rename or move locals to avoid shadowing.
17101 (list_processes_1, Fmake_network_process):
17102 (read_process_output_error_handler, exec_sentinel_error_handler):
17103 Rename or move locals.
4dc343ee 17104 (Fmake_network_process): Define label "retry_connect" only if needed.
0da49335 17105 (Fnetwork_interface_info): Fix pointer signedness.
f990b4e5 17106 (process_send_signal): Add cast to avoid pointer signedness problem.
7b808126 17107 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
c939f91b 17108 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
b93aacde 17109
af8a867c 17110 Make tparam.h and terminfo.c consistent.
44f230aa
SM
17111 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
17112 Include tparam.h instead, since it declares them.
af8a867c
PE
17113 * cm.h (PC): Remove extern decl; tparam.h now does this.
17114 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
17115 * terminfo.c: Include tparam.h, to check interfaces.
17116 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
17117 (tparam): Adjust signature to match interface in tparam.h;
17118 this removes some undefined behavior. Check that outstring and len
17119 are zero, which they always are with Emacs.
17120 * tparam.h (PC, BC, UP): New extern decls.
17121
0248044d 17122 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
001a7ab4 17123 (xftfont_open): Rename locals to avoid shadowing.
0248044d 17124
8ff096c1 17125 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
a00924bb
PE
17126 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
17127 (OTF_TAG_SYM): Omit macro if not needed.
e932860f 17128 (ftfont_list): Remove unused local.
49eaafba
PE
17129 (get_adstyle_property, ftfont_pattern_entity):
17130 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
17131 Rename locals to avoid shadowing.
8ff096c1 17132
e2be39f6
PE
17133 * xfont.c (xfont_list_family): Mark var as initialized.
17134
c9735e30
PE
17135 * xml.c (make_dom): Now static.
17136
8f5201ae
PE
17137 * composite.c (composition_compute_stop_pos): Rename local to
17138 avoid shadowing.
b246f932
PE
17139 (composition_reseat_it): Remove unused locals.
17140 (find_automatic_composition, composition_adjust_point): Likewise.
80e079b2 17141 (composition_update_it): Mark var as initialized.
11b61122
PE
17142 (find_automatic_composition): Mark vars as initialized,
17143 with a FIXME (Bug#8290).
8f5201ae 17144
760fbc2c
PE
17145 character.h: Rename locals to avoid shadowing.
17146 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
17147 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
17148 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
17149 (BUF_DEC_POS): Be more systematic about renaming local temporaries
17150 to avoid shadowing.
17151
ff08eb85
PE
17152 * textprop.c (property_change_between_p): Remove; unused.
17153
fc7bf025
PE
17154 * intervals.c (interval_start_pos): Now static.
17155
235d7abc
PE
17156 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
17157
44f230aa
SM
17158 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
17159 Rename locals to avoid shadowing.
3e7d6594 17160
50060332
PE
17161 * sound.c (wav_play, au_play, Fplay_sound_internal):
17162 Fix pointer signedness.
d01f234b 17163 (alsa_choose_format): Remove unused local var.
c83b8872
PE
17164 (wav_play): Initialize a variable to 0, to prevent undefined
17165 behavior (Bug#8278).
50060332 17166
c4fc4e30
PE
17167 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
17168
918436ed
PE
17169 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
17170
c939f91b
PE
17171 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
17172 clobbering (Bug#8298).
b9c7f648
PE
17173 * sysdep.c (sys_subshell): Likewise.
17174 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
7e9123a2 17175
6bd8c144
PE
17176 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
17177 This should get cleaned up, so that child_setup has the
17178 same signature on all platforms.
17179
7710357c 17180 * callproc.c (call_process_cleanup): Now static.
cb1d0ef7 17181 (relocate_fd): Rename locals to avoid shadowing.
7710357c 17182
c59da222
CY
171832011-03-22 Chong Yidong <cyd@stupidchicken.com>
17184
17185 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
17186 not to be necessary, and produces flickering.
17187
66b87493
GM
171882011-03-20 Glenn Morris <rgm@gnu.org>
17189
17190 * config.in: Remove file.
17191
45b6f6d5
JB
171922011-03-20 Juanma Barranquero <lekktu@gmail.com>
17193
17194 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
17195 are now in src/globals.h.
17196 (syms_of_minibuf): Remove spurious & from previous change.
17197
cd394be1 171982011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
17199
17200 * minibuf.c (completing-read-function): New variable.
17201 (completing-read-default): Rename from completing-read.
17202 (completing-read): Call completing-read-function.
17203
b14e3e21
CY
172042011-03-19 Juanma Barranquero <lekktu@gmail.com>
17205
17206 * xfaces.c (Fx_load_color_file):
17207 Read color file from absolute filename (bug#8250).
17208
f2b726e6
JB
172092011-03-19 Juanma Barranquero <lekktu@gmail.com>
17210
17211 * makefile.w32-in: Update dependencies.
17212
09f6ff02
EZ
172132011-03-17 Eli Zaretskii <eliz@gnu.org>
17214
17215 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
17216
29a6015a
PE
172172011-03-17 Paul Eggert <eggert@cs.ucla.edu>
17218
a3a6c54e
PE
17219 Fix more problems found by GCC 4.5.2's static checks.
17220
b766f867
PE
17221 * process.c (make_serial_process_unwind, send_process_trap):
17222 (sigchld_handler): Now static.
17223
be02381c
PE
17224 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
17225 That way, the code declares only the vars that it needs.
17226 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
17227 * s/cygwin.h (PTY_ITERATION): Likewise.
17228 * s/darwin.h (PTY_ITERATION): Likewise.
17229 * s/gnu-linux.h (PTY_ITERATION): Likewise.
17230
57048744
PE
17231 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
17232 * process.c (allocate_pty): Don't declare stb unless it's needed.
17233
7914961c 17234 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
615f2d59
PE
17235 (CONSTANTLIM): Remove; unused.
17236 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
17237 Define only if needed.
7914961c 17238
b3967b18
PE
17239 * unexelf.c (unexec): Name an expression,
17240 to avoid gcc -Wbad-function-cast warning.
9ae71512
PE
17241 Use a different way to cause a compilation error if anyone uses
17242 n rather than nn, a way that does not involve shadowing.
73366a00 17243 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
b3967b18 17244
29a6015a
PE
17245 * deps.mk (unexalpha.o): Remove; unused.
17246
43cfc33e 17247 New file unexec.h, the (simple) interface for unexec (Bug#8267).
7feda0d2 17248 * unexec.h: New file.
ce701a33
PE
17249 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
17250 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
17251 Depend on unexec.h.
17252 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
17253 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
17254 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
381259ef 17255 Change as necessary to match prototype in unexec.h.
ce701a33 17256
01f44d5a
PE
17257 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
17258 shadowing.
4f63c6bb 17259 (back_comment, skip_chars): Mark vars as initialized.
01f44d5a 17260
a6670b0b
PE
17261 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
17262 Rename locals to avoid shadowing.
17263
cef2010d 17264 * lread.c (read1): Rewrite so as not to use empty "else".
0902fe45 17265 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
cef2010d 17266
d4d7173a
PE
17267 * print.c (Fredirect_debugging_output): Fix pointer signedess.
17268
f08b802a
PE
17269 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
17270 warning when compiling print.c.
17271
3ddb0639
PE
17272 * font.c (font_unparse_fcname): Abort in an "impossible" situation
17273 instead of using an uninitialized var.
5ad03b97 17274 (font_sort_entities): Mark var as initialized.
3ddb0639 17275
170a2692
PE
17276 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
17277
e663c700
PE
17278 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
17279 pointers to constants.
89bc529a 17280 (font_parse_fcname): Remove unused vars.
7b81e2d0 17281 (font_delete_unmatched): Now static.
ea838e10 17282 (font_get_spec): Remove; unused.
13a547c6
PE
17283 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
17284 (font_update_drivers, Ffont_get_glyphs, font_add_log):
17285 Rename or move locals to avoid shadowing.
e663c700 17286
2a80c887 17287 * fns.c (require_nesting_list, require_unwind): Now static.
612f56df 17288 (Ffillarray): Rename locals to avoid shadowing.
2a80c887 17289
1384fa33 17290 * floatfns.c (domain_error2): Define only if needed.
a885e2ed 17291 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
1384fa33 17292
8b2c52e9
PE
17293 * alloc.c (mark_backtrace): Move decl from here ...
17294 * lisp.h: ... to here, so that it can be checked.
17295
475545b5 17296 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
d28a2170 17297 (Fdefvar): Rewrite so as not to use empty "else".
cfcbfb1a
PE
17298 (lisp_indirect_variable): Name an expression,
17299 to avoid gcc -Wbad-function-cast warning.
1faed8ae 17300 (Fdefvar): Rename locals to avoid shadowing.
475545b5 17301
b1349114 17302 * callint.c (quotify_arg, quotify_args): Now static.
a3e8cbda 17303 (Fcall_interactively): Rename locals to avoid shadowing.
b0e80955 17304 Use const pointer when appropriate.
b1349114 17305
a2928364
PE
17306 * lisp.h (get_system_name, get_operating_system_release):
17307 Move decls here, to check interfaces.
17308 * process.c (get_operating_system_release): Move decl to lisp.h.
17309 * xrdb.c (get_system_name): Likewise.
63c5d10b
PE
17310 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
17311 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
17312 some of which prompt warnings from gcc -Wbad-function-cast.
545b49b4
PE
17313 (Fformat_time_string, Fencode_time, Finsert_char):
17314 (Ftranslate_region_internal, Fformat):
17315 Rename or remove local vars to avoid shadowing.
9710023e 17316 (Ftranslate_region_internal): Mark var as initialized.
63c5d10b 17317
a415e694
PE
17318 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
17319 avoid shadowing.
17320
8ef4622d
PE
17321 * lisp.h (eassert): Check that the argument compiles, even if
17322 ENABLE_CHECKING is not defined.
17323
946f9a5b
PE
17324 * data.c (Findirect_variable): Name an expression, to avoid
17325 gcc -Wbad-function-cast warning.
112396d6 17326 (default_value, arithcompare, arith_driver, arith_error): Now static.
b9b84fa9 17327 (store_symval_forwarding): Rename local to avoid shadowing.
44f230aa
SM
17328 (Fmake_variable_buffer_local, Fmake_local_variable):
17329 Mark variables as initialized.
52746918 17330 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
946f9a5b 17331
e5aab7e7 17332 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
ae35e756
PE
17333 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
17334 Rename locals to avoid shadowing.
dff45157
PE
17335 (mark_stack): Move local variables into the #ifdef region where
17336 they're used.
7bc26fdb
PE
17337 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
17338 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
17339 needed otherwise.
17340 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
17341 (GC_STRING_CHARS): Remove; not used.
d40d4be1 17342 (Fmemory_limit): Cast sbrk's returned value to char *.
ae35e756 17343
e5aab7e7
PE
17344 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
17345 avoids undefined behavior in theory.
17346
4da60324
PE
17347 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
17348
88043301
PE
17349 Use functions, not macros, for up- and down-casing (Bug#8254).
17350 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
17351 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
17352 to use the following functions instead of these macros.
17353 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
17354 EMACS_INT, since callers assume the returned value fits in int.
17355 (upcase1): Likewise, for UPCASE_TABLE.
17356 (uppercasep, lowercasep, upcase): New static inline functions.
0da09c43 17357 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
db69b0cd 17358 the race-condition problem in the old DOWNCASE.
88043301 17359
19ed5445
PE
17360 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
17361 Rename locals to avoid shadowing.
17362 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
abbd1bcf
PE
17363 (regex_compile, re_search_2, re_match_2_internal):
17364 Remove unused local vars.
952db0d7
PE
17365 (FREE_VAR): Rewrite so as not to use empty "else",
17366 which gcc can warn about.
da053e48 17367 (regex_compile, re_match_2_internal): Mark locals as initialized.
b313f9d8
PE
17368 (RETALLOC_IF): Define only if needed.
17369 (WORDCHAR_P): Likewise. This one is never needed, but is used
17370 only in a comment talking about a compiler bug, so put inside
17371 the #if 0 of that comment.
17372 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
17373 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
17374 Remove; unused.
19ed5445 17375
1f3561e4 17376 * search.c (boyer_moore): Rename locals to avoid shadowing.
76ef09b7
PE
17377 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
17378 (PREV_CHAR_BOUNDARY): Likewise.
1f3561e4 17379
ded6f8f7
PE
17380 * search.c (simple_search): Remove unused var.
17381
dbd37a95
PE
17382 * dired.c (compile_pattern): Move decl from here ...
17383 * lisp.h: ... to here, so that it can be checked.
17384 (struct re_registers): New forward decl.
17385
7e47afad
PE
17386 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
17387
85f24f61
PE
17388 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
17389 All uses changed.
17390 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
17391 Rename locals to avoid shadowing.
5671df8f 17392 (Fvertical_motion): Mark locals as initialized.
85f24f61 17393
181aa2be 17394 * casefiddle.c (casify_object, casify_region): Now static.
e45a141a 17395 (casify_region): Mark local as initialized.
181aa2be 17396
930d429c
PE
17397 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
17398
7082eac6
PE
17399 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
17400 New macros, so that the caller can use some names other than
17401 gcpro1, gcpro2, etc.
17402 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
17403 of the new macros.
17404 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
17405 argument, for consistency with GCPRO2_VAR, etc: it is now the
17406 prefix of the variable, not the variable itself. All uses
17407 changed.
38b2c076
PE
17408 * dired.c (directory_files_internal, file_name_completion):
17409 Rename locals to avoid shadowing.
17410
15206ed9
PE
17411 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
17412 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
17413 dired.c's scmp function, had undefined behavior.
17414 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
17415 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
17416 * buffer.h: ... to here, because these macros use current_buffer,
17417 and the new implementation with inline functions needs to have
17418 current_buffer in scope now, rather than later when the macros
17419 are used.
17420 (downcase, upcase1): New static inline functions.
17421 (DOWNCASE, UPCASE1): Reimplement using these functions.
17422 This avoids undefined behavior in expressions like
17423 DOWNCASE (x) == DOWNCASE (y), which previously suffered
17424 from race conditions in accessing the global variables
17425 case_temp1 and case_temp2.
17426 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
17427 * lisp.h (case_temp1, case_temp2): Remove their decls.
17428 * character.h (ASCII_CHAR_P): Move from here ...
17429 * lisp.h: ... to here, so that the inline functions mentioned
17430 above can use them.
17431
4a6bea26
PE
17432 * dired.c (directory_files_internal_unwind): Now static.
17433
f14b7e14
PE
17434 * fileio.c (file_name_as_directory, directory_file_name):
17435 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
17436 Now static.
2893f146
PE
17437 (file_name_as_directory): Use const pointers when appropriate.
17438 (Fexpand_file_name): Likewise. In particular, newdir might
17439 point at constant storage, so make it a const pointer.
fd4ead52 17440 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
b14aac08
PE
17441 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
17442 signedness issues.
f839df0c
PE
17443 (Fset_file_times, Finsert_file_contents, auto_save_error):
17444 Rename locals to avoid shadowing.
f14b7e14 17445
5716756e 17446 * minibuf.c (choose_minibuf_frame_1): Now static.
62137a95
PE
17447 (Ftry_completion, Fall_completions): Rename or remove locals
17448 to avoid shadowing.
5716756e 17449
b4c3046a
PE
17450 * marker.c (bytepos_to_charpos): Remove; unused.
17451
b45db522
PE
17452 * lisp.h (verify_bytepos, count_markers): New decls,
17453 so that gcc does not warn that these functions aren't declared.
17454
85876d07
PE
17455 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
17456 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
f0cb4a60 17457 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
40ef059e 17458 (copy_text): Remove unused local var.
85876d07 17459
03d78a21 17460 * filelock.c (within_one_second): Now static.
b3dd38ab 17461 (lock_file_1): Rename local to avoid shadowing.
03d78a21 17462
5df8f01b
PE
17463 * buffer.c (fix_overlays_before): Mark locals as initialized.
17464 (fix_start_end_in_overlays): Likewise. This function should be
17465 simplified by using pointers-to-pointers, but that's a different
17466 matter.
b1d876f1 17467 (switch_to_buffer_1): Now static.
8f54f30a
PE
17468 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
17469 (report_overlay_modification): Rename locals to avoid shadowing.
c3bd59b5 17470
a70072c9 17471 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
fbd02d7b 17472 Fix pointer signedness issue.
edced198
PE
17473 (sys_subshell): Mark local as volatile if checking for lint,
17474 to suppress a gcc -Wclobbered warning that does not seem to be right.
15dfd3d9 17475 (MAXPATHLEN): Define only if needed.
a70072c9 17476
a0977c44
PE
17477 * process.c (serial_open, serial_configure): Move decls from here ...
17478 * systty.h: ... to here, so that they can be checked.
17479
a884fdcc
PE
17480 * fns.c (get_random, seed_random): Move extern decls from here ...
17481 * lisp.h: ... to here, so that they can be checked.
17482
604efe86 17483 * sysdep.c (reset_io): Now static.
b8950c94 17484 (wait_for_termination_signal): Remove; unused.
604efe86 17485
38fc62d9
PE
17486 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
17487 (copy_keymap_item, append_key, push_text_char_description):
17488 Now static.
1004a21a 17489 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
dbbb8427 17490 (DENSE_TABLE_SIZE): Remove; unused.
c1141155
PE
17491 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
17492 (describe_map_tree):
17493 Rename locals to avoid shadowing.
38fc62d9 17494
2f2650da
PE
17495 * keyboard.c: Declare functions static if they are not used elsewhere.
17496 (echo_char, echo_dash, cmd_error, top_level_2):
17497 (poll_for_input, handle_async_input): Now static.
69a058fa
PE
17498 (read_char, kbd_buffer_get_event, make_lispy_position):
17499 (make_lispy_event, make_lispy_movement, apply_modifiers):
17500 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
17501 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
17502 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
c8a06054 17503 (read_key_sequence, read_char): Mark locals as initialized.
3ac94672 17504 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
2f2650da 17505
a053e86c 17506 * keyboard.h (make_ctrl_char): New decl.
da2f2dd9
PE
17507 (mark_kboards): Move decl here ...
17508 * alloc.c (mark_kboards): ... from here.
a053e86c 17509
4752793e
PE
17510 * lisp.h (force_auto_save_soon): New decl.
17511
74f10ca7 17512 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
244fc23d
PE
17513 (DEFINE_DUMMY_FUNCTION): New macro.
17514 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
17515 Use it.
c03cd23f
PE
17516 (main): Add casts to avoid warnings
17517 if GCC considers string literals to be constants.
74f10ca7 17518
022e70d4
PE
17519 * lisp.h (fatal_error_signal): Add decl, since it's exported.
17520
59d6fe83
PE
17521 * dbusbind.c: Pointer signedness fixes.
17522 (xd_signature, xd_append_arg, xd_initialize):
17523 (Fdbus_call_method, Fdbus_call_method_asynchronously):
17524 (Fdbus_method_return_internal, Fdbus_method_error_internal):
17525 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
17526 (Fdbus_register_signal): Use SSDATA when the context wants char *.
17527
78320123
PE
17528 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
17529 if GCC considers string literals to be constants.
49cebcca 17530 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
78320123 17531
35ac2a97
SM
175322011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
17533
fb103ca9
SM
17534 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
17535 (print_preprocess, print_object): New macro to fix last change.
17536
35ac2a97
SM
17537 * print.c (print_preprocess): Don't forget font objects.
17538
62973b41
JB
175392011-03-16 Juanma Barranquero <lekktu@gmail.com>
17540
17541 * emacs.c (USAGE3): Doc fixes.
17542
0e48bb22
AS
175432011-03-15 Andreas Schwab <schwab@linux-m68k.org>
17544
17545 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
17546 structure.
17547
7684e57b
JB
175482011-03-14 Juanma Barranquero <lekktu@gmail.com>
17549
17550 * lisp.h (VWindow_system, Qfile_name_history):
17551 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
17552 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
17553 (w32_system_caret_x, w32_system_caret_y): Declare extern.
17554
17555 * w32select.c: Don't #include "keyboard.h".
c96bbc66 17556 (run_protected): Add extern declaration for waiting_for_input.
7684e57b
JB
17557
17558 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
17559 * w32console.c (detect_input_pending, read_input_pending)
17560 (encode_terminal_code):
17561 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
17562 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
17563 (w32_system_caret_y, Qfile_name_history):
17564 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
17565 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
17566 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
17567 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
17568 * w32proc.c (Qlocal, report_file_error):
17569 * w32term.c (Vwindow_system, updating_frame):
17570 * w32uniscribe.c (initialized, uniscribe_font_driver):
17571 Remove unneeded extern declarations.
17572
2aa46d6c
CY
175732011-03-14 Chong Yidong <cyd@stupidchicken.com>
17574
c96bbc66 17575 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
2aa46d6c 17576
cffc6f3b
CY
175772011-03-13 Chong Yidong <cyd@stupidchicken.com>
17578
17579 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
17580 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
17581 These macros can no longer be used for assignment.
17582
44f230aa
SM
17583 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
17584 Assign struct members directly, instead of using BUF_BEGV etc.
cffc6f3b
CY
17585 (record_buffer_markers, fetch_buffer_markers): New functions for
17586 recording and fetching special buffer markers.
17587 (set_buffer_internal_1, set_buffer_temp): Use them.
17588
17589 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
17590
17591 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
17592
17593 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
17594 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
17595
17596 * xdisp.c (hscroll_window_tree):
17597 (reconsider_clip_changes): Use PT instead of BUF_PT.
17598
d251f04b
EZ
175992011-03-13 Eli Zaretskii <eliz@gnu.org>
17600
17601 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
17602 $(EMACS_ROOT)/lib/intprops.h.
17603
f0c77cd1
PE
176042011-03-13 Paul Eggert <eggert@cs.ucla.edu>
17605
3eca4629
PE
17606 Fix more problems found by GCC 4.5.2's static checks.
17607
7c86ee98
PE
17608 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
17609 to unsigned char * to avoid compiler diagnostic.
b0afc268
PE
17610 (xg_free_frame_widgets): Make it clear that a local variable is
17611 needed only if USE_GTK_TOOLTIP.
01e0b5ad
PE
17612 (gdk_window_get_screen): Make it clear that this macro is needed
17613 only if USE_GTK_TOOLTIP.
1e5524e7
PE
17614 (int_gtk_range_get_value): New function, which avoids a diagnostic
17615 from gcc -Wbad-function-cast.
17616 (xg_set_toolkit_scroll_bar_thumb): Use it.
17617 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
17618 diagnostic from gcc -Wbad-function-cast.
65dc836c
PE
17619 (get_utf8_string, xg_get_file_with_chooser):
17620 Rename locals to avoid shadowing.
17621 (create_dialog): Move locals to avoid shadowing.
7c86ee98 17622
41729b81
PE
17623 * xgselect.c (xg_select): Remove unused var.
17624
f0c77cd1
PE
17625 * image.c (four_corners_best): Mark locals as initialized.
17626 (gif_load): Initialize transparent_p to zero (Bug#8238).
17627 Mark another local as initialized.
ec6cf4c6 17628 (my_png_error, my_error_exit): Mark with NO_RETURN.
f0c77cd1 17629
ce0ad53d 17630 * image.c (clear_image_cache): Now static.
d5d5a617 17631 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
e22cffbc 17632 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
77a765fd
PE
17633 (x_edge_detection): Remove unnecessary cast that
17634 gcc -Wbad-function-cast diagnoses.
2037898d 17635 (gif_load): Fix pointer signedness.
6ae141d6
PE
17636 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
17637 (jpeg_load, gif_load): Rename locals to avoid shadowing.
ce0ad53d 17638
33383987 176392011-03-12 Paul Eggert <eggert@cs.ucla.edu>
3eca4629 17640
d32df629
PE
17641 Improve quality of tests for time stamp overflow.
17642 For example, without this patch (encode-time 0 0 0 1 1
17643 1152921504606846976) returns the obviously-bogus value (-948597
17644 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
17645 reports time overflow. See
17646 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
b8d9bd41
PE
17647 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
17648 * editfns.c: Include limits.h and intprops.h.
17649 (TIME_T_MIN, TIME_T_MAX): New macros.
17650 (time_overflow): Move earlier, to before first use.
17651 (hi_time, lo_time): New functions, for an accurate test for
17652 out-of-range times.
17653 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
17654 (Fget_internal_run_time): Don't assume time_t fits in int.
17655 (make_time): Use list2 instead of Fcons twice.
17656 (Fdecode_time): More accurate test for out-of-range times.
17657 (check_tm_member): New function.
17658 (Fencode_time): Use it, to test for out-of-range times.
d32df629
PE
17659 (lisp_time_argument): Don't rely on undefined left-shift and
17660 right-shift behavior when checking for time stamp overflow.
8be6f318 17661
fe31d94c
PE
17662 * editfns.c (time_overflow): New function, refactoring common code.
17663 (Fformat_time_string, Fdecode_time, Fencode_time):
17664 (Fcurrent_time_string): Use it.
17665
8be6f318
PE
17666 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
17667 * dired.c (make_time): Move to ...
17668 * editfns.c (make_time): ... here.
17669 * systime.h: Note the move.
17670
09d9db2c 176712011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
c47cbdfd 17672
126bc0dc
YM
17673 * fringe.c (update_window_fringes): Remove unused variables.
17674
c47cbdfd
YM
17675 * unexmacosx.c (copy_data_segment): Also copy __got section.
17676 (Bug#8223)
17677
7ac80be9
EZ
176782011-03-12 Eli Zaretskii <eliz@gnu.org>
17679
c96bbc66 17680 * termcap.c [MSDOS]: Include "msdos.h".
058e5dad
EZ
17681 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
17682 Constify `char *' arguments and their references according to
17683 prototypes in tparam.h.
17684
ecb0f94d 17685 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
058e5dad 17686
7ac80be9
EZ
17687 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
17688 Adapt all references accordingly.
17689
17690 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
17691
ef1fd07e
TT
176922011-03-11 Tom Tromey <tromey@redhat.com>
17693
17694 * buffer.c (syms_of_buffer): Remove obsolete comment.
17695
7ef4b50c
EZ
176962011-03-11 Eli Zaretskii <eliz@gnu.org>
17697
17698 * termhooks.h (encode_terminal_code): Declare prototype.
17699
17700 * msdos.c (encode_terminal_code): Don't declare prototype.
17701
17702 * term.c (encode_terminal_code): Now external again, used by
17703 w32console.c and msdos.c.
17704
44f230aa
SM
17705 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
17706 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
7ef4b50c 17707
4b1ec863 177082011-03-11 Paul Eggert <eggert@cs.ucla.edu>
f78faa98 17709
1714f52b 17710 Fix some minor problems found by GCC 4.5.2's static checks.
83316bf4 17711
4b1ec863
PE
17712 * fringe.c (update_window_fringes): Mark locals as initialized
17713 (Bug#8227).
17714 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
bf60f616 17715
524c7aa6
PE
17716 * alloc.c (mark_fringe_data): Move decl from here ...
17717 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
17718 to check its interface.
17719 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
17720
a5c0af81 17721 * fontset.c (free_realized_fontset): Now static.
7519b8cd 17722 (Fset_fontset_font): Rename local to avoid shadowing.
cc6e5db1 17723 (fontset_font): Mark local as initialized.
a9a06e0b 17724 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
a5c0af81 17725
b4716021
PE
17726 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
17727
811e9bac 17728 * xselect.c (x_disown_buffer_selections): Remove; not used.
7b83e2f1 17729 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
aa0daa9f
PE
17730 (x_own_selection, Fx_disown_selection_internal): Rename locals
17731 to avoid shadowing.
17732 (x_handle_dnd_message): Remove local to avoid shadowing.
811e9bac 17733
7e3ab302
PE
17734 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
17735 so that the caller can use some name other than gcpro1.
17736 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
58d2d479
PE
17737 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
17738 (Fx_backspace_delete_keys_p):
17739 Use them to avoid shadowing, and rename vars to avoid shadowing.
17740 (x_decode_color, x_set_name, x_window): Now static.
6b437900 17741 (Fx_create_frame): Add braces to silence GCC warning.
c0951e53 17742 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
06b0c8a0
PE
17743 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
17744 Remove unused locals.
7e3ab302
PE
17745 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
17746 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
17747 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
17748 macros.
f78faa98 17749
e2b13473
PE
17750 * xterm.h (x_mouse_leave): New decl.
17751
77f23912
PE
17752 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
17753 Remove unused functions.
cdf4ba58
PE
17754 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
17755 (x_calc_absolute_position): Now static.
7411c686 17756 (XTread_socket): Don't define label "out" unless it's used.
2b07bcff 17757 Don't declare local "event" unless it's used.
ed7bf3a5
PE
17758 (x_iconify_frame, x_free_frame_resources): Don't declare locals
17759 unless they are used.
38d0b34a
PE
17760 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
17761 (x_fatal_error_signal): Remove; not used.
a6067996
PE
17762 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
17763 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
17764 (x_error_catcher, x_connection_closed, x_error_handler):
17765 (x_error_quitter, xembed_send_message, x_iconify_frame):
17766 (my_log_handler): Rename locals to avoid shadowing.
28f1c698 17767 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
2a8fade0 17768 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
77f23912 17769
44f230aa
SM
17770 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
17771 Rename or move locals to avoid shadowing.
6b463e58 17772 (tty_defined_color, merge_face_heights): Now static.
5967d051 17773 (free_realized_faces_for_fontset): Remove; not used.
1e9966ea
PE
17774 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
17775 does not deduce is never used uninitialized.
73719eba
PE
17776 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
17777 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
071048a3 17778
426994c3 17779 * terminal.c (store_terminal_param): Now static.
5489860b 17780
032f1620 17781 * xmenu.c (menu_highlight_callback): Now static.
9d66f88e 17782 (set_frame_menubar): Remove unused local.
d4323972 17783 (xmenu_show): Rename parameter to avoid shadowing.
6d1f7fee
PE
17784 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
17785 since they might point to immutable storage.
281585b0
PE
17786 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
17787 since it's unused otherwise.
032f1620 17788
367c19e5 17789 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
53df7c11 17790 Add a FIXME, since the code still doesn't look right. (Bug#8215)
9f36b9fd
PE
17791 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
17792 avoids a gcc -Wuninitialized diagnostic.
0e086e8f 17793 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
44a3a108
PE
17794 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
17795 does not deduce are never used uninitialized.
70739cbe 17796
07b48fa9
PE
17797 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
17798
8868a238 17799 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
4554d213
PE
17800 * window.c (window_loop, size_window):
17801 (run_window_configuration_change_hook, enlarge_window): Likewise.
8868a238 17802
7e5cf297 17803 * window.c (display_buffer): Now static.
d6550a9f
PE
17804 (size_window): Mark variables that gcc -Wuninitialized
17805 does not deduce are never used uninitialized.
a586633d
PE
17806 * window.h (check_all_windows): New decl, to forestall
17807 gcc -Wmissing-prototypes diagnostic.
5b555da1 17808 * dispextern.h (bidi_dump_cached_states): Likewise.
7e5cf297 17809
f6095868
PE
17810 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
17811 shadowing.
17812 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
726929c4
PE
17813 Include <limits.h>.
17814 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
17815 and to avoid gcc -Wuninitialized warning.
89ef49df
PE
17816 (load_charset_map): Mark variables that gcc -Wuninitialized
17817 does not deduce are never used uninitialized.
53df7c11 17818 (load_charset): Abort instead of using uninitialized var (Bug#8229).
f6095868 17819
f38b440c
PE
17820 * coding.c (coding_set_source, coding_set_destination):
17821 Use "else { /* comment */ }" rather than "else /* comment */;"
17822 for clarity, and to avoid gcc -Wempty-body warning.
2735d060
PE
17823 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
17824 a block, when the outer 'i' will do.
17825 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
17826 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
17827 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
17828 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
17829 (Fdecode_sjis_char, Fdefine_coding_system_internal):
17830 Rename locals to avoid shadowing.
17831 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
e2f1bab9
PE
17832 * coding.c (emacs_mule_char, encode_invocation_designation):
17833 Now static, since they're not used elsewhere.
413bb2db 17834 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
c4a63b12 17835 (decode_coding_object, encode_coding_object, detect_coding_system):
ee05f961
PE
17836 (decode_coding_emacs_mule): Mark variables that gcc
17837 -Wuninitialized does not deduce are never used uninitialized.
160b01f6
PE
17838 (detect_coding_iso_2022): Initialize a local variable that might
17839 be used uninitialized. Leave a FIXME because it's not clear that
53df7c11 17840 this initialization is needed. (Bug#8211)
5f58e762
PE
17841 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
17842 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
17843 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
17844 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
17845 Remove unused macros.
f38b440c 17846
232b38b9 17847 * category.c (hash_get_category_set): Remove unused local var.
9f3b5e69 17848 (copy_category_table): Now static, since it's not used elsewhere.
d0891610 17849 * character.c (string_count_byte8): Likewise.
232b38b9 17850
fb90da1b
PE
17851 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
17852 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
17853
fb93dbc2
PE
17854 * chartab.c (copy_sub_char_table): Now static, since it's not used
17855 elsewhere.
5c156ace
PE
17856 (sub_char_table_ref_and_range, char_table_ref_and_range):
17857 Rename locals to avoid shadowing.
bbcd0949 17858 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
fb93dbc2 17859
7d3b3862 17860 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
630d6892 17861 (BIDI_BOB): Remove unused macro.
7d3b3862 17862
6be7d3da
PE
17863 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
17864 deduce are never used uninitialized.
c2ed9c8b 17865 * term.c (encode_terminal_code): Likewise.
6be7d3da 17866
75f8807f 17867 * term.c (encode_terminal_code): Now static. Remove unused local.
72abad34 17868
50938595
PE
17869 * tparam.h: New file.
17870 * term.c, tparam.h: Include it.
17871 * deps.mk (term.o, tparam.o): Depend on tparam.h.
17872 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
17873 Move these decls to tparam.h, and make them agree with what
17874 is actually in tparam.c. The previous trick of using incompatible
17875 decls in different modules does not conform to the C standard.
17876 All callers of tparam changed to use tparam's actual API.
17877 * tparam.c (tparam1, tparam, tgoto):
17878 Use const pointers where appropriate.
17879
fbceeba2
PE
17880 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
17881 * cm.h (struct cm): Likewise.
17882 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
17883 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
17884 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
17885 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
17886 (turn_on_face, init_tty): Likewise.
17887 * termchar.h (struct tty_display_info): Likewise.
fbceeba2 17888
7f3f1250
PE
17889 * term.c (term_mouse_position): Rename local to avoid shadowing.
17890
e6ca6543
PE
17891 * alloc.c (mark_ttys): Move decl from here ...
17892 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
17893
c40f8d15
AS
178942011-03-11 Andreas Schwab <schwab@linux-m68k.org>
17895
17896 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
17897
cfe0661d
JB
178982011-03-09 Juanma Barranquero <lekktu@gmail.com>
17899
17900 * search.c (compile_pattern_1): Remove argument regp, unused since
17901 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
17902 (compile_pattern): Don't pass it.
17903
0afb4571
J
179042011-03-08 Jan Djärv <jan.h.d@swipnet.se>
17905
17906 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
17907 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
17908 for ! HAVE_GTK3.
17909 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
17910
17911 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
17912
17913 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
17914 gdk_window_get_screen, gdk_window_get_geometry,
17915 gdk_x11_window_lookup_for_display and GDK_KEY_g.
17916 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
17917 (xg_get_pixbuf_from_pixmap): New function.
17918 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
17919 to Pixmap, take frame as parameter, remove GdkColormap parameter.
17920 Call xg_get_pixbuf_from_pixmap instead of
17921 gdk_pixbuf_get_from_drawable.
17922 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
17923 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
17924 (xg_check_special_colors): Use GtkStyleContext and its functions
17925 for HAVE_GTK3.
17926 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
17927 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
17928 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
44f230aa
SM
17929 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
17930 Call gtk_widget_get_preferred_size.
0afb4571
J
17931 (xg_frame_resized): gdk_window_get_geometry only takes 5
17932 parameters.
44f230aa
SM
17933 (xg_win_to_widget, xg_event_is_for_menubar):
17934 Call gdk_x11_window_lookup_for_display.
0afb4571
J
17935 (xg_set_widget_bg): New function.
17936 (delete_cb): New function.
895009e1 17937 (xg_create_frame_widgets): Connect delete-event to delete_cb.
5c32d3f2 17938 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
0afb4571
J
17939 (xg_set_background_color): Call xg_set_widget_bg.
17940 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
17941 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
17942 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
17943 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
17944 if ! HAVE_GTK3.
17945 (update_frame_tool_bar): Call gtk_widget_hide.
17946 (xg_initialize): Use GDK_KEY_g.
17947
17948 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
17949 if ! HAVE_GTK3
17950 (x_session_initialize): Call gdk_x11_set_sm_client_id.
17951
17952 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
17953 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
17954 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
17955
1c2cc4ef
JB
179562011-03-08 Juanma Barranquero <lekktu@gmail.com>
17957
17958 * w32xfns.c (select_palette): Check success of RealizePalette against
17959 GDI_ERROR, not zero.
17960
33383987 17961See ChangeLog.11 for earlier changes.
aac0c6e3
MR
17962
17963;; Local Variables:
17964;; coding: utf-8
aac0c6e3
MR
17965;; End:
17966
2f097256 17967 Copyright (C) 2011-2012 Free Software Foundation, Inc.
aac0c6e3
MR
17968
17969 This file is part of GNU Emacs.
17970
17971 GNU Emacs is free software: you can redistribute it and/or modify
17972 it under the terms of the GNU General Public License as published by
17973 the Free Software Foundation, either version 3 of the License, or
17974 (at your option) any later version.
17975
17976 GNU Emacs is distributed in the hope that it will be useful,
17977 but WITHOUT ANY WARRANTY; without even the implied warranty of
17978 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
17979 GNU General Public License for more details.
17980
17981 You should have received a copy of the GNU General Public License
17982 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.