* configure.ac (WARN_CFLAGS): Omit -Wjump-misses-init.
[bpt/emacs.git] / src / ChangeLog
CommitLineData
26d4541d
PE
12012-09-03 Paul Eggert <eggert@cs.ucla.edu>
2
3 Fix minor problems found by static checking.
4 * buffer.c (Fdelete_all_overlays): Return nil.
5 * doc.c (Fsubstitute_command_keys):
6 * regex.c (WEAK_ALIAS):
7 * xdisp.c (redisplay_internal):
8 Move initialization down, to pacify GCC 4.7.1 -Wjump-misses-init.
9
c5e28e39
MR
102012-09-03 Martin Rudalics <rudalics@gmx.at>
11
12 * buffer.c (Fdelete_all_overlays): New function.
13
3eab3ca9
CY
142012-09-03 Chong Yidong <cyd@gnu.org>
15
16 * gtkutil.c: Add extern decl for Qxft.
17
c04889f8
PE
182012-09-02 Paul Eggert <eggert@cs.ucla.edu>
19
1882aa38
PE
20 * emacs.c, eval.c: Use bool for boolean.
21 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
22 (malloc_using_checking) [DOUG_LEA_MALLOC]:
23 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
24 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
25 (main, decode_env_path, Fdaemon_initialized):
26 * eval.c (call_debugger, Finteractive_p, interactive_p):
27 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
28 (maybe_call_debugger, Fbacktrace):
29 * process.c (read_process_output, exec_sentinel):
30 Use bool for booleans.
31 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
32 All callers changed.
33 * eval.c (interactive_p): Omit always-true boolean argument
34 EXCLUDE_SUBRS_P. All callers changed.
35 * dispextern.h, lisp.h: Reflect above API changes.
36 * firstfile.c (dummy): Use the address of 'main', whose signature
37 won't change, instead of the address of 'initialize', whose
38 signature just changed from int to bool.
39 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
40 * msdos.c (fatal_error_in_progress): ... from here.
41 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
42 of incrementing it.
43 (redisplay_internal, unwind_redisplay): Simply clear
44 REDISPLAYING_P when unwinding, instead of saving its previous,
45 always-false value and then restoring it.
46
a411ac43
PE
47 Clean up some extern decls.
48 Mostly, this hoists extern decls out of .c files and into .h files.
49 That way, we're more likely to catch errors if the interfaces change.
50 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
51 declare xg_mark_data.
52 * dispextern.h (x_frame_parm_handlers):
53 * font.h (Qxft):
54 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
55 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
56 (Qultra_bold, Qoblique, Qitalic):
57 Move extern decl here from .c file.
58 * alloc.c (xg_mark_data) [USE_GTK]:
59 * doc.c (Qclosure):
60 * eval.c (Qlexical_binding):
61 * fns.c (time) [!HAVE_UNISTD_H]:
62 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
63 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
64 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
65 * lread.c (Qinternal_interpreter_environment):
66 * minibuf.c (Qbuffer):
67 * process.c (QCfamily, QCfilter):
68 * widget.c (free_frame_faces):
69 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
70 * xfont.c (x_clear_errors):
71 * xterm.c (x_frame_parm_handlers):
72 Remove now-redundant extern decls.
73 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
74 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
75 Now static.
76 * xfaces.c: Remove unnecessary static decls.
77 * xterm.c (updating_frame): Remove decl of nonexistent object.
78
c04889f8
PE
79 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
80 when building globals.h, as the objects that are not built on
81 this host are not needed to compile C files on this host.
82
8b339673
JD
832012-09-02 Jan Djärv <jan.h.d@swipnet.se>
84
85 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
86
87 * frame.h: Add missing prototype for x_wm_set_size_hint.
88
a08d4ba7
PE
892012-09-02 Paul Eggert <eggert@cs.ucla.edu>
90
91 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
92 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
93 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
94 (Fsubstitute_command_keys):
95 * editfns.c (region_limit, find_field, Fconstrain_to_field)
96 (save_excursion_save, save_excursion_restore)
97 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
98 (format_time_string, general_insert_function)
99 (make_buffer_string, make_buffer_string_both)
100 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
101 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
102 (copy_text, insert_1, insert_1_both, insert_from_string)
103 (insert_from_string_before_markers, insert_from_string_1)
104 (insert_from_buffer, insert_from_buffer_1, replace_range)
105 (replace_range_2, del_range_1, del_range_byte, del_range_both)
106 (del_range_2, modify_region):
107 * intervals.c (intervals_equal, balance_possible_root_interval)
108 (adjust_intervals_for_insertion, merge_properties_sticky)
109 (graft_intervals_into_buffer, lookup_char_property)
110 (adjust_for_invis_intang, set_point_both)
111 (get_property_and_range, compare_string_intervals)
112 (set_intervals_multibyte_1, set_intervals_multibyte):
113 * keyboard.c (decode_timer):
114 Use bool for boolean.
115 * intervals.h, lisp.h, systime.h: Reflect above API changes.
116 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
117
48c948de
CY
1182012-09-02 Chong Yidong <cyd@gnu.org>
119
120 * keymap.c (push_key_description): Print M-TAB as C-M-i
121 (Bug#11758).
122
6c49a40b
JB
1232012-09-02 Juanma Barranquero <lekktu@gmail.com>
124
125 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
126 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
127 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
128 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
129 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
130 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
131 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
132
4dfbd238
EZ
1332012-09-01 Eli Zaretskii <eliz@gnu.org>
134
7e510e28
EZ
135 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
136 more than one grapheme cluster passed to the shaper: compute the
137 offset adjustment values separately for each cluster. (Bug#11860)
138
4dfbd238
EZ
139 * image.c: Restore mistakenly removed inclusion of w32.h. Without
140 it, GCC doesn't see prototypes of w32_delayed_load, and complains
141 about implicit conversions from integer to pointer.
142
86571ae0
DC
1432012-09-01 Daniel Colascione <dancol@dancol.org>
144
145 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
146 system used too early.
147
0e23ef9d
PE
1482012-09-01 Paul Eggert <eggert@cs.ucla.edu>
149
150 Better seed support for (random).
151 * emacs.c (main): Call init_random.
152 * fns.c (Frandom): Set the seed from a string argument, if given.
153 Remove long-obsolete Gentzel cruft.
154 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
155 (init_random): New function.
156
17a2cbbd
DC
1572012-09-01 Daniel Colascione <dancol@dancol.org>
158
159 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
160 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
161 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
162 x_wm_set_size_hint, x_query_colors, x_real_positions,
163 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
164 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
165 all of which have been moved to common code.
166
167 * xfaces.c: Include TERM_HEADER instead of listing all possible
168 window-system headers.
169
170 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
171 to match header.
172
173 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
174 directly accessing frame internals.
175
f18cbb28 176 * w32font.h: Include font.h. Define syms_of_w32font and
17a2cbbd
DC
177 globals_of_w32font.
178
179 * process.c: Include TERM_HEADER instead of listing all possible
180 window-system headers.
181
182 * nsterm.h: Remove declarations now in frame.h. Define
183 FRAME_X_SCREEN, FRAME_X_VISUAL.
184
185 * menu.c: Include TERM_HEADER instead of listing all possible
186 window-system headers.
187
188 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
189 window system.
190
191 * keyboard.c: Include TERM_HEADER instead of listing all possible
192 window-system headers.
193
194 * image.c: Include TERM_HEADER instead of listing all possible
195 window-system headers. Declare Vlibrary_cache when compiling for
196 Windows.
197
198 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
199 window system declarations.
200
201 * frame.h: Move common functions here: set_frame_menubar,
202 x_set_window_size, x_sync, x_get_focus_frame,
203 x_set_mouse_position, x_set_mouse_pixel_position,
204 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
205 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
206 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
207 x_activate_menubar, x_real_positions, x_bitmap_icon,
208 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
209 and x_query_colors.
210
211 * frame.c: Include TERM_HEADER instead of listing all possible
212 window-system headers.
213
214 * font.c: Include TERM_HEADER instead of listing all possible
215 window-system headers.
216
217 * emacs.c: Include TERM_HEADER.
218
f18cbb28
EZ
219 * dispnew.c: Include TERM_HEADER instead of listing all possible
220 window-system headers.
17a2cbbd 221
f18cbb28 222 * ccl.h: Include character.h.
17a2cbbd
DC
223
224 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
225 the current window system; include in list of objects to link into
226 Emacs.
227
c650a5de
DA
2282012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
229
230 Remove mark_ttys function and fix tty_display_info initialization.
231 * lisp.h (mark_ttys): Remove prototype.
232 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
233 to mark_ttys because all possible values of 'top_frame' slot are
234 the frames which are reachable from Vframe_list.
235 * term.c (mark_ttys): Remove.
236 (init_tty): Safely initialize 'top_frame' slot with Qnil.
237
4e0f6479
DA
2382012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
239
240 Change struct frame bitfields from unsigned char to unsigned.
241 * frame.h (struct frame): Change type of 'display_preempted',
242 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
243 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
244 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
245 bitfields from unsigned char to unsigned.
246
8b96a52c
DA
2472012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
248
249 Remove unused member of struct x_output and struct w32_output.
250 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
251 * w32term.h (struct w32_output): Likewise.
252
b4444c8a
JD
2532012-08-30 Jan Djärv <jan.h.d@swipnet.se>
254
255 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
256 does not become zero (Bug#12234).
257
b98521db
PE
2582012-08-30 Paul Eggert <eggert@cs.ucla.edu>
259
260 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
261 for GCC 4.7.1 x86-64.
262
31d02438
GM
2632012-08-30 Glenn Morris <rgm@gnu.org>
264
265 * lread.c (init_lread): For out-of-tree builds, only add the
266 source directory's site-lisp dir to the load-path if it exists,
267 consistent with in-tree builds. (Bug#12302)
268
7f8941d8
JD
2692012-08-28 Jan Djärv <jan.h.d@swipnet.se>
270
271 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
272 button_values to NULL. Call setStykeMask so dialogs get a close button.
273 (windowShouldClose:): Set window_closed.
274 (dealloc): New member, free button_values.
275 (process_dialog:): Make member function. Remove window argument,
276 replace window with self. Count buttons and allocate and store values
277 in button_values.
278 (addButton:value:row:): value is int with the name tag. Call setTag
279 with tag. Remove return self, declare return value as void.
280 (addString:row:): Remove return self, declare return value as void.
281 (addSplit): Remove return self, declare return value as void.
282 (clicked:): Remove return self, declare return value as void.
283 Set dialog_return to button_values[seltag]. Code formatting change.
284 (initFromContents:isQuestion:): Adjust call to process_dialog.
285 Code formatting change.
286 (timeout_handler:): Set timer_fired to YES.
287 (runDialogAt:): Set timer_fired to NO.
288 Handle click on close button as quit.
289
290 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
291 Add window_closed and button_values. Add void as return value for
292 add(Button|String|Split). addButton takes int instead of Lisp_Object.
293 Add process_dialog as new member.
294
eada0861 2952012-08-28 Eli Zaretskii <eliz@gnu.org>
19c17fc1 296
eada0861
GM
297 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
298 is not one of the heaps we manage. (Bug#12242)
299
3002012-08-28 Glenn Morris <rgm@gnu.org>
301
302 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
303
457294dd
MR
3042012-08-28 Martin Rudalics <rudalics@gmx.at>
305
306 * window.c (Fset_window_configuration): Remove handling of
37b9743e
MR
307 auto-buffer-name window parameter. Install revision of reverted
308 fix.
457294dd 309
4f2daf31
DA
3102012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
311
312 Do not allow to set major mode for a dead buffer.
313 * buffer.c (Fset_buffer_major_mode): Signal an error
314 if the buffer is dead.
315 (Fother_buffer, other_buffer_safely): Remove redundant
316 nested declaration.
317
66322887
DA
3182012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
319
320 Always use set_buffer_if_live to restore original buffer at unwind.
321 * buffer.h (record_unwind_current_buffer): New function.
322 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
323 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
324 * undo.c, window.c: Adjust users.
325 * buffer.c (set_buffer_if_live): Fix comment.
326
a3d794a1
DA
3272012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
328
329 Fix usage of set_buffer_internal.
330 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
331 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
332 * coding.c (decode_coding): Omit redundant test.
333 * fileio.c (decide_coding_unwind): Likewise.
334 * fns.c (secure_hash): Likewise.
335 * insdel.c (modify_region): Likewise.
336 * keyboard.c (command_loop_1): Likewise.
337 * print.c (PRINTFINISH): Likewise.
338 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
339
59ea14cd
PE
3402012-08-27 Paul Eggert <eggert@cs.ucla.edu>
341
342 * dispnew.c: Use bool for boolean.
343 (frame_garbaged, display_completed, delayed_size_change)
344 (fonts_changed_p, add_window_display_history)
345 (add_frame_display_history, verify_row_hash)
346 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
347 (row_equal_p, realloc_glyph_pool)
348 (allocate_matrices_for_frame_redisplay)
349 (showing_window_margins_p)
350 (adjust_frame_glyphs_for_frame_redisplay)
351 (build_frame_matrix_from_leaf_window, make_current)
352 (mirrored_line_dance, mirror_line_dance, update_frame)
353 (update_window_tree, update_single_window)
354 (check_current_matrix_flags, update_window, update_text_area)
355 (update_window_line, set_window_update_flags, scrolling_window)
356 (update_frame_1, scrolling, buffer_posn_from_coords)
357 (do_pending_window_change, change_frame_size)
358 (change_frame_size_1, sit_for):
359 Use bool for boolean.
360 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
361 and remove last int (actually boolean) argument, which was always 0.
362 All callers changed.
363 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
364 * dispextern.h (struct composition_it): Use bool for boolean.
365 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
366 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
367 * dired.c (file_name_completion):
368 Use bool for boolean. (This was missed in an earlier change.)
369
95072a94
MR
3702012-08-27 Martin Rudalics <rudalics@gmx.at>
371
372 * window.c (Fset_window_configuration): Revert first part of
373 last change.
374
0f19feff
JD
3752012-08-27 Jan Djärv <jan.h.d@swipnet.se>
376
377 * nsterm.h (NSPanel): New class variable dialog_return.
378
379 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
380 dialog_return.
381 (windowShouldClose:): Use stop instead of stopModalWithCode.
382 (clicked:): Ditto, and also set dialog_return (Bug#12258).
383 (timeout_handler:): Use stop instead of abortModal. Send a dummy
384 event.
385 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
386 modal loop returns.
387
f10fe38f
PE
3882012-08-27 Paul Eggert <eggert@cs.ucla.edu>
389
de1339b0
PE
390 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
391 * composite.c (find_composition, composition_gstring_p)
392 (composition_reseat_it, find_automatic_composition):
393 * data.c (let_shadows_buffer_binding_p)
394 (let_shadows_global_binding_p, set_internal, make_blv)
395 (Fmake_variable_buffer_local, Fmake_local_variable)
396 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
397 (cons_to_signed, arith_driver):
398 * dbusbind.c (xd_in_read_queued_messages):
399 * dired.c (directory_files_internal, file_name_completion):
400 Use bool for booleans.
401 * dired.c (file_name_completion):
402 * process.h (fd_callback):
403 Omit int (actually boolean) argument. It wasn't being used.
404 All uses changed.
405 * composite.h, lisp.h: Reflect above API changes.
406
f10fe38f
PE
407 * cmds.c, coding.c: Use bool for booleans.
408 * cmds.c (move_point, Fself_insert_command):
409 * coding.h (struct composition status, struct coding_system):
410 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
411 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
412 (emacs_mule_char, decode_coding_emacs_mule)
413 (encode_coding_emacs_mule, detect_coding_iso_2022)
414 (decode_coding_iso_2022, encode_invocation_designation)
415 (encode_designation_at_bol, encode_coding_iso_2022)
416 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
417 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
418 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
419 (encode_coding_raw_text, detect_coding_charset)
420 (decode_coding_charset, encode_coding_charset, detect_eol)
421 (detect_coding, get_translation_table, produce_chars)
422 (consume_chars, reused_workbuf_in_use)
423 (make_conversion_work_buffer, code_conversion_save)
424 (decode_coding_object, encode_coding_object)
425 (detect_coding_system, char_encodable_p)
426 (Funencodable_char_position, code_convert_region)
427 (code_convert_string, code_convert_string_norecord)
428 (Fset_coding_system_priority):
429 * fileio.c (Finsert_file_contents):
430 Use bool for booleans.
431 * coding.h, lisp.h: Reflect above API changes.
432 * coding.c: Remove unnecessary static function decls.
433 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
434 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
435 not a boolean 'int', since callers never look at the return value.
436 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
437 * coding.h (decoding_buffer_size, encoding_buffer_size)
438 (emacs_mule_string_char): Remove unused extern decls.
439 (struct iso_2022_spec, struct coding_system):
440 Use 'unsigned int : 1' for boolean fields, since there's more than one.
441 (struct emacs_mule_spec): Remove unused field 'full_support'.
442 All initializations removed.
443 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
444
5474c384
DA
4452012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
446
f10fe38f 447 Fix spare memory change (Bug#12286).
5474c384
DA
448 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
449 (valid_lisp_object_p): Likewise.
450
c4b6914d
MR
4512012-08-27 Martin Rudalics <rudalics@gmx.at>
452
453 * window.c (Fset_window_configuration): Record any window's old
454 buffer if it's replaced (see Bug#8789). If the new current
455 buffer doesn't appear in the selected window, go to its old
456 point (Bug#12208).
457
35aaa1ea
DA
4582012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
459
460 Special MEM_TYPE_SPARE to denote reserved memory.
461 * alloc.c (enum mem_type): New memory type.
462 (refill_memory_reserve): Use new type for spare memory.
463 This prevents live_cons_p and live_string_p from incorrect
464 detection of uninitialized objects from spare memory as live.
465
6af64513
PE
4662012-08-26 Paul Eggert <eggert@cs.ucla.edu>
467
8b2e00a3
PE
468 Spelling fixes.
469 * Makefile.in (.PHONY): versioclean -> versionclean.
470
b52d6985
PE
471 Remove unused external symbols.
472 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
473 * window.c (Qwindow_valid_p, decode_valid_window):
474 Now static, not extern.
475 * data.c (Qinterval): Remove; unused.
476 (syms_of_data): Do not define 'interval'.
477 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
478 * window.h (decode_valid_window):
479 Remove decls.
480
d5172d4f
PE
481 * character.c, charset.c, chartab.c: Use bool for booleans.
482 * character.c (lisp_string_width, string_count_byte8)
483 (string_escape_byte8):
484 * charset.c (charset_map_loaded, load_charset_map, read_hex):
485 (load_charset_map_from_file, map_charset_chars)
486 (Fdefine_charset_internal, define_charset_internal)
487 (Fdeclare_equiv_charset, find_charsets_in_text)
488 (Ffind_charset_region, char_charset, Fiso_charset):
489 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
490 (sub_char_table_set, sub_char_table_set_range)
491 (char_table_set_range, optimize_sub_char_table)
492 (map_sub_char_table):
493 Use bool for boolean.
494 * character.c (str_to_unibyte): Omit last boolean argument; it was
495 always 0. All callers changed.
496 * character.h, charset.h: Adjust to match previous changes.
497 * character.h (char_printable_p): Remove decl of nonexistent function.
498 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
499 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
500 are all boolean, so make them single-bit bitfields.
501
6af64513
PE
502 * lisp.h (ASET): Remove attempt to detect side effects.
503 It was meant to be temporary and it often doesn't work,
504 because when IDX has side effects the behavior of IDX==IDX
505 is undefined. See Stefan Monnier in
506 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
507
e1f29348
BR
5082012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
509
510 * lisp.h (functionp): New function (extracted from Ffunctionp).
511 (FUNCTIONP): Use it.
512 * eval.c (Ffunctionp): Use it.
513
17c05d74
PE
5142012-08-25 Paul Eggert <eggert@cs.ucla.edu>
515
0f46bc75
PE
516 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
517 as that's faster and simpler than static storage. Don't bother
518 with the g_main_context_query overhead if g_main_context_pending
519 says no events are pending.
520 (gfds, gfds_size): Remove these static vars.
521 (xgselect_initialize): Remove; no longer needed.
522 All uses and decls removed.
523
ee4c0f69
PE
524 * emacs.c (fatal_error_signal_hook): Remove.
525 All uses removed. This leftover from old code was always 0.
526
17c05d74
PE
527 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
528 * casefiddle.c (casify_object, casify_region):
529 * casetab.c (set_case_table):
530 * category.c, category.h (word_boundary_p):
531 * category.h (CHAR_HAS_CATEGORY):
532 Use bool for booleans, instead of int.
533
391ceac5
EZ
5342012-08-25 Eli Zaretskii <eliz@gnu.org>
535
536 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
537
2f221583
PE
5382012-08-25 Paul Eggert <eggert@cs.ucla.edu>
539
f4a681b0
PE
540 On assertion failure, print backtrace if available.
541 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
542 (die) [ENABLE_CHECKING]: Print a backtrace if available.
543 * Makefile.in (LIB_EXECINFO): New macro.
544 (LIBES): Use it.
545
2f221583
PE
546 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
547 * bytecode.c (exec_byte_code):
548 * callint.c (check_mark, Fcall_interactively):
549 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
550 (getenv_internal, sync_process_alive, call_process_exited):
551 * lisp.h (USE_SAFE_ALLOCA):
552 Use bool for booleans, instead of int.
553 * lisp.h, process.h: Adjust prototypes to match above changes.
554 * callint.c (Fcall_interactively): Don't assume the mark's
555 offset fits in 'int'.
556
37ef52bb
PE
5572012-08-24 Paul Eggert <eggert@cs.ucla.edu>
558
559 * buffer.c, buffer.h: Use bool for boolean.
560 * buffer.c (reset_buffer_local_variables)
561 (buffer_lisp_local_variables, Fset_buffer_modified_p)
562 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
563 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
564 (overlay_touches_p, overlay_strings, Foverlay_put)
565 (report_overlay_modification, call_overlay_mod_hooks):
566 (mmap_enlarge, mmap_set_vars):
567 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
568 Use bool for booleans, instead of int.
569 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
570 since the 1-or-0 return value is always ignored anyway.
571 (mmap_initialized_p):
572 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
573 * buffer.h, lisp.h: Adjust prototypes to match above changes.
574
2cc21167
PE
5752012-08-23 Paul Eggert <eggert@cs.ucla.edu>
576
577 * bidi.c: Use bool for boolean.
578 This is a bit more readable, and makes the text segment of bidi.o
579 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
580 Presumably it's faster too.
581 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
582 Now bool.
583 (bidi_cache_find_level_change, bidi_cache_iterator_state)
584 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
585 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
586 (bidi_explicit_dir_char, bidi_level_of_next_char)
587 (bidi_find_other_level_edge, bidi_move_to_visually_next):
588 Use bool for booleans, instead of int.
589 * dispextern.h (bidi_init_it, bidi_paragraph_init)
590 (bidi_unshelve_cache): Adjust decls to match code.
591
7db4ddf4
MR
5922012-08-23 Martin Rudalics <rudalics@gmx.at>
593
594 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
595 argument.
596
b1bb8011
PE
5972012-08-23 Paul Eggert <eggert@cs.ucla.edu>
598
599 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
600 * atimer.h: Include <stdbool.h>.
601
ff687885
DN
6022012-08-22 Dan Nicolaescu <dann@gnu.org>
603
604 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
605 compile time tests instead of run time tests on systems that do
606 not use them.
607 (FRAME_MAC_P): Remove leftover from deleted code.
608 * frame.c (syms_of_frame): Remove leftover from deleted code.
609
4ce7a138
JD
6102012-08-22 Jan Djärv <jan.h.d@swipnet.se>
611
612 * nsterm.m (insertText:): Don't clear modifiers if code is space.
613
d733ec6d
PE
6142012-08-22 Paul Eggert <eggert@cs.ucla.edu>
615
616 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
617 Otherwise, the compiler complains about (A?B:C) where B is void
618 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
619 (fontset_add): Return void, for FONTSET_ADD.
620
d0d2d26f
PE
6212012-08-21 Paul Eggert <eggert@cs.ucla.edu>
622
fce31d69
PE
623 * alloc.c: Use bool for booleans.
624 (gc_in_progress, abort_on_gc)
625 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
626 (dont_register_blocks) [GC_MALLOC_CHECK]:
627 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
628 (check_string_bytes, make_specified_string, memory_full)
629 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
630 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
631 (mark_stack, valid_pointer_p, make_pure_string)
632 (Fgarbage_collect, survives_gc_p, gc_sweep):
633 Use bool for booleans, instead of int.
634 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
635 Remove unused local.
636 * alloc.c (PURE_POINTER_P):
637 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
638 * editfns.c (Fformat):
639 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
640 (Fdo_auto_save):
641 * fns.c (sweep_weak_table):
642 * lisp.h (suppress_checking, push_message, survives_gc_p)
643 (make_pure_string, gc_in_progress, abort_on_gc):
644 * lread.c (readchar, read1):
645 * print.c (Fprin1_to_string):
646 * xdisp.c (push_message):
647 Use bool for booleans affected directly or indirectly by
648 alloc.c's changes.
649
d0d2d26f
PE
650 Make recently-introduced setters macros.
651 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
652 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
653 (set_fontset_default, set_fontset_fallback): Rename from their
654 upper-case counterparts, and make them functions rather than macros.
655 This is more consistent with the other recently-introduced setters.
656 These don't need to be inline, since they're local.
657
d18e2bb6
JD
6582012-08-21 Jan Djärv <jan.h.d@swipnet.se>
659
660 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
661 the loop (Bug#12247).
662
1b9d9d16
PE
6632012-08-21 Paul Eggert <eggert@cs.ucla.edu>
664
665 * lisp.h (vcopy): Use memcpy rather than our own loop.
666 This fixes a performance regression introduced by the recent
667 addition of vcopy. This means 'vcopy' will need to be modified
668 for a copying collector, but that's OK. Also, tighten the
669 checking in the assertion.
670
b2f09701
EZ
6712012-08-21 Eli Zaretskii <eliz@gnu.org>
672
673 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
674 components for RTL text (Bug#11860). Adjust X-OFFSET of each
675 non-base glyph for the width of the base character, according to
e1f29348
BR
676 what x_draw_composite_glyph_string_foreground expects.
677 Generate WADJUST value according to composition_gstring_width's
b2f09701
EZ
678 expectations, to produce correct width of the composed character.
679 Reverse the sign of the DU offset produced by ScriptPlace.
680
9b994fed
PE
6812012-08-21 Paul Eggert <eggert@cs.ucla.edu>
682
683 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
684
086ca913
DA
6852012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
686
687 Avoid direct writes to contents member of struct Lisp_Vector.
688 * lisp.h (vcopy): New function to copy data into vector.
689 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
690 * fns.c (Ffillarray): Use ASET.
691 * keyboard.c (timer_check_2): Use AREF and ASET.
692 (append_tool_bar_item, Frecent_keys): Use vcopy.
693 * lread.c (read_vector): Use ASET.
694 * msdos.c (Frecent_doskeys): Use vcopy.
695 * xface.c (Finternal_copy_lisp_face): Use vcopy.
696 (Finternal_merge_in_global_face): Use ASET and vcopy.
697 * xfont.c (xfont_list_pattern): Likewise.
698
5481664a
MR
6992012-08-21 Martin Rudalics <rudalics@gmx.at>
700
701 * window.c (Fwindow_point): For the selected window always return
702 the position of its buffer's point.
703 (Fset_window_point): For the selected window always go in its
704 buffer to the specified position.
705
6d470bdd
DA
7062012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
707
708 Setter macros for fontsets.
709 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
710 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
711 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
712 Adjust users.
713
24564fe1
GM
7142012-08-20 Glenn Morris <rgm@gnu.org>
715
716 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
717 Don't assume that `ln -f' works.
718
0a05a035
EZ
7192012-08-20 Eli Zaretskii <eliz@gnu.org>
720
721 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
722 and later about non-assignments with no effect. See discussion at
723 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
724 details.
725
e46f2325
DA
7262012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
727
728 Inline setter functions for Lisp_Objects slots of struct specbinding.
729 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
730 Adjust users.
731
734fbd86
MR
7322012-08-20 Martin Rudalics <rudalics@gmx.at>
733
734 * window.c (select_window): Always make selected window's buffer
735 current.
736
f1a95992
DA
7372012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
738
739 Use AREF and ASET for docstrings of category tables.
740 * category.h (CATEGORY_DOCSTRING): Use AREF.
741 (SET_CATEGORY_DOCSTRING): Use ASET.
742 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
743
e83064be
DA
7442012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
745
746 Inline setter functions for hash table members.
747 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
748 (set_hash_hash, set_hash_index): Rename with _slot suffix.
749 (set_hash_key_and_value, set_hash_index, set_hash_next)
750 (set_hash_hash): New functions.
751 * charset.c, fns.c: Adjust users.
752
4ce60d2e
DA
7532012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
754
755 Inline getter and setter functions for per-buffer values.
756 * buffer.h (per_buffer_default, set_per_buffer_default)
757 (per_buffer_value, set_per_buffer_value): New functions.
758 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
759 * buffer.c, data.c: Adjust users.
760
c06c9690
JB
7612012-08-20 Juanma Barranquero <lekktu@gmail.com>
762
763 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
764
32bd4250
PE
7652012-08-19 Paul Eggert <eggert@cs.ucla.edu>
766
bad03192 767 Rely on <config.h> + <unistd.h> to declare 'environ',
b69a6d22
PE
768 as gnulib does this if the system doesn't.
769 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
72279493
EZ
770 Remove declaration. MS-Windows declares it on stdlib.h which is
771 included by conf_post.h.
b69a6d22
PE
772 * emacs.c (environ) [DOUG_LEA_MALLOC]:
773 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
774 * vm-limit.c: Include <unistd.h>, for 'environ'.
775
22d7feb2
PE
776 * unexaix.c, unexcoff.c: Include "mem-limits.h".
777 (start_of_data): Remove decl; mem-limits.h provides it.
778
32bd4250
PE
779 * xdisp.c (handle_invisible_prop): Make it a bit faster
780 and avoid a gcc -Wmaybe-uninitialized diagnostic.
781
450809af
CY
7822012-08-19 Chong Yidong <cyd@gnu.org>
783
784 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
785 ends (Bug#3874).
786
9e677988
AS
7872012-08-19 Andreas Schwab <schwab@linux-m68k.org>
788
6b1319ce
AS
789 * .gdbinit: Use call instead of set when calling a function in the
790 inferior.
791
9e677988
AS
792 * data.c (set_internal): Don't use set_blv_found.
793 (Fkill_local_variable): Likewise.
794
d7191076
AA
7952012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
796
797 * nsfont.m (ns_ascii_average_width): Ensure the string
798 ascii_printable is initialized with a null-terminated character
799 array. Otherwise, it can contain undesired extra characters.
800
e757f1c6
PE
8012012-08-18 Paul Eggert <eggert@cs.ucla.edu>
802
803 port new setting code to Sun C 5.8 2005/10/13
804 * chartab.c, lisp.h (char_table_set, char_table_set_range):
805 Return void, not Lisp_Object. Otherwise, the compiler
806 complains about (A?B:C) where B is void and C is Lisp_Object
807 when compiling CHAR_TABLE_SET, due to the recent change to
808 the API of sub_char_table_set_contents.
809
a999ce26
CY
8102012-08-18 Chong Yidong <cyd@gnu.org>
811
812 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
813 for the string case (Bug#3874).
814
3f22b86f
PE
8152012-08-18 Paul Eggert <eggert@cs.ucla.edu>
816
39eb03f1
PE
817 * buffer.h (BSET): Remove (Bug#12215).
818 Replace all uses with calls to new setter functions.
819 (bset_bidi_paragraph_direction, bset_case_canon_table)
820 (bset_case_eqv_table, bset_directory, bset_display_count)
821 (bset_display_time, bset_downcase_table)
822 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
823 (bset_last_selected_window, bset_local_var_alist)
824 (bset_mark_active, bset_point_before_scroll, bset_read_only)
825 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
826 (bset_width_table):
827 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
828 (bset_auto_fill_function, bset_auto_save_file_format)
829 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
830 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
831 (bset_cache_long_line_scans, bset_case_fold_search)
832 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
833 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
834 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
835 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
836 (bset_header_line_format, bset_indicate_buffer_boundaries)
837 (bset_indicate_empty_lines, bset_invisibility_spec)
838 (bset_left_fringe_width, bset_major_mode, bset_mark)
839 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
840 (bset_name, bset_overwrite_mode, bset_pt_marker)
841 (bset_right_fringe_width, bset_save_length)
842 (bset_scroll_bar_width, bset_scroll_down_aggressively)
843 (bset_scroll_up_aggressively, bset_selective_display)
844 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
845 (bset_word_wrap, bset_zv_marker):
846 * category.c (bset_category_table):
847 * syntax.c (bset_syntax_table):
848 New setter functions.
849
6a09a33b
PE
850 * process.h (PSET): Remove (Bug#12215).
851 Replace all uses with calls to new setter functions.
852 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
853 (PROCESS_INLINE): New macro.
854 (pset_childp): New setter function.
855 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
856 * process.c (PROCESS_INLINE):
857 Define to EXTERN_INLINE, so that the corresponding functions
858 are compiled into code.
859 (pset_buffer, pset_command, pset_decode_coding_system)
860 (pset_decoding_buf, pset_encode_coding_system)
861 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
862 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
863 (pset_type, pset_write_queue): New setter functions.
864
e8c17b81
PE
865 * window.h (WSET): Remove (Bug#12215).
866 Replace all uses with calls to new setter functions.
867 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
868 (WINDOW_INLINE): New macro.
869 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
870 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
871 (wset_total_lines, wset_vertical_scroll_bar)
872 (wset_window_end_pos, wset_window_end_valid)
873 (wset_window_end_vpos): New setter functions.
874 * window.c (WINDOW_INLINE):
875 Define to EXTERN_INLINE, so that the corresponding functions
876 are compiled into code.
877 (wset_combination_limit, wset_dedicated, wset_display_table)
878 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
879 (wset_new_normal, wset_new_total, wset_next_buffers)
880 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
881 (wset_prev_buffers, wset_right_fringe_width)
882 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
883 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
884 (wset_window_parameters):
885 * xdisp.c (wset_base_line_number, wset_base_line_pos)
886 (wset_column_number_displayed, wset_region_showing):
887 New setter functions.
888
3f22b86f
PE
889 * termhooks.h (TSET): Remove (Bug#12215).
890 Replace all uses with calls to new setter functions.
891 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
892 (TERMHOOKS_INLINE): New macro.
893 (tset_charset_list, tset_selection_alist): New setter functions.
894 * terminal.c (TERMHOOKS_INLINE):
895 Define to EXTERN_INLINE, so that the corresponding functions
896 are compiled into code.
897 (tset_param_alist): New setter function.
898
742af32f
PE
8992012-08-17 Paul Eggert <eggert@cs.ucla.edu>
900
15dbb4d6
PE
901 * keyboard.h (KSET): Remove (Bug#12215).
902 Replace all uses with calls to new setter functions.
903 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
904 (KEYBOARD_INLINE): New macro.
905 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
906 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
907 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
908 New setter functions.
909 * keyboard.c (KEYBOARD_INLINE):
910 Define to EXTERN_INLINE, so that the corresponding functions
911 are compiled into code.
912 (kset_echo_string, kset_kbd_queue)
913 (kset_keyboard_translate_table, kset_last_prefix_arg)
914 (kset_last_repeatable_command, kset_local_function_key_map)
915 (kset_overriding_terminal_local_map, kset_real_last_command)
916 (kset_system_key_syms): New setter functions.
917
f00af5b1
PE
918 * frame.h (FSET): Remove (Bug#12215).
919 Replace all uses with calls to new setter functions.
920 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
921 (FRAME_INLINE): New macro.
922 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
923 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
924 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
925 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
926 (fset_param_alist, fset_root_window, fset_scroll_bars)
927 (fset_selected_window, fset_title, fset_tool_bar_items)
928 (fset_tool_bar_position, fset_tool_bar_window): New functions.
929 * frame.c (FRAME_INLINE):
930 Define to EXTERN_INLINE, so that the corresponding functions
931 are compiled into code.
932 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
933
0c94c8d6
PE
934 A few more naming-convention fixes for getters and setters.
935 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
936 and rename from buffer_overlays_set_before.
937 (set_buffer_overlays_after): Move here from buffer.h, and rename
938 from buffer_overlays_set_after.
939 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
940 All uses changed.
941 (set_buffer_intervals): Rename from buffer_set_intervals.
942 * intervals.c (set_interval_object): Move here from intervals.h,
943 and rename from interval_set_object.
944 (set_interval_left): Move here from intervals.h, and rename from
945 interval_set_left.
946 (set_interval_right): Move here from intervals.h, and rename from
947 interval_set_right.
948 (copy_interval_parent): Move here from intervals.h, and rename from
949 interval_copy_parent.
950 * intervals.h (set_interval_parent): Rename from interval_set_parent.
951 (set_interval_plist): Rename from interval_set_plist.
952 Return void, not Lisp_Object, since no caller uses the result.
953 * lisp.h (string_intervals): Rename from string_get_intervals.
954 (set_string_intervals): Rename from string_set_intervals.
955
34dabdb7
PE
956 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
957 (set_char_table_contents): Rename from char_table_set_contents.
0b390a9d 958 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
34dabdb7
PE
959 All uses changed. See the end of
960 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
961
742af32f
PE
962 * lisp.h (CSET): Remove (Bug#12215).
963 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
964 (set_char_table_purpose): New functions,
965 replacing CSET. All uses changed. For example, replace
966 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
c24eb18a 967 "set_char_table_parent (char_table, parent);".
742af32f
PE
968 The old version was confusing because it used the same name
969 'parent' for two different things.
970
a04e2c62
DA
9712012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
972
973 Functions to get and set Lisp_Object fields of buffer-local variables.
974 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
975 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
976 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
977 * data.c, eval.c, frame.c: Adjust users.
978
383dcbf9
CY
9792012-08-17 Chong Yidong <cyd@gnu.org>
980
981 * xfaces.c (merge_face_vectors): If the target font specfies a
982 font spec, make the font's attributes take precedence over
983 directly-specified attributes.
984 (merge_face_ref): Recognize :font.
985
44386687
DA
9862012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
987
988 Do not use memcpy for copying intervals.
989 * intervals.c (reproduce_interval): New function.
990 (reproduce_tree, reproduce_tree_obj): Use it.
991 (reproduce_tree_obj): Remove prototype.
992
927c7216
PE
9932012-08-17 Paul Eggert <eggert@cs.ucla.edu>
994
995 * lisp.h (duration_to_sec_usec): Remove unused decl.
996
93044f7b
AA
9972012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
998
999 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
1000 to an allocated instance of NSString, not to the class itself.
1001
9851e4a5
JB
10022012-08-17 Juanma Barranquero <lekktu@gmail.com>
1003
1004 * makefile.w32-in (C_CTYPE_H): New macro.
1005 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
1006 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
1007 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
1008
620f13b0
PE
10092012-08-16 Paul Eggert <eggert@cs.ucla.edu>
1010
1011 Use ASCII tests for character types.
1012 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
1013 * xfns.c, xterm.c:
1014 Don't include <ctype.h>; was not needed.
1015 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
1016 * sysdep.c, xfaces.c:
1017 Include <c-ctype.h> instead of <ctype.h>.
1018 * nsterm.m: Include <c-ctype.h>.
1019 * charset.c (read_hex):
1020 * doc.c (Fsnarf_documentation):
1021 * fileio.c (IS_DRIVE) [WINDOWSNT]:
1022 (DRIVE_LETTER) [DOS_NT]:
1023 (Ffile_name_directory, Fexpand_file_name)
1024 (Fsubstitute_in_file_name):
1025 * font.c (font_parse_xlfd, font_parse_fcname):
1026 * frame.c (x_set_font_backend):
1027 * gtkutil.c (xg_get_font):
1028 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
1029 * nsimage.m (hexchar):
1030 * nsterm.m (ns_xlfd_to_fontname):
1031 * sysdep.c (system_process_attributes):
1032 * xfaces.c (hash_string_case_insensitive):
1033 Use C-locale tests instead of locale-specific tests for character
1034 types, since we want the ASCII interpretation here, not the
1035 interpretation suitable for whatever happens to be the current locale.
1036
52162052
MR
10372012-08-16 Martin Rudalics <rudalics@gmx.at>
1038
1039 Consistently check windows for validity/liveness
1040 (Bug#11984, Bug#12025, Bug#12026).
1041 * lisp.h (CHECK_VALID_WINDOW): New macro.
1042 * window.c (decode_window): Rename to decode_live_window.
1043 (decode_valid_window, Fwindow_valid_p): New functions.
1044 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
1045 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
1046 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
1047 (Fwindow_prev_sibling, Fwindow_combination_limit)
1048 (Fset_window_combination_limit, Fwindow_use_time)
1049 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
1050 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
1051 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
1052 (Fwindow_hscroll, Fset_window_hscroll)
1053 (Fwindow_redisplay_end_trigger)
1054 (Fset_window_redisplay_end_trigger, Fwindow_edges)
1055 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
1056 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
1057 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
1058 (Fwindow_end, Fset_window_point, Fset_window_start)
1059 (Fpos_visible_in_window_p, Fwindow_line_height)
1060 (Fwindow_dedicated_p, Fset_window_dedicated_p)
1061 (Fwindow_prev_buffers, Fset_window_prev_buffers)
1062 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
1063 (Fset_window_parameter, Fwindow_display_table)
1064 (Fset_window_display_table, Fdelete_other_windows_internal)
1065 (Fset_window_buffer, Fset_window_new_total)
1066 (Fset_window_new_normal, Fdelete_window_internal)
1067 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
1068 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
1069 (Fwindow_scroll_bars): Check whether argument window is a valid or
1070 live window. Update doc-strings.
1071 (syms_of_window): New symbol Qwindow_valid_p.
1072 * keyboard.c (Fposn_at_x_y): Check whether argument
1073 frame_or_window denotes a valid window.
1074
2751c80f
DA
10752012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
1076
1077 Fix previous char table change.
1078 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
1079 * chartab.c (optimize_sub_char_table): Likewise.
1080
032a42c8
CY
10812012-08-16 Chong Yidong <cyd@gnu.org>
1082
a2d19368
CY
1083 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
1084
032a42c8
CY
1085 * xfont.c (xfont_open):
1086 * xftfont.c (xftfont_open): Set the font's max_width field.
1087
1088 * nsfont.m (nsfont_open): Similar to the Xft backend, set
1089 min_width to space_width and average_width to the average over
1090 printable ASCII characters.
1091 (ns_char_width): Code cleanup.
1092 (ns_ascii_average_width): New utility function.
1093
1094 * font.h (struct font): Update comments.
1095
a098c930
DA
10962012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
1097
032a42c8 1098 Simple interface to set Lisp_Object fields of character tables.
a098c930
DA
1099 * lisp.h (CSET): New macro.
1100 (char_table_set_extras, char_table_set_contents)
1101 (sub_char_table_set_contents): New function.
1102 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
1103 * syntax.c: Adjust users.
1104
8be3a09c
SM
11052012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
1106
1107 * eval.c (eval_sub): Bind lexical-binding.
1108 * lread.c (Qlexical_binding): Make non-static.
1109
ac4845a6
JD
11102012-08-15 Jan Djärv <jan.h.d@swipnet.se>
1111
ddee6515
JD
1112 * nsmenu.m (popupSession): Remove.
1113 (pop_down_menu): Remove endModalSession.
1114 (timeout_handler:): New method.
1115 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
1116 Call runModalForWindow. Check timer_fired when it returns.
1117 If not set, cancel timer and break out of loop.
1118 Otherwise loop again, with a new timeout.
1119
1120 * nsterm.m: Include fcntl.h if present.
1121 (fd_entry, t_readfds, inNsSelect): Remove.
1122 (select_writefds, select_valid, select_timeout, selfds)
1123 (select_mutex, apploopnr): Add.
1124 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
1125 Otherwise call kbd_buffer_store_event.
1126 (ns_send_appdefined): Remove release of fd_entry.
1127 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
1128 Increment and decrement apploopnr.
1129 (ns_select): If no file descriptors, just do a NSTimer.
1130 Otherwise copy read/write masks and start select thread (fd_handler).
1131 Start main loop and wait for application defined event.
1132 Inform select thread to stop selecting after main loop is exited.
1133 (ns_term_init): Create selfds pipe and set non-blocking.
1134 Initialize select_mutex. Start the select thread (fd_handler).
1135 (fd_handler:): Loop forever, wait for info from the main thread
1136 to either start or stop selecting. When select returns, send
1137 and appdefined event.
1138 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
1139 If not call kbd_buffer_store_event.
1140
1141 * nsterm.h (EmacsApp): fd_handler takes id argument.
1142 (EmacsDialogPanel): Add timer_fired and timeout_handler.
1143
ac4845a6
JD
1144 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
1145
eb424fe3
EZ
11462012-08-15 Eli Zaretskii <eliz@gnu.org>
1147
1148 * region-cache.c (move_cache_gap): Update gap_len using the actual
1149 growth of the boundaries array. Do not change cache_len.
1150 (Bug#12196)
1151
4e6a86c6
DA
11522012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
1153
1154 Generalize and cleanup font subsystem checks.
1155 * font.h (FONT_DEBUG, font_assert): Remove.
8be3a09c
SM
1156 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
1157 Change font_assert to eassert. Use eassert where appropriate.
4e6a86c6 1158
5bf192ca
DA
11592012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
1160
1161 * gtkutil.c (xg_get_font): Use pango_units_to_double.
1162
f2045622
CY
11632012-08-15 Chong Yidong <cyd@gnu.org>
1164
8be3a09c
SM
1165 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
1166 When using the new font chooser, use gtk_font_chooser_get_font_desc to
1167 extract the font descriptor instead of just the font name.
1168 In that case, return a font spec instead of a string.
f2045622
CY
1169 (x_last_font_name): Move to this file from xfns.c.
1170
1171 * xfns.c (Fx_select_font): The return value can also be a font
1172 spec. Move x_last_font_name management to gtkutil.c.
1173
1174 * xfaces.c: Make font weight and style symbols non-static.
1175
7f6feb56
SM
11762012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
1177
1178 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
1179 (bug#12117).
1180
fecbd8ff
SM
11812012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
1182
1183 * alloc.c (Fgarbage_collect): Use plural form consistently.
1184
9b8d5165
EZ
11852012-08-14 Eli Zaretskii <eliz@gnu.org>
1186
1187 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
1188 iteration through the command loop. Fixes a problem whereby mouse
1189 movements are ignored until the first mouse click.
1190
f5d9e83a
PE
11912012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1192
1193 Use bool, not int, for Lisp booleans.
1194 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
1195 makes Emacs a bit smaller and presumably a bit faster.
1196 * lisp.h: Include <stdbool.h>.
1197 (struct Lisp_Boolfwd, defvar_bool):
1198 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
1199 * regex.c [!emacs]: Include <stdbool.h>.
1200 (false, true): Remove; <stdbool.h> does this for us now.
1201
55802e4a
CY
12022012-08-14 Chong Yidong <cyd@gnu.org>
1203
4abcdac8
CY
1204 * character.c (Fcharacterp): Doc fix (Bug#12076).
1205
1206 * data.c (Findirect_variable): Doc fix (Bug#11040).
1207
55802e4a
CY
1208 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
1209
1210 * editfns.c (Fformat): Doc fix (Bug#12059).
4abcdac8 1211 (Fsave_current_buffer): Doc fix (Bug#11542).
55802e4a 1212
8e99d072
BR
12132012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
1214
1215 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
1216 (bug#12022).
1217
08908aca
MR
12182012-08-14 Martin Rudalics <rudalics@gmx.at>
1219
1220 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
1221 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
1222 * minibuf.c (choose_minibuf_frame, read_minibuf):
1223 * w32fns.c (x_create_tip_frame):
1224 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
1225 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
1226
56120d6f
PE
12272012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1228
1229 * intervals.c (offset_intervals): Remove obsolete comment.
1230
67b77c0b
AS
12312012-08-14 Andreas Schwab <schwab@linux-m68k.org>
1232
1233 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
1234
f48b82fd
GR
12352012-08-14 Gergely Risko <gergely@risko.hu>
1236
1237 * coding.c (decode_coding): Record buffer modification before
1238 disabling undo_list (Bug#11773).
1239
fd318b54
DA
12402012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
1241
1242 Revert and cleanup some recent overlay changes.
1243 * buffer.h (enum overlay_type): Remove.
1244 (buffer_get_overlays, buffer_set_overlays): Likewise.
1245 (buffer_set_overlays_before, buffer_set_overlays_after):
1246 New function. Adjust users.
1247 (unchain_both): Add eassert.
1248
41a62dd9
DA
12492012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
1250
1251 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
1252
5884c324
PE
12532012-08-14 Paul Eggert <eggert@cs.ucla.edu>
1254
1255 * gtkutil.c (xg_mark_data): Don't assume C99.
1256
ca06f160
JD
12572012-08-13 Jan Djärv <jan.h.d@swipnet.se>
1258
1259 * gtkutil.c (xg_frame_tb_info): New struct.
1260 (TB_INFO_KEY): New define.
1261 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
1262 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
1263 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
1264 if not present.
1265 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
1266 is up to date. Otherwise store new data.
1267 (free_frame_tool_bar): Free xg_frame_tb_info if present.
1268
7864a3f7
DA
12692012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
1270
1271 Use KSET for write access to Lisp_Object members of struct kboard.
1272 * keyboard.h (KSET): New macro.
1273 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
1274 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
1275 * xterm.c: Adjust users.
1276
4c31be61
DA
12772012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
1278
1279 Use BSET for write access to Lisp_Object members of struct buffer.
1280 * buffer.h (BSET): New macro.
1281 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
1282 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
1283 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
1284 * window.c, xdisp.c, xfns.c: Adjust users.
1285
14ae4239
BT
12862012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
1287
1288 * lread.c (syms_of_lread): Initialize Vlexical_binding.
1289
32bcadb4
JD
12902012-08-11 Jan Djärv <jan.h.d@swipnet.se>
1291
3d29b2ce
JD
1292 * nsterm.m (not_in_argv): New function.
1293 (application:openFile, application:openTempFile:):
1294 (application:openFileWithoutUI:, application:openFiles:): Open file
1295 if not_in_argv returns non-zero (bug#12171).
1296
32bcadb4 1297 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
14ae4239
BT
1298 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
1299 Define for Gtk+ versions less than 3.2.
32bcadb4
JD
1300 (xg_get_font_name): Use those functions/macros here.
1301 Reported by Frans Oilinki <moilinki@gmail.com>.
1302
9ff9402d 13032012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8ccd072a
YM
1304
1305 * unexmacosx.c (copy_data_segment): Copy initialized data in
1306 statically linked libraries from input file rather than memory.
1307
db74a5fc
YM
1308 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
1309 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
1310 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
1311
25e65510
GM
13122012-08-10 Glenn Morris <rgm@gnu.org>
1313
1314 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
1315 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
1316
7961135c
DA
13172012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1318
1319 Fix last change to allow compilation with low optimization levels.
1320 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
1321 Reported by Jan Djärv <jan.h.d@swipnet.se>.
1322
42b3a444
DA
13232012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1324
1325 Use common inline syntax in intervals.h.
1326 * intervals.h (INTERVALS_INLINE): New macro.
1327 Change all users from LISP_INLINE.
1328
9fb0c957
DA
13292012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1330
1331 Define Qnone once for all platforms.
1332 * frame.c (Qnone): Define here.
1333 (syms_of_frame): DEFSYM it.
1334 * lisp.h (Qnone): New declaration.
1335 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
1336 * xfns.c: Remove duplication. Adjust users.
1337
65e8ee52
DA
13382012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
1339
1340 Remove unused macros from intervals.h.
1341 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
1342 * intervals.c: Adjust comment.
1343
9b855fd6
EZ
13442012-08-10 Eli Zaretskii <eliz@gnu.org>
1345
1346 * w32fns.c <w32_unicode_gui>: New static variable.
1347 (globals_of_w32fns): Initialize it according to os_subtype.
1348 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
1349 testing os_subtype.
1350
39cb9e56 13512012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
d30be705
EZ
1352 Eli Zaretskii <eliz@gnu.org>
1353
1354 Fix bug #10299 with Unicode characters sent by customized
1355 keyboards created by MSKLC.
1356 * w32fns.c (INIT_WINDOW_CLASS): New macro.
1357 (w32_init_class): Use it to initialize the Emacs class with either
1358 ANSI or Unicode API calls.
1359 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
1360 later.
1361 (w32_wnd_proc): If the character code sent by WM_CHAR or
1362 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
1363 original message. Call DefWindowProcW on NT and later.
1364
9374581a
GM
13652012-08-10 Glenn Morris <rgm@gnu.org>
1366
4b94e8cf
GM
1367 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
1368
9374581a
GM
1369 * lisp.h (DIRECTORY_SEP): Let configure set it.
1370
a2752828
DA
13712012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
1372
1373 Use TSET for write access to Lisp_Object slots of struct terminal.
1374 * termhooks.h (TSET): New macro.
1375 * coding.c, terminal.c, xselect.c: Adjust users.
1376
cc92c454
SM
13772012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
1378
1379 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
1380 the failing expression, include them in the error message.
1381 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
1382 * lisp.h (internal_condition_case_n): Update declaration.
1383
4cb3e6b3
DA
13842012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1385
1386 Inline functions to examine and change buffer overlays.
1387 * buffer.c (unchain_both): New function.
1388 * buffer.h (buffer_get_overlays, buffer_set_overlays):
1389 (buffer_has_overlays): New function.
1390 (enum overlay_type): New enum.
1391 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
1392 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
1393
8707c1e5
DA
13942012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1395
1396 Inline functions to examine and change buffer intervals.
1397 * alloc.c (mark_interval_tree): Remove.
1398 (MARK_INTERVAL_TREE): Simplify.
1399 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
1400 * intervals.c (buffer_balance_intervals): New function.
1401 (graft_intervals_into_buffer): Adjust indentation.
1402 (set_intervals_multibyte): Simplify.
1403 * buffer.h (BUF_INTERVALS): Remove.
1404 (buffer_get_intervals, buffer_set_intervals): New function.
1405 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
1406 * intervals.c, textprop.c: Adjust users.
1407
ad8c997f
DA
14082012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1409
1410 Inline functions to examine and change string intervals.
1411 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
1412 (string_get_intervals, string_set_intervals): New function.
1413 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
1414 * lread.c, print.c, textprop.c: Adjust users.
1415
32ac3a6b
GM
14162012-08-08 Glenn Morris <rgm@gnu.org>
1417
1418 * lisp.mk (lisp): Remove language/persian.elc.
1419
77c7bcb1
DA
14202012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1421
1422 Cleanup intervals.
1423 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
1424 (NULL_INTERVAL_P): Likewise. Adjust users.
14ae4239
BT
1425 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
1426 Adjust comment. Move under #if 0.
77c7bcb1
DA
1427 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
1428 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
1429
9c08a8d4
DA
14302012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
1431
1432 Check total length of intervals with eassert.
1433 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
1434 * intervals.c: Change all users to eassert.
1435
26d16b35
EZ
14362012-08-07 Eli Zaretskii <eliz@gnu.org>
1437
14ae4239
BT
1438 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
1439 Rename fields to match removal of FGET and WGET and disuse of
26d16b35
EZ
1440 INTERNAL_FIELD in Lisp_Cons.
1441
c644523b
DA
14422012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1443
1444 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
1445 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
1446 name since all xname users are fixed long time ago. Do not
1447 use INTERNAL_FIELD.
1448 (set_symbol_name, set_symbol_function, set_symbol_plist):
1449 (set_symbol_next, set_overlay_plist): New function.
1450 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
1451 (struct Lisp_Overlay): Likewise.
1452 (CVAR, MVAR, SVAR): Remove.
1453 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
1454 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
1455 * xterm.c: Adjust users.
1456 * .gdbinit: Change to use name field of struct Lisp_Symbol
1457 where appropriate.
1458
6a3d20cc
DA
14592012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1460
1461 Basic functions to set Lisp_Object and pointer slots of intervals.
1462 * intervals.h (interval_set_parent, interval_set_object):
1463 (interval_set_left, interval_set_right, interval_set_plist):
1464 (interval_copy_parent): New function.
1465 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
14ae4239
BT
1466 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
1467 Adjust indentation.
6a3d20cc
DA
1468 (INTERVAL_SIZE): Remove. Adjust users.
1469 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
1470
4d2b044c
DA
14712012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1472
1473 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
1474 * process.h (PGET): Remove.
1475 (struct Lisp_Process): Do not use INTERNAL_FIELD.
1476 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
1477
d3d50620
DA
14782012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1479
1480 Drop WGET and revert read access to Lisp_Objects slots of struct window.
1481 * window.h (WGET): Remove.
1482 (struct window): Do not use INTERNAL_FIELD.
1483 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
1484 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
1485 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
1486 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
1487 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
1488 Adjust users.
1489
d10a51dc
CY
14902012-08-07 Chong Yidong <cyd@gnu.org>
1491
1492 * window.c (Fwindow_edges, Fwindow_pixel_edges)
1493 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
1494 (Fdelete_window_internal): Signal an error if the window is not on
1495 a live frame (Bug#12025).
1496
e69b0960
DA
14972012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
1498
1499 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
1500 * frame.h (FGET): Remove.
1501 (struct frame): Do not use INTERNAL_FIELD.
1502 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
1503 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
1504 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
1505 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
1506
25a20a3a
JB
15072012-08-06 Juanma Barranquero <lekktu@gmail.com>
1508
1509 * w32.c: Silence compiler warnings.
1510 (map_w32_filename): Remove unused variable `is_fat'.
1511 (chase_symlinks): Add parentheses around expression.
1512
1c6f11f4
GM
15132012-08-06 Glenn Morris <rgm@gnu.org>
1514
1db4583a
GM
1515 * sysdep.c: Respect BROKEN_GETWD.
1516
1c6f11f4
GM
1517 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
1518 Let configure handle it.
1519 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
1520
2b90362b
DA
15212012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1522
1523 Use GCALIGNMENT where appropriate.
1524 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
1525 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
1526 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
1527
5f50daf2
EZ
15282012-08-06 Eli Zaretskii <eliz@gnu.org>
1529
14ae4239
BT
1530 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
1531 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5f50daf2 1532
cbcc7007
SM
15332012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
1534
1535 * buffer.h (struct buffer): Revert `indirections' to a simple int;
1536 that should be sufficient for everyone.
1537
4d365fa4
JD
15382012-08-06 Jan Djärv <jan.h.d@swipnet.se>
1539
1540 * keyboard.c (timer_check_2): Add break so timer_check returns next
1541 timeout.
1542
dd86bd82
DA
15432012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1544
1545 Fix Windows build errors introduced after converting to WGET and WSET.
1546 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
1547 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
1548
054e1668
JD
15492012-08-06 Jan Djärv <jan.h.d@swipnet.se>
1550
1551 * nsterm.m (ns_frame_rehighlight): Use FSET.
1552
1553 * nsmenu.m (ns_update_menubar): Use FSET.
1554
21238f11
DA
15552012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1556
1557 Separate read and write access to Lisp_Object slots of Lisp_Process.
1558 * process.h (PGET, PSET): New macros similar to AREF and ASET.
1559 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
1560
077288cf
DA
15612012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1562
1563 Separate read and write access to Lisp_Object slots of struct window.
1564 * window.h (WGET, WSET): New macros similar to AREF and ASET.
1565 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
1566 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
1567 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
1568 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
1569 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
1570 Adjust users.
1571
71688bd7
DA
15722012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1573
1574 Fix Windows build errors introduced after converting to FGET and FSET.
1575 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
1576 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
1577 (w32_judge_scroll_bars): Change to use FSET.
1578 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
1579
f99bac93
DA
15802012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1581
1582 Fix replacement typo.
1583 * window.c (replace_window): Set root_window instead of
1584 selected_window. This fixes a total window subsystem
1585 malfunction reported by Bastien Guerry <bzg@gnu.org>.
1586
8c2a0f2d
GM
15872012-08-06 Glenn Morris <rgm@gnu.org>
1588
1589 * lisp.mk (lisp): Add language/persian.elc.
1590
edd74c35
DA
15912012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
1592
1593 Separate read and write access to Lisp_Object slots of struct frame.
1594 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
1595 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
1596 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
1597 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
1598 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
1599
8671676c
AS
16002012-08-05 Andreas Schwab <schwab@linux-m68k.org>
1601
1602 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
1603
663e2b3f
DA
16042012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
1605
1606 Generalize common compile-time constants.
1607 * lisp.h (header_size, bool_header_size, word_size): Now here.
1608 (struct Lisp_Vector): Add comment.
1609 (struct Lisp_Bool_Vector): Move up to define handy constants.
1610 (VECSIZE, PSEUDOVECSIZE): Simplify.
1611 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
1612 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
1613 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
1614 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
1615 * xfont.c, xmenu.c: Use word_size where appropriate.
1616
d32e47af
LM
16172012-08-05 Lawrence Mitchell <wence@gmx.li>
1618
1619 * search.c (Freplace_match): Treat \? in the replacement text
1620 literally (Bug#8161).
1621
e5d9c0d1
CY
16222012-08-05 Chong Yidong <cyd@gnu.org>
1623
1624 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
1625 * frame.c (Vdelete_frame_functions):
1626 * emacs.c (Vkill_emacs_hook): Doc fix.
1627
8da0576b
EZ
16282012-08-04 Eli Zaretskii <eliz@gnu.org>
1629
1630 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
1631 --with-x-toolkit=no builds.
1632 Reported by Carsten Mattner <carstenmattner@gmail.com>.
1633
02676e5d
CY
16342012-08-04 Chong Yidong <cyd@gnu.org>
1635
1636 * syntax.c (Fmodify_syntax_entry): Doc fix.
1637
97147da9
EZ
16382012-08-04 Eli Zaretskii <eliz@gnu.org>
1639
76151e2c
EZ
1640 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
1641 * w32.c (init_environment): Change the default values of many
1642 environment variables in dflt_envvars[] to NULL, to avoid pushing
14ae4239
BT
1643 them into environment when they were not already defined.
1644 Remove the code that deletes site-lisp subdirectories from the default
76151e2c 1645 value of EMACSLOADPATH, as it is no longer needed.
14ae4239
BT
1646 (check_windows_init_file): Now external, not static.
1647 Use Vload_path as is, without adding anything, as this function is now
76151e2c
EZ
1648 called when Vload_path is already set up.
1649
1650 * w32.h (check_windows_init_file): Add prototype.
1651
1652 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
1653 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
1654 compatibility with Posix platforms.
1655 (main): Move the call to check_windows_init_file to here from
1656 w32.c.
1657 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
1658 any, in the DEFALT argument into the root of the Emacs build or
1659 installation tree, as appropriate.
1660
1661 * callproc.c (init_callproc_1): Call decode_env_path instead of
1662 doing its equivalent by hand.
1663 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
1664 the code that sets Vexec_path run on MS-Windows.
1665
1666 * lread.c (init_lread): Add comments to #ifdef's.
1667
97147da9
EZ
1668 * msdos.c (dos_set_window_size, IT_update_begin)
1669 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
1670 instead of direct references.
1671
185ee146
PE
16722012-08-04 Paul Eggert <eggert@cs.ucla.edu>
1673
1674 Export DEFAULT_REHASH_* to GDB.
1675 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
1676 Now constants, not macros.
1677
8834c57a
PE
16782012-08-03 Paul Eggert <eggert@cs.ucla.edu>
1679
98c6f1e3
PE
1680 Remove unnecessary casts involving pointers.
1681 These casts are no longer needed now that we assume C89 or later,
1682 since they involve casting to or from void *.
1683 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
1684 (make_pure_float, make_pure_vector):
1685 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
1686 * macros.c (Fstart_kbd_macro):
1687 * menu.c (find_and_return_menu_selection):
1688 * minibuf.c (read_minibuf_noninteractive):
1689 * sysdep.c (closedir):
1690 * xdisp.c (x_produce_glyphs):
1691 * xfaces.c (compare_fonts_by_sort_order):
1692 * xfns.c (x_real_positions, select_visual):
1693 * xselect.c (x_stop_queuing_selection_requests)
1694 (x_get_window_property, x_get_window_property_as_lisp_data):
1695 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
1696 Remove unnecessary pointer casts.
1697 * alloc.c (record_xmalloc): New function.
1698 * lisp.h (record_xmalloc): New decl.
1699 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
1700 more like a function. This is because the pointer cast is not
1701 needed. All uses changed.
1702 * print.c (print_string, print_error_message): Avoid length recalc.
1703
8834c57a
PE
1704 Improve fix for macroexp crash with debugging (Bug#12118).
1705 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
1706 ARRAY_MARK_FLAG when checking subscripts, because ASET is
1707 not supposed to be invoked from the garbage collector.
1708 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
1709 (gc_aset): New function, which is like ASET but can be
1710 used in the garbage collector.
1711 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
1712 (set_hash_index): Use it instead of ASET.
1713
6dad7178
EZ
17142012-08-03 Eli Zaretskii <eliz@gnu.org>
1715
1716 Support symlinks on latest versions of MS-Windows.
1717 * w32.c: Include winioctl.h and aclapi.h.
1718 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
1719 (revert_to_self): Forward declarations of static functions.
1720 <static BOOL g_b_init_get_security_info>:
1721 <g_b_init_create_symbolic_link>: New static flags.
1722 (globals_of_w32): Initialize them to zero.
1723 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
1724 (map_w32_filename): Improve commentary. Simplify switch.
1725 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
1726 headers (most versions of MinGW w32api don't).
1727 (get_security_info, create_symbolic_link)
1728 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
1729 New functions.
1730 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
1731 in the argument file name.
1732 (sys_access): Call unc_volume_file_attributes only if
1733 GetFileAttributes fails with network-related error codes.
1734 (sys_rename): Diagnose renaming of a symlink when the user doesn't
1735 have the required privileges.
14ae4239 1736 (get_file_security_desc_by_name): Rename from
6dad7178
EZ
1737 get_file_security_desc.
1738 (stat_worker): New function, with most of the guts of 'stat', and
14ae4239
BT
1739 with addition of handling of symlinks and support for 'lstat'.
1740 If possible, get file's attributes and security information by
6dad7178
EZ
1741 handle, not by name. Produce S_IFLNK bit for symlinks, when
1742 called from 'lstat'.
1743 (stat, lstat): New functions, call 'stat_worker'.
1744 (symlink, readlink, careadlinkat): Rewritten to create and resolve
1745 symlinks when the underlying filesystem supports them.
1746
f162bcc3
PE
17472012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1748
79ea6c20
PE
1749 Fix macroexp crash on Windows with debugging (Bug#12118).
1750 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
1751 checking subscripts; problem introduced with the recent
1752 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
1753 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
1754 since it's used in non-static inline functions now.
1755
c0ce93fd
PE
1756 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
1757 Don't assume buffer size fits in 'int'. Remove unused local.
c71f5156 1758
f162bcc3
PE
1759 Use C99-style 'extern inline' if available.
1760 * buffer.h (BUFFER_INLINE):
1761 * category.h (CATEGORY_INLINE):
1762 * character.h (CHARACTER_INLINE):
1763 * charset.h (CHARSET_INLINE):
1764 * composite.h (COMPOSITE_INLINE):
1765 * dispextern.h (DISPEXTERN_INLINE):
1766 * lisp.h (LISP_INLINE):
1767 * systime.h (SYSTIME_INLINE):
1768 New macro, replacing 'static inline' in this header.
1769 * buffer.h, category.h, character.h, charset.h, composite.h:
1770 * dispextern.h, lisp.h, systime.h:
1771 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
1772 * alloc.c (LISP_INLINE):
1773 * buffer.c (BUFFER_INLINE):
1774 * category.c (CATEGORY_INLINE):
1775 * character.c (CHARACTER_INLINE):
1776 * charset.c (CHARSET_INLINE):
1777 * composite.c (COMPOSITE_INLINE):
1778 * dispnew.c (DISPEXTERN_INLINE):
1779 * sysdep.c (SYSTIME_INLINE):
1780 Define to EXTERN_INLINE, so that the corresponding functions
1781 are compiled into code.
1782 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
1783 (INLINE_HEADER_END): New macros.
1784 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
1785 since it's used in non-static inline functions now.
a8333d03 1786 (VALMASK) [!USE_LSB_TAG]: Likewise.
f162bcc3 1787
837b365b
GM
17882012-08-02 Glenn Morris <rgm@gnu.org>
1789
d66b744d
GM
1790 * s/: Remove empty directory.
1791
837b365b
GM
1792 * s/ms-w32.h: Move to ../nt/inc.
1793 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
1794 Update for new ms-w32.h location.
1795
13294f95
PE
17962012-08-02 Paul Eggert <eggert@cs.ucla.edu>
1797
1798 Port to Solaris 8.
1799 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
1800
90df0db3
GM
18012012-08-02 Glenn Morris <rgm@gnu.org>
1802
1803 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
1804 hard-coding the path separator.
1805
4939150c
PE
18062012-08-01 Paul Eggert <eggert@cs.ucla.edu>
1807
1808 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
1809 This how ASET and AREF are supposed to work, and makes
1810 it easier to think about future improvements. See
1811 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
1812 * charset.h (set_charset_attr): New function.
1813 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
1814 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
1815 (aref_addr): New function. All uses of &AREF(...) changed.
1816 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
1817 (set_hash_index): New functions. All lvalue-style uses of
1818 HASH_KEY etc. changed.
1819 * keyboard.c (set_prop): New function. All lvalue-style uses
1820 of PROP changed.
1821
947b2afd
AA
18222012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
1823
1824 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
1825 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
1826 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
1827 * nsfns.m (ns_set_name_as_filename): Likewise.
1828 * nsmenu.m (ns_update_menubar): Likewise.
1829 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
1830
4f5d0325
EZ
18312012-08-01 Eli Zaretskii <eliz@gnu.org>
1832
2008beae
EZ
1833 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
1834 Adapt to latest changes in field names of the corresponding Lisp
288479f6 1835 objects.
2008beae 1836
4f5d0325
EZ
1837 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
1838
fe3cc771
GM
18392012-08-01 Glenn Morris <rgm@gnu.org>
1840
1841 * s/msdos.h: Remove file.
1842 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
1843 * Makefile.in (S_FILE): Remove.
1844 (config_h): Remove S_FILE.
1845
c90acc54
JB
18462012-08-01 Juanma Barranquero <lekktu@gmail.com>
1847
1848 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
1849 Remove; moved to nt/config.nt.
1850
d8a05828
DA
18512012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
1852
1853 Use INTERNAL_FIELD for conses and overlays.
1854 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
1855 Remove obsolete comment.
1856 (MVAR): New macro.
1857 (struct Lisp_Overlay): Use INTERNAL_FIELD.
1858 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
1859
8271d590
DA
18602012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
1861
1862 Use INTERNAL_FIELD for symbols.
1863 * lisp.h (SVAR): New macro. Adjust users.
1864 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
1865 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
1866
3193acd2
DA
18672012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
1868
1869 Use INTERNAL_FIELD for processes.
1870 * process.h (PVAR): New macro. Adjust style.
1871 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
1872 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
1873
3a45383a
DA
18742012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
1875
1876 Use INTERNAL_FIELD for windows.
1877 * window.h (WVAR): New macro.
1878 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
1879 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
1880 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
1881 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
1882 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
1883 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
1884
c1dbc63c
PE
18852012-08-01 Paul Eggert <eggert@cs.ucla.edu>
1886
1887 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
1888
5c0c0e8a
GM
18892012-08-01 Glenn Morris <rgm@gnu.org>
1890
1891 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
1892 Move to configure.ac.
1893
552a99b4
JB
18942012-08-01 Juanma Barranquero <lekktu@gmail.com>
1895
1896 * makefile.w32-in (CONFIG_H): Update dependencies.
1897 (CONF_POST_H): New macro.
1898
1899 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
1900
8d8e2dfe
GM
19012012-07-31 Glenn Morris <rgm@gnu.org>
1902
bc96620a
GM
1903 * Makefile.in (S_FILE): No longer set by configure.
1904
476b1b2d
GM
1905 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
1906 is available.
1907 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
1908
b2c7a106
GM
1909 * process.h (NULL_DEVICE):
1910 * emacs.c (SEPCHAR):
1911 * editfns.c (USER_FULL_NAME): Let configure set them.
1912
d53d062a
GM
1913 * s/README, s/template.h: Remove files.
1914
4515017f
GM
1915 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
1916
8d8e2dfe
GM
1917 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
1918 Move to configure.ac.
1919
5b20b3cc
EZ
19202012-07-31 Eli Zaretskii <eliz@gnu.org>
1921
1e0afd9a
EZ
1922 * .gdbinit (xframe): Adapt to introduction of FVAR and the
1923 resulting renaming of 'struct frame' members.
1924
5b20b3cc
EZ
1925 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
1926
1927 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
1928 after introduction of FVAR.
1929
f1310128
JD
19302012-07-31 Jan Djärv <jan.h.d@swipnet.se>
1931
79e721e0
JD
1932 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
1933
1934 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
1935 instead of compositeToPoint.
1936 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
1937
8d7c7eed 1938 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
f1310128 1939
e34f7f79
DA
19402012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
1941
1942 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
1943 * lisp.h (INTERNAL_FIELD): New macro.
14ae4239 1944 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
e34f7f79
DA
1945 (BVAR): Change to use INTERNAL_FIELD.
1946 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
1947 (KVAR): Change to use INTERNAL_FIELD.
1948 * frame.h (FVAR): New macro.
1949 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
3a45383a
DA
1950 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
1951 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
1952 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
e34f7f79
DA
1953 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
1954
c09bfb2f
DA
19552012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
1956
1957 Miscellaneous fixes for non-default X toolkits.
1958 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
1959 * xterm.c (x_frame_of_widget): Remove redundant prototype.
1960 Move under #ifdef USE_LUCID.
1961 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
1962 definition and usage to avoid warnings.
1963
14c114ae
JD
19642012-07-31 Jan Djärv <jan.h.d@swipnet.se>
1965
1966 * nsterm.m (openFiles): Fix previous checkin.
1967
3bd21e82
PE
19682012-07-31 Paul Eggert <eggert@cs.ucla.edu>
1969
1970 * indent.c (compute_motion): Remove unused local.
1971
c1529ded
GM
19722012-07-31 Glenn Morris <rgm@gnu.org>
1973
400d5621
GM
1974 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
1975
268e2432
GM
1976 * conf_post.h [USG5_4]:
1977 Move remaining contents of s/usg5-4-common.h here.
1978 * s/usg5-4-common.h: Remove file.
1979
7552f3ee
GM
1980 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
1981 * s/irix6-5.h: Remove file.
1982
6a381852
GM
1983 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
1984 * s/darwin.h: Remove file.
1985
c1529ded
GM
1986 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
1987 * s/hpux10-20.h: Remove file, which is now empty.
1988
b429a4ee
GM
19892012-07-30 Glenn Morris <rgm@gnu.org>
1990
1991 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
1992 * Makefile.in (config_h): Add conf_post.h.
1993 * makefile.w32-in (CONFIG_H): Add conf_post.h.
1994
adff3182
JD
19952012-07-30 Jan Djärv <jan.h.d@swipnet.se>
1996
1997 * nsterm.m (ns_do_open_file): New variable.
b9031d69 1998 (ns_term_init): Set ns_do_open_file to YES after run returns.
14ae4239
BT
1999 (openFile, openTempFile, openFileWithoutUI, openFiles):
2000 Open files only if ns_do_open_file.
adff3182 2001
c32af1e4
PE
20022012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2003
7393bcbb
PE
2004 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
2005 This no-op macro hasn't been needed for many years.
2006 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
2007
c32af1e4
PE
2008 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
2009 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
2010 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
2011 gdb_make_enums_visible.
2012 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
2013 (DIRECTORY_SEP): Now a constant, not a macro.
2014
302fc036
EZ
20152012-07-30 Eli Zaretskii <eliz@gnu.org>
2016
2017 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
2018 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
2019
2020 * w32term.c <w32_keyboard_codepage>: Renamed from
2021 keyboard_codepage and now external. All users changed.
2022
2023 * w32term.h: Add declaration of w32_keyboard_codepage.
2024
2025 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
2026 the codepage to translate keys to Unicode. If this argument is
2027 -1, use the value returned by GetConsoleCP. All callers changed.
2028
88fb40b4
PE
20292012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2030
0aee6912
PE
2031 Update .PHONY listings in makefiles.
2032 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
2033 bootstrap-clean, distclean, maintainer-clean, versioclean,
2034 extraclean, frc.
2035
88fb40b4
PE
2036 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
2037 This is a bit clearer. Fix some commentary typos.
2038
0a763bd1
GM
20392012-07-30 Glenn Morris <rgm@gnu.org>
2040
32bac6d6
GM
2041 * s/netbsd.h: Let configure include signal.h if needed.
2042 Remove file, which is now empty.
2043
b65e7c46
GM
2044 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
2045 Let configure set them.
2046 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
2047 No more need to undefine.
0a763bd1 2048
169304bd
AS
20492012-07-30 Andreas Schwab <schwab@linux-m68k.org>
2050
2051 * keymap.c (Fkey_description): Don't remove 0x80 bit from
2052 non-single-byte char when adding meta modifier. (Bug#12090)
2053
6cd7a139
DA
20542012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
2055
2056 Convert safe_call to use variable number of arguments.
2057 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
2058 (safe_call2): Fix comment.
2059 * lisp.h (safe_call): Adjust prototype.
2060 * coding.c (encode_coding_object): Change to use safe_call2.
2061 * xfaces.c (merge_face_heights): Change to use safe_call1.
2062
d34d6ffc
GM
20632012-07-30 Glenn Morris <rgm@gnu.org>
2064
7b8a48e4 2065 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
227f5bd0 2066 does that unconditionally. Remove file, which is now empty.
7b8a48e4 2067
d34d6ffc
GM
2068 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
2069 Remove empty files.
2070
03a660a6
PE
20712012-07-30 Paul Eggert <eggert@cs.ucla.edu>
2072
2073 Export to GDB most of lisp.h's remaining object-like macros.
2074 * lisp.h (min, max): Move earlier, because they're used earlier now.
2075 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
2076 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
2077 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
2078 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
2079 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
2080 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
2081 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
2082 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
2083 Now constants, for GDB. They need not be macros.
2084 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
2085 Now constants, for GDB, as well as macros, for static initializers.
2086 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
2087 Move to after the definition of struct Lisp_Char_Table,
2088 since the former now needs that type defined.
2089 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
2090 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
2091 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
2092 New enums, for gdb_make_enums_visible.
2093 (GLYPH_MODE_LINE_FACE): Remove; unused.
88fb40b4 2094 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
03a660a6
PE
2095 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
2096 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
2097 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
2098 enum maxargs, enum MAX_ALLOCA.
2099 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
2100 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
2101 no longer needed, now that they are done in lisp.h.
2102
e499d0ee
DA
21032012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
2104
2105 Cleanup string bytes checking.
2106 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
2107 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
2108 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
2109 (check_sblock, compact_small_strings): Simplify.
2110
d5040d2d
PE
21112012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2112
2113 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
2114 These macros are confusing and no longer need to be defined, as
2115 the enum values now suffice. All uses replaced with definiens.
2116 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
2117
7f259ae6
JB
21182012-07-29 Juanma Barranquero <lekktu@gmail.com>
2119
2120 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
2121 ($(BLD)/w32console.$(O)): Update dependencies.
2122
7e63e0c3
DA
21232012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2124
2125 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
2126 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
2127 time. Adjust users.
2128 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
2129
ffd817eb
JD
21302012-07-29 Jan Djärv <jan.h.d@swipnet.se>
2131
2132 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
2133 setting sitelisp (Bug#12010).
2134
417a7a0e
EZ
21352012-07-29 Eli Zaretskii <eliz@gnu.org>
2136
14ae4239 2137 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
417a7a0e
EZ
2138
2139 * w32heap.c (cache_system_info):
2140 * w32.c (sys_rename):
2141 * w32proc.c (find_child_console, sys_kill): All users changed.
2142
387d4d92
PE
21432012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2144
2145 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
2146
55a6cca6
EZ
21472012-07-29 Eli Zaretskii <eliz@gnu.org>
2148
2149 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
2150
dbcf001c
DA
21512012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2152
2153 Cleanup statistics calculation in Fgarbage_collect.
14ae4239
BT
2154 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
2155 Fix zombies percentage calculation. Simplify elapsed time calculation.
dbcf001c 2156
e2688e4a
DA
21572012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
2158
2159 Generalize marker debugging code under MARKER_DEBUG and use eassert.
2160 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
2161 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
2162 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
2163 (replace_range, replace_range_2, del_range_2): Change to eassert.
2164 * marker.c (byte_char_debug_check): Adjust style.
2165
b46a6a83
PE
21662012-07-29 Paul Eggert <eggert@cs.ucla.edu>
2167
2168 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
2169 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
2170 long-ago-commented-out code that talks about "WIN32".
2171 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
2172 All uses changed.
2173
e32a5799
PE
21742012-07-28 Paul Eggert <eggert@cs.ucla.edu>
2175
2176 Use Gnulib stdalign module (Bug#9772, Bug#9960).
2177 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
2178 Simplify by using alignof.
2179 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
2180 * lisp.h: Include <stdalign.h>.
2181 (GCALIGNMENT): New macro and constant.
2182 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
2183 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
2184 (stdalign): New macro, if not already defined.
2185
df81cd29
EZ
21862012-07-28 Eli Zaretskii <eliz@gnu.org>
2187
01bd1b0d
EZ
2188 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
2189 * w32inevt.c: Include w32inevt.h.
2190 (w32_read_console_input): New inline function, calls either
2191 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
2192 w32_console_unicode_input.
2193 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
2194 (w32_kbd_patch_key, key_event): Use the codepage returned by
2195 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
2196 (key_event): use uChar.UnicodeChar only if
2197 w32_console_unicode_input is non-zero.
2198
2199 * w32console.c: Include w32heap.h.
2200 <w32_console_unicode_input>: New global variable.
2201 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
2202 family of Windows, zero otherwise.
2203
2204 * w32inevt.h: Declare w32_console_unicode_input.
2205
df81cd29
EZ
2206 * xdisp.c (init_iterator): Don't reference tip_frame in a build
2207 --without-x. (Bug#11742)
2208
c20fdd9e
PE
22092012-07-27 Paul Eggert <eggert@cs.ucla.edu>
2210
2211 Adjust GDB to reflect pvec_type changes (Bug#12036).
2212 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
14ae4239
BT
2213 2012-07-04 changes to pseudovector representation.
2214 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
c20fdd9e 2215
32770973 22162012-07-27 Michael Albinus <michael.albinus@gmx.de>
e518bc71
MA
2217
2218 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
2219 bus address.
2220 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
2221
3438fe21
EZ
22222012-07-27 Eli Zaretskii <eliz@gnu.org>
2223
bcfbc9de
EZ
2224 * alloc.c (listn): Fix the order the arguments are consed onto the
2225 list.
2226
3438fe21
EZ
2227 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
2228 enumeration constants, as PURE and HEAP are too general, and clash
2229 with other headers and sources, such as gmalloc.c and the
2230 MS-Windows system headers. All users changed.
2231
eeaea515
DA
22322012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2233
2234 Revert last save_excursion_save and save_excursion_restore changes.
2235 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
2236 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
2237
073c88c2
DA
22382012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2239
2240 Fix recently-introduced typos in Windows port.
2241 Reported by Martin Rudalics <rudalics@gmx.at>.
2242 * w32.c (init_environment): Replace comma with semicolon.
eeaea515 2243 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
073c88c2 2244
4706125e
PE
22452012-07-27 Paul Eggert <eggert@cs.ucla.edu>
2246
2247 Improve GDB symbol export (Bug#12036).
2248 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
2249 arms of an 'if', not using conditional expressions; otherwise GDB
2250 complains about the types in the unevaluated arm when the argument
2251 is an integer literal.
2252 (xgetint): Simplify expression.
2253 * alloc.c (gdb_make_enums_visible): New constant. This ports to
2254 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
2255 Zaretskii in <http://bugs.gnu.org/12036#13>.
2256 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
2257 needed now that we have gdb_make_enums_visible.
2258 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
2259 (enum enum_USE_LSB_TAG):
2260 New enum types, packaging up enums that need to be exported to GDB.
2261
694b6c97
DA
22622012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2263
2264 Utility function to make a list from specified amount of objects.
2265 * lisp.h (enum constype): New datatype.
2266 (listn): New prototype.
2267 * alloc.c (listn): New function.
2268 (Fmemory_use_count, syms_of_alloc): Use it.
2269 * buffer.c (syms_of_buffer): Likewise.
2270 * callint.c (syms_of_callint): Likewise.
2271 * charset.c (define_charset_internal): Likewise.
2272 * coding.c (syms_of_coding): Likewise.
2273 * keymap.c (syms_of_keymap): Likewise.
2274 * search.c (syms_of_search): Likewise.
2275 * syntax.c (syms_of_syntax): Likewise.
2276 * w32.c (init_environment): Likewise.
2277 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
2278 * xdisp.c (syms_of_xdisp): Likewise.
2279 * xfns.c (syms_of_xfns): Likewise.
2280
6195f384
DA
22812012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
2282
2283 Fast save_excursion_save and save_excursion_restore.
2284 * lisp.h (struct Lisp_Excursion): New data type.
2285 (PVEC_EXCURSION): New pseudovector type.
2286 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
2287 to deal with it. Adjust comments.
2288 (init_marker, attach_marker): New prototype.
2289 (unchain_marker): Adjust prototype.
2290 * marker.c (attach_marker): Change to global.
2291 (init_marker): New function.
2292 * alloc.c (Fmake_marker, build_marker): Use it.
2293 (build_marker): More easserts.
2294 (mark_object): Handle struct Lisp_Excursion.
2295 * editfns.c (save_excursion_save, save_excursion_restore):
2296 Reimplement to use struct Lisp_Excursion. Add comments.
2297
5eceb8fb
PE
22982012-07-26 Paul Eggert <eggert@cs.ucla.edu>
2299
2300 Fix export of symbols to GDB (Bug#12036).
2301 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
2302 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
2303 emacs.c, as this is a more-suitable home. Had this been done earlier
2304 the fix for 12036 would have avoided some of the problems noted in
2305 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
2306 would have been more obvious.
562157c8
PE
2307 * emacs.c: Do not include <verify.h>; no longer needed.
2308 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
5eceb8fb
PE
2309 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
2310 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
2311 Remove; now done in lisp.h.
2312 * lisp.h (PUBLISH_TO_GDB): New macro.
2313 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
2314 (DATA_SEG_BITS): Use it.
2315 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
2316 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
2317 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
2318 not be usable in #if. This simplifies things.
2319
d6749401
JB
23202012-07-26 Juanma Barranquero <lekktu@gmail.com>
2321
2322 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
2323
1781b9e9
PE
23242012-07-26 Paul Eggert <eggert@cs.ucla.edu>
2325
d89518db 2326 Simplify export of symbols to GDB (Bug#12036).
1781b9e9
PE
2327 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
2328 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
2329 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
2330 Adjust to changes in lisp.h and emacs.c, by using
2331 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
2332 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
2333 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
2334 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
2335 instead of gdb_valbits.
2336 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
2337 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
2338 instead of gdb_array_mark_flag.
2339 (xboolvector): Get size from $->size, not $->header.size.
2340 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
2341 (xreload, hook-run, hookpost-run): Remove.
2342 * emacs.c: Include <verify.h>.
2343 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
2344 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
2345 Remove.
2346 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
2347 (gdb_USE_LSB_TAG): New enum constants.
2348 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
2349 Also define these as enum constants, so they're visible to GDB.
2350 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
2351 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
2352 as constants, so they're visible to GDB.
2353 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
2354 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
2355 Now enum constants, not macros, so they're visible to GDB.
2356 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
2357 more convenient now. All uses changed.
2358 (VALMASK) [USE_LSB_TAG]: Also define in this case.
2359 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
2360
3628596a
DA
23612012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
2362
2363 Explicitly free restriction data that are not needed anymore.
2364 * editfns.c (save_restriction_restore): Free restriction data.
2365
7abaf5cc
SM
23662012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
2367
2368 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
2369 add argument, tune behavior, and adjust all callers.
2370
71f88e00
PE
23712012-07-25 Paul Eggert <eggert@cs.ucla.edu>
2372
2373 Use typedef for EMACS_INT, EMACS_UINT.
2374 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
2375 than macros. This simplifies debugging in the usual case, since
2376 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
2377 and it allows expressions involving EMACS_INT casts.
2378 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
2379
57ec3034
JD
23802012-07-25 Jan Djärv <jan.h.d@swipnet.se>
2381
2382 * nsterm.m (ns_read_socket): Return early if there is a modal
2383 window (Bug#12043).
2384
8137e7b3
MR
23852012-07-25 Martin Rudalics <rudalics@gmx.at>
2386
2387 * frame.c (Fredirect_frame_focus): In doc-string don't mention
2388 that FOCUS-FRAME can be omitted.
2389
04e9897c
DA
23902012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
2391
2392 Adjust buffer text indirection counters at the end of Fkill_buffer.
2393 * buffer.c (Fkill_buffer): Adjust indirection counters when the
2394 buffer is definitely dead. This should really fix an issue reported
2395 by Christoph Scholtes again. (Bug#12007).
2396 (init_buffer_once): Initialize indirection counters of
2397 buffer_defaults and buffer_local_symbols (for sanity and safety).
2398
8a0484e1
EZ
23992012-07-24 Eli Zaretskii <eliz@gnu.org>
2400
2401 * xdisp.c (init_iterator): Don't compute dimensions of truncation
2402 and continuation glyphs on tooltip frames, leave them at zero.
2403 Avoids continued lines in tooltips. (Bug#11832)
2404
fa691a83
DA
24052012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
2406
2407 Simplify copy_overlay.
04e9897c 2408 * buffer.c (copy_overlay): Simplify. Use build_marker.
fa691a83
DA
2409 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
2410
436bc8e0
EZ
24112012-07-23 Eli Zaretskii <eliz@gnu.org>
2412
2413 * print.c (print_object): Don't crash when a frame's name is nil
2414 or invalid. (Bug#12025)
2415
2416 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
2417 it signals an error when a tooltip frame is being created.
2418
d7a7fda3
DA
24192012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
2420
2421 Cleanup miscellaneous objects allocation and initialization.
2422 * alloc.c (allocate_misc): Change to static. Add argument to
2423 specify the subtype. Adjust comment and users.
2424 (build_overlay): New function.
2425 * buffer.c (copy_overlays, Fmake_overlay): Use it.
2426 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
2427 (allocate_misc): Remove prototype.
2428 (build_overlay): Add prototype.
2429
24302012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
372f8ffc
DA
2431
2432 Swap buffer text indirection counters in Fbuffer_swap_text.
2433 * buffer.c (Fbuffer_swap_text): Swap indirections too.
2434 This avoids crash reported by Christoph Scholtes at
2435 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
2436
9d7fa573
JD
24372012-07-22 Jan Djärv <jan.h.d@swipnet.se>
2438
2439 * nsmenu.m (Popdown_data): New struct.
2440 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
2441 free Popdown_data.
2442 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
2443 (initWithContentRect): Make imgView and contentView non-static
2444 and autorelease them. Also autorelease img and matrix (Bug#12005).
2445 (dealloc): Remove (Bug#12005).
2446
0dd6d66d
DA
24472012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
2448
2449 Adjust consing_since_gc when objects are explicitly freed.
2450 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
2451 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
2452 (free_cons, free_misc): Subtract object size from consing_since_gc.
2453
d36d71df
DA
24542012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
2455
2456 Simplify and cleanup markers positioning code.
2457 * marker.c (attach_marker): More useful eassert.
2458 (live_buffer, set_marker_internal): New function.
2459 (Fset_marker, set_marker_restricted): Use set_marker_internal.
2460 (set_marker_both, set_marker_restricted_both): Use live_buffer.
2461
fb9ea40f
PE
24622012-07-22 Paul Eggert <eggert@cs.ucla.edu>
2463
2464 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
2465 as it's limited by the amount of memory, not by INT_MAX.
2466
2d5c5f7d
EZ
24672012-07-21 Eli Zaretskii <eliz@gnu.org>
2468
07fb592e
EZ
2469 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
2470 in special-event-map. See the discussion at
2471 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
2472 for the reasons.
2473
37a9eac8 2474 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
14ae4239
BT
2475 info.dwItemData. Fixes crashes on 64-bit Windows.
2476 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2d5c5f7d 2477
c4328746
JD
24782012-07-21 Jan Djärv <jan.h.d@swipnet.se>
2479
2480 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
4b17afa7 2481 (conversationIdentifier): Return value is NSInteger.
784051c4 2482 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
c4328746 2483
6e5d1c12
CY
24842012-07-21 Chong Yidong <cyd@gnu.org>
2485
2486 * window.c (decode_any_window): Signal an error if the window is
2487 on a dead frame (Bug#11984).
2488
9928463d
DA
24892012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2490
2491 Add indirection counting to speed up Fkill_buffer.
2492 * buffer.h (struct buffer): New member.
2493 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
2494 (Fmake_indirect_buffer): Set indirection counter to -1, increment
2495 base buffer indirection counter.
2496 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
2497 (Fkill_buffer): Adjust indirection counters as needed, don't walk
2498 through buffer list if indirection counter is 0.
2499
f8643a6b
DA
25002012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2501
2502 Extend the value returned by Fgarbage_collect with heap statistics.
2503 * alloc.c (Qheap): New symbol.
2504 (syms_of_alloc): DEFSYM it.
2505 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
2506 (Fmemory_free): Remove.
2507 (syms_of_alloc): Don't defsubr it.
2508 * buffer.c (Fcompact_buffer): Remove.
2509 (syms_of_buffer): Don't defsubr it.
2510
dac616ff
DA
25112012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2512
2513 Make maybe_gc inline.
2514 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
2515 * lisp.h (consing_since_gc, gc_relative_threshold)
2516 (memory_full_cons_threshold): Revert declaration.
2517 (maybe_gc): Remove prototype, define as inline.
2518 * alloc.c: Remove old commented-out code.
2519 (consing_since_gc, gc_relative_threshold)
2520 (memory_full_cons_threshold): Revert to global.
2521 (maybe_gc): Remove.
2522
d7ea76b4
DA
25232012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2524
2525 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
2526 * lisp.h (build_unibyte_string): New function.
2527 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
2528 * sysdep.c, w32fns.c, xfns.c: Use it.
2529 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
2530 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
2531 Adjust users accordingly.
2532 * font.h (font_open_by_name): Adjust prototype.
2533
765e61e3
DA
25342012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
2535
2536 Cleanup calls to Fgarbage_collect.
2537 * lisp.h (maybe_gc): New prototype.
2538 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
2539 Remove declarations.
2540 * alloc.c (maybe_gc): New function.
2541 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
2542 Make them static.
2543 * bytecode.c (MAYBE_GC): Use maybe_gc.
2544 * eval.c (eval_sub, Ffuncall): Likewise.
2545 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
2546 to avoid dependency from auto-save feature.
2547
52b852c7
PE
25482012-07-19 Paul Eggert <eggert@cs.ucla.edu>
2549
2550 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
2551 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
2552 'for_each_per_buffer_object_at'.
2553 All uses changed. It's better to use upper-case for macros that
2554 cannot be implemented as functions, to give the reader a clue
2555 that they're special.
2556
5db81e33
SM
25572012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
2558
2559 * alloc.c (Fgarbage_collect): Tweak docstring.
2560
5b835e1d
DA
25612012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2562
2563 Tweak the value returned from Fgarbage_collect again.
2564 * alloc.c (Fgarbage_collect): New return value, as confirmed in
2565 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
2566 Adjust documentation.
2567 (total_vector_bytes): Rename to total_vector_slots, adjust
2568 accounting.
2569 (total_free_vector_bytes): Rename to total_free_vector_slots,
2570 adjust accounting.
2571 (Qstring_bytes, Qvector_slots): New symbols.
2572 (syms_of_alloc): DEFSYM them.
2573
9cd47b72
DA
25742012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2575
2576 Buffer compaction primitive which may be used from Lisp.
2577 * buffer.c (compact_buffer, Fcompact_buffer): New function.
2578 (syms_of_buffer): Register Fcompact_buffer.
2579 * alloc.c (Fgarbage_collect): Use compact_buffer.
2580 * buffer.h (compact_buffer): New prototype.
2581 (struct buffer_text): New member.
2582
d17337e5
DA
25832012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
2584
2585 New macro to iterate over all buffers, miscellaneous cleanups.
2586 * lisp.h (all_buffers): Remove declaration.
2587 * buffer.h (all_buffers): Add declaration, with comment.
2588 (for_each_buffer): New macro.
2589 * alloc.c (Fgarbage_collect, mark_object): Use it.
2590 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
2591 (init_buffer): Likewise.
2592 * data.c (Fset_default): Likewise.
2593 * coding.c (code_conversion_restore): Remove redundant check
2594 for dead buffer.
2595 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
2596
60cfd278
AS
25972012-07-18 Andreas Schwab <schwab@linux-m68k.org>
2598
2599 Fix bug that created negative-length intervals.
2600 * intervals.c (merge_interval_right, merge_interval_left):
2601 Do not zero out this interval if it is absorbed by its children,
2602 as this interval's total length doesn't change in that case. See
2603 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
2604
d06714cb
PE
26052012-07-18 Paul Eggert <eggert@cs.ucla.edu>
2606
83713154
PE
2607 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
2608 when invoking (make-bool-vector N t) and N is a positive
2609 multiple of 8 -- the last 8 bits were mistakenly cleared.
2610
d06714cb
PE
2611 Remove some struct layout assumptions in bool vectors.
2612 * alloc.c (bool_header_size): New constant.
2613 (header_size, word_size): Move earlier, as they're now used earlier.
2614 Use 'word_size' in a few more places, where it's appropriate.
2615 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
2616 padding before the data member of a bool vector.
2617 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
2618 than doing the check by hand with an abort ().
2619
464d5a5e
SM
26202012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
2621
5fbc0409
SM
2622 * eval.c (Fdefvar): Don't check constants since we only set the var if
2623 it's not yet defined anyway (bug#11904).
2624
464d5a5e
SM
2625 * lisp.h (last_undo_boundary): Declare new var.
2626 * keyboard.c (command_loop_1): Set it.
2627 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
2628 were auto-added by the command loop (bug#11774).
2629
8dc2e44a
AS
26302012-07-18 Andreas Schwab <schwab@linux-m68k.org>
2631
2632 * w32font.c (Qsymbol): Remove local definition.
2633 (syms_of_w32font): Don't DEFSYM it.
2634
169925ec
DA
26352012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
2636
2637 Fix sweep_vectors to handle large bool vectors correctly.
2638 * alloc.c (sweep_vectors): Account total_vector_bytes for
2639 bool vectors larger than VBLOCK_BYTES_MAX.
2640
5fbfb018
CY
26412012-07-18 Chong Yidong <cyd@gnu.org>
2642
2643 * frame.c (x_set_frame_parameters): Revert bogus change introduced
2644 in 2012-05-25 commit by Paul Eggert (Bug#11738).
2645
3ab6e069
DA
26462012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
2647
2648 Return more descriptive data from Fgarbage_collect.
2649 Suggested by Stefan Monnier in
2650 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
2651 * alloc.c (bounded_number): New function.
2652 (total_buffers, total_vectors): New variable.
2653 (total_string_size): Rename to total_string_bytes, adjust users.
2654 (total_vector_size): Rename to total_vector_bytes, adjust users.
2655 (sweep_vectors): Account total_vectors and total_vector_bytes.
2656 (Fgarbage_collect): New return value. Adjust documentation.
2657 (gc_sweep): Account total_buffers.
2658 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
2659 (VECTOR_SIZE): Remove.
2660 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
2661 (Qinterval, Qmisc): New symbols.
2662 (syms_of_data): Initialize them.
2663 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
2664 (Qcons, Qbuffer): New declarations.
2665
6d02fe5b
PE
26662012-07-17 Paul Eggert <eggert@cs.ucla.edu>
2667
2668 * alloc.c (Fmemory_free): Account for memory-free's own storage.
2669 Round up, not down. Improve doc.
2670
b7ffe040
DA
26712012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2672
2673 Restore old code in allocate_string_data to avoid Faset breakage.
2674 Reported by Julien Danjou <julien@danjou.info> in
2675 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
2676 * alloc.c (allocate_string_data): Restore old code with minor
2677 adjustments, fix comment to explain this subtle issue.
2678
4dc7c8d5
SM
26792012-07-17 Eli Zaretskii <eliz@gnu.org>
2680
2681 Remove FILE_SYSTEM_CASE.
2682 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
2683
2684 * fileio.c (FILE_SYSTEM_CASE): Don't define.
2685 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
2686 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
2687 call-process-region passes it through expand-file-name.
2688
2689 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
2690
26912012-07-17 Andreas Schwab <schwab@linux-m68k.org>
2692
2693 Fix crash when creating indirect buffer (Bug#11917)
2694 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
2695 Don't handle unbound variables specially if non-zero.
2696 (Fbuffer_local_variables): Pass zero.
2697 (clone_per_buffer_values): Pass non-zero.
2698
26992012-07-17 Andreas Schwab <schwab@linux-m68k.org>
2700
2701 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
2702 to make the loop interruptible.
2703
27042012-07-17 Andreas Schwab <schwab@linux-m68k.org>
2705
2706 * gnutls.c (emacs_gnutls_handshake): Only retry if
2707 GNUTLS_E_INTERRUPTED.
2708
cce7fefc
DA
27092012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2710
2711 Cleanup and convert miscellaneous checks to eassert.
2712 * alloc.c (mark_interval): Fix comment, partially rephrase
2713 old comment from intervals.h (see below).
2714 * intervals.c (find_interval, adjust_intervals_for_insertion)
2715 (delete_interval, adjust_intervals_for_deletion)
2716 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
2717 Convert to eassert.
2718 (adjust_intervals_for_insertion, make_new_interval):
2719 Remove obsolete and unused code.
2720 * intervals.h (struct interval): Remove obsolete comment.
2721 * textprotp.c (erase_properties): Remove unused code.
2722 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
2723 (Fremove_list_of_text_properties): Convert to eassert.
2724
9ea10cc3
CY
27252012-07-17 Chong Yidong <cyd@gnu.org>
2726
2727 * editfns.c (Finsert_char): Doc fix.
2728
3900d5de
DA
27292012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2730
2731 Fix previous change to make Fmemory_free always accurate.
2732 * alloc.c (make_interval): Update total_free_intervals.
2733 (make_float): Likewise for total_free_floats.
2734 (free_cons, Fcons): Likewise for total_free_conses.
2735 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
2736 Likewise for total_free_vector_bytes.
2737 (Fmake_symbol): Likewise for total_free_symbols.
2738 (bytes_free): Remove.
2739
7098646f
DA
27402012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2741
2742 Simple free memory accounting feature.
2743 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
2744 (sweep_vectors): Accumulate size of free vectors.
2745 (Fgarbage_collect): Setup bytes_free.
2746 (Fmemory_free): New function.
2747 (syms_of_alloc): Register it.
2748
22657b40
DA
27492012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
2750
2751 Cleanup overlays checking.
2752 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
2753 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
2754 eassert and OVERLAYP.
2755 (sort_overlays): Change to use OVERLAYP.
2756
ddfc8813
RK
27572012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
2758
2759 * editfns.c (Finsert_char): Make it interactive, and make the
2760 second arg optional. Copy interactive spec and docstring from
2761 ucs-insert.
2762
7c26cf3c
PE
27632012-07-17 Paul Eggert <eggert@cs.ucla.edu>
2764
2765 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
2766 Unlike the other wrapped functions, fabs has an unspecified
2767 effect on errno.
2768
5d127af9
JD
27692012-07-16 Jan Djärv <jan.h.d@swipnet.se>
2770
2771 * nsterm.m (keyDown): Interpret flags without left/right bits
2772 as the left key (Bug#11670).
2773
6a0dd1d7
DA
27742012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
2775
2776 Remove empty and useless init functions.
2777 * lisp.h (init_character_once, init_fns, init_image)
2778 (init_filelock, init_sound): Remove prototype.
2779 * character.c (init_character_once): Remove.
2780 * filelock.c (init_filelock): Likewise.
2781 * fns.c (init_fns): Likewise.
2782 * image.c (init_image): Likewise.
2783 * sound.c (init_sound): Likewise.
2784 * emacs.c (main): Adjust accordingly.
2785
7a6136fd
DA
27862012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
2787
2788 * gtkutil.h: Tiny cleanups.
2789 (use_old_gtk_file_dialog): Remove useless declaration.
2790 (xg_uses_old_file_dialog): Add suggested const attribute.
2791
ce811ad9
EZ
27922012-07-15 Eli Zaretskii <eliz@gnu.org>
2793
2794 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
2795 (bidi_paragraph_init): Use it to limit search forward for a strong
2796 directional character in abnormally large paragraphs full of
2797 neutral or weak characters. (Bug#11943)
2798
c9adfeaa
SF
27992012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
2800
2801 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
2802 the toolbar (Bug#9451).
2803 (xg_make_tool_item): Give the widget event box a transparent
2804 background.
2805
fff62aa9
DA
28062012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
2807
2808 Cleanup basic allocation variables and functions.
2809 * alloc.c (ignore_warnings, init_intervals, init_float)
2810 (init_cons, init_symbol, init_marker): Remove.
2811 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
2812 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
2813 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
2814 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
2815 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
2816 (staticidx, init_alloc_once, init_strings, free_ablock):
2817 Remove redundant initialization.
2818 * fns.c (init_weak_hash_tables): Remove.
2819 * lisp.h (init_weak_hash_tables): Remove prototype.
2820
9730daca
DA
28212012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
2822
2823 Use zero_vector where appropriate.
2824 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
2825 accordingly.
2826 * lisp.h (zero_vector): New declaration.
2827 * font.c (null_vector): Remove.
2828 (syms_of_font): Remove initialization and staticpro.
2829 (font_list_entities, font_find_for_lface): Change to use zero_vector.
2830 * keymap.c (Faccessible_keymaps): Likewise.
2831
2e2d2a13
LL
28322012-07-15 Leo Liu <sdl.web@gmail.com>
2833
2834 * fringe.c: Fix typo in comments.
2835
cd276f6e
LL
28362012-07-14 Leo Liu <sdl.web@gmail.com>
2837
2838 * fringe.c: Add a new bitmap exclamation-mark.
2839
5a1131d9
EZ
28402012-07-14 Eli Zaretskii <eliz@gnu.org>
2841
2842 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
2843
2844 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
2845 (HAVE_MENUS): Don't define, defined by editing config.in with
2846 msdos/sed2v2.inp.
2847 (GMALLOC_INHIBIT_VALLOC): Don't define.
2848 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
2849
22e983b7
JB
28502012-07-14 Juanma Barranquero <lekktu@gmail.com>
2851
2852 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
2853
5b3f250f
GM
28542012-07-14 Glenn Morris <rgm@gnu.org>
2855
2856 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
2857 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
2858 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
2859
33d63ff4
GM
28602012-07-13 Glenn Morris <rgm@gnu.org>
2861
5b633342
GM
2862 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
2863
33d63ff4
GM
2864 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
2865 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
2866
b55b9f85
JD
28672012-07-13 Jan Djärv <jan.h.d@swipnet.se>
2868
0dc8cf50
JD
2869 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
2870 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
2871 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
2872 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
2873 where appropriate.
2874 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
2875 as boolean expression.
2876 (x_set_window_size): Remove unused variable toolbar.
2877 (ns_get_color_default, ns_mod_to_lisp): Remove.
2878 (ns_mouse_position): Remove unused variables xchar and ychar.
2879 (ns_compute_glyph_string_overhangs): Remove unused variable face.
2880 (ns_set_vertical_scroll_bar): Remove unused variable count.
2881 (ns_delete_terminal): Remove unused variable i.
2882 (ns_term_init): Remove unused variables r, g and b.
2883 (mouseDown): Remove unused variable window.
2884 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
2885 (initFrameFromEmacs): Remove unused variable vbextra.
2886 (mouseEntered): Remove unused variables p and dpyinfo.
2887 (mouseExited): Remove unused variables p and r.
2888 (ns_define_frame_cursor, ns_clear_frame_area)
2889 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
2890 (menuDown): Assign [sender tag] to variable and cast the variable.
2891
2892 * nsterm.h (menuDown): Add id as type to argument sender.
2893 (ns_display_info_for_name): Add Lisp_Object argument.
2894 (ns_term_init): Add Lisp_Object argument.
2895 (ns_map_event_to_object): Add void argument.
2896 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
2897 prototype with arguments and only declare if __OBJC__.
2898 (nxatoms_of_nsselect): Add void argument.
2899 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
2900 (ns_alloc_autorelease_pool): Add void argument.
2901 (ns_release_autorelease_pool): Add void* argument.
2902 (ns_get_defaults_value): Add const char* argument.
2903
2904 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
2905 (initFromContents): Use SSDATA where appropriate.
2906 (ns_update_menubar): Add braces to ambigous if-else.
2907 (initWithTitle): Put () around assignment in if statement.
2908 (ns_menu_show): Remove unused variables window and keymap.
2909 (update_frame_tool_bar): Remove unused variable selected_p.
2910 (initWithContentRect): Remove unused variable this_cmd_name.
2911
2912 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
2913 appropriate.
2914 (setXBMColor): Remove unused variable len.
2915 (setPixmapData): Put () around assignment in loop statement.
2916
2917 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
2918 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
2919 where appropriate.
2920 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
2921 around assignment in loop statement.
2922 (nsfont_open): Remove unused variable i.
2923 (nsfont_open): Remove unused variable len.
2924 (nsfont_draw): Remove unused variable cs.
2925
2926 * nsfns.m (x_set_icon_name, ns_set_name_internal)
2927 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
2928 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
2929 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
2930 (Fns_font_name, Fns_perform_service)
2931 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
2932 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
2933 (ns_set_name): Remove unused variable view.
2934 (x_set_menu_bar_lines): Remove unused variable olines.
2935 (x_set_tool_bar_lines): Remove unused variable root_window.
2936 (Fns_list_colors): Put () around assignment in while statement.
2937 (Fns_perform_service): Remove unused variable len.
2938 (Fns_display_usable_bounds): Remove unused variable top.
2939 (syms_of_nsfns): Remove unused variable i.
2940
b55b9f85
JD
2941 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
2942 memcpy (Bug#11907).
2943
ed9265fc 29442012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
2277de02
JD
2945
2946 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
2947 and free it with DestroyExceptionInfo (Bug#11558).
2948
ef099b57
JB
29492012-07-13 Juanma Barranquero <lekktu@gmail.com>
2950
2951 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
2952 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
2953 Set here, not in nt/config.nt.
2954
ea814a5d
EZ
29552012-07-13 Eli Zaretskii <eliz@gnu.org>
2956
2957 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
2958 cursor overflow into the last glyph on display line when the right
2959 fringe is off. (Bug#11832)
2960
1a952767
PE
29612012-07-13 Paul Eggert <eggert@cs.ucla.edu>
2962
2963 * xdisp.c (produce_special_glyphs): Now static.
2964 * dispextern.h (produce_special_glyphs): Remove decl.
2965
983188fd
GM
29662012-07-13 Glenn Morris <rgm@gnu.org>
2967
8d7c7eed 2968 * s/bsd-common.h, s/cygwin.h: Remove empty files.
32fb4bb6
GM
2969 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
2970
983188fd
GM
2971 * s/usg5-4-common.h (USG, USG5):
2972 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
2973 * s/sol2-6.h (SOLARIS2):
2974 * s/irix6-5.h (IRIX6_5):
2975 * s/hpux10-20.h (USG, USG5, HPUX):
2976 * s/gnu-linux.h (USG, GNU_LINUX):
2977 * s/freebsd.h (BSD_SYSTEM):
2978 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
2979 * s/cygwin.h (CYGWIN):
2980 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
2981 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
2982
d1e68667 29832012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
24ef80ae
PE
2984
2985 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
24ef80ae 2986
6de0e799
GM
29872012-07-13 Glenn Morris <rgm@gnu.org>
2988
739ae010
GM
2989 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
2990
dbee5793
GM
2991 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
2992
6de0e799
GM
2993 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
2994 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
2995
b82da769
GM
29962012-07-12 Glenn Morris <rgm@gnu.org>
2997
4fae5a7a 2998 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
b82da769
GM
2999
3000 * process.c (init_process_emacs): Rename from init_process.
3001 The old name is also the name of a Mach system call.
3002 * lisp.h, emacs.c: Update for this name change.
3003 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
3004 longer needed.
3005
5a979817
EZ
30062012-07-12 Eli Zaretskii <eliz@gnu.org>
3007
3008 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
3009 memmove call that removes glyphs covered by the left truncation
3010 glyph. Improve commentary.
3011 (display_line): Fix display of continuation glyphs on GUI frames
3012 when the right fringe is turned off and variable-size fonts are
3013 used in the window. Move the code that appends a stretch glyph to
3014 produce_special_glyphs, so that it could be used for truncation
3015 and continuation glyphs alike.
3016 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
3017 glyph of a suitably computed width, to align the special glyphs at
3018 the window margin. Code moved from display_line. (Bug#11832)
3019
3e91a053
GM
30202012-07-12 Glenn Morris <rgm@gnu.org>
3021
ba9e4b84
GM
3022 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
3023
3024 * s/gnu-linux.h, s/hpux10-20.h:
3025 Do not unconditionally define HAVE_XRMSETDATABASE.
3026
3e91a053
GM
3027 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
3028
b300b1f4
PE
30292012-07-12 Paul Eggert <eggert@cs.ucla.edu>
3030
3031 Fix typos that broke OS X build.
3032 Reported by Randal L. Schwartz in
3033 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
3034 * nsterm.m (ns_timeout): Add missing local decl.
3035 (ns_get_color): snprintf -> sprintf, to fix typo.
3036
6e777848
GM
30372012-07-12 Glenn Morris <rgm@gnu.org>
3038
3f922c37
GM
3039 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
3040 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
3041 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
3042 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
3043
0ab7b23a
GM
3044 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
3045 Move PTY_OPEN to configure.
3046
6e777848
GM
3047 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
3048 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
3049 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
3050
4a7edc24
DA
30512012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
3052
3053 Use empty_unibyte_string where applicable.
3054 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
3055 * lread.c (read1): Likewise.
3056 * xsettings.c (syms_of_xsettings): Likewise.
3057
308aab79
GM
30582012-07-12 Glenn Morris <rgm@gnu.org>
3059
42bd1719
GM
3060 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
3061 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7ccad002
GM
3062 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
3063 * s/hpux10-20.h (RUN_TIME_REMAP):
3064 * s/bsd-common.h (TABDLY): Move to configure.
3065
3066 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
3067
3068 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
3069
ea0bbd17 3070 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
42bd1719 3071 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
ea0bbd17
GM
3072
3073 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
51c3b9b4 3074
308aab79
GM
3075 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
3076 * s/template.h: Move NARROWPROTO to configure.
3077
ee1cf5cf
GM
30782012-07-11 Glenn Morris <rgm@gnu.org>
3079
30fe9bf4
GM
3080 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
3081 unused since 2011-01-17 change to systty.h.
3082
ee1cf5cf
GM
3083 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
3084 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
3085 Move HAVE_PTYS and HAVE_SOCKETS to configure.
3086
63e47e07
PE
30872012-07-11 Paul Eggert <eggert@cs.ucla.edu>
3088
3089 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
3090
c43fb4c3
GM
30912012-07-11 Glenn Morris <rgm@gnu.org>
3092
3093 * s/darwin.h, s/gnu-linux.h, s/template.h:
3094 Move INTERRUPT_INPUT to configure.
3095
e8df9267
DA
30962012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3097
3098 Minor adjustments to interning code.
3099 * lisp.h (intern, intern_c_string): Redefine as static inline
3100 wrappers for intern_1 and intern_c_string_1, respectively.
3101 (intern_1, intern_c_string_1): Rename prototypes.
14ae4239
BT
3102 * lread.c (intern_1, intern_c_string_1, oblookup):
3103 Simplify Vobarray checking.
e8df9267
DA
3104 * font.c (font_intern_prop): Likewise. Adjust comment.
3105 * w32font.c (intern_font_name): Likewise.
3106
34348bd4
AS
31072012-07-11 Andreas Schwab <schwab@linux-m68k.org>
3108
d96a1e0c
AS
3109 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
3110
34348bd4
AS
3111 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
3112 of Fcar/Fcdr if possible.
3113 * font.c (check_otf_features): Likewise.
3114 * fontset.c (Fnew_fontset): Likewise.
3115 * gnutls.c (Fgnutls_boot): Likewise.
3116 * minibuf.c (read_minibuf): Likewise.
3117 * msdos.c (IT_set_frame_parameters): Likewise.
3118 * xmenu.c (Fx_popup_dialog): Likewise.
3119 * w32menu.c (Fx_popup_dialog): Likewise.
3120
c8add24e
GM
31212012-07-11 Glenn Morris <rgm@gnu.org>
3122
4b575b3c
GM
3123 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
3124 since nothing has defined it on these platforms.
3125
09f4e3b0
GM
3126 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
3127 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
3128
172bedef
GM
3129 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
3130 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
3131 Move CLASH_DETECTION to configure.
3132
249685df
GM
3133 * s/gnu.h: Remove file, which is now empty.
3134
c8add24e
GM
3135 * s/gnu.h, s/gnu-linux.h:
3136 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
3137
b41253a3
JW
31382012-07-11 John Wiegley <johnw@newartisans.com>
3139
3140 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
3141 function attribute, so we only use it if it exists in the
3142 compiler.
3143
d923b542
DA
31442012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3145
3146 Avoid call to strlen in fast_c_string_match_ignore_case.
3147 * search.c (fast_c_string_match_ignore_case): Change to use
3148 length argument. Adjust users accordingly.
3149 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
3150
5ebbef1d
PE
31512012-07-11 Paul Eggert <eggert@cs.ucla.edu>
3152
bb352260
PE
3153 Assume mkdir, rmdir.
3154 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
3155 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
3156
57054ddd
PE
3157 Assume rename.
3158 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
3159
b747d3f7
PE
3160 Assume perror.
3161 * s/hpux10-20.h (HAVE_PERROR): Remove.
3162 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
3163 Remove dummy definition, as this problem was obsolete long ago.
3164
5ebbef1d
PE
3165 Assume strerror.
3166 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
3167
984e7f30
DA
31682012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
3169
3170 Avoid calls to strlen in font processing functions.
3171 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
14ae4239
BT
3172 (font_open_by_name): Change to use length argument.
3173 Adjust users accordingly.
d923b542
DA
3174 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
3175 Adjust prototypes.
3176 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
3177 Change to return ptrdiff_t.
984e7f30
DA
3178 (xfont_list_pattern, xfont_match): Use length returned by
3179 xfont_decode_coding_xlfd.
3180 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
3181
20e94fdd
GM
31822012-07-11 Glenn Morris <rgm@gnu.org>
3183
9d596af3
GM
3184 * s/darwin.h, s/freebsd.h, s/netbsd.h:
3185 Move DONT_REOPEN_PTY to configure.
3186
20e94fdd
GM
3187 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
3188 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
3189
e99a530f
PE
31902012-07-10 Paul Eggert <eggert@cs.ucla.edu>
3191
22ffb973
PE
3192 Remove "#define unix" that is no longer needed (Bug#11905).
3193 * s/aix4-2.h (unix): Remove; no longer needed.
3194
e9a9ae03
PE
3195 EMACS_TIME simplification (Bug#11875).
3196 This replaces macros (which typically do not work in GDB)
3197 with functions, typedefs and enums, making the code easier to debug.
3198 The functional style also makes code easier to read and maintain.
3199 * systime.h: Include <sys/time.h> on all hosts, not just if
3200 WINDOWSNT, since 'struct timeval' is needed in general.
3201 (EMACS_TIME): Now a typedef, not a macro.
3202 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
3203 not macros.
3204 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
3205 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
3206 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
3207 (EMACS_TIME_LE): Now functions, not macros.
3208 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
3209 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
3210 which are not functions. All uses rewritten to use:
3211 (make_emacs_time): New function.
3212 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
3213 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
3214 not functions. All uses rewritten to use the following, respectively:
3215 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
3216 (add_emacs_time, sub_emacs_time): New functions.
ed9265fc 3217 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
e9a9ae03
PE
3218 * fileio.c (Fcopy_file):
3219 * xterm.c (XTflash): Get the current time closer to when it's used.
3220 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
3221
ffacb126
PE
3222 * bytecode.c (targets): Suppress -Woverride-init warnings.
3223
e99a530f
PE
3224 Simplify by avoiding confusing use of strncpy etc.
3225 * doc.c (Fsnarf_documentation):
3226 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
3227 * frame.c (Fmake_terminal_frame):
3228 * gtkutil.c (get_utf8_string):
3229 * lread.c (openp):
3230 * nsmenu.m (ns_update_menubar):
3231 * regex.c (regerror):
3232 Prefer memcpy to strncpy and strncat when either will do.
3233 * fileio.c (Fsubstitute_in_file_name):
3234 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
3235 (menu_separator_name_p):
3236 * nsmenu.m (ns_update_menubar):
3237 Prefer memcmp to strncmp when either will do.
3238 * nsterm.m: Include <ftoastr.h>.
3239 (ns_get_color):
3240 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
3241 Prefer snprintf to strncpy.
3242 * nsterm.m (ns_term_init):
3243 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
3244 * nsterm.m (ns_term_init):
3245 Avoid the need for strncpy, by using build_string or
3246 make_unibyte_string directly. Use dtoastr, not snprintf.
3247 * process.c (Fmake_network_process): Diagnose service names that
3248 are too long, rather than silently truncating them or creating
3249 non-null-terminated names.
3250 (Fnetwork_interface_info): Likewise, for interface names.
3251 * sysdep.c (system_process_attributes) [GNU_LINUX]:
3252 Prefer sprintf to strncat.
3253 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
3254 Prefer vsnprintf to vsprintf + strncpy.
3255
c59592b3
GM
32562012-07-10 Glenn Morris <rgm@gnu.org>
3257
3258 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
3259 Clarify fallback case.
3260
7d7bbefd
DA
32612012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3262
3263 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
3264 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
3265 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
d923b542 3266 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7d7bbefd
DA
3267 where argument type is known to be a Lisp_Cons.
3268
3a4c8000
TT
32692012-07-10 Tom Tromey <tromey@redhat.com>
3270
3271 * bytecode.c (BYTE_CODE_THREADED): New macro.
3272 (BYTE_CODES): New macro. Replaces all old byte-code defines.
3273 (enum byte_code_op): New type.
3274 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
3275 (exec_byte_code): Use them. Use token threading when applicable.
3276
2a0213a6
DA
32772012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3278
3279 Optimize pure C strings initialization.
3280 * lisp.h (make_pure_string): Fix prototype.
3281 (build_pure_c_string): New function, defined as static inline. This
3282 provides a better opportunity to optimize away calls to strlen when
3283 the function is called with compile-time constant argument.
3284 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
3285 argument, adjust users accordingly. Use build_pure_c_string where
3286 appropriate.
3287 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
3288 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
3289 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
3290
cb1caeaf
DA
32912012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3292
3293 Avoid calls to strlen in miscellaneous functions.
3294 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
3295 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
3296 * lread.c (openp): Likewise.
3297
c293e30c
DA
32982012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
3299
3300 Avoid calls to strlen in path processing functions.
3301 * fileio.c (file_name_as_directory): Add comment. Change to add
3302 srclen argument and return the length of result. Adjust users
3303 accordingly.
3304 (directory_file_name): Fix comment. Change to add srclen argument,
14ae4239
BT
3305 swap 1st and 2nd arguments to obey the common convention.
3306 Adjust users accordingly.
c293e30c
DA
3307 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
3308
9e059e3f
GM
33092012-07-10 Glenn Morris <rgm@gnu.org>
3310
d02eb359
GM
3311 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
3312 Move PENDING_OUTPUT_COUNT definition to configure.
3313
882cf227
GM
3314 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
3315 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
3316 * s/gnu.h (DATA_START): Move definitions to configure.
3317
af6e839f
GM
3318 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
3319 We include usg5-4-common.h, which defines them both.
3320
40289a12
GM
3321 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
3322 O_RDONLY already includes it).
3323
9e059e3f
GM
3324 Stop ns builds setting the EMACSLOADPATH environment variable.
3325 * nsterm.m (ns_load_path): Rename from ns_init_paths.
3326 Now it does not set EMACSLOADPATH, just returns the load-path string.
3327 * nsterm.h: Update accordingly.
3328 * lread.c [HAVE_NS]: Include nsterm.h.
3329 (init_lread) [HAVE_NS]: Use ns_load_path.
3330 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
3331
7c4e8ec0
GM
33322012-07-09 Glenn Morris <rgm@gnu.org>
3333
d4f600ff
GM
3334 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
3335 since the included bsd-common.h does so.
3336
cbb31951
GM
3337 Stop ns builds setting the EMACSPATH environment variable.
3338 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
3339 (ns_init_paths): Do not set EMACSPATH.
3340 * nsterm.h (ns_exec_path): Add it.
3341 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
3342 Use ns_exec_path.
3343
7c4e8ec0
GM
3344 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
3345
26bccfae
PE
33462012-07-09 Paul Eggert <eggert@cs.ucla.edu>
3347
a0bee46f
PE
3348 * process.c (wait_reading_process_output): 'waitchannels' was unset
3349 when read_kbd || !NILP (wait_for_cell); fix this.
3350
5994c183
PE
3351 Add GCC-style 'const' attribute to functions that can use it.
3352 * character.h (char_resolve_modifier_mask):
3353 * keyboard.h (make_ctrl_char):
3354 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
3355 (init_character_once, next_almost_prime, init_fns, init_image)
3356 (flush_pending_output, init_sound):
3357 * mem-limits.h (start_of_data):
3358 * menu.h (finish_menu_items):
3359 Add ATTRIBUTE_CONST.
3360 * emacs.c (DEFINE_DUMMY_FUNCTION):
3361 Declare the dummy function with ATTRIBUTE_CONST.
3362 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
3363 Add decls with ATTRIBUTE_CONST.
3364
26bccfae
PE
3365 Minor improvements to make_formatted_string.
3366 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
3367 where int is good enough, as vsprintf returns an int.
3368 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
3369
a8290ec3
DA
33702012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
3371
3372 Use make_formatted_string to avoid double length calculation.
3373 * lisp.h (make_formatted_string): New prototype.
3374 * alloc.c (make_formatted_string): New function.
3375 * buffer.c (Fgenerate_new_buffer_name): Use it.
3376 * dbus.c (syms_of_dbusbind): Likewise.
3377 * editfns.c (Fcurrent_time_zone): Likewise.
3378 * filelock.c (get_boot_time): Likewise.
3379 * frame.c (make_terminal_frame, set_term_frame_name)
3380 (x_report_frame_params): Likewise.
3381 * image.c (gs_load): Likewise.
3382 * minibuf.c (get_minibuffer): Likewise.
3383 * msdos.c (dos_set_window_size): Likewise.
3384 * process.c (make_process): Likewise.
3385 * xdisp.c (ensure_echo_area_buffers): Likewise.
3386 * xsettings.c (apply_xft_settings): Likewise.
3387
d01ba2f1
GM
33882012-07-09 Glenn Morris <rgm@gnu.org>
3389
3390 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
3391 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
3392 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
3393 * nsterm.h (ns_etc_directory): Add it.
3394 * callproc.c [HAVE_NS]: Include nsterm.h.
3395 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
3396
f1f924b6
DA
33972012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
3398
3399 Move marker debugging code under MARKER_DEBUG.
3400 * marker.c (MARKER_DEBUG): Move marker debugging code under
3401 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
3402 for bootstrap with --enable-checking (~3x slowdown reported
3403 by Juanma Barranquero <lekktu@gmail.com>).
3404 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
3405
ab531b66
PE
34062012-07-08 Paul Eggert <eggert@cs.ucla.edu>
3407
3408 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
3409 See <http://bugs.gnu.org/11825#29>.
3410
c4b3bc8a
EZ
34112012-07-08 Eli Zaretskii <eliz@gnu.org>
3412
3413 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
3414 has no font, use the frame's font. (Bug#11813)
3434fe8a
EZ
3415 (display_line): Add commentary about displaying truncation glyphs
3416 on GUI frames.
3417 (produce_special_glyphs): Move here from term.c.
3418
3419 * term.c (produce_special_glyphs): Move to xdisp.c.
3420
3421 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
3422 section.
c4b3bc8a 3423
b676b881
AS
34242012-07-07 Andreas Schwab <schwab@linux-m68k.org>
3425
f17c5273
AS
3426 * xdisp.c (display_line): Avoid warning about implicit declaration
3427 of FRAME_FONT.
3428
298819b9
AS
3429 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
3430
b676b881
AS
3431 * lisp.h: Remove empty conditional.
3432
6045c4fd
PE
34332012-07-07 Paul Eggert <eggert@cs.ucla.edu>
3434
b3350bf9
PE
3435 * lread.c (load_path_check): Now static.
3436
6045c4fd
PE
3437 Fix some minor --with-ns problems found by static checking.
3438 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
3439 (x_set_font) [!HAVE_X_WINDOWS]:
3440 * image.c (xpm_load_image) [HAVE_NS]:
3441 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
3442 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
3443 Remove unused local.
3444 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
3445 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
3446 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
3447 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
3448 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
3449 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
3450 Fix pointer signedness problem.
3451 * xfaces.c (FRAME_X_FONT_TABLE):
3452 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
3453
929e7845
GM
34542012-07-07 Glenn Morris <rgm@gnu.org>
3455
3456 * lread.c (load_path_check): New function, split from init_lread.
3457 (init_lread): Reorganize. Motivation:
3458 If EMACSLOADPATH is set, check/warn about that rather than the
3459 defaults, which we are not going to use. Hence we can remove
3460 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
3461 Don't warn if site-lisp directories are missing.
3462 If not installed, start from a blank load-path, since
3463 PATH_LOADSEARCH refers to the eventual installation directories.
3464
58dd0aa4
EZ
34652012-07-07 Eli Zaretskii <eliz@gnu.org>
3466
3467 Support truncation and continuation glyphs on GUI frames, when
3468 fringes are disabled. (Bug#11832)
3469 * xdisp.c (init_iterator): Get dimensions of truncation and
14ae4239
BT
3470 continuation glyphs even if on GUI frames.
3471 Adjust it->last_visible_x on GUI frames when the left or right fringes,
58dd0aa4
EZ
3472 or both, are absent.
3473 (start_display, move_it_in_display_line_to): Handle the case of a
3474 GUI frame without a fringe to display continuation or truncation
3475 glyphs.
3476 (insert_left_trunc_glyphs): Support GUI frames: make sure
3477 truncation glyphs overwrite enough glyphs from the current line to
3478 have sufficient space in pixels.
3479 (display_line): Support truncation and continuation glyphs on GUI
3480 frames. If some spare pixels are left on the line after inserting
3481 the truncation glyphs, fill that space with a stretch glyph of a
3482 suitably computed width.
3483
3484 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
3485 produce_glyphs, to support GUI sessions.
3486
31571fd7
PE
34872012-07-07 Paul Eggert <eggert@cs.ucla.edu>
3488
5a16b9bc
PE
3489 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
3490
f3047c75
PE
3491 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
3492
31571fd7
PE
3493 Do not require float-time's arg to fit in time_t (Bug#11825).
3494 This works better on hosts where time_t is unsigned, and where
3495 float-time is applied to the (negative) difference between two times.
3496 * editfns.c (decode_time_components): Last arg is now double *,
3497 not int *, and means to store all the result as a double, without
3498 worrying about whether the seconds part fits in time_t.
3499 All callers changed.
3500 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
3501 All callers changed.
3502 (Ffloat_time): Do not fail merely because the specified time falls
3503 outside of time_t range.
3504
4516fbef
GM
35052012-07-07 Glenn Morris <rgm@gnu.org>
3506
3507 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
3508 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
3509 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
3510
07adc2c6
JB
35112012-07-07 Juanma Barranquero <lekktu@gmail.com>
3512
3513 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
3514 Update dependencies.
3515
3516 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
3517
fd573f31
PE
35182012-07-06 Paul Eggert <eggert@cs.ucla.edu>
3519
fee5959d
PE
3520 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
3521 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
3522 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
3523 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
3524 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
3525 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
3526
fd573f31
PE
3527 * xfont.c (compare_font_names): Redo to omit the need for casts.
3528
ddadbc0e
AS
35292012-07-06 Andreas Schwab <schwab@linux-m68k.org>
3530
fca8d6b6
AS
3531 * xfns.c (Fx_change_window_property): Doc fix.
3532 * w32fns.c (Fx_change_window_property): Doc fix.
3533
ddadbc0e
AS
3534 * w32fns.c (Fx_window_property): Accept the same arguments as the
3535 X Windows version. Doc fix.
3536 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
3537
ed9265fc 35382012-07-06 Juanma Barranquero <lekktu@gmail.com>
f247498e
JB
3539 Eli Zaretskii <eliz@gnu.org>
3540
3541 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
3542 Windows-specific code from nt/config.nt moved here.
3543 Obsolete settings removed.
3544
216ee680
PE
35452012-07-06 Paul Eggert <eggert@cs.ucla.edu>
3546
3547 * process.c: Avoid unnecessary calls to gettime.
3548 (wait_reading_process_output): Don't get the time of day
3549 when gobbling data immediately and not waiting, as there's no need
3550 for it in that case. This removes a FIXME.
3551
bdd091e4
JD
35522012-07-06 Jan Djärv <jan.h.d@swipnet.se>
3553
3554 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
3555 is defined (Bug#11768).
3556
9d44f8ce
DA
35572012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3558
3559 Fix marker debugging code.
3560 * marker.c (byte_char_debug_check): Do not perform the check
3561 if buffer is not multibyte.
090bd7cb
JB
3562 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
3563 Call byte_char_debug_check with correct arguments.
9d44f8ce 3564
90fc4786
DA
35652012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3566
3567 Compile marker debugging code only if ENABLE_CHECKING is defined.
090bd7cb
JB
3568 * marker.c (byte_char_debug_check, count_markers):
3569 Use only if ENABLE_CHECKING is defined.
90fc4786
DA
3570 (byte_debug_flag): Remove.
3571 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
3572 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
3573
7b7ae965
DA
35742012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3575
4e57b342
DA
3576 Avoid code repetition in marker-related functions.
3577 * marker.c (attach_marker): New function.
3578 (Fset_marker, set_marker_restricted, set_marker_both)
3579 (set_marker_restricted_both): Use it.
3580 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
3581 Consistently rename charno to charpos.
3582 (marker_position): Add eassert.
3583 (marker_byte_position): Convert to eassert.
3584
35852012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3586
3587 Simplify list operations in unchain_overlay and unchain_marker.
7b7ae965 3588 * buffer.c (unchain_overlay): Simplify. Add comment.
4e57b342 3589 * marker.c (unchain_marker): Simplify. Fix comments.
7b7ae965 3590
657924ff
DA
35912012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3592
3593 Introduce fast path for the widely used marker operation.
3594 * alloc.c (build_marker): New function.
3595 * lisp.h (build_marker): New prototype.
3596 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
3597 * composite.c (autocmp_chars): Likewise.
3598 * editfns.c (buildmark): Remove.
3599 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
3600 (save_restriction_save): Use build_marker.
3601 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
3602 * window.c (save_window_save): Likewise.
3603
041a49a6
DA
36042012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
3605
3606 Do not use Fdelete_overlay in delete_all_overlays
3607 to avoid redundant calls to unchain_overlay.
3608 * buffer.c (drop_overlay): New function.
3609 (delete_all_overlays, Fdelete_overlay): Use it.
3610 * minibuf.c (get_minibuffer): Fix comment.
3611
7dca65a4
PE
36122012-07-06 Paul Eggert <eggert@cs.ucla.edu>
3613
3614 Port to OpenBSD 5.1 amd64.
3615 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
3616 This is needed for OpenBSD, and should be harmless on all BSD systems.
3617 Also, include <sys/sysctl.h>, as it should be available on all
3618 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
3619 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
3620 use p_pid member, not kp_proc.pid.
3621
8eb876e2
GM
36222012-07-06 Glenn Morris <rgm@gnu.org>
3623
3624 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
3625
38182d90
PE
36262012-07-05 Paul Eggert <eggert@cs.ucla.edu>
3627
3628 More xmalloc and related cleanup.
3629 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
3630 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
3631 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
3632 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
3633 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
3634 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
3635 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
3636 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
3637 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
3638 * xterm.c:
3639 Omit needless casts involving void * pointers and allocation.
3640 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
3641 as the former is more robust if P's type is changed.
3642 Prefer xzalloc to xmalloc + memset 0.
3643 Simplify malloc-or-realloc to realloc.
3644 Don't worry about xmalloc returning a null pointer.
3645 Prefer xstrdup to xmalloc + strcpy.
3646 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
3647 growing it.
3648 * keyboard.c (apply_modifiers_uncached): Prefer local array to
3649 alloca of a constant.
3650
6dd5a677
EZ
36512012-07-05 Eli Zaretskii <eliz@gnu.org>
3652
3653 * xdisp.c (display_line): Fix horizontal pixel coordinates when
3654 hscroll is larger than the line width. Fixes long and futile
3655 looping inside extend_face_to_end_of_line (on a TTY) producing
3656 glyphs that are not needed and thrown away.
3657
6b312f0f
DA
36582012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
3659
3660 * marker.c (set_marker_restricted_both): Simplify by using
3661 clip_to_bounds.
3662
f520ef9b
PE
36632012-07-05 Paul Eggert <eggert@cs.ucla.edu>
3664
3665 * editfns.c (region_limit): Simplify by using clip_to_bounds.
3666
383b7c95
JD
36672012-07-05 Jan Djärv <jan.h.d@swipnet.se>
3668
3669 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
3670 not defined (Bug#11768).
3671 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
3672 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
3673 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
3674 followed by gtk_box_set_homogeneous (Bug#11768).
3675 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
090bd7cb
JB
3676 (update_theme_scrollbar_width, xg_create_scroll_bar):
3677 Use gtk_scrollbar_new (Bug#11768).
383b7c95
JD
3678 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
3679 (is_box_type): New function (Bug#11768).
3680 (xg_tool_item_stale_p): Call is_box_type.
5293d758 3681 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
383b7c95
JD
3682 with default display (Bug#11768).
3683
d6e7bf45
EZ
36842012-07-05 Eli Zaretskii <eliz@gnu.org>
3685
3686 * xdisp.c (window_hscroll_limited): New function.
3687 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
3688 coordinates when window's hscroll is set to insanely large
3689 values. (Bug#11857)
3690
431391ec
JB
36912012-07-05 Juanma Barranquero <lekktu@gmail.com>
3692
3693 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
3694 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
3695
23f86fce
DA
36962012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
3697
3698 Cleanup xmalloc.
3699 * lisp.h (xzalloc): New prototype. Omit needless casts.
3700 * alloc.c (xzalloc): New function. Omit needless casts.
3701 * charset.c: Omit needless casts. Convert all calls to
3702 xmalloc with following memset to xzalloc.
3703 * dispnew.c: Likewise.
3704 * fringe.c: Likewise.
3705 * image.c: Likewise.
3706 * sound.c: Likewise.
3707 * term.c: Likewise.
3708 * w32fns.c: Likewise.
3709 * w32font.c: Likewise.
3710 * w32term.c: Likewise.
3711 * xfaces.c: Likewise.
3712 * xfns.c: Likewise.
3713 * xterm.c: Likewise.
3714 * atimer.c: Omit needless casts.
3715 * buffer.c: Likewise.
3716 * callproc.c: Likewise.
3717 * ccl.c: Likewise.
3718 * coding.c: Likewise.
3719 * composite.c: Likewise.
3720 * doc.c: Likewise.
3721 * doprnt.c: Likewise.
3722 * editfns.c: Likewise.
3723 * emacs.c: Likewise.
3724 * eval.c: Likewise.
3725 * filelock.c: Likewise.
3726 * fns.c: Likewise.
3727 * gtkutil.c: Likewise.
3728 * keyboard.c: Likewise.
3729 * lisp.h: Likewise.
3730 * lread.c: Likewise.
3731 * minibuf.c: Likewise.
3732 * msdos.c: Likewise.
3733 * print.c: Likewise.
3734 * process.c: Likewise.
3735 * region-cache.c: Likewise.
3736 * search.c: Likewise.
3737 * sysdep.c: Likewise.
3738 * termcap.c: Likewise.
3739 * terminal.c: Likewise.
3740 * tparam.c: Likewise.
3741 * w16select.c: Likewise.
3742 * w32.c: Likewise.
3743 * w32reg.c: Likewise.
3744 * w32select.c: Likewise.
3745 * w32uniscribe.c: Likewise.
3746 * widget.c: Likewise.
3747 * xdisp.c: Likewise.
3748 * xmenu.c: Likewise.
3749 * xrdb.c: Likewise.
3750 * xselect.c: Likewise.
3751
0497dc44
PE
37522012-07-05 Paul Eggert <eggert@cs.ucla.edu>
3753
3754 * fileio.c (time_error_value): Check the right error number.
3755 Problem reported by Troels Nielsen in
3756 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
3757
356e7178
PE
37582012-07-04 Paul Eggert <eggert@cs.ucla.edu>
3759
4e71fd89
PE
3760 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
3761 This should be fixed in a better way; see Eli Zaretskii in
3762 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
3763 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
3764
f0941253
PE
3765 * fileio.c (time_error_value): Rename from special_mtime.
3766 The old name's problems were noted by Eli Zaretskii in
3767 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
3768
065c9eb4
PE
3769 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
3770 This variable's comment says Emacs needs at least one GDB-visible
3771 symbol of type enum pvec_type, to work around GDB problems.
3772 The symbol's value doesn't matter.
3773
356e7178
PE
3774 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
3775 that causes compilation to fail on pre-C99 compilers.
3776
ed9265fc 37772012-07-04 Juanma Barranquero <lekktu@gmail.com>
95f61aa2
JB
3778
3779 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
3780 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
3781
3884d954
DA
37822012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
3783
d209e2fb 3784 * buffer.c (init_buffer_once): Fix initialization of
3884d954
DA
3785 headers for buffer_defaults and buffer_local_symbols.
3786 Reported by Juanma Barranquero <lekktu@gmail.com>.
3787
ee28be33
SM
37882012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
3789
3790 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
3791 * lisp.h (enum pvec_type): Use fewer bits.
3792 (PSEUDOVECTOR_SIZE_BITS): New constant.
3793 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
3794 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
3795 change in pvec_type.
3796 (PSEUDOVECTOR_TYPEP): New macro.
3797 (TYPED_PSEUDOVECTORP): Use it.
3798 * fns.c (internal_equal): Adapt code to extract pvectype.
3799 * emacs.c (gdb_pvec_type): Update type.
3800 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
3801 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
3802 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
3803 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
3804 (sweep_vectors): Use it. Use local var `total_bytes' instead of
3805 abusing vector->header.next.nbytes.
3806 (live_vector_p): Use PVEC_TYPE.
3807 (mark_object): Adapt code to extract pvectype. Use switch.
3808
c7f2cd7f
PE
38092012-07-04 Paul Eggert <eggert@cs.ucla.edu>
3810
3811 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
3812 Tighten new eassert a bit.
3813
8ce70ed2
DA
38142012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
3815
3816 Fix compilation with --enable-gcc-warnings and -O1
3817 optimization level.
3818 * doprnt.c (doprnt): Change type of tem to int, initialize
3819 to avoid compiler warning. Add eassert.
3820 * search.c (simple_search): Initialize match_byte to avoid
3821 compiler warning. Add eassert.
3822
dea7f1e5
PE
38232012-07-04 Paul Eggert <eggert@cs.ucla.edu>
3824
24a212eb
PE
3825 Avoid weird behavior with large horizontal scrolls.
3826 Without this change, for example, large hscroll values would
3827 mess up Emacs's display on Fedora 15 x86, presumably due to
3828 overflows in int calculations in the display code.
3829 Also, if buffers had long lines, Emacs would freeze.
3830 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
3831 (set_window_hscroll): New function, containing the old guts of
3832 Fset_window_hscroll. Return the clipped value.
3833 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
3834 This avoids the need to check against PTRDIFF_MAX.
3835
dea7f1e5
PE
3836 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
3837
76046526
DA
38382012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
3839
3840 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
3841
39adff0d
PE
38422012-07-04 Paul Eggert <eggert@cs.ucla.edu>
3843
63807d47
PE
3844 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
3845 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
3846 since GCC 4.4.6 issues a bogus warning for them.
3847
39adff0d
PE
3848 Fix bugs in file timestamp newness comparisons.
3849 * fileio.c (Ffile_newer_than_file_p):
3850 * lread.c (Fload): Use full timestamp resolution of files,
3851 not just the 1-second resolution, so that files that are only
3852 slightly newer still count as newer.
3853 * fileio.c (Ffile_newer_than_file_p): Don't assume file
3854 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
3855
dbeed9a6
PE
38562012-07-03 Paul Eggert <eggert@cs.ucla.edu>
3857
3858 * fileio.c: Improve handling of file time marker. (Bug#11852)
3859 (special_mtime): New function.
3860 (Finsert_file_contents, Fverify_visited_file_modtime):
3861 Use it to set special mtime values consistently.
3862
636334d6
AS
38632012-07-03 Andreas Schwab <schwab@linux-m68k.org>
3864
3865 * fileio.c (Finsert_file_contents): Properly handle st_mtime
3866 marker for non-existing file. (Bug#11852)
3867
e2017fe2
GM
38682012-07-03 Glenn Morris <rgm@gnu.org>
3869
3870 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
3871 and did not make it into globals.h).
3872
404dbd37
TT
38732012-07-03 Tom Tromey <tromey@redhat.com>
3874
3875 * window.c (Fset_window_margins, Fset_window_fringes)
3876 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
3877 * textprop.c (Fprevious_property_change): No longer static.
3878 * syntax.c (Fsyntax_table_p): No longer static.
3879 * process.c (Fget_process, Fprocess_datagram_address): No longer
3880 static.
3881 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
3882 * keyboard.c (Fcommand_execute): No longer static.
3883 Remove EXFUN.
3884 * insdel.c (Fcombine_after_change_execute): No longer static.
3885 * image.c (Finit_image_library): No longer static.
3886 * fileio.c (Fmake_symbolic_link): No longer static.
3887 * eval.c (Ffetch_bytecode): No longer static.
3888 * editfns.c (Fuser_full_name): No longer static.
d209e2fb
JB
3889 * doc.c (Fdocumentation_property, Fsnarf_documentation):
3890 No longer static.
404dbd37
TT
3891 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
3892 static.
3893 * dired.c (Ffile_attributes): No longer static.
3894 * composite.c (Fcomposition_get_gstring): No longer static.
3895 * callproc.c (Fgetenv_internal): No longer static.
3896
3897 * ccl.h: Remove EXFUNs.
3898 * buffer.h: Remove EXFUNs.
3899 * dispextern.h: Remove EXFUNs.
3900 * intervals.h: Remove EXFUNs.
3901 * fontset.h: Remove EXFUN.
3902 * font.h: Remove EXFUNs.
3903 * dosfns.c (system_process_attributes): Remove EXFUN.
3904 * keymap.h: Remove EXFUNs.
3905 * lisp.h: Remove EXFUNs.
3906 * w32term.h: Remove EXFUNs.
3907 * window.h: Remove EXFUNs.
3908 * xsettings.h: Remove EXFUN.
3909 * xterm.h: Remove EXFUN.
3910
8e4fd1e1
GM
39112012-07-03 Glenn Morris <rgm@gnu.org>
3912
3913 * lisp.h (Frandom): Make it visible to C.
3914 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
3915 buffer for invisible buffers. (Bug#1229)
3916
ca95b3eb
DA
39172012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
3918
3919 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
3920 values which aren't power of 2.
14ae4239
BT
3921 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
3922 Verify it's value and the value of VECTOR_BLOCK_SIZE. Adjust users
ca95b3eb
DA
3923 accordingly.
3924
7555c33f
SM
39252012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
3926
3927 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
3928
3929 * alloc.c (mark_object): Revert part of last patch to use `switch'.
3930
d12e8f5a
DA
39312012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
3932
3933 * alloc.c (allocate_vector_block): Remove redundant
3934 calls to mallopt if DOUG_LEA_MALLOC is defined.
3935 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
3936 avoid calls to mallopt if zero_vector is returned.
3937
296094c3
DA
39382012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
3939
3940 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
3941 is enabled, avoid dereferencing NULL current_sblock if
3942 running undumped.
3943
36429c89
DA
39442012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
3945
3946 Cleanup basic buffer management.
3947 * buffer.h (struct buffer): Change layout to use generic vector
3948 marking code. Fix some comments. Change type of 'clip_changed'
3949 to bitfield. Remove unused #ifndef old.
3950 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
3951 (GET_OVERLAYS_AT): Fix indentation.
3952 (for_each_per_buffer_object_at): New macro.
3953 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
3954 (Fbuffer_local_variables): Use it.
3955 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
3956 * alloc.c (allocate_buffer): Adjust to match new layout of
3957 struct buffer. Fix comment.
3958 (mark_overlay): New function.
3959 (mark_buffer): Use it. Use mark_vectorlike to mark normal
3960 Lisp area of struct buffer.
3961 (mark_object): Use it. Adjust marking of misc objects
3962 and related comments.
3963
3b3e4cac
PE
39642012-07-02 Paul Eggert <eggert@cs.ucla.edu>
3965
3966 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
3967 wrapper that is not needed because the wrapped code is a no-op (zero
3968 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
3969 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
3970
cf5c0175
DA
39712012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
3972
3973 * alloc.c (mark_buffer): Simplify. Remove prototype.
3974 (mark_object): Add comment. Reorganize marking of vector-like
faf611c7 3975 objects. Use CHECK_LIVE for all vector-like objects except buffers
14ae4239
BT
3976 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
3977 Avoid redundant calls to mark_vectorlike for bool vectors.
cf5c0175 3978
ca26824c
GM
39792012-06-30 Glenn Morris <rgm@gnu.org>
3980
2e4c5312
GM
3981 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
3982
ca26824c
GM
3983 * epaths.in (PATH_SITELOADSEARCH): New.
3984 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
3985 This is rather than relying on --enable-locallisppath elements
3986 having "site-lisp" in their names. (Bug#10208#25, 11658)
3987
0d23c240
EZ
39882012-06-30 Eli Zaretskii <eliz@gnu.org>
3989
c9240d7a
EZ
3990 * w32proc.c (sys_select): Accept and ignore one more argument.
3991
3992 * w32.c (emacs_gnutls_pull): Call select with one more argument.
3993
0d23c240 3994 * sysselect.h [DOS_NT]: Don't include sys/select.h.
9ff8f76b 3995 (pselect) [!MS_DOS]: Redirect to sys_select.
0d23c240
EZ
3996
3997 * sysdep.c: Don't include dos.h and dosfns.h.
3998
3999 * process.c (sys_select):
4000 * msdos.c (sys_select): Accept one more argument and ignore it.
4001
4002 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
4003 adapt data types and code to that.
4004
4005 * dosfns.c:
4006 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
4007 which clashes with the gnulib function of the same name.
4008
af5a5a98
AS
40092012-06-30 Andreas Schwab <schwab@linux-m68k.org>
4010
c5e4379c
AS
4011 * font.c (font_style_to_value, font_style_symbolic)
4012 (font_prop_validate_style): Add type checks for values in
4013 font_style_table.
4014
af5a5a98
AS
4015 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
4016 argument.
4017 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
4018 uses.
4019
8d38f461
EZ
40202012-06-29 Eli Zaretskii <eliz@gnu.org>
4021
2e5a6631
EZ
4022 * xdisp.c (try_window_id): Undo last change.
4023
8d38f461
EZ
4024 * w32.c (getwd): Adjust commentary about startup_dir.
4025 (init_environment): Always call sys_access, even in non-MSVC
4026 builds. Don't chdir to the directory of the Emacs executable.
4027 This undoes code from 1997 which was justified by the need to
4028 "avoid conflicts when removing and renaming directories". But its
4029 downside was that every relative file name was being interpreted
4030 relative to the directory of the Emacs executable, which can never
4031 be TRT. In particular, it broke sys_access when called with
4032 relative file names.
4033 (sys_access): Map GetLastError to errno.
4034
2af3565e
DA
40352012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4036
4037 * window.h (struct window): Change type of 'fringes_outside_margins'
4038 to bitfield. Fix comment. Adjust users accordingly.
cf5c0175 4039 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
2af3565e
DA
4040 Adjust comment.
4041 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
4042 to ptrdiff_t.
4043
c8d3a25c 40442012-06-29 Andreas Schwab <schwab@linux-m68k.org>
57570cd3 4045
c8d3a25c
GM
4046 * gnutls.c (emacs_gnutls_handshake):
4047 Add QUIT to make the loop interruptible.
57570cd3 4048
c8d3a25c 40492012-06-29 Glenn Morris <rgm@gnu.org>
d01fd55f 4050
c8d3a25c
GM
4051 * charset.c (init_charset): Make lack of etc/charsets fatal.
4052
3e984ee8
DA
40532012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4054
4055 * editfns.c (region_limit): Fix type mismatch.
4056
ef884f23
DA
40572012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
4058
4059 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
4060 undefined. Convert from xassert to eassert.
4061 * nsmenu.m: Convert from xassert to eassert.
4062 * nsterm.m: Likewise.
4063
7d7e0027
SM
40642012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
4065
4066 * editfns.c (region_limit): Clip to narrowing (bug#11770).
4067
aa754e6a
PE
40682012-06-28 Paul Eggert <eggert@cs.ucla.edu>
4069
4070 Avoid integer overflow on scroll-left and scroll-right.
4071 * window.c (HSCROLL_MAX): New macro.
4072 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
4073 overflow when requested scroll falls outside ptrdiff_t range.
4074
80b00b08
DA
40752012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4076
4077 * window.h (struct window): Change type of 'hscroll',
4078 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
4079 'last_modified' and 'last_overlay_modified' to EMACS_INT.
4080 Adjust users accordingly.
4081 * xdisp.c (try_cursor_movement): Replace type check with eassert.
4082 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
4083 from EMACS_INT to ptrdiff_t.
4084 (make_window): Omit redundant initialization.
4085
62b2bcf6
JB
40862012-06-28 Juanma Barranquero <lekktu@gmail.com>
4087
4088 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
4089
45942c7d
DA
40902012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4091
4092 * window.h (struct window): Change type of 'use_time' and
4093 'sequence_number' from Lisp_Object to int.
4094 * frame.c (make_frame): Adjust users accordingly.
4095 * print.c (print_object): Likewise.
4096 * window.c (select_window, Fwindow_use_time, make_parent_window)
4097 (make_window): Likewise.
4098
e509cfa6
DA
40992012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4100
4101 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
4102 enabled with --enable-checking=[all,glyphs] configure option.
4103 Fix GLYPH_DEBUG usage assuming that it may be undefined,
4104 adjust comments accordingly.
4105 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
4106 undefined, adjust comments accordingly.
4107 * image.c: Likewise.
4108 * scroll.c: Likewise.
4109 * w32fns.c: Likewise.
4110 * w32term.c: Likewise.
4111 * xdisp.c: Likewise.
4112 * xfaces.c: Likewise.
4113 * xfns.c: Likewise.
4114 * xterm.c: Likewise.
4115
a54e2c05
DA
41162012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
4117
4118 Generalize run-time debugging checks.
4119 * dispextern.h (XASSERTS): Remove.
4120 * fontset.c (xassert): Remove.
4121 Convert from xassert to eassert.
4122 * alloc.c: Convert from xassert to eassert.
4123 * bidi.c: Likewise.
4124 * dispnew.c: Likewise.
4125 * fns.c: Likewise.
4126 * fringe.c: Likewise.
4127 * ftfont.c: Likewise.
4128 * gtkutil.c: Likewise.
4129 * image.c: Likewise.
4130 * keyboard.c: Likewise.
4131 * menu.c: Likewise.
4132 * process.c: Likewise.
4133 * scroll.c: Likewise.
4134 * sound.c: Likewise.
4135 * term.c: Likewise.
4136 * w32console.c: Likewise.
4137 * w32fns.c: Likewise.
4138 * w32term.c: Likewise.
4139 * window.c: Likewise.
4140 * xdisp.c: Likewise.
4141 * xfaces.c: Likewise.
4142 * xfns.c: Likewise.
4143 * xselect.c: Likewise.
4144 * xterm.c: Likewise.
4145
1ec4b7b2
SM
41462012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
4147
4148 * fns.c (maybe_resize_hash_table): Output message when growing the
4149 purify-hashtable.
4150
2014308a
DA
41512012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4152
4153 * alloc.c (allocate_string_data): Remove dead code.
4154 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
4155 avoid GCC warning about unused macro.
4156
246155eb
DA
41572012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4158
4159 * alloc.c (allocate_string): Omit intervals initialization.
4160 * alloc.c (make_uninit_multibyte_string): Initialize intervals
4161 as in make_pure_string and make_pure_c_string.
4162
43184b7b
DA
41632012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4164
d209e2fb 4165 * alloc.c (allocate_string): Fix last change.
43184b7b 4166
3fe6dd74
DA
41672012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
4168
d209e2fb 4169 * alloc.c (allocate_string): Remove two redundant calls
3fe6dd74
DA
4170 to memset, add explicit initialization where appropriate.
4171
1ba6038a
GM
41722012-06-27 Glenn Morris <rgm@gnu.org>
4173
4174 * lisp.mk (lisp): Remove paths.elc.
4175
c89926a5
CY
41762012-06-27 Chong Yidong <cyd@gnu.org>
4177
4178 * doc.c (Fsubstitute_command_keys): Fix punctuation.
4179
ed6b3510
JW
41802012-06-26 John Wiegley <johnw@newartisans.com>
4181
1ec4b7b2 4182 * unexmacosx.c (copy_data_segment): Add two section names used
157e99e4
JW
4183 on Mac OS X Lion: __mod_init_func and __mod_term_func.
4184
ed6b3510
JW
4185 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
4186 when building with Clang.
4187
8edd4a2b
SM
41882012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
4189
4190 * eval.c (Fapply): Allow calling it with a single argument.
4191
f6f62d1b
EZ
41922012-06-26 Eli Zaretskii <eliz@gnu.org>
4193
4194 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
4195 _stricmp and _strnicmp.
4196 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
4197
62efea5e
DA
41982012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4199
4200 * alloc.c (allocate_window): Zero out non-Lisp part of newly
4201 allocated window.
4202 (allocate_process): Likewise for new process.
8edd4a2b 4203 (allocate_terminal): Change to use offsetof.
62efea5e
DA
4204 (allocate_frame): Likewise.
4205 * frame.c (make_frame): Omit redundant initialization.
4206 * window.c (make_parent_window): Use memset.
4207 (make_window): Omit redundant initialization.
4208 * process.c (make_process): Omit redundant initialization.
4209 * terminal.c (create_terminal): Likewise.
4210
42997f4d
DA
42112012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4212
4213 * term.c (delete_tty): Remove redundant call to memset.
4214
1130ecfc
DA
42152012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
4216
4217 * alloc.c: Remove build_string.
4218 * lisp.h: Define build_string as static inline. This provides
4219 a better opportunity to optimize away calls to strlen when the
4220 function is called with compile-time constant argument.
4221 * image.c (imagemagick_error): Convert to build_string.
4222 * w32proc.c (sys_spawnve): Likewise.
4223 * xterm.c (x_term_init): Likewise.
4224
cf38a720
PE
42252012-06-26 Paul Eggert <eggert@cs.ucla.edu>
4226
99027bdd
PE
4227 Use sprintf return value instead of invoking strlen on result.
4228 In the old days this wasn't portable, since some sprintf
4229 implementations returned char *. But they died out years ago and
4230 Emacs already assumes sprintf returns int.
4231 Similarly for float_to_string.
4232 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
4233 * ccl.c (ccl_driver):
4234 * character.c (string_escape_byte8):
4235 * data.c (Fnumber_to_string):
4236 * doprnt.c (doprnt):
4237 * print.c (print_object):
4238 * xdisp.c (message_dolog):
4239 * xfns.c (syms_of_xfns):
4240 Use sprintf or float_to_string result to avoid need to call strlen.
4241 * data.c (Fnumber_to_string):
4242 Use make_unibyte_string, since the string must be ASCII.
4243 * lisp.h, print.c (float_to_string): Now returns int length.
4244 * term.c (produce_glyphless_glyph):
4245 Use sprintf result rather than recomputing it.
4246
cf38a720
PE
4247 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
4248 * Makefile.in (ALL_CFLAGS):
4249 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
4250 * gmalloc.c, regex.c: Include <config.h> unconditionally.
4251
3511c784
DA
42522012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4253
0a08eb21 4254 * dispextern.h (xstrcasecmp): Define to library function
3511c784
DA
4255 strcasecmp if available.
4256 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
4257
fb7da12e
AS
42582012-06-25 Andreas Schwab <schwab@linux-m68k.org>
4259
4260 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
4261 Avoid comma operator.
4262 * menu.c (push_submenu_start, push_submenu_end)
4263 (push_left_right_boundary, push_menu_pane): Likewise.
4264 * msdos.c (dos_rawgetc): Likewise.
4265
afa2ffd8
DA
42662012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4267
4268 * xfns.c (xic_create_fontsetname): Remove redundant calls
4269 to memset.
4270
b3b4476b
PE
42712012-06-25 Paul Eggert <eggert@cs.ucla.edu>
4272
4495ff38
PE
4273 * gtkutil.c (get_utf8_string): Remove redundant assignment.
4274 sprintf already null-terminates its output.
4275
b3b4476b
PE
4276 * xfns.c (x_window): Remove redundant cast.
4277
b00876c9
DA
42782012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
4279
4280 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
4281 `const char *' to `char *' to avoid compiler warning.
4282
d188e26b
PE
42832012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4284
885d1d74
PE
4285 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
4286 instead of truncating it to 63 (admittedly a generous limit).
4287
d188e26b
PE
4288 * process.c: Fix spelling and caps in comments.
4289
e2f560b1
DN
42902012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
4291
e86db54b 4292 * emacs.c (setpgrp): Remove definition, unused.
e2f560b1
DN
4293 * sysdep.c (setpgrp): Remove definition, not used in this file.
4294
7583a3a1
JB
42952012-06-24 Juanma Barranquero <lekktu@gmail.com>
4296
4297 * makefile.w32-in: Update dependencies.
4298
696056c2
EZ
42992012-06-24 Eli Zaretskii <eliz@gnu.org>
4300
4301 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
4302 (SYSTIME_H): Add nt/inc/sys/time.h.
4303
4304 * systime.h [WINDOWSNT]: Include sys/time.h.
4305
4306 * s/ms-w32.h (struct timespec): Definition moved from
4307 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
4308
845ca893
PE
43092012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4310
4311 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
4312 * buffer.h (buffer_slot_type_mismatch):
4313 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
4314 * eval.c (unwind_to_catch):
4315 * image.c (my_png_error, my_error_exit):
4316 * keyboard.c (quit_throw_to_read_char, user_error)
4317 (Fexit_recursive_edit, Fabort_recursive_edit):
4318 * lisp.h (die, args_out_of_range, args_out_of_range_3)
4319 (wrong_type_argument, buffer_overflow, __executable_start)
4320 (memory_full, buffer_memory_full, string_overflow, Fthrow)
4321 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
4322 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
4323 (fatal):
4324 (child_setup) [!DOS_NT]:
4325 * lread.c (end_of_file_error, invalid_syntax):
4326 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
4327 * puresize.h (pure_write_error):
4328 * search.c (matcher_overflow):
4329 * sound.c (sound_perror, alsa_sound_perror):
4330 * sysdep.c, syssignal.h (croak):
4331 * term.c (maybe_fatal, vfatal):
4332 * textprop.c (text_read_only):
4333 * undo.c (user_error):
4334 * unexmacosx.c (unexec_error):
4335 * xterm.c (x_ins_del_lines, x_delete_glyphs):
4336 Use _Noreturn rather than NO_RETURN.
4337 No need for separate decl merely because of _Noreturn.
4338 * sound.c (sound_warning, parse_sound):
4339 Remove unnecessary forward decls.
4340
f1dd8073
PE
43412012-06-24 Paul Eggert <eggert@cs.ucla.edu>
4342
4343 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
4344 * lisp.h (WAIT_READING_MAX): New macro.
4345 * dispnew.c (Fsleep_for, sit_for):
4346 * keyboard.c (kbd_buffer_get_event):
4347 * process.c (Faccept_process_output):
4348 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
4349 This improves on the previous patch, which introduced a bug
4350 when time_t is unsigned and as wide as intmax_t.
4351 See <http://bugs.gnu.org/9000#51>.
4352
b82c1755
EZ
43532012-06-23 Eli Zaretskii <eliz@gnu.org>
4354
4355 * dispnew.c (sit_for, Fsleep_for):
4356 * keyboard.c (kbd_buffer_get_event):
4357 * process.c (Faccept_process_output): Avoid compiler warnings when
4358 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
4359
ca300656
JB
43602012-06-23 Juanma Barranquero <lekktu@gmail.com>
4361
049ec95b
JB
4362 * makefile.w32-in: Update dependencies.
4363
ca300656
JB
4364 * w32.c (ltime): Add return type and declare static.
4365 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
4366
db7b8d06
PE
43672012-06-23 Paul Eggert <eggert@cs.ucla.edu>
4368
4369 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
4370 Privately reported by Herbert J. Skuhra.
4371 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
4372 All uses changed.
4373 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
4374 not make_lisp_timeval, when the argument is of type EMACS_TIME.
4375
0bd8297f
EZ
43762012-06-23 Eli Zaretskii <eliz@gnu.org>
4377
96512555
EZ
4378 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
4379 last argument of make_unibyte_string.
4380
0bd8297f
EZ
4381 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
4382 language ID in the event parameters.
4383
4384 * w32term.c (w32_read_socket): Put the new keyboard codepage into
4385 event.code, not the obscure "character set ID".
4386
63def6b6
CY
43872012-06-23 Chong Yidong <cyd@gnu.org>
4388
4389 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
4390
e8a02204
EZ
43912012-06-23 Eli Zaretskii <eliz@gnu.org>
4392
388cdec0
EZ
4393 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
4394 * w32.c (fdutimens): New function.
4395
4396 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
4397
4398 * s/ms-w32.h (pselect): Redirect to sys_select.
4399
4400 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
4401
e8a02204
EZ
4402 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
4403 in the logic of incrementing and decrementing the value of
4404 use_relocatable_buffers.
4405
d054f3fb
PE
44062012-06-23 Paul Eggert <eggert@cs.ucla.edu>
4407
4408 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
4409 Privately reported by Herbert J. Skuhra.
4410 [__FreeBSD__]: Remove "*/" typo after "#include".
4411 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
4412 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
4413 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
4414 Don't assume EMACS_TIME and struct timeval are the same type.
4415
d35af63c
PE
44162012-06-22 Paul Eggert <eggert@cs.ucla.edu>
4417
4418 Support higher-resolution time stamps (Bug#9000).
4419 The time stamps are only nanosecond-resolution at the C level,
4420 since that's the best that any real-world system supports now.
4421 But they are picosecond-resolution at the Lisp level, as that's
4422 easy, and leaves room for future OS improvements.
4423
4424 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
4425 (LIBES): Use it.
4426
4427 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
4428 Don't get current time unless it's needed.
4429
4430 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
4431 now provides it if it's absent.
4432 (start_atimer): Port to higher-res time stamps.
4433 Check for time stamp overflow. Don't get current time more
4434 often than is needed.
4435
4436 * buffer.h (struct buffer): Buffer modtime now has high resolution.
4437 Include systime.h, not time.h.
4438 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
4439
4440 * dired.c: Include stat-time.h.
4441 (Ffile-attributes): File times now have higher resolution.
4442
4443 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
4444 (struct image): Timestamp now has higher resolution.
4445
4446 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
4447 has at least microseconds now. All uses removed.
4448 (update_frame, update_single_window, update_window, update_frame_1)
4449 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
927c7216 4450 (duration_to_sec_usec): Remove; no longer needed.
d35af63c
PE
4451
4452 * editfns.c (time_overflow): Now extern.
4453 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
4454 (float-time, Fformat_time_string, Fcurrent_time_string)
4455 (Fcurrent_time_zone): Accept and generate higher-resolution
4456 time stamps.
4457 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
4458 (decode_time_components, lisp_seconds_argument): New functions.
4459 (make_time): Now static.
4460 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
4461 Report an error if the time is invalid, rather than having the caller
4462 do that.
4463
4464 * fileio.c: Include <stat-time.h>
4465 (Fcopy_file): Copy higher-resolution time stamps.
4466 Prefer to set the time stamp via a file descriptor if that works.
4467 (Fset_file_times, Finsert_file_contents, Fwrite_region)
4468 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
4469 (Fvisited_file_modtime, Fset_visited_file_modtime):
4470 Support higher-resolution time stamps.
4471
4472 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
4473
4474 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
4475
4476 * image.c (prepare_image_for_display, clear_image_cache)
4477 (lookup_image): Port to higer-resolution time stamps.
4478
4479 * keyboard.c (start_polling, bind_polling_period):
4480 Check for time stamp overflow.
4481 (read_char, kbd_buffer_get_event, timer_start_idle)
4482 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
4483 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
4484 Port to higher-resolution time stamps. Do not assume time_t is signed.
4485 (decode_timer): New function. Timers are now vectors of length 9,
4486 not 8, to accommodate the picosecond component.
4487 (timer_check_2): Use it.
4488
4489 * nsterm.m (select_timeout, timeval_subtract): Remove.
4490 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
4491 as they're a bit more accurate and handle overflow better.
4492 (ns_select): Change prototype to be compatible with pselect.
4493 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
4494 * nsterm.h (ns_select): Adjust prototype.
4495
4496 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
4497 us-resolution time stamps.
4498 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
4499
4500 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
4501
4502 * lisp.h (time_overflow): New decl.
4503 (wait_reading_process_output): First arg is now intmax_t, not int,
4504 to accommodate larger waits.
4505
4506 * process.h (struct Lisp_Process.read_output_delay):
4507 Now counts nanoseconds, not microseconds.
4508 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
4509 EMACS_HAS_USECS.
4510 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
4511 (wait_reading_process_output):
4512 Port to ns-resolution time stamps.
4513 (Faccept_process_output, wait_reading_process_output):
4514 Check for time stamp overflow. Do not assume time_t is signed.
4515 (select_wrapper): Remove; we now use pselect.
4516 (Fprocess_attributes): Now generates ns-resolution time stamps.
4517
4518 * sysdep.c: Include utimens.h. Don't include utime.h
4519 or worry about struct utimbuf; gnulib does that for us now.
4520 (gettimeofday): Remove; gnulib provides a substitute.
4521 (make_timeval): New function.
4522 (set_file_times): Now sets ns-resolution time stamps.
4523 New arg FD; all uses changed.
4524 (time_from_jiffies, ltime_from_jiffies, get_up_time)
4525 (system_process_attributes):
4526 Now returns ns-resolution time stamp. All uses changed.
4527 Check for time stamp overflow.
4528
4529 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
4530 provides a substitute now.
4531
4532 * systime.h: Include timespec.h rather than sys/time.h and time.h,
4533 since it guarantees struct timespec.
4534 (EMACS_TIME): Now struct timespec, so that we can support
4535 ns-resolution time stamps.
4536 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
4537 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
4538 (EMACS_USECS): Remove.
4539 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
4540 so multiply the arg by 1000 before storing it.
4541 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
4542 New macros.
4543 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
4544 Port to ns-resolution time stamps.
4545 (EMACS_TIME_NEG_P): Remove; replaced by....
4546 (EMACS_TIME_SIGN): New macro.
4547 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
4548 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
4549 (set_file_times, make_time, lisp_time_argument): Adjust signature.
4550 (make_timeval, make_lisp_time, decode_time_components): New decls.
4551 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
4552 that it mishandled time_t overflow. You can't compare by subtracting!
4553 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
4554 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
4555
4556 * term.c: Include <sys/time.h>.
4557 (timeval_to_Time): New function, for proper overflow wraparound.
4558 (term_mouse_position, term_mouse_click): Use it.
4559
4560 * undo.c (record_first_change): Support higher-resolution time stamps
4561 in the undo buffer.
4562 (Fprimitive_undo): Use them when restoring time stamps.
4563
4564 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
4565 (w32_get_internal_run_time):
4566 Port to higher-resolution Emacs time stamps.
4567 (ltime): Now accepts single 64-bit integer, as that's more convenient
4568 for callers.
4569
4570 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
4571
4572 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
4573 for compatibility with pselect. Support ns-resolution time stamps.
4574
4575 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
4576
4577 * xselect.c (wait_for_property_change, x_get_foreign_selection):
4578 Check for time stamp overflow, and support ns-resolution time stamps.
4579
4580 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
4581 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
4582 (timeval_subtract): Remove; no longer needed.
4583 (XTflash, XTring_bell, x_wait_for_event):
4584 Port to ns-resolution time stamps. Don't assume time_t is signed.
4585
b6a92dfe
CY
45862012-06-22 Chong Yidong <cyd@gnu.org>
4587
4588 * xdisp.c (x_consider_frame_title): Revert last change.
4589
d251c37c
EZ
45902012-06-22 Eli Zaretskii <eliz@gnu.org>
4591
4592 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
4593 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
4594 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
4595 staticidx goes up to 1597 out of 1600 = 0x640.)
4596
f10deafb
PE
45972012-06-20 Paul Eggert <eggert@cs.ucla.edu>
4598
4599 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
4600 Otherwise, the umask might be mistakenly 0 while handling input signals.
4601
ec6de1e2
SM
46022012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
4603
4604 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
4605
28be1ada
DA
46062012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
4607
4608 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
4609 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
4610 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
4611 access to `contents' member of Lisp_Vector objects with AREF and ASET
4612 where appropriate.
4613
c6bf3022
CY
46142012-06-19 Chong Yidong <cyd@gnu.org>
4615
4616 * frame.c (delete_frame): When selecting a frame on a different
4617 text terminal, do not alter the terminal's top-frame.
4618
4619 * xdisp.c (format_mode_line_unwind_data): Record the target
4620 frame's selected window and its terminal's top-frame.
4621 (unwind_format_mode_line): Restore them.
4622 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
4623 Callers changed.
4624 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
4625 since tty frames can be explicitly named.
4626 (prepare_menu_bars): Likewise.
4627
4628 * term.c (Ftty_top_frame): New function.
4629
defd4196
PE
46302012-06-18 Paul Eggert <eggert@cs.ucla.edu>
4631
4632 Port byte-code-meter to modern targets.
4633 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
4634 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
8b5257e1 4635 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
defd4196
PE
4636 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
4637 (METER_1, METER_2): Simplify.
4638
1053a871
SM
46392012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
4640
4641 * data.c (Fdefalias): Return `symbol' (bug#11686).
4642
b7e8d081
MR
46432012-06-18 Martin Rudalics <rudalics@gmx.at>
4644
4645 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
1053a871
SM
4646 gets killed during executing of this function (Bug#11665).
4647 Try to always return Qt when the buffer has been actually killed.
b7e8d081
MR
4648 (Vkill_buffer_query_functions): In doc-string say that functions
4649 run by this hook should not change the current buffer.
4650
7ea2b339
PE
46512012-06-18 Paul Eggert <eggert@cs.ucla.edu>
4652
4653 Fix recently-introduced process.c problems found by static checking.
4654 * process.c (write_queue_push, write_queue_pop, send_process):
4655 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
4656 (write_queue_pop): Fix pointer signedness problem.
4657 (send_process): Remove unused local.
4658
96a313a1
CY
46592012-06-17 Chong Yidong <cyd@gnu.org>
4660
4661 * xdisp.c (redisplay_internal): No need to redisplay terminal
4662 frames that are not on top.
4663
20ca2e94
TN
46642012-06-17 Troels Nielsen <bn.troels@gmail.com>
4665
4666 * process.c (make_process): Initialize write_queue.
4667 (write_queue_push, write_queue_pop): New functions.
4668 (send_process): Use them to maintain correct ordering of process
4669 writes (Bug#10815).
4670
9a900ca9
PE
46712012-06-17 Paul Eggert <eggert@cs.ucla.edu>
4672
310fbfa8
PE
4673 * lisp.h (eassert): Assume C89 or later.
4674 This removes the need for CHECK.
4675 (CHECK): Remove. Its comments about always evaluating its
4676 argument were confusing, as 'eassert' typically does not evaluate
4677 its argument.
4678
27bb1ca4
PE
4679 * coding.c (produce_chars): Use ptrdiff_t, not int.
4680
9a900ca9
PE
4681 * xterm.c (x_draw_underwave): Check for integer overflow.
4682 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
4683
41b7f8bc 46842012-06-17 Jan Djärv <jan.h.d@swipnet.se>
50a93863
JD
4685
4686 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
4687 referenced (Bug#11583).
4688
9b0e3eba
AA
46892012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
4690
4691 Implement wave-style variant of underlining.
4692 * dispextern.h (face_underline_type): New enum.
4693 (face): Add field for underline type.
4694 * nsterm.m (ns_draw_underwave): New function.
4695 (ns_draw_text_decoration): Use it.
4696 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
4697 New functions.
4698 (x_draw_glyph_string): Use them.
4699 * xfaces.c (Qline, Qwave): New Lisp objects.
4700 (check_lface_attrs, merge_face_ref)
1053a871
SM
4701 (Finternal_set_lisp_face_attribute, realize_x_face):
4702 Handle wave-style underline face attributes.
9b0e3eba
AA
4703 * xterm.c (x_draw_underwave): New function.
4704 (x_draw_glyph_string): Use it.
4705
0fb52f11
JB
47062012-06-16 Juanma Barranquero <lekktu@gmail.com>
4707
4708 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
4709 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
4710 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
4711 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
4712 ($(BLD)/w32select.$(O)): Update dependencies.
4713
e5560ff7
AS
47142012-06-16 Andreas Schwab <schwab@linux-m68k.org>
4715
4716 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
4717 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
4718 * character.c (_fetch_multibyte_char_p): Remove.
4719 * alloc.c: Include "character.h" before "buffer.h".
4720 * bidi.c: Likewise.
4721 * buffer.c: Likewise.
4722 * bytecode.c: Likewise.
4723 * callint.c: Likewise.
4724 * callproc.c: Likewise.
4725 * casefiddle.c: Likewise.
4726 * casetab.c: Likewise.
4727 * category.c: Likewise.
4728 * cmds.c: Likewise.
4729 * coding.c: Likewise.
4730 * composite.c: Likewise.
4731 * dired.c: Likewise.
4732 * dispnew.c: Likewise.
4733 * doc.c: Likewise.
4734 * dosfns.c: Likewise.
4735 * editfns.c: Likewise.
4736 * emacs.c: Likewise.
4737 * fileio.c: Likewise.
4738 * filelock.c: Likewise.
4739 * font.c: Likewise.
4740 * fontset.c: Likewise.
4741 * fringe.c: Likewise.
4742 * indent.c: Likewise.
4743 * insdel.c: Likewise.
4744 * intervals.c: Likewise.
4745 * keyboard.c: Likewise.
4746 * keymap.c: Likewise.
4747 * lread.c: Likewise.
4748 * macros.c: Likewise.
4749 * marker.c: Likewise.
4750 * minibuf.c: Likewise.
4751 * nsfns.m: Likewise.
4752 * nsmenu.m: Likewise.
4753 * print.c: Likewise.
4754 * process.c: Likewise.
4755 * regex.c: Likewise.
4756 * region-cache.c: Likewise.
4757 * search.c: Likewise.
4758 * syntax.c: Likewise.
4759 * term.c: Likewise.
4760 * textprop.c: Likewise.
4761 * undo.c: Likewise.
4762 * unexsol.c: Likewise.
4763 * w16select.c: Likewise.
4764 * w32fns.c: Likewise.
4765 * w32menu.c: Likewise.
4766 * window.c: Likewise.
4767 * xdisp.c: Likewise.
4768 * xfns.c: Likewise.
4769 * xmenu.c: Likewise.
4770 * xml.c: Likewise.
4771 * xselect.c: Likewise.
4772
2f07e6af
EZ
47732012-06-16 Eli Zaretskii <eliz@gnu.org>
4774
1053a871
SM
4775 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
4776 If all the glyphs of the glyph row came from strings, and we have no
2f07e6af 4777 cursor positioning clues, put the cursor on the first glyph of the
1097afe4
EZ
4778 row.
4779 (handle_face_prop): Use chunk-relative overlay string index when
4780 indexing into it->string_overlays array. (Bug#11653)
946fdb73
EZ
4781 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
4782 the rightmost. (Bug#11720)
2f07e6af 4783
29b83cec
AS
47842012-06-16 Andreas Schwab <schwab@linux-m68k.org>
4785
4786 * category.h (CHAR_HAS_CATEGORY): Define as inline.
4787 (CATEGORY_MEMBER): Enforce 1/0 value.
4788 * category.c (_temp_category_set): Remove.
4789
4c5501e9
EZ
47902012-06-16 Eli Zaretskii <eliz@gnu.org>
4791
4792 * window.c (Fdelete_other_windows_internal)
4793 (Fdelete_window_internal): Don't access frame's mouse highlight
4794 info of the initial frame. (Bug#11677)
4795
2b570124
PE
47962012-06-14 Paul Eggert <eggert@cs.ucla.edu>
4797
e93864f9
PE
4798 * .gdbinit (xgetint): Fix recently-introduced paren typo.
4799 Assume USE_2_TAGS_FOR_INTS.
4800 (xreload): Adjust $tagmask width to match recent lisp.h change.
4801
2b570124
PE
4802 Simplify lisp.h in minor ways that should not affect code.
4803 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
4804 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
4805 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
4806 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
4807 (INTTYPEBITS): New macro, for clarity.
4808 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
1053a871
SM
4809 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
4810 Simplify now that USE_LSB_TAG is always defined.
2b570124
PE
4811 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
4812 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
4813
81755f69
JB
48142012-06-13 Juanma Barranquero <lekktu@gmail.com>
4815
4816 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
4817
16192a57
GM
48182012-06-13 Glenn Morris <rgm@gnu.org>
4819
4820 * s/bsd-common.h (BSD4_3):
4821 * s/usg5-4-common.h (USG5_4): No longer define; unused.
4822
646b5f55
AS
48232012-06-13 Andreas Schwab <schwab@linux-m68k.org>
4824
4825 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
4826 instead of union.
4827 (XLI, XIL): Define.
1053a871
SM
4828 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
4829 Use them.
4830 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
646b5f55 4831 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
1053a871 4832 * alloc.c (widen_to_Lisp_Object): Remove.
646b5f55
AS
4833 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
4834 * frame.c (delete_frame): Remove outdated comment.
4835 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
4836 USE_LISP_UNION_TYPE.
4837 (Fw32_unregister_hot_key): Likewise.
4838 (Fw32_toggle_lock_key): Likewise.
4839 * w32menu.c (add_menu_item): Likewise.
4840 (w32_menu_display_help): Use XIL instead of checking
4841 USE_LISP_UNION_TYPE.
4842 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
4843 (init_heap): Likewise.
4844 * w32term.c (w32_read_socket): Update comment.
4845
1d3823c9
GM
48462012-06-13 Glenn Morris <rgm@gnu.org>
4847
c62ff706
GM
4848 * s/usg5-4-common.h, src/s/unixware.h:
4849 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
4850
1d3823c9
GM
4851 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
4852
bfe3e0a2
PE
48532012-06-13 Paul Eggert <eggert@cs.ucla.edu>
4854
4855 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
4856 * alloc.c (make_number) [!defined make_number]:
4857 Remove, as lisp.h always defines this now.
4858 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
4859 (roundup_size): Verify that it is a power of 2.
4860 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
4861 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
4862 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
4863 -DUSE_LSB_TAG=0, to override the automatically-selected default.
4864 USE_LSB_TAG now is always defined to be either 0 or 1.
4865 All uses changed.
4866 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
4867 code works fine either way, and efficiency is not a concern here,
4868 as the union type is for debugging, not for production.
4869 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
4870 Use an inline function on all platforms when using the union type,
4871 since this is simpler and 'static inline' can be used portably
4872 within Emacs now.
4873 (LISP_INITIALLY_ZERO): New macro.
4874 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
4875 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
4876
45fa9c0f
GM
48772012-06-12 Glenn Morris <rgm@gnu.org>
4878
b4492cba
GM
4879 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
4880
4881 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
0d369729 4882
45fa9c0f
GM
4883 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
4884 Move BROKEN_SIGIO to configure.
4885
4886 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
4887 Move NO_TERMIO to configure.
4888
0e25d334
CY
48892012-06-12 Chong Yidong <cyd@gnu.org>
4890
4891 * image.c (imagemagick_load_image): Use MagickFlattenImage if
4892 MagickMergeImageLayers is undefined. Use pixel pusher loop if
4893 MagickExportImagePixels is undefined.
4894
43682bb6
PE
48952012-06-12 Paul Eggert <eggert@cs.ucla.edu>
4896
4897 * image.c (imagemagick_load_image): Remove unused label.
4898
a9be7d2b
GM
48992012-06-11 Glenn Morris <rgm@gnu.org>
4900
4901 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
4902 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
4903 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
4904 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
4905
3017f87f
SM
49062012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
4907
4908 * alloc.c (make_byte_code): New function.
4909 (Fmake_byte_code): Use it. Don't purify here.
4910 * lread.c (read1): Use it as well to avoid extra allocation.
4911
1b9b4cf4
CY
49122012-06-11 Chong Yidong <cyd@gnu.org>
4913
4914 * image.c (imagemagick_load_image): Implement transparency.
4915
95988fcf
AS
49162012-06-10 Andreas Schwab <schwab@linux-m68k.org>
4917
4918 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
4919 account for preceding backslashes. (Bug#11663)
4920
cd4eb164
CY
49212012-06-09 Chong Yidong <cyd@gnu.org>
4922
4923 * term.c: Support italics in capable terminals (Bug#9652).
4924 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
4925 (turn_on_face): Output using TS_enter_italic_mode if available.
4926 Don't handle unused blinking and alt-charset cases.
4927 (turn_off_face): Handle italic case; discard unused tty_blinking_p
4928 and tty_alt_charset_p cases.
4929 (tty_capable_p, init_tty): Support italics.
4930
4931 * termchar.h (struct tty_display_info): Add field for italics.
4932 Remove unused blink field.
4933
4934 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
4935 Handle slant.
4936
4937 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
4938 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
4939 tty_alt_charset_p. Add tty_italic_p.
4940
ff88beb8
MA
49412012-06-09 Michael Albinus <michael.albinus@gmx.de>
4942
4943 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
4944 dbus_type_is_basic if available.
4945 (xd_extract_signed, xd_extract_unsigned): Rename from
4946 extract_signed and extract_unsigned, respectively. Adapt callers.
4947
44286096
CY
49482012-06-09 Chong Yidong <cyd@gnu.org>
4949
1682701f
CY
4950 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
4951
44286096
CY
4952 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
4953 case (Bug#9752).
4954
d86feb17
PE
49552012-06-08 Paul Eggert <eggert@cs.ucla.edu>
4956
4957 * xdisp.c (vmessage): Treat frame message as multibyte.
4958 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
4959 would generate the diagnostic "Making \302\247 buffer-local while
4960 let-bound!".
4961
d5c20fe8
EZ
49622012-06-08 Eli Zaretskii <eliz@gnu.org>
4963
4964 * dispnew.c (showing_window_margins_p): Undo last change, which
4965 was done due to an inadvertent commit.
4966 (adjust_frame_glyphs_for_frame_redisplay): Do call
4967 showing_window_margins_p.
4968
513749ee
SM
49692012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
4970
4971 * eval.c (Fmake_var_non_special): New primitive.
4972 (syms_of_eval): Defsubr it.
4973 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
4974
d4a8f5c1
JB
49752012-06-08 Juanma Barranquero <lekktu@gmail.com>
4976
4977 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
4978 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
4979
8bbbc977
EZ
49802012-06-08 Eli Zaretskii <eliz@gnu.org>
4981
4982 * alloc.c (allocate_vectorlike): Fix last change.
4983
f3372c87
DA
49842012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
4985
4986 Block-based vector allocation of small vectors.
4987 * lisp.h (struct vectorlike_header): New field `nbytes',
4988 adjust comment accordingly.
4989 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
4990 to denote vector blocks. Adjust users (live_vector_p,
4991 mark_maybe_pointer, valid_lisp_object_p) accordingly.
4992 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
4993 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
4994 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
4995 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
4996 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
4997 (roundup_size): New constant.
4998 (struct vector_block): New data type.
4999 (vector_blocks, vector_free_lists, zero_vector): New variables.
513749ee 5000 (all_vectors): Rename to `large_vectors'.
f3372c87
DA
5001 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
5002 (sweep_vectors): New functions.
5003 (allocate_vectorlike): Return `zero_vector' as the only vector of
5004 0 items. Allocate new vector from block if vector size is less than
5005 or equal to VBLOCK_BYTES_MAX.
5006 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
5007 (init_alloc_once): Add call to init_vectors.
5008
4f18a4ed
SM
50092012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
5010
5011 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
5012
86f158bc
PE
50132012-06-07 Paul Eggert <eggert@cs.ucla.edu>
5014
5015 * doprnt.c (doprnt): Truncate multibyte char correctly.
5016 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
5017 would mishandle a string argument "Xc" if X was a multibyte
5018 character of length 2: it would truncate after X's first byte
5019 rather than including all of X.
5020
c5cfcbe0
CY
50212012-06-06 Chong Yidong <cyd@gnu.org>
5022
5023 * buffer.c (word_wrap): Doc fix.
5024
c05cf390
PE
50252012-06-04 Paul Eggert <eggert@cs.ucla.edu>
5026
5027 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
5028
0c3461de
GM
50292012-06-03 Glenn Morris <rgm@gnu.org>
5030
5031 * xdisp.c (tool-bar-style): Doc fix.
5032
c71232db
UM
50332012-06-03 Ulrich Müller <ulm@gentoo.org>
5034
5035 * Makefile.in (PAXCTL): Define.
5036 (temacs$(EXEEXT)): Disable memory randomization for the temacs
5037 binary via PaX flags if the paxctl utility is available.
5038 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
5039 Restore PaX flags to their default. (Bug#11398)
5040
383f7350
CY
50412012-06-03 Chong Yidong <cyd@gnu.org>
5042
5043 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
5044 buffer (Bug#11226).
5045
5f2c76c6
CY
50462012-06-03 Chong Yidong <cyd@gnu.org>
5047
5048 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
5049 (note_mode_line_or_margin_highlight): If there is no help echo,
5050 use mode-line-default-help-echo. Handle the case where the mouse
5051 position is past the end of the mode line string.
5052
5053 * buffer.c (buffer_local_value_1): New function, split from
5054 Fbuffer_local_value; can return Qunbound.
5055 (Fbuffer_local_value): Use it.
5056 (Vmode_line_format): Docstring tweaks.
5057
773d47f6
PE
50582012-06-02 Paul Eggert <eggert@cs.ucla.edu>
5059
5060 * sysdep.c (system_process_attributes): Improve comment.
5061
f2d6a3df
SM
50622012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
5063
5064 * keyboard.c: Export real-this-command to Elisp.
5065 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
5066 and DEFVAR it. Update all users.
5067
63810350
PE
50682012-06-02 Paul Eggert <eggert@cs.ucla.edu>
5069
7bd5c1f4
PE
5070 * minibuf.c (Fassoc_string): Remove duplicate declaration.
5071
63810350
PE
5072 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
5073 Convert pctcpu and pctmem to Lisp float properly.
5074 Let the compiler fold better, as 100.0/0x8000 is exact.
5075
a2821611
AS
50762012-06-02 Andreas Schwab <schwab@linux-m68k.org>
5077
5078 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
5079 cons_block.
5080
5fceba1d
PE
50812012-06-01 Paul Eggert <eggert@cs.ucla.edu>
5082
5083 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
5084
c98ff5dd
DA
50852012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
5086
5087 For a 'struct window', replace some Lisp_Object fields to
5088 bitfields where appropriate, remove unused fields.
5089 * window.h (struct window): Remove unused 'last_mark_x' and
5090 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
5091 change it's type from Lisp_Object to bitfield.
5092 Change type of 'force_start', 'optional_new_start',
5093 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
5094 fields from Lisp_Object to bitfield. Adjust users accordingly.
5095
ca34e0be
PE
50962012-05-31 Paul Eggert <eggert@cs.ucla.edu>
5097
5098 Pacify gcc -Wdouble-precision when using Xaw.
5099 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
5100 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
5101 Use 'float' consistently, rather than 'float' in most places
5102 and 'double' in a couple of places.
5103
efc00ab1 51042012-05-31 Eli Zaretskii <eliz@gnu.org>
d5fd2c54
EZ
5105
5106 * xdisp.c (handle_stop): Detect whether we have overlay strings
5107 loaded by testing it->current.overlay_string_index to be
5108 non-negative, instead of checking whether n_overlay_strings is
5109 positive. (Bug#11587)
5110
efc00ab1 51112012-05-31 Chong Yidong <cyd@gnu.org>
353c87f6
CY
5112
5113 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
5114
5115 * doc.c (Fsubstitute_command_keys): Doc fix.
5116
efc00ab1 51172012-05-31 Eli Zaretskii <eliz@gnu.org>
a02ae4e5
EZ
5118
5119 * search.c (search_buffer): Remove calls to
5120 r_alloc_inhibit_buffer_relocation, as it is now called by
5121 maybe_unify_char, which was the cause of relocation of buffer text
5122 in bug#11519.
5123
efc00ab1 51242012-05-31 Eli Zaretskii <eliz@gnu.org>
291d430f
EZ
5125
5126 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
5127 for the duration of call to load_charset, to avoid problems with
5128 callers of maybe_unify_char that access buffer text through C
5129 pointers.
5130
5131 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
5132 decrement the inhibition flag, instead of just setting or
5133 resetting it.
5134
ba93a187
PE
51352012-05-31 Paul Eggert <eggert@cs.ucla.edu>
5136
5137 Remove obsolete '#define static' cruft.
5138 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
5139 This #undef was "temporary" in 2000; it is no longer needed
5140 now that '#define static' has gone away.
5141 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
5142 (gray_bitmap_bits): Remove; no longer needed.
5143 All uses replaced with definiens.
5144 * xterm.c: Include "bitmaps/gray.xbm".
5145
9e4bf381
PE
51462012-05-30 Paul Eggert <eggert@cs.ucla.edu>
5147
5148 Clean up __executable_start, monstartup when --enable-profiling.
5149 The following changes affect the code only when profiling.
5150 * dispnew.c (__executable_start): Rename from safe_bcopy.
5151 Define only on platforms that need it.
5152 * emacs.c: Include <sys/gmon.h> when profiling.
5153 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
5154 (__executable_start): Remove decl, since lisp.h does it now.
5155 (safe_bcopy): Remove decl; no longer has that name.
5156 (main): Coalesce #if into single bit of code, for simplicity.
5157 Cast pointers to uintptr_t, since standard libraries want integers
5158 and not pointers.
5159 * lisp.h (__executable_start): New decl.
5160
32d72c2f
GM
51612012-05-31 Glenn Morris <rgm@gnu.org>
5162
5163 * image.c (Fimagemagick_types): Doc fix.
5164
baac5bc7
JM
51652012-05-30 Jim Meyering <meyering@redhat.com>
5166
5167 * callproc.c (Fcall_process_region): Include directory component
5168 in mkstemp error message (Bug#11586).
5169
72cb32cf
PE
51702012-05-30 Paul Eggert <eggert@cs.ucla.edu>
5171
5172 * alloc.c, lisp.h (make_pure_vector): Now static.
5173
61b108cc
SM
51742012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
5175
5176 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
5177 Move to byte-run.el.
5178 (Fautoload): Do the hash-doc more carefully.
5179 * data.c (Fdefalias): Purify definition, except for keymaps.
5180 (Qdefun): Move from eval.c.
5181 * lisp.h (Qdefun): Remove.
5182 * lread.c (read1): Tiny simplification.
5183
471fe23d
TN
51842012-05-29 Troels Nielsen <bn.troels@gmail.com>
5185
934f3f58 5186 Do not create empty overlays with the evaporate property (Bug#9642).
471fe23d
TN
5187 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
5188 Bug#9642, but explicitly check that the buffer the overlay would
5189 be moved to is live and rearrange lines to make sure that errors
5190 will not put the overlay in an inconsistent state.
5191 (Fdelete_overlay): Cosmetics.
5192
85d0efd1
EZ
51932012-05-28 Eli Zaretskii <eliz@gnu.org>
5194
5195 * w32term.c (my_bring_window_to_top): New function.
5196 (x_raise_frame): Use handle returned by DeferWindowPos, which
61b108cc
SM
5197 could be different from the original one.
5198 Call my_bring_window_to_top instead of my_set_foreground_window.
85d0efd1
EZ
5199 (Bug#11513)
5200
5201 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
5202 by calling BringWindowToTop.
5203
5204 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
5205 (WM_EMACS_END): Increase by one.
5206
da92a98c
PE
52072012-05-28 Paul Eggert <eggert@cs.ucla.edu>
5208
5209 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
5210 This avoids undefined behavior that might cause the eassert
5211 to not catch an out-of-range value.
5212
74d1f848
JB
52132012-05-28 Juanma Barranquero <lekktu@gmail.com>
5214
5215 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
5216 Update dependencies.
5217
9e1a06fc
EZ
52182012-05-27 Eli Zaretskii <eliz@gnu.org>
5219
5220 * bidi.c (bidi_mirror_char): Fix last change.
5221
f3dd7312
AS
52222012-05-27 Andreas Schwab <schwab@linux-m68k.org>
5223
5224 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
5225 when referring to sectname field in printf format.
5226
81899c91
PE
52272012-05-27 Paul Eggert <eggert@cs.ucla.edu>
5228
57b81a9f
PE
5229 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
5230 Only r_alloc_inhibit_buffer_relocation needed to be added;
5231 the others were already declared.
5232
81899c91
PE
5233 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
5234 before checking whether it's out of range. Put the check inside
5235 eassert. See
5236 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
5237
33017faf 52382012-05-27 Ken Brown <kbrown@cornell.edu>
2f9b9adb
KB
5239
5240 * callproc.c (Fcall_process): Restore a line that was accidentally
5241 commented out in the 2011-02-13 change (bug#11547).
5242
33017faf 52432012-05-27 Eli Zaretskii <eliz@gnu.org>
52c55cc7
EZ
5244
5245 * lisp.h [REL_ALLOC]: Add prototypes for external functions
5246 defined on ralloc.c.
5247
5248 * buffer.c [REL_ALLOC]: Remove prototypes of
5249 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
5250 they are now on lisp.h.
5251
5252 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
5253
5254 * search.c (search_buffer): Use it to inhibit relocation of buffer
5255 text while re_search_2 is doing its job, because re_search_2 is
5256 passed C pointers to buffer text. (Bug#11519)
5257
23415acf
EZ
5258 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
5259 Update value to 24.
5260
44e27368
EZ
5261 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
5262 state after an additional call to move_it_in_display_line_to, keep
5263 the values of it->max_ascent and it->max_descent found for the
5264 entire line.
5265 (pos_visible_p): Revert the comparison against bottom_y to what it
5266 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
5267 (Bug#11464)
5268
c1892f11
PE
52692012-05-26 Paul Eggert <eggert@cs.ucla.edu>
5270
5271 Fix coding-related core dumps with gcc -ftrapv.
5272 The code was computing A - B, where A and B are pointers, and B is
5273 random garbage. This can lead to core dumps on platforms that
5274 have special pointer registers, and it also leads to core dumps on
5275 x86-64 when compiled with gcc -ftrapv. The fix is to compute
5276 A - B only when B is initialized properly.
5277 * coding.c (coding_set_source, coding_set_destination): Return void.
5278 (coding_change_source, coding_change_destinations): New functions,
5279 with the old behaviors of coding_set_source and coding_set_destination.
5280 All callers that need an offset changed to use these new functions.
5281
eb7afdad
GM
52822012-05-26 Glenn Morris <rgm@gnu.org>
5283
5284 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
5285
f12fdf02
EZ
52862012-05-26 Eli Zaretskii <eliz@gnu.org>
5287
53a63be6 5288 Extend mouse support on W32 text-mode console.
61b108cc
SM
5289 * xdisp.c (draw_row_with_mouse_face):
5290 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
eb3f6f01 5291
eb3f6f01 5292 * w32console.c: Include window.h.
61b108cc
SM
5293 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
5294 New functions.
eb3f6f01
EZ
5295 (initialize_w32_display): Initialize mouse-highlight data.
5296
53a63be6
EZ
5297 * w32inevt.c: Include termchar.h and window.h.
5298 (do_mouse_event): Support mouse-autoselect-window. When the mouse
5299 moves, call note_mouse_highlight. If help_echo changed, call
5300 gen_help_event to produce help-echo message in the echo area.
5301 Call clear_mouse_face if mouse_face_hidden is set in the mouse
5302 highlight info.
5303
4cfd81f6
PE
53042012-05-26 Paul Eggert <eggert@cs.ucla.edu>
5305
5306 * lread.c (read1): Simplify slightly to avoid an overflow warning
5307 with GCC 4.7.0 on x86-64.
5308
4446092a
EZ
53092012-05-26 Eli Zaretskii <eliz@gnu.org>
5310
5311 * bidi.c (bidi_mirror_char): Revert last change: an int is
5312 definitely wide enough here.
5313
42b2a986 53142012-05-25 Paul Eggert <eggert@cs.ucla.edu>
3164aeac 5315
42b2a986 5316 Fix integer width and related bugs (Bug#9874).
eb106a49 5317 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
d311d28c
PE
5318 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
5319 (string_bytes, check_sblock, allocate_string_data):
5320 (compact_small_strings, Fmake_bool_vector, make_string)
5321 (make_unibyte_string, make_multibyte_string)
5322 (make_string_from_bytes, make_specified_string)
5323 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
5324 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
5325 (mark_vectorlike):
5326 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5327 (allocate_pseudovector):
5328 Use int, not EMACS_INT, where int is wide enough.
5329 (inhibit_garbage_collection, Fgarbage_collect):
5330 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5331 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
5332 int might not be wide enough.
5333 (bidi_cache_search, bidi_cache_find, bidi_init_it)
5334 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
5335 (bidi_at_paragraph_end, bidi_find_paragraph_start)
5336 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
5337 (bidi_level_of_next_char, bidi_move_to_visually_next):
5338 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5339 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
5340 (Fkill_buffer, Fset_buffer_major_mode)
5341 (advance_to_char_boundary, Fbuffer_swap_text)
5342 (Fset_buffer_multibyte, overlays_at, overlays_in)
5343 (overlay_touches_p, struct sortvec, record_overlay_string)
5344 (overlay_strings, recenter_overlay_lists)
5345 (adjust_overlays_for_insert, adjust_overlays_for_delete)
5346 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
5347 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
5348 (Foverlay_recenter, last_overlay_modification_hooks_used)
5349 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
5350 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
977b0e45
PE
5351 (validate_region): Omit unnecessary test for b <= e,
5352 since that's guaranteed by the previous test.
d311d28c
PE
5353 (adjust_overlays_for_delete): Avoid pos + length overflow.
5354 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
5355 (report_overlay_modification):
5356 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5357 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
5358 Omit pointer cast, which isn't needed anyway, and doesn't work
5359 after the EMACS_INT -> ptrdiff_t change.
02481186 5360 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
d311d28c
PE
5361 * buffer.h: Adjust decls to match defn changes elsewhere.
5362 (struct buffer_text, struct buffer):
5363 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5364 Use EMACS_INT, not int, where int might not be wide enough.
39b5db3b
PE
5365 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
5366 not int, to avoid needless 32-bit limit on 64-bit hosts.
5367 (exec_byte_code): Use tighter memory-full test, one that checks
5368 for alloca overflow. Don't compute the address of the object just
5369 before an array, as that's not portable. Use EMACS_INT, not
5370 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
d311d28c
PE
5371 * callint.c (Fcall_interactively):
5372 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5373 * callproc.c (call_process_kill, Fcall_process):
5374 Don't assume pid_t fits into an Emacs fixnum.
5375 (call_process_cleanup, Fcall_process, child_setup):
5376 Don't assume pid_t fits into int.
5377 (call_process_cleanup, Fcall_process, delete_temp_file)
5378 (Fcall_process_region):
5379 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5380 (Fcall_process): Simplify handling of volatile integers.
5381 Use int, not EMACS_INT, where int will do.
5382 * casefiddle.c (casify_object, casify_region, operate_on_word)
5383 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
5384 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5385 (casify_object): Avoid integer overflow when overallocating buffer.
5386 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
45c2afd6 5387 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
d311d28c
PE
5388 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
5389 * category.h (CATEGORYP): Don't assume arg is nonnegative.
5390 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
5391 integers are now checked earlier. All uses replaced with XINT.
5392 (ccl_driver):
5393 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5394 For CCL_MapSingle, check that content and value are in int range.
c801946a
PE
5395 (ccl_driver, Fregister_code_conversion_map):
5396 Check that Vcode_version_map_vector is a vector.
d311d28c
PE
5397 (resolve_symbol_ccl_program): Check that vector header is in range.
5398 Always copy the vector, so that we can check its contents reliably
5399 now rather than having to recheck each instruction as it's being
5400 executed. Check that vector words fit in 'int'.
5401 (ccl_get_compiled_code, Fregister_ccl_program)
5402 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
5403 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
5404 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
5405 contents are in range.
5406 (Fccl_execute_on_string): Check that status is in range.
5407 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
5408 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
5409 Accept and return EMACS_INT, not int, because callers can pass values
5410 out of 'int' range.
5411 (c_string_width, strwidth, lisp_string_width, chars_in_text)
5412 (multibyte_chars_in_text, parse_str_as_multibyte)
5413 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
5414 (str_as_unibyte, str_to_unibyte, string_count_byte8)
5415 (string_escape_byte8, Fget_byte):
5416 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
a14e1568 5417 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
d311d28c
PE
5418 avoid mishandling large integers.
5419 * character.h: Adjust decls to match defn changes elsewhere.
5420 * charset.c (load_charset_map_from_file, find_charsets_in_text)
5421 (Ffind_charset_region):
5422 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5423 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
5424 (load_charset_map_from_vector, Fdefine_charset_internal):
3c7649c1 5425 Don't assume fixnum fits in int.
d311d28c
PE
5426 (load_charset_map_from_vector, Fmap_charset_chars):
5427 Remove now-unnecessary CHECK_NATNUMs.
5428 (Fdefine_charset_internal): Check ranges here, more carefully.
3c7649c1
PE
5429 Don't rely on undefined behavior with signed left shift overflow.
5430 Don't assume unsigned int fits into fixnum, or that fixnum fits
5431 into unsigned int. Don't require max_code to be a valid fixnum;
5432 that's not true for gb10830 4-byte on a 32-bit host. Allow
5433 invalid_code to be a cons, for the same reason. Require code_offset
5434 to be a character. Avoid int overflow if max_char is close
5435 to INT_MAX.
5436 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
5437 this is intended anyway and avoids some undefined behavior.
5438 (load_charset_map): Pass unsigned, not int, as 2nd arg of
5439 INDEX_TO_CODE_POINT, as that's what it expects.
5440 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
60ad3eab
PE
5441 * charset.h (DECODE_CHAR): Return int, not unsigned;
5442 this is what was intended anyway, and it avoids undefined behavior.
5443 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
5444 integer-overflow issues.
5445 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
5446 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
5447 where the argument is EMACS_INT, and this behavior is not intended.
d311d28c
PE
5448 * chartab.c (Fmake_char_table, Fset_char_table_range)
5449 (uniprop_get_decoder, uniprop_get_encoder):
5450 Don't assume fixnum fits in int.
5451 * cmds.c (move_point): New function, that does the gist of
5452 Fforward_char and Fbackward_char, but does so while checking
5453 for integer overflow more accurately.
c96e5d6a 5454 (Fforward_char, Fbackward_char): Use it.
d311d28c
PE
5455 (Fforward_line, Fend_of_line, internal_self_insert)
5456 (internal_self_insert):
5457 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5458 Fix a FIXME, by checking for integer overflow when calculating
5459 target_clm and actual_clm.
5460 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
8f50130c 5461 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
d311d28c
PE
5462 (ASSURE_DESTINATION, coding_alloc_by_realloc)
5463 (coding_alloc_by_making_gap, alloc_destination)
5464 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
5465 (encode_coding_utf_16, detect_coding_emacs_mule)
5466 (decode_coding_emacs_mule, encode_coding_emacs_mule)
5467 (detect_coding_iso_2022, decode_coding_iso_2022)
5468 (encode_invocation_designation, encode_designation_at_bol)
5469 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
5470 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
5471 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
5472 (encode_coding_ccl, encode_coding_raw_text)
5473 (detect_coding_charset, decode_coding_charset)
5474 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
5475 (produce_composition, produce_charset, produce_annotation)
5476 (decode_coding, handle_composition_annotation)
5477 (handle_charset_annotation, consume_chars, decode_coding_gap)
5478 (decode_coding_object, encode_coding_object, detect_coding_system)
5479 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
5480 (code_convert_region, code_convert_string)
8f50130c
PE
5481 (Fdefine_coding_system_internal)
5482 (coding_set_source, coding_set_destination):
d311d28c
PE
5483 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5484 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
5485 (Fdefine_coding_system_internal):
5486 Don't assume fixnums fit in int.
5487 (decode_coding_gap, decode_coding_object, encode_coding_object)
5895d7b9 5488 (Fread_coding_system, Fdetect_coding_region)
2c6a9faa
PE
5489 (Funencodable_char_position, Fcheck_coding_systems_region)
5490 (get_translation, handle_composition_annotation, consume_chars):
d311d28c 5491 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
977b0e45 5492 (consume_chars): Rewrite to not calculate an address outside buffer.
d311d28c 5493 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
7b09a37a 5494 Don't access memory outside of the args array.
d311d28c 5495 (Fdefine_coding_system_internal): Check for charset-id overflow.
47664caa
PE
5496 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
5497 result of ENCODE_CHAR.
d311d28c
PE
5498 * coding.h: Adjust decls to match defn changes elsewhere.
5499 (struct coding_system):
5500 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5501 * composite.c (get_composition_id, find_composition)
5502 (run_composition_function, update_compositions)
5503 (compose_text, composition_gstring_put_cache)
5504 (composition_gstring_p, composition_gstring_width)
5505 (fill_gstring_header, fill_gstring_body, autocmp_chars)
5506 (composition_compute_stop_pos, composition_reseat_it)
5507 (composition_update_it, struct position_record)
5508 (find_automatic_composition, composition_adjust_point)
5509 (Fcomposition_get_gstring, Ffind_composition_internal):
5510 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5511 (update_compositions):
5512 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5513 * composite.h: Adjust decls to match defn changes elsewhere.
5514 (struct composition):
5515 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5516 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
5517 Do not attempt to compute the address of the object just before a
5518 buffer; this is not portable.
5519 (Faref, Faset):
5520 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5521 (Faset): Use int, not EMACS_INT, where int is wide enough.
5522 (Fstring_to_number): Don't assume fixnums fit in int.
5523 (Frem): Don't assume arg is nonnegative.
5524 * dbusbind.c (xd_append_arg): Check for integers out of range.
5525 (Fdbus_call_method): Don't overflow the timeout int.
42b2a986 5526 (extract_signed, extract_unsigned): New functions.
243e0530
PE
5527 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
5528 (xd_get_connection_references): Return ptrdiff_t, not int.
5529 All uses changed.
5530 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
5531 (xd_read_message_1):
5532 Use int, not unsigned, where the dbus API uses int.
5533 (Fdbus_message_internal): Don't overflow mtype.
5534 (syms_of_dbusbind): Allocate right-sized buffer for integers.
d311d28c
PE
5535 * dired.c (directory_files_internal, file_name_completion, scmp)
5536 (file_name_completion_stat):
5537 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5538 (file_name_completion): Don't overflow matchcount.
5539 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
5540 * dispextern.h: Adjust decls to match defn changes elsewhere.
5541 (struct text_pos, struct glyph, struct bidi_saved_info)
5542 (struct bidi_string_data, struct bidi_it, struct composition_it)
5543 (struct it):
5544 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5545 (struct display_pos, struct composition_it, struct it):
5546 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5547 * dispnew.c (increment_matrix_positions)
5548 (increment_row_positions, mode_line_string)
5549 (marginal_area_string):
5550 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
54e1617f 5551 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
d311d28c
PE
5552 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5553 (duration_to_sec_usec): New function, to check for overflow better.
5554 (Fsleep_for, sit_for): Use it.
5555 * doc.c (get_doc_string, store_function_docstring):
5556 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5557 (get_doc_string, Fsnarf_documentation):
5558 Use int, not EMACS_INT, where int is wide enough.
5559 (get_doc_string):
5560 Use SAFE_ALLOCA, not alloca.
5561 Check for overflow when converting EMACS_INT to off_t.
5562 * doprnt.c (doprnt):
5563 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5564 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
5565 Don't assume uid_t fits into fixnum.
5566 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
5567 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
5568 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
5569 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
5570 (general_insert_function)
5571 (Finsert_char, make_buffer_string, make_buffer_string_both)
5572 (update_buffer_properties, Fbuffer_substring)
5573 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
5574 (Fsubst_char_in_region, check_translation)
5575 (Ftranslate_region_internal, save_restriction_restore, Fformat)
5576 (transpose_markers, Ftranspose_regions):
5577 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5578 (clip_to_bounds): Move to lisp.h as an inline function).
5579 (Fconstrain_to_field): Don't assume integers are nonnegative.
5580 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
5581 (Fsubst_char_in_region, Fsave_restriction):
5582 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5583 (Femacs_pid): Don't assume pid_t fits into fixnum.
5584 (lo_time): Use int, not EMACS_INT, when int suffices.
5585 (lisp_time_argument): Check for usec out of range.
5586 (Fencode_time): Don't assume fixnum fits in int.
3f4eabd1
PE
5587 (Fuser_login_name, Fuser_full_name): Signal an error
5588 if a uid argument is out of range, rather than relying on
5589 undefined behavior.
c8d5c857
PE
5590 (Fformat_time_string): Remove now-unnecessary check.
5591 lisp_time_argument checks for out-of-range usec now.
243e0530 5592 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
d311d28c
PE
5593 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
5594 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
5595 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
5596 (init_cmdargs, Fdump_emacs):
5597 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5598 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
5599 the bottom (typically) 32 bits of the fixnum.
5600 * eval.c (specpdl_size, call_debugger):
5601 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5602 (when_entered_debugger, Fbacktrace_debug):
5603 Don't assume fixnum can fit in int.
5604 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
5605 the object just before a buffer; this is not portable.
5606 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
5607 (grow_specpdl, unbind_to):
5608 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5609 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
5610 (grow_specpdl): Simplify allocation by using xpalloc.
856bbc81 5611 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
d311d28c
PE
5612 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
5613 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
5614 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5615 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
5616 (a_write, e_write):
5617 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5618 (Fcopy_file, non_regular_nbytes, read_non_regular)
5619 (Finsert_file_contents):
5620 Use int, not EMACS_INT, where int is wide enough.
5621 (READ_BUF_SIZE): Verify that it fits in int.
5622 (Finsert_file_contents): Check that counts are in proper range,
5623 rather than assuming fixnums fit into ptrdiff_t etc.
5624 Don't assume fixnums fit into int.
125b3835 5625 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
5895d7b9
PE
5626 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
5627 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
d311d28c
PE
5628 (string_char_to_byte, string_byte_to_char)
5629 (string_make_multibyte, string_to_multibyte)
5630 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
5631 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
5632 (substring_both, Fdelete, internal_equal, Ffillarray)
5633 (Fclear_string, mapcar1)
5634 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
5635 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
5636 (larger_vector, make_hash_table, maybe_resize_hash_table)
5637 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
5638 (Fmaphash, secure_hash):
5639 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5640 (concat): Check for string index and length overflow.
5641 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
5642 (Frequire):
5643 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5644 (larger_vector): New API (vec, incr_min, size_max) replaces old
5645 one (vec, new_size, init). This catches size overflow.
5646 INIT was removed because it was always Qnil.
5647 All callers changed.
5648 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
5649 the upper bound on a hash table index size.
5650 (make_hash_table, maybe_resize_hash_table): Use it.
5651 (secure_hash): Computer start_byte and end_byte only after
5652 they're known to be in ptrdiff_t range.
5653 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
5654 (Ffont_get_glyphs, Ffont_at):
5655 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5656 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
5657 (Flist_fonts, Fopen_font):
5658 Don't assume fixnum can fit in int.
5659 (check_gstring): Don't assume index can fit in int.
5660 (font_match_p): Check that fixnum is a character, not a nonnegative
5661 fixnum, since the later code needs to stuff it into an int.
5662 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
5663 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
5664 conversion overflow issues.
5665 (Fopen_font): Check for integer out of range.
5666 (Ffont_get_glyphs): Don't assume index can fit in int.
5667 * font.h: Adjust decls to match defn changes elsewhere.
5668 * fontset.c (reorder_font_vector): Redo score calculation to avoid
5669 integer overflow.
5670 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
5671 printmax_t, where ptrdiff_t is wide enough.
5672 (Finternal_char_font):
5673 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5674 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
5675 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
5676 (Fset_frame_position, x_set_frame_parameters)
5677 (x_set_line_spacing, x_set_border_width)
5678 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
5679 Check that fixnums are in proper range for system types.
5680 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
5681 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5682 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
5683 Use SAFE_ALLOCA_LISP, not alloca.
5684 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
5685 intptr_t is wide enough.
5686 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
5687 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
5688 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
5689 Check for fixnum out of range.
5690 * ftfont.c (ftfont_list): Don't assume index fits in int.
5691 Check that fixnums are in proper range for system types.
5692 (ftfont_shape_by_flt):
5693 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
d311d28c
PE
5694 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
5695 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5696 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
5697 Check that fixnums are in proper range for system types.
5698 * gnutls.h: Adjust decls to match defn changes elsewhere.
5699 * gtkutil.c (xg_dialog_run):
5700 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5701 (update_frame_tool_bar):
5702 Check that fixnums are in proper range for system types.
5703 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
5895d7b9 5704 (lookup_image): Check that fixnums are in range for system types.
d311d28c
PE
5705 * indent.c (last_known_column, last_known_column_point):
5706 (current_column_bol_cache):
5707 (skip_invisible, current_column, check_display_width):
5708 (check_display_width, scan_for_column, current_column_1)
5709 (Findent_to, Fcurrent_indentation, position_indentation)
5710 (indented_beyond_p, Fmove_to_column, compute_motion):
5711 (Fcompute_motion, Fvertical_motion):
5712 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5713 (last_known_column_modified): Use EMACS_INT, not int.
5714 (check_display_width):
5715 (Fcompute_motion):
5716 Check that fixnums and floats are in proper range for system types.
5717 (compute_motion): Don't assume index or fixnum fits in int.
5718 (compute_motion, Fcompute_motion):
5719 Use int, not EMACS_INT, when it is wide enough.
5720 (vmotion): Omit local var start_hpos that is always 0; that way
5721 we don't need to worry about overflow in expressions involving it.
5722 * indent.h: Adjust decls to match defn changes elsewhere.
5723 (struct position):
5724 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5725 Use int, not EMACS_INT, where int is wide enough.
5726 Remove unused members ovstring_chars_done and tab_offset;
5727 all uses removed.
5728 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
5729 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
5730 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
5731 (make_gap, copy_text, insert, insert_and_inherit)
5732 (insert_before_markers, insert_before_markers_and_inherit)
5733 (insert_1, count_combining_before, count_combining_after)
5734 (insert_1_both, insert_from_string)
5735 (insert_from_string_before_markers, insert_from_string_1)
5736 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
5737 (adjust_after_replace, adjust_after_insert, replace_range)
5738 (replace_range_2, del_range, del_range_1, del_range_byte)
5739 (del_range_both, del_range_2, modify_region)
5740 (prepare_to_modify_buffer, signal_before_change)
5741 (signal_after_change, Fcombine_after_change_execute):
5742 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5743 * intervals.c (traverse_intervals, rotate_right, rotate_left)
5744 (balance_an_interval, split_interval_right, split_interval_left)
5745 (find_interval, next_interval, update_interval)
5746 (adjust_intervals_for_insertion, delete_node, delete_interval)
5747 (interval_deletion_adjustment, adjust_intervals_for_deletion)
5748 (static_offset_intervals, offset_intervals)
5749 (merge_interval_right, merge_interval_left, make_new_interval)
5750 (graft_intervals_into_buffer, temp_set_point_both)
5751 (temp_set_point, set_point, adjust_for_invis_intang)
5752 (set_point_both, move_if_not_intangible, get_property_and_range)
5753 (get_local_map, copy_intervals, copy_intervals_to_string)
5754 (compare_string_intervals, set_intervals_multibyte_1):
5755 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5756 * intervals.h: Adjust decls to match defn changes elsewhere.
5757 (struct interval):
5758 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5759 * keyboard.c (this_command_key_count, this_single_command_key_start)
5760 (before_command_key_count, before_command_echo_length, echo_now)
5761 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
5762 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
5763 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
5764 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
5765 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5766 (last_non_minibuf_size, last_point_position, echo_truncate)
5767 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
5768 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
5769 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
5770 (stuff_buffered_input):
5771 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5772 (last_auto_save, command_loop_1, read_char):
5773 Use EMACS_INT, not int, to avoid integer overflow.
5774 (record_char): Avoid overflow in total_keys computation.
5775 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
5776 * keyboard.h: Adjust decls to match defn changes elsewhere.
5777 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
5778 (Fkey_description, Fdescribe_vector, Flookup_key):
5779 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5780 (click_position): New function, to check that positions are in range.
5781 (Fcurrent_active_maps):
5782 (describe_command):
5783 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5784 (Faccessible_keymaps, Fkey_description):
5785 (preferred_sequence_p):
5786 Don't assume fixnum can fit into int.
5787 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
5788 Check for integer overflow in size calculations.
5789 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
5790 avoid mishandling large integers.
5791 * lisp.h: Adjust decls to match defn changes elsewhere.
5792 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
5793 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
5794 (struct Lisp_Marker):
5795 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5796 (clip_to_bounds): Now an inline function, moved here from editfns.c.
d311d28c
PE
5797 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
5798 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
5799 All callers changed.
5800 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
5801 Assume the arg has valid form, since it always does.
5802 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
5803 unsigned integer system type.
5804 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
5805 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
5806 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5807 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
5808 (duration_to_sec_usec): New decl.
5809 * lread.c (read_from_string_index, read_from_string_index_byte)
5810 (read_from_string_limit, readchar, unreadchar, openp)
5811 (read_internal_start, read1, oblookup):
5812 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5813 (Fload, readevalloop, Feval_buffer, Feval_region):
5814 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5815 (openp): Check for out-of-range argument to 'access'.
5816 (read1): Use int, not EMACS_INT, where int is wide enough.
5817 Don't assume fixnum fits into int.
6efdadfd 5818 Fix off-by-one error that can read outside a buffer.
1ab7b8ac
PE
5819 (read_filtered_event): Use duration_to_sec_usec
5820 to do proper overflow checking on durations.
d311d28c
PE
5821 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
5822 in size calculation.
5823 (Fexecute_kbd_macro):
5824 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5825 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
5826 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
5827 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
5828 (set_marker_both, set_marker_restricted_both, marker_position)
5829 (marker_byte_position, Fbuffer_has_markers_at):
5830 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5831 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
61b108cc 5832 * menu.c (ensure_menu_items): Rename from grow_menu_items.
d311d28c
PE
5833 It now merely ensures that the menu is large enough, without
5834 necessarily growing it, as this avoids some integer overflow issues.
5835 All callers changed.
5836 (keymap_panes, parse_single_submenu, Fx_popup_menu):
5837 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5838 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
5839 Use SAFE_ALLOCA_LISP, not alloca.
5840 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
5841 to EMACS_INT. Check that fixnums are in proper range for system types.
5842 * minibuf.c (minibuf_prompt_width, string_to_object)
5843 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
5844 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
5845 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5846 (get_minibuffer, read_minibuf_unwind):
5847 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5848 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
5849 this simplifies overflow checking. All callers changed.
5850 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
5851 (Ftest_completion):
5852 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5853 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
5854 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
5855 Check that fixnums are in proper range for system types.
5856 (Fx_create_frame, Fx_show_tip):
5857 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5858 * nsfont.m (ns_findfonts, nsfont_list_family):
5859 Don't assume fixnum fits in long.
5860 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
5861 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5862 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
5863 wide enough.
17fdb222 5864 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
d311d28c
PE
5865 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5866 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
5867 (PRINTDECLARE, PRINTPREPARE):
5868 (strout, print_string):
5869 (print, print_preprocess, print_check_string_charset_prop)
5870 (print_object):
5871 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5872 (PRINTDECLARE):
5873 (temp_output_buffer_setup, Fprin1_to_string, print_object):
5874 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5875 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
d311d28c 5876 (printchar, strout): Use xpalloc to catch size calculation overflow.
0fd11aa5 5877 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
d311d28c
PE
5878 (print_error_message): Use SAFE_ALLOCA, not alloca.
5879 (print_object): Use int, not EMACS_INT, where int is wide enough.
a8b7caa3
PE
5880 (print_depth, new_backquote_output, print_number_index):
5881 Use ptrdiff_t, not int, where int might not be wide enough.
d311d28c
PE
5882 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
5883 (Fset_process_window_size, Fformat_network_address)
5884 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
d44287d4 5885 (sigchld_handler):
d311d28c 5886 Check that fixnums are in proper range for system types.
d44287d4 5887 (Fsignal_process): Simplify by avoiding a goto.
d83cf4cc
PE
5888 Check for process-ids out of pid_t range rather than relying on
5889 undefined behavior.
e4d81efc 5890 (process_tick, update_tick): Use EMACS_INT, not int.
d311d28c
PE
5891 (Fformat_network_address, read_process_output, send_process)
5892 (Fprocess_send_region, status_notify):
5893 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5894 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
5895 (wait_reading_process_output, read_process_output, exec_sentinel):
5896 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5897 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
5898 (Faccept_process_output): Use duration_to_sec_usec to do proper
5899 overflow checking on durations.
dde14581
PE
5900 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
5901 Don't assume pid_t fits in int.
02481186
PE
5902 * process.h (struct Lisp_Process): Members tick and update_tick
5903 are now of type EMACS_INT, not int.
b62b53e8
PE
5904 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
5905 configured --with-wide-int.
d311d28c
PE
5906 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
5907 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
5908 * search.c (looking_at_1, string_match_1):
5909 (fast_string_match, fast_c_string_match_ignore_case)
5910 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
5911 (scan_newline, find_before_next_newline, search_command)
5912 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
5913 (set_search_regs, wordify):
5914 (Freplace_match):
5915 (Fmatch_data):
5916 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5917 (string_match_1, search_buffer, set_search_regs):
5918 (Fmatch_data):
5919 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5920 (wordify): Check for overflow in size calculation.
5921 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
5922 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
5923 Check that fixnums are in proper range for system types.
5924 * sound.c (struct sound_device)
5925 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
5926 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5927 (Fplay_sound_internal):
5928 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
eacd378d 5929 * syntax.c (struct lisp_parse_state, find_start_modiff)
d311d28c
PE
5930 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
5931 (Fparse_partial_sexp):
5932 Don't assume fixnums can fit in int.
5933 (struct lisp_parse_state, find_start_pos, find_start_value)
5934 (find_start_value_byte, find_start_begv)
5935 (update_syntax_table, char_quoted, dec_bytepos)
5936 (find_defun_start, prev_char_comend_first, back_comment):
5937 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
5938 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
5939 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5940 (Finternal_describe_syntax_value): Check that match_lisp is a
5941 character, not an integer, since the code stuffs it into int.
5942 (scan_words, scan_sexps_forward):
5943 Check that fixnums are in proper range for system types.
5944 (Fforward_word):
5945 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5946 (scan_sexps_forward):
5947 Use CHARACTERP, not INTEGERP, since the value must fit into int.
5948 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
5949 * syntax.h: Adjust decls to match defn changes elsewhere.
5950 (struct gl_state_s):
5951 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
e4ecdc9c
PE
5952 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
5953 MOST_POSITIVE_FIXNUM.
d311d28c
PE
5954 * sysdep.c (wait_for_termination_1, wait_for_termination)
5955 (interruptible_wait_for_termination, mkdir):
5956 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
5957 (emacs_read, emacs_write):
5958 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
225a2cff
PE
5959 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
5960 and double all fit in int.
d311d28c
PE
5961 * term.c (set_tty_color_mode):
5962 Check that fixnums are in proper range for system types.
5963 * termhooks.h (struct input_event):
5964 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5965 * textprop.c (validate_interval_range, interval_of)
5966 (Fadd_text_properties, set_text_properties_1)
5967 (Fremove_text_properties, Fremove_list_of_text_properties)
5968 (Ftext_property_any, Ftext_property_not_all)
5969 (copy_text_properties, text_property_list, extend_property_ranges)
5970 (verify_interval_modification):
5971 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5972 (Fnext_single_char_property_change)
5973 (Fprevious_single_char_property_change):
5974 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5895d7b9
PE
5975 (copy_text_properties):
5976 Check for integer overflow in index calculation.
d311d28c
PE
5977 * undo.c (last_boundary_position, record_point, record_insert)
5978 (record_delete, record_marker_adjustment, record_change)
5979 (record_property_change):
5980 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5981 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
5982 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5983 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
5984 (Fx_hide_tip, Fx_file_dialog):
5985 * w32menu.c (set_frame_menubar):
5986 Use ptrdiff_t, not int, for consistency with rest of code.
5987 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
5988 (select_window, Fdelete_other_windows_internal)
5989 (window_scroll_pixel_based, window_scroll_line_based)
5990 (Frecenter, Fset_window_configuration):
5991 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
5992 (Fset_window_hscroll, run_window_configuration_change_hook)
5993 (set_window_buffer, temp_output_buffer_show, scroll_command)
5895d7b9 5994 (Fscroll_other_window, Frecenter):
d311d28c
PE
5995 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
5996 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
5997 Don't assume fixnum fits in int.
5998 (Fset_window_scroll_bars):
5999 Check that fixnums are in proper range for system types.
6000 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
6001 (string_pos, c_string_pos, number_of_chars, init_iterator)
6002 (in_ellipses_for_invisible_text_p, init_from_display_pos)
6003 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
6004 (compute_display_string_end, handle_face_prop)
5895d7b9
PE
6005 (face_before_or_after_it_pos, handle_invisible_prop)
6006 (handle_display_prop, handle_display_spec, handle_single_display_spec)
d311d28c
PE
6007 (display_prop_intangible_p, string_buffer_position_lim)
6008 (string_buffer_position, handle_composition_prop, load_overlay_strings)
6009 (get_overlay_strings_1, get_overlay_strings)
6010 (iterate_out_of_display_property, forward_to_next_line_start)
6011 (back_to_previous_visible_line_start, reseat, reseat_to_string)
6012 (get_next_display_element, set_iterator_to_next)
6013 (get_visually_first_element, compute_stop_pos_backwards)
6014 (handle_stop_backwards, next_element_from_buffer)
6015 (move_it_in_display_line_to, move_it_in_display_line)
6016 (move_it_to, move_it_vertically_backward, move_it_by_lines)
6017 (add_to_log, message_dolog, message_log_check_duplicate)
6018 (message2, message2_nolog, message3, message3_nolog
6019 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
6020 (current_message_1, truncate_echo_area, truncate_message_1)
6021 (set_message, set_message_1, store_mode_line_noprop)
6022 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
6023 (text_outside_line_unchanged_p, check_point_in_composition)
6024 (reconsider_clip_changes)
6025 (redisplay_internal, set_cursor_from_row, try_scrolling)
6026 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
6027 (redisplay_window, find_last_unchanged_at_beg_row)
6028 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
6029 (trailing_whitespace_p, find_row_edges, display_line)
6030 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
6031 (display_mode_element, store_mode_line_string)
6032 (pint2str, pint2hrstr, decode_mode_spec)
6033 (display_count_lines, display_string, draw_glyphs)
6034 (x_produce_glyphs, x_insert_glyphs)
6035 (rows_from_pos_range, mouse_face_from_buffer_pos)
6036 (fast_find_string_pos, mouse_face_from_string_pos)
6037 (note_mode_line_or_margin_highlight, note_mouse_highlight):
6038 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6039 (safe_call, init_from_display_pos, handle_fontified_prop)
6040 (handle_single_display_spec, load_overlay_strings)
6041 (with_echo_area_buffer, setup_echo_area_for_printing)
6042 (display_echo_area, echo_area_display)
6043 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
6044 (update_tool_bar, hscroll_window_tree, redisplay_internal)
5895d7b9
PE
6045 (redisplay_window, dump_glyph_row, display_mode_line)
6046 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
43ad2e9a 6047 (handle_display_spec, display_prop_string_p):
d311d28c
PE
6048 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6049 (handle_single_display_spec, build_desired_tool_bar_string)
6050 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
6051 (get_specified_cursor_type):
6052 Check that fixnums are in proper range for system types.
6053 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
6054 (Flookup_image_map):
6055 Don't assume fixnums fit in int.
6056 (compare_overlay_entries):
6057 Avoid mishandling comparisons due to subtraction overflow.
6058 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
6059 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
6060 (handle_tool_bar_click):
6061 Use int, not unsigned, since we prefer signed and the signedness
6062 doesn't matter here.
6063 (get_next_display_element, next_element_from_display_vector):
6064 Use int, not EMACS_INT, when int is wide enough.
6065 (start_hourglass): Use duration_to_sec_usec to do proper
6066 overflow checking on durations.
6067 * xfaces.c (Fbitmap_spec_p):
6068 Check that fixnums are in proper range for system types.
6069 (compare_fonts_by_sort_order):
6070 Avoid mishandling comparisons due to subtraction overflow.
6071 (Fx_family_fonts, realize_basic_faces):
6072 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6073 (Fx_family_fonts):
6074 Don't assume fixnum fits in int.
6075 Use SAFE_ALLOCA_LISP, not alloca.
6076 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
6077 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
6078 (face_at_buffer_position, face_for_overlay_string)
6079 (face_at_string_position):
6080 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6081 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
6082 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
6083 (Fx_show_tip):
6084 Check that fixnums are in proper range for system types.
6085 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
6086 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
6087 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6088 (Fx_change_window_property): Don't assume fixnums fit in int.
6089 * xfont.c (xfont_chars_supported):
6090 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6091 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
6092 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
6093 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6094 * xml.c (parse_region):
6095 * xrdb.c (magic_file_p):
6096 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
6097 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
6098 (x_get_local_selection, x_reply_selection_request)
6099 (x_handle_selection_request, wait_for_property_change):
6100 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6101 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
6102 short is wide enough.
6103 (x_send_client_event): Don't assume fixnum fits in int.
6104 * xterm.c (x_x_to_emacs_modifiers):
6105 Don't assume EMACS_INT overflows nicely into int.
6106 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
6107 may come from Lisp.
6108 (handle_one_xevent): NATNUMP can eval its arg twice.
6109 (x_connection_closed):
6110 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
6111 * xterm.h: Adjust decls to match defn changes elsewhere.
6112 (struct scroll_bar): Use struct vectorlike_header
6113 rather than rolling our own approximation.
6114 (SCROLL_BAR_VEC_SIZE): Remove; not used.
6115
c6574eb5
GM
61162012-05-25 Glenn Morris <rgm@gnu.org>
6117
6118 * lisp.mk (lisp): Update for more files being compiled now.
6119
e8d32c7e
SM
61202012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
6121
48def666
SM
6122 * lread.c: Remove `read_pure' which makes no difference.
6123 (read_pure): Remove var.
6124 (unreadpure): Remove function.
6125 (readevalloop): Don't call read_list with -1 flag.
6126 (read1, read_vector): Don't test read_pure any more.
6127 (read_list): Simplify.
6128
e8d32c7e
SM
6129 * fileio.c, character.h: Minor style tweaks.
6130
4b2addb7
DA
61312012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
6132
6133 * window.h (clip_changed): Remove useless declaration.
6134
584461b2
JB
61352012-05-22 Juanma Barranquero <lekktu@gmail.com>
6136
6137 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
6138 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
6139
34374650
PE
61402012-05-22 Paul Eggert <eggert@cs.ucla.edu>
6141
6142 Remove src/m/*.
6143 This directory predates autoconf and is no longer needed nowadays.
6144 Move its few remaining bits of functionality to where they're needed.
6145 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
6146 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
6147 * m/template.h: Remove.
6148 * Makefile.in (M_FILE): Remove. All uses removed.
6149 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
6150 * lisp.h (USE_LSB_TAG):
6151 * mem-limits.h (EXCEEDS_LISP_PTR):
6152 Use VAL_MAX, not VALBITS, in #if.
6153 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
6154 (EMACS_UINT): Define unconditionally now.
6155 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
6156 (BITS_PER_EMACS_INT): New constants, replacing
6157 what used to be in config.h, but not useful in #if.
6158 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
6159 define them any more.
6160 (VAL_MAX): New macro.
6161 (VALMASK): Use it.
6162 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
6163 BITS_PER_EMACS_INT, in #if.
6164 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
6165 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
6166 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
6167 * s/ms-w32.h (DATA_START):
6168 Move here from removed file m/intel386.h.
6169 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
6170 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
6171
261cb4bb
PE
61722012-05-21 Paul Eggert <eggert@cs.ucla.edu>
6173
6174 Assume C89 or later.
6175 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
6176 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
6177 (xrealloc):
6178 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
6179 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
6180 * textprop.c, tparam.c (NULL): Remove.
6181 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
6182 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
6183 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
6184 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
6185 * xterm.c (input_signal_count): Assume volatile works.
6186
ff23cd9f
KB
61872012-05-21 Ken Brown <kbrown@cornell.edu>
6188
6189 * xgselect.c (xg_select): Fix first argument in call to 'select'
6190 (bug#11508).
6191
1b170bc6
KB
61922012-05-20 Ken Brown <kbrown@cornell.edu>
6193
6194 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
bd7239f5 6195 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
1b170bc6 6196
b2f4d39f
KB
61972012-05-19 Ken Brown <kbrown@cornell.edu>
6198
6199 * xfns.c (x_in_use): Remove `static' qualifier.
6200 * xterm.h (x_in_use): Declare.
6201 * xgselect.c: Include xterm.h.
6202 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
6203 and `display_arg' (bug#9754).
6204
003fdae2
PE
62052012-05-19 Paul Eggert <eggert@cs.ucla.edu>
6206
9232a6d9
PE
6207 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
6208
003fdae2
PE
6209 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
6210 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
6211
784b56e2
EZ
62122012-05-18 Eli Zaretskii <eliz@gnu.org>
6213
6214 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
6215
6216 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
090bd7cb 6217 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
784b56e2
EZ
6218
6219 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
6220 reference to image_cache->refcount.
6221 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
6222
a0a79cde
JL
62232012-05-17 Juri Linkov <juri@jurta.org>
6224
6225 * search.c (Fword_search_regexp, Fword_search_backward)
6226 (Fword_search_forward, Fword_search_backward_lax)
6227 (Fword_search_forward_lax): Move functions to isearch.el
6228 (bug#10145, bug#11381).
6229
b0572523
PE
62302012-05-16 Paul Eggert <eggert@cs.ucla.edu>
6231
6232 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
6233
9660f5fc
SM
62342012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
6235
6236 * lread.c (init_obarray): Declare Qt and Qnil as special.
6237
4374de83
GM
62382012-05-14 Glenn Morris <rgm@gnu.org>
6239
6240 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
985584ae 6241 Put "libexec" before "bin", for the sake of init_callproc_1.
4374de83 6242
dc44c39a
PE
62432012-05-14 Paul Eggert <eggert@cs.ucla.edu>
6244
078c97cb
PE
6245 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
6246
dc44c39a
PE
6247 * unexaix.c: Port to more-recent AIX compilers.
6248 (report_error, report_error_1, make_hdr, copy_sym)
6249 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
6250 Make arguments const char *, not char *, to avoid violations of C
6251 standard and to fix some AIX warnings reported by Gilles Pion.
6252
e18afed7 62532012-05-14 Eli Zaretskii <eliz@gnu.org>
ac268e67
EZ
6254
6255 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
6256 already have overlays loaded.
6257 (handle_single_display_spec): Before returning without displaying
6258 fringe bitmap, synchronize the bidi iterator with the main display
6259 iterator, by calling iterate_out_of_display_property.
6260 (iterate_out_of_display_property): Detect buffer iteration by
6261 testing that it->string is a Lisp string.
6262 (get_next_display_element): When the current object is exhausted,
6263 and there's something on it->stack, call set_iterator_to_next to
6264 proceed with what's on the stack, instead of returning zero.
6265 (set_iterator_to_next): If called at the end of a Lisp string,
6266 proceed to consider_string_end without incrementing string
6267 position. Don't increment display vector index past the end of
6268 the display vector. (Bug#11417)
c8fb9dc6
EZ
6269 (pos_visible_p): Don't report a position visible when move_it_to
6270 stopped at the last line of window, which happens to be scanned
6271 backwards by the bidi iteration. (Bug#11464)
ac268e67 6272
e18afed7 62732012-05-14 Eli Zaretskii <eliz@gnu.org>
82f9b393
EZ
6274
6275 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
6276 and right-margin display specs even if the spec is invalid or we
61b108cc
SM
6277 are on a TTY, and thus unable to display on the fringes.
6278 That's because the text with the property will not be displayed anyway,
82f9b393
EZ
6279 so we need to signal to the caller that this is a "replacing"
6280 display spec. This fixes display when the spec is invalid or we
6281 are on a TTY.
6282
e18afed7 62832012-05-14 Paul Eggert <eggert@cs.ucla.edu>
297834cd
PE
6284
6285 * unexaix.c (make_hdr): Fix typo in prototype.
6286 This bug broke the build on AIX. Problem reported by Gilles Pion.
6287
9d0a235a
MA
62882012-05-14 Michael Albinus <michael.albinus@gmx.de>
6289
6290 * keyboard.c (kbd_buffer_get_event): Read special events also in
6291 batch mode. (Bug#11415)
6292
9e6b06ed
GM
62932012-05-12 Glenn Morris <rgm@gnu.org>
6294
6295 * ns.mk: Update for ns_appbindir no longer having trailing "/".
6296
c1a1d7a3
EZ
62972012-05-12 Eli Zaretskii <eliz@gnu.org>
6298
6299 * lisp.mk (lisp): Add newcomment.elc.
6300
3fe7cdc8
GM
63012012-05-12 Glenn Morris <rgm@gnu.org>
6302
6303 * Makefile.in (MKDIR_P): New, set by configure.
6304 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
6305
53f7d2c0
PE
63062012-05-11 Paul Eggert <eggert@cs.ucla.edu>
6307
6308 Remove unused function hourglass_started.
6309 * dispextern.h (hourglass_started):
6310 * w32fns.c (hourglass_started):
6311 * xdisp.c (hourglass_started): Remove.
6312
75aafb17
JB
63132012-05-10 Juanma Barranquero <lekktu@gmail.com>
6314
6315 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
6316 Update dependencies.
6317
12959e8e
PE
63182012-05-10 Paul Eggert <eggert@cs.ucla.edu>
6319
97107e2e
PE
6320 * xgselect.c (xg_select): Put maxfds+1 into a var.
6321 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
6322
12959e8e
PE
6323 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
6324
836d29b3
DA
63252012-05-10 Dave Abrahams <dave@boostpro.com>
6326
6327 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
6328 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
6329
5cb67954
MA
63302012-05-09 Michael Albinus <michael.albinus@gmx.de>
6331
6332 * dbusbind.c (xd_registered_buses): New internal Lisp object.
6333 Rename all occurences of Vdbus_registered_buses to xd_registered_buses.
6334 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
6335 Initialize xd_registered_buses.
6336
3478ec45
PE
63372012-05-09 Paul Eggert <eggert@cs.ucla.edu>
6338
b263a6b0
PE
6339 Untag more efficiently if USE_LSB_TAG.
6340 This is based on a proposal by YAMAMOTO Mitsuharu in
6341 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
6342 For an admittedly artificial (nth 8000 longlist) benchmark on
6343 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
6344 Emacs's overall text size by 1%.
6345 * lisp.h (XUNTAG): New macro.
6346 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
6347 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
6348 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
6349 * eval.c (Fautoload):
6350 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
6351 * frame.h (XFRAME): Use XUNTAG.
6352
3478ec45
PE
6353 Port recent dbusbind.c changes to 32-bit --with-wide-int.
6354 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
6355 Remove unportable assumptions about print widths of types like
6356 dbus_uint32_t.
6357 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
6358 intptr_t when converting between pointer and integer, to avoid GCC
6359 warnings about wrong width.
6360
666b903b 63612012-05-09 Eli Zaretskii <eliz@gnu.org>
0d887c7d
EZ
6362
6363 * w32proc.c (new_child): Force Windows to reserve only 64KB of
6364 stack for each reader_thread, instead of defaulting to 8MB
6365 determined by the linker. This avoids failures in creating
6366 subprocesses on Windows 7, see the discussion in this thread:
6367 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
6368
b120cc17
JC
63692012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
6370
6371 Fix up display of the *Minibuf-0* buffer in the mini window.
6372 * keyboard.c (read_char): Don't clear the echo area if there's no
6373 message to clear.
6374 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
2fed2689 6375 contents of *Minibuf-0*) if there's no message displayed in its stead.
b120cc17 6376
9a4b36f8
MA
63772012-05-07 Michael Albinus <michael.albinus@gmx.de>
6378
6379 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
6380 batch mode.
6381
e5f9458f
CY
63822012-05-06 Chong Yidong <cyd@gnu.org>
6383
6384 * lisp.mk (lisp): Update.
6385
eceeb5fc 63862012-05-05 Jim Meyering <meyering@redhat.com>
bf98199c
JM
6387
6388 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
6389
71873e2b
SM
63902012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
6391
6392 * data.c (PUT_ERROR): New macro.
6393 (syms_of_data): Use it. Add new error type `user-error'.
6394 * undo.c (user_error): New function.
6395 (Fprimitive_undo): Use it.
6396 * print.c (print_error_message): Adjust print style for `user-error'.
6397 * keyboard.c (user_error): New function.
6398 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
6399
ab0fa4e4
PE
64002012-05-03 Paul Eggert <eggert@cs.ucla.edu>
6401
6402 Do not limit current-time-string to years 1000..9999.
6403 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
6404 (Fcurrent_time_string): Support any year that is supported by the
6405 underlying localtime representation. Don't use asctime, as it
6406 has undefined behavior for years outside the range -999..9999.
6407
7ed806a7
PE
64082012-05-02 Paul Eggert <eggert@cs.ucla.edu>
6409
6410 Fix race conditions involving setenv, gmtime, localtime, asctime.
6411 Without this fix, interrupts could mess up code that uses these
6412 nonreentrant functions, since setting TZ invalidates existing
6413 tm_zone or tzname values, and since most of these functions return
6414 pointers to static storage.
6415 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
6416 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
6417 Grow the critical sections to include not just invoking
6418 localtime/gmtime, but also accessing these functions' results
6419 including their tm_zone values if any, and any related TZ setting.
6420 (format_time_string): Last arg is now struct tm *, not struct tm **,
71873e2b
SM
6421 so that the struct tm is saved in the critical section.
6422 All callers changed. Simplify allocation of initial buffer, partly
7ed806a7
PE
6423 motivated by the fact that memory allocation needs to be outside
6424 the critical section.
6425
0c16dfed
DA
64262012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
6427
6428 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
6429 with RESET_INTERVAL.
6430
6431 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
6432 Remove duplicated buffer name initialization.
6433
3f83ace8
JM
64342012-05-02 Jim Meyering <jim@meyering.net>
6435
6436 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
6437
c7b8541e
JM
6438 * xfns.c (x_window): Use xstrdup (Bug#11375).
6439
90207a15 64402012-05-02 Eli Zaretskii <eliz@gnu.org>
2fa85638
EZ
6441
6442 * xdisp.c (pos_visible_p): If already at a newline from the
6443 display string before the 'while' loop, don't walk back the glyphs
6444 from it3.glyph_row. Solves assertion violation when the display
6445 string begins with a newline (egg.el). (Bug#11367)
6446
b593d6a9
AH
64472012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
6448
6449 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
6450 Move to simple.el.
6451
4737362e
GM
64522012-05-01 Glenn Morris <rgm@gnu.org>
6453
99cf43f9
GM
6454 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
6455 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
6456 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
6457 All were removed before 23.1.
6458
9311dcff
GM
6459 * dispnew.c: Remove HAVE_LIBNCURSES test;
6460 it is always true on relevant platforms.
6461
4d5c6349
GM
6462 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
6463 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
6464
4737362e
GM
6465 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
6466
74dd3a6b
AS
64672012-04-30 Andreas Schwab <schwab@linux-m68k.org>
6468
6469 * .gdbinit (xpr): Remove checks for no longer existing misc types.
6470 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
6471 Remove.
6472
13c379ee
PE
64732012-04-28 Paul Eggert <eggert@cs.ucla.edu>
6474
6475 Do not avoid creating empty evaporating overlays (Bug#9642).
6476 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
6477 That is, do not delete an evaporating overlay if it becomes
6478 empty after its bounds are adjusted to fit within its buffer.
6479 This fix caused other problems, and I'm reverting it until we get
6480 to the bottom of them.
6481
a8e7d6d7 64822012-04-27 Chong Yidong <cyd@gnu.org>
9be2fd9b
CY
6483
6484 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
6485
a8e7d6d7 64862012-04-27 Eli Zaretskii <eliz@gnu.org>
f0ee99a0
EZ
6487
6488 * xdisp.c (pos_visible_p): If the window start position is beyond
6489 ZV, start the display from buffer beginning. Prevents assertion
6490 violation in init_iterator when the minibuffer window is scrolled
6491 via the scroll bar.
6492
6493 * window.c (window_scroll_pixel_based): Likewise.
6494
a8e7d6d7 64952012-04-27 Chong Yidong <cyd@gnu.org>
9ec7751f
CY
6496
6497 * keymap.c (where_is_internal): Doc fix (Bug#10872).
6498
a8e7d6d7 64992012-04-27 Glenn Morris <rgm@gnu.org>
24c51a09
GM
6500
6501 * fileio.c (Fcopy_file, Fset_file_selinux_context):
6502 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
6503
a8e7d6d7 65042012-04-27 Eli Zaretskii <eliz@gnu.org>
73055685 6505
b593d6a9
AH
6506 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
6507 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
73055685 6508
1c6900d9
EZ
65092012-04-26 Eli Zaretskii <eliz@gnu.org>
6510
4c3fa1d9
EZ
6511 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
6512 display element, check also the underlying string or buffer
6513 character. (Bug#11341)
6514
1c6900d9
EZ
6515 * w32menu.c: Include w32heap.h.
6516 (add_menu_item): If the call to AppendMenuW (via
6517 unicode_append_menu) fails, disable Unicode menus only if we are
6518 running on Windows 9X/Me.
6519
42bf8205
AS
65202012-04-24 Andreas Schwab <schwab@linux-m68k.org>
6521
6522 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
6523 (xgetint): Add missing shift for LSB tags.
6524
b1bac16e
MR
65252012-04-24 Martin Rudalics <rudalics@gmx.at>
6526
6527 * keyboard.c (read_char): Don't wipe echo area for select window
6528 events: These might get delayed via `mouse-autoselect-window'
6529 (Bug#11304).
6530
d69621cc
JB
65312012-04-24 Juanma Barranquero <lekktu@gmail.com>
6532
6533 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
6534 manipulation of :loaded-from data.
6535
02fd101b
JB
65362012-04-23 Juanma Barranquero <lekktu@gmail.com>
6537
6538 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
6539 now a cons (bug#11311).
6540
888bec30
PE
65412012-04-23 Paul Eggert <eggert@cs.ucla.edu>
6542
89a438bd
PE
6543 Do not create empty overlays with the evaporate property (Bug#9642).
6544 * buffer.c (Fmove_overlay): Delete an evaporating overlay
6545 if it becomes empty after its bounds are adjusted to fit within
6546 its buffer. Without this fix, in a nonempty buffer (let ((o
6547 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
6548 yields an empty overlay that has the evaporate property, which is
6549 not supposed to happen.
6550
1068fe4d
PE
6551 Fix minor GTK3 problems found by static checking.
6552 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
6553 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
6554 (struct _EmacsFixedClass, emacs_fixed_get_type):
6555 Move decls here from emacsgtkfixed.h, since they needn't be public.
6556 (emacs_fixed_get_type): Now static.
6557 (emacs_fixed_class_init): Omit unused local.
6558 (emacs_fixed_child_type): Remove; unused.
6559 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
6560 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
6561 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
6562 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
6563 (EMACS_FIXED_GET_CLASS): Remove; unused.
6564 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
6565
888bec30
PE
6566 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
6567 Problem reported by Juanma Barranquero for Windows -Wunused-function.
6568
de85e130
PE
65692012-04-22 Paul Eggert <eggert@cs.ucla.edu>
6570
d0baac98 6571 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
bd7239f5 6572 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
d0baac98
PE
6573 (__malloc_size_t, __malloc_ptrdiff_t):
6574 Remove. All uses removed, replaced by the definiens if needed,
6575 since we can assume C89 or better now.
6576 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
6577 (protect_malloc_state, align, get_contiguous_space)
6578 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
6579 (malloc_atfork_handler_child, malloc_enable_thread)
6580 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
6581 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
6582 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
6583 (special_realloc, _realloc_internal_nolock, _realloc_internal)
6584 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
6585 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
6586 Define using prototypes, not old style.
6587 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
6588 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
6589 (align): Don't assume that signed integer overflow wraps around.
6590 Omit unused local var.
6591 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
6592 (_free_internal_nolock, memalign, mallochook, reallochook):
6593 Omit no-longer-needed casts.
6594 (valloc): Use getpagesize, not __getpagesize.
6595 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
6596 (struct hdr): The 'magic' member is now size_t, not unsigned long.
6597
de85e130
PE
6598 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
6599
dcbf5805
MA
66002012-04-22 Michael Albinus <michael.albinus@gmx.de>
6601
6602 Move functions from C to Lisp. Make non-blocking method calls
6603 the default. Implement further D-Bus standard interfaces.
6604
6605 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
6606 (QCdbus_request_name_allow_replacement)
6607 (QCdbus_request_name_replace_existing)
6608 (QCdbus_request_name_do_not_queue)
6609 (QCdbus_request_name_reply_primary_owner)
6610 (QCdbus_request_name_reply_in_queue)
6611 (QCdbus_request_name_reply_exists)
6612 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
6613 (QCdbus_registered_serial, QCdbus_registered_method)
6614 (QCdbus_registered_signal): New Lisp objects.
6615 (XD_DEBUG_MESSAGE): Use sizeof.
6616 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
6617 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
6618 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
6619 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
6620 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
6621 (xd_signature, xd_append_arg): Allow float for integer types.
6622 (xd_get_connection_references): New function.
b593d6a9
AH
6623 (xd_get_connection_address): Rename from xd_initialize.
6624 Return cached address.
dcbf5805
MA
6625 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
6626 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
6627 level.
6628 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
9a4b36f8 6629 Return number of refcounts.
dcbf5805
MA
6630 (Fdbus_get_unique_name): Make stronger parameter check.
6631 (Fdbus_message_internal): New defun.
6632 (Fdbus_call_method, Fdbus_call_method_asynchronously)
6633 (Fdbus_method_return_internal, Fdbus_method_error_internal)
6634 (Fdbus_send_signal, Fdbus_register_service)
6635 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
6636 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
6637 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
6638 (Vdbus_compiled_version, Vdbus_runtime_version)
6639 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
6640 (Vdbus_message_type_method_return, Vdbus_message_type_error)
6641 (Vdbus_message_type_signal): New defvars.
b593d6a9
AH
6642 (Vdbus_registered_buses, Vdbus_registered_objects_table):
6643 Adapt docstring.
dcbf5805 6644
52828e02
PE
66452012-04-22 Paul Eggert <eggert@cs.ucla.edu>
6646
da05bc4c
PE
6647 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
6648 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
6649 Do not assume ptrdiff_t is the same width as 'int'.
6650
52828e02
PE
6651 * alloc.c: Handle unusual debugging option combinations.
6652 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
6653 since the two debugging options are incompatible.
6654 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
6655 is defined.
6656 (mem_init, mem_insert, mem_insert_fixup):
6657 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
6658 (NEED_MEM_INSERT): Remove; no longer needed.
6659
f01769f9
LL
66602012-04-22 Leo Liu <sdl.web@gmail.com>
6661
6662 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
6663
5790543d
PE
66642012-04-22 Paul Eggert <eggert@cs.ucla.edu>
6665
6666 * sysdep.c [__FreeBSD__]: Minor cleanups.
6667 (list_system_processes, system_process_attributes) [__FreeBSD__]:
6668 Use Emacs indenting style more consistently. Avoid some casts.
6669 Use 'double' consistently rather than mixing 'float' and 'double'.
6670
b91b7e4d
EW
66712012-04-21 Eduard Wiebe <usenet@pusto.de>
6672
b593d6a9
AH
6673 * sysdep.c (list_system_processes, system_process_attributes):
6674 Add implementation for FreeBSD (Bug#5243).
b91b7e4d 6675
6114eb15
AS
66762012-04-21 Andreas Schwab <schwab@linux-m68k.org>
6677
6678 * lisp.mk (lisp): Update.
6679
2f38dff7
PE
66802012-04-20 Paul Eggert <eggert@cs.ucla.edu>
6681
6682 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
6683 It is never used otherwise.
6684
4ae29f89
SM
66852012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
6686
6687 * print.c (print_preprocess): Only check print_depth if print-circle
6688 is nil.
6689 (print_object): Check for cycles even when print-circle is nil and
6690 print-gensym is t, but only check print_depth if print-circle is nil.
6691
f30d612a
CY
66922012-04-20 Chong Yidong <cyd@gnu.org>
6693
6694 * process.c (wait_reading_process_output): If EIO occurs on a pty,
6695 set the status to "failed" and ensure that sentinel is run.
6696
c07a4c0b 66972012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
6698
6699 * process.c (Fset_process_inherit_coding_system_flag)
6700 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
4373fd43 6701 (Fmake_network_process, Fmake_serial_process): Doc fix.
016a35df 6702
c07a4c0b 67032012-04-20 Eli Zaretskii <eliz@gnu.org>
20a68157
EZ
6704
6705 * xdisp.c (string_buffer_position_lim): Limit starting position to
6706 BEGV.
6707 (set_cursor_from_row): If called for a mode-line or header-line
6708 row, return zero immediately.
6709 (try_cursor_movement): If inside continuation line, don't back up
4ae29f89
SM
6710 farther than the first row after the header line, if any.
6711 Don't consider the header-line row as "partially visible", even if
20a68157
EZ
6712 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
6713
c07a4c0b 67142012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 6715
4ae29f89
SM
6716 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
6717 (bug#11238).
ad3a2b41 6718
c07a4c0b 67192012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
6c94c34f 67202012-04-18 Paul Eggert <eggert@cs.ucla.edu>
ae6e112d
PE
6721
6722 configure: new option --enable-gcc-warnings (Bug#11207)
6723 * Makefile.in (C_WARNINGS_SWITCH): Remove.
6724 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
6725 (ALL_CFLAGS): Use new macros rather than old.
6726 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
6727 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
6728 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
6729 -Wunused-result, -Wunused-variable. This should go away once
6730 the Emacs and Gnulib regex code is merged.
6731 (xmalloc, xrealloc): Now static.
6732
aba027e8
PE
67332012-04-17 Paul Eggert <eggert@cs.ucla.edu>
6734
6735 * dired.c (Fsystem_groups): Remove unused local.
6736
e5a36063
GM
67372012-04-17 Glenn Morris <rgm@gnu.org>
6738
6739 * dired.c (Fsystem_users): Doc fix.
6740
316411f0
DA
67412012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
6742
6743 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
6744 (syms_of_dired): Add them.
6745
9426aba4
PE
67462012-04-16 Paul Eggert <eggert@cs.ucla.edu>
6747
b62a57be
PE
6748 Fix minor alloc.c problems found by static checking.
6749 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
6750 New extern decls, to avoid calling undeclared functions.
6751 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
6752 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
6753 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
6754 (NEED_MEM_INSERT): New macro.
6755 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
4b5afbb0 6756 Remove one incorrect comment and fix another.
b62a57be 6757
3539f31f
PE
6758 Fix minor ralloc.c problems found by static checking.
6759 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
6760 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
6761 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
6762 (r_alloc_sbrk): Now static.
6763
a041960a
PE
6764 Improve ralloc.c interface checking.
6765 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
6766 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
6767 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
6768 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
6769 [REL_ALLOC]: ... to here, to check interface.
6770 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
6771 Remove decls. This fixes an "It stinks!".
6772
9426aba4
PE
6773 * alloc.c (which_symbols): Fix alignment issue / type clash.
6774
d55c12ed
AS
67752012-04-15 Andreas Schwab <schwab@linux-m68k.org>
6776
6777 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
6778 (struct Lisp_Misc_Any): Likewise.
6779 (struct Lisp_Free): Likewise.
6780 * alloc.c (union aligned_Lisp_Symbol): Define.
6781 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
6782 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
6783 (union aligned_Lisp_Misc): Define.
6784 (MARKER_BLOCK_SIZE, struct marker_block): Use union
6785 aligned_Lisp_Misc instead of union Lisp_Misc.
4ae29f89 6786 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
d55c12ed 6787
b948ce8b
PE
67882012-04-14 Paul Eggert <eggert@cs.ucla.edu>
6789
6790 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
6791 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
6792 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
6793 * s/netbsd.h, s/sol2-6.h:
6794 Remove definition of GC_MARK_STACK, since the default now works.
6795 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
6796 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
6797 no longer the default.
6798 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
6799
35dc09a1 68002012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 6801
35dc09a1
GM
6802 * lread.c (lisp_file_lexically_bound_p):
6803 Fix hang at ";-*-\n" (bug#11238).
ad3a2b41 6804
35dc09a1
GM
68052012-04-14 Eli Zaretskii <eliz@gnu.org>
6806
6807 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
6808 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
6809
68102012-04-14 Jan Djärv <jan.h.d@swipnet.se>
6811
6812 * nsterm.m (constrainFrameRect): Always constrain when there is only
6813 one screen (Bug#10962).
6814
bcd86815
KB
68152012-04-13 Ken Brown <kbrown@cornell.edu>
6816
6817 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
6818
c25df26e
RT
68192012-04-13 Reuben Thomas <rrt@sc3d.org>
6820
6821 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
6822
0fc59f1e
DC
68232012-04-11 Daniel Colascione <dancol@dancol.org>
6824
6825 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
6826 against is gone. It's better to use vfork now so that when Cygwin
6827 gains a new, working vfork, we use it automatically (bug#10398).
6828
de8c03dc
SM
68292012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6830
6831 * window.c (save_window_save): Obey window-point-insertion-type.
6832
2f097256
GM
68332012-04-11 Glenn Morris <rgm@gnu.org>
6834
6835 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
6836
453b951e
SM
68372012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
6838
6839 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
6840
75f1671a 68412012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
6bbef4e5
JC
6842
6843 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
6844 (force_quit_count): New var.
6845 (handle_interrupt): Use it.
6846
2a8ce227
JB
68472012-04-10 Juanma Barranquero <lekktu@gmail.com>
6848
6849 * w32.c (w32_delayed_load): Record the full path of the library
6850 being loaded (bug#10424).
6851
935396c0
GM
68522012-04-09 Glenn Morris <rgm@gnu.org>
6853
05920a43
GM
6854 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
6855 not just in the obarray, before snarfing them. (Bug#11036)
6856
935396c0
GM
6857 * Makefile.in ($(leimdir)/leim-list.el):
6858 Pass EMACS rather than BUILT_EMACS.
6859
a18ecafa
TZ
68602012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
6861
6862 * process.c (make_process):
6863 * process.h: Add integer `gnutls_handshakes_tried' member to
6864 process struct.
6865
6bbef4e5
JC
6866 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
6867 Add convenience `GNUTLS_LOG2i' macro.
a18ecafa
TZ
6868
6869 * gnutls.c (gnutls_log_function2i): Convenience log function.
6870 (emacs_gnutls_read): Use new log functions,
6871 `gnutls_handshakes_tried' process member, and
6872 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
6873 attempts per process (connection).
6874
b4d3bc10
CY
68752012-04-09 Chong Yidong <cyd@gnu.org>
6876
6877 * eval.c (Fuser_variable_p, user_variable_p_eh)
6878 (lisp_indirect_variable): Functions deleted.
6879 (Fdefvar): Caller changed.
6880
6881 * callint.c (Finteractive, Fcall_interactively):
6882 * minibuf.c (Fread_variable): Callers changed.
6883
70f4d973
EZ
68842012-04-09 Eli Zaretskii <eliz@gnu.org>
6885
6886 * xdisp.c (set_cursor_from_row): If the display string appears in
6887 the buffer at position that is closer to point than the position
6888 after the display string, display the cursor on the first glyph of
6889 the display string. Fixes cursor display when a 'display' text
6890 property immediately follows invisible text. (Bug#11094)
6891
cb3c2e3e
PE
68922012-04-09 Paul Eggert <eggert@cs.ucla.edu>
6893
6894 composite.c: use 'double' consistently
6895 * composite.c (get_composition_id): Use 'double' consistently
6896 instead of converting 'float' to 'double' and vice versa; this is
6897 easier to understand and avoids a GCC warning.
6898
fd06db5d
GM
68992012-04-09 Glenn Morris <rgm@gnu.org>
6900
50fe702a
GM
6901 * Makefile.in: Generate leim-list with bootstrap-emacs, in
6902 preparation for dumping it with emacs. (Bug#4789)
6903 (leimdir): New variable.
6904 ($(leimdir)/leim-list.el): New rule.
6905 (emacs$(EXEEXT)): Depend on leim-list.el.
6906
fd06db5d
GM
6907 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
6908 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
6909 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
6910
55c131ee
AS
69112012-04-08 Andreas Schwab <schwab@linux-m68k.org>
6912
6913 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
6914 proper alignment.
6915
9209588f
JB
69162012-04-07 Juanma Barranquero <lekktu@gmail.com>
6917
6918 * xml.c (init_libxml2_functions) [WINDOWSNT]:
6919 Remove unused local variable.
6920
e3fb2efb
PE
69212012-04-07 Paul Eggert <eggert@cs.ucla.edu>
6922
6923 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
6924 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
6925 (mark_memory): Mark Lisp_Objects only if pointers might hide in
6926 objects, as mark_maybe_pointer will catch them otherwise.
6927 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
6928 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
6929
b5385551
PE
69302012-04-07 Paul Eggert <eggert@cs.ucla.edu>
6931
6932 Fix typo that broke non-Windows builds.
6933 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
6934
9078ead6
EZ
69352012-04-07 Eli Zaretskii <eliz@gnu.org>
6936
6937 Support building on MS-Windows with libxml2.
6938
6939 * makefile.w32-in (OBJ2): Add xml.$(O).
6940 (GLOBAL_SOURCES): Add xml.c.
6941 ($(BLD)/xml.$(O)): New dependency list.
6942
6943 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
6944 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
6945 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
6946 [!WINDOWSNT]: New macros.
6947 (init_libxml2_functions, libxml2_loaded_p): New functions.
6948 (parse_region): Call fn_xmlCheckVersion instead of using the macro
6949 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
6950 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
6951 Calls xmlCleanupParser only if libxml2 was loaded (or statically
6952 linked in).
6bbef4e5
JC
6953 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
6954 Call init_libxml2_functions before calling libxml2 functions.
9078ead6
EZ
6955 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
6956
6957 * emacs.c: Don't include libxml/parser.h.
6958 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
6959 xmlCleanupParser directly.
6960
6961 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
6962
3811fdf3
EZ
69632012-04-07 Eli Zaretskii <eliz@gnu.org>
6964
6965 * indent.c (Fvertical_motion): If there is a display string at
6966 point, use it.vpos to compute how many lines to backtrack after
6967 move_it_to point. (Bug#11133)
6968
2f8e16b2
EZ
69692012-04-06 Eli Zaretskii <eliz@gnu.org>
6970
6971 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
6972 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
6973 about subtle differences between FETCH_CHAR* and STRING_CHAR*
6974 macros related to unification of CJK characters. For the details,
6975 see the discussion following the message here:
6976 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
6977
3d439cd1
CY
69782012-04-04 Chong Yidong <cyd@gnu.org>
6979
6980 * keyboard.c (Vdelayed_warnings_list): Doc fix.
6981
8bc53d00
EZ
69822012-04-01 Eli Zaretskii <eliz@gnu.org>
6983
6984 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
6985 instead of alloca. (Bug#11138)
6986
3b0512a3
AS
69872012-04-01 Andreas Schwab <schwab@linux-m68k.org>
6988
6989 * w32menu.c (is_simple_dialog): Properly check lisp types.
6990 (Bug#11141)
6991
8427ddd2
EZ
69922012-03-31 Eli Zaretskii <eliz@gnu.org>
6993
979022ef
EZ
6994 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
6995 position we get to after a call to move_it_to fails the
6996 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
6997 only if we wind up in a string from display property. (Bug#11063)
6998
a6b1c7cc
EZ
6999 * window.c (Fdelete_other_windows_internal): Invalidate the row
7000 and column information about mouse highlight, so that redisplay
7001 restores it after reallocating the glyph matrices. (Bug#7464)
7002
8427ddd2
EZ
7003 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
7004 string comes from a `display' text property, use the buffer
7005 position of that property as if we actually saw that position in
7006 the row's glyphs.
697ba24b
EZ
7007 (move_it_by_lines): Remove the assertion that
7008 "it->current_x == 0 && it->hpos == 0" which can be legitimately
7009 violated when there's a before-string at the beginning of a line.
7010 (Bug#11063)
8427ddd2 7011
65a0a738
EZ
70122012-03-30 Eli Zaretskii <eliz@gnu.org>
7013
7014 * xdisp.c (append_space_for_newline): If the default face was
7015 remapped, use the remapped face for the appended newline.
7016 (extend_face_to_end_of_line): Use the remapped default face for
7017 extending the face to the end of the line.
7018 (display_line): Call extend_face_to_end_of_line when the default
7019 face was remapped. (Bug#11068)
7020
581355cc
EZ
70212012-03-29 Eli Zaretskii <eliz@gnu.org>
7022
7023 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
7024
e8fc049f
SM
70252012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
7026
7027 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
7028
4fb9a543
GM
70292012-03-27 Glenn Morris <rgm@gnu.org>
7030
7031 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
7032 Doc fixes.
7033
679910f1
KH
70342012-03-26 Kenichi Handa <handa@m17n.org>
7035
7036 * dispextern.h (struct glyph): Fix previous change. Change the
7037 bit length of glyphless.ch to 25 (Bug#11082).
7038
90d49b7f
CY
70392012-03-26 Chong Yidong <cyd@gnu.org>
7040
7041 * keyboard.c (Vselection_inhibit_update_commands): New variable.
7042 (command_loop_1): Use it; inhibit selection update for
7043 handle-select-window too (Bug#8996).
7044
f514f6f0
FP
70452012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
7046
e8fc049f 7047 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
f514f6f0 7048
bf43fa51
KH
70492012-03-25 Kenichi Handa <handa@m17n.org>
7050
7051 * dispextern.h (struct glyph): Change the bit length of
7052 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
7053
8a0c01dd
EZ
70542012-03-24 Eli Zaretskii <eliz@gnu.org>
7055
7056 * s/ms-w32.h (tzname): Include time.h before redirecting to
7057 _tzname. Fixes the MSVC build. (Bug#9960)
7058
7d1c3a76
AS
70592012-03-24 Andreas Schwab <schwab@linux-m68k.org>
7060
8ed79523
AS
7061 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
7062 characters.
7063
7d1c3a76
AS
7064 * xterm.c (XTread_socket): Only modify handling_signal if
7065 !SYNC_INPUT. (Bug#11080)
7066
e99a9b8b
EZ
70672012-03-23 Eli Zaretskii <eliz@gnu.org>
7068
7069 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
7070 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
7071 when fetching a multibyte character consumes more bytes than
7072 CHAR_BYTES returns, due to unification of CJK characters in
7073 string_char. (Bug#11073)
7074
5063c0e1
TN
70752012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
7076
7077 * process.c (wait_reading_process_output): Handle pty disconnect
7078 by refraining from sending oneself a SIGCHLD (bug#10933).
7079
9f851fbd
CY
70802012-03-22 Chong Yidong <cyd@gnu.org>
7081
7082 * dispextern.h (struct it): New member string_from_prefix_prop_p.
7083
5063c0e1 7084 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9f851fbd
CY
7085 Mark string as coming from a prefix property.
7086 (handle_face_prop): Use default face for prefix strings (Bug#4281).
7087 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
7088
fb5b8aca
CY
70892012-03-21 Chong Yidong <cyd@gnu.org>
7090
7091 * xfaces.c (Vface_remapping_alist): Doc fix.
7092
62356a1b
EZ
70932012-03-20 Eli Zaretskii <eliz@gnu.org>
7094
7095 * w32proc.c (Fw32_set_console_codepage)
5063c0e1
TN
7096 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
7097 Doc fixes.
62356a1b 7098
025de85b
CY
70992012-03-20 Chong Yidong <cyd@gnu.org>
7100
7101 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
7102 to reflect default non-nil value of redisplay-dont-pause.
7103
4827f94e
KH
71042012-03-19 Kenichi Handa <handa@m17n.org>
7105
7106 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
7107 it fit in a valid range (Bug#11003).
7108
e50a24a2
EZ
71092012-03-18 Eli Zaretskii <eliz@gnu.org>
7110
7111 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
7112 that is not from display property, accept the row as a "cursor
7113 row" if one of the string's character has a non-nil `cursor'
7114 property. Fixes cursor positioning when there are newlines in
7115 overlay strings, e.g. in icomplete.el. (Bug#11035)
7116
9af5ed87
PE
71172012-03-12 Paul Eggert <eggert@cs.ucla.edu>
7118
7119 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
7120
d1f55f16
CY
71212012-03-12 Chong Yidong <cyd@gnu.org>
7122
7123 * eval.c (inhibit_lisp_code): Rename from
7124 inhibit_window_configuration_change_hook; move from window.c.
7125
7126 * xfns.c (unwind_create_frame_1, Fx_create_frame):
7127 * window.c (run_window_configuration_change_hook)
7128 (syms_of_window): Callers changed.
7129
66c5eebd
CY
71302012-03-11 Chong Yidong <cyd@gnu.org>
7131
413df973
CY
7132 * keymap.c (Fkey_description): Doc fix (Bug#9700).
7133
66c5eebd
CY
7134 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
7135
1de11f56
CY
71362012-03-10 Chong Yidong <cyd@gnu.org>
7137
7138 * frame.c (other_visible_frames): Don't assume the selected frame
7139 is visible (Bug#10955).
7140
cae07000
SM
71412012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
7142
7143 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
7144
89c94350
JD
71452012-03-08 Jan Djärv <jan.h.d@swipnet.se>
7146
7147 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
7148 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
7149 zero (Bug#10954).
7150
999dd333
GM
71512012-03-03 Glenn Morris <rgm@gnu.org>
7152
01a6dcc8 7153 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
999dd333 7154
de0100f2
EZ
71552012-03-02 Eli Zaretskii <eliz@gnu.org>
7156
7157 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
7158 position past the first glyph_row that ends at ZV. (Bug#10902)
b8456c5c
EZ
7159 (redisplay_window, next_element_from_string): Fix typos in
7160 comments.
3e441275
EZ
7161 (redisplay_window): Pass to move_it_vertically the margin in
7162 pixels, not in screen lines.
de0100f2 7163
96a72ee9
GM
71642012-03-02 Glenn Morris <rgm@gnu.org>
7165
7166 * buffer.c (buffer-list-update-hook): Doc fix.
7167
312508d7
EZ
71682012-02-29 Eli Zaretskii <eliz@gnu.org>
7169
7170 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
7171 push_it before setting up the iterator for the first overlay
7172 string, even if we have an empty string loaded.
7173 (next_overlay_string): If there's an empty string on the iterator
7174 stack, pop the stack. (Bug#10903)
7175
27f3c637
PE
71762012-02-25 Paul Eggert <eggert@cs.ucla.edu>
7177
7178 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
7179 Suggested by Stefan Monnier in
7180 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
7181 * alloc.c (widen_to_Lisp_Object): New static function.
7182 (mark_memory): Also mark Lisp_Objects by fetching pointer words
7183 and widening them to Lisp_Objects. This would work even if
7184 USE_LSB_TAG is defined and wide integers are used, which might
7185 happen in a future version of Emacs.
7186
3c9dfce6
CY
71872012-02-25 Chong Yidong <cyd@gnu.org>
7188
fa74b241
CY
7189 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
7190 Doc fix.
7191
3c9dfce6
CY
7192 * xselect.c (Fx_selection_exists_p): Doc fix.
7193 (x_clipboard_manager_save_all): Print an informative message
7194 before saving to clipboard manager.
7195
9486df08
CY
71962012-02-24 Chong Yidong <cyd@gnu.org>
7197
7198 * keyboard.c (process_special_events): Handle all X selection
7199 requests in kbd_buffer, not just the next one (Bug#8869).
7200
f01d3321
CY
72012012-02-23 Chong Yidong <cyd@gnu.org>
7202
7203 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
7204 call when setting menu-bar-lines and tool-bar-lines parameters.
7205 (unwind_create_frame_1): New helper function.
7206
7207 * window.c (inhibit_window_configuration_change_hook): New var.
7208 (run_window_configuration_change_hook): Obey it.
b2e4ca7d 7209 (syms_of_window): Initialize it.
f01d3321 7210
86b847b6
CY
72112012-02-22 Chong Yidong <cyd@gnu.org>
7212
7213 * xterm.c (x_draw_image_relief): Add missing type check for
7214 Vtool_bar_button_margin (Bug#10743).
7215
a59225b1
CY
72162012-02-21 Chong Yidong <cyd@gnu.org>
7217
7218 * fileio.c (Vfile_name_handler_alist): Doc fix.
7219
7220 * buffer.c (Fget_file_buffer): Protect against invalid file
7221 handler return value.
7222
310f5bd4
PE
72232012-02-20 Paul Eggert <eggert@cs.ucla.edu>
7224
cb3a28cc
PE
7225 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
7226 when computing $valmask.
7227
310f5bd4
PE
7228 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
7229 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
7230 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
7231 It's useless in that case, and it can cause problems on hosts
7232 that allocate halves of EMACS_INT values separately.
7233 Reported by Dan Horák. Diagnosed by Andreas Schwab in
7234 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
7235 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
7236 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
7237 it avoids undefined behavior on hosts where shifting right by more
7238 than the word width has undefined behavior.
7239
2375c96a
CY
72402012-02-19 Chong Yidong <cyd@gnu.org>
7241
7242 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
7243 (Funhandled_file_name_directory, Ffile_name_as_directory)
7244 (Fdirectory_file_name, Fexpand_file_name)
7245 (Fsubstitute_in_file_name): Protect against invalid file handler
7246 return values (Bug#10845).
7247
3eb49e71
EZ
72482012-02-18 Eli Zaretskii <eliz@gnu.org>
7249
7250 * .gdbinit (pitx): Fix incorrect references to fields of the
7251 iterator stack.
7252
7b926f3f
CY
72532012-02-17 Chong Yidong <cyd@gnu.org>
7254
7255 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
7256
11273115
PE
72572012-02-15 Paul Eggert <eggert@cs.ucla.edu>
7258
7259 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
7260 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
7261
c3a70e2b
CY
72622012-02-15 Chong Yidong <cyd@gnu.org>
7263
7264 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
7265 marked as special. Also, starting docstrings with * is obsolete.
7266
0ca43699
AS
72672012-02-13 Andreas Schwab <schwab@linux-m68k.org>
7268
7269 * gnutls.c (emacs_gnutls_write): Fix last change.
7270
2e8f3c56
LI
72712012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
7272
7273 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
7274 send_process.
7275
af70074f
SM
72762012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
7277
7278 * keymap.c (Fsingle_key_description): Handle char ranges.
7279
95986d52
CY
72802012-02-12 Chong Yidong <cyd@gnu.org>
7281
afd83bd1
CY
7282 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
7283 as that creates a dangerous corner case.
7284
95986d52
CY
7285 * window.c (Fdelete_window_internal): Invalidate the mouse
7286 highlight (Bug#9904).
7287
bd7da63e
GM
72882012-02-12 Glenn Morris <rgm@gnu.org>
7289
7290 * xselect.c (Fx_own_selection_internal)
7291 (Fx_get_selection_internal, Fx_disown_selection_internal)
7292 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
7293 * nsselect.m (Fx_own_selection_internal)
7294 (Fx_disown_selection_internal, Fx_selection_exists_p)
7295 (Fx_selection_owner_p, Fx_get_selection_internal):
7296 Sync docs and argument specs with the xselect.c versions.
7297
77abcbc2
LI
72982012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
7299
7300 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
7301
90b671e2
EZ
73022012-02-11 Eli Zaretskii <eliz@gnu.org>
7303
1c0ca0b7
EZ
7304 * w32select.c (Fx_selection_exists_p): Sync doc string and
7305 argument list with xselect.c. (Bug#10783)
7306
7307 * w16select.c (Fx_selection_exists_p): Sync doc string and
7308 argument list with xselect.c. (Bug#10783)
90b671e2 7309
49241268
GM
73102012-02-10 Glenn Morris <rgm@gnu.org>
7311
7312 * fns.c (Fsecure_hash): Doc fix.
7313
f998bbe7 73142012-02-09 Kenichi Handa <handa@m17n.org>
5c1ca13d
KH
7315
7316 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
7317
0992bd9c
CY
73182012-02-07 Chong Yidong <cyd@gnu.org>
7319
7320 * buffer.c (Fbuffer_local_variables)
7321 (buffer_lisp_local_variables): Handle unbound vars correctly;
7322 don't let Qunbound leak into Lisp.
7323
af008560
GM
73242012-02-07 Glenn Morris <rgm@gnu.org>
7325
dd605cc4
GM
7326 * image.c (Fimagemagick_types): Doc fix.
7327
af008560
GM
7328 * image.c (imagemagick-render-type): Change it from a lisp object
7329 to an integer. Move the doc here from the lisp manual.
7330 Treat all values not equal to 0 the same.
7331
1449fa1d
CY
73322012-02-06 Chong Yidong <cyd@gnu.org>
7333
7334 * doc.c (store_function_docstring): Avoid applying docstring of
7335 alias to base function (Bug#2603).
7336
3723ec07
AS
73372012-02-04 Andreas Schwab <schwab@linux-m68k.org>
7338
7339 * .gdbinit (pp1, pv1): Remove redundant defines.
7340 (pr): Use pp.
7341
79c1cc1e
CY
73422012-02-04 Chong Yidong <cyd@gnu.org>
7343
7344 * nsterm.m: Declare a global (Bug#10694).
7345
d7f29f8e
EZ
73462012-02-04 Eli Zaretskii <eliz@gnu.org>
7347
cae07000
SM
7348 * w32.c (get_emacs_configuration_options):
7349 Include --enable-checking, if specified, in the return value.
d7f29f8e 7350
3b95a6f9
MR
73512012-02-04 Martin Rudalics <rudalics@gmx.at>
7352
7353 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
7354 after rounding frame sizes. (Bug#9723)
7355
d6fa96a6
EZ
73562012-02-04 Eli Zaretskii <eliz@gnu.org>
7357
7358 * keyboard.c (adjust_point_for_property): Don't position point
7359 before BEGV. (Bug#10696)
7360
df0b2940
PE
73612012-02-03 Paul Eggert <eggert@cs.ucla.edu>
7362
7363 Handle overflow when computing char display width (Bug#9496).
7364 * character.c (char_width): Return EMACS_INT, not int.
7365 (char_width, c_string_width): Check for overflow when
7366 computing the width; this is possible now that individual
7367 characters can have unbounded width. Problem introduced
7368 by merge from Emacs 23 on 2012-01-19.
7369
6bee44d6
MA
73702012-02-02 Michael Albinus <michael.albinus@gmx.de>
7371
7372 * dbusbind.c (Fdbus_register_method): Mention the return value
7373 :ignore in the docstring.
7374
44f92739
GM
73752012-02-02 Glenn Morris <rgm@gnu.org>
7376
1b9f60cc
GM
7377 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
7378
44f92739
GM
7379 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
7380 Unconditionally set to t. (Bug#10673)
7381 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
7382 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
7383 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
7384
c5d3843c
KH
73852012-02-02 Kenichi Handa <handa@m17n.org>
7386
7387 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
7388 0, do not call append_composite_glyph.
7389
159462d4 73902012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
7391
7392 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
7393 NULL (Bug#6988).
7394 (x_produce_glyphs): If the component of a composition is a null
7395 string, set it->pixel_width to 1 to avoid zero-width glyph.
7396
78cef877
EZ
73972012-02-01 Eli Zaretskii <eliz@gnu.org>
7398
7399 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
7400 first 2 arguments are identical. This makes inserting large
7401 output from a subprocess an order of magnitude faster on
7402 MS-Windows, where all sbrk'ed memory is always contiguous.
7403
97897668
GM
74042012-01-31 Glenn Morris <rgm@gnu.org>
7405
7406 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
c78c6e0b 7407 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
97897668
GM
7408 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
7409
31fd3586
GM
74102012-01-29 Glenn Morris <rgm@gnu.org>
7411
7412 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
7413
0e24a8b2
CY
74142012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
7415
7416 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
7417
cc0adcb0
CY
74182012-01-28 Chong Yidong <cyd@gnu.org>
7419
7420 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
7421
acc28cb9
CY
74222012-01-26 Chong Yidong <cyd@gnu.org>
7423
9c69cfb7
CY
7424 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
7425
acc28cb9
CY
7426 * search.c (Fsearch_forward, Fsearch_backward): Document negative
7427 repeat counts (Bug#10507).
7428
48da7392
GM
74292012-01-26 Glenn Morris <rgm@gnu.org>
7430
7431 * lread.c (syms_of_lread): Doc fix.
7432
14af5f7f
CY
74332012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
7434
7435 * coding.c (encode_designation_at_bol): Change return value to
7436 EMACS_INT.
7437
0b21c100
CY
74382012-01-25 Chong Yidong <cyd@gnu.org>
7439
7440 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
7441
3c2907f7
CY
74422012-01-21 Chong Yidong <cyd@gnu.org>
7443
7444 * floatfns.c (Fcopysign): Make the second argument non-optional,
7445 since nil is not allowed anyway.
7446
959ad23f
AS
74472012-01-21 Andreas Schwab <schwab@linux-m68k.org>
7448
7449 * process.c (read_process_output): Use p instead of XPROCESS (proc).
7450 (send_process): Likewise.
7451
34a02f46
MR
74522012-01-19 Martin Rudalics <rudalics@gmx.at>
7453
7454 * window.c (save_window_save, Fcurrent_window_configuration)
cae07000
SM
7455 (Vwindow_persistent_parameters): Do not use Qstate.
7456 Rewrite doc-strings.
34a02f46 7457
1259009a 74582012-01-19 Kenichi Handa <handa@m17n.org>
25ed9e61
KH
7459
7460 * character.c (char_width): New function.
70d4fdf6
GM
7461 (Fchar_width, c_string_width, lisp_string_width):
7462 Use char_width (Bug#9496).
25ed9e61 7463
6a6ee00d
MR
74642012-01-16 Martin Rudalics <rudalics@gmx.at>
7465
7466 * window.c (Vwindow_persistent_parameters): New variable.
7467 (Fset_window_configuration, save_window_save): Handle persistent
7468 window parameters.
7469
c85efaf7
EZ
74702012-01-14 Eli Zaretskii <eliz@gnu.org>
7471
7472 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
7473 thrashing the stack of the thread. (Bug#9087)
7474
5944709e
PE
74752012-01-12 Paul Eggert <eggert@cs.ucla.edu>
7476
7477 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
7478
e71f5d99
EZ
74792012-01-11 Eli Zaretskii <eliz@gnu.org>
7480
7481 * xdisp.c (rows_from_pos_range): Handle the case where the
7482 highlight ends on a newline. (Bug#10464)
7483 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
7484 he end column for display of highlight that ends on a newline
7485 before a R2L line.
7486
ce316182
GM
74872012-01-11 Glenn Morris <rgm@gnu.org>
7488
7489 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
7490 from load-path also when installation-directory is nil. (Bug#10208)
7491
5b43da69
GM
74922012-01-10 Glenn Morris <rgm@gnu.org>
7493
74cc8ff9
GM
7494 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
7495
7d8d6e4e
GM
7496 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
7497 Update template values to be closer to their typical values these days.
5b43da69 7498
a0db8d43
EZ
74992012-01-09 Eli Zaretskii <eliz@gnu.org>
7500
7501 * xdisp.c (rows_from_pos_range): Accept additional argument
7502 DISP_STRING, and accept any glyph in a row whose object is that
7503 string as eligible for mouse highlight. Fixes mouse highlight of
7504 display strings from overlays. (Bug#10464)
7505
9a0115ab 75062012-01-07 Paul Eggert <eggert@cs.ucla.edu>
09450bae 7507
b9110d6a 7508 emacs: fix an auto-save permissions race condition (Bug#10400)
09450bae
PE
7509 * fileio.c (auto_saving_dir_umask): New static var.
7510 (Fmake_directory_internal): Use it.
7511 (do_auto_save_make_dir): Set it, instead of invoking chmod after
7512 creating the directory. The old code temporarily assigns
7513 too-generous permissions to the directory.
7514 (do_auto_save_eh): Clear it.
b9110d6a 7515 (Fdo_auto_save): Catch all errors, not just file errors, so
09450bae
PE
7516 that the var is always cleared.
7517
6c1bd3f3
EZ
75182012-01-07 Eli Zaretskii <eliz@gnu.org>
7519
7520 * search.c (scan_buffer): Pass character positions to
7521 know_region_cache, not byte positions. (Bug#6540)
7522
069d2b50
L
75232012-01-07 LynX <_LynX@bk.ru> (tiny change)
7524
7525 * w32.c (sys_rename): Report EXDEV when rename of a directory
7526 fails because the target is on another logical disk. (Bug#10284)
7527
75bf0d33
DB
75282012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
7529
7530 * xterm.c (x_embed_request_focus): New function.
7531
7532 * xterm.h: Add prototype.
7533
7534 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
7535
1c6e5a32
GM
75362012-01-05 Glenn Morris <rgm@gnu.org>
7537
7538 * emacs.c (emacs_copyright): Update short copyright year to 2012.
7539
651e947e
EZ
75402012-01-01 Eli Zaretskii <eliz@gnu.org>
7541
7542 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
7543 Load gnutls_transport_set_lowat only if GnuTLS version is below
7544 2.11.1.
7545 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
7546 GnuTLS versions below 2.11.1.
7547
3778cdd8
AL
75482011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
7549
7550 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
7551 to the doc string advising against its use for altering the way
7552 windows are scrolled.
7553
0e5317f7
KH
75542011-12-28 Kenichi Handa <handa@m17n.org>
7555
7556 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
7557 coding-system ASCII compatible only when it does not produce BOM
7558 on encoding (Bug#10383).
7559
93d5ca1f
JD
75602011-12-26 Jan Djärv <jan.h.d@swipnet.se>
7561
7562 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
7563 can scroll.
7564 (create_and_show_popup_menu): Always use menu_position_func for
7565 Gtk3 (Bug#10361).
7566
ca22b785
AS
75672011-12-24 Andreas Schwab <schwab@linux-m68k.org>
7568
7569 * callint.c (Fcall_interactively): Don't truncate prompt string.
7570
d048e1e6
EZ
75712011-12-23 Eli Zaretskii <eliz@gnu.org>
7572
7573 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
7574 property that ends at ZV, so that the bidi iteration could be
3ba1a2ad 7575 resumed from there (after widening). (Bug#10360)
d048e1e6 7576
5ccaba1f
JD
75772011-12-22 Jan Djärv <jan.h.d@swipnet.se>
7578
7579 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
7580
204ee57f
JD
75812011-12-21 Jan Djärv <jan.h.d@swipnet.se>
7582
b81d40f0
JB
7583 * nsterm.m (x_free_frame_resources):
7584 Release f->output_data.ns->miniimage.
204ee57f
JD
7585 (ns_index_color): Fix indentation. Do not retain
7586 color_table->colors[i].
7587
7588 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
7589 before returning.
7590
7591 * nsfns.m (x_set_background_color): Assign return value from
7592 ns_index_color to face-background instead of NSColor*.
7593 (ns_implicitly_set_icon_type): Fix indentation.
7594 Change assignment in for loop to comparison.
7595
7596 * emacs.c (ns_pool): New variable.
7597 (main): Assign ns_pool.
7598 (Fkill_emacs): Call ns_release_autorelease_pool.
7599
7600 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
7601 autorelease fdesc, release fdAttrs and tdict.
7602 (ns_get_covering_families): Release charset.
7603 (ns_findfonts): Release NSFontDescriptor created with new.
7604 (ns_uni_to_glyphs): Fix indentation.
7605 (setString): Release attrStr before assigning new value.
7606
c803b2b7
JD
76072011-12-18 Jan Djärv <jan.h.d@swipnet.se>
7608
678f4426
JD
7609 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
7610 and NS_IMPL_COCOA.
7611 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
7612 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
7613
cd394be1 76142011-12-18 David Reitter <reitter@cmu.edu>
678f4426 7615
5fecd5fc
JD
7616 * nsterm.m (ns_term_init): Subscribe for notifications
7617 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
7618 to method trackingNotification in EmacsMenu.
7619
7620 * nsmenu.m (trackingMenu): New variable.
3771cb17 7621 (trackingNotification): New method (from Aquamacs).
5fecd5fc 7622 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
3771cb17 7623 from Aquamacs (Bug#7030).
678f4426
JD
7624
76252011-12-18 Jan Djärv <jan.h.d@swipnet.se>
5fecd5fc 7626
c803b2b7
JD
7627 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
7628 (symbol_to_nsstring): Fix indentation.
7629 (ns_symbol_to_pb): New function.
cae07000
SM
7630 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
7631 (Fns_rotate_cut_buffers_internal): Remove.
7632 (Fns_store_selection_internal): Rename from
c803b2b7
JD
7633 Fns_store_cut_buffer_internal.
7634 (ns_get_foreign_selection, Fx_own_selection_internal)
7635 (Fx_disown_selection_internal, Fx_selection_exists_p)
b81d40f0
JB
7636 (Fns_get_selection_internal, Fns_store_selection_internal):
7637 Use ns_symbol_to_pb and check if return value is nil.
7638 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
7639 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
c803b2b7
JD
7640 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
7641 renamed to Sns_store_selection_internal.
7642 (ns_handle_selection_request): Move code to Fx_own_selection_internal
7643 and remove this function.
7644 (ns_handle_selection_clear): Remove, never used.
7645 (Fx_own_selection_internal): Move code from ns_handle_selection_request
7646 here.
7647
e1b01a3a
KB
76482011-12-17 Ken Brown <kbrown@cornell.edu>
7649
7650 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
7651 GID is unknown (Bug#10257).
7652
2adb6e85
PE
76532011-12-17 Paul Eggert <eggert@cs.ucla.edu>
7654
7655 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
7656 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
7657 which caused a build failure on GNU/Linux IA-64. This problem was
7658 introduced by my 2011-10-07 patch.
7659
d1d7b339
JL
76602011-12-15 Juri Linkov <juri@jurta.org>
7661
7662 * image.c (imagemagick_error): New function. (Bug#10112)
7663 (imagemagick_load_image): Comment out `MagickSetResolution' call.
7664 Use `imagemagick_error' where ImageMagick functions return
7665 `MagickFalse'.
7666 (Fimagemagick_types): Add `Fnreverse' to return the list in the
7667 proper order.
7668
100d5755
KH
76692011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7670
7671 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
7672 fill background (Bug#8992).
7673
454592a6
MR
76742011-12-13 Martin Rudalics <rudalics@gmx.at>
7675
7676 * window.c (Vwindow_combination_resize)
7677 (Vwindow_combination_limit): Use t instead of non-nil in
7678 doc-strings.
61d4b438
MR
7679 (Vrecenter_redisplay): Add first sentence of doc-string on
7680 separate line.
53524d93 7681 (Frecenter): Fix doc-string typo.
454592a6 7682
3633e3aa
KH
76832011-12-11 Kenichi Handa <handa@m17n.org>
7684
7685 * coding.c (Funencodable_char_position): Pay attention to the
7686 buffer text relocation (Bug#9389).
7687
7b9d523a 76882011-12-10 Jan Djärv <jan.h.d@swipnet.se>
61ccba97 7689
7b9d523a
JD
7690 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
7691 gtk_init (Bug#10100).
7692
b73189c6
EZ
76932011-12-10 Eli Zaretskii <eliz@gnu.org>
7694
7695 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
7696 IT->string is nil. (Bug#10263)
7697
f7dfe5d6
JD
76982011-12-10 Jan Djärv <jan.h.d@swipnet.se>
7699
83faebb4
JD
7700 * nsterm.h (x_free_frame_resources): Declare.
7701
f7dfe5d6
JD
7702 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
7703 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
7704
7705 * nsterm.h (ns_get_defaults_value): Declare.
7706
7707 * nsterm.m (ns_default): Call ns_get_defaults_value.
7708
7cd4e72c
EZ
77092011-12-09 Eli Zaretskii <eliz@gnu.org>
7710
7711 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
7712 (Bug#10170)
7713
b34d7317
YM
77142011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7715
7716 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
7717 that where the value of an _OBJC_* symbol points to is in the .bss
7718 section (Bug#10240).
7719
76470ad1
KH
77202011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
7721
7722 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
2fac8180 7723 after the loop to call ccl_driver at least once (Bug#8619).
76470ad1 7724
745fff94
KH
77252011-12-08 Kenichi Handa <handa@m17n.org>
7726
7727 * ftfont.c (get_adstyle_property): Fix previous change
7728 (Bug#10233).
7729
6e44397c
JB
77302011-12-07 Juanma Barranquero <lekktu@gmail.com>
7731
7732 * w32.c (init_environment): If no_site_lisp, remove site-lisp
7733 dirs from the default value of EMACSLOADPATH (bug#10208).
7734
7efa6272
GM
77352011-12-07 Glenn Morris <rgm@gnu.org>
7736
7737 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
7738 installation and source directories as well. (Bug#10208)
7739
f6fc4d87
CY
77402011-12-06 Chong Yidong <cyd@gnu.org>
7741
7742 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
7743
2bf26180
GM
77442011-12-06 Glenn Morris <rgm@gnu.org>
7745
7746 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
7747 as an error, not just -1. (Bug#10217)
7748
3a6ad4f0
CY
77492011-12-05 Chong Yidong <cyd@gnu.org>
7750
7751 * keyboard.c (process_special_events): New function.
7752 (swallow_events, Finput_pending_p): Use it (Bug#10195).
7753
75a3b399
PE
77542011-12-05 Paul Eggert <eggert@cs.ucla.edu>
7755
7756 * coding.c (encode_designation_at_bol): Don't use uninitialized
7757 local variable (Bug#9318).
7758
c3c9e25e
KH
77592011-12-05 Kenichi Handa <handa@m17n.org>
7760
7761 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
7762 return Qnil (Bug#8046, Bug#10193).
7763
5eb05ea3
KH
77642011-12-05 Kenichi Handa <handa@m17n.org>
7765
7766 * coding.c (encode_designation_at_bol): New args charbuf_end and
7767 dst. Return the number of produced bytes. Callers changed.
a79703f5
KH
7768 (coding_set_source): Return how many bytes coding->source was
7769 relocated.
7770 (coding_set_destination): Return how many bytes
7771 coding->destination was relocated.
7772 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
cae07000 7773 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
5eb05ea3
KH
7774
77752011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
7776
7777 * coding.c (CODING_CHAR_CHARSET_P): New macro.
7778 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
7779 macro (Bug#9318).
7780
77812011-12-05 Andreas Schwab <schwab@linux-m68k.org>
7782
7783 The following changes are to fix Bug#9318.
7784
a79703f5 7785 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
5eb05ea3
KH
7786 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
7787 (encode_coding_iso_2022, encode_coding_sjis)
a79703f5 7788 (encode_coding_big5, encode_coding_charset): Use the above macros.
5eb05ea3 7789
7dbda6df
JB
77902011-12-05 Juanma Barranquero <lekktu@gmail.com>
7791
7792 * lisp.h (process_quit_flag): Fix external declaration.
7793
6d5eb5b0
SM
77942011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
7795
7796 Don't macro-inline non-performance-critical code.
7797 * eval.c (process_quit_flag): New function.
7798 * lisp.h (QUIT): Use it.
7799
a0c3fad0
JD
78002011-12-04 Jan Djärv <jan.h.d@swipnet.se>
7801
7802 * nsfns.m (get_geometry_from_preferences): New function.
7803 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
7804
6c07aac2
AS
78052011-12-04 Andreas Schwab <schwab@linux-m68k.org>
7806
7807 * emacs.c (Qkill_emacs): Define.
7808 (syms_of_emacs): Initialize it.
7809 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
7810 Qquit_flag to `kill-emacs' instead.
6d5eb5b0
SM
7811 (quit_throw_to_read_char): Add parameter `from_signal'.
7812 All callers changed. Call Fkill_emacs if requested and safe.
6c07aac2
AS
7813 * lisp.h (QUIT): Call Fkill_emacs if requested.
7814
c052ead4
JD
78152011-12-03 Jan Djärv <jan.h.d@swipnet.se>
7816
7817 * widget.c (update_wm_hints): Return if wmshell is null.
7818 (widget_update_wm_size_hints): New function.
7819
7820 * widget.h (widget_update_wm_size_hints): Declare.
7821
7822 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
7823 widget_update_wm_size_hints (Bug#10104).
7824
9e49252b
EZ
78252011-12-03 Eli Zaretskii <eliz@gnu.org>
7826
7827 * xdisp.c (handle_invisible_prop): If the invisible text ends just
7828 before a newline, prepare the bidi iterator for consuming the
7829 newline, and keep the current paragraph direction. (Bug#10183)
e9a49426 7830 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
9e49252b 7831
02b16839
JL
78322011-12-02 Juri Linkov <juri@jurta.org>
7833
7834 * search.c (Fword_search_regexp): New Lisp function created from
7835 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
7836 (Fword_search_backward, Fword_search_forward)
7837 (Fword_search_backward_lax, Fword_search_forward_lax):
7838 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
7839 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
7840
0068070e
SM
78412011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
7842
7843 * fileio.c (Finsert_file_contents): Move after-change-function call
7844 to before the "handled:" label, since all "goto handled" appear in
7845 cases where the *-change-functions have already been properly called
7846 (bug#10117).
7847
3360a3fc
AS
78482011-12-01 Andreas Schwab <schwab@linux-m68k.org>
7849
7850 * keyboard.c (interrupt_signal): Don't call kill-emacs when
7851 waiting for input. (Bug#10169)
7852
73d6c093
EZ
78532011-11-30 Eli Zaretskii <eliz@gnu.org>
7854
7855 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
7856 verifies glyph row's hash code--we have just reallocated the
7857 glyphs, so their contents can be complete garbage. (Bug#10164)
7858
febe6bea
JB
78592011-11-30 Juanma Barranquero <lekktu@gmail.com>
7860
7861 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
7862
801a4313
EZ
78632011-11-30 Eli Zaretskii <eliz@gnu.org>
7864
7865 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
7866 attributes are tested _before_ calling verify_row_hash, to protect
7867 against GCC re-ordering of the tests. (Bug#10164)
7868
2b56b87e
JD
78692011-11-29 Jan Djärv <jan.h.d@swipnet.se>
7870
7871 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
7872
7873 * xterm.c (handle_one_xevent): Only set async_visible and friends
7874 if net_wm_state_hidden_seen is non-zero (Bug#10002)
7dbda6df 7875 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
2b56b87e
JD
7876 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
7877
dbf31225
PE
78782011-11-28 Paul Eggert <eggert@cs.ucla.edu>
7879
7880 Remove GCPRO-related macros that exist only to avoid shadowing locals.
7881 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
7882 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
7883 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
7884 All uses changed to use GCPRO1 etc.
7885 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
7886 Revert to old implementation (i.e., before 2011-03-11).
7887
1305621b
YM
78882011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7889
7890 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
7891 of scroll runs so as to avoid assigning disabled bogus rows and
7892 unnecessary graphics copy operations.
7893
8c9afb46
EZ
78942011-11-27 Eli Zaretskii <eliz@gnu.org>
7895
7896 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
7897 (snprintf) [_MSC_VER]: Redirect to _snprintf.
7898 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
7899 (malloc, free, realloc, calloc): Redirect to e_* only when
7900 compiling Emacs.
7901
7902 * lisp.h (GCTYPEBITS): Move before first use.
7903 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
7904 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
7905 this macro definition.
7906
7907 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
7908 _MSC_VER.
7909
54e9e3bf
JD
79102011-11-27 Jan Djärv <jan.h.d@swipnet.se>
7911
6d5eb5b0
SM
7912 * gtkutil.c (xg_create_frame_widgets):
7913 Call gtk_window_set_has_resize_grip (FALSE) if that function is
54e9e3bf
JD
7914 present with Gtk+ 2.0.
7915
83aca1cb
PE
79162011-11-26 Paul Eggert <eggert@cs.ucla.edu>
7917
7918 * fileio.c (Finsert_file_contents): Undo previous change; see
7919 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
7920
5b76caa4
PE
79212011-11-26 Paul Eggert <eggert@cs.ucla.edu>
7922
7923 Rename locals to avoid shadowing.
7924 * fileio.c (Finsert_file_contents):
7925 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
7926 * process.c (wait_reading_process_output):
7927 Rename inner 'proc' to 'p' to avoid shadowing.
7928 Indent for consistency with usual Emacs style.
7929
8c535114
EZ
79302011-11-25 Eli Zaretskii <eliz@gnu.org>
7931
7932 * xdisp.c (redisplay_window): If cursor row is not fully visible
7933 after recentering, and scroll-conservatively is set to a large
7934 number, scroll window by a few more lines to make the cursor fully
7935 visible and out of scroll-margin. (Bug#10105)
91b4a718
EZ
7936 (start_display): Don't move to the next line if the display should
7937 start at a newline that is part of a display vector or an overlay
7938 string. (Bug#10119)
8c535114 7939
fa4fdb5c
JL
79402011-11-24 Juri Linkov <juri@jurta.org>
7941
7942 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
7943 after the `MagickPingImage' call. (Bug#10112)
7944
90ec88df
CY
79452011-11-23 Chong Yidong <cyd@gnu.org>
7946
7947 * window.c (Fcoordinates_in_window_p): Accept only live windows.
7948
56e2e794
MR
79492011-11-23 Martin Rudalics <rudalics@gmx.at>
7950
7951 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
7952 making another buffer current. (Bug#10114)
7953
b6e64c41
GM
79542011-11-23 Glenn Morris <rgm@gnu.org>
7955
7956 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
7957
6b21de18
CY
79582011-11-23 Chong Yidong <cyd@gnu.org>
7959
7960 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
7961 using it (Bug#5984).
7962
b12cd789
EZ
79632011-11-22 Eli Zaretskii <eliz@gnu.org>
7964
7965 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
7966 and header-lines, as they don't have one computed for them.
7967 (Bug#10098)
7968
7969 * .gdbinit (prow): Make displayed values more self-explaining.
7970 Add row's hash code.
7971
261b6fd4
LMI
79722011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
7973
7974 * process.c (wait_reading_process_output): Fix asynchrounous
7975 GnuTLS socket handling on some versions of the GnuTLS library.
16c1ad08 7976 (wait_reading_process_output): Add comment and URL.
261b6fd4 7977
e7cfd277
JD
79782011-11-21 Jan Djärv <jan.h.d@swipnet.se>
7979
7980 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
7981
a9b9b7f5
CY
79822011-11-21 Chong Yidong <cyd@gnu.org>
7983
7984 * window.c (Fnext_window, Fprevious_window): Doc fix.
7985
b0d15b4f
SM
79862011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
7987
7988 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
7989
fe7a3057
JB
79902011-11-20 Juanma Barranquero <lekktu@gmail.com>
7991
7992 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
7993
d2999b1a
MR
79942011-11-20 Martin Rudalics <rudalics@gmx.at>
7995
7996 * window.c (Fset_window_combination_limit): Rename argument
7997 STATUS to LIMIT.
7998 (Vwindow_combination_limit): Remove "status" from doc-string.
7999
d5ff9cd0
AS
80002011-11-20 Andreas Schwab <schwab@linux-m68k.org>
8001
8002 * m/ibms390.h: Remove.
8003 * m/ibms390x.h: Don't include "ibms390.h".
8004
a5bb9bd3
SM
80052011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
8006
8007 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
8008 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
8009
cd1181db
JB
80102011-11-20 Juanma Barranquero <lekktu@gmail.com>
8011
8012 * casetab.c (Fset_case_table):
8013 * charset.c (Fcharset_after): Fix typos.
8014
615a3b8d 80152011-11-20 Paul Eggert <eggert@cs.ucla.edu>
6a0bf43d 8016
17e845af
PE
8017 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
8018 Otherwise, valgrind does not work on some platforms.
8019 Problem reported by Andreas Schwab in
6a0bf43d
PE
8020 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
8021 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
8022 is set, removing the need for VIRT_ADDRESS_VARIES.
8023 (PURE_P): Use a more-efficient implementation that needs just one
8024 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
8025 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
8026 to 4 (xorl, subq, cmpq, setbe).
8027 * alloc.c (pure): Always extern now, since that's the
8028 VIRT_ADDR_VARIES behavior.
8029 (PURE_POINTER_P): Use a single comparison, not two, for
8030 consistency with the new puresize.h.
8031 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
8032 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
8033 Remove VIRT_ADDR_VARIES no longer needed.
8034
f8fe6f96
EZ
80352011-11-19 Eli Zaretskii <eliz@gnu.org>
8036
8037 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
8038 (erase_phys_cursor, update_window_cursor, show_mouse_face)
8039 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
8040 behave as if the cursor position were at the window margin.
8041
8042 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
8043 and the cursor position is out of bounds, behave as if the cursor
8044 position were at the window margin. (Bug#10075)
8045
df05a53c
CY
80462011-11-18 Chong Yidong <cyd@gnu.org>
8047
8048 * window.c (Fwindow_combination_limit): Make first argument
8049 non-optional, since it is meaningless for live windows like the
8050 selected window.
61ccba97 8051
2071918e
DA
80522011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
8053
8054 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
8055
b50a28de
SM
80562011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
8057
8058 * intervals.c: Fix grafting over the whole buffer (bug#10071).
8059 (graft_intervals_into_buffer): Simplify.
8060
015137db
EZ
80612011-11-18 Eli Zaretskii <eliz@gnu.org>
8062
8063 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
8064 hash values of the two rows.
8065 (copy_row_except_pointers): Preserve the used[] arrays and the
8066 hash values of the two rows. (Bug#10035)
68c95424 8067 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
015137db
EZ
8068
8069 * xdisp.c (row_hash): New function, body extracted from
8070 compute_line_metrics.
8071 (compute_line_metrics): Call row_hash, instead of computing the
8072 hash code inline.
8073
8074 * dispnew.c (verify_row_hash): Call row_hash for computing the
8075 hash code of a row, instead of duplicating code from xdisp.c.
8076
8077 * dispextern.h (row_hash): Add prototype.
8078
a2addb04
TH
80792011-11-18 Tassilo Horn <tassilo@member.fsf.org>
8080
8081 * frame.c (delete_frame): Don't delete the terminal when the last
8082 X frame is closed if emacs is built with GTK toolkit.
8083
df85d315
JB
80842011-11-17 Juanma Barranquero <lekktu@gmail.com>
8085
8086 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
8087
a0c2d0ae
MR
80882011-11-17 Martin Rudalics <rudalics@gmx.at>
8089
8090 * window.c (Vwindow_splits): Rename to
8091 Vwindow_combination_resize. Suggested by Juri Linkov.
8092 (Fsplit_window_internal): Use Vwindow_combination_resize instead
8093 of Vwindow_splits.
8094
58179cce
JB
80952011-11-16 Juanma Barranquero <lekktu@gmail.com>
8096
7877f373
JB
8097 * nsfns.m (Fns_font_name):
8098 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
58179cce 8099
b6f67890
MR
81002011-11-16 Martin Rudalics <rudalics@gmx.at>
8101
8102 * window.h (window): Rename slot "nest" to "combination_limit".
8103 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
8104 (Fset_window_nest): Rename to Fset_window_combination_limit.
8105 (Vwindow_nest): Rename to Vwindow_combination_limit.
8106 (recombine_windows, make_parent_window, make_window)
8107 (Fsplit_window_internal, saved_window)
8108 (Fset_window_configuration, save_window_save): Rename all
8109 occurrences of window_nest to window_combination_limit.
8110
c7015153
JB
81112011-11-15 Juanma Barranquero <lekktu@gmail.com>
8112
8113 * image.c (imagemagick_load_image): Fix typo.
8114
322ad6ec
EZ
81152011-11-14 Eli Zaretskii <eliz@gnu.org>
8116
8117 * xdisp.c (display_line): Move the call to
8118 highlight_trailing_whitespace before the call to
8119 compute_line_metrics, since the latter needs to see the final
6d5eb5b0
SM
8120 faces of all the glyphs to compute ROW's hash value.
8121 Fixes assertion violations in row_equal_p. (Bug#10035)
322ad6ec 8122
f067b8ec
JB
81232011-11-14 Juanma Barranquero <lekktu@gmail.com>
8124
8125 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
8126 just return (bug#10044).
8127
1e5b2111
EZ
81282011-11-12 Eli Zaretskii <eliz@gnu.org>
8129
7ef3cbd5
EZ
8130 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
8131 with user-defined heap size. Bump the default size of the temacs
8132 heap to 27MB, to avoid memory warning when running temacs.
8133 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
8134
1e5b2111
EZ
8135 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
8136 current_matrix and desired_matrix. (Bug#9990)
7a7270dd
EZ
8137 (verify_row_hash) [XASSERTS]: New function.
8138 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
8139 that the hash value of glyph rows is correct.
1e5b2111 8140
89d61221
MR
81412011-11-12 Martin Rudalics <rudalics@gmx.at>
8142
8143 * window.h (window): Remove splits slot.
8144 * window.c (Fwindow_splits, Fset_window_splits): Remove.
8145 (Fdelete_other_windows_internal, make_parent_window)
8146 (make_window, Fsplit_window_internal, Fdelete_window_internal)
8147 (Fset_window_configuration, save_window_save): Don't deal with
8148 split status of windows.
8149 (saved_window): Remove splits slot.
8150 (Vwindow_splits): Rewrite doc-string.
8151
97f18cc8
JD
81522011-11-11 Jan Djärv <jan.h.d@swipnet.se>
8153
8154 * xfns.c (unwind_create_frame):
8155 * nsfns.m (unwind_create_frame):
8156 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
8157 Vframe_list (Bug#9999).
8158
22a648b4
DA
81592011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
8160
0b381c7e 8161 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
22a648b4 8162
659afede
KH
81632011-11-11 Kenichi Handa <handa@m17n.org>
8164
8165 * callproc.c (Fcall_process): Set the member dst_multibyte of
8166 process_coding.
8167
9ac0394b
KH
81682011-11-11 Johan Bockgård <bojohan@gnu.org>
8169
8170 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
8171 avoid a crash (bug#9496).
8172
2fbdc249
CY
81732011-11-09 Chong Yidong <cyd@gnu.org>
8174
8175 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
8176 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
8177
ac6b1f81
PE
81782011-11-08 Paul Eggert <eggert@cs.ucla.edu>
8179
8180 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
8181
09db192c
PE
81822011-11-08 Paul Eggert <eggert@cs.ucla.edu>
8183
8184 Avoid some portability problems by eschewing 'extern inline' functions.
8185 The trivial performance wins aren't worth the portability hassles; see
8186 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
8187 et seq.
8188 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
8189 (window_box_width, window_box_left, window_box_left_offset)
8190 (window_box_right, window_box_right_offset): Undo previous change,
8191 by removing the "extern"s.
8192 * intervals.c (adjust_intervals_for_insertion)
8193 (adjust_intervals_for_deletion): Undo previous change,
8194 making these static again.
8195 (offset_intervals, temp_set_point_both, temp_set_point)
8196 (copy_intervals_to_string): No longer inline.
8197 * xdisp.c (window_text_bottom_y, window_box_width)
8198 (window_box_height, window_box_left_offset)
8199 (window_box_right_offset, window_box_left, window_box_right)
8200 (window_box): No longer inline.
8201
105216ed
CY
82022011-11-08 Chong Yidong <cyd@gnu.org>
8203
8204 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
6d5eb5b0
SM
8205 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
8206 Signal an error if not a live window.
105216ed
CY
8207 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
8208 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
8209
ae9e237f
JB
82102011-11-07 Juanma Barranquero <lekktu@gmail.com>
8211
8212 * lisp.h (syms_of_abbrev): Remove declaration.
8213 Reported by CHENG Gao <chenggao@royau.me>.
8214
c7aa8333
EZ
82152011-11-07 Eli Zaretskii <eliz@gnu.org>
8216
8217 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
8218 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
8219 of temacs in GUI mode.
8220
be7f5545
MR
82212011-11-07 Martin Rudalics <rudalics@gmx.at>
8222
8223 * window.h: Declare delete_all_child_windows instead of
8224 delete_all_subwindows.
8225 * window.c (Fwindow_nest, Fset_window_nest)
8226 (Fset_window_new_total, Fset_window_new_normal)
8227 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
8228 (delete_all_subwindows): Rename to delete_all_child_windows.
8229 (Fdelete_other_windows_internal, Fset_window_configuration):
8230 Call delete_all_child_windows instead of delete_all_subwindows.
8231 * frame.c (delete_frame): Call delete_all_child_windows instead
8232 of delete_all_subwindows.
8233
ca78dc43
PE
82342011-11-07 Paul Eggert <eggert@cs.ucla.edu>
8235
8236 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
8237 This is also needed for porting to any host where GC_MARK_STACK is
8238 not GC_MAKE_GCPROS_NOOPS.
8239 (which_symbols): Use it.
8240
a0241d01
KH
82412011-11-07 Kenichi Handa <handa@m17n.org>
8242
8243 * coding.c (coding_set_destination): Check coding->src_pos only
8244 when coding->src_object is a buffer (bug#9910).
8245
8246 * process.c (send_process): Set the member src_multibyte of coding
8247 to 0 (bug#9911) when sending a unibyte text.
8248
8249 * callproc.c (Fcall_process): Set the member src_multibyte of
8250 process_coding to 0 (bug#9912).
8251
a64bfdfa 82522011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ba24cea2
YM
8253
8254 * xmenu.c (cleanup_widget_value_tree): New function.
8255 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
8256 calling free_menubar_widget_value_tree directly (Bug#9830).
8257
cb41b32a
PE
82582011-11-06 Paul Eggert <eggert@cs.ucla.edu>
8259
8260 Fix some portability problems with 'inline'.
8261 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
8262 (window_box_width, window_box_left, window_box_left_offset)
8263 (window_box_right, window_box_right_offset): Declare extern.
8264 Otherwise, these inline functions do not conform to C99 and
8265 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
8266 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
8267 * intervals.c (adjust_intervals_for_insertion)
8268 (adjust_intervals_for_deletion): Now extern, because otherwise the
8269 extern inline functions 'offset_intervals' couldn't refer to it.
8270 (static_offset_intervals): Remove.
8271 (offset_intervals): Rewrite using the old contents of
8272 static_offset_intervals. The old version didn't conform to C99
8273 because an extern inline function contained a reference to an
8274 identifier with static linkage.
8275
b7041366
AS
82762011-11-06 Andreas Schwab <schwab@linux-m68k.org>
8277
8278 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
8279 GC.
8280
88a37c4d
EZ
82812011-11-06 Eli Zaretskii <eliz@gnu.org>
8282
8283 * xdisp.c (init_iterator, reseat_to_string): Don't set the
8284 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
8285 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
8286 return Qleft_to_right.
8287
49745b39
CY
82882011-11-06 Chong Yidong <cyd@gnu.org>
8289
8290 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
8291 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
8292 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
8293 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
8294 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
8295 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
8296 (Fwindow_vscroll): Doc fix.
8297 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
8298 argument, since it makes no sense to pass a live window and for
8299 consistency with window-child.
8300
1f05cd82
CS
83012011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
8302
8303 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
8304 support MSVC.
8305
22610910
JR
83062011-11-05 Jason Rumney <jasonr@gnu.org>
8307
8308 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
8309 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
8310 fonts (Bug#6029).
8311 (add_font_entity_to_list): Fix logic errors in mixed boolean and
8312 bitwise arithmetic preventing use of unicode-sip and non-truetype
8313 opentype fonts.
8314
a06776b2
EZ
83152011-11-05 Eli Zaretskii <eliz@gnu.org>
8316
3ad924ba
EZ
8317 * s/ms-w32.h (fstat, stat, utime): Move redirections to
8318 "emacs"-only part.
8319
a06776b2
EZ
8320 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
8321 initialization code to keep similarity to xfns.c after changes
8322 from 2011-11-05.
8323
c9e7db78
JD
83242011-11-05 Jan Djärv <jan.h.d@swipnet.se>
8325
a97f8f3f
JD
8326 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
8327 (unwind_create_frame): New function (Bug#9943).
8328 (Fx_create_frame): Restructure code to be more similar to the one in
8329 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
8330 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
8331 Move terminal->reference_count++ just before making the frame official
8332 (Bug#9943).
8333
8334 * nsterm.m (x_free_frame_resources): New function.
8335 (x_destroy_window): Move code to x_free_frame_resources.
8336
c9e7db78 8337 * xfns.c (unwind_create_frame): Fix comment.
6d5eb5b0
SM
8338 (Fx_create_frame, x_create_tip_frame):
8339 Move terminal->reference_count++ just before making the frame
75f1671a 8340 official. Move initialization of image_cache_refcount and
c9e7db78
JD
8341 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
8342
a6fc3b5c
EZ
83432011-11-05 Eli Zaretskii <eliz@gnu.org>
8344
8345 Support MSVC build with newer versions of Visual Studio.
8346 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
8347 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
8348 nt/gmake.defs.
8349
8350 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
8351 which are not supported by MSVC.
8352 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
8353 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
8354 bitfields.
8355 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
8356 types in bitfields.
8357 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
8358
8359 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
8360
58179cce 83612011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
a6fc3b5c
EZ
8362
8363 Support MSVC build with newer versions of Visual Studio.
8364 * w32.c: Don't include w32api.h for MSVC.
8365 (init_environment) [_MSC_VER]: Call sys_access, not _access.
8366
8367 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
8368 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
8369 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
8370 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
8371 e_* cousins.
8372 (alloca) [_MSC_VER]: Define to _alloca.
8373
8374 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
8375
8376 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
8377
a58c13ed
EZ
83782011-11-04 Eli Zaretskii <eliz@gnu.org>
8379
8380 * xdisp.c (note_mouse_highlight): If either of
8381 previous/next-single-property-change returns nil, treat that as
8382 the beginning or the end of the buffer. (Bug#9955)
8383
fe0b6370
JD
83842011-11-04 Jan Djärv <jan.h.d@swipnet.se>
8385
a58c13ed 8386 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
fe0b6370
JD
8387 label is not null (Bug#9951).
8388 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
8389 may be NULL.
8390
89bd5ee1
EZ
83912011-11-04 Eli Zaretskii <eliz@gnu.org>
8392
8393 * window.c (Fwindow_body_size): Mention in the doc string that the
8394 return value is in frame's canonical units. (Bug#9949)
8395
84c3edb9
EZ
83962011-11-03 Eli Zaretskii <eliz@gnu.org>
8397
4e2fb5c7
EZ
8398 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
8399
84c3edb9 8400 * w32fns.c (unwind_create_frame): If needed, free the glyph
3ab15fd6 8401 matrices of the partially constructed frame. (Bug#9943)
2a58bbc1 8402 * xfns.c (unwind_create_frame): Likewise.
84c3edb9 8403
bc17a887
EZ
84042011-11-01 Eli Zaretskii <eliz@gnu.org>
8405
8406 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
8407 Don't stop backward scan on the continuation glyph, even though
8408 its CHARPOS is positive.
6d5eb5b0
SM
8409 (mouse_face_from_buffer_pos, note_mouse_highlight):
8410 Rename cover_string to disp_string.
bc17a887 8411
4ee88440
MR
84122011-11-01 Martin Rudalics <rudalics@gmx.at>
8413
8414 * window.c (temp_output_buffer_show): Don't use
8415 Vtemp_buffer_show_specifiers.
8416 (Vtemp_buffer_show_specifiers): Remove unused variable.
8417
c2ff3c02
EZ
84182011-10-30 Eli Zaretskii <eliz@gnu.org>
8419
8420 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
8421 past the beginning of the current glyph matrix.
8422
58179cce 84232011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
6e56383b
JD
8424
8425 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
8426 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
8427 HAVE_GTK3 (Bug#9869).
b77a6a7f 8428
3b574623
JD
8429 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
8430 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
8431
b77a6a7f
JD
8432 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
8433
8434 * xterm.c: Declare x_handle_net_wm_state to return int.
8435 (handle_one_xevent): Check if we are iconified but don't have
8436 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
8437 (get_current_wm_state): Return non-zero if not hidden,
8438 check for _NET_WM_STATE_HIDDEN (Bug#9893).
8439 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
8440 (x_handle_net_wm_state): Return what get_current_wm_state returns.
8441 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
8442
196e41e4
PE
84432011-10-29 Paul Eggert <eggert@cs.ucla.edu>
8444
8445 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
8446 so that this new function doesn't get optimized away by a
8447 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
8448
021f2e1a
AS
84492011-10-29 Andreas Schwab <schwab@linux-m68k.org>
8450
8451 * frame.h (MOUSE_HL_INFO): Remove excess parens.
8452
8b058d44
EZ
84532011-10-29 Eli Zaretskii <eliz@gnu.org>
8454
8455 Fix the `xbytecode' command.
8456 * .gdbinit (xprintbytestr): New command.
b50a28de 8457 (xwhichsymbols): Rename from `which'; all callers changed.
8b058d44
EZ
8458 (xbytecode): Print the byte-code string as well.
8459
4452fb80
EZ
84602011-10-29 Kim Storm <storm@cua.dk>
8461
8b058d44
EZ
8462 * alloc.c (which_symbols): New function.
8463
21b72067
AS
84642011-10-29 Andreas Schwab <schwab@linux-m68k.org>
8465
8466 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
8467 line. (Bug#9903)
8468
83ed7b5c
GM
84692011-10-29 Glenn Morris <rgm@gnu.org>
8470
8471 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
8472 Not clear what it was for, and it causes various bugs. (Bug#9839)
8473
5a7a728b
EZ
84742011-10-28 Eli Zaretskii <eliz@gnu.org>
8475
8476 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
8477 possible random value that matches one of those tested as
8478 condition to clear the mouse face.
8479
d3d0842f
CY
84802011-10-28 Chong Yidong <cyd@gnu.org>
8481
8482 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
8483
31b39d13
DN
84842011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
8485
8486 * window.c (make_window): Initialize phys_cursor_on_p.
8487
9aba6043
SM
84882011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
8489
8490 * lisp.h (struct Lisp_Symbol): Update comments.
8491
c20992f4
JB
84922011-10-28 Juanma Barranquero <lekktu@gmail.com>
8493
8494 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
8495
db4f02f2
EZ
84962011-10-28 Eli Zaretskii <eliz@gnu.org>
8497
8498 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
8499 <oslsachem@gmail.com> for helping to debug this.
8500
8501 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
8502 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
8503 (g_b_init_get_glyph_outline_w): New static variables.
8504 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
8505 (GetGlyphOutlineW_Proc): New typedefs.
8506 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
9aba6043
SM
8507 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
8508 New functions.
8509 (w32font_open_internal, compute_metrics):
8510 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
db4f02f2
EZ
8511 instead of calling the "wide" APIs directly.
8512
8513 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
8514
8515 * w32.h (syms_of_w32font): Add prototype.
8516
87e68db4
JB
85172011-10-27 Juanma Barranquero <lekktu@gmail.com>
8518
8519 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
8520 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
8521 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
8522 (Fmove_to_window_line): Doc fix.
8523
435c1d67
CY
85242011-10-27 Chong Yidong <cyd@gnu.org>
8525
8526 * process.c (make_process): Set gnutls_state to NULL.
8527
8528 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
8529 non-NULL, regardless of GNUTLS_INITSTAGE.
8530 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
8531 an error. Set process slots as soon as we allocate them.
8532
8533 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
8534
9c6c6f49
CY
85352011-10-27 Chong Yidong <cyd@gnu.org>
8536
9aba6043
SM
8537 * gnutls.c (emacs_gnutls_deinit): New function.
8538 Deallocate credentials structures as well as calling gnutls_deinit.
9c6c6f49
CY
8539 (Fgnutls_deinit, Fgnutls_boot): Use it.
8540
8541 * process.c (make_process): Initialize GnuTLS credentials to NULL.
8542 (deactivate_process): Call emacs_gnutls_deinit.
8543
657d08d3
JB
85442011-10-27 Juanma Barranquero <lekktu@gmail.com>
8545
8546 * image.c (x_create_x_image_and_pixmap):
8547 * w32.c (sys_rename, w32_delayed_load):
8548 * w32font.c (fill_in_logfont):
8549 * w32reg.c (x_get_string_resource): Silence compiler warnings.
8550
5430d399
JB
85512011-10-26 Juanma Barranquero <lekktu@gmail.com>
8552
8553 * w32fns.c (w32_default_color_map): New function,
8554 extracted from Fw32_default_color_map.
a7ef684b 8555 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
5430d399 8556
fe0055fa
PE
85572011-10-25 Paul Eggert <eggert@cs.ucla.edu>
8558
8559 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
8560
e6346438
SM
85612011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
8562
8563 * keyboard.c (test_undefined): New function (bug#9751).
8564 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
8565
e112cc37
ET
85662011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
8567
8568 * sysdep.c (init_sys_modes): Fix the check for the controlling
8569 terminal (Bug#6649).
8570
7b5d6677
EZ
85712011-10-20 Eli Zaretskii <eliz@gnu.org>
8572
8573 * dispextern.h (struct bidi_it): New member next_en_type.
8574
8575 * bidi.c (bidi_line_init): Initialize the next_en_type member.
8576 (bidi_resolve_explicit_1): When next_en_pos is valid for the
8577 current character, check also for next_en_type being WEAK_EN.
8578 (bidi_resolve_weak): Don't enter the expensive loop if the current
8579 position is before next_en_pos. Record the bidi type of the first
8580 non-ET, non-BN character we find, in addition to its position.
8581 (bidi_level_of_next_char): Invalidate next_en_type when
8582 next_en_pos is over-stepped.
8583
7da0b018
PE
85842011-10-20 Paul Eggert <eggert@cs.ucla.edu>
8585
8586 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
8587 * editfns.c: Rewrite current-time-zone so that it invokes
8588 the equivalent of (format-time-string "%Z") to get the time zone name.
8589 This fixes a bug when the time zone name contains characters that
8590 need converting from the system time locale to Emacs internal format.
8591 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
8592 that patch fixed format-time-string to do the conversion, but
8593 I forgot to fix current-time-zone.
8594 (format_time_string): New function, containing most of
8595 what Fformat_time_string used to contain.
8596 (Fformat_time_string): Rewrite in terms of format_time_string.
8597 This doesn't change this function's behavior.
8598 (current-time-zone): Rewrite to use format_time_string.
8599 This fixes the bug reported by Michael Schierl in
8600 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
8601 Jason Rumney's 2007-06-07 change worked around this bug, but
8602 didn't fix it.
8603 * systime.h (tzname, timezone): Remove no-longer-used declarations.
8604
8547b010
EZ
86052011-10-19 Eli Zaretskii <eliz@gnu.org>
8606
8607 * xdisp.c (start_display): If the character at POS is displayed
8608 via a display vector, reset IT->current.dpvec_index to zero.
12b32963
EZ
8609 (try_window_reusing_current_matrix): If a line ends in a display
8610 vector or the next line starts in a display vector, continue
8611 redrawing the window even though the character position of
8612 start_row was reached.
8547b010
EZ
8613 (Bug#9771, part 2)
8614
4e948d15
CY
86152011-10-18 Chong Yidong <cyd@gnu.org>
8616
8617 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
8618 with nobreak-char-display too.
8619
4787455f
EZ
86202011-10-18 Eli Zaretskii <eliz@gnu.org>
8621
8622 Fix part 3 of bug#9771.
8623 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
8624 (bidi_resolve_neutral): Don't enter the expensive loop looking for
8625 non-neutral characters if the current character is a paragraph
8626 separator (a.k.a. Newline). This avoids running the same
8627 expensive loop twice, once when we consume the preceding newline
8628 and the other time when the line actually needs to be displayed.
8629 Avoid the loop when we see neutrals on the base embedding level
8630 following a character whose directionality is the same as the
8631 paragraph's. This avoids running the expensive loop when a line
8632 ends in a long sequence of neutrals, like control characters.
8633 Add assertion against STRONG_AL type. Slightly rearrange code
8634 that determines the type of a neutral given the first non-neutral
8635 that follows it.
8636 (bidi_level_of_next_char): Set next_en_pos to zero when
8637 invalidating its info.
8638
2c91f553
EZ
86392011-10-17 Eli Zaretskii <eliz@gnu.org>
8640
8641 * xdisp.c (push_display_prop): Determine whether to record string
8642 or buffer position by IT->string, not by IT->method. Allow
8643 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
f2ff9e88
EZ
8644 (move_it_vertically_backward): Don't look for character position
8645 immediately after the newline when in a continuation line.
8646 (Bug#9771, part 1)
2c91f553 8647
c7b08b0d
MR
86482011-10-15 Martin Rudalics <rudalics@gmx.at>
8649
8650 * window.c (coordinates_in_window): Rewrite and delabelize
8651 vertical border check. (Bug#5357) (Bug#9618)
8652
6b02f655
SM
86532011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
8654
8655 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
8656 errors in XSetWindowBorder (bug#9310).
8657
81d40c92
DA
86582011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
8659
8660 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
8661 avoid crash when xmalloc overrun checking is enabled.
8662
d4172c3b
EZ
86632011-10-13 Eli Zaretskii <eliz@gnu.org>
8664
8665 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
8666 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
8667 cursor motion with <left> and <right> arrow keys.
8668
8669 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
8670 some callers set that themselves.
8671
b00eea75
EZ
86722011-10-12 Eli Zaretskii <eliz@gnu.org>
8673
8674 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
8675 display string and the previous row comes from the same string and
8676 is empty. (Bug#9739) (Bug#9738)
8677
8fe012c4
SM
86782011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
8679
8680 * doc.c (get_doc_string): Encode file name (bug#9735).
8681
0074aef2
EZ
86822011-10-12 Eli Zaretskii <eliz@gnu.org>
8683
79beb178
EZ
8684 * bidi.c (bidi_level_of_next_char):
8685 * xdisp.c (get_visually_first_element): Remove old incorrect
8686 comments regarding the Unicode Line Separator character.
8687
0074aef2
EZ
8688 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
8689
6e4b3fbe
DA
86902011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
8691
8692 * alloc.c (Fgc_status): Do not access beyond zombies array
8693 boundary if nzombies > MAX_ZOMBIES.
8694 * alloc.c (dump_zombies): Add missing format specifier.
8695
0324f3af
PE
86962011-10-12 Paul Eggert <eggert@cs.ucla.edu>
8697
b5525cac
PE
8698 * xdisp.c (set_cursor_from_row): Simplify conditionals,
8699 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
8700
0324f3af
PE
8701 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
8702 Some packages use them to denote characters with modifiers.
8703
e9b5f888
AS
87042011-10-11 Andreas Schwab <schwab@linux-m68k.org>
8705
8706 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
8707 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
8708 matching a pp-number. Rename parameter var to var1.
8709
127827c0
SM
87102011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
8711
8712 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
8713
c8fd3bd0
GM
87142011-10-08 Glenn Morris <rgm@gnu.org>
8715
8716 * callint.c (Fcall_interactively): Give a more explicit error for the
8717 'c' case with a non-character input. (Bug#8479)
8718
352ec8ff
EZ
87192011-10-08 Eli Zaretskii <eliz@gnu.org>
8720
03669ccb
EZ
8721 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
8722 lines.
7061c986
EZ
8723 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
8724 lines that are hscrolled on the left.
03669ccb 8725
352ec8ff
EZ
8726 * dispnew.c (buffer_posn_from_coords): Account for a possible
8727 presence of header-line. (Bug#4426)
8728
a66cfb1c
SM
87292011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
8730
6b02f655
SM
8731 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
8732 Don't advertise functionality which we discourage or doesn't work.
a66cfb1c 8733
7c5ee88e
PE
87342011-10-07 Paul Eggert <eggert@cs.ucla.edu>
8735
8736 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
8737 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
8738 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
8739 this makes Emacs dump core during garbage collection on rare
8740 occasions. sizeof is obviously inferior to offsetof here, so
8741 stick with offsetof.
8742 (GC_POINTER_ALIGNMENT): New macro.
8743 (mark_memory): Omit 3rd (offset) arg; caller changed.
8744 Don't assume EMACS_INT alignment is the same as pointer alignment.
8745
df1bbe5b
SM
87462011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
8747
8748 * keyboard.c (read_key_sequence_remapped): New var.
8749 (read_key_sequence): Compute remapping in the right buffer.
8750 (command_loop_1): Use read_key_sequence's remapping directly.
8751
51553db6
SM
87522011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
8753
32c1fffd
SM
8754 * dired.c (file_name_completion): Don't expand file name.
8755 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
8756 before checking file name handler.
8757
51553db6
SM
8758 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
8759 they've been requested explicitly (bug#9591).
8760
b6bd1599 87612011-10-01 Andreas Schwab <schwab@linux-m68k.org>
fa2ec41f
AS
8762
8763 * keymap.c (Fsingle_key_description): Use make_specified_string
8764 instead of build_string to build string from push_key_description.
8765 (Bug#5193)
8766
f701dc2a
PE
87672011-09-30 Paul Eggert <eggert@cs.ucla.edu>
8768
4222c55d
PE
8769 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
8770 This fixes a Y2038 bug on 64-bit hosts.
8771 * buffer.c (reset_buffer):
8772 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
8773 (Fclear_buffer_auto_save_failure):
8774 Use 0, not -1, to represent an unset failure time, since time_t
8775 might not be signed.
8776
f701dc2a
PE
8777 Remove dependency on glibc malloc internals.
8778 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
8779 Move back here from lisp.h, but with their new implementations.
8780 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
8781 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
8782 * charset.c (charset_table_init): New static var.
8783 (syms_of_charset): Use it instead of xmalloc. This removes a
8784 dependency on glibc malloc internals. See Eli Zaretskii's comment in
8785 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
8786 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
8787 Move back to alloc.c.
8788 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
8789 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
8790
9ceebf39
JD
87912011-09-30 Jan Djärv <jan.h.d@swipnet.se>
8792
8793 * nsterm.m (windowDidResize): Call x_set_window_size only when
8794 ns_in_resize is true. Otherwise set pixelwidth/height and
8795 call change_frame_size (Bug#9628).
8796
cb993c58
PE
87972011-09-30 Paul Eggert <eggert@cs.ucla.edu>
8798
3930c88b
PE
8799 Port --enable-checking=all to Fedora 14 x86-64.
8800 * charset.c (syms_of_charset): Also account for glibc malloc's
8801 internal overhead when calculating the initial malloc maximum.
8802
cb993c58
PE
8803 Port --enable-checking=all to Fedora 14 x86.
8804 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
8805 Move to lisp.h.
8806 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
8807 (overrun_check_realloc, overrun_check_free):
8808 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
8809 That way, xmalloc returns a properly-aligned pointer even if
8810 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
8811 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
8812 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
8813 into account when calculating the initial malloc maximum.
8814 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
8815 Move here from alloc.c, so that charset.c can use it too.
8816 Properly align; the old code wasn't right for common 32-bit hosts
8817 when configured with --enable-checking=all.
8818 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
8819 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
8820
31bed486
EZ
88212011-09-29 Eli Zaretskii <eliz@gnu.org>
8822
04c70788 8823 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
31bed486
EZ
8824 use EDOM.
8825
fbcaa2f3
EZ
88262011-09-28 Eli Zaretskii <eliz@gnu.org>
8827
8828 * xdisp.c (compute_display_string_end): If there's no display
8829 string at CHARPOS, return -1.
8830
8831 * bidi.c (bidi_fetch_char): When compute_display_string_end
8832 returns a negative value, treat the character as a normal
8833 character not covered by a display string. (Bug#9624)
8834
a239d4e9
JB
88352011-09-28 Juanma Barranquero <lekktu@gmail.com>
8836
8837 * lread.c (Fread_from_string): Fix typo in docstring.
8838
88652fd5
EZ
88392011-09-27 Eli Zaretskii <eliz@gnu.org>
8840
8841 * xdisp.c (handle_invisible_prop): If invisible text ends on a
8842 newline, reseat the iterator instead of bidi-iterating there one
8843 character at a time. (Bug#9610)
32c1fffd
SM
8844 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
8845 TO_CHARPOS if the bidi iterator is at base embedding level.
88652fd5 8846
ed497dd4
AS
88472011-09-27 Andreas Schwab <schwab@linux-m68k.org>
8848
8849 * lread.c (readevalloop): Use correct code for NBSP.
8850 (read1): Likewise. (Bug#9608)
8851
b2bf61aa
MA
88522011-09-25 Michael Albinus <michael.albinus@gmx.de>
8853
8854 * dbusbind.c (Fdbus_register_signal): When service is not
8855 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
8856
32bbb17c
GM
88572011-09-25 Glenn Morris <rgm@gnu.org>
8858
8859 * buffer.c (truncate-lines): Doc fix.
8860
94e0933e
CY
88612011-09-24 Chong Yidong <cyd@stupidchicken.com>
8862
8863 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
8864 (Fset_window_next_buffers): Doc fix.
8865
cddde921
GM
88662011-09-24 Glenn Morris <rgm@gnu.org>
8867
8868 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
8869
1260aef1
PE
88702011-09-24 Paul Eggert <eggert@cs.ucla.edu>
8871
25b4bfa0
PE
8872 Fix minor problems found by static checking.
8873 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
1260aef1
PE
8874 * indent.c (Fvertical_motion): Fix == vs = typo.
8875
e3cbd34b
EZ
88762011-09-24 Eli Zaretskii <eliz@gnu.org>
8877
a66cfb1c
SM
8878 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
8879 Default value is now t. Doc fix.
6bf7006f 8880
e3cbd34b 8881 * indent.c (Fvertical_motion): Compute and apply the overshoot
32c1fffd 8882 logic when moving up, not only when moving down. Fix the
e3cbd34b 8883 confusing name and values of the it_overshoot_expected variable;
32c1fffd 8884 logic changes accordingly. (Bug#9254) (Bug#9549)
e3cbd34b
EZ
8885
8886 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
8887 CHARPOS is covered by a display string which includes newlines.
8888 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
8889 is covered by a display string with embedded newlines.
8890
a3de0cbd
MA
88912011-09-24 Michael Albinus <michael.albinus@gmx.de>
8892
8893 * dbusbind.c (Fdbus_register_signal): Add match rule to
8894 Vdbus_registered_objects_table. (Bug#9581)
a66cfb1c
SM
8895 (Fdbus_register_method, Vdbus_registered_objects_table):
8896 Fix docstring.
a3de0cbd 8897
b260039d
JM
88982011-09-24 Jim Meyering <meyering@redhat.com>
8899
32c1fffd 8900 do not ignore write error for any output size
b260039d
JM
8901 The previous change was incomplete.
8902 While it makes emacs --batch detect the vast majority of stdout
8903 write failures, errors were still ignored whenever the output size is
8904 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
8905 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
8906 && echo FAIL: ignored write error
8907 FAIL: ignored write error
8908 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
8909 && echo FAIL: ignored write error
8910 FAIL: ignored write error
8911 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
8912
8eca8a7c
AS
89132011-09-23 Andreas Schwab <schwab@linux-m68k.org>
8914
8915 * emacs.c (Fkill_emacs): In noninteractive mode exit
8916 non-successfully if a write error occurred on stdout. (Bug#9574)
8917
3341db62
EZ
89182011-09-21 Eli Zaretskii <eliz@gnu.org>
8919
8920 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
8921 the xassert test.
8922
8923 * dispextern.h (struct it): Update the comment documenting what
8924 can it->OBJECT be.
8925
8c203dbf
EZ
89262011-09-20 Eli Zaretskii <eliz@gnu.org>
8927
8928 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
8929 a display string, extend search for cursor position to end of row.
8930 (find_row_edges): If the row ends in a newline from a display
8931 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
8932 Handle the case of a display string with multiple newlines.
fd317ddf
EZ
8933 (Fcurrent_bidi_paragraph_direction): Fix search for previous
8934 non-empty line. Fixes confusing cursor motion with arrow keys at
8935 the beginning of a line that starts with whitespace.
8c203dbf 8936
a4824228
LMI
89372011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
8938
8939 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
8940 (bug#9493).
8941
33ed493b
CY
89422011-09-18 Chong Yidong <cyd@stupidchicken.com>
8943
8944 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
8945 boolean (Bug#9154).
8946
56cd55c8
EZ
89472011-09-18 Eli Zaretskii <eliz@gnu.org>
8948
8949 * xdisp.c (display_line): Record maximum and minimum buffer
8950 positions even if no glyphs were produced (e.g., by a zero-width
8951 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
8952 buffer positions that will be removed from the glyph row because
8953 they don't fit.
c02dcedf
EZ
8954 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
8955 column is beyond frame width: don't subtract 1 "pixel" when
8956 computing width of the stretch.
3e62b7e0
EZ
8957 (reseat_at_next_visible_line_start): Undo the change made on
8958 2011-09-17 that saved paragraph information and restored it after
8959 the call to `reseat'. (Bug#9545)
56cd55c8 8960
5ed99d36 89612011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3390454c
YM
8962
8963 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
8964 and turn window cursor on if cleared (Bug#9415).
8965
5ed99d36 89662011-09-18 Andreas Schwab <schwab@linux-m68k.org>
edb7b4dc
AS
8967
8968 * search.c (boyer_moore): Take unibyte characters from pattern
8969 literally. (Bug#9458)
8970
9bade7b2
EZ
89712011-09-18 Eli Zaretskii <eliz@gnu.org>
8972
8973 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
8974
e5e9d610
PE
89752011-09-18 Paul Eggert <eggert@cs.ucla.edu>
8976
87e4427a
PE
8977 Fix minor problem found by static checking.
8978 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
8979 initialized, to pacify gcc -Wuninitialized.
8980
e5e9d610
PE
8981 * fileio.c: Report proper errno when syscall falls.
8982 (Finsert_file_contents): Save and restore errno,
8983 so that report_file_error outputs the correct diagnostic.
8984 (Fwrite_region) [CLASH_DETECTION]: Likewise.
8985
a1674f0b
EZ
89862011-09-18 Eli Zaretskii <eliz@gnu.org>
8987
8988 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
8989
fbfb6dd4
EZ
89902011-09-17 Eli Zaretskii <eliz@gnu.org>
8991
8992 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
8993 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
8994
bb187662
EZ
89952011-09-17 Eli Zaretskii <eliz@gnu.org>
8996
1137e8b8 8997 * xdisp.c (reseat_at_next_visible_line_start): Keep information
6b02f655 8998 about the current paragraph and restore it after the call to reseat.
1137e8b8
EZ
8999
9000 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
9001 (bidi_find_paragraph_start): Search back for paragraph beginning
9002 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
9003 (bidi_move_to_visually_next): Only trigger paragraph-related
9004 computations when the last character is a newline or at EOB, not
9005 just any NEUTRAL_B. (Bug#9470)
9006
bb187662
EZ
9007 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
9008 truncated lines if point is covered by a display string. (Bug#9524)
9009
2e621251
PE
90102011-09-16 Paul Eggert <eggert@cs.ucla.edu>
9011
9012 * xselect.c: Relax test for outgoing X longs (Bug#9498).
9013 (cons_to_x_long): New function.
9014 (lisp_data_to_selection_data): Use it. Correct the test for
9015 short-versus-long data; it was negated. Break out of vector
9016 loop, for efficiency, when a long datum is discovered.
9017
91a15bc6
SM
90182011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
9019
9020 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
9021
b41c3a35
EZ
90222011-09-16 Eli Zaretskii <eliz@gnu.org>
9023
9024 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
9025 GCC PR/17406) by declaring this function with external scope.
9026
7812ba2d
PE
90272011-09-15 Paul Eggert <eggert@cs.ucla.edu>
9028
9029 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
9030 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
9031
cf7edc2a
AS
90322011-09-15 Andreas Schwab <schwab@linux-m68k.org>
9033
9034 * editfns.c (Fformat): Correctly handle text properties on "%%".
9035
bd01620e
EZ
90362011-09-15 Eli Zaretskii <eliz@gnu.org>
9037
9038 * xterm.c (x_draw_composite_glyph_string_foreground):
9039 * w32term.c (x_draw_composite_glyph_string_foreground):
9040 * term.c (encode_terminal_code):
9041 * composite.c (composition_update_it, get_composition_id):
9042 * xdisp.c (get_next_display_element)
9043 (fill_composite_glyph_string): Add comments about special meaning
9044 of TAB characters in a composition.
9045
a02719a3
PE
90462011-09-15 Paul Eggert <eggert@cs.ucla.edu>
9047
9048 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
4c122725
PE
9049 This occurs when processing a multibyte format.
9050 Problem reported by Wolfgang Jenker.
a02719a3 9051
72589a3c
JB
90522011-09-15 Johan Bockgård <bojohan@gnu.org>
9053
9054 * xdisp.c (try_cursor_movement): Only check for exact match if
9055 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
9056
1c14176c
PE
90572011-09-14 Paul Eggert <eggert@cs.ucla.edu>
9058
9059 Remove unused external symbols.
9060 * dispextern.h (calc_pixel_width_or_height): Remove decl.
9061 * xdisp.c (calc_pixel_width_or_height): Now static.
9062 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
9063 * indent.c (check_display_width):
9064 * w32term.c: Fix comment to match code.
9065 * xterm.c, xterm.h (x_catching_errors): Remove.
9066
d2eea5b5
PE
90672011-09-14 Paul Eggert <eggert@cs.ucla.edu>
9068
9069 * xselect.c: Use signed conversions more consistently (Bug#9498).
9070 (selection_data_to_lisp_data): Assume incoming selection data are
9071 signed integers, not unsigned. This is to be consistent with
9072 outgoing selection data, which was modified to use signed integers
9073 in as part of the fix to Bug#9196 in response to Jan D.'s comment
9074 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
9075 expects long, not unsigned long.
9076
46888499
EZ
90772011-09-14 Eli Zaretskii <eliz@gnu.org>
9078
9079 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
9080 computation of loop end. Reported by Johan Bockgård
9081 <bojohan@gnu.org>.
9082
ef8ef9fb
CY
90832011-09-13 Chong Yidong <cyd@stupidchicken.com>
9084
9085 * frame.c (Fother_visible_frames_p): Function deleted.
9086
fa819fed
EZ
90872011-09-12 Eli Zaretskii <eliz@gnu.org>
9088
9089 * indent.c (compute_motion): Process display vector front to back
9090 rather than the other way around. (Bug#2496)
9091
2ba8e008
SM
90922011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
9093
9094 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
9095
20f53c69
CY
90962011-09-11 Chong Yidong <cyd@stupidchicken.com>
9097
9098 * minibuf.c (Fread_from_minibuffer): Doc fix.
9099
d562d7a4
EZ
91002011-09-11 Eli Zaretskii <eliz@gnu.org>
9101
9102 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
9103 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
9104
1c4d7f3d
LMI
91052011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
9106
9107 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
9108 value for non-existent files.
9109
b885bf36
EZ
91102011-09-11 Eli Zaretskii <eliz@gnu.org>
9111
9112 * fileio.c (Finsert_file_contents): If the file cannot be opened,
9113 set its "size" to -1. This will set the modtime_size field of
9114 the corresponding buffer to -1, which is what
9115 verify-visited-file-modtime expects for files that do not exist.
9116 (Bug#9139)
9117
6612f0bf
PE
91182011-09-11 Paul Eggert <eggert@cs.ucla.edu>
9119
9120 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
9121 here ...
9122 * lisp.h: ... from here. push_key_description is no longer
9123 defined in keyboard.c, so its declaration should not be in
9124 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
9125 logically belongs with push_key_description.
9126
dfb3f755
PE
91272011-09-10 Paul Eggert <eggert@cs.ucla.edu>
9128
9129 * buffer.h: Include <sys/types.h> instead of <time.h>.
9130 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
9131 Problem reported by Herbert J. Skuhra.
9132
3134906c
LMI
91332011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
9134
9135 * xml.c (parse_region): Make the parsing work for
9136 non-comment-starting XML files again (bug#9144).
9137
8d903f4e
AS
91382011-09-10 Andreas Schwab <schwab@linux-m68k.org>
9139
9140 * image.c (gif_load): Fix calculation of bottom and right corner.
9141 (Bug#9468)
9142
80ad64f4
EZ
91432011-09-10 Eli Zaretskii <eliz@gnu.org>
9144
9145 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
9146 redisplay in small windows.
9147
208a048d
EZ
91482011-09-09 Eli Zaretskii <eliz@gnu.org>
9149
9150 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
9151
9b1c252e
MR
91522011-09-08 Martin Rudalics <rudalics@gmx.at>
9153
9154 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
9155 Operate on live windows only.
9156
2949f33b
JB
91572011-09-08 Juanma Barranquero <lekktu@gmail.com>
9158
9159 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
9160
e08dcafd
EZ
91612011-09-07 Eli Zaretskii <eliz@gnu.org>
9162
9163 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
9164 only under bidi iteration.
9165
115b96bd
JD
91662011-09-07 Jan Djärv <jan.h.d@swipnet.se>
9167
9168 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
9169
c8199d0f
PE
91702011-09-06 Paul Eggert <eggert@cs.ucla.edu>
9171
9172 isnan: Fix porting problem to Solaris 10 with bundled gcc.
9173 Without this fix, the command to link temacs failed due to an
9174 undefined symbol __builtin_isnan. This is because
9175 /usr/include/iso/math_c99.h #defines isnan(x) to
9176 __builtin_isnan(x), but the bundled gcc, which identifies itself
9177 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
9178 a __builtin_isnan.
9179 * floatfns.c (isnan): #undef, and then #define to a clone of
9180 what's in data.c.
9181 (Fisnan): Always define, since it's always available now.
9182 (syms_of_floatfns): Always define isnan at the Lisp level.
9183
e39b275c 91842011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1c262cae
PE
9185
9186 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
9187
b2db44d9 91882011-09-06 Paul Eggert <eggert@cs.ucla.edu>
728f8f0a 9189
f4af5137 9190 * fileio.c: Fix bugs with large file offsets (Bug#9428).
728f8f0a
PE
9191 The previous code assumed that file offsets (off_t values) fit in
9192 EMACS_INT variables, which is not true on typical 32-bit hosts.
9193 The code messed up by falsely reporting buffer overflow in cases
9194 such as (insert-file-contents "big" nil 1 2) into an empty buffer
9195 when "big" contains more than 2**29 bytes, even though this
9196 inserts just one byte and does not overflow the buffer.
9197 (Finsert_file_contents): Store file offsets as off_t
9198 values, not as EMACS_INT values. Check for overflow when
9199 converting between EMACS_INT and off_t. When checking for
9200 buffer overflow or for overlap, take the offsets into account.
9201 Don't use EMACS_INT for small values where int suffices.
9202 When checking for overlap, fix a typo: ZV was used where
9203 ZV_BYTE was intended.
9204 (Fwrite_region): Don't assume off_t fits into 'long'.
9205 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
9206
ecfc0a49
MA
92072011-09-05 Michael Albinus <michael.albinus@gmx.de>
9208
9209 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
9210
6511acf2 92112011-09-04 Paul Eggert <eggert@cs.ucla.edu>
61bfeeb7 9212
0999621a 9213 sprintf-related integer and memory overflow issues (Bug#9412).
62f19c19
PE
9214
9215 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
8666506e 9216 (esprintf, exprintf, evxprintf): New functions.
62f19c19 9217 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
6b02f655 9218 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
62f19c19
PE
9219 (modify_event_symbol): Do not assume that the length of
9220 name_alist_or_stem is safe to alloca and fits in int.
9221 (Fexecute_extended_command): Likewise for function name and binding.
9222 (Frecursion_depth): Wrap around reliably on integer overflow.
9223 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
9224 since some callers pass EMACS_INT values.
9225 (Fsingle_key_description): Don't crash if symbol name contains more
9226 than MAX_ALLOCA bytes.
9227 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
9228 (get_minibuffer): Arg is now EMACS_INT, not int.
9229 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
8666506e 9230 (esprintf, exprintf, evxprintf): New decls.
62f19c19
PE
9231 * window.h (command_loop_level, minibuf_level): Reflect API changes.
9232
2be7d702
PE
9233 * dbusbind.c (signature_cat): New function.
9234 (xd_signature, Fdbus_register_signal):
2ea16b89
PE
9235 Do not overrun buffer; instead, report string overflow.
9236
9d1df220
PE
9237 * dispnew.c (add_window_display_history): Don't overrun buffer.
9238 Truncate instead; this is OK since it's just a log.
9239
33ef5c64
PE
9240 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
9241 even if the time zone offset is outlandishly large.
9242 Don't mishandle offset == INT_MIN.
9243
66c6fdd5
PE
9244 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
9245 when creating daemon; the previous buffer-overflow check was incorrect.
9246
d749b01b
PE
9247 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
9248 which has the guts of the old verror function.
9249
b5cd1905
PE
9250 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
9251 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
9252
6e1a67fb
PE
9253 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
9254 (font_unparse_xlfd): Don't blindly alloca long strings.
c21721cc 9255 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
8666506e 9256 fits in int, when using sprintf. Use single snprintf to count
c21721cc
PE
9257 length of string rather than counting it via multiple sprintfs;
9258 that's simpler and more reliable.
c21721cc
PE
9259 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
9260 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
9261 sprintf, in case result does not fit in int.
9262
c57b67fc
PE
9263 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
9264 (fontset_from_font): Print it.
9265
8a401434
PE
9266 * frame.c (tty_frame_count): Now printmax_t, not int.
9267 (make_terminal_frame, set_term_frame_name): Print it.
9268 (x_report_frame_params): In X, window IDs are unsigned long,
9269 not signed long, so print them as unsigned.
9270 (validate_x_resource_name): Check for implausibly long names,
9271 and don't assume name length fits in 'int'.
9272 (x_get_resource_string): Don't blindly alloca invocation name;
9273 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
9274 not fit in int.
9275
6e1a67fb
PE
9276 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
9277 (xg_check_special_colors, xg_set_geometry):
84722b3d
PE
9278 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
9279
0df02bf3
PE
9280 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
9281 Use esprintf, not sprintf, in case result does not fit in int.
9282
48e30793
PE
9283 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
9284 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
9285 it as a large positive number.
9286 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
9287 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
9288
a66ff6d8
PE
9289 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
9290 in case result does not fit in int.
9291
aca216ff
PE
9292 * print.c (float_to_string): Detect width overflow more reliably.
9293 (print_object): Make sprintf buffer a bit bigger, to avoid potential
9294 buffer overrun. Don't assume list length fits in 'int'. Treat
9295 print length of 0 as 0, not as infinity; to be consistent with other
9296 uses of print length in this function. Don't overflow print length
9297 index. Don't assume hash table size fits in 'long', or that
9298 vectorlike size fits in 'unsigned long'.
9299
31c286f7
PE
9300 * process.c (make_process): Use printmax_t, not int, to format
9301 process-name gensyms.
9302
55e5faa1
PE
9303 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
9304
80f2e268
PE
9305 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
9306 to avoid potential buffer overrun.
9307
670741ab
PE
9308 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
9309 if X resource line is longer than 512 bytes.
9310
b7163a50
PE
9311 * xfns.c (x_window): Make sprintf buffer a bit bigger
9312 to avoid potential buffer overrun.
9313
ae58ff1f
PE
9314 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
9315
c43c8a6a
PE
9316 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
9317
3f8236f4
PE
93182011-09-04 Paul Eggert <eggert@cs.ucla.edu>
9319
53e9fe90 9320 Integer overflow fixes for scrolling, etc.
6511acf2
PE
9321 Without these, Emacs silently mishandles large integers sometimes.
9322 For example, "C-u 4294967297 M-x recenter" was treated as if
53e9fe90
PE
9323 it were "C-u 1 M-x recenter" on a typical 64-bit host.
9324
6511acf2
PE
9325 * xdisp.c (try_window_id): Check Emacs fixnum range before
9326 converting to 'int'.
806add1d 9327
6511acf2 9328 * window.c (window_scroll_line_based, Frecenter):
71f02bc5
PE
9329 Check that an Emacs fixnum is in range before assigning it to 'int'.
9330 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
9331 values converted from Emacs fixnums.
9332 (Frecenter): Don't wrap around a line count if it is out of 'int'
9333 range; instead, treat it as an extreme value.
9334 (Fset_window_configuration, compare_window_configurations):
9335 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
9336
6511acf2
PE
9337 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
9338 that can exceed INT_MAX. Check that EMACS_INT value is in range
9339 before assigning it to the (possibly-narrower) index.
a0efffc8
PE
9340 (match_limit): Don't assume that a fixnum can fit in 'int'.
9341
6511acf2 9342 * print.c (print_object): Use ptrdiff_t, not int, for index that can
29ebea3b
PE
9343 exceed INT_MAX.
9344
6511acf2 9345 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
3f8236f4
PE
9346 (Fvertical_motion): Don't wrap around LINES values that don't fit
9347 in 'int'. Instead, treat them as extreme values. This is good
9348 enough for windows, which can't have more than INT_MAX lines anyway.
9349
fcb901a7
LMI
93502011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
9351
0f2f6b6d
LMI
9352 * Require libxml/parser.h to avoid compilation warning.
9353
fcb901a7
LMI
9354 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
9355
9356 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
9357 since this reportedly can destroy thread storage.
9358
6e20a0d4
CY
93592011-08-30 Chong Yidong <cyd@stupidchicken.com>
9360
9361 * syntax.c (find_defun_start): Update all cache variables if
9362 exiting early (Bug#9401).
9363
148ae00e
EZ
93642011-08-30 Eli Zaretskii <eliz@gnu.org>
9365
f6cfbd8f
EZ
9366 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
9367
148ae00e
EZ
9368 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
9369 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
9370 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
9371
9372 * term.c (tty_append_glyph): New function.
9373 (produce_stretch_glyph): Static function and its prototype deleted.
9374
a66cfb1c
SM
9375 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
9376 Add prototypes.
148ae00e 9377
c4a07a4c
PE
93782011-08-29 Paul Eggert <eggert@cs.ucla.edu>
9379
9380 * image.c (parse_image_spec): Check for nonnegative, not for positive,
9381 when checking :margin (Bug#9390).
9382 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
a66cfb1c 9383 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
c4a07a4c
PE
9384 so that the name doesn't mislead. All uses changed.
9385
6bc8cd65
JB
93862011-08-28 Johan Bockgård <bojohan@gnu.org>
9387
9388 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
9389 set_tty_hooks.
9390
dca4927e
EZ
93912011-08-27 Eli Zaretskii <eliz@gnu.org>
9392
9393 * xdisp.c (move_it_to): Don't bail out early when reaching
9394 position beyond to_charpos, if we are scanning backwards.
9395 (move_it_vertically_backward): When DY == 0, make sure we get to
9396 the first character in the line after the newline.
9397
f2cad773
PE
93982011-08-27 Paul Eggert <eggert@cs.ucla.edu>
9399
9400 * ccl.c: Improve and simplify overflow checking (Bug#9196).
9401 (ccl_driver): Do not generate an out-of-range pointer.
9402 (Fccl_execute_on_string): Remove unnecessary check for
9403 integer overflow, noted by Stefan Monnier in
9404 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
9405 Remove a FIXME that didn't need fixing.
9406 Simplify the newly-introduced buffer reallocation code.
9407
0cae2cdb
JB
94082011-08-27 Juanma Barranquero <lekktu@gmail.com>
9409
9410 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
9411
5fc295a4 94122011-08-26 Paul Eggert <eggert@cs.ucla.edu>
ddff3151 9413
70c60eb2 9414 Integer and memory overflow issues (Bug#9196).
726e0ab1 9415
d31850da
PE
9416 * doc.c (get_doc_string): Rework so that
9417 get_doc_string_buffer_size is the actual buffer size, rather than
9418 being 1 less than the actual buffer size; this makes xpalloc more
9419 convenient.
9420
a69fbedb
PE
9421 * image.c (x_allocate_bitmap_record, cache_image):
9422 * xselect.c (Fx_register_dnd_atom):
9423 Simplify previous changes by using xpalloc.
9424
fe5c5d37
PE
9425 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
9426 since either will do and ptrdiff_t is convenient with xpalloc.
9427
0065d054
PE
9428 * charset.c (charset_table_size)
9429 (struct charset_sort_data.priority): Now ptrdiff_t.
9430 (charset_compare): Don't overflow if priorities differ greatly.
9431 (Fsort_charsets): Don't assume list length fits in int.
9432 Check for size-calculation overflow when allocating sort data.
9433 (syms_of_charset): Allocate an initial charset table that is
9434 just under 64 KiB, to avoid problems with glibc malloc and mmap.
9435
9436 * cmds.c (internal_self_insert): Check for size-calculation overflow.
9437
9438 * composite.h (struct composition.glyph_len): Now int, not unsigned.
9439 The actual value is always <= INT_MAX, and leaving it unsigned made
9440 overflow checking harder.
9441
9442 * dispextern.h (struct glyph_matrix.rows_allocated)
9443 (struct face_cache.size): Now ptrdiff_t, for convenience in use
9444 with xpalloc. The values are still always <= INT_MAX.
9445
9446 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
9447
9448 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
9449 (SAFE_NALLOCA): New macro.
9450
9451 * region-cache.c (struct boundary.pos, find_cache_boundary)
9452 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
9453 (set_cache_region, invalidate_region_cache)
9454 (revalidate_region_cache, know_region_cache, region_cache_forward)
9455 (region_cache_backward, pp_cache):
9456 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
9457 so that ptrdiff_t * can be passed to xpalloc.
9458 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
9459 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
9460 (pp_cache): Don't assume cache_len fits in int.
9461 * region-cache.h: Adjust extern decls to match.
9462
9463 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
9464 EMACS_INT, since either will do, for xpalloc.
9465
9466 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
9467 (xnmalloc, xnrealloc, xpalloc): New functions.
9468
726e0ab1
PE
9469 * bidi.c (bidi_shelve_header_size): New constant.
9470 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
9471 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
9472
51f30bc5 9473 * bidi.c (bidi_cache_shrink):
726e0ab1
PE
9474 * buffer.c (overlays_at, overlays_in, record_overlay_string)
9475 (overlay_strings):
9476 Don't update size of array until after memory allocation succeeds,
9477 because xmalloc/xrealloc may not return.
0065d054
PE
9478 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
9479 now that we have proper integer overflow checking.
9480 (record_overlay_string, overlay_strings): Catch overflows when
9481 calculating size of overlay_str_buf.
726e0ab1 9482
0065d054
PE
9483 * callproc.c (Fcall_process): Check for size overflow when
9484 calculating size of args2.
9485 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
9486 Normally we prefer signed values, but sticking with ptrdiff_t would
9487 require adding more-complicated checks.
726e0ab1
PE
9488
9489 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
9490 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
9491 Redo buffer-overflow calculations to avoid integer overflow.
0065d054 9492 Add a FIXME comment where memory seems to be over-allocated.
726e0ab1
PE
9493
9494 * character.c (Fstring): Check for size-calculation overflow.
9495
9496 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
9497 unnecessary integer overflow. Check for size overflow.
9498 (encode_coding_object): Don't update size until xmalloc succeeds.
9499
9500 * composite.c (get_composition_id): Check for overflow in glyph
9501 length calculations.
9502
9503 Integer and memory overflow fixes for display code.
9504 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
9505 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
9506 (scrolling_window): Check for overflow in size calculations.
9507 (line_draw_cost, realloc_glyph_pool, add_row_entry):
9508 Don't assume glyph table len fits in int.
9509 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
9510 (row_table_size): Now ptrdiff_t, not int.
9511 (scrolling_window): Avoid overflow in size calculations.
9512 Don't update size until allocation succeeds.
9513 * fns.c (concat): Check for overflow in size calculations.
9514 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
9515 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
9516 (NEXT_ALMOST_PRIME_LIMIT): New constant.
9517
9518 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
9519 (get_doc_string): Check for size calculation overflow.
9520 Don't update size until allocation succeeds.
9521 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
9522 EMACS_INT, where ptrdiff_t will do.
9523 (Fsubstitute_command_keys): Check for string overflow.
9524
9525 * editfns.c (set_time_zone_rule): Don't assume environment length
9526 fits in int.
9527 (message_length): Now ptrdiff_t, not int.
9528 (Fmessage_box): Don't update size until allocation succeeds.
9529 Don't assume message length fits in int.
9530 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
9531
0065d054
PE
9532 * emacs.c (main): Do not reallocate argv, since there is a null at
9533 the end that can be overwritten, and this way there's no need to
9534 worry about size-calculation overflow.
9535 (sort_args): Check for size-calculation overflow.
726e0ab1
PE
9536
9537 * eval.c (init_eval_once, grow_specpdl): Don't update size until
9538 alloc succeeds.
9539 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
9540
9541 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
9542 (x_set_scroll_bar_width, x_figure_window_size):
9543 Check for integer overflow.
9544 (x_set_alpha): Do not assume XINT fits in int.
9545
9546 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
9547 This is for the members text_lines, text_cols, total_lines, total_cols,
9548 where the system imposes an 'int' limit.
9549
9550 * fringe.c (Fdefine_fringe_bitmap):
9551 Don't update size until alloc works.
9552
9553 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
9554 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
9555
9556 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
9557 Check for size-calculation overflow.
9558 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
9559 do, as we prefer signed integers.
9560 (id_to_widget.max_size, id_to_widget.used)
9561 (xg_store_widget_in_map, xg_remove_widget_from_map)
9562 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
9563 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
9564 Use and return ptrdiff_t, not int.
9565 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
9566 * gtkutil.h: Change prototypes to match the above.
9567
9568 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
9569 are duplicate now that they've been promoted to lisp.h.
9570 (x_allocate_bitmap_record, x_alloc_image_color)
9571 (make_image_cache, cache_image, xpm_load):
9572 Don't update size until alloc is done.
9573 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
9574 (x_detect_edges):
3256efce 9575 Check for size calculation overflow.
726e0ab1
PE
9576 (ct_colors_allocated_max): New constant.
9577 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
9578 overflow.
3256efce 9579
726e0ab1
PE
9580 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
9581 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
9582 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
9583 Use ptrdiff_t, not int, to count maps.
9584 (read_char_minibuf_menu_prompt): Check for overflow in size
a66cfb1c
SM
9585 calculations. Don't update size until allocation succeeds.
9586 Redo calculations to avoid overflow.
726e0ab1
PE
9587 * keyboard.h: Change prototypes to match the above.
9588
9589 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
9590 to count maps.
9591 (current_minor_maps): Check for size calculation overflow.
9592 * keymap.h: Change prototypes to match the above.
9593
9594 * lread.c (read1, init_obarray): Don't update size until alloc done.
9595
9596 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
9597 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
9598
726e0ab1
PE
9599 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
9600 Now ptrdiff_t, not int.
9601 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
9602 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
9603
9604 * process.c (Fnetwork_interface_list): Check for overflow
9605 in size calculation.
9606
9607 * region-cache.c (move_cache_gap): Check for size calculation overflow.
9608
9609 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
9610 overflow. Don't bother calling xmalloc when xrealloc will do.
9611
9612 * search.c (Freplace_match): Check for size calculation overflow.
9613 (Fset_match_data): Don't assume list lengths fit in 'int'.
9614
9615 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
9616 for command line length. Do not attempt to address one before the
9617 beginning of an array, as that's not portable.
9618
9619 * term.c (max_frame_lines): Remove; unused.
9620 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
9621 not int.
9622 (encode_terminal_code, calculate_costs): Check for size
9623 calculation overflow.
9624 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
9625 table lengths and related sizes. Don't update size until alloc
9626 done. Redo calculations to avoid overflow.
9627 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
9628
9629 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
9630 subtracting pointers.
9631 (gobble_line): Check for overflow more carefully. Don't update size
9632 until alloc done.
9633
9634 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
9635 Don't update size until alloc done.
9636 Redo size calculations to avoid overflow.
9637 Check for size calculation overflow.
0065d054 9638 (main) [DEBUG]: Fix typo in invoking tparam1.
726e0ab1
PE
9639
9640 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
9641 Use ptrdiff_t, not int, for sizes.
9642 (store_mode_line_noprop_char): Don't update size until alloc done.
9643
0065d054
PE
9644 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
9645 Use ptrdiff_t, not int, for sizes.
9646 (Finternal_make_lisp_face, cache_face):
9647 Check for size calculation overflow.
9648 (cache_face): Treat size calculation overflows as if they were
9649 memory exhaustion (the usual treatment), rather than aborting.
726e0ab1
PE
9650
9651 * xfns.c (x_encode_text, x_set_name_internal)
9652 (Fx_change_window_property): Use ptrdiff_t, not int, to count
9653 sizes, since they can exceed INT_MAX in size. Check for size
9654 calculation overflow.
9655
0065d054
PE
9656 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
9657 (xg_select): Check for size calculation overflow.
726e0ab1
PE
9658 Don't update size until alloc done.
9659
0065d054 9660 * xrdb.c (get_environ_db): Don't assume path length fits in int,
726e0ab1 9661 as sprintf is limited to int lengths.
1d526e2f 9662
252c5ee1
PE
9663 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
9664 (X_LONG_MIN): New macros.
864d7ce7
PE
9665 Use them to make the following changes clearer.
9666 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
9667 This change doesn't affect the value now, but it may help remind
9668 future maintainers not to raise the value too much later.
9669 (SELECTION_QUANTUM): Remove, replacing with ...
9670 (selection_quantum): ... new function, which avoids overflow.
9671 All uses changed.
9672 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
9673 assumption that selection length fits in 'int'.
9674 (x_reply_selection_request, x_handle_selection_request)
9675 (x_get_window_property, receive_incremental_selection)
9676 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
9677 (lisp_data_to_selection_data, clean_local_selection_data):
9678 Use ptrdiff_t, not int, to record length of selection.
9679 (x_reply_selection_request, x_get_window_property)
9680 (receive_incremental_selection, x_property_data_to_lisp):
9681 Redo calculations to avoid overflow.
9682 (x_reply_selection_request): When sending hint, ceiling it at
252c5ee1 9683 X_LONG_MAX rather than relying on wraparound overflow to send
864d7ce7
PE
9684 something.
9685 (x_get_window_property, receive_incremental_selection)
9686 (lisp_data_to_selection_data, x_property_data_to_lisp):
9687 Check for size-calculation overflow.
9688 (x_get_window_property, receive_incremental_selection)
9689 (lisp_data_to_selection_data, Fx_register_dnd_atom):
9690 Don't store size until memory allocation succeeds.
9691 (x_get_window_property): Plug memory leak on memory exhaustion.
9692 Don't double-block input; malloc is safe here. Don't assume 2**34
9693 - 4 fits in unsigned long. Add an xassert to check
9694 XGetWindowProperty overflow. Be more careful about overflow
9695 calculations, and distinguish size from memory overflow better.
9696 (receive_incremental_selection): When tracing, don't assume
9697 unsigned int is less than INT_MAX.
9698 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
9699 harmful) conversions of unsigned short to int.
9700 (lisp_data_to_selection_data): Don't assume that integers
9701 in the range -65535 through -1 fit in an X unsigned short.
9702 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
9703 result parameters unless successful. Rely on cons_to_unsigned
9704 to report problems with elements; the old code wasn't right anyway.
9705 (x_check_property_data): Check for int overflow; we cannot use
9706 a wider type due to X limits.
9707 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
9708
726e0ab1 9709 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
34db673b 9710
0065d054
PE
9711 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
9712 (x_term_init): Check for size calculation overflow.
726e0ab1
PE
9713 (x_color_cells): Don't store size until memory allocation succeeds.
9714 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
0065d054 9715 Don't assume alloca size is less than MAX_ALLOCA.
726e0ab1
PE
9716 (x_term_init): Don't assume length fits in int (sprintf is limited
9717 to int size).
bc18e09d 9718
ebfa62c0
PE
9719 Use ptrdiff_t for composition IDs.
9720 * character.c (lisp_string_width):
9721 * composite.c (composition_table_size, n_compositions)
9722 (get_composition_id, composition_gstring_from_id):
9723 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
9724 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
9725 * window.c (Frecenter):
9726 Use ptrdiff_t, not int, for composition IDs.
9727 * composite.c (get_composition_id): Check for integer overflow.
9728 * composite.h: Adjust prototypes to match the above changes.
9729
d3411f89
PE
9730 Use ptrdiff_t for hash table indexes.
9731 * category.c (hash_get_category_set):
9732 * ccl.c (ccl_driver):
9733 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
9734 * coding.c (coding_system_charset_list, detect_coding_system):
9735 * coding.h (struct coding_system.id):
9736 * composite.c (get_composition_id, gstring_lookup_cache):
9737 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
9738 * image.c (xpm_get_color_table_h):
9739 * lisp.h (hash_lookup, hash_put):
9740 * minibuf.c (Ftest_completion):
9741 Use ptrdiff_t for hash table indexes, not int (which is too
9742 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
9743 32-bit --with-wide-int hosts).
9744
e097a6fa
PE
9745 * charset.c (Fdefine_charset_internal): Check for integer overflow.
9746 Add a FIXME comment about memory leaks.
9747 (syms_of_charset): Don't assume xmalloc returns.
9748
5637687f
PE
9749 Don't assume that stated character widths fit in int.
9750 * character.c (Fchar_width, c_string_width, lisp_string_width):
9751 * character.h (CHAR_WIDTH):
9752 * indent.c (MULTIBYTE_BYTES_WIDTH):
9753 Use sanitize_char_width to avoid undefined and/or bad behavior
9754 with outlandish widths.
a66cfb1c 9755 * character.h (sanitize_tab_width): Rename from sanitize_width,
5637687f
PE
9756 now that we have two such functions. All uses changed.
9757 (sanitize_char_width): New inline function.
9758
a2271ba2
PE
9759 Don't assume that tab-width fits in int.
9760 * character.h (sanitize_width): New inline function.
9761 (SANE_TAB_WIDTH): New macro.
9762 (ASCII_CHAR_WIDTH): Use it.
9763 * indent.c (sane_tab_width): Remove. All uses replaced by
9764 SANE_TAB_WIDTH (current_buffer).
9765 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
9766
18c52557
PE
9767 * fileio.c: Integer overflow issues with file modes.
9768 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
9769
caeeedc1
PE
9770 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
9771 Remove unreachable code.
9772 (read_hex, load_charset_map_from_file): Check for integer overflow.
9773
6df6ae42 9774 * xterm.c: Don't go over XClientMessageEvent limit.
50849c52
PE
9775 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
9776 (x_send_scroll_bar_event): Likewise. Check that the size does not
9777 exceed limits imposed by XClientMessageEvent, as well as the usual
9778 ptrdiff_t and size_t limits.
9779
b13995db
PE
9780 * keyboard.c: Overflow, signedness and related fixes.
9781 (make_lispy_movement): Use same integer type in forward decl
9782 that is used in the definition.
9783 (read_key_sequence, keyremap_step):
9784 Change bufsize argument back to int, undoing my 2011-03-30 change.
9785 We prefer signed types, and int is wide enough here.
9786 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
9787 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
9788 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
9789 length, not size_t. Use ptrdiff_t for index, not int.
9790 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
9791 possibility of integer overflow.
9792
13464394
PE
9793 Overflow, signedness and related fixes for images.
9794
9795 * dispextern.h (struct it.stack[0].u.image.image_id)
9796 (struct_it.image_id, struct image.id, struct image_cache.size)
9797 (struct image_cache.used, struct image_cache.ref_count):
9798 * gtkutil.c (update_frame_tool_bar):
9799 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
9800 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
9801 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
9802 * nsmenu.m (update_frame_tool_bar):
9803 * xdisp.c (calc_pixel_width_or_height):
9804 * xfns.c (image_cache_refcount):
9805 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
9806 on typical 64-bit hosts.
9807
9808 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
9809 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
9810 Omit unnecessary casts to int.
9811 (parse_image_spec): Check that integers fall into 'int' range
9812 when the callers expect that.
9813 (image_ascent): Redo ascent calculation to avoid int overflow.
9814 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
9815 (lookup_image): Remove unnecessary tests.
9816 (xbm_image_p): Locals are now of int, not EMACS_INT,
9817 since parse_image_check makes sure they fit into int.
9818 (png_load, gif_load, svg_load_image):
9819 Prefer int to unsigned where either will do.
9820 (tiff_handler): New function, combining the cores of the
a66cfb1c
SM
9821 old tiff_error_handler and tiff_warning_handler.
9822 This function is rewritten to use vsnprintf and thereby avoid
13464394
PE
9823 stack buffer overflows. It uses only the features of vsnprintf
9824 that are common to both POSIX and native Microsoft.
9825 (tiff_error_handler, tiff_warning_handler): Use it.
9826 (tiff_load, gif_load, imagemagick_load_image):
9827 Don't assume :index value fits in 'int'.
9828 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
9829 (imagemagick_load_image): Check that crop parameters fit into
9830 the integer types that MagickCropImage accepts. Don't assume
9831 Vimagemagick_render_type has a nonnegative value. Don't assume
9832 size_t fits in 'long'.
9833 (gs_load): Use printmax_t to print the widest integers possible.
9834 Check for integer overflow when computing image height and width.
9835
c11821d4
EZ
98362011-08-26 Eli Zaretskii <eliz@gnu.org>
9837
9838 * xdisp.c (redisplay_window): Don't force window start if point
9839 will be invisible in the resulting window. (Bug#9324)
9840
0c95fcf7
EZ
98412011-08-25 Eli Zaretskii <eliz@gnu.org>
9842
9843 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
9844 the display spec is of the form `(space ...)'.
9845 (handle_display_spec): Return the value returned by
9846 handle_single_display_spec, not just 1 or zero.
9847 (handle_single_display_spec): If the display spec is of the form
9848 `(space ...)', and specifies display in the text area, return 2
9849 rather than 1.
fee65a97 9850 (try_cursor_movement): Check for the need to scroll more
a66cfb1c
SM
9851 accurately, and prefer exact match for point under bidi.
9852 Don't advance `row' beyond the last row of the window.
0c95fcf7
EZ
9853
9854 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
9855 into disp_prop; all users changed.
9856
9857 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
9858 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
9859 for the text covered by the display property.
9860
e4ed06f1
CY
98612011-08-25 Chong Yidong <cyd@stupidchicken.com>
9862
9863 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
9864 Change return value to nil.
9865 (Frecord_buffer): Delete unused function.
9866
f67cdd7f
EZ
98672011-08-24 Eli Zaretskii <eliz@gnu.org>
9868
5980d4c6
EZ
9869 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
9870 buffers, return left-to-right.
8610fe8b
EZ
9871 (set_cursor_from_row): Consider candidate row a win if its glyph
9872 represents a newline and point is on that newline. Fixes cursor
9873 positioning on the newline at EOL of R2L text within L2R
9874 paragraph, and vice versa.
9875 (try_cursor_movement): Check continued rows, in addition to
9876 continuation rows. Fixes unwarranted scroll when point enters a
9877 continued line of R2L text within an L2R paragraph, or vice versa.
9878 (cursor_row_p): Consider the case of point being equal to
9879 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
9880 from the end of a short line to the beginning of a continued line
9881 of R2L text within L2R paragraph.
9882 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
9883 composed characters.
5980d4c6 9884
f67cdd7f
EZ
9885 * bidi.c (bidi_check_type): Use xassert.
9886 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
9887 members.
9888
bca633fb
EZ
98892011-08-23 Eli Zaretskii <eliz@gnu.org>
9890
9891 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
9892 a character.
9893
4a5885a7
CY
98942011-08-23 Chong Yidong <cyd@stupidchicken.com>
9895
9896 * nsfont.m (ns_otf_to_script): Fix typo.
9897
0902a04e
KH
98982011-08-22 Kenichi Handa <handa@m17n.org>
9899
9900 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
9901 extra slot even if the purpose is char-code-property-table.
9902
1a2e6670
EZ
99032011-08-23 Eli Zaretskii <eliz@gnu.org>
9904
8ddde651
EZ
9905 * xdisp.c (redisplay_window): When computing centering_position,
9906 account for the height of the header line. (Bug#8874)
9907
425cc014
EZ
9908 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
9909 instead of CHAR_TO_BYTE. Fixes a crash when a completion
9910 candidate is selected by the mouse, and that candidate has a
9911 composed character under the mouse.
9912
1a2e6670
EZ
9913 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
9914 coordinates reported by pos-visible-in-window-p for a composed
9915 character in column zero.
9916
8b76d6f8
SM
99172011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
9918
9919 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
9920
dac347dd
EZ
99212011-08-22 Eli Zaretskii <eliz@gnu.org>
9922
9923 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
9924 consider it a hit if to_charpos is anywhere in the range of the
9925 composed buffer positions.
9926
e013fb34
CY
99272011-08-22 Chong Yidong <cyd@stupidchicken.com>
9928
9929 * image.c (gif_load): Don't assume that each subimage has the same
9930 dimensions as the base image. Handle disposal method that is
9931 "undefined" by the gif spec (Bug#9335).
9932
bd1ba3e8
CY
99332011-08-20 Chong Yidong <cyd@stupidchicken.com>
9934
9935 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
024a2d76 9936 (Fcondition_case): Document `debug' symbol in error handler.
bd1ba3e8 9937
54a1215b
EZ
99382011-08-19 Eli Zaretskii <eliz@gnu.org>
9939
823564e5
EZ
9940 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
9941 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
9942 from an Org mode buffer to a Speedbar frame.
9943
54a1215b
EZ
9944 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
9945 a composition, take its buffer position from IT->cmp_it.charpos.
9946 Fixes cursor positioning at the beginning of a line that begins
9947 with a composed character.
9948
9778ebcc
EZ
99492011-08-18 Eli Zaretskii <eliz@gnu.org>
9950
0be6ee06
EZ
9951 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
9952 character bidirectional type, use STRONG_L instead. Fixes crashes
9953 in a buffer produced by `describe-categories'.
9954
9778ebcc
EZ
9955 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
9956 members before the level stack, so they would be saved and
9957 restored when copying iterator state. Fixes incorrect reordering
9958 around TABs covered by display properties.
9959
156bffbe
AS
99602011-08-18 Andreas Schwab <schwab@linux-m68k.org>
9961
6b02f655 9962 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
156bffbe 9963
72ad093b
CY
99642011-08-17 Chong Yidong <cyd@stupidchicken.com>
9965
9966 * eval.c (internal_condition_case, internal_condition_case_1)
8b76d6f8
SM
9967 (internal_condition_case_2, internal_condition_case_n):
9968 Remove unnecessary aborts (Bug#9081).
72ad093b 9969
35774242
EZ
99702011-08-17 Eli Zaretskii <eliz@gnu.org>
9971
9972 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
9973 has no `load' handler, try opening the file locally. (Bug#9311)
9974
db76dd85
KB
99752011-08-16 Ken Brown <kbrown@cornell.edu>
9976
9977 * gmalloc.c: Expand comment.
9978
b215eee5
EZ
99792011-08-16 Eli Zaretskii <eliz@gnu.org>
9980
9981 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
9982 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
9983
a4579d33
KB
99842011-08-16 Ken Brown <kbrown@cornell.edu>
9985
9986 Fix memory allocation problems in Cygwin build (Bug#9273).
9987
9988 * unexcw.c ( __malloc_initialized): Declare external variable.
9989 (fixup_executable): Force the dumped emacs to reinitialize malloc.
9990
8b76d6f8
SM
9991 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
9992 New variables.
a4579d33
KB
9993 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
9994 dumped emacs.
9995 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
9996 in the static heap.
9997 [CYGWIN] (special_realloc): New function.
9998 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
9999 requests to realloc storage in the static heap.
10000
3ebec551
PE
100012011-08-15 Paul Eggert <eggert@cs.ucla.edu>
10002
10003 * bidi.c (bidi_initialize): Remove unused local.
10004
9fd8be00
EZ
100052011-08-15 Eli Zaretskii <eliz@gnu.org>
10006
6b02f655
SM
10007 * bidimirror.h:
10008 * biditype.h: Remove file.
10009 * makefile.w32-in ($(BLD)/bidi.$(O)):
10010 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
474a8465
EZ
10011
10012 * dispextern.h: Fix a typo in the comment to bidi_type_t.
10013
10014 * chartab.c: Improve commentary for the uniprop_table API.
10015
32413314
EZ
10016 * bidi.c (bidi_paragraph_init): Support zero value of
10017 bidi_ignore_explicit_marks_for_paragraph_level.
474a8465
EZ
10018 (bidi_initialize): Use uniprop_table instead of including
10019 biditype.h and bidimirror.h.
32413314 10020
9fd8be00
EZ
10021 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
10022 coordinates of the iterator when restoring from ppos_it.
10023 (Bug#9296)
10024
5cf2b69b
KH
100252011-08-14 Kenichi Handa <handa@m17n.org>
10026
10027 * process.c (create_process): Call setup_process_coding_systems
72ad093b 10028 after the pid of the process is set to -1 (Bug#8162).
5cf2b69b 10029
daf17d00
EZ
100302011-08-14 Eli Zaretskii <eliz@gnu.org>
10031
10032 * xdisp.c (move_it_in_display_line_to): Don't invoke
10033 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
10034 ppos_it. Fixes vertical cursor motion when line beginning is
10035 covered by an image. (Bug#9296)
10036
08e3161a
JD
100372011-08-14 Jan Djärv <jan.h.d@swipnet.se>
10038
10039 * nsterm.h (ns_run_ascript): Declare.
10040 (NSAPP_DATA2_RUNASSCRIPT): Define.
10041
10042 * nsfns.m (as_script, as_result, as_status): New static variables.
10043 (ns_run_ascript): New function.
5e617bc2 10044 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
08e3161a
JD
10045 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
10046 the event loop. Get status from as_status (Bug#7276).
10047
10048 * nsterm.m (sendEvent): If event is NSApplicationDefined and
10049 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
10050 the event loop (Bug#7276).
10051
a3720aa2
AS
100522011-08-14 Andreas Schwab <schwab@linux-m68k.org>
10053
10054 * gnutls.c (QCgnutls_bootprop_priority)
10055 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
10056 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
10057 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
10058 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
10059 (QCgnutls_bootprop_verify_hostname_error)
10060 (QCgnutls_bootprop_callbacks_verify): Rename from
10061 Qgnutls_bootprop_..., all uses changed.
10062
10063 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
10064 uses changed.
10065
0a0d27fb
PE
100662011-08-14 Paul Eggert <eggert@cs.ucla.edu>
10067
19d5c50c
PE
10068 * xfaces.c (Qframe_set_background_mode): Now static.
10069 * dispextern.h (Qframe_set_background_mode): Remove decl.
10070
0a0d27fb
PE
10071 * process.c (Fnetwork_interface_info): Declare local only if needed.
10072
377538cb
JD
100732011-08-13 Jan Djärv <jan.h.d@swipnet.se>
10074
10075 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
10076 (Fnetwork_interface_list): Allocate in increments of bytes instead
10077 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
10078 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
10079 sockaddr.
10080 (struct ifflag_def): notrailers is smart on OSX.
10081 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
10082 Get hardware address with getifaddrs if available.
10083
08fff70c
EZ
100842011-08-12 Eli Zaretskii <eliz@gnu.org>
10085
10086 * xdisp.c (iterate_out_of_display_property): xassert that
10087 IT->position is set to within IT->object's boundaries. Break from
10088 the loop as soon as EOB is reached; avoids infloops in redisplay
8b76d6f8
SM
10089 when IT->position is set up wrongly due to some bug.
10090 Set IT->current to match the bidi iterator unconditionally.
08fff70c
EZ
10091 (push_display_prop): Allow GET_FROM_STRING as IT->method on
10092 entry. Force push_it to save on the stack the current
10093 buffer/string position, to be restored by pop_it. Fix flags in
10094 the iterator structure wrt the object coming from a display
10095 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
10096 properties. (Bug#9284)
10097
7be1c708 100982011-08-09 Andreas Schwab <schwab@linux-m68k.org>
aac0c6e3 10099
7be1c708
CY
10100 * fontset.c (fontset_get_font_group): Add proper type checks.
10101 (Bug#9172)
aac0c6e3 10102
7be1c708 101032011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 10104
7be1c708
CY
10105 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
10106 and LC_VERSION_MIN_MACOSX.
10107 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
10108 (dump_it) [LC_FUNCTION_STARTS]: Use it.
aac0c6e3 10109
97bb72a6
EZ
101102011-08-08 Eli Zaretskii <eliz@gnu.org>
10111
10112 * xdisp.c (forward_to_next_line_start): Allow to use the
8b76d6f8
SM
10113 no-display-properties-and-no-overlays under bidi display.
10114 Set disp_pos in the bidi iterator to avoid searches for display
757664a4 10115 properties and overlays.
97bb72a6 10116
d5617611
CY
101172011-08-08 Chong Yidong <cyd@stupidchicken.com>
10118
37e11a63
CY
10119 * editfns.c (Fset_time_zone_rule): Document relationship with the
10120 setenv function.
10121
d5617611
CY
10122 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
10123 the font entity extracted from the cache (Bug#8109).
10124
58872834
CY
101252011-08-07 Chong Yidong <cyd@stupidchicken.com>
10126
10127 * composite.c (autocmp_chars): Don't reset point. That is done by
10128 restore_point_unwind (Bug#5984).
10129
75bfc667
JL
101302011-08-07 Juri Linkov <juri@jurta.org>
10131
10132 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
10133 to show the arg `TIME' instead of `TIMEVAL'.
10134
d1410150
EZ
101352011-08-06 Eli Zaretskii <eliz@gnu.org>
10136
10137 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
10138 display property strides EOL and includes a newline, as in
10139 longlines-mode. (Bug#9254)
75b771e4
EZ
10140 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
10141 word-wrap under bidirectional display. (Bug#9224)
d1410150
EZ
10142
10143 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
10144 is non-zero, even if the data buffer is NULL. Fixes a crash in
10145 vertical-motion with longlines-mode. (Bug#9254)
10146
35928349
EZ
101472011-08-05 Eli Zaretskii <eliz@gnu.org>
10148
ec7cc85b
EZ
10149 * bidi.c <bidi_cache_total_alloc>: Now static.
10150 (bidi_initialize): Initialize bidi_cache_total_alloc.
10151
8b76d6f8 10152 * xdisp.c (display_line): Release buffer allocated for shelved bidi
35928349
EZ
10153 cache. (Bug#9221)
10154
10155 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
10156 amount allocated this far in `bidi_cache_total_alloc'.
10157 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
10158 non-zero, only free the data buffer without restoring the cache
10159 contents. All callers changed.
10160
10161 * dispextern.h (bidi_unshelve_cache): Update prototype.
10162
10163 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
10164 (move_it_in_display_line, move_it_to)
10165 (move_it_vertically_backward, move_it_by_lines): Replace the call
10166 to xfree to an equivalent call to bidi_unshelve_cache.
10167 (move_it_in_display_line_to): Fix logic of returning
412b6358 10168 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
35928349 10169
e2e2423b
EZ
101702011-08-05 Eli Zaretskii <eliz@gnu.org>
10171
10172 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
10173 came from a string character with a `cursor' property. (Bug#9229)
10174
ae9e757a
JD
101752011-08-04 Jan Djärv <jan.h.d@swipnet.se>
10176
10177 * Makefile.in (LIB_PTHREAD): New variable.
10178 (LIBES): Add LIB_PTHREAD (Bug#9216).
10179
10180 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
10181 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
10182
213bd7f2
AS
101832011-08-04 Andreas Schwab <schwab@linux-m68k.org>
10184
6b02f655 10185 * regex.c (re_iswctype): Remove some redundant boolean conversions.
213bd7f2 10186
99aaf75f
JD
101872011-08-04 Jan Djärv <jan.h.d@swipnet.se>
10188
10189 * xterm.c (x_find_topmost_parent): New function.
10190 (x_set_frame_alpha): Find topmost parent window with
10191 x_find_topmost_parent and set the property there also (bug#9181).
10192 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
10193
c74e9d86
PE
101942011-08-04 Paul Eggert <eggert@cs.ucla.edu>
10195
10196 * callproc.c (Fcall_process): Avoid vfork clobbering
10197 the local vars buffer, coding_systems, current_dir.
10198
640c8776
SM
101992011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
10200
10201 * keymap.c (Fmake_composed_keymap): Move to subr.el.
10202
f26d0e4c
PE
102032011-08-03 Paul Eggert <eggert@cs.ucla.edu>
10204
8a10d76c
PE
10205 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
10206 so that it is not optimized away.
10207
f26d0e4c
PE
10208 * xdisp.c (compute_display_string_pos): Remove unused local.
10209
55439c61
EZ
102102011-08-02 Eli Zaretskii <eliz@gnu.org>
10211
10212 Fix slow cursor motion and scrolling in large buffers with
10213 selective display, like Org Mode buffers. (Bug#9218)
10214
10215 * dispextern.h (struct bidi_it): New member disp_prop_p.
10216
10217 * xdisp.c: Remove one-slot cache of display string positions.
10218 (compute_display_string_pos): Accept an additional argument
5e617bc2 10219 DISP_PROP_P; callers changed. Scan at most 5K characters forward
55439c61
EZ
10220 for a display string or property. If found, set DISP_PROP_P
10221 non-zero.
10222
10223 * bidi.c (bidi_fetch_char): Accept an additional argument
640c8776
SM
10224 DISP_PROP_P, and pass it to compute_display_string_pos.
10225 Only handle text covered by a display string if DISP_PROP_P is returned
55439c61
EZ
10226 non-zero. All callers of bidi_fetch_char changed.
10227
fb33fa43
SM
102282011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
10229
10230 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
10231
b099e063
DM
102322010-12-03 Don March <don@ohspite.net>
10233
10234 * keymap.c (Fdefine_key): Fix non-prefix key error message when
10235 last character M-[char] is translated to ESC [char] (bug#7541).
10236
5cc7f7af
KH
102372011-08-02 Kenichi Handa <handa@m17n.org>
10238
d0fffa3f 10239 * lisp.h (uniprop_table): Extern it.
5cc7f7af
KH
10240
10241 * chartab.c (uniprop_table): Make it non-static.
10242
525d5e6e
EZ
102432011-08-01 Eli Zaretskii <eliz@gnu.org>
10244
10245 * xdisp.c (forward_to_next_line_start): Accept additional argument
10246 BIDI_IT_PREV, and store into it the state of the bidi iterator had
10247 on the newline.
10248 (reseat_at_next_visible_line_start): Use the bidi iterator state
10249 returned by forward_to_next_line_start to restore the state of
10250 it->bidi_it after backing up to previous newline. (Bug#9212)
10251
31011111
AS
102522011-07-30 Andreas Schwab <schwab@linux-m68k.org>
10253
10254 * regex.c (re_comp): Protoize.
10255 (re_exec): Fix return type.
10256 (regexec): Fix type of `ret'. (Bug#9203)
10257
476371c4
PE
102582011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10259
e5d76069
PE
10260 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
10261 This is needed if max-image-size is a floating-point number.
10262
9a79b20c
AS
102632011-07-28 Andreas Schwab <schwab@linux-m68k.org>
10264
10265 * print.c (print_object): Print empty symbol as ##.
10266
10267 * lread.c (read1): Read ## as empty symbol.
10268
d8c2fa78
AA
102692011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
10270
10271 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
10272 setting frame foreground color (Bug#9175).
10273 (x_set_background_color): Likewise.
10274
ffe57a7a
AA
10275 * nsmenu.m (-setText): Size tooltip dimensions precisely to
10276 contents (Bug#9176).
10277 (EmacsTooltip -init): Remove bezels and add shadows to
10278 tooltip windows.
10279
bf3492a5
AA
10280 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
10281 or scroll bar (Bug#8470).
10282
d55e9c53
AA
10283 * nsfont.m (nsfont_open): Remove assignment to voffset and
10284 unnecessary vars hshink, expand, hd, full_height, min_height.
10285 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
10286
10287 * nsterm.h (nsfont_info): Remove voffset field.
10288
d8c2fa78 102892011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
4843aac3
AA
10290
10291 Implement strike-through and overline on NextStep (Bug#8863).
10292
10293 * nsfont.m (nsfont_open): Use underline position provided by font,
10294 instead of hard-coded value of 2.
10295 (nsfont_draw): Call ns_draw_text_decoration instead.
10296
10297 * nsterm.h: Add declaration for ns_draw_text_decoration.
10298
10299 * nsterm.m (ns_draw_text_decoration): New function for drawing
10300 underline, overline, and strike-through.
10301 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
10302 ns_draw_text_decoration. Change treatment of cursor drawing to
8d5ed899 10303 accommodate underlining, etc.
4843aac3 10304
4cc60b9b
EZ
103052011-07-28 Eli Zaretskii <eliz@gnu.org>
10306
bc7ece87
EZ
10307 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
10308 default.
4cc60b9b 10309
476371c4
PE
103102011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10311
66606eea
PE
10312 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
10313 Without this fix, if a signal arrives just after memory fills up,
10314 'malloc' might be invoked reentrantly.
10315
476371c4
PE
10316 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
10317 In other words, assume that every image size is allowed, on non-X
10318 hosts. This assumption is probably wrong, but it lets Emacs compile.
10319
f3fcc40d
AS
103202011-07-28 Andreas Schwab <schwab@linux-m68k.org>
10321
10322 * regex.c (re_iswctype): Convert return values to boolean.
10323
350c992f
EZ
103242011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
10325
10326 * xdisp.c (compute_display_string_pos): Don't use cached display
10327 string position if the buffer had its restriction changed.
10328 (Bug#9184)
10329
5266b4bb
PE
103302011-07-28 Paul Eggert <eggert@cs.ucla.edu>
10331
10332 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
10333
2573a837 103342011-07-28 Paul Eggert <eggert@cs.ucla.edu>
ca4aa935 10335
41f55ccd 10336 Integer signedness and overflow and related fixes. (Bug#9079)
cf950e6b 10337
39e378da
PE
10338 * bidi.c: Integer size and overflow fixes.
10339 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
10340 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
10341 (bidi_cache_find_level_change, bidi_cache_ensure_space)
10342 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
10343 (bidi_find_other_level_edge):
10344 Use ptrdiff_t instead of EMACS_INT where either will do.
10345 This works better on 32-bit hosts configured --with-wide-int.
10346 (bidi_cache_ensure_space): Check for size-calculation overflow.
10347 Use % rather than repeated addition, for better worst-case speed.
10348 Don't set bidi_cache_size until after xrealloc returns, because it
10349 might not return.
10350 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
f0eb61e9
PE
10351 (bidi_cache_ensure_space): Also check that the bidi cache size
10352 does not exceed that of the largest Lisp string or buffer. See Eli
10353 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
39e378da 10354
5e927815
PE
10355 * alloc.c (__malloc_size_t): Remove.
10356 All uses replaced by size_t. See Andreas Schwab's note
10357 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
10358
ca4aa935
PE
10359 * image.c: Improve checking for integer overflow.
10360 (check_image_size): Assume that f is nonnull, since
10361 it is always nonnull in practice. This is one less thing to
10362 worry about when checking for integer overflow later.
10363 (x_check_image_size): New function, which checks for integer
10364 overflow issues inside X.
10365 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
10366 This removes the need for a memory_full check.
10367 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
10368 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
10369 (xbm_read_bitmap_data): Change locals back to 'int', since
10370 their values must fit in 'int'.
10371 (xpm_load_image, png_load, tiff_load):
10372 Invoke x_create_x_image_and_pixmap earlier,
10373 to avoid much needless work if the image is too large.
10374 (tiff_load): Treat overly large images as if
10375 x_create_x_image_and_pixmap failed, not as malloc failures.
10376 (gs_load): Use x_check_image_size.
10377
5f8f9cc2
PE
10378 * gtkutil.c: Omit integer casts.
10379 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
10380 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
10381
5adf60bc
PE
10382 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
10383
c8907a93
PE
10384 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
10385 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
10386 would wrongly return t on a 64-bit host.
10387
e3c25c68
PE
10388 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
10389 The plain *_OVERFLOW macros run afoul of GCC bug 49705
10390 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
10391 and therefore cause GCC to emit a bogus diagnostic in some cases.
10392
3f791afe
PE
10393 * image.c: Integer signedness and overflow and related fixes.
10394 This is not an exhaustive set of fixes, but it's time to
10395 record what I've got.
10396 (lookup_pixel_color, check_image_size): Remove redundant decls.
10397 (check_image_size): Don't assume that arbitrary EMACS_INT values
10398 fit in 'int', or that arbitrary 'double' values fit in 'int'.
10399 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
10400 (tiff_load, imagemagick_load_image):
10401 Check for overflow in size calculations.
10402 (x_create_x_image_and_pixmap): Remove unnecessary test for
10403 xmalloc returning NULL; that can't happen.
10404 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
10405 (xpm_color_bucket): Use better integer hashing function.
10406 (xpm_cache_color): Don't possibly over-allocate memory.
10407 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
10408 (gif_memory_source):
10409 Use ptrdiff_t, not int or size_t, to record sizes.
10410 (png_load): Don't assume values greater than 2**31 fit in 'int'.
10411 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
10412 either works, as we prefer signed integers.
10413 (tiff_read_from_memory, tiff_write_from_memory):
10414 Return tsize_t, not size_t, since that's what the TIFF API wants.
10415 (tiff_read_from_memory): Don't fail simply because the read would
10416 go past EOF; instead, return a short read.
10417 (tiff_load): Omit no-longer-needed casts.
10418 (Fimagemagick_types): Don't assume size fits into 'int'.
10419
3cc5a532
PE
10420 Improve hashing quality when configured --with-wide-int.
10421 * fns.c (hash_string): New function, taken from sxhash_string.
10422 Do not discard information about ASCII character case; this
10423 discarding is no longer needed.
10424 (sxhash-string): Use it. Change sig to match it. Caller changed.
10425 * lisp.h: Declare it.
10426 * lread.c (hash_string): Remove, since we now use fns.c's version.
10427 The fns.c version returns a wider integer if --with-wide-int is
10428 specified, so this should help the quality of the hashing a bit.
10429
b312a492
PE
10430 * emacs.c: Integer overflow minor fix.
10431 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
10432 Define only if GNU_LINUX.
10433 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
10434
dfd153ae
PE
10435 * dispnew.c: Integer signedness and overflow fixes.
10436 Remove unnecessary forward decls, that were a maintenance hassle.
10437 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
10438 All uses changed.
10439 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
10440 (scrolling_window): Use ptrdiff_t, not int, for byte count.
10441 (prepare_desired_row, line_draw_cost):
10442 Use int, not unsigned, where either works.
10443 (save_current_matrix, restore_current_matrix):
10444 Use ptrdiff_t, not size_t, where either works.
10445 (init_display): Check for overflow more accurately, and without
10446 relying on undefined behavior.
10447
a81d11a3
PE
10448 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
10449 Remove, replacing with the new symbols in lisp.h. All uses changed.
10450 * fileio.c (make_temp_name):
10451 * filelock.c (lock_file_1, lock_file):
10452 * xdisp.c (message_dolog):
10453 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
10454 Use pMd etc. instead.
10455 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
10456 replacing the pWIDE etc. symbols removed from editfns.c.
10457
3300e6fd
PE
10458 * keyboard.h (num_input_events): Now uintmax_t.
10459 This is (very slightly) less likely to mess up due to wraparound.
10460 All uses changed.
10461
fd05c7e9
PE
10462 * buffer.c: Integer signedness fixes.
10463 (alloc_buffer_text, enlarge_buffer_text):
10464 Use ptrdiff_t rather than size_t when either will do, as we prefer
10465 signed integers.
10466
903fe15d
PE
10467 * alloc.c: Integer signedness and overflow fixes.
10468 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
10469 (__malloc_size_t): Default to size_t, not to int.
10470 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
10471 (Fgarbage_collect, mark_object_loop_halt, mark_object):
10472 Prefer ptrdiff_t to size_t when either would do, as we prefer
10473 signed integers.
10474 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
10475 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
10476 Now const. Initialize with values that are in range even if char
10477 is signed.
10478 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
10479 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
10480 These functions do the right thing with sizes > 2**32.
10481 (check_depth): Now ptrdiff_t, not int.
10482 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
10483 Adjust to new way of storing sizes. Check for size overflow bugs
10484 in rest of code.
10485 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
10486 slightly wrong anyway, as it missed one instance of
10487 XMALLOC_OVERRUN_CHECK_OVERHEAD.
10488 (refill_memory_reserve): Omit needless cast to size_t.
10489 (mark_object_loop_halt): Mark as externally visible.
10490
ac82cc6a
PE
10491 * xselect.c: Integer signedness and overflow fixes.
10492 (Fx_register_dnd_atom, x_handle_dnd_message):
10493 Use ptrdiff_t, not size_t, since we prefer signed.
10494 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
10495 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
10496 x_dnd_atoms_size and x_dnd_atoms_length.
10497
c2d1e36d
PE
10498 * doprnt.c: Prefer signed to unsigned when either works.
10499 * eval.c (verror):
10500 * doprnt.c (doprnt):
10501 * lisp.h (doprnt):
10502 * xdisp.c (vmessage):
10503 Use ptrdiff_t, not size_t, when using or implementing doprnt,
10504 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
10505 prefer signed arithmetic to avoid comparison confusion.
10506 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
10507 but is a bit tricky.
10508
0e926e56
PE
10509 Assume freestanding C89 headers, string.h, stdlib.h.
10510 * data.c, doprnt.c, floatfns.c, print.c:
10511 Include float.h unconditionally.
10512 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
10513 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
10514 * regex.c: Likewise for stddef.h, string.h.
10515 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
10516 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
10517 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
10518 (STDC_HEADERS): Remove obsolete defines.
10519 * sysdep.c: Include limits.h unconditionally.
10520
9cfdb3ec
PE
10521 Assume support for memcmp, memcpy, memmove, memset.
10522 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
10523 * regex.c (memcmp, memcpy):
10524 Remove; we assume C89 now.
10525
10526 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
10527 (__malloc_safe_bcopy): Remove; no longer needed.
10528
cf950e6b 10529 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
6089c567
PE
10530 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
10531 well either way, and we prefer signed to unsigned.
10532
dbf38e02
LMI
105332011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
10534
10535 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
10536 closes the connection while we're reading (bug#9182).
10537
d6f0886c 105382011-07-25 Jan Djärv <jan.h.d@swipnet.se>
24e0f6b1 10539
d6f0886c
JD
10540 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
10541 are specified (Bug#9168).
24e0f6b1 10542
2eb1f9e6
PE
105432011-07-25 Paul Eggert <eggert@cs.ucla.edu>
10544
10545 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
10546 Found by GCC static checking and --with-wide-int on a 32-bit host.
10547
22381272 105482011-07-25 Eli Zaretskii <eliz@gnu.org>
7daee910
EZ
10549
10550 * xdisp.c (compute_display_string_pos): Fix logic of caching
10551 previous display string position. Initialize cached_prev_pos to
10552 -1. Fixes slow-down at the beginning of a buffer.
10553
f25e39b4
EZ
105542011-07-24 Eli Zaretskii <eliz@gnu.org>
10555
10556 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
10557 for attrs[LFACE_FONTSET_INDEX].
10558
04c4b52e
PE
105592011-07-23 Paul Eggert <eggert@cs.ucla.edu>
10560
10561 * xml.c (parse_region): Remove unused local
10562 that was recently introduced.
10563
c1734fbd
EZ
105642011-07-23 Eli Zaretskii <eliz@gnu.org>
10565
be18c5a5
EZ
10566 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
10567 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
10568
c1734fbd
EZ
10569 * xdisp.c (move_it_in_display_line_to): Record the best matching
10570 position for TO_CHARPOS while scanning the line, and restore it on
640c8776
SM
10571 exit if none of the characters scanned was an exact match.
10572 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
a9269c18
EZ
10573 when exact match is impossible due to invisible text, and the
10574 lines are truncated.
10575
a258d627
JD
105762011-07-23 Jan Djärv <jan.h.d@swipnet.se>
10577
10578 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
10579 for OSX >= 10.7.
10580
b6d5a689
EZ
105812011-07-22 Eli Zaretskii <eliz@gnu.org>
10582
0f74f785
EZ
10583 Fix a significant slow-down of cursor motion with C-n, C-p,
10584 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
10585 auto-repeat under bidi redisplay in fontified buffers.
b6d5a689 10586 * xdisp.c (compute_stop_pos_backwards): New function.
b6d5a689
EZ
10587 (next_element_from_buffer): Call compute_stop_pos_backwards to
10588 find a suitable prev_stop when we find ourselves before
0f74f785
EZ
10589 base_level_stop.
10590 (reseat): Don't look for prev_stop, as that could mean a very long
10591 run.
10592 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
10593 <cached_disp_overlay_modiff>: Cache for last found display string
10594 position.
551918c1 10595 (compute_display_string_pos): Return the cached position if asked
0f74f785
EZ
10596 about the same buffer in the same area of character positions, and
10597 the buffer wasn't changed since the time the display string
10598 position was cached.
551918c1 10599
b2d0c91a
EZ
106002011-07-22 Eli Zaretskii <eliz@gnu.org>
10601
10602 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
10603 is an integer, which is important for empty lines. (Bug#9149)
10604
043604ee
CY
106052011-07-22 Chong Yidong <cyd@stupidchicken.com>
10606
10607 * frame.c (Fmodify_frame_parameters): In tty case, update the
10608 default face if necessary (Bug#4238).
10609
da4adb04
CY
106102011-07-21 Chong Yidong <cyd@stupidchicken.com>
10611
10612 * editfns.c (Fstring_to_char): No need to explain what a character
10613 is in the docstring (Bug#6576).
10614
9abd0532
LMI
106152011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10616
10617 * xml.c (parse_region): Make sure we always return a tree.
10618
36881d16
HK
106192011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
10620
10621 * xml.c (parse_region): If a document contains only comments,
10622 return that, too.
10623
1e98674d
LMI
106242011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
10625
10626 * xml.c (make_dom): Return comments, too.
10627
590bd467
PE
106282011-07-19 Paul Eggert <eggert@cs.ucla.edu>
10629
10630 Port to OpenBSD.
10631 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
10632 and the surrounding thread.
10633 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
10634 rather than fgets, and retry after EINTR. Otherwise, 'emacs
10635 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
10636 timer goes off.
10637 * s/openbsd.h (BROKEN_SIGIO): Define.
10638 * unexelf.c (unexec) [__OpenBSD__]:
10639 Don't update the .mdebug section of the Alpha COFF symbol table.
10640
f41628b2
LMI
106412011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
10642
10643 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
10644 (bug#8460).
10645
b59b67c5
PE
106462011-07-18 Paul Eggert <eggert@cs.ucla.edu>
10647
15e3a074
PE
10648 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
10649 This fixes some race conditions on the permissions of any newly
10650 created file.
10651
41bed37d
PE
10652 * alloc.c (valid_pointer_p): Use pipe, not open.
10653 This fixes some permissions issues when debugging.
10654
b59b67c5
PE
10655 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
10656 If fchown fails to set both uid and gid, try to set just gid,
10657 as that is sometimes allowed. Adjust the file's mode to eliminate
10658 setuid or setgid bits that are inappropriate if fchown fails.
10659
925a6be7
SM
106602011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
10661
10662 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
10663 to compare Lisp_Objects.
10664 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
10665 global_gnutls_log_level, don't mistake it for a Lisp_Object.
10666 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
10667
52968808
AS
106682011-07-17 Andreas Schwab <schwab@linux-m68k.org>
10669
0a6a104b
AS
10670 * lread.c (read_integer): Unread even EOF character.
10671 (read1): Likewise. Properly record start position of symbol.
10672
52968808
AS
10673 * lread.c (read1): Read `#:' as empty uninterned symbol if no
10674 symbol character follows.
10675
9e381cdd
PE
106762011-07-17 Paul Eggert <eggert@cs.ucla.edu>
10677
10678 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
10679 This works around a problem with the previous change to Fcopy_file.
10680 Recent glibc declares fchown with __attribute__((warn_unused_result)),
10681 and without this change, GCC might complain about discarding
10682 fchown's return value.
10683
b5641435
JB
106842011-07-16 Juanma Barranquero <lekktu@gmail.com>
10685
10686 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
10687
a8031457
PE
106882011-07-16 Paul Eggert <eggert@cs.ucla.edu>
10689
10690 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
10691
dd889327
LMI
106922011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
10693
750c33f7
LMI
10694 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
10695 it's used from the C level.
10696
dd889327
LMI
10697 * process.c: Use the same condition for POLL_FOR_INPUT in both
10698 keyboard.c and process.c (bug#1858).
10699
87e86684
LM
107002011-07-09 Lawrence Mitchell <wence@gmx.li>
10701
10702 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
10703 (Fgnutls_boot): Use it.
10704
64348f40
AS
107052011-07-15 Andreas Schwab <schwab@linux-m68k.org>
10706
10707 * doc.c (Fsubstitute_command_keys): Revert last change.
10708
1d698799
LMI
107092011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
10710
f863868c
LMI
10711 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
10712 quotes the next character, and doesn't affect other longer
10713 sequences (bug#8935).
10714
1d698799
LMI
10715 * lread.c (syms_of_lread): Clarify that is isn't only
10716 `eval-buffer' and `eval-defun' that's affected by
10717 `lexical-binding' (bug#8460).
10718
aa4b6df6
EZ
107192011-07-15 Eli Zaretskii <eliz@gnu.org>
10720
10721 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
6b02f655 10722 bidi redisplay when a line includes both an image and is truncated.
aa4b6df6 10723
5d856da6
PE
107242011-07-14 Paul Eggert <eggert@cs.ucla.edu>
10725
ad6042bb
PE
10726 Fix minor problems found by static checking.
10727 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
10728 (elsz): Now a signed constant, not a size_t var. We prefer signed
10729 types to unsigned, to avoid integer comparison confusion. Without
10730 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
10731 "cannot optimize loop, the loop counter may overflow", a symptom
10732 of the confusion.
f00bbb22 10733 * indent.c (Fvertical_motion): Mark locals as initialized.
5d856da6
PE
10734 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
10735
6468f31c
LMI
107362011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10737
49080b10
LMI
10738 * search.c (Fre_search_backward): Mention `case-fold-search' in
10739 all the re_search_* functions (bug#8138).
10740
6468f31c
LMI
10741 * keyboard.c (Fopen_dribble_file): Document when the file is
10742 closed (bug#8056).
10743
c965adc5
EZ
107442011-07-14 Eli Zaretskii <eliz@gnu.org>
10745
df9733bf
EZ
10746 * bidi.c (bidi_dump_cached_states): Fix format of displaying
10747 bidi_cache_idx.
10748
0bb23927
EZ
10749 Support bidi reordering of display and overlay strings.
10750 * xdisp.c (compute_display_string_pos)
10751 (compute_display_string_end): Accept additional argument STRING.
10752 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
10753 (reseat_to_string): Initialize bidi_it->string.s and
10754 bidi_it->string.schars.
10755 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
640c8776
SM
10756 NULL (avoids a crash in bidi_paragraph_init).
10757 Initialize itb.string.lstring.
0bb23927
EZ
10758 (init_iterator): Call bidi_init_it only of a valid
10759 buffer position was specified. Initialize paragraph_embedding to
10760 L2R.
10761 (reseat_to_string): Initialize the bidi iterator.
10762 (display_string): If we need to ignore text properties of
10763 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
10764 original value of -1 will not work with bidi.)
10765 (compute_display_string_pos): First arg is now struct
10766 `text_pos *'; all callers changed. Support display properties on
10767 Lisp strings.
10768 (compute_display_string_end): Support display properties on Lisp
10769 strings.
10770 (init_iterator, reseat_1, reseat_to_string): Initialize the
10771 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
10772 when iterating on a string not from display properties).
640c8776
SM
10773 (compute_display_string_pos, compute_display_string_end):
10774 Fix calculation of the object to scan. Fixes an error when using
0bb23927
EZ
10775 arrow keys.
10776 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
640c8776
SM
10777 base_level_stop; instead, set base_level_stop to BEGV.
10778 Fixes crashes in vertical-motion.
0bb23927
EZ
10779 (next_element_from_buffer): Improve commentary for when
10780 the iterator is before prev_stop.
10781 (init_iterator): Initialize bidi_p from the default value of
10782 bidi-display-reordering, not from buffer-local value. Use the
10783 buffer-local value only if initializing for buffer iteration.
10784 (handle_invisible_prop): Support invisible properties on strings
10785 that are being bidi-reordered.
10786 (set_iterator_to_next): Support bidi reordering of C strings and
10787 Lisp strings.
10788 (next_element_from_string): Support bidi reordering of Lisp
10789 strings.
10790 (handle_stop_backwards): Support Lisp strings as well.
640c8776
SM
10791 (display_string): Support display of R2L glyph rows.
10792 Use IT_STRING_CHARPOS when displaying from a Lisp string.
0bb23927
EZ
10793 (init_iterator): Don't initialize it->bidi_p for strings
10794 here.
10795 (reseat_to_string): Initialize it->bidi_p for strings here.
10796 (next_element_from_string, next_element_from_c_string)
10797 (next_element_from_buffer): Add xassert's for correspondence
10798 between IT's object being iterated and it->bidi_it.string
10799 structure.
10800 (face_before_or_after_it_pos): Support bidi iteration.
10801 (next_element_from_c_string): Handle the case of the first string
10802 character that is not the first one in the visual order.
10803 (get_visually_first_element): New function, refactored from common
10804 parts of next_element_from_buffer, next_element_from_string, and
10805 next_element_from_c_string.
10806 (tool_bar_lines_needed, redisplay_tool_bar)
10807 (display_menu_bar): Force left-to-right direction. Add a FIXME
10808 comment for making that be controlled by a user option.
10809 (push_it, pop_it): Save and restore the state of the
10810 bidi iterator. Save and restore the bidi_p flag.
10811 (pop_it): Iterate out of display property for string iteration as
10812 well.
10813 (iterate_out_of_display_property): Support iteration over strings.
10814 (handle_single_display_spec): Set up it->bidi_it for iteration
10815 over a display string, and call bidi_init_it.
10816 (handle_single_display_spec, next_overlay_string)
10817 (get_overlay_strings_1, push_display_prop): Set up the bidi
10818 iterator for displaying display or overlay strings.
10819 (forward_to_next_line_start): Don't use the shortcut if
10820 bidi-iterating.
10821 (back_to_previous_visible_line_start): If handle_display_prop
10822 pushed the iterator stack, restore the internal state of the bidi
10823 iterator by calling bidi_pop_it same number of times.
10824 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
10825 and we are bidi-iterating, don't decrement the iterator position;
10826 instead, set the first_elt flag in the bidi iterator, to produce
10827 the same effect.
10828 (reseat_1): Remove redundant setting of string_from_display_prop_p.
10829 (push_display_prop): xassert that we are iterating a buffer.
10830 (push_it, pop_it): Save and restore paragraph_embedding member.
10831 (handle_single_display_spec, next_overlay_string)
10832 (get_overlay_strings_1, reseat_1, reseat_to_string)
10833 (push_display_prop): Set up the `unibyte' member of bidi_it.string
10834 correctly. Don't assume unibyte strings are not bidi-reordered.
10835 (compute_display_string_pos)
10836 (compute_display_string_end): Fix handling the case of C string.
10837 (push_it, pop_it): Save and restore from_disp_prop_p.
10838 (handle_single_display_spec, push_display_prop): Set the
10839 from_disp_prop_p flag.
10840 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
10841 (pop_it): Call iterate_out_of_display_property only if we are
10842 popping after iteration over a string that came from a display
10843 property. Fix a typo in popping stretch info. Add an assertion
10844 for verifying that the iterator position is in sync with the bidi
10845 iterator.
10846 (handle_single_display_spec, get_overlay_strings_1)
10847 (push_display_prop): Fix initialization of paragraph direction for
10848 string when that of the parent object is not yet determined.
10849 (reseat_1): Call bidi_init_it to resync the bidi
10850 iterator with IT's position. (Bug#7616)
10851 (find_row_edges): If ROW->start.pos gives position
10852 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
10853 (handle_stop, back_to_previous_visible_line_start, reseat_1):
10854 Reset the from_disp_prop_p flag.
10855 (SAVE_IT, RESTORE_IT): New macros.
10856 (pos_visible_p, face_before_or_after_it_pos)
10857 (back_to_previous_visible_line_start)
10858 (move_it_in_display_line_to, move_it_in_display_line)
10859 (move_it_to, move_it_vertically_backward, move_it_by_lines)
10860 (try_scrolling, redisplay_window, display_line): Use them when
10861 saving a temporary copy of the iterator and restoring it back.
10862 (back_to_previous_visible_line_start, reseat_1)
10863 (init_iterator): Empty the bidi cache "stack".
10864 (move_it_in_display_line_to): If iterator ended up at
10865 EOL, but we never saw any buffer positions smaller than
10866 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
10867 motion in bidi-reordered lines.
10868 (move_it_in_display_line_to): Record prev_method and prev_pos
10869 immediately before the call to set_iterator_to_next. Fixes cursor
10870 motion in bidi-reordered lines with stretch glyphs and strings
10871 displayed in margins. (Bug#8133) (Bug#8867)
10872 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
10873 TO_CHARPOS.
640c8776
SM
10874 (pos_visible_p): Support positions in bidi-reordered lines.
10875 Save and restore bidi cache.
0bb23927
EZ
10876
10877 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
10878 (bidi_paragraph_info): Delete unused struct.
10879 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
10880 (bidi_cache_start): New variable.
10881 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
10882 to zero.
10883 (bidi_cache_fetch_state, bidi_cache_search)
10884 (bidi_cache_find_level_change, bidi_cache_iterator_state)
10885 (bidi_cache_find, bidi_peek_at_next_level)
10886 (bidi_level_of_next_char, bidi_find_other_level_edge)
10887 (bidi_move_to_visually_next): Compare cache index with
10888 bidi_cache_start rather than with zero.
10889 (bidi_fetch_char): Accept new argument STRING; all callers
10890 changed. Support iteration over a string. Support strings with
10891 display properties. Support unibyte strings. Fix the type of
10892 `len' according to what STRING_CHAR_AND_LENGTH expects.
10893 (bidi_paragraph_init, bidi_resolve_explicit_1)
10894 (bidi_resolve_explicit, bidi_resolve_weak)
640c8776
SM
10895 (bidi_level_of_next_char, bidi_move_to_visually_next):
10896 Support iteration over a string.
0bb23927
EZ
10897 (bidi_set_sor_type, bidi_resolve_explicit_1)
10898 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
10899 can now be zero (for strings); special values 0 and -1 were
10900 changed to -1 and -2, respectively.
10901 (bidi_char_at_pos): New function.
10902 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
10903 Call it instead of FETCH_MULTIBYTE_CHAR.
10904 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
10905 initialized to valid values.
10906 (bidi_init_it): Don't initialize charpos and bytepos with invalid
10907 values.
10908 (bidi_level_of_next_char): Allow the sentinel "position" to pass
10909 the test for valid cached positions. Fix the logic for looking up
10910 the sentinel state in the cache. GCPRO the Lisp string we are
10911 iterating.
10912 (bidi_push_it, bidi_pop_it): New functions.
10913 (bidi_initialize): Initialize the bidi cache start stack pointer.
10914 (bidi_cache_ensure_space): New function, refactored from part of
10915 bidi_cache_iterator_state. Don't assume the required size is just
10916 one BIDI_CACHE_CHUNK away.
10917 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
10918 (bidi_count_bytes, bidi_char_at_pos): New functions.
10919 (bidi_cache_search): Don't assume bidi_cache_last_idx is
10920 always valid if bidi_cache_idx is valid.
10921 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
10922 is valid if it's going to be used.
10923 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
10924 (bidi_cache_fetch_state, bidi_cache_search)
c965adc5
EZ
10925 (bidi_cache_find_level_change, bidi_cache_ensure_space)
10926 (bidi_cache_iterator_state, bidi_cache_find)
640c8776
SM
10927 (bidi_find_other_level_edge, bidi_cache_start_stack):
10928 All variables related to cache indices are now EMACS_INT.
c965adc5 10929
0bb23927
EZ
10930 * dispextern.h (struct bidi_string_data): New structure.
10931 (struct bidi_it): New member `string'. Make flag members be 1-bit
10932 fields, and put them last in the struct.
640c8776
SM
10933 (compute_display_string_pos, compute_display_string_end):
10934 Update prototypes.
0bb23927
EZ
10935 (bidi_push_it, bidi_pop_it): Add prototypes.
10936 (struct iterator_stack_entry): New members bidi_p,
10937 paragraph_embedding, and from_disp_prop_p.
10938 (struct it): Member bidi_p is now a bit field 1 bit wide.
640c8776
SM
10939 (bidi_shelve_cache, bidi_unshelve_cache):
10940 Declare prototypes.
0bb23927
EZ
10941
10942 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
10943 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
10944 and vector-like objects.
10945
10946 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
10947 cache around display iteration.
10948
10949 * window.c (Fwindow_end, window_scroll_pixel_based)
10950 (displayed_window_lines, Frecenter): Save and restore the bidi
10951 cache around display iteration.
10952
3bbd2265
LMI
109532011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
10954
10955 * editfns.c (Fdelete_region): Clarify the use of the named
10956 parameters (bug#6788).
10957
adc47434
MR
109582011-07-14 Martin Rudalics <rudalics@gmx.at>
10959
10960 * indent.c (Fvertical_motion): Set and restore w->pointm when
10961 saving and restoring the window's buffer (Bug#9006).
10962
837c31f8
LMI
109632011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
10964
10965 * editfns.c (Fstring_to_char): Clarify just what is returned
10966 (bug#6576). Text by Eli Zaretskii.
10967
ac389d0c
JB
109682011-07-13 Juanma Barranquero <lekktu@gmail.com>
10969
10970 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
10971
0be0ce47
EZ
109722011-07-13 Eli Zaretskii <eliz@gnu.org>
10973
10974 * buffer.c (mmap_find): Fix a typo.
10975
cd18e7e3
JB
109762011-07-13 Johan Bockgård <bojohan@gnu.org>
10977
10978 Fix execution of x selection hooks.
10979 * xselect.c (Qx_lost_selection_functions)
10980 (Qx_sent_selection_functions): New vars.
10981 (syms_of_xselect): DEFSYM them.
10982 (x_handle_selection_request): Pass Qx_sent_selection_functions
10983 rather than Vx_sent_selection_functions to Frun_hook_with_args.
10984 (x_handle_selection_clear,x_clear_frame_selections):
10985 Pass Qx_lost_selection_functions rather than
10986 Vx_lost_selection_functions to Frun_hook_with_args.
10987
47ea7f44
PE
109882011-07-13 Paul Eggert <eggert@cs.ucla.edu>
10989
ac389d0c 10990 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
2941c447
PE
10991 The old code sometimes used this field without initializing it.
10992
47ea7f44
PE
10993 * alloc.c (gc_sweep): Don't read past end of array.
10994 In theory, the old code could also have corrupted Emacs internals,
10995 though it'd be very unlikely.
10996
bc985c87
AS
109972011-07-12 Andreas Schwab <schwab@linux-m68k.org>
10998
10999 * character.c (Fcharacterp): Don't advertise optional ignored
ac389d0c 11000 argument. (Bug#4026)
bc985c87 11001
0cf34688
LMI
110022011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
11003
b3dadd76
LMI
11004 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
11005 key" (bug#4257).
11006
0cf34688
LMI
11007 * window.c (Fset_window_start): Doc fix (bug#4199).
11008 (Fset_window_hscroll): Ditto.
11009
270768cd
PE
110102011-07-12 Paul Eggert <eggert@cs.ucla.edu>
11011
077e3dda 11012 Fix minor new problems caught by GCC 4.6.1.
270768cd 11013 * term.c (init_tty): Remove unused local.
490011a6 11014 * xsettings.c (store_monospaced_changed): Define this function only
077e3dda 11015 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
490011a6 11016 not used otherwise.
270768cd 11017
b1f58454
CY
110182011-07-12 Chong Yidong <cyd@stupidchicken.com>
11019
11020 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
11021
22b9578d
LMI
110222011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
11023
6e70ab07
LMI
11024 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
11025 are the mini-buffer and the echo area (bug#3320).
11026
22b9578d
LMI
11027 * term.c (init_tty): Remove support for supdup, c10 and perq
11028 terminals, which are no longer supported (bug#1482).
11029
8974cc9f
JB
110302011-07-10 Johan Bockgård <bojohan@gnu.org>
11031
11032 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
11033
a560d974
JD
110342011-07-10 Jan Djärv <jan.h.d@swipnet.se>
11035
11036 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
11037 for non-popups (Bug#3642).
11038
1dae0f0a
AS
110392011-07-10 Andreas Schwab <schwab@linux-m68k.org>
11040
268c2c36 11041 * alloc.c (reset_malloc_hooks): Protoize.
1dae0f0a 11042 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
268c2c36
AS
11043 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
11044 * cm.c (losecursor): Likewise.
1dae0f0a
AS
11045 * data.c (fmod): Likewise.
11046 * dispnew.c (swap_glyphs_in_rows): Likewise.
11047 * emacs.c (memory_warning_signal): Likewise.
11048 * floatfns.c (float_error): Likewise.
11049 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
11050 (otf_open, font_otf_capability, generate_otf_features)
11051 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
11052 Likewise.
11053 * image.c (pbm_read_file): Likewise.
11054 * indent.c (string_display_width): Likewise.
11055 * intervals.c (check_for_interval, search_for_interval)
11056 (inc_interval_count, count_intervals, root_interval)
11057 (adjust_intervals_for_insertion, make_new_interval): Likewise.
11058 * lread.c (defalias): Likewise.
268c2c36 11059 * ralloc.c (r_alloc_check): Likewise.
1dae0f0a
AS
11060 * regex.c (set_image_of_range_1, set_image_of_range)
11061 (regex_grow_registers): Likewise.
11062 * sysdep.c (strerror): Likewise.
11063 * termcap.c (valid_filename_p, tprint, main): Likewise.
11064 * tparam.c (main): Likewise.
11065 * unexhp9k800.c (run_time_remap, save_data_space)
11066 (update_file_ptrs, read_header, write_header, calculate_checksum)
11067 (copy_file, copy_rest, display_header): Likewise.
11068 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
11069 Likewise.
11070 * xdisp.c (check_it): Likewise.
11071 * xfaces.c (register_color, unregister_color, unregister_colors):
11072 Likewise.
11073 * xfns.c (print_fontset_result): Likewise.
11074 * xrdb.c (member, fatal, main): Likewise.
11075
99033785
PE
110762011-07-10 Paul Eggert <eggert@cs.ucla.edu>
11077
11078 Fix minor problems found by static checking (Bug#9031).
11079 * chartab.c (char_table_set_range, map_sub_char_table):
11080 Remove unused locals.
11081 (uniprop_table): Now static.
11082 * composite.c (_work_char): Remove unused static var.
11083
9cb2ac56
JB
110842011-07-09 Juanma Barranquero <lekktu@gmail.com>
11085
11086 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
11087
f25661f0
JD
110882011-07-09 Jan Djärv <jan.h.d@swipnet.se>
11089
11090 * gtkutil.c (qttip_cb): Remove code without function.
11091
8278c4fe
EZ
110922011-07-09 Eli Zaretskii <eliz@gnu.org>
11093
11094 * w32.c (pthread_sigmask): New stub.
11095
1692ae2d 110962011-07-08 Paul Eggert <eggert@cs.ucla.edu>
123403e4 11097
8a6ebd58 11098 Use pthread_sigmask, not sigprocmask (Bug#9010).
123403e4
PE
11099 sigprocmask is portable only for single-threaded applications, and
11100 Emacs can be multi-threaded when it uses GTK.
1301ac26
PE
11101 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
11102 (LIBES): Use it.
11103 * callproc.c (Fcall_process):
11104 * process.c (create_process):
11105 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
11106 Use pthread_sigmask, not sigprocmask.
123403e4 11107
1b854618
JD
111082011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11109
11110 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
11111 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
11112 wrong (Bug#8591).
11113
3fe4b549
JD
111142011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11115
0ce7e563
JD
11116 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
11117 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
11118 (xg_hide_tooltip): Fix comment.
11119
3fe4b549
JD
11120 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
11121 in registerServicesMenuSendTypes.
11122 (validRequestorForSendType): Don't check ns_return_types.
11123
11124 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
11125 ns_return_type.
11126
5df75e47
JR
111272011-07-08 Jason Rumney <jasonr@gnu.org>
11128
22610910
JR
11129 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
11130 SH_SHOW for hidden windows (Bug#5482).
11131
5df75e47
JR
11132 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
11133 frame struct members of non-existent frames (Bug#6284).
11134
699c10bd
JD
111352011-07-08 Jan Djärv <jan.h.d@swipnet.se>
11136
4393663b
JD
11137 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
11138 variable firstTime not needed on OSX >= 10.6.
11139 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
11140 >= 10.5. Use setKnobProportion, setDoubleValue.
11141
11142 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
11143 (MAC_OS_X_VERSION_10_5): Define if not defined.
11144 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
11145 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
11146 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
11147
11148 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
090bd7cb 11149 cString and lossyCString on OSX >= 10.4.
4393663b 11150
58179cce 11151 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
4393663b
JD
11152 sizeToFit on OSX >= 10.2.
11153
11154 * nsimage.m (allocInitFromFile): Don't use deprecated method
11155 bestRepresentationForDevice on OSX >= 10.6.
11156
11157 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
11158 to avoid warning.
11159
11160 * emacs.c: Declare unexec_init_emacs_zone.
11161
a63e0781
JD
11162 * nsgui.h: Fix compiler warning about gnulib redefining verify.
11163
699c10bd
JD
11164 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
11165
11166 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
11167 on svcsMenu (Bug#8842).
11168
11169 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
11170 ns_return_types.
11171 (Fns_list_services): Just return Qnil on 10.6, code not working there.
11172
11173 * nsterm.m (QUTF8_STRING): Declare.
11174 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
11175 (validRequestorForSendType): Return type is (id).
11176 Change indexOfObjectIdenticalTo to indexOfObject.
11177 Check if we have local selection before returning self (Bug#8842).
11178 (writeSelectionToPasteboard): Put local selection into paste board
11179 if we have a local selection (Bug#8842).
11180 (syms_of_nsterm): DEFSYM QUTF8_STRING.
11181
11182 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
11183 (ns_get_local_selection): Declare.
11184
54e10184
LMI
111852011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
11186
9888ff71
LMI
11187 * keymap.c (describe_map_tree): Don't insert a double newline at
11188 the end of the buffer (bug#1169) and return whether we inserted
11189 something.
11190
54e10184
LMI
11191 * callint.c (Fcall_interactively): Change "reading args" to
11192 "providing args" to try to clarify what it does (bug#1010).
11193
15fa4783
KH
111942011-07-07 Kenichi Handa <handa@m17n.org>
11195
11196 * composite.c (composition_compute_stop_pos): Ignore a static
11197 composition starting before CHARPOS (Bug#8915).
11198
11199 * xdisp.c (handle_composition_prop): Likewise.
11200
a8815b00
EZ
112012011-07-07 Eli Zaretskii <eliz@gnu.org>
11202
11203 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
11204 (Bug#9015)
11205
ef7b981d 112062011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
11207
11208 * character.h (unicode_category_t): New enum type.
11209
11210 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
11211 (Qchar_code_property_table): New variable.
11212 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
11213 (UNIPROP_COMPRESSED_FORM_P): New macros.
11214 (char_table_ascii): Uncompress the compressed values.
11215 (sub_char_table_ref): New arg is_uniprop. Callers changed.
11216 Uncompress the compressed values.
ac389d0c 11217 (sub_char_table_ref_and_range): Likewise.
c805dec0
KH
11218 (char_table_ref_and_range): Uncompress the compressed values.
11219 (sub_char_table_set): New arg is_uniprop. Callers changed.
11220 Uncompress the compressed values.
11221 (sub_char_table_set_range): Args changed. Callers changed.
11222 (char_table_set_range): Adjuted for the above change.
11223 (map_sub_char_table): Delete args default_val and parent. Add arg
11224 top. Give decoded values to a Lisp function.
640c8776 11225 (map_char_table): Adjust for the above change. Give decoded
c805dec0
KH
11226 values to a Lisp function. Gcpro more variables.
11227 (uniprop_table_uncompress)
11228 (uniprop_decode_value_run_length): New functions.
11229 (uniprop_decoder, uniprop_decoder_count): New variables.
11230 (uniprop_get_decoder, uniprop_encode_value_character)
11231 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
11232 New functions.
11233 (uniprop_encoder, uniprop_encoder_count): New variables.
11234 (uniprop_get_encoder, uniprop_table)
11235 (Funicode_property_table_internal, Fget_unicode_property_internal)
11236 (Fput_unicode_property_internal): New functions.
11237 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
11238 Sunicode_property_table_internal, Sget_unicode_property_internal,
5e617bc2 11239 and Sput_unicode_property_internal. Defvar_lisp
c805dec0
KH
11240 char-code-property-alist.
11241
640c8776 11242 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
c805dec0
KH
11243 Vunicode_category_table.
11244
640c8776 11245 * font.c (font_range): Adjust for the change of
c805dec0
KH
11246 Vunicode_category_table.
11247
76b397fb
DN
112482011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
11249
11250 * m/iris4d.h: Remove file, move contents ...
11251 * s/irix6-5.h: ... here.
11252
22b4128e
PE
112532011-07-06 Paul Eggert <eggert@cs.ucla.edu>
11254
11255 Remove unportable assumption about struct layout (Bug#8884).
8a5c77bb
PE
11256 * alloc.c (mark_buffer):
11257 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
11258 (clone_per_buffer_values): Don't assume that
22b4128e
PE
11259 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
11260 This isn't true in general, and it's particularly not true
11261 if Emacs is configured with --with-wide-int.
11262 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
11263 New macros, used in the buffer.c change.
11264
869795d6
JD
112652011-07-05 Jan Djärv <jan.h.d@swipnet.se>
11266
11267 * xsettings.c: Use both GConf and GSettings if both are available.
11268 (store_config_changed_event): Add comment.
11269 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
11270 (store_tool_bar_style_changed): New functions.
5e617bc2 11271 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
869795d6
JD
11272 (struct xsettings): Move font inside HAVE_XFT.
11273 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
640c8776 11274 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
869795d6 11275 Move inside HAVE_XFT.
640c8776 11276 (something_changed_gsettingsCB): Rename from something_changedCB.
869795d6
JD
11277 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
11278 also.
11279 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
5e617bc2 11280 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
640c8776 11281 (something_changed_gconfCB): Rename from something_changedCB.
869795d6
JD
11282 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
11283 (parse_settings): Move check for font inside HAVE_XFT.
11284 (read_settings, apply_xft_settings): Add comment.
11285 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
11286 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
11287 call store_font_name_changed.
11288 (xft_settings_event): Add comment.
11289 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
11290 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
11291 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
11292 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
11293 (xsettings_initialize): Call init_gsettings last.
640c8776
SM
11294 (xsettings_get_system_font, xsettings_get_system_normal_font):
11295 Add comment.
869795d6 11296
d8ed26bd
PE
112972011-07-05 Paul Eggert <eggert@cs.ucla.edu>
11298
11299 Random fixes. E.g., (random) never returned negative values.
11300 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
11301 subseconds part to the entropy, as that's a bit more random.
11302 Prefer signed to unsigned, since the signedness doesn't matter and
11303 in general we prefer signed. When given a limit, use a
11304 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
11305 latter isn't right if USE_2_TAGS_FOR_INTS.
11306 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
11307 not 0..VALMASK. Don't discard "excess" bits that random () returns.
11308
cabf1cac
SM
113092011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
11310
11311 * textprop.c (text_property_stickiness):
11312 Obey Vtext_property_default_nonsticky.
11313 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
11314 * w32fns.c (syms_of_w32fns):
11315 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
11316
6e9b2be9
PE
113172011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11318
11319 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
11320 This is more efficient than Ffile_directory_p and avoids a minor race.
11321
90186c68
LMI
113222011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
11323
7c301272
LMI
11324 * buffer.c (Foverlay_put): Say what the return value is
11325 (bug#7835).
11326
c4f2d8d4
LMI
11327 * fileio.c (barf_or_query_if_file_exists): Check first if the file
11328 is a directory before asking whether to use the file name
11329 (bug#7564).
ad637907
LMI
11330 (barf_or_query_if_file_exists): Make the "File is a directory"
11331 error be more correct.
c4f2d8d4 11332
90186c68
LMI
11333 * fns.c (Frequire): Remove the mention of the .gz files, since
11334 that's installation-specific, but keep the mention of
11335 `get-load-suffixes'.
11336
da64016e
PE
113372011-07-04 Paul Eggert <eggert@cs.ucla.edu>
11338
11339 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
11340 Report string overflow if the output is too long.
11341
7d47b580
JB
113422011-07-04 Juanma Barranquero <lekktu@gmail.com>
11343
a555cb87
JB
11344 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
11345 (syms_of_gnutls): Remove duplicate DEFSYM for
11346 Qgnutls_bootprop_verify_hostname_error, an error for
11347 Qgnutls_bootprop_verify_error (which is no longer used).
11348
7d47b580
JB
11349 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
11350 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
11351 Also (re)move comments that are misplaced or no longer relevant.
11352
1e49bfab
LMI
113532011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11354
11355 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
11356
1485f4c0
CY
113572011-07-03 Chong Yidong <cyd@stupidchicken.com>
11358
11359 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
11360 and background color parameters if they have been changed.
11361
a9ab721e
LMI
113622011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
11363
11364 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
11365
cf7cff57
PE
113662011-07-03 Paul Eggert <eggert@cs.ucla.edu>
11367
2e13213d
PE
11368 * xsettings.c (SYSTEM_FONT): Define only when used.
11369 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
11370
cf7cff57
PE
11371 * keymap.c (access_keymap_1): Now static.
11372
7a8e04f7
CY
113732011-07-02 Chong Yidong <cyd@stupidchicken.com>
11374
11375 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
11376 leave any prefix arg for the up event (Bug#1586).
11377
61352f62
LMI
113782011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
11379
69bb1ef7
LMI
11380 * lread.c (syms_of_lread): Mention single symbols defined by
11381 `defvar' or `defconst' (bug#7154).
11382
61352f62 11383 * fns.c (Frequire): Mention .el.gz files (bug#7314).
7b3747f9 11384 (Frequire): Mention get-load-suffixes.
61352f62 11385
28545e04
MR
113862011-07-02 Martin Rudalics <rudalics@gmx.at>
11387
11388 * window.h (window): Remove clone_number slot.
11389 * window.c (Fwindow_clone_number, Fset_window_clone_number):
11390 Remove.
11391 (make_parent_window, make_window, saved_window)
11392 (Fset_window_configuration, save_window_save): Don't deal with
11393 clone numbers.
11394 * buffer.c (Qclone_number): Remove declaration.
11395 (sort_overlays, overlay_strings): Don't deal with clone numbers.
11396
3349e122
SM
113972011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
11398
11399 Add multiple inheritance to keymaps.
11400 * keymap.c (Fmake_composed_keymap): New function.
11401 (Fset_keymap_parent): Simplify.
11402 (fix_submap_inheritance): Remove.
11403 (access_keymap_1): New function extracted from access_keymap to handle
11404 embedded parents and handle lists of maps.
11405 (access_keymap): Use it.
11406 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
11407 (Fcopy_keymap): Handle embedded parents.
11408 (Fcommand_remapping, define_as_prefix): Simplify.
11409 (Fkey_binding): Simplify.
11410 (syms_of_keymap): Move minibuffer-local-completion-map,
11411 minibuffer-local-filename-completion-map,
11412 minibuffer-local-must-match-map, and
11413 minibuffer-local-filename-must-match-map to Elisp.
11414 (syms_of_keymap): Defsubr make-composed-keymap.
11415 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
11416 (parse_menu_item): Trivial simplification.
11417
3279eb87
GM
114182011-07-01 Glenn Morris <rgm@gnu.org>
11419
11420 * Makefile.in (SETTINGS_LIBS): Fix typo.
11421
39cb9e56 114222011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4550efdf
KI
11423
11424 * coding.c (Fencode_coding_string): Record the last coding system
11425 used, as the function doc string says (bug#8738).
11426
0949d2b6
JD
114272011-07-01 Jan Djärv <jan.h.d@swipnet.se>
11428
11429 * xsettings.c (store_monospaced_changed): Take new font as arg and
11430 check for change against current_mono_font.
11431 (EMACS_TYPE_SETTINGS): Remove this and related defines.
11432 (emacs_settings_constructor, emacs_settings_get_property)
11433 (emacs_settings_set_property, emacs_settings_class_init)
11434 (emacs_settings_init, gsettings_obj): Remove.
11435 (something_changedCB): New function for HAVE_GSETTINGS.
11436 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
11437 with value as argument.
11438 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
11439 g_settings_new (Bug#8967). Do not create gsettings_obj.
9173deec 11440 Remove calls to g_settings_bind. Connect something_changedCB to
0949d2b6
JD
11441 "changed".
11442
11443 * xgselect.c: Add defined (HAVE_GSETTINGS).
11444 (xgselect_initialize): Ditto.
11445
11446 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
11447 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
11448 xg_select.
11449
bbc6b304
PE
114502011-07-01 Paul Eggert <eggert@cs.ucla.edu>
11451
11452 * eval.c (struct backtrace): Simplify and port the data structure.
11453 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
11454 signed bit field, as this assumption is not portable and it makes
11455 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
11456 "char debug_on_exit : 1" as this is not portable either; instead,
11457 use the portable "unsigned int debug_on_exit : 1". Remove unused
11458 member evalargs. Remove obsolete comments about cc bombing out.
11459
9851bfc5
JD
114602011-06-30 Jan Djärv <jan.h.d@swipnet.se>
11461
51bb811f 11462 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
9851bfc5
JD
11463 Let HAVE_GSETTINGS override HAVE_GCONF.
11464 (store_monospaced_changed): New function.
11465 (EMACS_SETTINGS): A new type derived from GObject to handle
11466 GSettings notifications.
11467 (emacs_settings_constructor, emacs_settings_get_property)
11468 (emacs_settings_set_property, emacs_settings_class_init):
11469 New functions.
11470 (gsettings_client, gsettings_obj): New variables.
11471 (GSETTINGS_SCHEMA): New define.
11472 (something_changedCB): Call store_monospaced_changed.
11473 (init_gsettings): New function.
11474 (xsettings_initialize): Call init_gsettings.
11475 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
11476 to NULL.
11477
640c8776 11478 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
9851bfc5
JD
11479 GCONF_CFLAGS/LIBS.
11480
5386012d
MR
114812011-06-29 Martin Rudalics <rudalics@gmx.at>
11482
11483 * window.c (resize_root_window, grow_mini_window)
11484 (shrink_mini_window): Rename Qresize_root_window to
11485 Qwindow_resize_root_window and Qresize_root_window_vertically to
11486 Qwindow_resize_root_window_vertically.
11487
f13e0b08
PE
114882011-06-28 Paul Eggert <eggert@cs.ucla.edu>
11489
11490 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
11491
94515237
JB
114922011-06-27 Juanma Barranquero <lekktu@gmail.com>
11493
11494 * makefile.w32-in: Redesign dependencies so they reflect more
11495 clearly which files are directly included by each source file,
11496 and not through other includes.
11497
e43b6e43
MR
114982011-06-27 Martin Rudalics <rudalics@gmx.at>
11499
11500 * buffer.c (Qclone_number): Declare static and DEFSYM it.
11501 (sort_overlays, overlay_strings): When an overlay's clone number
11502 matches the window's clone number process the overlay even if
11503 the overlay's window property doesn't match the current window.
11504
d68443dc
MR
11505 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
11506 (Fwindow_hchild): Rename to Fwindow_left_child.
11507 (Fwindow_next): Rename to Fwindow_next_sibling.
11508 (Fwindow_prev): Rename to Fwindow_prev_sibling.
d615d6d2
MR
11509 (resize_window_check): Rename to window_resize_check.
11510 (resize_window_apply): Rename to window_resize_apply.
11511 (Fresize_window_apply): Rename to Fwindow_resize_apply.
11512 (Fdelete_other_windows_internal, resize_frame_windows)
11513 (Fsplit_window_internal, Fdelete_window_internal)
11514 (grow_mini_window, shrink_mini_window)
11515 (Fresize_mini_window_internal): Fix callers accordingly.
d68443dc 11516
c7e73be5
JD
115172011-06-26 Jan Djärv <jan.h.d@swipnet.se>
11518
11519 * emacsgtkfixed.h: State that this is only used with Gtk+3.
11520 (emacs_fixed_set_min_size): Remove.
11521 (emacs_fixed_new): Take frame as argument.
11522
11523 * emacsgtkfixed.c: State that this is only used with Gtk+3.
11524 (_EmacsFixedPrivate): Remove minwidth/height.
11525 Add struct frame *f.
11526 (emacs_fixed_init): Initialize priv->f.
11527 (get_parent_class, emacs_fixed_set_min_size): Remove.
11528 (emacs_fixed_new): Set priv->f to argument.
11529 (emacs_fixed_get_preferred_width)
11530 (emacs_fixed_get_preferred_height): Use min_width/height from
11531 frames size_hint to set minimum and natural (Bug#8919).
11532 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
11533 and use min_width/height from frames size_hint to set
11534 min_width/height (Bug#8919).
11535
11536 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
9173deec
JB
11537 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
11538 Fix indentation.
c7e73be5 11539
cf99dcf8
EZ
115402011-06-26 Eli Zaretskii <eliz@gnu.org>
11541
11542 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
11543 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
11544 called at ZV.
11545
029529ac
CY
115462011-06-26 Chong Yidong <cyd@stupidchicken.com>
11547
11548 * process.c (wait_reading_process_output): Bypass select if
11549 waiting for a cell while ignoring keyboard input, and input is
11550 pending. Suggested by Jan Djärv (Bug#8869).
11551
7a7ef429
PE
115522011-06-25 Paul Eggert <eggert@cs.ucla.edu>
11553
11554 Use gnulib's dup2 module instead of rolling our own.
11555 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
11556
11fdef7d 115572011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
989b42d2
YM
11558
11559 * dispnew.c (scrolling_window): Before scrolling, turn off a
11560 mouse-highlight in the window being scrolled.
11561
cd3520a4
JB
115622011-06-24 Juanma Barranquero <lekktu@gmail.com>
11563
11564 Move DEFSYM to lisp.h and use everywhere.
11565
11566 * character.h (DEFSYM): Move declaration...
11567 * lisp.h (DEFSYM): ...here.
11568
11569 * gnutls.c:
11570 * minibuf.c:
11571 * w32menu.c:
11572 * w32proc.c:
11573 * w32select.c: Don't include character.h.
11574
11575 * alloc.c (syms_of_alloc):
11576 * buffer.c (syms_of_buffer):
11577 * bytecode.c (syms_of_bytecode):
11578 * callint.c (syms_of_callint):
11579 * casefiddle.c (syms_of_casefiddle):
11580 * casetab.c (init_casetab_once):
11581 * category.c (init_category_once, syms_of_category):
11582 * ccl.c (syms_of_ccl):
11583 * cmds.c (syms_of_cmds):
11584 * composite.c (syms_of_composite):
11585 * dbusbind.c (syms_of_dbusbind):
11586 * dired.c (syms_of_dired):
11587 * dispnew.c (syms_of_display):
11588 * doc.c (syms_of_doc):
11589 * editfns.c (syms_of_editfns):
11590 * emacs.c (syms_of_emacs):
11591 * eval.c (syms_of_eval):
11592 * fileio.c (syms_of_fileio):
11593 * fns.c (syms_of_fns):
11594 * frame.c (syms_of_frame):
11595 * fringe.c (syms_of_fringe):
11596 * insdel.c (syms_of_insdel):
11597 * keymap.c (syms_of_keymap):
11598 * lread.c (init_obarray, syms_of_lread):
11599 * macros.c (syms_of_macros):
11600 * msdos.c (syms_of_msdos):
11601 * print.c (syms_of_print):
11602 * process.c (syms_of_process):
11603 * search.c (syms_of_search):
11604 * sound.c (syms_of_sound):
11605 * syntax.c (init_syntax_once, syms_of_syntax):
11606 * terminal.c (syms_of_terminal):
11607 * textprop.c (syms_of_textprop):
11608 * undo.c (syms_of_undo):
11609 * w32.c (globals_of_w32):
11610 * window.c (syms_of_window):
11611 * xdisp.c (syms_of_xdisp):
11612 * xfaces.c (syms_of_xfaces):
11613 * xfns.c (syms_of_xfns):
11614 * xmenu.c (syms_of_xmenu):
11615 * xsettings.c (syms_of_xsettings):
11616 * xterm.c (syms_of_xterm): Use DEFSYM.
11617
4228cf16
TZ
116182011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
11619
cd3520a4 11620 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
4228cf16 11621
7fcccf1e
PE
116222011-06-23 Paul Eggert <eggert@cs.ucla.edu>
11623
7efb4e0e
PE
11624 Integer and buffer overflow fixes (Bug#8873).
11625
ff5844ad
PE
11626 * print.c (printchar, strout): Check for string overflow.
11627 (PRINTPREPARE, printchar, strout):
11628 Don't set size unless allocation succeeds.
11629
90532f02
PE
11630 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
11631 for sizes. Check for string overflow more accurately.
11632 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
11633
6d84508d
PE
11634 * macros.c: Integer and buffer overflow fixes.
11635 * keyboard.h (struct keyboard.kbd_macro_bufsize):
11636 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
11637 Use ptrdiff_t, not int, for sizes.
11638 Don't increment bufsize until after realloc succeeds.
11639 Check for size-calculation overflow.
11640 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
11641
437b2cb4
PE
11642 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
11643
8b9ac8b4
PE
11644 * lread.c: Integer overflow fixes.
11645 (read_integer): Radix is now EMACS_INT, not int,
11646 to improve quality of diagnostics for out-of-range radices.
11647 Calculate buffer size correctly for out-of-range radices.
11648 (read1): Check for integer overflow in radices, and in
11649 read-circle numbers.
82cb60d3
PE
11650 (read_escape): Avoid int overflow.
11651 (Fload, openp, read_buffer_size, read1)
11652 (substitute_object_recurse, read_vector, read_list, map_obarray):
11653 Use ptrdiff_t, not int, for sizes.
11654 (read1): Use EMACS_INT, not int, for sizes.
20270765 11655 Check for size overflow.
8b9ac8b4 11656
7fcccf1e
PE
11657 * image.c (cache_image): Check for size arithmetic overflow.
11658
bfbbd7e7
PE
11659 * lread.c: Integer overflow issues.
11660 (saved_doc_string_size, saved_doc_string_length)
11661 (prev_saved_doc_string_size, prev_saved_doc_string_length):
11662 Now ptrdiff_t, not int.
11663 (read1): Don't assume doc string length fits in int. Check for
11664 out-of-range doc string lengths.
11665 (read_list): Don't assume file position fits in int.
39019e54 11666 (read_escape): Check for hex character overflow.
bfbbd7e7 11667
4e323265
LL
116682011-06-22 Leo Liu <sdl.web@gmail.com>
11669
11670 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
11671 Move to minibuffer.el.
11672
85fece3e
PE
116732011-06-22 Paul Eggert <eggert@cs.ucla.edu>
11674
20b84ce9 11675 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
85fece3e
PE
11676 The following patches are for when GLYPH_DEBUG && !XASSERT.
11677 * dispextern.h (trace_redisplay_p, dump_glyph_string):
11678 * dispnew.c (flush_stdout):
11679 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
11680 Mark as externally visible.
11681 * dispnew.c (check_window_matrix_pointers): Now static.
11682 * dispnew.c (window_to_frame_vpos):
11683 * xfns.c (unwind_create_frame):
11684 * xterm.c (x_check_font): Remove unused local.
11685 * scroll.c (CHECK_BOUNDS):
11686 * xfaces.c (cache_fache): Rename local to avoid shadowing.
11687 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
11688 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
11689 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
11690 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
11691 Now static.
11692 (debug_method_add): Use va_list and vsprintf rather than relying
11693 on undefined behavior with wrong number of arguments.
11694 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
11695 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
11696 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
11697 since we're not interested in debugging glyphs with old libraries.
11698 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
11699 GCC 4.6.0's static checking.
11700
0766b489
PE
117012011-06-22 Paul Eggert <eggert@cs.ucla.edu>
11702
31fd4b32
PE
11703 Integer overflow and signedness fixes (Bug#8873).
11704 A few related buffer overrun fixes, too.
11705
b79e8648
PE
11706 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
11707
0766b489
PE
11708 * dispextern.h (struct face.stipple):
11709 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
11710 (x_bitmap_mask, x_allocate_bitmap_record)
11711 (x_create_bitmap_from_data, x_create_bitmap_from_file)
11712 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
11713 (x_create_bitmap_from_xpm_data):
11714 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
11715 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
11716 (.bitmaps_last):
11717 * xfaces.c (load_pixmap):
11718 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
11719 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
11720 (.bitmaps_last, struct x_output.icon_bitmap):
11721 Use ptrdiff_t, not int, for bitmap indexes.
11722 (x_allocate_bitmap_record): Check for size overflow.
11723 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
11724
b081724f
PE
11725 Use ptrdiff_t, not int, for overlay counts.
11726 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
11727 * editfns.c (overlays_around, get_pos_property):
11728 * textprop.c (get_char_property_and_overlay):
11729 * xdisp.c (next_overlay_change, note_mouse_highlight):
11730 * xfaces.c (face_at_buffer_position):
21514da7
PE
11731 * buffer.c (OVERLAY_COUNT_MAX): New macro.
11732 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
11733 (Fnext_overlay_change, Fprevious_overlay_change)
11734 (mouse_face_overlay_overlaps, Foverlays_in):
b081724f 11735 Use ptrdiff_t, not int, for sizes.
21514da7 11736 (overlays_at, overlays_in): Check for size-calculation overflow.
b081724f 11737
3de73e5e
PE
11738 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
11739
2606c57b
PE
11740 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
11741 (x_session_initialize): Do not assume string length fits in int.
11742
aaafe47a
PE
11743 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
11744 This is unlikely, but can occur if DPI is outlandish.
11745
2674ddc8 11746 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
3a5077c5
PE
11747 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
11748
28154962
PE
11749 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
11750 * xrdb.c (magic_file_p, search_magic_path):
11751 Omit last arg SUFFIX; it was always 0. All callers changed.
11752 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
11753
7de51af5
PE
11754 * xfont.c (xfont_match): Avoid need for strlen.
11755
25ed6cc3
PE
11756 * xfns.c: Don't assume strlen fits in int.
11757 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
11758
4eab31dd
PE
11759 * xdisp.c (message_log_check_duplicate): Return intmax_t,
11760 not unsigned long, as we prefer signed integers. All callers changed.
11761 Detect integer overflow in repeat count.
11762 (message_dolog): Don't assume print length fits in 39 bytes.
df1f27af 11763 (display_mode_element): Don't assume strlen fits in int.
4eab31dd 11764
171e2a58
PE
11765 * termcap.c: Don't assume sizes fit in int and never overflow.
11766 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
11767 (gobble_line): Check for size-calculation overflow.
11768
ad39faca 11769 * minibuf.c (Fread_buffer):
6e5bb2dc 11770 * lread.c (intern, intern_c_string):
74ca2eb3
PE
11771 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
11772 Don't assume string length fits in int.
11773
52c61c22 11774 * keyboard.c (parse_tool_bar_item):
9bda3520
PE
11775 * gtkutil.c (style_changed_cb): Avoid need for strlen.
11776
b5b8c9e5
PE
11777 * font.c: Don't assume string length fits in int.
11778 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
11779 Use ptrdiff_t, not int.
ccd6111c
PE
11780 (font_intern_prop): Don't assume string length fits in int.
11781 Don't assume integer property fits in fixnum.
11782 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
b5b8c9e5 11783
882f0d81 11784 * filelock.c: Fix some buffer overrun and integer overflow issues.
51cab52b 11785 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
882f0d81
PE
11786 Reformulate so as not to need the command string.
11787 Invoke gzip -cd rather than gunzip, as it's more portable.
11788 (lock_info_type, lock_file_1, lock_file):
11789 Don't assume pid_t and time_t fit in unsigned long.
11790 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
11791 (current_lock_owner): Prefer signed type for sizes.
11792 Use memcpy, not strncpy, where memcpy is what is really wanted.
11793 Don't assume (via atoi) that time_t and pid_t fit in int.
11794 Check for time_t and/or pid_t out of range, e.g., via a network share.
11795 Don't alloca where an auto var works fine.
11796
93f4cf88
PE
11797 * fileio.c: Fix some integer overflow issues.
11798 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
11799 Don't assume string length fits in int.
11800 (directory_file_name): Don't assume string length fits in long.
11801 (make_temp_name): Don't assume pid fits in int, or that its print
11802 length is less than 20.
11803
f3e92b69
PE
11804 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
11805
1bfdaf10
PE
11806 * coding.c (make_subsidiaries): Don't assume string length fits in int.
11807
35016e9a
PE
11808 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
11809
3d1e65a1
PE
11810 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
11811 We prefer signed integers, even for size calculations.
11812
0b963a93
PE
11813 * emacs.c: Don't assume string length fits in 'int'.
11814 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
11815 (main): Don't invoke strlen when not needed.
11816
573f4b54
PE
11817 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
11818 (XD_DEBUG_MESSAGE): Don't waste a byte.
11819
989f33ba
PE
11820 * callproc.c (getenv_internal_1, getenv_internal)
11821 (Fgetenv_internal):
965d34eb
PE
11822 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
11823
e4d29b33
PE
11824 * lread.c (invalid_syntax): Omit length argument.
11825 All uses changed. This doesn't fix a bug, but it simplifies the
11826 code away from its former Hollerith-constant appearance, and it's
11827 one less 'int' to worry about when looking at integer-overflow issues.
51cab52b 11828 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
e4d29b33 11829
eb49b136
PE
11830 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
11831 This didn't break anything, but it didn't help either.
11832 It's confusing to put a bogus integer in a place where the actual
11833 value does not matter.
9f62aeb1 11834 (LIST_END_P): Remove unused macro and its bogus comment.
cbeff735 11835 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
eb49b136 11836
15375a22
PE
11837 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
11838 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
11839 implementation.
b61cc01c
PE
11840 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
11841 We prefer signed types, and the value cannot exceed the EMACS_INT
11842 range anyway (because otherwise the length would not be representable).
9a8e8d9b
PE
11843 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
11844 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
11845 This avoids a GCC warning when WIDE_EMACS_INT.
15375a22 11846
53b2623d
PE
11847 * indent.c (sane_tab_width): New function.
11848 (current_column, scan_for_column, Findent_to, position_indentation)
11849 (compute_motion): Use it. This is just for clarity.
8fcaf9cc 11850 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
53b2623d 11851
51cab52b 11852 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
45aebb64 11853
f2ed8a70
PE
11854 * lisp.h (lint_assume): New macro.
11855 * composite.c (composition_gstring_put_cache):
11856 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
11857
abe80cc6
PE
11858 * editfns.c, insdel.c:
11859 Omit unnecessary forward decls, to simplify future changes.
a9e860e1 11860
b02c740e
PE
11861 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
11862
ebc96716
PE
11863 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
11864
b4e50fa0 11865 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
f03dc6ef 11866 Use much-faster test for byte-length change.
311d5d7c 11867 Don't assume string byte-length fits in 'int'.
a4cf38e4 11868 Check that character arg fits in 'int'.
85461888 11869 (mapcar1): Declare byte as byte, for clarity.
b4e50fa0 11870
c0c1ee9f
PE
11871 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
11872
a498d7f4
PE
11873 * fns.c (concat): Catch string overflow earlier.
11874 Do not rely on integer wraparound.
11875
51cab52b
PE
11876 * dispextern.h (struct it.overlay_strings_charpos)
11877 (struct it.selective): Now EMACS_INT, not int.
87830974
PE
11878 * xdisp.c (forward_to_next_line_start)
11879 (back_to_previous_visible_line_start)
11880 (reseat_at_next_visible_line_start, next_element_from_buffer):
11881 Don't arbitrarily truncate the value of 'selective' to int.
11882
76031fad
PE
11883 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
11884
5eb55db9
PE
11885 * composite.c: Don't truncate sizes to 'int'.
11886 (composition_gstring_p, composition_reseat_it)
11887 (composition_adjust_point): Use EMACS_INT, not int.
7d100a81
PE
11888 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
11889 not EMACS_UINT, for indexes.
5eb55db9 11890
0703a717
PE
11891 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
11892
d6202519
PE
11893 * buffer.c: Include <verify.h>.
11894 (struct sortvec.priority, struct sortstr.priority):
8961a454 11895 Now EMACS_INT, not int.
c20998a7 11896 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
67c36fce
PE
11897 (struct sortstr.size, record_overlay_string)
11898 (struct sortstrlist.size, struct sortlist.used):
11899 Don't truncate size to int.
11900 (record_overlay_string): Check for size-calculation overflow.
d6202519 11901 (init_buffer_once): Check at compile-time, not run-time.
fadf4e30 11902
d5a19415
JM
119032011-06-22 Jim Meyering <meyering@redhat.com>
11904
029529ac 11905 Don't leak an XBM-image-sized buffer
d5a19415
JM
11906 * image.c (xbm_load): Free the image buffer after using it.
11907
a9041e6c
PE
119082011-06-21 Paul Eggert <eggert@cs.ucla.edu>
11909
11910 Port to Sun C.
11911 * composite.c (find_automatic_composition): Omit needless 'return 0;'
11912 that Sun C diagnosed.
11913 * fns.c (secure_hash): Fix pointer signedness issue.
11914 * intervals.c (static_offset_intervals): New function.
11915 (offset_intervals): Use it.
11916
7f3f739f
LL
119172011-06-21 Leo Liu <sdl.web@gmail.com>
11918
11919 * deps.mk (fns.o):
11920 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
11921 sha512.h.
11922
11923 * fns.c (secure_hash): Rename from crypto_hash_function and change
11924 the first arg to accept symbols.
5b66d427 11925 (Fsecure_hash): New primitive.
7f3f739f
LL
11926 (syms_of_fns): New symbols.
11927
76147d94
DD
119282011-06-20 Deniz Dogan <deniz@dogan.se>
11929
11930 * process.c (Fset_process_buffer): Clarify return value in
11931 docstring.
11932
7d7d0045
CY
119332011-06-18 Chong Yidong <cyd@stupidchicken.com>
11934
11935 * dispnew.c (add_window_display_history): Use BVAR.
11936
11937 * xdisp.c (debug_method_add): Use BVAR.
11938 (check_window_end, dump_glyph_matrix, dump_glyph)
11939 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
11940
11941 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
11942 Likewise.
11943
11944 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
11945 check till after the cache is created in init_frame_faces.
11946
ff2bc410
SM
119472011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
11948
11949 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
11950
28177add
PE
119512011-06-16 Paul Eggert <eggert@cs.ucla.edu>
11952
dd3482fe
PE
11953 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
11954 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
11955 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
11956
393d71f3 11957 Improve buffer-overflow checking (Bug#8873).
1c8e352f
PE
11958 * fileio.c (Finsert_file_contents):
11959 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
11960 Remove the old (too-loose) buffer overflow checks.
11961 They weren't needed, since make_gap checks for buffer overflow.
11962 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
11963 The old code merely checked for Emacs fixnum overflow, and relied
11964 on undefined (wraparound) behavior. The new code avoids undefined
11965 behavior, and also checks for ptrdiff_t and/or size_t overflow.
11966
2e6813b0 11967 * editfns.c (Finsert_char): Don't dump core with very negative counts.
21d890a4
PE
11968 Tune. Don't use wider integers than needed. Don't use alloca.
11969 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
2e6813b0 11970
599a9e4f
PE
11971 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
11972
99561444
PE
11973 * insdel.c, lisp.h (buffer_overflow): New function.
11974 (insert_from_buffer_1, replace_range, replace_range_2):
11975 * insdel.c (make_gap_larger):
11976 * editfns.c (Finsert_char):
11977 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
11978
28177add
PE
11979 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
11980
e69dafad
PE
119812011-06-15 Paul Eggert <eggert@cs.ucla.edu>
11982
4baa020d 11983 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
ff672d2c 11984
b1c46f02
PE
11985 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
11986 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
11987
e69dafad
PE
11988 * fileio.c: Don't assume EMACS_INT fits in off_t.
11989 (emacs_lseek): New static function.
11990 (Finsert_file_contents, Fwrite_region): Use it.
11991 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
11992
566684ea
PE
11993 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
11994
e6966cd6
PE
11995 * fns.c: Don't overflow int when computing a list length.
11996 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
11997 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
11998 truncation on 64-bit hosts. Check for QUIT every
11999 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
12000 faster and is responsive enough.
12001 (Flength): Report an error instead of overflowing an integer.
12002 (Fsafe_length): Return a float if the value is not representable
12003 as a fixnum. This shouldn't happen except in contrived situations.
6346d301 12004 (Fnthcdr, Fsort): Don't assume list length fits in int.
de41a810 12005 (Fcopy_sequence): Don't assume vector length fits in int.
00c604f2 12006
dd0b0efb
PE
12007 * alloc.c: Check that resized vectors' lengths fit in fixnums.
12008 (header_size, word_size): New constants.
12009 (allocate_vectorlike): Don't check size overflow here.
12010 (allocate_vector): Check it here instead, since this is the only
12011 caller of allocate_vectorlike that could cause overflow.
12012 Check that the new vector's length is representable as a fixnum.
12013
86fe5cfe
PE
12014 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
12015 The previous code was bogus. For example, next_almost_prime (32)
12016 returned 39, which is undesirable as it is a multiple of 3; and
12017 next_almost_prime (24) returned 25, which is a multiple of 5 so
12018 why was the code bothering to check for multiples of 7?
12019
80e88859
PE
12020 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
12021
4a2f0ad6
PE
12022 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
12023
f66c7cf8
PE
12024 Variadic C functions now count arguments with ptrdiff_t.
12025 This partly undoes my 2011-03-30 change, which replaced int with size_t.
12026 Back then I didn't know that the Emacs coding style prefers signed int.
12027 Also, in the meantime I found a few more instances where arguments
4a2f0ad6
PE
12028 were being counted with int, which may truncate counts on 64-bit
12029 machines, or EMACS_INT, which may be unnecessarily wide.
f66c7cf8
PE
12030 * lisp.h (struct Lisp_Subr.function.aMANY)
12031 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
12032 Arg counts are now ptrdiff_t, not size_t.
12033 All variadic functions and their callers changed accordingly.
12034 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
12035 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
12036 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
12037 * callint.c (Fcall_interactively): Check arg count for overflow,
12038 to avoid potential buffer overrun. Use signed char, not 'int',
12039 for 'varies' array, so that we needn't bother to check its size
12040 calculation for overflow.
12041 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
12042 * eval.c (apply_lambda):
12043 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
12044 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
12045 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
12046
a1759b76
PE
12047 * callint.c (Fcall_interactively): Don't use index var as event count.
12048
d96be9fc
PE
12049 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
12050 * mem-limits.h (SIZE): Remove; no longer used.
12051
a690a978 12052 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
5efd304b 12053
578c21e6
PE
12054 Remove unnecessary casts.
12055 * xterm.c (x_term_init):
12056 * xfns.c (x_set_border_pixel):
12057 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
12058 These aren't needed now that we assume ANSI C.
12059
96f53c6c
PE
12060 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
12061 It's more likely to cause problems (due to unsigned overflow)
12062 than to cure them.
12063
83c77d31
PE
12064 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
12065
ee2079f1
PE
12066 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
12067
6da65536
PE
12068 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
12069
7147c4a4
PE
12070 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
12071
193e32d9
PE
12072 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
12073
e5533da6
PE
12074 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
12075
9910e595
PE
12076 GLYPH_CODE_FACE returns EMACS_INT, not int.
12077 * dispextern.h (merge_faces):
12078 * xfaces.c (merge_faces):
01103c44
PE
12079 * xdisp.c (get_next_display_element, next_element_from_display_vector):
12080 Don't assume EMACS_INT fits in int.
9910e595 12081
2638320e
PE
12082 * character.h (CHAR_VALID_P): Remove unused parameter.
12083 * fontset.c, lisp.h, xdisp.c: All uses changed.
12084
045eb8d9
PE
12085 * editfns.c (Ftranslate_region_internal): Omit redundant test.
12086
c1f134b5
PE
12087 * fns.c (concat): Minor tuning based on overflow analysis.
12088 This doesn't fix any bugs. Use int to hold character, instead
12089 of constantly refetching from Emacs object. Use XFASTINT, not
12090 XINT, for value known to be a character. Don't bother comparing
12091 a single byte to 0400, as it's always less.
12092
395fcb93 12093 * floatfns.c (Fexpt):
327eeec8
PE
12094 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
12095
abbd3d23
PE
12096 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
12097 for characters.
12098
684a03ef
PE
12099 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
12100
0fed43f3
PE
12101 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
12102 Without this fix, on a 64-bit host (aset S 0 4294967386) would
12103 incorrectly succeed when S was a string, because 4294967386 was
12104 truncated before it was used.
12105
8fd02eb7
PE
12106 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
12107 Otherwise, an out-of-range integer could cause undefined behavior
12108 on a 64-bit host.
12109
f8c86b69
PE
12110 * composite.c: Use int, not EMACS_INT, for characters.
12111 (fill_gstring_body, composition_compute_stop_pos): Use int, not
12112 EMACS_INT, for values that are known to be in character range.
12113 This doesn't fix any bugs but is the usual style inside Emacs and
12114 may generate better code on 32-bit machines.
12115
34206dd2
PE
12116 Make sure a 64-bit char is never passed to ENCODE_CHAR.
12117 This is for reasons similar to the recent CHAR_STRING fix.
12118 * charset.c (Fencode_char): Check that character arg is actually
12119 a character. Pass an int to ENCODE_CHAR.
12120 * charset.h (ENCODE_CHAR): Verify that the character argument is no
12121 wider than 'int', as a compile-time check to prevent future regressions
12122 in this area.
12123
c5958d4c 12124 * character.c (char_string): Remove unnecessary casts.
13bdea59
PE
12125
12126 Make sure a 64-bit char is never passed to CHAR_STRING.
12127 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
12128 by silently ignoring the top 32 bits, allowing some values
12129 that were far too large to be valid characters.
12130 * character.h: Include <verify.h>.
12131 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
12132 arguments are no wider than unsigned, as a compile-time check
12133 to prevent future regressions in this area.
12134 * data.c (Faset):
01103c44 12135 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
13bdea59
PE
12136 (Fsubst_char_in_region):
12137 * fns.c (concat):
12138 * xdisp.c (decode_mode_spec_coding):
12139 Adjust to CHAR_STRING's new requirement.
12140 * editfns.c (Finsert_char, Fsubst_char_in_region):
12141 * fns.c (concat): Check that character args are actually
12142 characters. Without this test, these functions did the wrong
12143 thing with wildly out-of-range values on 64-bit hosts.
12144
d37ca623
PE
12145 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
12146 These casts should not be needed on 32-bit hosts, either.
12147 * keyboard.c (read_char):
12148 * lread.c (Fload): Remove casts to unsigned.
12149
ea204efb
PE
12150 * lisp.h (UNSIGNED_CMP): New macro.
12151 This fixes comparison bugs on 64-bit hosts.
12152 (ASCII_CHAR_P): Use it.
12153 * casefiddle.c (casify_object):
01103c44 12154 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
ea204efb
PE
12155 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
12156 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
12157 * dispextern.h (FACE_FROM_ID):
12158 * keyboard.c (read_char): Use UNSIGNED_CMP.
12159
41cb286c
PE
12160 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
12161 not to EMACS_INT, to avoid GCC warning.
12162
4a1b9832
PE
12163 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
12164
55daad71
PE
12165 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
12166 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
12167 isn't needed on 32-bit machines.
8f95c75c 12168
01103c44
PE
12169 * buffer.c (Fgenerate_new_buffer_name):
12170 Use EMACS_INT for count, not int.
0ceccced 12171 (advance_to_char_boundary): Return EMACS_INT, not int.
e762cafe
PE
12172
12173 * data.c (Qcompiled_function): Now static.
12174
c6f072e7
PE
12175 * window.c (window_body_lines): Now static.
12176
20ce5912
PE
12177 * image.c (gif_load): Rename local to avoid shadowing.
12178
9c4c5f81
PE
12179 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
12180 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
12181 * alloc.c (make_save_value): Integer argument is now of type
12182 ptrdiff_t, not int.
12183 (mark_object): Use ptrdiff_t, not int.
12184 * lisp.h (pD): New macro.
12185 * print.c (print_object): Use it.
12186
c0c5c8ae
PE
12187 * alloc.c: Use EMACS_INT, not int, to count objects.
12188 (total_conses, total_markers, total_symbols, total_vector_size)
12189 (total_free_conses, total_free_markers, total_free_symbols)
01103c44
PE
12190 (total_free_floats, total_floats, total_free_intervals)
12191 (total_intervals, total_strings, total_free_strings):
c0c5c8ae
PE
12192 Now EMACS_INT, not int. All uses changed.
12193 (Fgarbage_collect): Compute overall total using a double, so that
12194 integer overflow is less likely to be a problem. Check for overflow
12195 when converting back to an integer.
5a25e253
PE
12196 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
12197 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
12198 These were 'int' variables that could overflow on 64-bit hosts;
12199 they were never used, so remove them instead of repairing them.
211a0b2a 12200 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
6349ae4d
PE
12201 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
12202 Previously, this ceilinged at INT_MAX, but that doesn't work on
12203 64-bit machines.
e46bb31a 12204 (allocate_pseudovector): Don't use EMACS_INT when int would do.
c0c5c8ae 12205
c78baabf 12206 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
86f61a15 12207 (allocate_vectorlike): Check for ptrdiff_t overflow.
b6439961
PE
12208 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
12209 when a (possibly-narrower) signed value would do just as well.
12210 We prefer using signed arithmetic, to avoid comparison confusion.
c78baabf 12211
c9d624c6
PE
12212 * alloc.c: Catch some string size overflows that we were missing.
12213 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
12214 for convenience in STRING_BYTES_MAX.
12215 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
12216 The definition here is exact; the one in lisp.h was approximate.
12217 (allocate_string_data): Check for string overflow. This catches
12218 some instances we weren't catching before. Also, it catches
12219 size_t overflow on (unusual) hosts where SIZE_MAX <= min
12220 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
12221 and ptrdiff_t and EMACS_INT are both 64 bits.
c78baabf 12222
c9d624c6
PE
12223 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
12224 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
640c8776 12225 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
c9d624c6 12226
353032ce
PE
12227 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
12228
2bccce07
PE
12229 * alloc.c (Fmake_string): Check for out-of-range init.
12230
0ac30604
SM
122312011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
12232
12233 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
12234
c195f2de
JD
122352011-06-14 Jan Djärv <jan.h.d@swipnet.se>
12236
12237 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
12238 xg_get_default_scrollbar_width.
12239
12240 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
12241 (int_gtk_range_get_value): Move to the scroll bar part of the file.
12242 (style_changed_cb): Call update_theme_scrollbar_width and call
12243 x_set_scroll_bar_default_width and xg_frame_set_char_size for
12244 all frames (Bug#8505).
12245 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
12246 Call gtk_window_set_resizable if HAVE_GTK3.
12247 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
12248 and height if HAVE_GTK3 (Bug#8505).
12249 (scroll_bar_width_for_theme): New variable.
12250 (update_theme_scrollbar_width): New function.
12251 (xg_get_default_scrollbar_width): Move code to
12252 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
12253 (xg_initialize): Call update_theme_scrollbar_width.
12254
12255 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
12256
12257 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
12258
e10ac9f1
MR
122592011-06-12 Martin Rudalics <rudalics@gmx.at>
12260
12261 * frame.c (make_frame): Call other_buffer_safely instead of
12262 other_buffer.
12263
12264 * window.c (temp_output_buffer_show): Call display_buffer with
12265 second argument Vtemp_buffer_show_specifiers and reset latter
12266 immediately after the call.
12267 (Vtemp_buffer_show_specifiers): New variable.
12268 (auto_window_vscroll_p, next_screen_context_lines)
12269 (Vscroll_preserve_screen_position): Remove leading asterisks from
12270 doc-strings.
12271
2d3c217e 122722011-06-12 Paul Eggert <eggert@cs.ucla.edu>
4475bec4 12273
7b7f97e8 12274 Fix minor problems found by GCC 4.6.0 static checking.
4475bec4
PE
12275 * buffer.c (Qclone_number): Remove for now, as it's unused.
12276 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
12277 (record_buffer): Remove unused local.
12278 * frame.c (other_visible_frames, frame_buffer_list): Now static.
12279 (set_frame_buffer_list): Remove; unused.
12280 * frame.h (other_visible_frames): Remove decl.
12281 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
12282 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
12283 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
12284 if HAVE_GPM.
12285 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
12286 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
12287 Define only if HAVE_GPM.
12288 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
12289 (update_hints_inhibit): Remove; never set. All uses removed.
12290 * widgetprv.h (emacsFrameClassRec): Remove decl.
12291 * window.c (delete_deletable_window): Now returns void, since it
12292 wasn't returning anything.
12293 (compare_window_configurations): Remove unused locals.
12294 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
12295 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
4475bec4
PE
12296 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
12297 the same widths as pointers. This follows up on the 2011-05-06 patch.
12298 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
12299 * xterm.h: Likewise.
12300 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
12301
1384b89e
JB
123022011-06-12 Juanma Barranquero <lekktu@gmail.com>
12303
12304 * makefile.w32-in: Update dependencies.
12305 (LISP_H): Add lib/intprops.h.
12306
1100a63c
CY
123072011-06-11 Chong Yidong <cyd@stupidchicken.com>
12308
12309 * image.c (gif_load): Add animation frame delay to the metadata.
12310 (syms_of_image): Use DEFSYM. New symbol `delay'.
12311
6198ccd0
MR
123122011-06-11 Martin Rudalics <rudalics@gmx.at>
12313
12314 * window.c (delete_deletable_window): Re-add.
12315 (Fset_window_configuration): Rewrite to handle dead buffers and
12316 consequently deletable windows.
12317 (window_tree, Fwindow_tree): Remove. Supply functionality in
12318 window.el.
12319 (compare_window_configurations): Simplify code.
12320
b6e3633c
AS
123212011-06-11 Andreas Schwab <schwab@linux-m68k.org>
12322
1ab0dee5
AS
12323 * image.c (imagemagick_load_image): Fix type mismatch.
12324 (Fimagemagick_types): Likewise.
12325
b6e3633c
AS
12326 * window.h (replace_buffer_in_windows): Declare.
12327
9397e56f
MR
123282011-06-11 Martin Rudalics <rudalics@gmx.at>
12329
12330 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
12331 Qclone_number. Remove external declaration of Qdelete_window.
12332 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
12333 code.
640c8776
SM
12334 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
12335 Run Qbuffer_list_update_hook if allowed.
9397e56f
MR
12336 (Fother_buffer): Rewrite doc-string. Major rewrite for new
12337 buffer list implementation.
12338 (other_buffer_safely): New function.
12339 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
12340 calls to replace_buffer_in_windows and
12341 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
12342 if allowed.
12343 (record_buffer): Inhibit quitting and rewrite using quittable
12344 functions. Run Qbuffer_list_update_hook if allowed.
12345 (Frecord_buffer, Funrecord_buffer): New functions.
640c8776
SM
12346 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
12347 Move switch-to-buffer to window.el.
9397e56f
MR
12348 (bury-buffer): Move to window.el.
12349 (Vbuffer_list_update_hook): New variable.
12350
12351 * lisp.h (other_buffer_safely): Add prototype in buffer.c
12352 section.
12353
12354 * window.h (resize_frame_windows): Move up in code.
12355 (Fwindow_frame): Remove EXFUN.
12356 (replace_buffer_in_all_windows): Remove prototype.
12357 (replace_buffer_in_windows_safely): Add prototype.
12358
12359 * window.c: Declare Qdelete_window static again. Move down
12360 declaration of select_count.
12361 (Fnext_window, Fprevious_window): Rewrite doc-strings.
12362 (Fother_window): Move to window.el.
12363 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
12364 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
12365 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
12366 window.el.
12367 (replace_buffer_in_windows): Implement by calling
12368 Qreplace_buffer_in_windows.
12369 (replace_buffer_in_all_windows): Remove with some functionality
12370 moved into replace_buffer_in_windows_safely.
12371 (replace_buffer_in_windows_safely): New function.
12372 (select_window_norecord, select_frame_norecord): Move in front
12373 of run_window_configuration_change_hook. Remove now obsolete
12374 declarations.
640c8776
SM
12375 (Fset_window_buffer): Rewrite doc-string.
12376 Call Qrecord_window_buffer.
9397e56f
MR
12377 (keys_of_window): Move binding for other-window to window.el.
12378
b50691aa
CY
123792011-06-11 Chong Yidong <cyd@stupidchicken.com>
12380
12381 * dispextern.h (struct image): Replace data member, whose int_val
12382 and ptr_val fields were not used by anything, with a single
12383 lisp_val object.
12384
12385 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
12386 (gif_clear_image, gif_load, imagemagick_load_image)
12387 (gs_clear_image, gs_load): Callers changed.
12388
3f754b86
PE
123892011-06-10 Paul Eggert <eggert@cs.ucla.edu>
12390
cca69397
PE
12391 * buffer.h: Include <time.h>, for time_t.
12392 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
12393
109e28d0
PE
12394 Fix minor problems found by static checking.
12395
60737f02
PE
12396 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
12397
4b66faf3
PE
12398 Make identifiers static if they are not used in other modules.
12399 * data.c (Qcompiled_function, Qframe, Qvector):
12400 * image.c (QimageMagick, Qsvg):
12401 * minibuf.c (Qmetadata):
12402 * window.c (resize_window_check, resize_root_window): Now static.
12403 * window.h (resize_window_check, resize_root_window): Remove decls.
12404
109e28d0
PE
12405 * window.c (window_deletion_count, delete_deletable_window):
12406 Remove; unused.
46a4ce9e
PE
12407 (window_body_lines): Now static.
12408 (Fdelete_other_windows_internal): Mark vars as initialized.
12409 Make sure 'resize_failed' is initialized.
12410 (run_window_configuration_change_hook): Rename local to avoid shadowing.
12411 (resize_window_apply): Remove unused local.
12412 * window.h (delete_deletable_window): Remove decl.
12413
109e28d0 12414 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
33290528
PE
12415 (imagemagick_load_image): Fix pointer signedness problem by changing
12416 last arg from unsigned char * to char *. All uses changed.
12417 Also, fix a local for similar reasons.
12418 Remove unused locals. Remove locals to avoid shadowing.
12419 (fn_rsvg_handle_free): Remove; unused.
12420 (svg_load, svg_load_image): Fix pointer signedness problem.
f7e13da3 12421 (imagemagick_load_image): Don't use garbage pointer image_wand.
33290528 12422
3f754b86
PE
12423 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
12424
2547adb1
CY
124252011-06-10 Chong Yidong <cyd@stupidchicken.com>
12426
12427 * image.c (gif_load): Fix omitted cast error introduced by
12428 2011-06-06 change.
12429
2c8e37d4
MR
124302011-06-10 Martin Rudalics <rudalics@gmx.at>
12431
12432 * window.h (resize_proportionally, orig_total_lines)
12433 (orig_top_line): Remove from window structure.
12434 (set_window_height, set_window_width, change_window_heights)
12435 (Fdelete_window): Remove prototypes.
12436 (resize_frame_windows): Remove duplicate declaration.
12437
440a42e3
EZ
124382011-06-10 Eli Zaretskii <eliz@gnu.org>
12439
12440 * window.h (resize_frame_windows, resize_window_check)
12441 (delete_deletable_window, resize_root_window)
12442 (resize_frame_windows): Declare prototypes.
12443
12444 * window.c (resize_window_apply): Make definition be "static" to
12445 match the prototype.
12446
562dd5e9
MR
124472011-06-10 Martin Rudalics <rudalics@gmx.at>
12448
12449 * window.c: Remove declarations of Qwindow_size_fixed,
12450 window_min_size_1, window_min_size_2, window_min_size,
12451 size_window, window_fixed_size_p, enlarge_window, delete_window.
12452 Remove static from declaration of Qdelete_window, it's
12453 temporarily needed by Fbury_buffer.
12454 (replace_window): Don't assign orig_top_line and
12455 orig_total_lines.
12456 (Fdelete_window, delete_window): Remove. Window deletion is
12457 handled by window.el.
640c8776
SM
12458 (window_loop): Remove DELETE_OTHER_WINDOWS case.
12459 Replace Fdelete_window calls with calls to Qdelete_window.
562dd5e9
MR
12460 (Fdelete_other_windows): Remove. Deleting other windows is
12461 handled by window.el.
12462 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
12463 handled in window.el.
12464 (window_min_size_2, window_min_size_1, window_min_size): Remove.
12465 Window minimum sizes are handled in window.el.
12466 (shrink_windows, size_window, set_window_height)
12467 (set_window_width, change_window_heights, window_height)
12468 (window_width, CURBEG, CURSIZE, enlarge_window)
12469 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
12470 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
12471 handled in window.el.
12472 (make_dummy_parent): Rename to make_parent_window and give it a
12473 second argument horflag.
12474 (make_window): Don't set resize_proportionally any more.
12475 (Fsplit_window): Remove. Windows are split in window.el.
12476 (save_restore_action, save_restore_orig_size)
12477 (shrink_window_lowest_first, save_restore_orig_size): Remove.
12478 Resize mini windows in window.el.
12479 (grow_mini_window, shrink_mini_window): Implement by calling
12480 Qresize_root_window_vertically, resize_window_check and
12481 resize_window_apply.
640c8776
SM
12482 (saved_window, Fset_window_configuration, save_window_save):
12483 Do not handle orig_top_line, orig_total_lines, and
562dd5e9
MR
12484 resize_proportionally.
12485 (window_min_height, window_min_width): Move to window.el.
12486 (keys_of_window): Move bindings for delete-other-windows,
12487 split-window, delete-window and enlarge-window to window.el.
12488
12489 * buffer.c: Temporarily extern Qdelete_window.
12490 (Fbury_buffer): Temporarily call Qdelete_window instead of
12491 Fdelete_window (Fbury_buffer will move to window.el soon).
12492
12493 * frame.c (set_menu_bar_lines_1): Remove code handling
12494 orig_top_line and orig_total_lines.
12495
12496 * dispnew.c (adjust_frame_glyphs_initially): Don't use
12497 set_window_height but set heights directly.
12498 (change_frame_size_1): Use resize_frame_windows.
12499
12500 * xdisp.c (init_xdisp): Don't use set_window_height but set
12501 heights directly.
12502
640c8776
SM
12503 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
12504 Use resize_frame_windows instead of change_window_heights and run
562dd5e9
MR
12505 run_window_configuration_change_hook.
12506
12507 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
12508 instead of change_window_heights and run
12509 run_window_configuration_change_hook.
12510
1a13852e
MR
125112011-06-09 Martin Rudalics <rudalics@gmx.at>
12512
12513 * window.c (replace_window): Rename second argument REPLACEMENT to
12514 NEW. New third argument SETFLAG. Rewrite.
12515 (delete_window, make_dummy_parent): Call replace_window with
12516 third argument 1.
12517 (window_list_1): Move down in code.
12518 (run_window_configuration_change_hook): Move set_buffer part
12519 before select_frame_norecord part in order to unwind correctly.
12520 Rename count1 to count.
12521 (recombine_windows, delete_deletable_window, resize_root_window)
12522 (Fdelete_other_windows_internal)
12523 (Frun_window_configuration_change_hook, make_parent_window)
12524 (resize_window_check, resize_window_apply, Fresize_window_apply)
12525 (resize_frame_windows, Fsplit_window_internal)
640c8776
SM
12526 (Fdelete_window_internal, Fresize_mini_window_internal):
12527 New functions.
1a13852e
MR
12528 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
12529
f3d1777e
MR
125302011-06-08 Martin Rudalics <rudalics@gmx.at>
12531
496e208e
MR
12532 * window.h (window): Add some new members to window structure -
12533 normal_lines, normal_cols, new_total, new_normal, clone_number,
12534 splits, nest, prev_buffers, next_buffers.
12535 (WINDOW_TOTAL_SIZE): Move here from window.c.
b9e809c2 12536 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
496e208e 12537
f3d1777e
MR
12538 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
12539 Remove.
496e208e
MR
12540 (make_dummy_parent): Set new members of windows structure.
12541 (make_window): Move down in code. Handle new members of window
12542 structure.
12543 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
12544 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
12545 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
12546 (Fset_window_prev_buffers, Fwindow_next_buffers)
640c8776
SM
12547 (Fset_window_next_buffers, Fset_window_clone_number):
12548 New functions.
496e208e
MR
12549 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
12550 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
12551 Doc-string fixes.
12552 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
12553 Argument WINDOW can be now internal window too.
12554 (Fwindow_use_time): Move up in code.
12555 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
12556 Rewrite doc-string.
12557 (Fset_window_configuration, saved_window)
12558 (Fcurrent_window_configuration, save_window_save): Handle new
12559 members of window structure.
b9e809c2
MR
12560 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
12561 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
12562 (syms_of_window): New Lisp objects Qrecord_window_buffer,
12563 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
12564 Qget_mru_window, Qresize_root_window,
12565 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
12566 Qauto_buffer_name; staticpro them.
f3d1777e 12567
abde8f8c
MR
125682011-06-07 Martin Rudalics <rudalics@gmx.at>
12569
12570 * window.c (Fwindow_total_size, Fwindow_left_column)
12571 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
12572 (Fwindow_list_1): New functions.
12573 (window_box_text_cols): Replace with window_body_cols.
640c8776
SM
12574 (Fwindow_width, Fscroll_left, Fscroll_right):
12575 Use window_body_cols instead of window_box_text_cols.
12576 (delete_window, Fset_window_configuration):
12577 Call delete_all_subwindows with window as argument.
fa8a67e6
MR
12578 (delete_all_subwindows): Take a window as argument and not a
12579 structure. Rewrite.
190b47e6
MR
12580 (window_loop): Remove handling of GET_LRU_WINDOW and
12581 GET_LARGEST_WINDOW.
12582 (Fget_lru_window, Fget_largest_window): Move to window.el.
abde8f8c
MR
12583
12584 * window.h: Extern window_body_cols instead of
fa8a67e6
MR
12585 window_box_text_cols. delete_all_subwindows now takes a
12586 Lisp_Object as argument.
abde8f8c 12587
640c8776
SM
12588 * indent.c (compute_motion, Fcompute_motion):
12589 Use window_body_cols instead of window_box_text_cols.
abde8f8c 12590
fa8a67e6
MR
12591 * frame.c (delete_frame): Call delete_all_subwindows with root
12592 window as argument.
12593
a54e3482
DC
125942011-06-07 Daniel Colascione <dan.colascione@gmail.com>
12595
12596 * fns.c (Fputhash): Document return value.
12597
60002bf5
CY
125982011-06-06 Chong Yidong <cyd@stupidchicken.com>
12599
12600 * image.c (gif_load): Implement gif89a spec "no disposal" method.
12601
0c671da6 126022011-06-06 Paul Eggert <eggert@cs.ucla.edu>
ccd9a01a 12603
b862a52a 12604 Cons<->int and similar integer overflow fixes (Bug#8794).
77984278 12605
be44ca6c
PE
12606 Check for overflow when converting integer to cons and back.
12607 * charset.c (Fdefine_charset_internal, Fdecode_char):
12608 Use cons_to_unsigned to catch overflow.
12609 (Fencode_char): Use INTEGER_TO_CONS.
12610 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
12611 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
12612 * data.c (long_to_cons, cons_to_long): Remove.
12613 (cons_to_unsigned, cons_to_signed): New functions.
12614 These signal an error for invalid or out-of-range values.
12615 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
12616 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
12617 * font.c (Ffont_variation_glyphs):
12618 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
12619 * lisp.h: Include <intprops.h>.
12620 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
12621 (cons_to_signed, cons_to_unsigned): New decls.
12622 (long_to_cons, cons_to_long): Remove decls.
12623 * undo.c (record_first_change): Use INTEGER_TO_CONS.
12624 (Fprimitive_undo): Use CONS_TO_INTEGER.
12625 * xfns.c (Fx_window_property): Likewise.
12626 * xselect.c: Include <limits.h>.
12627 (x_own_selection, selection_data_to_lisp_data):
12628 Use INTEGER_TO_CONS.
12629 (x_handle_selection_request, x_handle_selection_clear)
12630 (x_get_foreign_selection, Fx_disown_selection_internal)
12631 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
12632 (lisp_data_to_selection_data): Use cons_to_unsigned.
12633 (x_fill_property_data): Use cons_to_signed.
12634 Report values out of range.
12635
d1f3d2af
PE
12636 Check for buffer and string overflow more precisely.
12637 * buffer.h (BUF_BYTES_MAX): New macro.
12638 * lisp.h (STRING_BYTES_MAX): New macro.
12639 * alloc.c (Fmake_string):
12640 * character.c (string_escape_byte8):
12641 * coding.c (coding_alloc_by_realloc):
12642 * doprnt.c (doprnt):
12643 * editfns.c (Fformat):
12644 * eval.c (verror):
12645 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
12646 since they may not be the same number.
12647 * editfns.c (Finsert_char):
12648 * fileio.c (Finsert_file_contents):
12649 Likewise for BUF_BYTES_MAX.
12650
dd52fcea
PE
12651 * image.c: Use ptrdiff_t, not int, for sizes.
12652 (slurp_file): Switch from int to ptrdiff_t.
12653 All uses changed.
12654 (slurp_file): Check that file size fits in both size_t (for
12655 malloc) and ptrdiff_t (for sanity and safety).
12656
7f9bbdbb
PE
12657 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
12658 if b->modtime has its maximal value.
12659
dfe18f82
PE
12660 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
12661
84acfcf0
PE
12662 Don't assume time_t can fit into int.
12663 * buffer.h (struct buffer.modtime): Now time_t, not int.
12664 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
12665 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
12666
ccd9a01a
PE
12667 Minor fixes for signed vs unsigned integers.
12668 * character.h (MAYBE_UNIFY_CHAR):
12669 * charset.c (maybe_unify_char):
12670 * keyboard.c (read_char, reorder_modifiers):
12671 XINT -> XFASTINT, since the integer must be nonnegative.
12672 * ftfont.c (ftfont_spec_pattern):
12673 * keymap.c (access_keymap, silly_event_symbol_error):
12674 XUINT -> XFASTINT, since the integer must be nonnegative.
12675 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
12676 since it makes no difference and we prefer signed.
12677 * keyboard.c (record_char): Use XUINT when all the neighbors do.
12678 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
12679 nonnegative.
12680
d6d100dd
SM
126812011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
12682
12683 * window.h (Fwindow_frame): Declare.
12684
2b6148e4
PE
126852011-06-06 Paul Eggert <eggert@cs.ucla.edu>
12686
12687 * alloc.c: Simplify handling of large-request failures (Bug#8800).
12688 (SPARE_MEMORY): Always define.
12689 (LARGE_REQUEST): Remove.
12690 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
12691
f230ecc9
MR
126922011-06-06 Martin Rudalics <rudalics@gmx.at>
12693
727e958e
MR
12694 * lisp.h: Move EXFUNS for Fframe_root_window,
12695 Fframe_first_window and Fset_frame_selected_window to window.h.
12696
12697 * window.h: Move EXFUNS for Fframe_root_window,
12698 Fframe_first_window and Fset_frame_selected_window here from
12699 lisp.h.
12700
12701 * frame.c (Fwindow_frame, Fframe_first_window)
12702 (Fframe_root_window, Fframe_selected_window)
12703 (Fset_frame_selected_window): Move to window.c.
12704 (Factive_minibuffer_window): Move to minibuf.c.
12705 (Fother_visible_frames_p): New function.
12706
12707 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
12708
f230ecc9
MR
12709 * window.c (decode_window, decode_any_window): Move up in code.
12710 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
12711 (inhibit_frame_unsplittable): Remove unused variable.
bf60a96b
MR
12712 (Fwindow_buffer): Move up and rewrite doc-string.
12713 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
12714 (Fwindow_prev): New functions.
727e958e
MR
12715 (Fwindow_frame): Move here from frame.c. Accept any window as
12716 argument.
12717 (Fframe_root_window, Fframe_first_window)
12718 (Fframe_selected_window): Move here from frame.c. Accept frame
12719 or arbitrary window as argument. Update doc-strings.
12720 (Fminibuffer_window): Move up in code.
12721 (Fwindow_minibuffer_p): Move up in code and simplify.
d6d100dd
SM
12722 (Fset_frame_selected_window): Move here from frame.c.
12723 Marginal rewrite.
727e958e
MR
12724 (Fselected_window, select_window, Fselect_window): Move up in
12725 code. Minor doc-string fixes.
f230ecc9 12726
4d09bcf6
PE
127272011-06-06 Paul Eggert <eggert@cs.ucla.edu>
12728
12729 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
12730 Do not assume that spare memory exists; that assumption is valid
12731 only if SYSTEM_MALLOC.
12732 (LARGE_REQUEST): New macro, so that the issue of large requests
12733 is separated from the issue of spare memory.
12734
810928a2
AS
127352011-06-05 Andreas Schwab <schwab@linux-m68k.org>
12736
172418ad
AS
12737 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
12738 format. (Bug#8806)
12739
43f862f7
AS
12740 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
12741
810928a2
AS
12742 * xfns.c (x_set_scroll_bar_default_width): Move declarations
12743 before statements.
12744
a059fe24
JD
127452011-06-05 Jan Djärv <jan.h.d@swipnet.se>
12746
12747 * gtkutil.c (xg_get_default_scrollbar_width): New function.
12748
12749 * gtkutil.h: Declare xg_get_default_scrollbar_width.
12750
12751 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
12752 min width by calling x_set_scroll_bar_default_width (Bug#8505).
12753
989bf368
JB
127542011-06-05 Juanma Barranquero <lekktu@gmail.com>
12755
12756 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
12757
4b80f674
CY
127582011-06-04 Chong Yidong <cyd@stupidchicken.com>
12759
12760 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
12761 (x_clipboard_manager_save): Add return value.
d6d100dd
SM
12762 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
12763 New error handlers.
4b80f674
CY
12764 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
12765 Obey Vx_select_enable_clipboard_manager. Catch errors in
12766 x_clipboard_manager_save (Bug#8779).
12767 (Vx_select_enable_clipboard_manager): New variable.
de65b42c 12768 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
4b80f674 12769
99a33b77 127702011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
8b3115e7
DN
12771
12772 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
12773
99a33b77 127742011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14eca62f
YM
12775
12776 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
12777 in the current matrix if keep_current_p is non-zero.
12778
8264569d
EZ
127792011-06-04 Eli Zaretskii <eliz@gnu.org>
12780
12781 * bidi.c (bidi_level_of_next_char): Fix last change.
12782
57f97249
EZ
127832011-06-03 Eli Zaretskii <eliz@gnu.org>
12784
fec2107c 12785 Support bidi reordering of text covered by display properties.
57f97249 12786
fec2107c
EZ
12787 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
12788 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
12789 (bidi_cache_search, bidi_cache_iterator_state)
12790 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
d6d100dd
SM
12791 (bidi_level_of_next_char, bidi_move_to_visually_next):
12792 Support character positions inside a run of characters covered by a
fec2107c
EZ
12793 display string.
12794 (bidi_paragraph_init, bidi_resolve_explicit_1)
12795 (bidi_level_of_next_char): Call bidi_fetch_char and
12796 bidi_fetch_char_advance instead of FETCH_CHAR and
12797 FETCH_CHAR_ADVANCE.
12798 (bidi_init_it): Initialize new members.
12799 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
12800 definitions.
12801 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
12802 instead of using explicit *_CHAR codes.
d6d100dd
SM
12803 (bidi_resolve_explicit, bidi_resolve_weak):
12804 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
fec2107c
EZ
12805 bidirectional text is supported only in multibyte buffers.
12806 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
12807 it to initialize the frame_window_p member of struct bidi_it.
12808 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
12809 (bidi_resolve_explicit, bidi_resolve_weak)
12810 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
12811 bidi_it->nchars is non-positive.
12812 (bidi_level_of_next_char): Don't try to lookup the cache for the
12813 next/previous character if nothing is cached there yet, or if we
12814 were just reseat()'ed to a new position.
c40e2fb2 12815
0e14fe90
EZ
12816 * xdisp.c (set_cursor_from_row): Set start and stop points
12817 according to the row's direction when priming the loop that looks
12818 for the glyph on which to display cursor.
12819 (single_display_spec_intangible_p): Function deleted.
12820 (display_prop_intangible_p): Reimplement to call
12821 handle_display_spec instead of single_display_spec_intangible_p.
d6d100dd
SM
12822 Accept 3 additional arguments needed by handle_display_spec.
12823 This fixes incorrect cursor motion across display property with complex
0e14fe90
EZ
12824 values: lists, `(when COND...)' forms, etc.
12825 (single_display_spec_string_p): Support property values that are
12826 lists with the argument STRING its top-level element.
12827 (display_prop_string_p): Fix the condition for processing a
12828 property that is a list to be consistent with handle_display_spec.
fec2107c 12829 (handle_display_spec): New function, refactored from the
fc6f18ce
EZ
12830 last portion of handle_display_prop.
12831 (compute_display_string_pos): Accept additional argument
12832 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
12833 value of a `display' property is a "replacing spec".
12834 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
12835 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
12836 the display property, but just return a value indicating whether
12837 the display property will replace the characters it covers.
12838 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
12839 frame_window_p members of struct bidi_it.
d6d100dd
SM
12840 (compute_display_string_pos, compute_display_string_end):
12841 New functions.
fec2107c
EZ
12842 (push_it): Accept second argument POSITION, where pop_it should
12843 jump to continue iteration.
12844 (reseat_1): Initialize bidi_it.disp_pos.
fc6f18ce 12845
fec2107c
EZ
12846 * keyboard.c (adjust_point_for_property): Adjust the call to
12847 display_prop_intangible_p to its new signature.
fc6f18ce
EZ
12848
12849 * dispextern.h (struct bidi_it): New member frame_window_p.
fec2107c
EZ
12850 (bidi_init_it): Update prototypes.
12851 (display_prop_intangible_p): Update prototype.
d6d100dd
SM
12852 (compute_display_string_pos, compute_display_string_end):
12853 Declare prototypes.
fec2107c
EZ
12854 (struct bidi_it): New members nchars and disp_pos. ch_len is now
12855 EMACS_INT.
fc6f18ce 12856
40087514 128572011-06-02 Paul Eggert <eggert@cs.ucla.edu>
0de4bb68 12858
57f53182
PE
12859 Malloc failure behavior now depends on size of allocation.
12860 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
12861 * lisp.h: Change signatures accordingly.
12862 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
12863 All callers changed. (Bug#8762)
12864
12865 * gnutls.c: Use Emacs's memory allocators.
12866 Without this change, the gnutls library would invoke malloc etc.
12867 directly, which causes problems on non-SYNC_INPUT hosts, and which
12868 runs afoul of improving memory_full behavior. (Bug#8761)
12869 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
12870 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
12871 xfree instead of the default malloc, realloc, free.
12872 (Fgnutls_boot): No need to check for memory allocation failure,
12873 since xmalloc does that for us.
12874
ac32cd99 12875 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
3870d916
PE
12876 * category.c (hash_get_category_set):
12877 * ccl.c (ccl_driver):
12878 * charset.c (Fdefine_charset_internal):
12879 * charset.h (struct charset.hash_index):
12880 * composite.c (get_composition_id, gstring_lookup_cache)
12881 (composition_gstring_put_cache):
12882 * composite.h (struct composition.hash_index):
12883 * dispextern.h (struct image.hash):
12884 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
12885 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
12886 (hashfn_equal, hashfn_user_defined, make_hash_table)
12887 (maybe_resize_hash_table, hash_lookup, hash_put)
12888 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
12889 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
12890 (Fsxhash, Fgethash, Fputhash, Fmaphash):
12891 * image.c (make_image, search_image_cache, lookup_image)
12892 (xpm_put_color_table_h):
12893 * lisp.h (struct Lisp_Hash_Table):
0de4bb68 12894 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
ac389d0c 12895 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
3870d916 12896 for hashes and hash indexes, instead of 'unsigned' and 'int'.
40087514
PE
12897 * alloc.c (allocate_vectorlike):
12898 Check for overflow in vector size calculations.
12899 * ccl.c (ccl_driver):
12900 Check for overflow when converting EMACS_INT to int.
0de4bb68
PE
12901 * fns.c, image.c: Remove unnecessary static decls that would otherwise
12902 need to be updated by these changes.
40087514
PE
12903 * fns.c (make_hash_table, maybe_resize_hash_table):
12904 Check for integer overflow with large hash tables.
0de4bb68
PE
12905 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
12906 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
12907 (SXHASH_REDUCE): New macro.
12908 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
12909 Use it instead of discarding useful hash info with large hash values.
12910 (sxhash_float): New function.
12911 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
12912 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
40087514
PE
12913 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
12914 Rewrite to use FIXNUM_BITS, as this simplifies things.
0de4bb68
PE
12915 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
12916 Adjust signatures to match updated version of code.
12917 (consing_since_gc): Now EMACS_INT, since a single hash table can
12918 use more than INT_MAX bytes.
12919
698d32e2
DN
129202011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
12921
12922 Make it possible to build with GCC-4.6+ -O2 -flto.
12923
12924 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
12925
fd6fa53f
SM
129262011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
12927
12928 * minibuf.c (get_minibuffer, read_minibuf_unwind):
12929 Call minibuffer-inactive-mode.
12930
864db017
JB
129312011-05-31 Juanma Barranquero <lekktu@gmail.com>
12932
12933 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
12934 Update dependencies.
12935
2ad0baf4
DN
129362011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
12937
12938 * data.c (init_data): Remove code for UTS, this system is not
12939 supported anymore.
12940
4fcc2638
DN
129412011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
12942
12943 Don't force ./temacs to start in terminal mode.
12944
12945 * frame.c (make_initial_frame): Initialize faces in all cases, not
12946 only when CANNOT_DUMP is defined.
12947 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
12948
c56e0fd5
DN
129492011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
12950
12951 * dispnew.c (add_window_display_history): Use const for the string
12952 pointer. Remove declaration, not needed.
12953
333d54da 129542011-05-31 Paul Eggert <eggert@cs.ucla.edu>
9cf9f756 12955
55d4c1b2 12956 Use 'inline', not 'INLINE'.
333d54da 12957 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
55d4c1b2
PE
12958 * alloc.c, fontset.c (INLINE): Remove.
12959 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
12960 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
12961 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
12962 * gmalloc.c (register_heapinfo): Use inline unconditionally.
12963 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
12964
738db178
DN
129652011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
12966
12967 Make it possible to run ./temacs.
12968
12969 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
12970 syms_of_callproc does the same thing. Remove test for
12971 "initialized", do it in the caller.
12972 * emacs.c (main): Avoid calling set_initial_environment when dumping.
12973
620c53a6
SM
129742011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
12975
12976 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
12977 (read_minibuf): Use get_minibuffer.
12978 (syms_of_minibuf): Use DEFSYM.
12979 (Qmetadata): New var.
12980 * data.c (Qbuffer): Don't make it static.
12981 (syms_of_data): Use DEFSYM.
12982
e003a292
PE
129832011-05-31 Paul Eggert <eggert@cs.ucla.edu>
12984
12985 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
12986 (CCL_CODE_MIN): New macro.
12987
ed008a6d
PE
129882011-05-30 Paul Eggert <eggert@cs.ucla.edu>
12989
3687c2ef
PE
12990 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
12991
ed008a6d
PE
12992 * eval.c (Qdebug): Now static.
12993 * lisp.h (Qdebug): Remove decl. This reverts a part of the
12994 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
12995 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
12996
d66c4c7c
CY
129972011-05-29 Chong Yidong <cyd@stupidchicken.com>
12998
12999 * image.c: Various fixes to ImageMagick code comments.
13000 (Fimagemagick_types): Doc fix.
13001
5fbc2025
PE
130022011-05-29 Paul Eggert <eggert@cs.ucla.edu>
13003
0196f88a
PE
13004 Minor fixes prompted by GCC 4.6.0 warnings.
13005
13006 * xselect.c (converted_selections, conversion_fail_tag): Now static.
13007
5fbc2025
PE
13008 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
13009 (x_clipboard_manager_save_all): Move extern decl to ...
13010 * xterm.h: ... here, so that it can be checked for consistency.
13011
1dd3c2d9
CY
130122011-05-29 Chong Yidong <cyd@stupidchicken.com>
13013
13014 * xselect.c (x_clipboard_manager_save_frame)
13015 (x_clipboard_manager_save_all): New functions.
13016 (Fx_clipboard_manager_save): Lisp function deleted.
13017
13018 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
13019 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
13020
13021 * xterm.h: Update prototype.
13022
5ba6571d
WX
130232011-05-28 William Xu <william.xwl@gmail.com>
13024
13025 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
13026 exiting (Bug#8239).
13027
3eaff834
JM
130282011-05-28 Jim Meyering <meyering@redhat.com>
13029
e1900994 13030 Avoid a sign-extension bug in crypto_hash_function.
3eaff834
JM
13031 * fns.c (to_uchar): Define.
13032 (crypto_hash_function): Use it to convert some newly-signed
13033 variables to unsigned, to avoid sign-extension bugs. For example,
13034 without this change, (md5 "truc") would evaluate to
13035 45723a2aff78ff4fff7fff1114760e62 rather than the expected
13036 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
e1900994 13037 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
3eaff834 13038
0f6990a7
PE
130392011-05-27 Paul Eggert <eggert@cs.ucla.edu>
13040
13041 Integer overflow fixes.
c8a9ca5a 13042
08686060
PE
13043 * dbusbind.c: Serial number integer overflow fixes.
13044 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
08686060
PE
13045 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
13046 to hold a serial number that is too large for a fixnum.
13047 (Fdbus_method_return_internal, Fdbus_method_error_internal):
13048 Check for serial numbers out of range. Decode any serial number
59568bf0 13049 that was so large that it became a float. (Bug#8722)
08686060 13050
2d1fc3c7
PE
13051 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
13052 (Fdbus_call_method, Fdbus_call_method_asynchronously):
13053 Use XFASTINT rather than XUINT when numbers are nonnegative.
13054 (xd_append_arg, Fdbus_method_return_internal):
13055 (Fdbus_method_error_internal): Likewise. Also, for unsigned
13056 arguments, check that Lisp number is nonnegative, rather than
59568bf0 13057 silently wrapping negative numbers around. (Bug#8722)
30217ff0 13058 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
59568bf0 13059 (Bug#8722)
2d1fc3c7 13060
c8a9ca5a
PE
13061 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
13062
519e1d69
PE
13063 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
13064
6df6ae42 13065 ccl: Add integer overflow checks.
30569699
PE
13066 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
13067 (IN_INT_RANGE): New macros.
13068 (ccl_driver): Use them to check for integer overflow when
13069 decoding a CCL program. Many of the new checks are whether XINT (x)
13070 fits in int; it doesn't always, on 64-bit hosts. The new version
13071 doesn't catch all possible integer overflows, but it's an
847044ea 13072 improvement. (Bug#8719)
30569699 13073
c11285dc
PE
13074 * alloc.c (make_event_array): Use XINT, not XUINT.
13075 There's no need for unsigned here.
13076
fdccd48e
PE
13077 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
13078 This follows up to the 2011-05-06 change that substituted uintptr_t
13079 for EMACS_INT. This case wasn't caught back then.
13080
37910ab2
PE
13081 Rework Fformat to avoid integer overflow issues.
13082 * editfns.c: Include <float.h> unconditionally, as it's everywhere
13083 now (part of C89). Include <verify.h>.
13084 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
13085 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
13086 (Fformat): Avoid the prepass trying to compute sizes; it was only
13087 approximate and thus did not catch overflow reliably. Instead, walk
13088 through the format just once, formatting and computing sizes as we go,
13089 checking for integer overflow at every step, and allocating a larger
13090 buffer as needed. Keep track separately whether the format is
13091 multibyte. Keep only the most-recently calculated precision, rather
13092 than them all. Record whether each argument has been converted to
13093 string. Use EMACS_INT, not int, for byte and char and arg counts.
13094 Support field widths and precisions larger than INT_MAX. Avoid
13095 sprintf's undefined behavior with conversion specifications such as %#d
13096 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
13097 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
13098 formatting out-of-range floating point numbers with int
9173deec 13099 formats. (Bug#8668)
37910ab2 13100
2e6578fb
PE
13101 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
13102
0ae6bdee
PE
13103 * data.c: Avoid integer truncation in expressions involving floats.
13104 * data.c: Include <intprops.h>.
13105 (arith_driver): When there's an integer overflow in an expression
13106 involving floating point, convert the integers to floating point
13107 so that the resulting value does not suffer from catastrophic
13108 integer truncation. For example, on a 64-bit host (* 4
13109 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
13110 Do not rely on undefined behavior after integer overflow.
13111
de883a70
PE
13112 merge count_size_as_multibyte, parse_str_to_multibyte
13113 * character.c, character.h (count_size_as_multibyte):
fd6fa53f 13114 Rename from parse_str_to_multibyte; all uses changed.
de883a70
PE
13115 Check for integer overflow.
13116 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
13117 since it's now a duplicate of the other. This is more of
13118 a character than a buffer op, so better that it's in character.c.
13119 * fns.c, print.c: Adjust to above changes.
13120
2ff916cb
PE
131212011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
13122
13123 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
13124
f1b54466
PE
131252011-05-27 Paul Eggert <eggert@cs.ucla.edu>
13126
fb1ac845
PE
13127 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
13128 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
13129 (x_clipboard_manager_save): Now static.
13130 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
13131
f1b54466
PE
13132 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
13133 (crypto_hash_function): Now static.
13134 Fix pointer signedness problems. Avoid unnecessary initializations.
13135
a9f737ee
CY
131362011-05-27 Chong Yidong <cyd@stupidchicken.com>
13137
13138 * termhooks.h (Vselection_alist): Make it terminal-local.
13139
13140 * terminal.c (create_terminal): Initialize it.
13141
13142 * xselect.c: Support for clipboard managers.
13143 (Vselection_alist): Move to termhooks.h as terminal-local var.
13144 (LOCAL_SELECTION): New macro.
13145 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
13146 (symbol_to_x_atom): Remove gratuitous arg.
13147 (x_handle_selection_request, lisp_data_to_selection_data)
13148 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
620c53a6
SM
13149 (x_own_selection, x_get_local_selection, x_convert_selection):
13150 New arg, specifying work frame. Use terminal-local Vselection_alist.
a9f737ee
CY
13151 (some_frame_on_display): Delete unused function.
13152 (Fx_own_selection_internal, Fx_get_selection_internal)
13153 (Fx_disown_selection_internal, Fx_selection_owner_p)
13154 (Fx_selection_exists_p): New optional frame arg.
13155 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
13156 (x_handle_selection_clear): Don't treat other terminals with the
13157 same keyboard specially. Use the terminal-local Vselection_alist.
13158 (x_clear_frame_selections): Use Frun_hook_with_args.
13159
13160 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
13161
13162 * xterm.h: Add support for those atoms.
13163
e067f0c1
CY
131642011-05-26 Chong Yidong <cyd@stupidchicken.com>
13165
13166 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
13167 (converted_selections, conversion_fail_tag): New global variables.
13168 (x_selection_request_lisp_error): Free the above.
13169 (x_get_local_selection): Remove unnecessary code.
13170 (x_reply_selection_request): Args changed; handle arbitrary array
620c53a6
SM
13171 of converted selections stored in converted_selections.
13172 Separate the XChangeProperty and SelectionNotify steps.
e067f0c1
CY
13173 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
13174 (x_convert_selection): New function.
13175 (x_handle_selection_event): Simplify.
13176 (x_get_foreign_selection): Don't ignore incoming requests while
13177 waiting for an answer; this will fail when we implement
13178 SAVE_TARGETS, and seems unnecessary anyway.
13179 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
13180 (Vx_sent_selection_functions): Doc fix.
13181
0f4aebc0
LL
131822011-05-26 Leo Liu <sdl.web@gmail.com>
13183
13184 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
13185
e61124cd
YM
131862011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13187
13188 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
13189
13190 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
13191 for fringe update if it has periodic bitmap.
ac389d0c 13192 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
e61124cd
YM
13193 and fringe_bitmap_periodic_p.
13194
13195 * fringe.c (get_fringe_bitmap_data): New function.
13196 (draw_fringe_bitmap_1, update_window_fringes): Use it.
13197 (update_window_fringes): Record periodicity of fringe bitmap in glyph
13198 row. Mark glyph row for fringe update if periodicity changed.
13199
13200 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
13201 for fringe update unless it has periodic bitmap.
13202
f16d9837
KH
132032011-05-25 Kenichi Handa <handa@m17n.org>
13204
13205 * xdisp.c (get_next_display_element): Set correct it->face_id for
13206 a static composition.
13207
e1b90ef6
LL
132082011-05-24 Leo Liu <sdl.web@gmail.com>
13209
13210 * deps.mk (fns.o):
13211 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
13212
13213 * fns.c (crypto_hash_function, Fsha1): New function.
13214 (Fmd5): Use crypto_hash_function.
13215 (syms_of_fns): Add Ssha1.
13216
7400048f
PE
132172011-05-22 Paul Eggert <eggert@cs.ucla.edu>
13218
13219 * gnutls.c: Remove unused macros.
13220 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
13221 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
13222 Remove macros that are defined and never used.
13223 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
13224
abb71cf4
CY
132252011-05-22 Chong Yidong <cyd@stupidchicken.com>
13226
13227 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
13228 (Fx_get_selection_internal): Minor cleanup.
13229 (Fx_own_selection_internal): Rename arguments for consistency with
13230 select.el.
13231
6307db39
PE
132322011-05-22 Paul Eggert <eggert@cs.ucla.edu>
13233
13234 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
13235
f3d4e0a4
CY
132362011-05-22 Chong Yidong <cyd@stupidchicken.com>
13237
13238 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
13239
4d8ade89
YM
132402011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
13241
13242 * dispnew.c (scrolling_window): Don't exclude the case that the
13243 last enabled row in the desired matrix touches the bottom boundary.
13244
32078c8d
GM
132452011-05-21 Glenn Morris <rgm@gnu.org>
13246
13247 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
33cf345f
GM
13248 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
13249 and add some more files.
32078c8d 13250
7285dc67
EZ
132512011-05-20 Eli Zaretskii <eliz@gnu.org>
13252
13253 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
13254 report_file_error introduced by the change from 2011-05-07.
13255
89d1bd22
PE
132562011-05-20 Paul Eggert <eggert@cs.ucla.edu>
13257
13258 * systime.h (Time): Define only if emacs is defined.
13259 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
13260 where the include path doesn't have X11/X.h by default. See
13261 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
13262
cd394be1 132632011-05-20 Kenichi Handa <handa@m17n.org>
31bfc35c
KH
13264
13265 * composite.c (find_automatic_composition): Fix previous change.
13266
b9704ad9
GM
132672011-05-20 Glenn Morris <rgm@gnu.org>
13268
13269 * lisp.mk: New file, split from Makefile.in.
13270 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
13271 (shortlisp): Remove.
13272 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
13273
4a720484
GM
132742011-05-19 Glenn Morris <rgm@gnu.org>
13275
13276 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
13277 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
13278 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
13279 (lisp): Set the order to that of loadup.el.
13280 (shortlisp): Make it a copy of $lisp.
13281 (SOME_MACHINE_LISP): Remove.
13282 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
13283 Use just $shortlisp, not $SOME_MACHINE_LISP too.
13284
a28d4396
KH
132852011-05-18 Kenichi Handa <handa@m17n.org>
13286
13287 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
13288 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
13289 (find_automatic_composition): Mostly rewrite for efficiency.
13290
a2b1fa8e
JB
132912011-05-18 Juanma Barranquero <lekktu@gmail.com>
13292
13293 * makefile.w32-in: Update dependencies.
13294
8e1f5610
CS
132952011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
13296
13297 * menu.c: Include limits.h (fixes the MS-Windows build broken by
7d7d0045 13298 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
8e1f5610 13299
7025ee00 133002011-05-18 Paul Eggert <eggert@cs.ucla.edu>
cb93f9be 13301
cdfa6eab
PE
13302 Fix some integer overflow issues, such as string length overflow.
13303
06d6db33
PE
13304 * insdel.c (count_size_as_multibyte): Check for string overflow.
13305
2b4560a8
PE
13306 * character.c (lisp_string_width): Check for string overflow.
13307 Use EMACS_INT, not int, for string indexes and lengths; in
13308 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
13309 the resulting string length overflows an EMACS_INT; instead,
13310 report a string overflow if no precision given. When checking for
13311 precision exhaustion, use a check that cannot possibly have
13312 integer overflow. (Bug#8675)
13313 * character.h (lisp_string_width): Adjust to new signature.
13314
cb93f9be
PE
13315 * alloc.c (string_overflow): New function.
13316 (Fmake_string): Use it. This doesn't change behavior, but saves
13317 a few bytes and will simplify future changes.
13318 * character.c (string_escape_byte8): Likewise.
13319 * lisp.h (string_overflow): New decl.
13320
1a1f3366
PE
13321 Fixups, following up to the user-interface timestamp change.
13322 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
13323 for UI timestamps, instead of unsigned long.
9fbd6841
PE
13324 * msdos.c (mouse_get_pos): Likewise.
13325 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
1a1f3366
PE
13326 * w32gui.h (Time): Define by including "systime.h" rather than by
13327 declaring it ourselves. (Bug#8664)
13328
d4e3e4d3
PE
13329 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
13330 * image.c (clear_image_cache): Likewise.
13331
f6a24d19
PE
13332 * term.c (term_mouse_position): Don't assume time_t wraparound.
13333
08dc5ae6
PE
13334 Be more systematic about user-interface timestamps.
13335 Before, the code sometimes used 'Time', sometimes 'unsigned long',
620c53a6
SM
13336 and sometimes 'EMACS_UINT', to represent these timestamps.
13337 This change causes it to use 'Time' uniformly, as that's what X uses.
08dc5ae6
PE
13338 This makes the code easier to follow, and makes it easier to catch
13339 integer overflow bugs such as Bug#8664.
13340 * frame.c (Fmouse_position, Fmouse_pixel_position):
13341 Use Time, not unsigned long, for user-interface timestamps.
13342 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
13343 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
13344 * keyboard.h (last_event_timestamp): Likewise.
13345 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
13346 * menu.h (xmenu_show): Likewise.
13347 * term.c (term_mouse_position): Likewise.
13348 * termhooks.h (struct input_event.timestamp): Likewise.
13349 (struct terminal.mouse_position_hook): Likewise.
13350 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
13351 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
13352 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
13353 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
13354 what it was before.
13355 * menu.h, termhooks.h: Include "systime.h", for Time.
13356
8e55734a
PE
13357 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
13358 Don't assume that the difference between two unsigned long values
13359 can fit into an integer. At this point, we know button_down_time
13360 <= event->timestamp, so the difference must be nonnegative, so
13361 there's no need to cast the result if double-click-time is
13362 nonnegative, as it should be; check that it's nonnegative, just in
13363 case. This bug is triggered when events are more than 2**31 ms
86db42d2 13364 apart (about 25 days). (Bug#8664)
8e55734a 13365
841f1b75 13366 * xselect.c (last_event_timestamp): Remove duplicate decl.
6434756c 13367 (x_own_selection): Remove needless cast to unsigned long.
841f1b75 13368
3e26f69c
PE
13369 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
13370 that always fit in int. Use a sentinel instead of a counter, to
13371 avoid a temp and to allay GCC's concerns about possible int overflow.
d230cb74
PE
13372 * frame.h (struct frame): Use int for menu_bar_items_used
13373 instead of EMACS_INT, since it always fits in int.
3e26f69c 13374
5cc152c0
PE
13375 * menu.c (grow_menu_items): Check for int overflow.
13376
d89eb65e
PE
13377 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
13378
5235bd3e
PE
13379 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
13380 Before, the code was not consistent. These values cannot exceed
13381 2**31 - 1 so there's no need to make them unsigned.
13382 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
13383 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
13384 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
13385 as modifiers.
13386 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
13387
bc827e23
PE
13388 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
13389 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
13390 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
13391 presumably because the widths might not match.
13392
78eb494e
PE
13393 * window.c (size_window): Avoid needless test at loop start.
13394
04f2d78b
CB
133952011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
13396
13397 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
13398
d2fc7e3d 133992011-05-12 Drew Adams <drew.adams@oracle.com>
e531bdff
DA
13400
13401 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
13402
d2fc7e3d 134032011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7db47798
YM
13404
13405 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
13406 `width' to `bar_area_x' and `bar_area_width', respectively.
13407 (x_scroll_run): Take account of fringe background extension.
13408
04f2d78b
CB
13409 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
13410 Rename local vars `left' and `width' to `bar_area_x' and
7db47798
YM
13411 `bar_area_width', respectively.
13412 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
13413 background extension.
13414
79b70037
GM
134152011-05-10 Jim Meyering <meyering@redhat.com>
13416
13417 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
13418
2f142cc5
JB
134192011-05-10 Juanma Barranquero <lekktu@gmail.com>
13420
13421 * image.c (Finit_image_library): Return t for built-in image types,
13422 like pbm and xbm. (Bug#8640)
13423
57679c86
AS
134242011-05-09 Andreas Schwab <schwab@linux-m68k.org>
13425
13426 * w32menu.c (set_frame_menubar): Fix submenu allocation.
13427
888c9e86
EZ
134282011-05-07 Eli Zaretskii <eliz@gnu.org>
13429
b0512a1d
EZ
13430 * w32console.c (Fset_screen_color): Doc fix.
13431 (Fget_screen_color): New function.
13432 (syms_of_ntterm): Defsubr it.
13433
7285dc67
EZ
13434 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
13435 unlink the temporary file if Fcall_process didn't create it in the
13436 first place.
13437 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
13438 child process will be redirected to a file specified with `:file'.
888c9e86
EZ
13439 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
13440 cue to call_process_cleanup not to close that handle.
13441
4d3fcc8e
BK
134422011-05-07 Ben Key <bkey76@gmail.com>
13443
13444 * makefile.w32-in: The bootstrap-temacs rule now makes use of
13445 one of two shell specific rules, either bootstrap-temacs-CMD or
13446 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
13447 to the previous implementation of the bootstrap-temacs rule.
13448 The bootstrap-temacs-CMD rule is similar to the previous
13449 implementation of the bootstrap-temacs rule except that it
13450 makes use of the ESC_CFLAGS variable instead of the CFLAGS
13451 variable.
13452
13453 These changes, along with some changes to nt/configure.bat,
13454 nt/gmake.defs, and nt/nmake.defs, are required to extend my
13455 earlier fix to add support for --cflags and --ldflags options
13456 that include quotes so that it works whether make uses cmd or
13457 sh as the shell.
13458
b4289b64
MA
134592011-05-06 Michael Albinus <michael.albinus@gmx.de>
13460
13461 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
13462 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
13463 is a constant.
13464 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
13465 a string. Handle both cases.
13466 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
13467 (Fdbus_register_method): Use Qinvalid_function.
13468
af4c0e28
JB
134692011-05-06 Juanma Barranquero <lekktu@gmail.com>
13470
13471 * makefile.w32-in: Update dependencies.
13472 (LISP_H): Add inttypes.h and stdin.h.
13473 (PROCESS_H): Add unistd.h.
13474
c51453d9
EZ
134752011-05-06 Eli Zaretskii <eliz@gnu.org>
13476
13477 * lread.c: Include limits.h (fixes the MS-Windows build broken by
13478 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
13479
8ff0ac3c 134802011-05-06 Paul Eggert <eggert@cs.ucla.edu>
c032b5f8 13481
4c4b566b
PE
13482 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
13483
aab2b9b5
PE
13484 * term.c (vfatal): Remove stray call to va_end.
13485 It's not needed and the C Standard doesn't allow it here anyway.
13486
c378da0b
PE
13487 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
13488 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
13489
288b08c7
PE
13490 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
13491 bytes.
13492
e3601888
PE
13493 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
13494
db6c0e74
PE
13495 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
13496
dd5963ea
PE
13497 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
13498
88c9450f
PE
13499 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
13500
2f9442b8
PE
13501 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
13502
c032b5f8
PE
13503 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
13504 * charset.c (Fdefine_charset_internal): Don't initialize
13505 charset.code_space[15]. The value was garbage, on hosts with
2d38271b 13506 32-bit int (Bug#8600).
a108c10b
PE
13507
13508 * lread.c (read_integer): Be more consistent with string-to-number.
13509 Use string_to_number to do the actual conversion; this avoids
13510 rounding errors and fixes some other screwups. Without this fix,
13511 for example, #x1fffffffffffffff was misread as -2305843009213693952.
13512 (digit_to_number): Move earlier, for benefit of read_integer.
13513 Return -1 if the digit is out of range for the base, -2 if it is
48e400f0 13514 not a digit in any supported base. (Bug#8602)
a108c10b 13515
ad5f9eea
PE
13516 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
13517
aec1708a
PE
13518 * dispnew.c (scrolling_window): Return 1 if we scrolled,
13519 to match comment at start of function. This also removes a
13520 GCC warning about overflow in a 32+64-bit port.
13521
47be4ab5
PE
13522 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
13523
371cac43
PE
13524 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
13525 Reported by Stefan Monnier in
13526 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
04f2d78b
CB
13527 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
13528 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
371cac43 13529
d01a7826
PE
13530 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
13531 (EMACS_UINTPTR): Likewise, with uintptr_t.
13532
7fd47d5c
PE
13533 * lisp.h: Prefer 64-bit EMACS_INT if available.
13534 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
13535 on 32-bit hosts that have 64-bit int, so that they can access
13536 large files.
122b0c86
PE
13537 However, temporarily disable this change unless the temporary
13538 symbol WIDE_EMACS_INT is defined.
7fd47d5c 13539
8727937b
PE
13540 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
13541
8ac068ac
PE
13542 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
13543 This removes an assumption that EMACS_INT and long are the same
13544 width as pointers. The assumption is true for Emacs porting targets
13545 now, but we want to make other targets possible.
13546 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
13547 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
13548 In the rest of the code, change types of integers that hold casted
13549 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
13550 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
13551 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
13552 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
13553 No need to cast type when ORing.
13554 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
13555 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
13556 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
13557 assume EMACS_INT is the same width as char *.
13558 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
13559 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
13560 Remove no-longer-needed casts.
13561 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
13562 (xg_tool_bar_help_callback, xg_make_tool_item):
13563 Use EMACS_INTPTR to hold an integer
13564 that will be cast to void *; this can avoid a GCC warning
13565 if EMACS_INT is not the same width as void *.
13566 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
13567 * xdisp.c (display_echo_area_1, resize_mini_window_1):
13568 (current_message_1, set_message_1):
13569 Use a local to convert to proper width without a cast.
13570 * xmenu.c (dialog_selection_callback): Likewise.
13571
ede49d71
PE
13572 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
13573 Also, don't assume VALBITS / RAND_BITS is less than 5,
13574 and don't rely on undefined behavior when shifting a 1 left into
13575 the sign bit.
13576 * lisp.h (get_random): Change signature to match.
13577
2f30ecd0
PE
13578 * lread.c (hash_string): Use size_t, not int, for hash computation.
13579 Normally we prefer signed values; but hashing is special, because
13580 it's better to use unsigned division on hash table sizes so that
13581 the remainder is nonnegative. Also, size_t is the natural width
13582 for hashing into memory. The previous code used 'int', which doesn't
13583 retain enough info to hash well into very large tables.
13584 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
13585
2a866e7b
PE
13586 * dbusbind.c: Don't possibly lose pointer info when converting.
13587 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
13588 Use XPNTR rather than XHASH, so that the high-order bits of
13589 the pointer aren't lost when converting through void *.
13590
51639eac
PE
13591 * eval.c (Fautoload): Don't double-shift a pointer.
13592
92394119
PE
13593 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
13594
dbdb9a7c
JB
135952011-05-06 Juanma Barranquero <lekktu@gmail.com>
13596
13597 * gnutls.c (DEF_GNUTLS_FN):
13598 * image.c (DEF_IMGLIB_FN): Make function pointers static.
13599
db7a0b4f
AS
136002011-05-05 Andreas Schwab <schwab@linux-m68k.org>
13601
13602 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
13603 marker. (Bug#8610)
13604
cd394be1 136052011-05-05 Eli Zaretskii <eliz@gnu.org>
fab624aa
EZ
13606
13607 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
13608 New version that can reserve upto 2GB of heap space.
13609
f7ff1b0f 136102011-05-05 Chong Yidong <cyd@stupidchicken.com>
45cb8994
CY
13611
13612 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
13613
639c109b
TZ
136142011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
13615
13616 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
13617 `gnutls_certificate_set_x509_key_file'.
13618
d2127135
JB
136192011-05-05 Juanma Barranquero <lekktu@gmail.com>
13620
13621 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
13622 Update dependencies.
13623
e968f4f3
JB
136242011-05-04 Juanma Barranquero <lekktu@gmail.com>
13625
13626 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
13627 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
13628 Remove unused parameter `fildes'.
13629 * process.c (read_process_output, send_process): Don't pass it.
13630
84d358f0
JB
136312011-05-04 Juanma Barranquero <lekktu@gmail.com>
13632
13633 Fix previous change: the library cache is defined in w32.c.
13634 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
13635 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
13636
0898ca10
JB
136372011-05-04 Juanma Barranquero <lekktu@gmail.com>
13638
13639 Implement dynamic loading of GnuTLS on Windows.
13640
13641 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
13642 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
13643 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
13644 Declare.
13645
13646 * gnutls.c (Qgnutls_dll): Define.
13647 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
13648 (gnutls_*): Declare function pointers.
13649 (init_gnutls_functions): New function to initialize function pointers.
13650 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
13651 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
13652 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
13653 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
13654 (emacs_gnutls_write, emacs_gnutls_read)
13655 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
13656 (Fgnutls_available_p): New function.
13657 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
13658 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
13659 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
13660
13661 * image.c: Include w32.h.
13662 (Vimage_type_cache): Delete.
13663 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
13664 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
13665 (w32_delayed_load): Move to w32.c.
13666
13667 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
13668
13669 * w32.c (QCloaded_from, Vlibrary_cache): Define.
13670 (w32_delayed_load): Move from image.c. When loading a library, record
13671 its filename in the :loaded-from property of the library id.
13672 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
13673 Initialize and staticpro them.
13674 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
13675
13676 * process.c: Include lisp.h before w32.h, not after.
13677 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
13678 instead of gnutls_record_check_pending.
13679
13680 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
13681
ff4de4aa
TZ
136822011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
13683
13684 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
13685 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
13686 as passed in.
13687
abe95abb
JD
136882011-05-03 Jan Djärv <jan.h.d@swipnet.se>
13689
13690 * xterm.c (x_set_frame_alpha): Do not set property on anything
13691 else than FRAME_X_OUTER_WINDOW (Bug#8608).
13692
e16e55d4
JB
136932011-05-02 Juanma Barranquero <lekktu@gmail.com>
13694
13695 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
13696
bafcf6a5
JB
136972011-05-02 Juanma Barranquero <lekktu@gmail.com>
13698
13699 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
13700 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
13701 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
13702 (gnutls_global_initialized, Qgnutls_bootprop_priority)
13703 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
13704 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
13705 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
13706 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
13707 (Qgnutls_bootprop_callbacks_verify): Make static.
13708
e7a6747f
AS
137092011-05-01 Andreas Schwab <schwab@linux-m68k.org>
13710
19ed11ba
AS
13711 * callproc.c: Indentation fixup.
13712
e7a6747f 13713 * sysdep.c (wait_for_termination_1): Make static.
04f2d78b
CB
13714 (wait_for_termination, interruptible_wait_for_termination):
13715 Move after wait_for_termination_1.
e7a6747f 13716
1ef14cb4
LMI
137172011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
13718
13719 * sysdep.c (interruptible_wait_for_termination): New function
13720 which is like wait_for_termination, but allows keyboard
13721 interruptions.
13722
13723 * callproc.c (Fcall_process): Add (:file "file") as an option for
13724 the STDOUT buffer.
13725 (Fcall_process_region): Ditto.
13726
330d880c
EZ
137272011-04-30 Eli Zaretskii <eliz@gnu.org>
13728
8db90b73
EZ
13729 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
13730 rather than `XVECTOR (FOO)->size'.
13731
330d880c
EZ
13732 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
13733 inttypes.h, as a gnulib replacement is used if it not available in
13734 system headers.
13735
15cbd324
EZ
137362011-04-21 Eli Zaretskii <eliz@gnu.org>
13737
13738 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
13739 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
13740 of MOST_POSITIVE_FIXNUM. (Bug#8528)
13741
13742 * coding.c (coding_alloc_by_realloc): Error out if destination
13743 will grow beyond MOST_POSITIVE_FIXNUM.
13744 (decode_coding_emacs_mule): Abort if there isn't enough place in
13745 charbuf for the composition carryover bytes. Reserve an extra
13746 space for up to 2 characters produced in a loop.
13747 (decode_coding_iso_2022): Abort if there isn't enough place in
13748 charbuf for the composition carryover bytes.
13749
137502011-04-21 Eli Zaretskii <eliz@gnu.org>
afda1437 13751
ae940cca
EZ
13752 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
13753 aborting when %lld or %lll format is passed.
13754 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
13755 %llo or %llx format is passed. (Bug#8545)
13756
03ab8921
EZ
13757 * window.c (window_scroll_line_based): Use a marker instead of
13758 simple variables to record original value of point. (Bug#7952)
13759
afda1437
EZ
13760 * doprnt.c (doprnt): Fix the case where a multibyte sequence
13761 produced by %s or %c overflows available buffer space. (Bug#8545)
13762
f76dee0c
PE
137632011-04-28 Paul Eggert <eggert@cs.ucla.edu>
13764
13765 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
283cdbef 13766 (SIZE_MAX): Move defn after all includes, as they might #define it.
f76dee0c 13767
fdc5744d
JB
137682011-04-28 Juanma Barranquero <lekktu@gmail.com>
13769
13770 * w32.c (init_environment): Warn about defaulting HOME to C:\.
13771
638f053a
JB
137722011-04-28 Juanma Barranquero <lekktu@gmail.com>
13773
13774 * keyboard.c (Qdelayed_warnings_hook): Define.
13775 (command_loop_1): Run `delayed-warnings-hook'
13776 if Vdelayed_warnings_list is non-nil.
13777 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
13778 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
13779
d178f871
EZ
137802011-04-28 Eli Zaretskii <eliz@gnu.org>
13781
13782 * doprnt.c (doprnt): Don't return value smaller than the buffer
13783 size if the message was truncated. (Bug#8545).
13784
b124fd93
JB
137852011-04-28 Juanma Barranquero <lekktu@gmail.com>
13786
13787 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
13788 (Fx_window_property): #if-0 the whole functions, not just the bodies.
13789
e810457d
PE
137902011-04-27 Paul Eggert <eggert@cs.ucla.edu>
13791
13792 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
13793
ea51cceb
JB
137942011-04-27 Juanma Barranquero <lekktu@gmail.com>
13795
13796 * makefile.w32-in: Update dependencies.
13797
94dcfacf
EZ
137982011-04-27 Eli Zaretskii <eliz@gnu.org>
13799
13800 Improve `doprnt' and its usage. (Bug#8545)
13801 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
13802 `format_end'. Remove support for %l as a conversion specifier.
13803 Don't use xrealloc. Improve diagnostics when the %l size modifier
13804 is used. Update the commentary.
13805
13806 * eval.c (verror): Simplify calculation of size_t.
13807
13808 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
13809 messages.
13810
f61f41d7
PE
138112011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
13812
13813 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
13814 change.
13815
96fb4434
PE
138162011-04-27 Paul Eggert <eggert@cs.ucla.edu>
13817
13818 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
13819 This makes this file independent of the recent pseudovector change.
13820
671875da 138212011-04-26 Paul Eggert <eggert@cs.ucla.edu>
eab3844f 13822
69e9b5a3
PE
13823 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
13824
b5f869a7 13825 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
7754e151 13826 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
8d4c3955 13827 Remove unused local.
c8926152 13828 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
080e5a8d 13829
841a1577 13830 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
04f2d78b
CB
13831 GCC 4.6.0 optimizes based on type-based alias analysis.
13832 For example, if b is of type struct buffer * and v of type struct
eab3844f
PE
13833 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
13834 != &v->size, and therefore "v->size = 1; b->size = 2; return
13835 v->size;" must therefore return 1. This assumption is incorrect
13836 for Emacs, since it type-puns struct Lisp_Vector * with many other
13837 types. To fix this problem, this patch adds a new type struct
f904488f 13838 vectorlike_header that documents the constraints on layout of vectors
eab3844f
PE
13839 and pseudovectors, and helps optimizing compilers not get fooled
13840 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
13841 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
f904488f
PE
13842 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
13843 the size member.
eab3844f
PE
13844 (XSETPVECTYPE): Rewrite in terms of new macro.
13845 (XSETPVECTYPESIZE): New macro, specifying both type and size.
13846 This is a bit clearer, and further avoids the possibility of
13847 undesirable aliasing.
13848 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
f904488f 13849 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
eab3844f
PE
13850 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
13851 since Lisp_Subr is a special case (no "next" field).
04f2d78b
CB
13852 (ASIZE): Now uses header.size rather than size.
13853 All previous uses of XVECTOR (foo)->size replaced to use this macro,
f904488f
PE
13854 to avoid the hassle of writing XVECTOR (foo)->header.size.
13855 (struct vectorlike_header): New type.
eab3844f
PE
13856 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
13857 object, to help avoid aliasing.
13858 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
13859 (SUBRP): Likewise, since Lisp_Subr is a special case.
13860 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
13861 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
13862 (struct Lisp_Hash_Table): Combine first two members into a single
f904488f 13863 struct vectorlike_header member. All uses of "size" and "next" members
eab3844f
PE
13864 changed to be "header.size" and "header.next".
13865 * buffer.h (struct buffer): Likewise.
13866 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
13867 * frame.h (struct frame): Likewise.
13868 * process.h (struct Lisp_Process): Likewise.
13869 * termhooks.h (struct terminal): Likewise.
13870 * window.c (struct save_window_data, struct saved_window): Likewise.
13871 * window.h (struct window): Likewise.
13872 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
13873 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
13874 * buffer.c (init_buffer_once): Likewise.
13875 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
13876 special case.
13877 * process.c (Fformat_network_address): Use local var for size,
13878 for brevity.
13879
0df1eac5
PE
13880 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
13881
847ab9d1 13882 Make the Lisp reader and string-to-float more consistent (Bug#8525)
452f4150
PE
13883 * data.c (atof): Remove decl; no longer used or needed.
13884 (digit_to_number): Move to lread.c.
13885 (Fstring_to_number): Use new string_to_number function, to be
13886 consistent with how the Lisp reader treats infinities and NaNs.
13887 Do not assume that floating-point numbers represent EMACS_INT
13888 without losing information; this is not true on most 64-bit hosts.
13889 Avoid double-rounding errors, by insisting on integers when
13890 parsing non-base-10 numbers, as the documentation specifies.
13891 * lisp.h (string_to_number): New decl, replacing ...
13892 (isfloat_string): Remove.
bc0a5c13 13893 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
d78050d6 13894 (read1): Do not accept +. and -. as integers; this
452f4150
PE
13895 appears to have been a coding error. Similarly, do not accept
13896 strings like +-1e0 as floating point numbers. Do not report
13897 overflow for integer overflows unless the base is not 10 which
13898 means we have no simple and reliable way to continue.
13899 Break out the floating-point parsing into a new
13900 function string_to_number, so that Fstring_to_number parses
13901 floating point numbers consistently with the Lisp reader.
04f2d78b 13902 (digit_to_number): Move here from data.c. Make it static inline.
452f4150
PE
13903 (E_CHAR, EXP_INT): Remove, replacing with ...
13904 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
13905 (string_to_number): New function, replacing isfloat_string.
13906 This function checks for valid syntax and produces the resulting
13907 Lisp float number too. Rework it so that string-to-number
bc0a5c13 13908 no longer mishandles examples like "1.0e+". Use strtoumax,
d78050d6
PE
13909 so that overflow for non-base-10 numbers is reported only when
13910 there's no portable and simple way to convert to floating point.
452f4150 13911
67769ffc
PE
13912 * textprop.c (set_text_properties_1): Rewrite for clarity,
13913 and to avoid GCC warning about integer overflow.
13914
c20db43f
PE
13915 * intervals.h (struct interval): Use EMACS_INT for members
13916 where EMACS_UINT might cause problems. See
13917 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
13918 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
13919 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
13920 All uses changed.
37aa2f85
PE
13921 (offset_intervals): Tell GCC not to worry about length overflow
13922 when negating a negative length.
c20db43f 13923
2538aa2f
PE
13924 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
13925 (overrun_check_free): Likewise.
13926
f2d3008d
PE
13927 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
13928 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
13929 word size.
13930
ec8df744
PE
13931 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
13932 (gnutls_make_error): Rename local to avoid shadowing.
13933 (gnutls_emacs_global_deinit): ifdef out; not used.
13934 (Fgnutls_boot): Use const for pointer to readonly storage.
13935 Comment out unused local. Fix pointer signedness problems.
13936
640ee02d
PE
13937 * lread.c (openp): Don't stuff size_t into an 'int'.
13938 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
13939 about possible signed overflow.
13940
6048fb2a
PE
13941 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
13942 (GDK_KEY_g): Don't define if already defined.
13943 (xg_prepare_tooltip): Avoid pointer signedness problem.
13944 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
13945
fa3c87e1
PE
13946 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
13947 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
13948
2172544b
PE
13949 * xfns.c (Fx_window_property): Simplify a bit,
13950 to make a bit faster and to avoid GCC 4.6.0 warning.
13951 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
13952
9b821a21
PE
13953 * fns.c (internal_equal): Don't assume size_t fits in int.
13954
3c616cfa
PE
13955 * alloc.c (compact_small_strings): Tighten assertion a little.
13956
c2982e87
PE
13957 Replace pEd with more-general pI, and fix some printf arg casts.
13958 * lisp.h (pI): New macro, generalizing old pEd macro to other
13959 conversion specifiers. For example, use "...%"pI"d..." rather
13960 than "...%"pEd"...".
13961 (pEd): Remove. All uses replaced with similar uses of pI.
61bdb816 13962 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
c2982e87
PE
13963 * alloc.c (check_pure_size): Don't overflow by converting size to int.
13964 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
13965 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
13966 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
13967 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
13968 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
13969 64-bit hosts.
13970 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
13971 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
13972 * print.c (safe_debug_print, print_object): Likewise.
13973 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
13974 to int.
6f04d126
PE
13975 Use pI instead of if-then-else-abort. Use %p to avoid casts,
13976 avoiding the 0 flag, which is not portable.
c2982e87
PE
13977 * process.c (Fmake_network_process): Use pI to avoid cast.
13978 * region-cache.c (pp_cache): Likewise.
13979 * xdisp.c (decode_mode_spec): Likewise.
13980 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
13981 behavior on 64-bit hosts with printf arg.
6f04d126 13982 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
c2982e87
PE
13983 (x_stop_queuing_selection_requests): Likewise.
13984 (x_get_window_property): Don't truncate byte count to an 'int'
13985 when tracing.
0b432f21 13986
5e073ec7
PE
13987 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
13988 here, since it parses constructs like leading '-' and spaces,
13989 which are not wanted; and it overflows with large numbers.
13990 Instead, simply match F[0-9]+, which is what is wanted anyway.
13991
36372bf9
PE
13992 * alloc.c: Remove unportable assumptions about struct layout.
13993 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
13994 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
13995 (allocate_vectorlike, make_pure_vector): Use the new macros,
13996 plus offsetof, to remove unportable assumptions about struct layout.
13997 These assumptions hold on all porting targets that I know of, but
13998 they are not guaranteed, they're easy to remove, and removing them
13999 makes further changes easier.
14000
0b432f21
PE
14001 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
14002 This doesn't fix a bug but makes the code clearer.
bfd1c781
PE
14003 (string_overrun_cookie): Now const. Use initializers that
14004 don't formally overflow signed char, to avoid warnings.
000098c1
PE
14005 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
14006 can cause Emacs to crash when string overrun checking is enabled.
c7bda33c
PE
14007 (allocate_buffer): Don't assume sizeof (struct buffer) is a
14008 multiple of sizeof (EMACS_INT); it need not be, if
14009 alignof(EMACS_INT) < sizeof (EMACS_INT).
d0f4e1f5 14010 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
0b432f21 14011
895009e1
JB
140122011-04-26 Juanma Barranquero <lekktu@gmail.com>
14013
14014 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
14015
6a7a1b0b
TZ
140162011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
14017
14018 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
b5f869a7 14019 supposed to be handshaking. (Bug#8556)
6a7a1b0b
TZ
14020 Reported by Paul Eggert <eggert@cs.ucla.edu>.
14021
841a1577 140222011-04-26 Daniel Colascione <dan.colascione@gmail.com>
0438ce91
DC
14023
14024 * lisp.h (Qdebug): List symbol.
895009e1 14025 * eval.c (Qdebug): Restore global linkage.
0438ce91
DC
14026 * keyboard.c (debug-on-event): New variable.
14027 (handle_user_signal): Break into debugger when debug-on-event
14028 matches the current signal symbol.
14029
f2d3ba6f
DN
140302011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
14031
14032 * alloc.c (check_sblock, check_string_bytes)
14033 (check_string_free_list): Convert to standard C.
14034
42ce4c63
TZ
140352011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
14036
14037 * w32.c (emacs_gnutls_push): Fix typo.
14038
825cd63c
EZ
140392011-04-25 Eli Zaretskii <eliz@gnu.org>
14040
fb11d64d
EZ
14041 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
14042 "cast to pointer from integer of different size".
14043
825cd63c
EZ
14044 Improve doprnt and its use in verror. (Bug#8545)
14045 * doprnt.c (doprnt): Document the set of format control sequences
14046 supported by the function. Use SAFE_ALLOCA instead of always
14047 using `alloca'.
14048
14049 * eval.c (verror): Don't limit the buffer size at size_max-1, that
14050 is one byte too soon. Don't use xrealloc; instead xfree and
14051 xmalloc anew.
14052
e061a11b
TZ
140532011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
14054
14055 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
14056 callbacks stage.
14057
14058 * gnutls.c: Renamed global_initialized to
14059 gnutls_global_initialized. Added internals for the
14060 :verify-hostname-error, :verify-error, and :verify-flags
14061 parameters of `gnutls-boot' and documented those parameters in the
14062 docstring. Start callback support.
9173deec
JB
14063 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
14064 unless a fatal error occurred. Call gnutls_alert_send_appropriate
14065 on error. Return error code.
e061a11b
TZ
14066 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
14067 (emacs_gnutls_read): Likewise.
14068 (Fgnutls_boot): Return handshake error code.
14069 (emacs_gnutls_handle_error): New function.
14070 (wsaerror_to_errno): Likewise.
14071
14072 * w32.h (emacs_gnutls_pull): Add prototype.
14073 (emacs_gnutls_push): Likewise.
14074
14075 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
14076 (emacs_gnutls_push): Likewise.
14077
140782011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
14079
14080 * process.c (wait_reading_process_output): Check if GnuTLS
14081 buffered some data internally if no FDs are set for TLS
14082 connections.
14083
14084 * makefile.w32-in (OBJ2): Add gnutls.$(O).
14085 (LIBS): Link to USER_LIBS.
14086 ($(BLD)/gnutls.$(0)): New target.
14087
fa6996bc
EZ
140882011-04-24 Eli Zaretskii <eliz@gnu.org>
14089
eb35682e
EZ
14090 * xdisp.c (handle_single_display_spec): Rename the
14091 display_replaced_before_p argument into display_replaced_p, to
14092 make it consistent with the commentary. Fix typos in the
14093 commentary.
14094
e2ad650c
EZ
14095 * textprop.c (syms_of_textprop): Remove dead code.
14096 (copy_text_properties): Delete obsolete commentary about an
14097 interface that was deleted long ago. Fix typos in the description
14098 of arguments.
14099
1b2de274
EZ
14100 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
14101 to changes in oldXMenu/XMenu.h from 2011-04-16.
14102 <menu_help_message, prev_menu_help_message>: Constify.
14103 (IT_menu_make_room): menu->help_text is now `const char **';
14104 adjust.
14105
14106 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
14107 to changes in oldXMenu/XMenu.h from 2011-04-16.
14108 (struct XMenu): Declare `help_text' `const char **'.
14109
14110 * xfaces.c <Qunspecified>: Make extern again.
14111
14112 * syntax.c: Include sys/types.h before including regex.h, as
75f1671a 14113 required by POSIX.
1b2de274 14114
762b15be
EZ
14115 * doc.c (get_doc_string): Improve the format passed to `error'.
14116
14117 * doprnt.c (doprnt): Improve commentary.
14118
14119 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
14120
14121 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
14122 them with etags.
14123
f1052e5d
EZ
14124 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
14125 changes in globals.h immediately force recompilation.
762b15be
EZ
14126 (TAGS): Depend on $(CURDIR)/m/intel386.h and
14127 $(CURDIR)/s/ms-w32.h.
14128 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
f1052e5d 14129
fa6996bc
EZ
14130 * character.c (Fchar_direction): Function deleted.
14131 (syms_of_character): Don't defsubr it.
14132 <char-direction-table>: Deleted.
14133
e6c3da20
EZ
141342011-04-23 Eli Zaretskii <eliz@gnu.org>
14135
14136 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
14137 * doprnt.c: Include limits.h.
14138 (SIZE_MAX): New macro.
04f2d78b
CB
14139 (doprnt): Return a size_t value. 2nd arg is now size_t.
14140 Many local variables are now size_t instead of int or unsigned.
e6c3da20
EZ
14141 Improve overflow protection. Support `l' modifier for integer
14142 conversions. Support %l conversion. Don't assume an EMACS_INT
14143 argument for integer conversions and for %c.
14144
14145 * lisp.h (doprnt): Restore prototype.
14146
14147 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
14148 $(SRC)/character.h.
14149
14150 * Makefile.in (base_obj): Add back doprnt.o.
14151
14152 * deps.mk (doprnt.o): Add back prerequisites.
14153 (callint.o): Depend on character.h.
14154
14155 * eval.c (internal_lisp_condition_case): Include the handler
14156 representation in the error message.
14157 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
14158 when breaking from the loop.
14159
14160 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
14161
14162 * callint.c (Fcall_interactively): When displaying error message
14163 about invalid control letter, pass the character's codepoint, not
14164 a pointer to its multibyte form. Improve display of the character
14165 in octal and display also its hex code.
14166
14167 * character.c (char_string): Use %x to display the (unsigned)
14168 codepoint of an invalid character, to avoid displaying a bogus
14169 negative value.
14170
14171 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
14172 `error', not SYMBOL_NAME itself.
14173
14174 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
14175 character arguments to `error'.
14176
14177 * charset.c (check_iso_charset_parameter): Fix incorrect argument
14178 to `error' in error message about FINAL_CHAR argument. Make sure
14179 FINAL_CHAR is a character, and use %c when it is passed as
14180 argument to `error'.
14181
4ffd0d6b 141822011-04-23 Eli Zaretskii <eliz@gnu.org>
97a93095
EZ
14183
14184 * s/ms-w32.h (localtime): Redirect to sys_localtime.
14185
14186 * w32.c: Include <time.h>.
14187 (sys_localtime): New function.
14188
4ffd0d6b 141892011-04-23 Chong Yidong <cyd@stupidchicken.com>
c17819f4
CY
14190
14191 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
14192
4ffd0d6b 14193 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
aac0c6e3 14194
4ffd0d6b 141952011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
aac0c6e3 14196
4ffd0d6b
GM
14197 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
14198 zombies (Bug#8467).
aac0c6e3 14199
04c56954
EZ
142002011-04-19 Eli Zaretskii <eliz@gnu.org>
14201
14202 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
14203 gl_state.e_property when gl_state.object is Qt.
14204
14205 * insdel.c (make_gap_larger): Remove limitation of buffer size
14206 to <= INT_MAX.
14207
16a43933
CY
142082011-04-18 Chong Yidong <cyd@stupidchicken.com>
14209
14210 * xdisp.c (lookup_glyphless_char_display)
14211 (produce_glyphless_glyph): Handle cons cell entry in
14212 glyphless-char-display.
14213 (Vglyphless_char_display): Document it.
14214
14215 * term.c (produce_glyphless_glyph): Handle cons cell entry in
14216 glyphless-char-display.
14217
4581706e
CY
142182011-04-17 Chong Yidong <cyd@stupidchicken.com>
14219
14220 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
14221
14222 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
14223
14224 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
14225 definition for no-X builds.
14226
4887c6e2 142272011-04-16 Paul Eggert <eggert@cs.ucla.edu>
764430a3 14228
fd35b6f9
PE
14229 Static checks with GCC 4.6.0 and non-default toolkits.
14230
5c1ccb01
PE
14231 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
14232
006c5daa
PE
14233 * process.c (keyboard_bit_set): Define only if SIGIO.
14234 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
14235 (send_process): Repair possible setjmp clobbering.
14236
efc736d3
PE
14237 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
14238
4e2fe2e6
PE
14239 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
14240
f97334a2
PE
14241 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
14242
4e75f29d
PE
14243 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
14244 Define only if needed.
14245
90efadd1
PE
14246 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
14247 by pacifying GCC about it. Maybe it's time to retire it?
875975e9 14248 * xfaces.c (USG, __TIMEVAL__): Likewise.
90efadd1 14249
3c647824
PE
14250 * dispextern.h (struct redisplay_interface): Rename param
14251 to avoid shadowing.
e264f262 14252 * termhooks.h (struct terminal): Likewise.
761383f4 14253 * xterm.c (xembed_send_message): Likewise.
3c647824 14254
b58c5c4a
PE
14255 * insdel.c (make_gap_smaller): Define only if
14256 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
14257
cad59032
PE
14258 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
14259 it.
14260
c339dc2e
PE
14261 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
14262 so that we aren't warned about unused symbols.
14263
91a3e27b
PE
14264 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
14265
399c71d3 14266 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
7a3fb125 14267
8ffc96f5
PE
14268 * xfns.c (x_real_positions): Mark locals as initialized.
14269
eef9bc79
PE
14270 * xmenu.c (xmenu_show): Don't use uninitialized vars.
14271
098db9dd
PE
14272 * xterm.c: Fix problems found by static analysis with other toolkits.
14273 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
dda3aedd
PE
14274 (x_dispatch_event): Declare static if USE_GTK, and
14275 define if USE_GTK || USE_X_TOOLKIT.
098db9dd 14276 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
dda3aedd 14277 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
841a1577
JB
14278 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
14279 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
098db9dd 14280
eb18f6cc
PE
14281 * xmenu.c (menu_help_callback): Pointer type fixes.
14282 Use const pointers when pointing at readonly data. Avoid pointer
14283 signedness clashes.
14284 (FALSE): Remove unused macro.
14285 (update_frame_menubar): Remove unused decl.
14286
1fe72bf8
PE
14287 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
14288
60d9e1db
PE
14289 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
14290 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
14291 (single_menu_item): Rename local to avoid shadowing.
14292
39261c26
PE
14293 * keyboard.c (make_lispy_event): Remove unused local var.
14294
018c5e19
PE
14295 * frame.c, frame.h (x_get_resource_string): Bring this back, but
14296 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
14297
63d2b86e
PE
14298 * bitmaps: Change bitmaps from unsigned char back to the X11
14299 compatible char. Avoid the old compiler warnings about
14300 out-of-range initializers by using, for example, '\xab' rather
14301 than 0xab.
14302
aefd87e1
PE
14303 * xgselect.c (xgselect_initialize): Check vs interface
14304 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
14305
bf501fb9
PE
14306 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
14307
e9829fdf
PE
14308 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
14309 to read-only memory.
14310
1086c095
PE
14311 * fns.c (vector): Remove; this old hack is no longer needed.
14312
2baccd04 14313 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
401f10cb 14314 Remove unused var.
dde42981 14315 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
2baccd04 14316
72391843 14317 * xrdb.c (x_load_resources): Omit unused local.
3565b346 14318
436c16df 14319 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
8a94ea33 14320 (x_window): Rename locals to avoid shadowing.
dc5ddd85 14321 (USG): Use the kludged USG macro, to pacify gcc.
436c16df 14322
92bb796d 14323 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
bbbef9e1 14324 (x_term_init): Remove local to avoid shadowing.
92bb796d 14325
764430a3 14326 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
4887c6e2
PE
14327
14328 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
14329 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
14330
d1dfb56c
EZ
143312011-04-16 Eli Zaretskii <eliz@gnu.org>
14332
c4354cb4
EZ
14333 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
14334
d1dfb56c
EZ
14335 Fix regex.c, syntax.c and friends for buffers > 2GB.
14336 * syntax.h (struct gl_state_s): Declare character position members
14337 EMACS_INT.
14338
14339 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
14340
04f2d78b
CB
14341 * textprop.c (verify_interval_modification, interval_of):
14342 Declare arguments EMACS_INT.
d1dfb56c
EZ
14343
14344 * intervals.c (adjust_intervals_for_insertion): Declare arguments
14345 EMACS_INT.
14346
14347 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
14348
14349 * indent.c (Fvertical_motion): Local variable it_start is now
14350 EMACS_INT.
14351
14352 * regex.c (re_match, re_match_2, re_match_2_internal)
14353 (bcmp_translate, regcomp, regexec, print_double_string)
14354 (group_in_compile_stack, re_search, re_search_2, regex_compile)
14355 (re_compile_pattern, re_exec): Declare arguments and local
14356 variables `size_t' and `ssize_t' and return values `regoff_t', as
14357 appropriate.
14358 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
14359 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
14360 <compile_stack_type>: `size' and `avail' are now `size_t'.
14361
14362 * regex.h <regoff_t>: Use ssize_t, not int.
14363 (re_search, re_search_2, re_match, re_match_2): Arguments that
14364 specify buffer/string position and length are now ssize_t and
14365 size_t. Return type is regoff_t.
14366
613052cd
BK
143672011-04-16 Ben Key <bkey76@gmail.com>
14368
14369 * nsfont.m: Fixed bugs in ns_get_family and
14370 ns_descriptor_to_entity that were caused by using free to
14371 deallocate memory blocks that were allocated by xmalloc (via
14372 xstrdup). This caused Emacs to crash when compiled with
14373 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
14374 --enable-checking=xmallocoverrun). xfree is now used to
14375 deallocate these memory blocks.
14376
4170f62f 143772011-04-15 Paul Eggert <eggert@cs.ucla.edu>
3e047f51 14378
71b41406
PE
14379 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
14380
9587a89d
PE
14381 emacs_write: Accept and return EMACS_INT for sizes.
14382 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
14383 et seq.
14384 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
14385 Accept and return EMACS_INT.
14386 (emacs_gnutls_write): Return the number of bytes written on
14387 partial writes.
14388 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
273a5f82
PE
14389 (emacs_read, emacs_write): Remove check for negative size, as the
14390 Emacs source code has been audited now.
9587a89d
PE
14391 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
14392 (emacs_read, emacs_write): Use it.
273a5f82
PE
14393 * process.c (send_process): Adjust to the new signatures of
14394 emacs_write and emacs_gnutls_write. Do not attempt to store
14395 a byte offset into an 'int'; it might overflow.
9587a89d 14396 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
273a5f82 14397
3e047f51
PE
14398 * sound.c: Don't assume sizes fit in 'int'.
14399 (struct sound_device.period_size, alsa_period_size):
9c3c56a7 14400 Return EMACS_INT, not int.
3e047f51 14401 (struct sound_device.write, vox_write, alsa_write):
9c3c56a7
PE
14402 Accept EMACS_INT, not int.
14403 (wav_play, au_play): Use EMACS_INT to store sizes and to
3e047f51
PE
14404 record read return values.
14405
cc39a9db
BK
144062011-04-15 Ben Key <bkey76@gmail.com>
14407
c9d0ec6d
JB
14408 * keyboard.c (Qundefined): Don't declare static since it is used
14409 in nsfns.m.
14410 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
14411 static since they are used in nsfont.m.
cc39a9db 14412
6c60eb9f
SM
144132011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
14414
14415 * process.c (Qprocessp): Don't declare static.
14416 * lisp.h (Qprocessp): Declare again.
14417
7990b61a
JB
144182011-04-15 Juanma Barranquero <lekktu@gmail.com>
14419
14420 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
14421
5d4cb038
PE
144222011-04-14 Paul Eggert <eggert@cs.ucla.edu>
14423
8bd7b830 14424 Improve C-level modularity by making more things 'static'.
cd64ea1d 14425
e3b27b31
PE
14426 Don't publish debugger-only interfaces to other modules.
14427 * lisp.h (safe_debug_print, debug_output_compilation_hack):
14428 (verify_bytepos, count_markers): Move decls to the only modules
14429 that need them.
14430 * region-cache.h (pp_cache): Likewise.
14431 * window.h (check_all_windows): Likewise.
14432 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
14433
5d4cb038
PE
14434 * sysdep.c (croak): Now static, if
14435 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
14436 * syssignal.h (croak): Declare only if not static.
69003fd8
PE
14437
14438 * alloc.c (refill_memory_reserve): Now static if
14439 !defined REL_ALLOC || defined SYSTEM_MALLOC.
14440 * lisp.h (refill_memory_reserve): Declare only if not static.
93ea6e8f 14441
e87b6180
PE
14442 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
14443 Define only if USE_LUCID.
14444
ac64929e
PE
14445 * xrdb.c (x_customization_string, x_rm_string): Now static.
14446
6f37259d
PE
14447 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
14448 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
14449
1683e3ab
PE
14450 * xdisp.c (draw_row_with_mouse_face): Now static.
14451 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
14452
de9c2632
PE
14453 * window.h (check_all_windows): Mark externally visible.
14454
2b96acb7
PE
14455 * window.c (window_deletion_count): Now static.
14456
14457 * undo.c: Make symbols static if they're not exported.
14458 (last_undo_buffer, last_boundary_position, pending_boundary):
14459 Now static.
14460
50436f33
PE
14461 * textprop.c (interval_insert_behind_hooks): Now static.
14462 (interval_insert_in_front_hooks): Likewise.
14463
64520e5c
PE
14464 * term.c: Make symbols static if they're not exported.
14465 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
14466 (max_frame_lines, tty_set_terminal_modes):
14467 (tty_reset_terminal_modes, tty_turn_off_highlight):
14468 (get_tty_terminal): Now static.
14469 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
14470 * termhooks.h (term_mouse_moveto): Do not declare if
8bd7b830 14471 HAVE_WINDOW_SYSTEM.
64520e5c
PE
14472 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
14473 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
14474
1fa53021
PE
14475 * sysdep.c: Make symbols static if they're not exported.
14476 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
14477 Now static.
14478 (sigprocmask_set, full_mask): Remove; unused.
14479 (wait_debugging): Mark as visible.
14480 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
14481 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
14482
d4b43b22
PE
14483 * syntax.c (syntax_temp): Define only if !__GNUC__.
14484
b7c513d0
PE
14485 * sound.c (current_sound_device, current_sound): Now static.
14486
989b29ad
PE
14487 * search.c (searchbufs, searchbuf_head): Now static.
14488
13a55a78
PE
14489 * scroll.c (scroll_cost): Remove; unused.
14490 * dispextern.h (scroll_cost): Remove decl.
14491
de68a1fc
PE
14492 * region-cache.h (pp_cache): Mark as externally visible.
14493
40ccffa6
PE
14494 * process.c: Make symbols static if they're not exported.
14495 (process_tick, update_tick, create_process, chan_process):
14496 (Vprocess_alist, proc_buffered_char, datagram_access):
14497 (fd_callback_data, send_process_frame, process_sent_to): Now static.
14498 (deactivate_process): Mark defn as static, as well as decl.
14499 * lisp.h (create_process): Remove decl.
14500 * process.h (chan_process, Vprocess_alist): Remove decls.
14501
ad64fc97
PE
14502 * print.c: Make symbols static if they're not exported.
14503 (print_depth, new_backquote_output, being_printed, print_buffer):
14504 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
14505 (print_interval, print_number_index, initial_stderr_stream):
14506 Now static.
14507 * lisp.h (Fprinc): Remove decl.
14508 (debug_output_compilation_hack): Mark as externally visible.
14509
adddb265
PE
14510 * sysdep.c (croak): Move decl from here to syssignal.h.
14511 * syssignal.h (croak): Put it here, so the API can be checked when
14512 'croak' is called from dissociate_if_controlling_tty.
14513
1717ede2
PE
14514 * minibuf.c: Make symbols static if they're not exported.
14515 (minibuf_save_list, choose_minibuf_frame): Now static.
14516 * lisp.h (choose_minibuf_frame): Remove decl.
14517
fa5fb2bc
PE
14518 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
14519
1e3890d1
PE
14520 * lread.c: Make symbols static if they're not exported.
14521 (read_objects, initial_obarray, oblookup_last_bucket_number):
14522 Now static.
14523 (make_symbol): Remove; unused.
14524 * lisp.h (initial_obarray, make_symbol): Remove decls.
14525
8a1414fa
PE
14526 * keyboard.c: Make symbols static if they're not exported.
14527 (single_kboard, recent_keys_index, total_keys, recent_keys):
14528 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
14529 (this_single_command_key_start, echoing, last_auto_save):
14530 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
14531 (command_loop, echo_now, keyboard_init_hook, help_char_p):
14532 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
14533 (Vlispy_mouse_stem, double_click_count):
14534 Now static.
14535 (force_auto_save_soon): Define only if SIGDANGER.
14536 (ignore_mouse_drag_p): Now static if
14537 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
14538 (print_help): Remove; unused.
14539 (stop_character, last_timer_event): Mark as externally visible.
14540 * keyboard.h (ignore_mouse_drag_p): Declare only if
14541 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
14542 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
14543 * lisp.h (echoing): Remove decl.
14544 (force_auto_save_soon): Declare only if SIGDANGER.
14545 * xdisp.c (redisplay_window): Simplify code, to make it more
14546 obvious that ignore_mouse_drag_p is not accessed if !defined
14547 USE_GTK && !defined HAVE_NS.
14548
93ea6e8f
PE
14549 * intervals.c: Make symbols static if they're not exported.
14550 (merge_properties_sticky, merge_interval_right, delete_interval):
14551 Now static.
14552 * intervals.h (merge_interval_right, delete_interval): Remove decls.
14553
77382fcc
PE
14554 * insdel.c: Make symbols static if they're not exported.
14555 However, leave prepare_to_modify_buffer alone. It's never
14556 called from outside this function, but that appears to be a bug.
14557 (combine_after_change_list, combine_after_change_buffer):
4889fc82 14558 (adjust_after_replace, signal_before_change): Now static.
77382fcc
PE
14559 (adjust_after_replace_noundo): Remove; unused.
14560 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
4889fc82 14561 (signal_before_change): Remove decls.
77382fcc 14562
9306c32e
PE
14563 * indent.c (val_compute_motion, val_vmotion): Now static.
14564
cd44d2eb
PE
14565 * image.c: Make symbols static if they're not exported.
14566 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
14567 if USE_GTK.
14568 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
14569 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
14570
ad9a7a06
PE
14571 * fringe.c (standard_bitmaps): Now static.
14572 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
14573
81626931
PE
14574 * frame.c: Make symbols static if they're not exported.
14575 (x_report_frame_params, make_terminal_frame): Now static.
14576 (get_frame_param): Now static, unless HAVE_NS.
14577 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
14578 (x_get_resource_string): Remove; not used.
14579 * frame.h (make_terminal_frame, x_report_frame_params):
14580 (x_get_resource_string); Remove decls.
14581 (x_fullscreen_adjust): Declare only if WINDOWSNT.
14582 * lisp.h (get_frame_param): Declare only if HAVE_NS.
14583
239f9db9
PE
14584 * font.c, fontset.c: Make symbols static if they're not exported.
14585 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
14586 (FACE_SUITABLE_FOR_CHAR_P): Use it.
14587 * font.c (font_close_object): Now static.
14588 * font.h (font_close_object): Remove.
14589 * fontset.c (FONTSET_OBJLIST): Remove.
14590 (free_realized_fontset) #if-0 the body, which does nothing.
14591 (face_suitable_for_char_p): #if-0, as it's never called.
14592 * fontset.h (face_suitable_for_char_p): Remove decl.
04f2d78b
CB
14593 * xfaces.c (face_at_string_position):
14594 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
239f9db9
PE
14595 since 0 is always ASCII.
14596
dfcf3579
PE
14597 * fns.c (weak_hash_tables): Now static.
14598
5045092b
PE
14599 * fileio.c: Make symbols static if they're not exported.
14600 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
14601 (Vwrite_region_annotation_buffers): Now static.
14602
57a96f5c
PE
14603 * eval.c: Make symbols static if they're not exported.
14604 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
14605 * lisp.h (backtrace_list): Remove decl.
14606
35f08c38
PE
14607 * emacs.c: Make symbols static if they're not exported.
14608 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
14609 (fatal_error_code, fatal_error_signal_hook, standard_args):
14610 Now static.
14611 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
14612 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
14613 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
14614 * lisp.h (fatal_error_signal_hook): Remove decl.
14615 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
14616
f44bd759
PE
14617 * editfns.c: Move a (normally-unused) function to its only use.
14618 * editfns.c, lisp.h (get_operating_system_release): Remove.
14619 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
14620 worth the hassle of breaking this out.
14621
b532497d
PE
14622 * xterm.c: Make symbols static if they're not exported.
14623 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
14624 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
14625 (x_destroy_window, x_delete_display):
14626 Now static.
14627 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
14628 (x_mouse_leave): Remove; unused.
14629 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
14630 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
14631 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
14632 Remove decls.
14633 (x_mouse_leave): Declare only if WINDOWSNT.
14634 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
14635 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
14636 USE_X_TOOLKIT.
14637
1675728f
PE
14638 * ftxfont.c: Make symbols static if they're not exported.
14639 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
14640 HAVE_FREETYPE.
14641 * font.h (ftxfont_driver): Likewise.
14642
e4cebfca
PE
14643 * xfns.c: Make symbols static if they're not exported.
14644 (x_last_font_name, x_display_info_for_name):
14645 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
14646 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
14647 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
14648 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
14649 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
14650 (last_show_tip_args): Now static.
14651 (xic_defaut_fontset, xic_create_fontsetname): Define only if
14652 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
14653 (x_screen_planes): Remove; unused.
14654 * dispextern.h (x_screen_planes): Remove decl.
14655
5bf46f05
PE
14656 * dispnew.c: Make symbols static if they're not exported.
14657 * dispextern.h (redraw_garbaged_frames, scrolling):
14658 (increment_row_positions): Remove.
14659 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
14660 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
14661 Now static.
14662 (redraw_garbaged_frames): Remove; unused.
14663
435f4c28
PE
14664 * xfaces.c: Make symbols static if they're not exported.
14665 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
14666 Remove decls.
14667 * xterm.h (defined_color): Remove decls.
14668 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
14669 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
14670 (menu_face_changed_default, defined_color, free_realized_face):
14671 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
14672 (ascii_face_of_lisp_face): Remove; unused.
14673
8524aef3
PE
14674 * xdisp.c: Make symbols static if they're not exported.
14675 * dispextern.h (scratch_glyph_row, window_box_edges):
14676 (glyph_to_pixel_coords, set_cursor_from_row):
14677 (get_next_display_element, set_iterator_to_next):
14678 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
14679 (show_mouse_face): Remove decls
14680 * frame.h (message_buf_print): Likewise.
14681 * lisp.h (pop_message, set_message, check_point_in_composition):
14682 Likewise.
14683 * xterm.h (set_vertical_scroll_bar): Likewise.
14684 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
14685 (message_buf_print, scratch_glyph_row, displayed_buffer):
14686 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
14687 (get_next_display_element, show_mouse_face, window_box_edges):
14688 (frame_to_window_pixel_xy, check_point_in_composition):
14689 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
14690 (glyph_to_pixel_coords): Remove; unused.
14691
16390cd2
PE
14692 * dired.c (file_name_completion): Now static.
14693
14694 * dbusbind.c (xd_in_read_queued_messages): Now static.
14695
a25f4dfa
PE
14696 * lisp.h (circular_list_error, FOREACH): Remove; unused.
14697 * data.c (circular_list_error): Remove.
14698
14a9c8df
PE
14699 * commands.h (last_point_position, last_point_position_buffer):
14700 (last_point_position_window): Remove decls.
14701 * keyboard.c: Make these variables static.
14702
04f2d78b
CB
14703 * coding.h (coding, code_convert_region, encode_coding_gap):
14704 Remove decls.
74ab6df5
PE
14705 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
14706 (iso_code_class, detect_coding, code_convert_region): Now static.
14707 (encode_coding_gap): Remove; unused.
14708
38dfbee1
PE
14709 * chartab.c (chartab_chars, chartab_bits): Now static.
14710
a2cb4e63
PE
14711 * charset.h (charset_iso_8859_1): Remove decl.
14712 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
14713 Now static.
14714
127198fd
PE
14715 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
14716 * ccl.c (Vccl_program_table): Now static.
14717 (check_ccl_update): Remove; unused.
14718
d85b608f
PE
14719 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
14720 * category.h: ... from here.
14721 * category.c (check_category_table, set_category_set): Now static.
14722
31cd66f3
PE
14723 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
14724 * lisp.h: Remove these decls.
14725
c358e587
PE
14726 * buffer.c (buffer_count): Remove unused var.
14727
e78aecca
PE
14728 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
14729 so that it's not optimized away.
14730 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
14731 * dispextern.h (bidi_dump_cached_states): Remove, since it's
14732 exported only to the debugger.
14733
e192d7d3 14734 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
04f2d78b 14735 * atimer.h (run_all_atimers): Remove; not exported.
e192d7d3 14736
92470028
PE
14737 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
14738 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
14739 was inaccessible from Lisp.
14740 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
14741 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
14742
244ed907
PE
14743 alloc.c: Import and export fewer symbols, and remove unused items.
14744 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
14745 is defined.
14746 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
14747 it's not optimized away by whole-program optimization.
14748 (message_enable_multibyte, free_misc): Remove.
14749 (catchlist, handlerlist, mark_backtrace):
14750 Declare only if BYTE_MARK_STACK.
14751 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
14752 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
14753 (message_enable_multibyte): Remove decl.
14754 (free_misc, interval_free_list, float_block, float_block_index):
14755 (n_float_blocks, float_free_list, cons_block, cons_block_index):
14756 (cons_free_list, last_marked_index):
14757 Now static.
14758 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
14759 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
14760 (mark_backtrace): Define only if BYTE_MARK_STACK.
14761 * xdisp.c (message_enable_multibyte): Now static.
14762
61c2b50e 14763 Declare Lisp_Object Q* variables to be 'static' if not exported.
955cbe7b
PE
14764 This makes it easier for human readers (and static analyzers)
14765 to see whether these variables are used from other modules.
14766 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
14767 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
14768 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
14769 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
14770 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
14771 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
14772 * xmenu.c, xselect.c:
14773 Declare Q* vars static if they are not used in other modules.
14774 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
14775 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
14776 Remove decls of unexported vars.
14777 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
14778
95c82688
PE
14779 * lisp.h (DEFINE_FUNC): Make sname 'static'.
14780
16a97296
PE
14781 Make Emacs functions such as Fatom 'static' by default.
14782 This makes it easier for human readers (and static analyzers)
14783 to see whether these functions can be called from other modules.
14784 DEFUN now defines a static function. To make the function external
14785 so that it can be used in other C modules, use the new macro DEFUE.
8bd7b830
PE
14786 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
14787 (Finit_image_library):
16a97296
PE
14788 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
14789 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
14790 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
14791 Remove decls, since these functions are now static.
14792 (Funintern, Fget_internal_run_time): New decls, since these functions
14793 were already external.
95c82688 14794
16a97296
PE
14795 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
14796 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
14797 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
14798 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
14799 * keyboard.c, keymap.c, lread.c:
14800 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
14801 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
14802 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
14803 Mark functions with DEFUE instead of DEFUN,
14804 if they are used in other modules.
14805 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
14806 decls for now-static functions.
14807 * buffer.h (Fdelete_overlay): Remove decl.
14808 * callproc.c (Fgetenv_internal): Mark as internal.
14809 * composite.c (Fremove_list_of_text_properties): Remove decl.
14810 (Fcomposition_get_gstring): New forward static decl.
14811 * composite.h (Fcomposite_get_gstring): Remove decl.
14812 * dired.c (Ffile_attributes): New forward static decl.
14813 * doc.c (Fdocumntation_property): New forward static decl.
14814 * eval.c (Ffetch_bytecode): New forward static decl.
14815 (Funintern): Remove extern decl; now in .h file where it belongs.
14816 * fileio.c (Fmake_symbolic_link): New forward static decl.
14817 * image.c (Finit_image_library): New forward static decl.
14818 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
14819 * intervals.h (Fprevious_property_change):
14820 (Fremove_list_of_text_properties): Remove decls.
14821 * keyboard.c (Fthis_command_keys): Remove decl.
14822 (Fcommand_execute): New forward static decl.
14823 * keymap.c (Flookup_key): New forward static decl.
14824 (Fcopy_keymap): Now static.
14825 * keymap.h (Flookup_key): Remove decl.
14826 * process.c (Fget_process): New forward static decl.
14827 (Fprocess_datagram_address): Mark as internal.
14828 * syntax.c (Fsyntax_table_p): New forward static decl.
14829 (skip_chars): Remove duplicate decl.
14830 * textprop.c (Fprevious_property_change): New forward static decl.
14831 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
14832 Now internal.
14833 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
14834 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
14835
785bbd42
PE
14836 * editfns.c (Fformat): Remove unreachable code.
14837
8b913b57
AS
148382011-04-14 Andreas Schwab <schwab@linux-m68k.org>
14839
14840 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
14841 change. (Bug#8496)
14842
a6744a35
EZ
148432011-04-13 Eli Zaretskii <eliz@gnu.org>
14844
14845 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
14846 when at ZV. (Bug#8487)
14847
e7974947
AS
148482011-04-12 Andreas Schwab <schwab@linux-m68k.org>
14849
baad03f0
AS
14850 * charset.c (Fclear_charset_maps): Use xfree instead of free.
14851 (Bug#8437)
14852 * keyboard.c (parse_tool_bar_item): Likewise.
14853 * sound.c (sound_cleanup, alsa_close): Likewise.
14854 * termcap.c (tgetent): Likewise.
14855 * xfns.c (x_default_font_parameter): Likewise.
14856 * xsettings.c (read_and_apply_settings): Likewise.
14857
e7974947
AS
14858 * alloc.c (overrun_check_malloc, overrun_check_realloc)
14859 (overrun_check_free): Protoize.
14860
28272684
PE
148612011-04-12 Paul Eggert <eggert@cs.ucla.edu>
14862
14863 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
14864 since callers should never pass a negative size.
14865 Change the signature to match that of plain 'read' and 'write'; see
14866 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
14867 * lisp.h: Update prototypes of emacs_write and emacs_read.
14868
11997c76
EZ
148692011-04-11 Eli Zaretskii <eliz@gnu.org>
14870
14871 * xdisp.c (redisplay_window): Don't try to determine the character
14872 position of the scroll margin if the window start point w->startp
e896f03c 14873 is outside the buffer's accessible region. (Bug#8468)
11997c76 14874
8a2cbd72
EZ
148752011-04-10 Eli Zaretskii <eliz@gnu.org>
14876
14877 Fix write-region and its subroutines for buffers > 2GB.
14878 * fileio.c (a_write, e_write): Modify declaration of arguments and
14879 local variables to support buffers larger than 2GB.
14880 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
14881
14882 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
14883 argument, local variables, and return value.
14884
14885 * lisp.h: Update prototypes of emacs_write and emacs_read.
14886
14887 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
14888
4073e537 148892011-04-10 Paul Eggert <eggert@cs.ucla.edu>
eb3f1cc8 14890
1ebfdcb6
PE
14891 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
14892
b2ded58d
PE
14893 Fix more problems found by GCC 4.6.0's static checks.
14894
7d66342c
PE
14895 * xdisp.c (vmessage): Use a better test for character truncation.
14896
bbf47d44
PE
14897 * charset.c (load_charset_map): <, not <=, for optimization,
14898 and to avoid potential problems with integer overflow.
9248994d 14899 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
f9a68bc5 14900 * casetab.c (set_identity, shuffle): Likewise.
3ab1c7ce 14901 * editfns.c (Fformat): Likewise.
1e69125e 14902 * syntax.c (skip_chars): Likewise.
3befa583 14903
e3019616
PE
14904 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
14905 This also lets GCC 4.6.0 generate slightly better loop code.
14906
becfa255
PE
14907 * callint.c (Fcall_interactively): <, not <=, for optimization.
14908 (Fcall_interactively): Count the number of arguments produced,
14909 not the number of arguments given. This is simpler and lets GCC
14910 4.6.0 generate slightly better code.
14911
dae0cd48
PE
14912 * ftfont.c: Distingish more carefully between FcChar8 and char.
14913 The previous code passed unsigned char * to a functions like
14914 strlen and xstrcasecmp that expect char *, which does not
14915 conform to the C standard.
14916 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
14917 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
14918 char * when the C standard requires it.
14919
76032d70
PE
14920 * keyboard.c (read_char): Remove unused var.
14921
eb3f1cc8
PE
14922 * eval.c: Port to Windows vsnprintf (Bug#8435).
14923 Include <limits.h>.
14924 (SIZE_MAX): Define if the headers do not.
14925 (verror): Do not give up if vsnprintf returns a negative count.
14926 Instead, grow the buffer. This ports to Windows vsnprintf, which
14927 does not conform to C99. Problem reported by Eli Zaretskii.
14928 Also, simplify the allocation scheme, by avoiding the need for
14929 calling realloc, and removing the ALLOCATED variable.
14930
70476b54
PE
14931 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
14932
12020a9e
PE
14933 Remove invocations of doprnt, as Emacs now uses vsnprintf.
14934 But keep the doprint source code for now, as we might revamp it
14935 and use it again (Bug#8435).
ea6c7ae6
PE
14936 * lisp.h (doprnt): Remove.
14937 * Makefile.in (base_obj): Remove doprnt.o.
14938 * deps.mk (doprnt.o): Remove.
14939
5fdb398c
PE
14940 error: Print 32- and 64-bit integers portably (Bug#8435).
14941 Without this change, on typical 64-bit hosts error ("...%d...", N)
14942 was used to print both 32- and 64-bit integers N, which relied on
14943 undefined behavior.
61bdb816 14944 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
5fdb398c
PE
14945 * lisp.h (error, verror): Mark as printf-like functions.
14946 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
14947 Report overflow in size calculations when allocating printf buffer.
14948 Do not truncate output string at its first null byte.
14949 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
14950 Truncate the output at a character boundary, since vsnprintf does not
14951 do that.
14952 * charset.c (check_iso_charset_parameter): Convert internal
14953 character to string before calling 'error', since %c now has the
14954 printf meaning.
14955 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
14956 overflow when computing char to be passed to 'error'. Do not
14957 pass Lisp_Object to 'error'; pass the integer instead.
14958 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
14959 formatted with plain %d.
14960
b189fa66
PE
14961 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
14962
bff87ef0
PE
14963 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
14964
7e2cac20
PE
14965 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
14966
ce4d90b5
PE
14967 * xterm.c (x_catch_errors): Remove duplicate declaration.
14968
266c9547
PE
14969 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
14970
79c49ad2
PE
14971 * xdisp.c, lisp.h (message_nolog): Remove; unused.
14972
368f4090
JM
149732011-04-10 Jim Meyering <meyering@redhat.com>
14974
14975 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
14976 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
14977 return ssize_t not "int", and use size_t as the buffer length.
14978 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
14979 * gnutls.h: Update declarations.
14980 * process.c (read_process_output): Use ssize_t, to match.
14981 (send_process): Likewise.
14982
a32d4040
CY
149832011-04-09 Chong Yidong <cyd@stupidchicken.com>
14984
14985 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
14986
8546720e 149872011-04-09 Chong Yidong <cyd@stupidchicken.com>
aac0c6e3 14988
04f2d78b
CB
14989 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
14990 Use unsigned char, to match FcChar8 type definition.
aac0c6e3 14991
8546720e
GM
14992 * xterm.c (handle_one_xevent):
14993 * xmenu.c (create_and_show_popup_menu):
14994 * xselect.c (x_decline_selection_request)
14995 (x_reply_selection_request): Avoid type-punned deref of X events.
aac0c6e3 14996
0a2f5c1a 149972011-04-09 Eli Zaretskii <eliz@gnu.org>
a53e2e89
EZ
14998
14999 Fix some uses of `int' instead of EMACS_INT.
15000 * search.c (string_match_1, fast_string_match)
15001 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
15002 (scan_buffer, find_next_newline_no_quit)
15003 (find_before_next_newline, search_command, Freplace_match)
15004 (Fmatch_data): Make some `int' variables be EMACS_INT.
15005
15006 * xdisp.c (display_count_lines): 3rd argument and return value now
15007 EMACS_INT. All callers changed.
15008 (pint2hrstr): Last argument is now EMACS_INT.
15009
15010 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
15011 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
15012 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
15013 (decode_coding_utf_16, decode_coding_emacs_mule)
15014 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
15015 (decode_coding_ccl, decode_coding_charset)
15016 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
15017 (decode_coding_iso_2022, decode_coding_emacs_mule)
15018 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
15019 <char_offset, last_offset>: Declare EMACS_INT.
15020 (encode_coding_utf_8, encode_coding_utf_16)
15021 (encode_coding_emacs_mule, encode_invocation_designation)
15022 (encode_designation_at_bol, encode_coding_iso_2022)
15023 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
15024 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
15025 Declare EMACS_INT.
15026 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
15027 (encode_invocation_designation): Last argument P_NCHARS is now
15028 EMACS_INT.
15029 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
15030 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
15031
15032 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
15033 All users changed.
15034
15035 * ccl.c (Fccl_execute_on_string): Declare some variables
15036 EMACS_INT.
15037
8546720e 150382011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
0080dc6b
SS
15039
15040 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
15041
4e19a977
CS
150422011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
15043
15044 * process.c (Fformat_network_address): Doc fix.
15045
87302331
R
150462011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
15047
ee7683eb 15048 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
87302331 15049
cbb59342
CY
150502011-04-08 Chong Yidong <cyd@stupidchicken.com>
15051
15052 * keyboard.c (read_char): Call Lisp function help-form-show,
15053 instead of using internal_with_output_to_temp_buffer.
15054 (Qhelp_form_show): New var.
e0d38eeb 15055 (syms_of_keyboard): Use DEFSYM macro.
cbb59342
CY
15056
15057 * print.c (internal_with_output_to_temp_buffer): Function deleted.
15058
15059 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
15060
e67a13ab
CY
150612011-04-06 Chong Yidong <cyd@stupidchicken.com>
15062
04f2d78b
CB
15063 * process.c (Flist_processes): Remove to Lisp.
15064 (list_processes_1): Delete.
e67a13ab 15065
973f782d
EZ
150662011-04-06 Eli Zaretskii <eliz@gnu.org>
15067
7c106b1e
EZ
15068 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
15069
973f782d
EZ
15070 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
15071
41cf7d1a 150722011-04-06 Paul Eggert <eggert@cs.ucla.edu>
27ccc379 15073
ca23cc88
PE
15074 Fix more problems found by GCC 4.6.0's static checks.
15075
f390e2d5
PE
15076 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
15077
42eea0d0
PE
15078 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
15079
b69769da 15080 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
1e973bc7 15081
f9541e84
PE
15082 * xdisp.c (vmessage): Mark as a printf-like function.
15083
13841b55
PE
15084 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
15085
c136c10f
PE
15086 * sound.c (sound_warning): Don't crash if arg contains a printf format.
15087
5e2d4a30
PE
15088 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
15089 printf-like functions.
15090 (tiff_load): Add casts to remove these marks before passing them
15091 to system-supplied API.
15092
583f48b9
PE
15093 * eval.c (Fsignal): Remove excess argument to 'fatal'.
15094
b25d760e
PE
15095 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
15096 This avoids several warnings with gcc -Wstrict-overflow.
d5efd1d1
PE
15097 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
15098 directly, rather than having caller test rule sign. This avoids
15099 some unnecessary tests.
15100 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
15101 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
15102 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
b25d760e 15103
bc7b6697 15104 * xfont.c (xfont_text_extents): Remove var that was set but not used.
625a3eb1 15105 (xfont_open): Avoid unnecessary tests.
bc7b6697 15106
27ccc379
PE
15107 * composite.c (composition_gstring_put_cache): Use unsigned integer.
15108
dcd5c89a
PE
15109 * composite.h, composite.c (composition_gstring_put_cache):
15110 Use EMACS_INT, not int, for length.
15111
b13a45c6
PE
15112 * composite.h (COMPOSITION_DECODE_REFS): New macro,
15113 breaking out part of COMPOSITION_DECODE_RULE.
15114 (COMPOSITION_DECODE_RULE): Use it.
15115 * composite.c (get_composition_id): Remove unused local vars,
15116 by using the new macro.
15117
1e792e4d
PE
15118 * textprop.c (set_text_properties_1): Change while to do-while,
15119 since the condition is always true at first.
15120
dc6c6455 15121 * intervals.c (graft_intervals_into_buffer): Mark var as used.
aa86731f
PE
15122 (interval_deletion_adjustment): Return unsigned value.
15123 All uses changed.
dc6c6455 15124
aba7731a
PE
15125 * process.c (list_processes_1, create_pty, read_process_output):
15126 (exec_sentinel): Remove vars that were set but not used.
afd4052b 15127 (create_pty): Remove unnecessary "volatile"s.
bc57d757 15128 (Fnetwork_interface_info): Avoid possibility of int overflow.
82eaa333 15129 (read_process_output): Do adaptive read buffering even if carryover.
fe07cdfa 15130 (read_process_output): Simplify nbytes computation if buffered.
aba7731a 15131
fdfc4bf3
PE
15132 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
15133
fca8fe46 15134 * syntax.c (scan_words): Remove var that was set but not used.
12cbf13f 15135 (update_syntax_table): Use unsigned instead of int.
fca8fe46 15136
06a0259a 15137 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
3c346cc3 15138 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
e6eb4e9e 15139 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
06a0259a 15140
e7b9e80f
PE
15141 * print.c (print_error_message): Avoid int overflow.
15142
56201685
PE
15143 * font.c (font_list_entities): Redo for clarity,
15144 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
15145
78834453 15146 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
790771b1 15147 (font_score): Avoid potential overflow in diff calculation.
78834453 15148
0bc0b309 15149 * fns.c (substring_both): Remove var that is set but not used.
8cd55cb4 15150 (sxhash): Redo loop for clarity and to avoid wraparound warning.
0bc0b309 15151
e610eaca
PE
15152 * eval.c (funcall_lambda): Rename local to avoid shadowing.
15153
b895abce
PE
15154 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
15155 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
15156 can always succeed if overflow has undefined behavior.
15157
1f1d9321 15158 * search.c (boyer_moore, wordify): Remove vars set but not used.
6f076cc7 15159 (wordify): Omit three unnecessary tests.
1f1d9321 15160
c59478bc
PE
15161 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
15162 All callers changed. This avoids the need for an unused var.
15163
79b73827
PE
15164 * casefiddle.c (casify_region): Remove var that is set but not used.
15165
a4db5dfe
PE
15166 * dired.c (file_name_completion): Remove var that is set but not used.
15167
43aae36e
PE
15168 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
15169
2a47c44d 15170 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
163c5f32 15171 (Finsert_file_contents): Remove unnecessary code checking fd.
2a47c44d 15172
a37c69bf
PE
15173 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
15174 Check for integer overflow on size calculations.
15175
328ab8e7
PE
15176 * buffer.c (Fprevious_overlay_change): Remove var that is set
15177 but not used.
15178
e5a2a5cb
PE
15179 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
15180 Remove vars that are set but not used.
8d84a6eb 15181 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
6b043475 15182 (timer_check_2): Mark vars as initialized.
e5a2a5cb 15183
a60e5f68
PE
15184 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
15185
f661cb61 15186 * image.c (lookup_image): Remove var that is set but not used.
35fa624f 15187 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
f661cb61 15188
f0397f5a
PE
15189 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
15190 that are set but not used.
15191
8664db06 15192 * xfns.c (make_invisible_cursor): Don't return garbage
03733ee7 15193 if XCreateBitmapFromData fails (Bug#8410).
8664db06 15194
6abdaa4a
PE
15195 * xselect.c (x_get_local_selection, x_handle_property_notify):
15196 Remove vars that are set but not used.
15197
0ce7538d 15198 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
6abdaa4a 15199 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
0ce7538d 15200
9ae848fc
PE
15201 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
15202 Remove var that is set but not used.
0b918413
PE
15203 (scroll_bar_windows_size): Now size_t, not int.
15204 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
15205 Check for overflow.
9ae848fc 15206
a5a62657
PE
15207 * xfaces.c (realize_named_face): Remove vars that are set but not used.
15208 (map_tty_color) [!defined MSDOS]: Likewise.
15209
5c5cdd39
PE
15210 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
15211
66ebf983
PE
15212 * coding.c: Remove vars that are set but not used.
15213 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
15214 All callers changed.
15215 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
15216 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
15217 (decode_coding_charset): Remove vars that are set but not used.
15218
1be4d761
PE
15219 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
15220 that is set but not used.
15221
47553fa8
PE
15222 * print.c (print_object): Remove var that is set but not used.
15223
1f7196bf 15224 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
15225 The gnulib version avoids calling malloc in the usual case,
15226 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
15227 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
15228 * filelock.c (current_lock_owner): Likewise.
15229 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
15230 * sysdep.c: Include allocator.h, careadlinkat.h.
15231 (emacs_no_realloc_allocator): New static constant.
15232 (emacs_readlink): New function.
fdb61804
PE
15233 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
15234 ../lib/careadlinkat.h.
d1fdcab7 15235
f84c17c7
SM
152362011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
15237
15238 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
15239 first non-nil return value).
15240
ef3862ad
JD
152412011-04-03 Jan Djärv <jan.h.d@swipnet.se>
15242
15243 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
15244 if not defined (Bug#8403).
15245
376a7006
JB
152462011-04-02 Juanma Barranquero <lekktu@gmail.com>
15247
15248 * xdisp.c (display_count_lines): Remove parameter `start',
15249 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
15250 (get_char_face_and_encoding): Remove parameter `multibyte_p',
15251 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
15252 (fill_stretch_glyph_string): Remove parameters `row' and `area',
15253 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
15254 and thereabouts. All callers changed.
15255 (get_per_char_metric): Remove parameter `f', unused since
15256 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
15257
6ca3801d
JM
152582011-04-02 Jim Meyering <meyering@redhat.com>
15259
15260 do not dereference NULL upon failed strdup
15261 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
15262 (ns_get_family): Likewise.
15263
d8e2b5ba
JB
152642011-04-02 Juanma Barranquero <lekktu@gmail.com>
15265
15266 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
15267
8c74fcbd
JD
152682011-04-02 Jan Djärv <jan.h.d@swipnet.se>
15269
15270 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
15271 later (Bug#8403).
15272
7200d79c
SM
152732011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
15274
03408648 15275 Add lexical binding.
7200d79c 15276
03408648
SM
15277 * window.c (Ftemp_output_buffer_show): New fun.
15278 (Fsave_window_excursion):
15279 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
15280
15281 * lread.c (lisp_file_lexically_bound_p): New function.
15282 (Fload): Bind Qlexical_binding.
15283 (readevalloop): Remove `evalfun' arg.
15284 Bind Qinternal_interpreter_environment.
15285 (Feval_buffer): Bind Qlexical_binding.
15286 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
15287 Mark as dynamic.
15288 (syms_of_lread): Declare `lexical-binding'.
15289
15290 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
15291
15292 * keyboard.c (eval_dyn): New fun.
15293 (menu_item_eval_property): Use it.
ca105506
SM
15294
15295 * image.c (parse_image_spec): Use Ffunctionp.
ca105506 15296
03408648
SM
15297 * fns.c (concat, mapcar1): Accept byte-code-functions.
15298
15299 * eval.c (Fsetq): Handle lexical vars.
15300 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
15301 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
15302 (FletX, Flet): Obey lexical binding.
15303 (Fcommandp): Handle closures.
15304 (Feval): New `lexical' arg.
15305 (eval_sub): New function extracted from Feval. Use it almost
15306 everywhere where Feval was used. Look up vars in lexical env.
15307 Handle closures.
15308 (Ffunctionp): Move from subr.el.
15309 (Ffuncall): Handle closures.
15310 (apply_lambda): Remove `eval_flags'.
15311 (funcall_lambda): Handle closures and new byte-code-functions.
15312 (Fspecial_variable_p): New function.
15313 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
15314 but without exporting it to Lisp.
23aba0ea 15315
23aba0ea 15316 * doc.c (Fdocumentation, store_function_docstring):
03408648 15317 * data.c (Finteractive_form): Handle closures.
23aba0ea 15318
03408648
SM
15319 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
15320 interactive spec.
ba83908c 15321
04f2d78b
CB
15322 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
15323 New byte-codes.
03408648
SM
15324 (exec_byte_code): New function extracted from Fbyte_code to handle new
15325 calling convention for byte-code-functions. Add new byte-codes.
ba83908c 15326
03408648 15327 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
e2abe5a1 15328
03408648 15329 * alloc.c (Fmake_symbol): Init new `declared_special' field.
e2abe5a1 15330
e2abce01
JB
153312011-03-31 Juanma Barranquero <lekktu@gmail.com>
15332
15333 * xdisp.c (redisplay_internal): Fix prototype.
15334
63696a73 153352011-03-31 Eli Zaretskii <eliz@gnu.org>
09725d26 15336
63696a73 15337 * xdisp.c (SCROLL_LIMIT): New macro.
04f2d78b
CB
15338 (try_scrolling): Use it when setting scroll_limit.
15339 Limit scrolling to 100 screen lines.
63696a73
EZ
15340 (redisplay_window): Even when falling back on "recentering",
15341 position point in the window according to scroll-conservatively,
15342 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
15343
15344 (try_scrolling): When point is above the window, allow searching
15345 as far as scroll_max, or one screenful, to compute vertical
15346 distance from PT to the scroll margin position. This prevents
15347 try_scrolling from unnecessarily failing when
15348 scroll-conservatively is set to a value slightly larger than the
15349 window height. Clean up the case of PT below the margin at bottom
15350 of window: scroll_max can no longer be INT_MAX. When aggressive
15351 scrolling is in use, don't let point enter the opposite scroll
15352 margin as result of the scroll.
15353 (syms_of_xdisp) <scroll-conservatively>: Document the
09725d26
EZ
15354 threshold of 100 lines for never-recentering scrolling.
15355
e4cc2dfc
JB
153562011-03-31 Juanma Barranquero <lekktu@gmail.com>
15357
15358 * dispextern.h (move_it_by_lines):
15359 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
15360 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
15361 (message_log_check_duplicate): Remove parameters `prev_bol' and
15362 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
15363 (redisplay_internal): Remove parameter `preserve_echo_area',
15364 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
15365
15366 * indent.c (Fvertical_motion):
15367 * window.c (window_scroll_pixel_based, Frecenter):
15368 Don't pass `need_y_p' to `move_it_by_lines'.
15369
1c470562
SM
153702011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
15371
44f230aa
SM
15372 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
15373 steal a few bits to be more compact.
15374 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
15375 Remove unneeded casts.
15376
1c470562
SM
15377 * bytecode.c (Fbyte_code): CAR and CDR can GC.
15378
888adce9
ZK
153792011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
15380
15381 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
15382 binding" message (bug#7967).
15383
f838ed7b
PE
153842011-03-30 Paul Eggert <eggert@cs.ucla.edu>
15385
77861b95
PE
15386 Fix more problems found by GCC 4.6.0's static checks.
15387
de6dbc14
PE
15388 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
15389 Remove unused local var.
15390
f838ed7b
PE
15391 * editfns.c (Fmessage_box): Remove unused local var.
15392
792c7b2b
PE
15393 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
15394 (note_mode_line_or_margin_highlight, note_mouse_highlight):
15395 Omit unused local vars.
c499e557 15396 * window.c (shrink_windows): Omit unused local var.
b01a1c29 15397 * menu.c (digest_single_submenu): Omit unused local var.
0bc32927
PE
15398 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
15399 Omit unused local var.
15400
ba0165e1
PE
15401 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
15402 Don't assume string length fits in int.
32ad8845 15403 (keyremap_step, read_key_sequence): Use size_t for sizes.
48011560 15404 (read_key_sequence): Don't check last_real_key_start redundantly.
ba0165e1 15405
3c59b4c9
PE
15406 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
15407 instead of alloca (Bug#8344).
15408
a3eed478 15409 * eval.c (Fbacktrace): Don't assume nargs fits in int.
5d5d959d 15410 (Fbacktrace_frame): Don't assume nframes fits in int.
a3eed478 15411
eb4d412d
PE
15412 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
15413
1658b401
PE
15414 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
15415 concerns.
15416
15417 * term.c (produce_glyphless_glyph): Remove unnecessary test.
15418
15419 * cm.c (calccost): Turn while-do into do-while, for clarity.
44f730c8 15420
9a2c6e05
PE
15421 * keyboard.c (syms_of_keyboard): Use the same style as later
15422 in this function when indexing through an array. This also
15423 works around GCC bug 48267.
15424
03d0a109
PE
15425 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
15426
44f730c8
PE
15427 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
15428
fe75f926
PE
15429 * chartab.c (sub_char_table_ref_and_range): Redo for slight
15430 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
15431
ffa8c828
PE
15432 * keyboard.c, keyboard.h (num_input_events): Now size_t.
15433 This avoids undefined behavior on integer overflow, and is a bit
15434 more convenient anyway since it is compared to a size_t variable.
15435
c5101a77
PE
15436 Variadic C functions now count arguments with size_t, not int.
15437 This avoids an unnecessary limitation on 64-bit machines, which
15438 caused (substring ...) to crash on large vectors (Bug#8344).
15439 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
15440 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
77861b95 15441 All variadic functions and their callers changed accordingly.
c5101a77
PE
15442 (struct gcpro.nvars): Now size_t, not int. All uses changed.
15443 * data.c (arith_driver, float_arith_driver): Likewise.
15444 * editfns.c (general_insert_function): Likewise.
15445 * eval.c (struct backtrace.nargs, interactive_p)
15446 (internal_condition_case_n, run_hook_with_args, apply_lambda)
15447 (funcall_lambda, mark_backtrace): Likewise.
15448 * fns.c (concat): Likewise.
15449 * frame.c (x_set_frame_parameters): Likewise.
15450 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
15451 0 if not found, not -1. All callers changed.
15452
dd3f25f7
PE
15453 * alloc.c (garbage_collect): Don't assume stack size fits in int.
15454 (stack_copy_size): Now size_t, not int.
15455 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
15456
461c2ab9
JB
154572011-03-28 Juanma Barranquero <lekktu@gmail.com>
15458
15459 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
15460 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
15461 All callers changed.
15462
15463 * lisp.h (multibyte_char_to_unibyte):
15464 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
15465 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
15466 * character.h (CHAR_TO_BYTE8):
15467 * cmds.c (internal_self_insert):
15468 * editfns.c (general_insert_function):
15469 * keymap.c (push_key_description):
15470 * search.c (Freplace_match):
15471 * xdisp.c (message_dolog, set_message_1): All callers changed.
15472
f6d62986
SM
154732011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
15474
15475 * keyboard.c (safe_run_hook_funcall): New function.
15476 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
15477 don't set the hook to nil, but remove the offending function instead.
15478 (Qcommand_hook_internal): Remove, unused.
15479 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
15480 Vcommand_hook_internal.
15481
15482 * eval.c (enum run_hooks_condition): Remove.
15483 (funcall_nil, funcall_not): New functions.
15484 (run_hook_with_args): Call each function through a `funcall' argument.
15485 Remove `cond' argument, now redundant.
15486 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
15487 (Frun_hook_with_args_until_failure): Adjust accordingly.
15488 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
15489
1db5b1ad
JB
154902011-03-28 Juanma Barranquero <lekktu@gmail.com>
15491
15492 * dispextern.h (string_buffer_position): Remove declaration.
15493
15494 * print.c (strout): Remove parameter `multibyte', unused since
15495 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
15496
15497 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
15498 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
15499 All callers changed.
15500
15501 * w32.c (_wsa_errlist): Use braces for struct initializers.
15502
15503 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
15504 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
15505 All callers changed.
15506 (string_buffer_position): Likewise. Also, make static (it's never
15507 used outside xdisp.c).
15508 (cursor_row_p): Remove parameter `w', unused since
15509 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
15510 (decode_mode_spec): Remove parameter `precision', introduced during
15511 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
15512 All callers changed.
15513
5ffb62aa
JD
155142011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15515
15516 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
15517
461c2ab9 155182011-03-27 Anders Lindgren <andlind@gmail.com>
f0a1382a
JD
15519
15520 * nsterm.m (ns_menu_bar_is_hidden): New variable.
15521 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
15522 (ns_update_auto_hide_menu_bar): New functions.
15523 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
15524 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
15525 ns_constrain_all_frames.
15526 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
15527 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
15528
5c380ffb
JD
155292011-03-27 Jan Djärv <jan.h.d@swipnet.se>
15530
15531 * nsmenu.m (runDialogAt): Remove argument to timer_check.
15532
9af30bdf
GM
155332011-03-27 Glenn Morris <rgm@gnu.org>
15534
15535 * syssignal.h: Replace RETSIGTYPE with void.
15536 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
15537 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
15538 Replace SIGTYPE with void everywhere.
15539 * s/usg5-4-common.h (SIGTYPE): Remove definition.
15540 * s/template.h (SIGTYPE): Remove commented out definition.
15541
e2abce01
JB
155422011-03-26 Eli Zaretskii <eliz@gnu.org>
15543
15544 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
15545 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
15546
f868cd8a
JB
155472011-03-26 Juanma Barranquero <lekktu@gmail.com>
15548
59eb0929
JB
15549 * w32.c (read_unc_volume): Use parameter `henum', instead of
15550 global variable `wget_enum_handle'.
15551
15552 * keymap.c (describe_vector): Remove parameters `indices' and
15553 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
15554 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
15555
f868cd8a
JB
15556 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
15557
15558 * keyboard.c (timer_check): Remove parameter `do_it_now',
15559 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
15560 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
15561 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
15562
15563 * keyboard.c (read_char):
15564 * w32menu.c (w32_menu_display_help):
15565 * xmenu.c (show_help_event, menu_help_callback):
15566 Adjust calls to `show_help_echo'.
15567
15568 * gtkutil.c (xg_maybe_add_timer):
15569 * keyboard.c (readable_events):
15570 * process.c (wait_reading_process_output):
15571 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
15572
15573 * insdel.c (adjust_markers_gap_motion):
15574 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
15575 (gap_left, gap_right): Don't call it.
15576
2ecf6fdb
CY
155772011-03-25 Chong Yidong <cyd@stupidchicken.com>
15578
15579 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
15580 incurred during fontification.
15581
6b1f9ba4
JB
155822011-03-25 Juanma Barranquero <lekktu@gmail.com>
15583
15584 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
15585 (DEFVAR_PER_BUFFER): Don't pass it.
15586
15587 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
15588 (scrolling_window): Don't pass it.
15589
0f4a96b5
JB
155902011-03-25 Juanma Barranquero <lekktu@gmail.com>
15591
15592 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
15593
15594 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
15595 and `suffix'.
15596 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
15597 of variables specific to SELinux and computation of `encoded_absname'.
15598
15599 * image.c (XPutPixel): Remove unused variable `height'.
15600
15601 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
15602
15603 * unexw32.c (get_section_info): Remove unused variable `section'.
15604
15605 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
15606 (system_process_attributes): Remove unused variable `sess'.
15607 (sys_read): Remove unused variable `err'.
15608
15609 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
15610 (w32_wnd_proc): Remove unused variable `isdead'.
15611 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
15612 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
15613 (x_create_tip_frame): Remove unused variable `tem'.
15614
15615 * w32inevt.c (w32_console_read_socket):
15616 Remove unused variable `no_events'.
15617
15618 * w32term.c (x_draw_composite_glyph_string_foreground):
15619 Remove unused variable `width'.
15620
1149507c
JB
156212011-03-24 Juanma Barranquero <lekktu@gmail.com>
15622
15623 * w32term.c (x_set_glyph_string_clipping):
15624 Don't pass uninitialized region to CombineRgn.
15625
9c88f339
JB
156262011-03-23 Juanma Barranquero <lekktu@gmail.com>
15627
15628 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
15629 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
15630 (Fx_close_connection): Remove unused variable `i'.
15631
15632 * w32font.c (w32font_draw): Return number of glyphs.
15633 (w32font_open_internal): Remove unused variable `i'.
15634 (w32font_driver): Add missing initializer.
15635
15636 * w32menu.c (utf8to16): Remove unused variable `utf16'.
15637 (fill_in_menu): Remove unused variable `items_added'.
15638
15639 * w32term.c (last_mouse_press_frame): Remove static global variable.
15640 (w32_clip_to_row): Remove unused variable `f'.
15641 (x_delete_terminal): Remove unused variable `i'.
15642
15643 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
15644 (NOTHING): Remove unused static global variable.
15645 (uniscribe_check_otf): Remove unused variable `table'.
15646 (uniscribe_font_driver): Add missing initializers.
15647
dee091a3
JD
156482011-03-23 Julien Danjou <julien@danjou.info>
15649
15650 * term.c (Fsuspend_tty, Fresume_tty):
15651 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
15652 * window.c (temp_output_buffer_show):
15653 * insdel.c (signal_before_change):
15654 * frame.c (Fhandle_switch_frame):
15655 * fileio.c (Fdo_auto_save):
15656 * emacs.c (Fkill_emacs):
15657 * editfns.c (save_excursion_restore):
15658 * cmds.c (internal_self_insert):
15659 * callint.c (Fcall_interactively):
15660 * buffer.c (Fkill_all_local_variables):
15661 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
15662 Use Frun_hooks.
0f4a96b5 15663 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
e9fce1ac 15664 unconditionally since it does the check itself.
dee091a3 15665
2c520ab5 156662011-03-23 Paul Eggert <eggert@cs.ucla.edu>
f0641eff 15667
c9c49752
PE
15668 Fix more problems found by GCC 4.5.2's static checks.
15669
8abc3f12
PE
15670 * coding.c (encode_coding_raw_text): Avoid unnecessary test
15671 the first time through the loop, since we know p0 < p1 then.
15672 This also avoids a gcc -Wstrict-overflow warning.
15673
a2d26660
PE
15674 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
15675 leading to a memory leak, possible in functions like
15676 load_charset_map_from_file that can allocate an unbounded number
b12ef411 15677 of objects (Bug#8318).
a2d26660 15678
916c72e9
PE
15679 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
15680 that could (at least in theory) be that large.
15681
19ab8a18
PE
15682 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
15683 This is less likely to overflow, and avoids undefined behavior if
15684 overflow does occur. All callers changed. Use strtoul to scan
15685 for the unsigned long integer.
b7cbbd6f
PE
15686 (pint2hrstr): Simplify and tune code slightly.
15687 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19ab8a18 15688
f0641eff
PE
15689 * scroll.c (do_scrolling): Work around GCC bug 48228.
15690 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
15691
7f650bb9
PE
15692 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
15693 This also avoids a warning with gcc -Wstrict-overflow.
39f5e519
PE
15694 (validate_x_resource_name): Simplify count usage.
15695 This also avoids a warning with gcc -Wstrict-overflow.
7f650bb9 15696
37dd57d1
PE
15697 * fileio.c (Fcopy_file): Report error if fchown or fchmod
15698 fail (Bug#8306).
81e56e61 15699
699979fc 15700 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
dc1ca6a8 15701
401bf9b4
PE
15702 * process.c (Fmake_network_process): Use socklen_t, not int,
15703 where POSIX says socklen_t is required in portable programs.
15704 This fixes a porting bug on hosts like 64-bit HP-UX, where
591b2973 15705 socklen_t is wider than int (Bug#8277).
401bf9b4
PE
15706 (Fmake_network_process, server_accept_connection):
15707 (wait_reading_process_output, read_process_output):
15708 Likewise.
15709
b93aacde
PE
15710 * process.c: Rename or move locals to avoid shadowing.
15711 (list_processes_1, Fmake_network_process):
15712 (read_process_output_error_handler, exec_sentinel_error_handler):
15713 Rename or move locals.
4dc343ee 15714 (Fmake_network_process): Define label "retry_connect" only if needed.
0da49335 15715 (Fnetwork_interface_info): Fix pointer signedness.
f990b4e5 15716 (process_send_signal): Add cast to avoid pointer signedness problem.
7b808126 15717 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
c939f91b 15718 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
b93aacde 15719
af8a867c 15720 Make tparam.h and terminfo.c consistent.
44f230aa
SM
15721 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
15722 Include tparam.h instead, since it declares them.
af8a867c
PE
15723 * cm.h (PC): Remove extern decl; tparam.h now does this.
15724 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
15725 * terminfo.c: Include tparam.h, to check interfaces.
15726 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
15727 (tparam): Adjust signature to match interface in tparam.h;
15728 this removes some undefined behavior. Check that outstring and len
15729 are zero, which they always are with Emacs.
15730 * tparam.h (PC, BC, UP): New extern decls.
15731
0248044d 15732 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
001a7ab4 15733 (xftfont_open): Rename locals to avoid shadowing.
0248044d 15734
8ff096c1 15735 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
a00924bb
PE
15736 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
15737 (OTF_TAG_SYM): Omit macro if not needed.
e932860f 15738 (ftfont_list): Remove unused local.
49eaafba
PE
15739 (get_adstyle_property, ftfont_pattern_entity):
15740 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
15741 Rename locals to avoid shadowing.
8ff096c1 15742
e2be39f6
PE
15743 * xfont.c (xfont_list_family): Mark var as initialized.
15744
c9735e30
PE
15745 * xml.c (make_dom): Now static.
15746
8f5201ae
PE
15747 * composite.c (composition_compute_stop_pos): Rename local to
15748 avoid shadowing.
b246f932
PE
15749 (composition_reseat_it): Remove unused locals.
15750 (find_automatic_composition, composition_adjust_point): Likewise.
80e079b2 15751 (composition_update_it): Mark var as initialized.
11b61122
PE
15752 (find_automatic_composition): Mark vars as initialized,
15753 with a FIXME (Bug#8290).
8f5201ae 15754
760fbc2c
PE
15755 character.h: Rename locals to avoid shadowing.
15756 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
15757 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
15758 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
15759 (BUF_DEC_POS): Be more systematic about renaming local temporaries
15760 to avoid shadowing.
15761
ff08eb85
PE
15762 * textprop.c (property_change_between_p): Remove; unused.
15763
fc7bf025
PE
15764 * intervals.c (interval_start_pos): Now static.
15765
235d7abc
PE
15766 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
15767
44f230aa
SM
15768 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
15769 Rename locals to avoid shadowing.
3e7d6594 15770
50060332
PE
15771 * sound.c (wav_play, au_play, Fplay_sound_internal):
15772 Fix pointer signedness.
d01f234b 15773 (alsa_choose_format): Remove unused local var.
c83b8872
PE
15774 (wav_play): Initialize a variable to 0, to prevent undefined
15775 behavior (Bug#8278).
50060332 15776
c4fc4e30
PE
15777 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
15778
918436ed
PE
15779 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
15780
c939f91b
PE
15781 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
15782 clobbering (Bug#8298).
b9c7f648
PE
15783 * sysdep.c (sys_subshell): Likewise.
15784 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
7e9123a2 15785
6bd8c144
PE
15786 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
15787 This should get cleaned up, so that child_setup has the
15788 same signature on all platforms.
15789
7710357c 15790 * callproc.c (call_process_cleanup): Now static.
cb1d0ef7 15791 (relocate_fd): Rename locals to avoid shadowing.
7710357c 15792
c59da222
CY
157932011-03-22 Chong Yidong <cyd@stupidchicken.com>
15794
15795 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
15796 not to be necessary, and produces flickering.
15797
66b87493
GM
157982011-03-20 Glenn Morris <rgm@gnu.org>
15799
15800 * config.in: Remove file.
15801
45b6f6d5
JB
158022011-03-20 Juanma Barranquero <lekktu@gmail.com>
15803
15804 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
15805 are now in src/globals.h.
15806 (syms_of_minibuf): Remove spurious & from previous change.
15807
cd394be1 158082011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
15809
15810 * minibuf.c (completing-read-function): New variable.
15811 (completing-read-default): Rename from completing-read.
15812 (completing-read): Call completing-read-function.
15813
b14e3e21
CY
158142011-03-19 Juanma Barranquero <lekktu@gmail.com>
15815
15816 * xfaces.c (Fx_load_color_file):
15817 Read color file from absolute filename (bug#8250).
15818
f2b726e6
JB
158192011-03-19 Juanma Barranquero <lekktu@gmail.com>
15820
15821 * makefile.w32-in: Update dependencies.
15822
09f6ff02
EZ
158232011-03-17 Eli Zaretskii <eliz@gnu.org>
15824
15825 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
15826
29a6015a
PE
158272011-03-17 Paul Eggert <eggert@cs.ucla.edu>
15828
a3a6c54e
PE
15829 Fix more problems found by GCC 4.5.2's static checks.
15830
b766f867
PE
15831 * process.c (make_serial_process_unwind, send_process_trap):
15832 (sigchld_handler): Now static.
15833
be02381c
PE
15834 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
15835 That way, the code declares only the vars that it needs.
15836 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
15837 * s/cygwin.h (PTY_ITERATION): Likewise.
15838 * s/darwin.h (PTY_ITERATION): Likewise.
15839 * s/gnu-linux.h (PTY_ITERATION): Likewise.
15840
57048744
PE
15841 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
15842 * process.c (allocate_pty): Don't declare stb unless it's needed.
15843
7914961c 15844 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
615f2d59
PE
15845 (CONSTANTLIM): Remove; unused.
15846 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
15847 Define only if needed.
7914961c 15848
b3967b18
PE
15849 * unexelf.c (unexec): Name an expression,
15850 to avoid gcc -Wbad-function-cast warning.
9ae71512
PE
15851 Use a different way to cause a compilation error if anyone uses
15852 n rather than nn, a way that does not involve shadowing.
73366a00 15853 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
b3967b18 15854
29a6015a
PE
15855 * deps.mk (unexalpha.o): Remove; unused.
15856
43cfc33e 15857 New file unexec.h, the (simple) interface for unexec (Bug#8267).
7feda0d2 15858 * unexec.h: New file.
ce701a33
PE
15859 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
15860 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
15861 Depend on unexec.h.
15862 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
15863 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
15864 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
381259ef 15865 Change as necessary to match prototype in unexec.h.
ce701a33 15866
01f44d5a
PE
15867 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
15868 shadowing.
4f63c6bb 15869 (back_comment, skip_chars): Mark vars as initialized.
01f44d5a 15870
a6670b0b
PE
15871 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
15872 Rename locals to avoid shadowing.
15873
cef2010d 15874 * lread.c (read1): Rewrite so as not to use empty "else".
0902fe45 15875 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
cef2010d 15876
d4d7173a
PE
15877 * print.c (Fredirect_debugging_output): Fix pointer signedess.
15878
f08b802a
PE
15879 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
15880 warning when compiling print.c.
15881
3ddb0639
PE
15882 * font.c (font_unparse_fcname): Abort in an "impossible" situation
15883 instead of using an uninitialized var.
5ad03b97 15884 (font_sort_entities): Mark var as initialized.
3ddb0639 15885
170a2692
PE
15886 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
15887
e663c700
PE
15888 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
15889 pointers to constants.
89bc529a 15890 (font_parse_fcname): Remove unused vars.
7b81e2d0 15891 (font_delete_unmatched): Now static.
ea838e10 15892 (font_get_spec): Remove; unused.
13a547c6
PE
15893 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
15894 (font_update_drivers, Ffont_get_glyphs, font_add_log):
15895 Rename or move locals to avoid shadowing.
e663c700 15896
2a80c887 15897 * fns.c (require_nesting_list, require_unwind): Now static.
612f56df 15898 (Ffillarray): Rename locals to avoid shadowing.
2a80c887 15899
1384fa33 15900 * floatfns.c (domain_error2): Define only if needed.
a885e2ed 15901 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
1384fa33 15902
8b2c52e9
PE
15903 * alloc.c (mark_backtrace): Move decl from here ...
15904 * lisp.h: ... to here, so that it can be checked.
15905
475545b5 15906 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
d28a2170 15907 (Fdefvar): Rewrite so as not to use empty "else".
cfcbfb1a
PE
15908 (lisp_indirect_variable): Name an expression,
15909 to avoid gcc -Wbad-function-cast warning.
1faed8ae 15910 (Fdefvar): Rename locals to avoid shadowing.
475545b5 15911
b1349114 15912 * callint.c (quotify_arg, quotify_args): Now static.
a3e8cbda 15913 (Fcall_interactively): Rename locals to avoid shadowing.
b0e80955 15914 Use const pointer when appropriate.
b1349114 15915
a2928364
PE
15916 * lisp.h (get_system_name, get_operating_system_release):
15917 Move decls here, to check interfaces.
15918 * process.c (get_operating_system_release): Move decl to lisp.h.
15919 * xrdb.c (get_system_name): Likewise.
63c5d10b
PE
15920 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
15921 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
15922 some of which prompt warnings from gcc -Wbad-function-cast.
545b49b4
PE
15923 (Fformat_time_string, Fencode_time, Finsert_char):
15924 (Ftranslate_region_internal, Fformat):
15925 Rename or remove local vars to avoid shadowing.
9710023e 15926 (Ftranslate_region_internal): Mark var as initialized.
63c5d10b 15927
a415e694
PE
15928 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
15929 avoid shadowing.
15930
8ef4622d
PE
15931 * lisp.h (eassert): Check that the argument compiles, even if
15932 ENABLE_CHECKING is not defined.
15933
946f9a5b
PE
15934 * data.c (Findirect_variable): Name an expression, to avoid
15935 gcc -Wbad-function-cast warning.
112396d6 15936 (default_value, arithcompare, arith_driver, arith_error): Now static.
b9b84fa9 15937 (store_symval_forwarding): Rename local to avoid shadowing.
44f230aa
SM
15938 (Fmake_variable_buffer_local, Fmake_local_variable):
15939 Mark variables as initialized.
52746918 15940 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
946f9a5b 15941
e5aab7e7 15942 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
ae35e756
PE
15943 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
15944 Rename locals to avoid shadowing.
dff45157
PE
15945 (mark_stack): Move local variables into the #ifdef region where
15946 they're used.
7bc26fdb
PE
15947 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
15948 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
15949 needed otherwise.
15950 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
15951 (GC_STRING_CHARS): Remove; not used.
d40d4be1 15952 (Fmemory_limit): Cast sbrk's returned value to char *.
ae35e756 15953
e5aab7e7
PE
15954 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
15955 avoids undefined behavior in theory.
15956
4da60324
PE
15957 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
15958
88043301
PE
15959 Use functions, not macros, for up- and down-casing (Bug#8254).
15960 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
15961 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
15962 to use the following functions instead of these macros.
15963 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
15964 EMACS_INT, since callers assume the returned value fits in int.
15965 (upcase1): Likewise, for UPCASE_TABLE.
15966 (uppercasep, lowercasep, upcase): New static inline functions.
0da09c43 15967 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
db69b0cd 15968 the race-condition problem in the old DOWNCASE.
88043301 15969
19ed5445
PE
15970 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
15971 Rename locals to avoid shadowing.
15972 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
abbd1bcf
PE
15973 (regex_compile, re_search_2, re_match_2_internal):
15974 Remove unused local vars.
952db0d7
PE
15975 (FREE_VAR): Rewrite so as not to use empty "else",
15976 which gcc can warn about.
da053e48 15977 (regex_compile, re_match_2_internal): Mark locals as initialized.
b313f9d8
PE
15978 (RETALLOC_IF): Define only if needed.
15979 (WORDCHAR_P): Likewise. This one is never needed, but is used
15980 only in a comment talking about a compiler bug, so put inside
15981 the #if 0 of that comment.
15982 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
15983 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
15984 Remove; unused.
19ed5445 15985
1f3561e4 15986 * search.c (boyer_moore): Rename locals to avoid shadowing.
76ef09b7
PE
15987 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
15988 (PREV_CHAR_BOUNDARY): Likewise.
1f3561e4 15989
ded6f8f7
PE
15990 * search.c (simple_search): Remove unused var.
15991
dbd37a95
PE
15992 * dired.c (compile_pattern): Move decl from here ...
15993 * lisp.h: ... to here, so that it can be checked.
15994 (struct re_registers): New forward decl.
15995
7e47afad
PE
15996 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
15997
85f24f61
PE
15998 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
15999 All uses changed.
16000 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
16001 Rename locals to avoid shadowing.
5671df8f 16002 (Fvertical_motion): Mark locals as initialized.
85f24f61 16003
181aa2be 16004 * casefiddle.c (casify_object, casify_region): Now static.
e45a141a 16005 (casify_region): Mark local as initialized.
181aa2be 16006
930d429c
PE
16007 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
16008
7082eac6
PE
16009 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
16010 New macros, so that the caller can use some names other than
16011 gcpro1, gcpro2, etc.
16012 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
16013 of the new macros.
16014 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
16015 argument, for consistency with GCPRO2_VAR, etc: it is now the
16016 prefix of the variable, not the variable itself. All uses
16017 changed.
38b2c076
PE
16018 * dired.c (directory_files_internal, file_name_completion):
16019 Rename locals to avoid shadowing.
16020
15206ed9
PE
16021 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
16022 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
16023 dired.c's scmp function, had undefined behavior.
16024 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
16025 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
16026 * buffer.h: ... to here, because these macros use current_buffer,
16027 and the new implementation with inline functions needs to have
16028 current_buffer in scope now, rather than later when the macros
16029 are used.
16030 (downcase, upcase1): New static inline functions.
16031 (DOWNCASE, UPCASE1): Reimplement using these functions.
16032 This avoids undefined behavior in expressions like
16033 DOWNCASE (x) == DOWNCASE (y), which previously suffered
16034 from race conditions in accessing the global variables
16035 case_temp1 and case_temp2.
16036 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
16037 * lisp.h (case_temp1, case_temp2): Remove their decls.
16038 * character.h (ASCII_CHAR_P): Move from here ...
16039 * lisp.h: ... to here, so that the inline functions mentioned
16040 above can use them.
16041
4a6bea26
PE
16042 * dired.c (directory_files_internal_unwind): Now static.
16043
f14b7e14
PE
16044 * fileio.c (file_name_as_directory, directory_file_name):
16045 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
16046 Now static.
2893f146
PE
16047 (file_name_as_directory): Use const pointers when appropriate.
16048 (Fexpand_file_name): Likewise. In particular, newdir might
16049 point at constant storage, so make it a const pointer.
fd4ead52 16050 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
b14aac08
PE
16051 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
16052 signedness issues.
f839df0c
PE
16053 (Fset_file_times, Finsert_file_contents, auto_save_error):
16054 Rename locals to avoid shadowing.
f14b7e14 16055
5716756e 16056 * minibuf.c (choose_minibuf_frame_1): Now static.
62137a95
PE
16057 (Ftry_completion, Fall_completions): Rename or remove locals
16058 to avoid shadowing.
5716756e 16059
b4c3046a
PE
16060 * marker.c (bytepos_to_charpos): Remove; unused.
16061
b45db522
PE
16062 * lisp.h (verify_bytepos, count_markers): New decls,
16063 so that gcc does not warn that these functions aren't declared.
16064
85876d07
PE
16065 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
16066 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
f0cb4a60 16067 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
40ef059e 16068 (copy_text): Remove unused local var.
85876d07 16069
03d78a21 16070 * filelock.c (within_one_second): Now static.
b3dd38ab 16071 (lock_file_1): Rename local to avoid shadowing.
03d78a21 16072
5df8f01b
PE
16073 * buffer.c (fix_overlays_before): Mark locals as initialized.
16074 (fix_start_end_in_overlays): Likewise. This function should be
16075 simplified by using pointers-to-pointers, but that's a different
16076 matter.
b1d876f1 16077 (switch_to_buffer_1): Now static.
8f54f30a
PE
16078 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
16079 (report_overlay_modification): Rename locals to avoid shadowing.
c3bd59b5 16080
a70072c9 16081 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
fbd02d7b 16082 Fix pointer signedness issue.
edced198
PE
16083 (sys_subshell): Mark local as volatile if checking for lint,
16084 to suppress a gcc -Wclobbered warning that does not seem to be right.
15dfd3d9 16085 (MAXPATHLEN): Define only if needed.
a70072c9 16086
a0977c44
PE
16087 * process.c (serial_open, serial_configure): Move decls from here ...
16088 * systty.h: ... to here, so that they can be checked.
16089
a884fdcc
PE
16090 * fns.c (get_random, seed_random): Move extern decls from here ...
16091 * lisp.h: ... to here, so that they can be checked.
16092
604efe86 16093 * sysdep.c (reset_io): Now static.
b8950c94 16094 (wait_for_termination_signal): Remove; unused.
604efe86 16095
38fc62d9
PE
16096 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
16097 (copy_keymap_item, append_key, push_text_char_description):
16098 Now static.
1004a21a 16099 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
dbbb8427 16100 (DENSE_TABLE_SIZE): Remove; unused.
c1141155
PE
16101 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
16102 (describe_map_tree):
16103 Rename locals to avoid shadowing.
38fc62d9 16104
2f2650da
PE
16105 * keyboard.c: Declare functions static if they are not used elsewhere.
16106 (echo_char, echo_dash, cmd_error, top_level_2):
16107 (poll_for_input, handle_async_input): Now static.
69a058fa
PE
16108 (read_char, kbd_buffer_get_event, make_lispy_position):
16109 (make_lispy_event, make_lispy_movement, apply_modifiers):
16110 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
16111 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
16112 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
c8a06054 16113 (read_key_sequence, read_char): Mark locals as initialized.
3ac94672 16114 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
2f2650da 16115
a053e86c 16116 * keyboard.h (make_ctrl_char): New decl.
da2f2dd9
PE
16117 (mark_kboards): Move decl here ...
16118 * alloc.c (mark_kboards): ... from here.
a053e86c 16119
4752793e
PE
16120 * lisp.h (force_auto_save_soon): New decl.
16121
74f10ca7 16122 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
244fc23d
PE
16123 (DEFINE_DUMMY_FUNCTION): New macro.
16124 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
16125 Use it.
c03cd23f
PE
16126 (main): Add casts to avoid warnings
16127 if GCC considers string literals to be constants.
74f10ca7 16128
022e70d4
PE
16129 * lisp.h (fatal_error_signal): Add decl, since it's exported.
16130
59d6fe83
PE
16131 * dbusbind.c: Pointer signedness fixes.
16132 (xd_signature, xd_append_arg, xd_initialize):
16133 (Fdbus_call_method, Fdbus_call_method_asynchronously):
16134 (Fdbus_method_return_internal, Fdbus_method_error_internal):
16135 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
16136 (Fdbus_register_signal): Use SSDATA when the context wants char *.
16137
78320123
PE
16138 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
16139 if GCC considers string literals to be constants.
49cebcca 16140 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
78320123 16141
35ac2a97
SM
161422011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
16143
fb103ca9
SM
16144 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
16145 (print_preprocess, print_object): New macro to fix last change.
16146
35ac2a97
SM
16147 * print.c (print_preprocess): Don't forget font objects.
16148
62973b41
JB
161492011-03-16 Juanma Barranquero <lekktu@gmail.com>
16150
16151 * emacs.c (USAGE3): Doc fixes.
16152
0e48bb22
AS
161532011-03-15 Andreas Schwab <schwab@linux-m68k.org>
16154
16155 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
16156 structure.
16157
7684e57b
JB
161582011-03-14 Juanma Barranquero <lekktu@gmail.com>
16159
16160 * lisp.h (VWindow_system, Qfile_name_history):
16161 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
16162 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
16163 (w32_system_caret_x, w32_system_caret_y): Declare extern.
16164
16165 * w32select.c: Don't #include "keyboard.h".
c96bbc66 16166 (run_protected): Add extern declaration for waiting_for_input.
7684e57b
JB
16167
16168 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
16169 * w32console.c (detect_input_pending, read_input_pending)
16170 (encode_terminal_code):
16171 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
16172 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
16173 (w32_system_caret_y, Qfile_name_history):
16174 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
16175 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
16176 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
16177 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
16178 * w32proc.c (Qlocal, report_file_error):
16179 * w32term.c (Vwindow_system, updating_frame):
16180 * w32uniscribe.c (initialized, uniscribe_font_driver):
16181 Remove unneeded extern declarations.
16182
2aa46d6c
CY
161832011-03-14 Chong Yidong <cyd@stupidchicken.com>
16184
c96bbc66 16185 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
2aa46d6c 16186
cffc6f3b
CY
161872011-03-13 Chong Yidong <cyd@stupidchicken.com>
16188
16189 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
16190 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
16191 These macros can no longer be used for assignment.
16192
44f230aa
SM
16193 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
16194 Assign struct members directly, instead of using BUF_BEGV etc.
cffc6f3b
CY
16195 (record_buffer_markers, fetch_buffer_markers): New functions for
16196 recording and fetching special buffer markers.
16197 (set_buffer_internal_1, set_buffer_temp): Use them.
16198
16199 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
16200
16201 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
16202
16203 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
16204 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
16205
16206 * xdisp.c (hscroll_window_tree):
16207 (reconsider_clip_changes): Use PT instead of BUF_PT.
16208
d251f04b
EZ
162092011-03-13 Eli Zaretskii <eliz@gnu.org>
16210
16211 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
16212 $(EMACS_ROOT)/lib/intprops.h.
16213
f0c77cd1
PE
162142011-03-13 Paul Eggert <eggert@cs.ucla.edu>
16215
3eca4629
PE
16216 Fix more problems found by GCC 4.5.2's static checks.
16217
7c86ee98
PE
16218 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
16219 to unsigned char * to avoid compiler diagnostic.
b0afc268
PE
16220 (xg_free_frame_widgets): Make it clear that a local variable is
16221 needed only if USE_GTK_TOOLTIP.
01e0b5ad
PE
16222 (gdk_window_get_screen): Make it clear that this macro is needed
16223 only if USE_GTK_TOOLTIP.
1e5524e7
PE
16224 (int_gtk_range_get_value): New function, which avoids a diagnostic
16225 from gcc -Wbad-function-cast.
16226 (xg_set_toolkit_scroll_bar_thumb): Use it.
16227 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
16228 diagnostic from gcc -Wbad-function-cast.
65dc836c
PE
16229 (get_utf8_string, xg_get_file_with_chooser):
16230 Rename locals to avoid shadowing.
16231 (create_dialog): Move locals to avoid shadowing.
7c86ee98 16232
41729b81
PE
16233 * xgselect.c (xg_select): Remove unused var.
16234
f0c77cd1
PE
16235 * image.c (four_corners_best): Mark locals as initialized.
16236 (gif_load): Initialize transparent_p to zero (Bug#8238).
16237 Mark another local as initialized.
ec6cf4c6 16238 (my_png_error, my_error_exit): Mark with NO_RETURN.
f0c77cd1 16239
ce0ad53d 16240 * image.c (clear_image_cache): Now static.
d5d5a617 16241 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
e22cffbc 16242 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
77a765fd
PE
16243 (x_edge_detection): Remove unnecessary cast that
16244 gcc -Wbad-function-cast diagnoses.
2037898d 16245 (gif_load): Fix pointer signedness.
6ae141d6
PE
16246 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
16247 (jpeg_load, gif_load): Rename locals to avoid shadowing.
ce0ad53d 16248
33383987 162492011-03-12 Paul Eggert <eggert@cs.ucla.edu>
3eca4629 16250
d32df629
PE
16251 Improve quality of tests for time stamp overflow.
16252 For example, without this patch (encode-time 0 0 0 1 1
16253 1152921504606846976) returns the obviously-bogus value (-948597
16254 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
16255 reports time overflow. See
16256 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
b8d9bd41
PE
16257 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
16258 * editfns.c: Include limits.h and intprops.h.
16259 (TIME_T_MIN, TIME_T_MAX): New macros.
16260 (time_overflow): Move earlier, to before first use.
16261 (hi_time, lo_time): New functions, for an accurate test for
16262 out-of-range times.
16263 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
16264 (Fget_internal_run_time): Don't assume time_t fits in int.
16265 (make_time): Use list2 instead of Fcons twice.
16266 (Fdecode_time): More accurate test for out-of-range times.
16267 (check_tm_member): New function.
16268 (Fencode_time): Use it, to test for out-of-range times.
d32df629
PE
16269 (lisp_time_argument): Don't rely on undefined left-shift and
16270 right-shift behavior when checking for time stamp overflow.
8be6f318 16271
fe31d94c
PE
16272 * editfns.c (time_overflow): New function, refactoring common code.
16273 (Fformat_time_string, Fdecode_time, Fencode_time):
16274 (Fcurrent_time_string): Use it.
16275
8be6f318
PE
16276 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
16277 * dired.c (make_time): Move to ...
16278 * editfns.c (make_time): ... here.
16279 * systime.h: Note the move.
16280
09d9db2c 162812011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
c47cbdfd 16282
126bc0dc
YM
16283 * fringe.c (update_window_fringes): Remove unused variables.
16284
c47cbdfd
YM
16285 * unexmacosx.c (copy_data_segment): Also copy __got section.
16286 (Bug#8223)
16287
7ac80be9
EZ
162882011-03-12 Eli Zaretskii <eliz@gnu.org>
16289
c96bbc66 16290 * termcap.c [MSDOS]: Include "msdos.h".
058e5dad
EZ
16291 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
16292 Constify `char *' arguments and their references according to
16293 prototypes in tparam.h.
16294
ecb0f94d 16295 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
058e5dad 16296
7ac80be9
EZ
16297 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
16298 Adapt all references accordingly.
16299
16300 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
16301
ef1fd07e
TT
163022011-03-11 Tom Tromey <tromey@redhat.com>
16303
16304 * buffer.c (syms_of_buffer): Remove obsolete comment.
16305
7ef4b50c
EZ
163062011-03-11 Eli Zaretskii <eliz@gnu.org>
16307
16308 * termhooks.h (encode_terminal_code): Declare prototype.
16309
16310 * msdos.c (encode_terminal_code): Don't declare prototype.
16311
16312 * term.c (encode_terminal_code): Now external again, used by
16313 w32console.c and msdos.c.
16314
44f230aa
SM
16315 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
16316 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
7ef4b50c 16317
4b1ec863 163182011-03-11 Paul Eggert <eggert@cs.ucla.edu>
f78faa98 16319
1714f52b 16320 Fix some minor problems found by GCC 4.5.2's static checks.
83316bf4 16321
4b1ec863
PE
16322 * fringe.c (update_window_fringes): Mark locals as initialized
16323 (Bug#8227).
16324 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
bf60f616 16325
524c7aa6
PE
16326 * alloc.c (mark_fringe_data): Move decl from here ...
16327 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
16328 to check its interface.
16329 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
16330
a5c0af81 16331 * fontset.c (free_realized_fontset): Now static.
7519b8cd 16332 (Fset_fontset_font): Rename local to avoid shadowing.
cc6e5db1 16333 (fontset_font): Mark local as initialized.
a9a06e0b 16334 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
a5c0af81 16335
b4716021
PE
16336 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
16337
811e9bac 16338 * xselect.c (x_disown_buffer_selections): Remove; not used.
7b83e2f1 16339 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
aa0daa9f
PE
16340 (x_own_selection, Fx_disown_selection_internal): Rename locals
16341 to avoid shadowing.
16342 (x_handle_dnd_message): Remove local to avoid shadowing.
811e9bac 16343
7e3ab302
PE
16344 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
16345 so that the caller can use some name other than gcpro1.
16346 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
58d2d479
PE
16347 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
16348 (Fx_backspace_delete_keys_p):
16349 Use them to avoid shadowing, and rename vars to avoid shadowing.
16350 (x_decode_color, x_set_name, x_window): Now static.
6b437900 16351 (Fx_create_frame): Add braces to silence GCC warning.
c0951e53 16352 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
06b0c8a0
PE
16353 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
16354 Remove unused locals.
7e3ab302
PE
16355 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
16356 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
16357 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
16358 macros.
f78faa98 16359
e2b13473
PE
16360 * xterm.h (x_mouse_leave): New decl.
16361
77f23912
PE
16362 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
16363 Remove unused functions.
cdf4ba58
PE
16364 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
16365 (x_calc_absolute_position): Now static.
7411c686 16366 (XTread_socket): Don't define label "out" unless it's used.
2b07bcff 16367 Don't declare local "event" unless it's used.
ed7bf3a5
PE
16368 (x_iconify_frame, x_free_frame_resources): Don't declare locals
16369 unless they are used.
38d0b34a
PE
16370 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
16371 (x_fatal_error_signal): Remove; not used.
a6067996
PE
16372 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
16373 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
16374 (x_error_catcher, x_connection_closed, x_error_handler):
16375 (x_error_quitter, xembed_send_message, x_iconify_frame):
16376 (my_log_handler): Rename locals to avoid shadowing.
28f1c698 16377 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
2a8fade0 16378 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
77f23912 16379
44f230aa
SM
16380 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
16381 Rename or move locals to avoid shadowing.
6b463e58 16382 (tty_defined_color, merge_face_heights): Now static.
5967d051 16383 (free_realized_faces_for_fontset): Remove; not used.
1e9966ea
PE
16384 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
16385 does not deduce is never used uninitialized.
73719eba
PE
16386 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
16387 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
071048a3 16388
426994c3 16389 * terminal.c (store_terminal_param): Now static.
5489860b 16390
032f1620 16391 * xmenu.c (menu_highlight_callback): Now static.
9d66f88e 16392 (set_frame_menubar): Remove unused local.
d4323972 16393 (xmenu_show): Rename parameter to avoid shadowing.
6d1f7fee
PE
16394 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
16395 since they might point to immutable storage.
281585b0
PE
16396 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
16397 since it's unused otherwise.
032f1620 16398
367c19e5 16399 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
53df7c11 16400 Add a FIXME, since the code still doesn't look right. (Bug#8215)
9f36b9fd
PE
16401 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
16402 avoids a gcc -Wuninitialized diagnostic.
0e086e8f 16403 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
44a3a108
PE
16404 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
16405 does not deduce are never used uninitialized.
70739cbe 16406
07b48fa9
PE
16407 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
16408
8868a238 16409 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
4554d213
PE
16410 * window.c (window_loop, size_window):
16411 (run_window_configuration_change_hook, enlarge_window): Likewise.
8868a238 16412
7e5cf297 16413 * window.c (display_buffer): Now static.
d6550a9f
PE
16414 (size_window): Mark variables that gcc -Wuninitialized
16415 does not deduce are never used uninitialized.
a586633d
PE
16416 * window.h (check_all_windows): New decl, to forestall
16417 gcc -Wmissing-prototypes diagnostic.
5b555da1 16418 * dispextern.h (bidi_dump_cached_states): Likewise.
7e5cf297 16419
f6095868
PE
16420 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
16421 shadowing.
16422 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
726929c4
PE
16423 Include <limits.h>.
16424 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
16425 and to avoid gcc -Wuninitialized warning.
89ef49df
PE
16426 (load_charset_map): Mark variables that gcc -Wuninitialized
16427 does not deduce are never used uninitialized.
53df7c11 16428 (load_charset): Abort instead of using uninitialized var (Bug#8229).
f6095868 16429
f38b440c
PE
16430 * coding.c (coding_set_source, coding_set_destination):
16431 Use "else { /* comment */ }" rather than "else /* comment */;"
16432 for clarity, and to avoid gcc -Wempty-body warning.
2735d060
PE
16433 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
16434 a block, when the outer 'i' will do.
16435 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
16436 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
16437 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
16438 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
16439 (Fdecode_sjis_char, Fdefine_coding_system_internal):
16440 Rename locals to avoid shadowing.
16441 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
e2f1bab9
PE
16442 * coding.c (emacs_mule_char, encode_invocation_designation):
16443 Now static, since they're not used elsewhere.
413bb2db 16444 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
c4a63b12 16445 (decode_coding_object, encode_coding_object, detect_coding_system):
ee05f961
PE
16446 (decode_coding_emacs_mule): Mark variables that gcc
16447 -Wuninitialized does not deduce are never used uninitialized.
160b01f6
PE
16448 (detect_coding_iso_2022): Initialize a local variable that might
16449 be used uninitialized. Leave a FIXME because it's not clear that
53df7c11 16450 this initialization is needed. (Bug#8211)
5f58e762
PE
16451 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
16452 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
16453 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
16454 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
16455 Remove unused macros.
f38b440c 16456
232b38b9 16457 * category.c (hash_get_category_set): Remove unused local var.
9f3b5e69 16458 (copy_category_table): Now static, since it's not used elsewhere.
d0891610 16459 * character.c (string_count_byte8): Likewise.
232b38b9 16460
fb90da1b
PE
16461 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
16462 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
16463
fb93dbc2
PE
16464 * chartab.c (copy_sub_char_table): Now static, since it's not used
16465 elsewhere.
5c156ace
PE
16466 (sub_char_table_ref_and_range, char_table_ref_and_range):
16467 Rename locals to avoid shadowing.
bbcd0949 16468 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
fb93dbc2 16469
7d3b3862 16470 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
630d6892 16471 (BIDI_BOB): Remove unused macro.
7d3b3862 16472
6be7d3da
PE
16473 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
16474 deduce are never used uninitialized.
c2ed9c8b 16475 * term.c (encode_terminal_code): Likewise.
6be7d3da 16476
75f8807f 16477 * term.c (encode_terminal_code): Now static. Remove unused local.
72abad34 16478
50938595
PE
16479 * tparam.h: New file.
16480 * term.c, tparam.h: Include it.
16481 * deps.mk (term.o, tparam.o): Depend on tparam.h.
16482 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
16483 Move these decls to tparam.h, and make them agree with what
16484 is actually in tparam.c. The previous trick of using incompatible
16485 decls in different modules does not conform to the C standard.
16486 All callers of tparam changed to use tparam's actual API.
16487 * tparam.c (tparam1, tparam, tgoto):
16488 Use const pointers where appropriate.
16489
fbceeba2
PE
16490 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
16491 * cm.h (struct cm): Likewise.
16492 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
16493 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
16494 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
16495 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
16496 (turn_on_face, init_tty): Likewise.
16497 * termchar.h (struct tty_display_info): Likewise.
fbceeba2 16498
7f3f1250
PE
16499 * term.c (term_mouse_position): Rename local to avoid shadowing.
16500
e6ca6543
PE
16501 * alloc.c (mark_ttys): Move decl from here ...
16502 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
16503
c40f8d15
AS
165042011-03-11 Andreas Schwab <schwab@linux-m68k.org>
16505
16506 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
16507
cfe0661d
JB
165082011-03-09 Juanma Barranquero <lekktu@gmail.com>
16509
16510 * search.c (compile_pattern_1): Remove argument regp, unused since
16511 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
16512 (compile_pattern): Don't pass it.
16513
0afb4571
J
165142011-03-08 Jan Djärv <jan.h.d@swipnet.se>
16515
16516 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
16517 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
16518 for ! HAVE_GTK3.
16519 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
16520
16521 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
16522
16523 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
16524 gdk_window_get_screen, gdk_window_get_geometry,
16525 gdk_x11_window_lookup_for_display and GDK_KEY_g.
16526 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
16527 (xg_get_pixbuf_from_pixmap): New function.
16528 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
16529 to Pixmap, take frame as parameter, remove GdkColormap parameter.
16530 Call xg_get_pixbuf_from_pixmap instead of
16531 gdk_pixbuf_get_from_drawable.
16532 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
16533 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
16534 (xg_check_special_colors): Use GtkStyleContext and its functions
16535 for HAVE_GTK3.
16536 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
16537 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
16538 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
44f230aa
SM
16539 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
16540 Call gtk_widget_get_preferred_size.
0afb4571
J
16541 (xg_frame_resized): gdk_window_get_geometry only takes 5
16542 parameters.
44f230aa
SM
16543 (xg_win_to_widget, xg_event_is_for_menubar):
16544 Call gdk_x11_window_lookup_for_display.
0afb4571
J
16545 (xg_set_widget_bg): New function.
16546 (delete_cb): New function.
895009e1 16547 (xg_create_frame_widgets): Connect delete-event to delete_cb.
5c32d3f2 16548 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
0afb4571
J
16549 (xg_set_background_color): Call xg_set_widget_bg.
16550 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
16551 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
16552 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
16553 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
16554 if ! HAVE_GTK3.
16555 (update_frame_tool_bar): Call gtk_widget_hide.
16556 (xg_initialize): Use GDK_KEY_g.
16557
16558 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
16559 if ! HAVE_GTK3
16560 (x_session_initialize): Call gdk_x11_set_sm_client_id.
16561
16562 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
16563 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
16564 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
16565
1c2cc4ef
JB
165662011-03-08 Juanma Barranquero <lekktu@gmail.com>
16567
16568 * w32xfns.c (select_palette): Check success of RealizePalette against
16569 GDI_ERROR, not zero.
16570
33383987 16571See ChangeLog.11 for earlier changes.
aac0c6e3
MR
16572
16573;; Local Variables:
16574;; coding: utf-8
aac0c6e3
MR
16575;; End:
16576
2f097256 16577 Copyright (C) 2011-2012 Free Software Foundation, Inc.
aac0c6e3
MR
16578
16579 This file is part of GNU Emacs.
16580
16581 GNU Emacs is free software: you can redistribute it and/or modify
16582 it under the terms of the GNU General Public License as published by
16583 the Free Software Foundation, either version 3 of the License, or
16584 (at your option) any later version.
16585
16586 GNU Emacs is distributed in the hope that it will be useful,
16587 but WITHOUT ANY WARRANTY; without even the implied warranty of
16588 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
16589 GNU General Public License for more details.
16590
16591 You should have received a copy of the GNU General Public License
16592 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.