]> code.delx.au - gnu-emacs/blob - src/ChangeLog
* window.h (struct window): Convert left_col, top_line, total_lines
[gnu-emacs] / src / ChangeLog
1 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
2
3 * window.h (struct window): Convert left_col, top_line, total_lines
4 and total_cols from Lisp_Objects to integers. Adjust comments.
5 (wset_left_col, wset_top_line, wset_total_cols, wset_total_lines):
6 Remove.
7 (WINDOW_TOTAL_COLS, WINDOW_TOTAL_LINES, WINDOW_LEFT_EDGE_COL)
8 (WINDOW_TOP_EDGE_LINE): Drop Lisp_Object to integer conversion.
9 * dispnew.c, frame.c, w32fns.c, window.c, xdisp.c, xfns.c:
10 Adjust users where appropriate.
11
12 2013-03-20 Dmitry Antipov <dmantipov@yandex.ru>
13
14 * frame.h (struct frame): Drop resx and resy because the same data is
15 available from window system-specific output context. Adjust users.
16 (default_pixels_per_inch_x, default_pixels_per_inch_y): New
17 functions to provide defaults when no window system available.
18 (FRAME_RES_X, FRAME_RES_Y): New macros.
19 (NUMVAL): Moved from xdisp.c.
20 * font.c (font_pixel_size, font_find_for_lface, font_open_for_lface)
21 (Ffont_face_attributes, Fopen_font):
22 * image.c (gs_load):
23 * w32font.c (fill_in_logfont):
24 * xdisp.c (calc_pixel_width_or_height):
25 * xfaces.c (Fx_family_fonts, set_lface_from_font): Use them.
26 * xsettings.c (apply_xft_settings): Drop frame loop and adjust comment.
27
28 2013-03-20 Kenichi Handa <handa@gnu.org>
29
30 * coding.c (syms_of_coding): Initialize disable_ascii_optimization
31 to 1 (temporary workaround until a bug related to ASCII
32 optimization is fixed).
33
34 2013-03-19 Dmitry Antipov <dmantipov@yandex.ru>
35
36 * window.c (Fwindow_combination_limit, Fset_window_combination_limit):
37 Signal error if window is not internal. Adjust docstring.
38 (delete_all_child_windows): Use combination_limit to save the buffer.
39 (Fset_window_configuration): Adjust accordingly.
40 * print.c (syms_of_print): Initialize debugging output not here...
41 (init_print_once): ...but in a new function here.
42 * lisp.h (init_print_once): Add prototype.
43 * emacs.c (main): Add call to init_print_once. Adjust comments.
44
45 2013-03-18 Dmitry Antipov <dmantipov@yandex.ru>
46
47 * window.c (window_resize_check, window_resize_apply)
48 (window_from_coordinates, recombine_windows, set_window_buffer)
49 (make_parent_window, Fwindow_resize_apply, resize_frame_windows)
50 (Fsplit_window_internal, Fdelete_window_internal)
51 (freeze_window_starts): Use bool for booleans.
52 * window.h (window_frame_coordinates, resize_frame_windows)
53 (freeze_window_starts, set_window_buffer): Adjust prototypes.
54
55 2013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * dispnew.c (bitch_at_user): Use `user-error'.
58
59 2013-03-17 Ken Brown <kbrown@cornell.edu>
60
61 * dispextern.h (RGB_PIXEL_COLOR): Move here from image.c. Use it
62 as return type of image_background. (Bug#13981)
63 * image.c (RGB_PIXEL_COLOR): Move to dispextern.h.
64
65 2013-03-16 Jan Djärv <jan.h.d@swipnet.se>
66
67 * nsterm.m (updateFrameSize:): Change resize increments if needed.
68 (ns_select): Don't return with result uninitialized.
69
70 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
71 and getDirectory.
72
73 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
74 New functions.
75 (Fns_read_file_name): ret is BOOL. If ! dir_only_p, don't choose
76 directories. If filename is nil, get directory name (Bug#13932).
77 Use getFilename and getDirectory.
78 (getFilename, getDirectory): New methods for EmacsSavePanel and
79 EmacsOpenPanel.
80 (ok:): In EmacsOpenPanel, if we can't choose directories, just return.
81
82 2013-03-15 Paul Eggert <eggert@cs.ucla.edu>
83
84 * coding.c (decode_coding_gap): Fix typo caught by static checking.
85
86 2013-03-15 handa <handa@gnu.org>
87
88 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
89 (adjust_after_replace): Make it back to static. Delete the third
90 arg text_at_gap_tail. Cancel the code for handling it.
91
92 * coding.h (struct coding_system): New member eol_seen.
93
94 * coding.c (detect_ascii): New function.
95 (detect_coding): Set coding->head_ascii and coding->eol_seen only
96 when the source bytes are actually scanned. On detecting for
97 coding_category_utf_8_auto, call detect_ascii instead of scanning
98 source bytes directly.
99 (produce_chars): Call insert_from_gap with the new arg 0.
100 (encode_coding): Likewise.
101 (decode_coding_gap): Control ASCII optimization by the variable
102 disable_ascii_optimization instead of #ifndef .. #endif.
103 Deccode EOL format according to coding->eol_seen.
104 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
105 variable.
106
107 * lisp.h (adjust_after_replace): Cancel externing it.
108 (insert_from_gap): Adjust prototype.
109
110 2013-03-15 Eli Zaretskii <eliz@gnu.org>
111
112 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
113 FULLSCREEN_MAXIMIZED. (Bug#13935)
114
115 2013-03-15 Dmitry Antipov <dmantipov@yandex.ru>
116
117 * region-cache.c (find_cache_boundary, move_cache_gap)
118 (insert_cache_boundary, delete_cache_boundaries, set_cache_region):
119 Simplify debugging check and convert to eassert. Adjust comment.
120 (pp_cache): Put under ENABLE_CHECKING.
121
122 2013-03-14 Eli Zaretskii <eliz@gnu.org>
123
124 * w32term.c (w32_read_socket) <WM_WINDOWPOSCHANGED>: Remove old
125 and incorrect code. Treat WM_WINDOWPOSCHANGED like WM_ACTIVATE
126 and WM_ACTIVATEAPP.
127 (w32fullscreen_hook): If the frame is visible, reset
128 f->want_fullscreen flag after changing the frame size. If the
129 frame is not visible, set f->want_fullscreen to FULLSCREEN_WAIT.
130 (Bug#13953)
131
132 2013-03-13 Daniel Colascione <dancol@dancol.org>
133
134 * emacs.c (main): Call syms_of_cygw32 on CYGWIN non-NTGUI builds
135 too so that these builds can use Cygwin's file conversion
136 functions. (We've been building and linking cygw32.o all along
137 and just not using it.)
138
139 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
140
141 File synchronization fixes (Bug#13944).
142 * Makefile.in (LIB_FDATASYNC): New macro.
143 (LIBES): Use it.
144 * conf_post.h (BSD_SYSTEM, BSD_SYSTEM_AHB): Remove; no longer needed.
145 * fileio.c (Fwrite_region, write_region_inhibit_fsync):
146 Don't worry about HAVE_FSYNC, since a substitute fsync is
147 available if the system lacks one.
148 (Fwrite_regin): Retry fsync if interrupted.
149
150 2013-03-13 Eli Zaretskii <eliz@gnu.org>
151
152 * w32term.c (w32_read_socket): If the Emacs frame is being
153 activated, call w32fullscreen_hook, to make sure the new frame
154 dimensions are in effect. (Bug#13937)
155
156 2013-03-13 Dmitry Antipov <dmantipov@yandex.ru>
157
158 * xdisp.c (init_iterator): Simplify because both character and byte
159 positions are either specified or -1. Add eassert. Adjust comment.
160 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
161 character and byte positions can be obtained from marker.
162
163 2013-03-13 Paul Eggert <eggert@cs.ucla.edu>
164
165 Static checking by Sun C 5.12.
166 * alloc.c (buffer_memory_full) [REL_ALLOC]:
167 * bytecode.c (exec_byte_code):
168 * dispnew.c (init_display):
169 * eval.c (error):
170 * fileio.c (Fsubstitute_in_file_name):
171 * keyboard.c (Fevent_convert_list):
172 * keymap.c (Fsingle_key_description):
173 * term.c (maybe_fatal, fatal):
174 * xfns.c (Fx_display_backing_store, Fx_display_visual_class):
175 * xsmfns.c (Fhandle_save_session):
176 Omit unreachable code.
177 * keymap.c (map_keymap_char_table_item): Cast void * to
178 a function pointer type; the C Standard requires this.
179
180 * sysdep.c: Remove a use of BSD_SYSTEM, which I'm trying to phase out.
181 Include <sys/param.h> unconditionally, as that works elsewhere and
182 is simpler here. Include <sys/sysctl.h> if DARWIN_OS ||
183 __FreeBSD__, not if BSD_SYSTEM, since it's needed only for Darwin
184 and FreeBSD now.
185
186 2013-03-11 Paul Eggert <eggert@cs.ucla.edu>
187
188 * insdel.c (adjust_after_replace): Use bool for boolean.
189
190 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
191
192 * keyboard.c: Move keyboard decoding to read_key_sequence.
193 (decode_keyboard_code): Remove.
194 (tty_read_avail_input): Don't try to decode input.
195 (read_decoded_char): New function.
196 (read_key_sequence): Use it.
197
198 2013-03-10 Daniel Colascione <dancol@dancol.org>
199
200 * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
201 (GUI_SDATA, guichar_t): Macros to abstract out differences between
202 NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
203 w32fns.c.
204
205 * w32term.c (construct_drag_n_drop): Use the above macros to make
206 drag-and-drop work for non-ASCII filenames in cygw32 builds.
207
208 * w32fns.c (x_set_name, x_set_title): Use the above macros to
209 properly display non-ASCII frame titles in cygw32 builds.
210
211 * w32fns.c (Fw32_shell_execute): Use the above macros to properly
212 call ShellExecute in cygw32 builds.
213
214 * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
215 common file dialog code.
216
217 * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
218 can just use du like other systems.
219
220 * coding.c (from_unicode_buffer): Declare.
221 * coding.c (from_unicode_buffer): Implement.
222
223 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
224
225 * lread.c: Minor cleanup.
226 (FROM_FILE_P): New macro.
227 (skip_dyn_bytes, unreadchar, read1): Use it.
228 (read_list): Consolidate duplicated code.
229
230 * bytecode.c (struct byte_stack): Remove `constants' when unused.
231
232 2013-03-10 Eli Zaretskii <eliz@gnu.org>
233
234 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
235 (redisplay_internal, set_cursor_from_row, try_window)
236 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
237 (display_line, notice_overwritten_cursor)
238 (mouse_face_from_buffer_pos, note_mouse_highlight):
239 Use MATRIX_ROW_DISPLAYS_TEXT_P.
240 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
241 (mouse_face_from_string_pos, fast_find_string_pos):
242 Use MATRIX_ROW_VPOS.
243
244 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
245
246 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
247
248 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
249 MATRIX_MODE_LINE_ROW.
250
251 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
252
253 2013-03-10 handa <handa@gnu.org>
254
255 * lisp.h (adjust_after_replace): Extern it.
256
257 * coding.c (detect_coding): Cound the heading ASCII bytes in the
258 case of detection for coding_category_utf_8_auto.
259 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
260 Skip decoding if all bytes are ASCII.
261
262 * insdel.c (adjust_after_replace): Make it public. New arg
263 text_at_gap_tail.
264 (adjust_after_insert): Call adjust_after_replace with the new arg
265 value 0.
266
267 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
268
269 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
270 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
271 from Elisp via unread-command-events.
272
273 * keyboard.c (access_keymap_keyremap): Accept nil return value from
274 functions to mean "no change".
275
276 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
277
278 region-cache.c, scroll.c, search.c: Use bool for booleans.
279 * lisp.h (compile_pattern):
280 * scroll.c (do_scrolling, do_direct_scrolling):
281 * search.c (struct regexp_cache, compile_pattern_1)
282 (compile_pattern, string_match_1, search_command)
283 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
284 (search_regs_saved, Fregexp_quote):
285 Use bool for boolean.
286 * region-cache.c (region_cache_forward, region_cache_backward):
287 Fix comments to match code: these functions return int, not boolean.
288
289 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
290
291 * search.c (find_newline): Accept start and end byte positions
292 as arguments and allow -1 if not known.
293 (find_newline_no_quit): Likewise for start position.
294 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
295 * bidi.c (bidi_find_paragraph_start): Pass byte position to
296 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
297 * editfns.c (Fconstrain_to_field): Break long line.
298 Adjust call to find_newline.
299 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
300 Use DEC_BOTH to start next search from the previous buffer
301 position, where appropriate.
302 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
303 (get_visually_first_element, move_it_vertically_backward): Likewise.
304 Obtain byte position from the display iterator, where appropriate.
305
306 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
307
308 print.c, process.c: Use bool for booleans.
309 * lisp.h (wait_reading_process_output):
310 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
311 (strout, debug_output_compilation_hack, float_to_string, print)
312 (print_object):
313 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
314 (decode_status, status_message, create_process, create_pty)
315 (Fmake_network_process, Fnetwork_interface_info)
316 (wait_reading_process_output, read_process_output)
317 (write_queue_push, write_queue_pop, process_send_signal)
318 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
319 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
320 Use bool for booleans.
321 * process.c (Fnetwork_interface_list): Remove unused local.
322 (connect_counter): Now EMACS_INT, not int.
323
324 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
325
326 * bidi.c (bidi_fetch_char): Swap first and second arguments
327 to match other functions accepting character and byte positions.
328 Adjust comment.
329 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
330 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
331 when you need just to move to the previous buffer position.
332 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
333
334 2013-03-07 Eli Zaretskii <eliz@gnu.org>
335
336 * .gdbinit (prowlims): Display the enabled_p flag of the row.
337
338 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
339
340 Avoid character to byte conversions in motion subroutines.
341 * indent.h (compute_motion, vmotion): Add byte position argument.
342 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
343 Add eassert.
344 (Fcompute_motion): Break long line. Adjust call to compute_motion.
345 Use list5 for return value.
346 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
347 Adjust comments, style and calls to compute_motion.
348 (Fvertical_motion): Adjust call to vmotion.
349 * window.c (Fdelete_other_windows_internal): Record window start
350 byte position and adjust call to vmotion.
351 (window_scroll_line_based): Likewise with call to compute_motion.
352 Use SET_PT_BOTH.
353 (Frecenter): Adjust calls to vmotion.
354
355 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
356
357 * lisp.h (list2i, list3i): New functions.
358 (list4i): Move from window.c and make LISP_INLINE.
359 * editfns.c (make_lisp_time):
360 * fns.c (Flocale_info):
361 * keyboard.c (parse_modifiers):
362 * xterm.c (x_ewmh_activate_frame): Use list2i.
363 * instel.c (signal_after_change):
364 * nsfns.m (Fx_server_version, Fxw_color_values):
365 * w32fns.c (Fxw_color_values, Fx_server_version):
366 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
367 * fileio.c (Fvisited_file_modtime):
368 * nsfns.m (Fns_display_usable_bounds):
369 * w32.c (ltime): Use list4i.
370
371 2013-03-06 Eli Zaretskii <eliz@gnu.org>
372
373 * search.c (find_newline_no_quit): Rename from find_next_newline.
374 Add commentary.
375
376 * lisp.h (find_newline_no_quit): Rename prototype.
377
378 * xdisp.c (back_to_previous_line_start)
379 (forward_to_next_line_start, get_visually_first_element)
380 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
381 * indent.c (vmotion): Callers of find_newline_no_quit changed.
382 * bidi.c (bidi_find_paragraph_start): Callers of
383 find_newline_no_quit changed.
384
385 * msdos.c: Change encoding to cp850. (Bug#13879)
386 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
387
388 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
389
390 Coding system support cleanup and minor refactoring.
391 * coding.h (enum coding_result_code): Remove
392 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
393 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
394 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
395 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
396 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
397 (decode_coding_region, encode_coding_region, decode_coding_string):
398 Remove unused compatibility macros.
399 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
400 (record_conversion_result): Adjust user.
401 (syms_of_coding): Likewise.
402 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
403 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
404 (decode_coding_object): Simplify since xrealloc never returns NULL.
405 Add eassert.
406
407 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
408
409 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
410 * sysdep.c (list_system_processes)
411 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
412 Make it a stub in this case; otherwise the build might fail,
413 and this code hasn't been tested on such hosts anyway.
414 Problem reported by Nelson H. F. Beebe in
415 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
416 and analyzed by Jérémie Courrèges-Anglas in
417 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
418
419 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
420
421 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
422 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
423 (get_visually_first_element, move_it_vertically_backward): Ajust users.
424 * bidi.c (bidi_find_paragraph_start): Likewise.
425 * indent.c (vmotion): Likewise.
426
427 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
428
429 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
430 * filelock.c: Include <c-ctype.h>.
431 (MAX_LFINFO): New top-level constant.
432 (lock_info_type): Remove members pid, boot_time. Add members at,
433 dot, colon. Change user member to be the entire buffer, not a
434 pointer. This allows us to handle the case where a foreign
435 pid or boot time exceeds the local range. All uses changed.
436 (LINKS_MIGHT_NOT_WORK): New constant.
437 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
438 (defined_WINDOWSNT): Remove.
439 (MAKE_LOCK_NAME, file_in_lock_file_name):
440 Always use .#FILE (not .#-FILE) for the file lock,
441 even if it is a regular file.
442 (rename_lock_file): New function.
443 (create_lock_file): Use it.
444 (create_lock_file, read_lock_data):
445 Prefer a symbolic link for the lock file, falling back on a
446 regular file if symlinks don't work. Do not try to create
447 symlinks on MS-Windows, due to security hassles. Stick with
448 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
449 link, rename, unlink, mkstemp) when creating locks, as a GNUish
450 host may be using a Windowsish file system, and cannot use
451 MS-Windows-only system calls. Fall back on mktemp if mkstemp
452 doesn't work. Don't fail merely because of a symlink-contents
453 length limit in the current file system; fall back on regular
454 files. Increase the symlink contents length limit to 8 KiB, this
455 should be big enough for any real use and doesn't crunch the
456 stack.
457 (create_lock_file, lock_file_1, read_lock_data):
458 Simplify allocation of lock file buffers now that they fit in 8 KiB.
459 (lock_file_1): Return error number, not bool. All callers changed.
460 (ELOOP): New macro, if not already defined.
461 (read_lock_data): Return size of lock file contents, not Lisp object.
462 All callers changed. Handle a race condition if some other process
463 replaces a regular-file lock with a symlink lock or vice versa,
464 while we're trying to read the lock.
465 (current_lock_owner): Parse contents more carefully, to help avoid
466 confusing a regular-file lock with some other application's use
467 of the file. Check for lock file contents being too long, or
468 not parsing correctly.
469 (current_lock_owner, lock_file):
470 Allow foreign pid and boot times that exceed the local range.
471 (current_lock_owner, lock_if_free, lock_file):
472 Simplify allocation of lock file contents.
473 * w32.c (sys_rename_replace): New function, containing most of
474 the contents of the old sys_rename.
475 (sys_rename): Use it.
476 (fchmod): New dummy function.
477 * w32.h (sys_rename_replace, fchmod): New decls.
478
479 2013-03-05 Eli Zaretskii <eliz@gnu.org>
480
481 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
482 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
483 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
484 <dmantipov@yandex.ru>.
485
486 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
487
488 * composite.c (get_composition_id, fill_gstring_header):
489 Use make_uninit_vector where appropriate.
490 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
491 * xselect.c (clean_local_selection_data): Likewise.
492
493 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
494
495 Fix misuse of ImageMagick that caused core dump (Bug#13846).
496 * image.c (imagemagick_load_image): Calculate height and width
497 after flattening the image, not before.
498
499 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
500
501 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
502 * ftfont.c (ftfont_shape_by_flt): Likewise.
503 * w32uniscribe.c (uniscribe_shape): Likewise.
504
505 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
506
507 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
508 The old approach, which fell back on DIR/.#FILE.0 through
509 DIR/.#FILE.9, had race conditions that could not be easily fixed.
510 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
511 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
512 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
513 because the locking mechanism was never reliable in that case).
514 This patch fixes this and other bugs discovered by a code
515 inspection that was prompted by
516 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
517 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
518 to avoid interoperability problems between the MS-Windows and
519 non-MS-Windows implementations. MS-Windows and non-MS-Windows
520 instances of Emacs now ignore each others' locks.
521 * filelock.c (defined_WINDOWSNT): New constant.
522 (MAKE_LOCK_NAME, fill_in_lock_file_name):
523 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
524 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
525 regular files on MS-Windows hosts.
526 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
527 Use SAFE_ALLOCA to avoid problems with long file names.
528 (MAX_LFINFO): Now a local constant, not a global macro.
529 (IS_LOCK_FILE): Remove.
530 (lock_file_1): Don't inspect errno if symlink call succeeds;
531 that's not portable.
532 (lock_file): Document that this function can return if lock
533 creation fails.
534 (lock_file): Don't access freed storage.
535
536 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
537
538 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
539
540 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
541
542 * textprop.c: Use bool for booleans.
543 (validate_interval_range, Fadd_text_properties)
544 (Fremove_text_properties): Prefer bool to int when either works.
545
546 2013-03-02 Eli Zaretskii <eliz@gnu.org>
547
548 * textprop.c (Fadd_text_properties, Fremove_text_properties):
549 If the interval tree changes as a side effect of calling
550 modify_region, re-do processing starting from the call to
551 validate_interval_range. (Bug#13743)
552
553 2013-02-28 Eli Zaretskii <eliz@gnu.org>
554
555 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
556 (Bug#13546).
557
558 2013-02-27 Eli Zaretskii <eliz@gnu.org>
559
560 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
561 _SH_DENYRW flag, instead of emacs_open, to deny any other process
562 access to the lock file until it is written and closed.
563 (Bug#13807)
564
565 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
566
567 * callint.c (Qcall_interactively):
568 * macros.c (Qexecute_kbd_macro):
569 Now static.
570
571 2013-02-26 Bastien Guerry <bzg@gnu.org>
572
573 * window.c (Frecenter): Tiny docstring enhancement.
574
575 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
576
577 Minor textprop integer cleanup.
578 * intervals.h, textprop.c (add_text_properties_from_list):
579 Return void, not int, since nobody uses the return value.
580 * textprop.c (validate_plist, add_properties, remove_properties)
581 (Fadd_text_properties):
582 Don't assume list length fits in int.
583 (interval_has_all_properties, interval_has_some_properties)
584 (interval_has_some_properties_list, add_properties, remove_properties)
585 (Fadd_text_properties, Fremove_text_properties)
586 (Fremove_list_of_text_properties, text_property_stickiness):
587 Use bool for booleans.
588 (Fadd_text_properties, Fremove_text_properties):
589 (Fremove_list_of_text_properties):
590 Reindent do-while as per GNU style.
591
592 2013-02-25 Eli Zaretskii <eliz@gnu.org>
593
594 Implement CLASH_DETECTION for MS-Windows.
595
596 * filelock.c [WINDOWSNT]: Include w32.h.
597 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
598 function of that name. Up-case the macro arguments.
599 (IS_LOCK_FILE): New macro.
600 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
601 (create_lock_file): New function, with body extracted from
602 lock_file_1.
603 [WINDOWSNT]: Implement lock files by writing a regular file with
604 the lock information as its contents.
605 (read_lock_data): New function, on Posix platforms just calls
606 emacs_readlinkat.
607 [WINDOWSNT]: Read the lock info from the file.
608 (current_lock_owner): Call read_lock_data instead of calling
609 emacs_readlinkat directly.
610 (lock_file) [WINDOWSNT]: Run the file name through
611 dostounix_filename.
612
613 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
614 just check if the process by that PID exists.
615
616 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
617 also present, as doing so will fail to error out if the file
618 already exists.
619
620 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
621
622 * textprop.c (Fadd_text_properties, Fremove_text_properties)
623 (Fremove_list_of_text_properties): Skip all of the intervals in
624 the region between START and END that already have resp. don't
625 have the requested properties, not just the first one.
626 Add assertions that the loop afterwards always modifies the
627 properties. (Bug#13743)
628
629 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
630
631 * callint.c (Fcall_interactively): Use the right lexical environment
632 for `interactive' specs (bug#13811).
633 * eval.c (Feval): Accept a lexical environment.
634
635 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
636
637 Simplify data_start configuration (Bug#13783).
638 This is a followon simplification to the fix for Bug#13650.
639 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
640 (START_FILES): Remove. All uses removed.
641 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
642 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
643 (buildobj.h): Use it.
644 ($(ALLOBJS)): Depend on globals.h.
645 (temacs$(EXEEXT)): Use $(ALLOBJS).
646 * autodeps.mk (ALLOBJS): Move to Makefile.in.
647 * deps.mk (vm-limit.o):
648 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
649 Do not depend on mem-limits.h.
650 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
651 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
652 [__GNUC__ && !ORDINARY_LINK]: Remove.
653 * mem-limits.h, pre-crt0.c: Remove.
654 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
655 * unexcoff.c (etext): New decl.
656 (make_hdr): Use DATA_START instead of start_of_data.
657 * vm-limit.c: Move most of mem-limits.h's contents here.
658 (data_start): New decl. It's OK if this is approximate,
659 so simplify-away some unnecessary exactness.
660 (POINTER): Remove; all uses removed.
661 (data_space_start): Now char *, to avoid casts.
662 (exceeds_lisp_ptr): New function, replacing the old
663 EXCEEDS_LISP_PTR macro. All uses changed.
664 (check_memory_limits): Simplify and remove casts.
665 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
666 (memory_warnings): Use data_start instead of start_of_data.
667
668 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
669
670 * xdisp.c (set_message): Only check for debug-on-message if STRING
671 is a string. (Bug#13797)
672
673 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
674
675 Fix regression introduced by July 10 filelock.c patch.
676 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
677 2012-07-10 patch to this file. Reported by Eli Zaretskii in
678 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
679 and diagnosed by Andreas Schwab in
680 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
681
682 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
683
684 Assume C89 or better.
685 * ralloc.c (SIZE, POINTER, NIL):
686 * vm-limit.c (POINTER):
687 Remove, replacing all uses with C89 equivalents. These old
688 symbols were present only for porting to pre-C89 platforms.
689
690 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
691
692 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
693 This avoids warning messages reported as part of Bug#13546.
694
695 2013-02-21 Ken Brown <kbrown@cornell.edu>
696
697 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
698
699 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
700
701 * sheap.c (report_sheap_usage): Prefer message1_nolog.
702
703 * keyboard.c (Qcommand_execute): New var.
704 (command_loop_1, read_char): Use it.
705 (Fcommand_execute): Remove, replace by an Elisp implementation.
706 (syms_of_keyboard): Adjust accordingly.
707
708 2013-02-19 Daniel Colascione <dancol@dancol.org>
709
710 * sheap.c (report_sheap_usage): Use message, not message1, so
711 that we don't try to create a buffer while we're in the middle
712 of dumping Emacs. Explain why.
713
714 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
715
716 * search.c (find_newline): Return byte position in bytepos.
717 Adjust comment.
718 (find_next_newline_no_quit, find_before_next_newline):
719 Add bytepos argument.
720 * lisp.h (find_newline, find_next_newline_no_quit)
721 (find_before_next_newline): Adjust prototypes.
722 * bidi.c (bidi_find_paragraph_start):
723 * editfns.c (Fconstrain_to_field, Fline_end_position):
724 * indent.c (compute_motion, vmotion):
725 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
726 (get_visually_first_element, move_it_vertically_backward):
727 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
728
729 2013-02-19 Eli Zaretskii <eliz@gnu.org>
730
731 * w32proc.c (new_child): Avoid leaking handles if the subprocess
732 resources were not orderly released.
733
734 2013-02-17 Eli Zaretskii <eliz@gnu.org>
735
736 * xdisp.c (x_draw_vertical_border): For a window that is neither
737 the leftmost nor the rightmost, redraw both the left and the right
738 vertical borders. (Bug#13723)
739
740 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
741
742 * xml.c (init_libxml2_functions):
743 * sound.c (sound_warning):
744 * sheap.c (report_sheap_usage):
745 * process.c (wait_reading_process_output):
746 * msdos.c (XMenuActivate):
747 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
748 * keyboard.c (top_level_1):
749 * editfns.c (Fmessage, Fmessage_box):
750 * callint.c (Fcall_interactively):
751 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
752
753 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
754
755 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
756 * frame.c (syms_of_frame): ... to here.
757
758 2013-02-16 Eli Zaretskii <eliz@gnu.org>
759
760 * w32.c (sys_chown): Remove unused function.
761
762 * w32term.c <input_signal_count>: Declare 'volatile'
763 unconditionally. (Bug#9066)
764
765 * w32.c (set_errno): Reset h_errno and don't set it to any other
766 value. Set errno instead.
767 (check_errno): Reset h_errno.
768 (sys_socket, socket_to_fd, sys_bind, sys_connect)
769 (sys_gethostname, sys_getservbyname, sys_getpeername)
770 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
771 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
772 h_errno.
773 (sys_gethostbyname): Set h_errno only errors detected.
774
775 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
776
777 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
778
779 2013-02-15 Eli Zaretskii <eliz@gnu.org>
780
781 * keyboard.c (read_char): Fix calculation of auto-save time out
782 when auto-save-timeout is less than 4. (Bug#13720)
783
784 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
785 time. Improve diagnostics in DebPrint. (Bug#13546)
786
787 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
788 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
789 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
790 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
791 make sure errno is set to an appropriate value. (Bug#13546)
792 (socket_to_fd): Add assertion against indexing fd_info[] with a
793 value that is out of bounds.
794 (sys_accept): If fd is negative, do not set up the child_process
795 structure for reading.
796
797 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
798
799 * composite.c (fill_gstring_header): Remove useless prototype.
800 Break long line.
801 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
802 * print.c (PRINTDECLARE, print_object):
803 * search.c (compile_pattern, fast_looking_at, search_buffer):
804 (simple_search, boyer_moore, Freplace_match):
805 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
806 (get_overlay_arrow_glyph_row, display_mode_element):
807 (decode_mode_spec_coding, message3):
808 * xfaces.c (face_at_string_position): Use bool for booleans.
809 Adjust comments.
810
811 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
812
813 Fix AIX port (Bug#13650).
814 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
815 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
816 was #undeffed earlier, so it cannot be used as a macro here.
817 Use the constant and not the macro.
818
819 2013-02-15 Eli Zaretskii <eliz@gnu.org>
820
821 * w32proc.c (new_child): If no vacant slots are found in
822 child_procs[], make another pass looking for slots whose process
823 has exited or died. (Bug#13546)
824
825 * w32.c (sys_pipe): When failing due to file descriptors above
826 MAXDESC, set errno to EMFILE.
827 (_sys_read_ahead): Update cp->status when failing to read serial
828 communications input, so that the status doesn't stay at
829 STATUS_READ_IN_PROGRESS. (Bug#13546)
830
831 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
832
833 * gtkutil.c (tb_size_cb): New function.
834 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
835
836 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
837
838 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
839 an event.
840
841 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
842
843 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
844
845 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
846
847 * font.c (font_range): Add pos_byte argument. Adjust comment
848 and break long line.
849 * font.h (font_range): Adjust prototype.
850 * composite.c (autocmp_chars): Pass byte position to font_range.
851 Break long line. Remove useless prototype and format comment.
852
853 2013-02-13 Glenn Morris <rgm@gnu.org>
854
855 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
856
857 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
858
859 Improve AIX port some more (Bug#13650).
860 With this, it should be as good as it was in 23.3, though it's
861 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
862 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
863 * unexaix.c (start_of_text): Remove.
864 (_data, _text): Declare as char[], not int, as AIX manual suggests.
865 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
866 (orig_load_scnptr, orig_data_scnptr):
867 Now off_t, not long, since they are file offsets.
868 (make_hdr): Use _data, not start_of_data ().
869 This is the key part of the fix.
870 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
871 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
872
873 * pre-crt0.c (data_start): Initialize to 1.
874 This ports to compilers that optimize the external declaration
875 'int x = 0;' as if it were 'int x;' to shrink the executable.
876
877 Improve AIX port (Bug#13650).
878 This doesn't fix the bug, but it makes progress: Emacs builds now.
879 * unexaix.c: Include inttypes.h, stdarg.h.
880 (report_error, report_error_1): Mark as _Noreturn.
881 (report_error): Don't report the wrong errno.
882 (report_error_1): Now varargs. All callers changed.
883 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
884 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
885 (write_ptr): Use %p to print address rather than %lx and a cast
886 to unsigned long. Grow buffer a bit, to be safer.
887
888 2013-02-13 Eli Zaretskii <eliz@gnu.org>
889
890 * bidi.c (bidi_resolve_neutral): After finding the next
891 non-neutral character, accept NEUTRAL_ON type as well, because
892 directional control characters, such as LRE and RLE, have their
893 type converted to that by bidi_resolve_weak. This avoids aborts
894 when LRE/RLE follows a run of neutrals.
895 (bidi_move_to_visually_next): Assert that return value of
896 bidi_peek_at_next_level is non-negative. Negative values will
897 cause an infloop.
898
899 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
900
901 Minor getenv-related fixes.
902 * callproc.c (Fcall_process_region) [!DOS_NT]:
903 Avoid unnecessary duplicate call to getenv.
904 * callproc.c (init_callproc):
905 * dispnew.c (init_display):
906 * sysdep.c (sys_subshell):
907 Omit unnecessary cast of getenv or egetenv.
908
909 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
910
911 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
912 Update dependencies.
913
914 2013-02-12 Eli Zaretskii <eliz@gnu.org>
915
916 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
917 marker's position.
918 (display_line): Set w->region_showing to the value of
919 it->region_beg_charpos, not to -1. This fixes redisplay
920 optimization when cursor is moved up after M->. (Bug#13623)
921 (Bug#13626)
922 (try_scrolling): Scroll text up more if point is too close to ZV
923 and inside the scroll margin. This makes sure point is moved
924 outside the scroll margin in these cases.
925
926 * window.h (struct window): region_showing can no longer be
927 negative.
928
929 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
930
931 Tune by using memchr and memrchr.
932 * doc.c (Fsnarf_documentation):
933 * fileio.c (Fsubstitute_in_file_name):
934 * search.c (find_newline, scan_newline):
935 * xdisp.c (pos_visible_p, display_count_lines):
936 Use memchr and memrchr rather than scanning byte-by-byte.
937 * search.c (find_newline): Rename from scan_buffer.
938 Omit first arg TARGET, as it's always '\n'. All callers changed.
939
940 Clean up read_key_sequence a tiny bit more.
941 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
942 (read_key_sequence): Remove unused locals.
943
944 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
945
946 Clean up read_key_sequence a bit; reread active keymaps after first event.
947 * keyboard.c (read_char, read_char_x_menu_prompt)
948 (read_char_minibuf_menu_prompt):
949 Replace nmaps+maps with a single `map' arg.
950 (follow_key): Operate on a single map.
951 (active_maps): New function.
952 (test_undefined): Also return true for nil bindings.
953 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
954 a single (composed) keymap. Remember `first_event' to choose the right
955 set of active keymaps. Recompute the set of keymaps after receiving
956 the first event. Remove GOBBLE_FIRST_EVENT.
957 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
958 * keyboard.h (read_char): Update declaration.
959 * lread.c (read_filtered_event): Adjust call to read_char.
960
961 2013-02-11 Eli Zaretskii <eliz@gnu.org>
962
963 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
964 Don't use the limitation on backwards movement when lines are truncated
965 in the window. (Bug#13675)
966
967 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
968
969 * marker.c (set_marker_internal): If desired position is passed
970 as a marker, avoid call to buf_charpos_to_bytepos.
971 * window.c (Fset_window_point): Omit redundant type checking.
972 (Fset_window_start): Likewise. Format comment.
973 (window_scroll_pixel_based): Use set_marker_restricted_both
974 with character and byte positions obtained from an iterator.
975 (Fset_window_configuration): Use set_marker_restricted_both.
976 * xdisp.c (message_dolog): Likewise.
977
978 2013-02-10 Eli Zaretskii <eliz@gnu.org>
979
980 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
981 When text lines are longer than window's screen lines, don't move back
982 too far. This speeds up some redisplay operations. (Bug#13675)
983
984 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
985
986 * syntax.c (scan_sexps_forward): Fix byte position calculation
987 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
988
989 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
990
991 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
992 that was not needed.
993
994 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
995
996 Minor hashing refactoring.
997 * fns.c (SXHASH_REDUCE): Move to lisp.h.
998 (sxhash_float): Return EMACS_UINT, for consistency with the other
999 hash functions.
1000 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
1001 non-static inline function and therefore can't use static vars.
1002 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
1003 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
1004 with the other hash functions.
1005
1006 2013-02-09 Eli Zaretskii <eliz@gnu.org>
1007
1008 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
1009 XXXXXX part of the temporary file pattern is not downcased even
1010 when w32-downcase-file-names is non-nil. (Bug#13661)
1011
1012 * xdisp.c (decode_mode_spec): Remove handling of %t.
1013
1014 * msdos.c (careadlinkatcwd): Remove.
1015
1016 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
1017
1018 * lread.c (skip_dyn_bytes): New function (bug#12598).
1019 (read1): Use it. Use getc instead of READCHAR to read bytes.
1020 (load_each_byte): Remove. Update users.
1021
1022 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1023
1024 * search.c (scan_buffer): Calculate end byte position just once.
1025 (scan_newline): Do not recalculate start_byte.
1026 (search_command): Use eassert.
1027 * syntax.c (struct lisp_parse_state): New member location_byte.
1028 (scan_sexps_forward): Record from_byte and avoid redundant
1029 character to byte position calculation ...
1030 (Fparse_partial_sexp): ... here. Break too long line.
1031
1032 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
1033
1034 * lisp.h (make_uninit_vector): New function.
1035 * alloc.c (Fvector, Fmake_byte_code):
1036 * ccl.c (Fregister_ccl_program):
1037 * charset.c (Fdefine_charset_internal, define_charset_internal):
1038 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
1039 * composite.c (syms_of_composite):
1040 * font.c (Fquery_font, Ffont_info, syms_of_font):
1041 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
1042 * ftfont.c (ftfont_shape_by_flt):
1043 * indent.c (recompute_width_table):
1044 * nsselect.m (clean_local_selection_data):
1045 * syntax.c (init_syntax_once):
1046 * w32unsubscribe.c (uniscribe_shape):
1047 * window.c (Fcurrent_window_configuration):
1048 * xfaces.c (Fx_family_fonts):
1049 * xselect.c (selection_data_to_lisp_data): Use it.
1050
1051 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
1052
1053 * coding.c (Fdefine_coding_system_internal): Use AREF where
1054 argument is known to be a vector.
1055 * fns.c (Flocale_info): Likewise for ASET.
1056 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
1057 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
1058
1059 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
1060
1061 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
1062 height.
1063
1064 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
1065 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
1066 updateCollectionBehaviour.
1067
1068 * nsterm.m (NEW_STYLE_FS): Remove.
1069 (ns_last_use_native_fullscreen): New variable.
1070 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
1071 (x_set_window_size): Do not take title bar and tool bar into account
1072 if isFullscreen returns YES.
1073 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
1074 (check_native_fs): New function.
1075 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
1076 (ns_term_init): Remove NEW_STYLE_FS.
1077 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
1078 and tool bar if isFullscreen returns NO.
1079 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
1080 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
1081 with HAVE_NATIVE_FS.
1082 (window:willUseFullScreenPresentationOptions:): New method.
1083 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
1084 Hide toolbar if not enabled (Bug#13444).
1085 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
1086 Restore tool bar if enabled, hide it otherwise (Bug#13444).
1087 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
1088 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
1089 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
1090 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
1091 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
1092 (syms_of_nsterm): Add ns-use-native-fullscreen.
1093
1094 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
1095
1096 * fileio.c (Qchoose_write_coding_system): Now static.
1097
1098 2013-02-04 Eli Zaretskii <eliz@gnu.org>
1099
1100 * xdisp.c (window_buffer_changed): region_showing can be negative,
1101 which still means region is being displayed.
1102 (redisplay_internal): Resurrect code that forced redisplay of the
1103 whole window when showing region and the mark has changed.
1104 Record the new mark position to allow redisplay optimizations.
1105 (display_line): If it->region_beg_charpos is non-zero, set the
1106 window's region_showing member to -1. (Bug#13623) (Bug#13626)
1107
1108 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
1109 not bitfield of 1 bit.
1110
1111 2013-02-03 Daniel Colascione <dancol@dancol.org>
1112
1113 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
1114 daemon mode works on cygw32 when Emacs is installed and not just
1115 during development.
1116
1117 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
1118
1119 Avoid file time stamp bug on MS-Windows (Bug#13149).
1120 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
1121 as FAT32 doesn't update time stamps when truncating them.
1122 Also, check that a file time stamp is not a multiple of 100 ns;
1123 this should catch all instances of the problem on MS-Windows,
1124 as its native file system resolution is 100 ns or worse, and
1125 checking for a non-multiple of 100 ns should impose only a small
1126 overhead on systems with ns resolution.
1127
1128 2013-02-02 Eli Zaretskii <eliz@gnu.org>
1129
1130 Avoid encoding file names on MS-Windows when they need to be run
1131 through dostounix_filename.
1132 * w32.c (normalize_filename): Accept an additional argument
1133 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
1134 downcase it even if w32-downcase-file-names is non-nil.
1135 (dostounix_filename): Accept an additional argument MULTIBYTE and
1136 pass it to normalize_filename.
1137 (emacs_root_dir): Adjust.
1138
1139 * msdos.h (dostounix_filename): Adjust prototype.
1140
1141 * w32.h (dostounix_filename): Adjust prototype.
1142
1143 * msdos.c (dostounix_filename): Accept an additional argument and
1144 ignore it.
1145 (init_environment): Adjust callers of dostounix_filename.
1146
1147 * fileio.c (Ffile_name_directory, file_name_as_directory)
1148 (directory_file_name, Fexpand_file_name)
1149 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
1150 dostounix_filename.
1151 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
1152 non-nil.
1153 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
1154 variables, as egetenv is case-insensitive for DOS_NT.
1155
1156 * dired.c (file_name_completion): Don't call Fdirectory_file_name
1157 with an encoded file name.
1158
1159 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
1160 Adjust calls to dostounix_filename.
1161
1162 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
1163
1164 * unexw32.c (unexec): Adjust call to dostounix_filename.
1165
1166 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
1167
1168 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
1169 dostounix_filename.
1170
1171 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
1172 dostounix_filename.
1173
1174 * callproc.c (Fcall_process): Make sure program name in PATH and
1175 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
1176 is passed to exec/spawnve, which fails unless the file-name
1177 encoding is UTF-8.
1178
1179 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
1180 even if w32-quote-process-args is nil.
1181
1182 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1183
1184 Fix timestamp bug when write-region appends nothing (Bug#13149).
1185 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
1186 the file's time stamp doesn't change if Emacs happens to write nothing
1187 to the file, and on a buggy file system this could cause Emacs to
1188 incorrectly infer that the file system doesn't have the bug.
1189 Avoid this problem by inhibiting the inference in this case.
1190
1191 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
1192
1193 * window.h (struct window): Convert base_line_number, base_line_pos
1194 and column_number_displayed members from Lisp_Object to ptrdiff_t.
1195 Convert region_showing member from Lisp_Object to bitfield.
1196 Remove sequence_number member. Adjust comments.
1197 * window.c (sequence_number): Remove.
1198 (make_window): Initialize column_number_displayed.
1199 * print.c (print_object): Follow the printed representation of
1200 frames and print window pointer to distinguish between windows.
1201 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
1202 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1203 (wset_column_number_displayed, wset_region_showing): Remove.
1204 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
1205 (try_scrolling, try_cursor_movement, redisplay_window)
1206 (try_window_reusing_current_matrix, try_window_id, display_line)
1207 (display_mode_lines, decode_mode_spec): Adjust users.
1208 * .gdbinit (pwinx): Do not print sequence_number.
1209
1210 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1211
1212 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
1213 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
1214 * dired.c: Include <fcntl.h>.
1215 (open_directory): New function, which uses open and fdopendir
1216 rather than opendir. DOS_NT platforms still use opendir, though.
1217 (directory_files_internal, file_name_completion): Use it.
1218 (file_attributes): New function, with most of the old Ffile_attributes.
1219 (directory_files_internal, Ffile_attributes): Use it.
1220 (file_attributes, file_name_completion_stat): First arg is now fd,
1221 not dir name. All uses changed. Use fstatat rather than lstat +
1222 stat.
1223 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
1224 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
1225 (emacs_readlinkat): New function, with much of the old
1226 Ffile_symlink_p, but with an fd argument for speed.
1227 It uses readlinkat rather than careadlinkatcwd, so that it
1228 need not assume the working directory.
1229 (Ffile_symlink_p): Use it.
1230 * filelock.c (current_lock_owner): Use emacs_readlinkat
1231 rather than emacs_readlink.
1232 * lisp.h (emacs_readlinkat): New decl.
1233 (READLINK_BUFSIZE, emacs_readlink): Remove.
1234 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
1235 (emacs_norealloc_allocator, emacs_readlink): Remove.
1236 This stuff is moved to fileio.c.
1237 * w32.c (fstatat, readlinkat): New functions.
1238 (careadlinkat): Don't check that fd == AT_FDCWD.
1239 (careadlinkatcwd): Remove; no longer needed.
1240
1241 2013-01-31 Glenn Morris <rgm@gnu.org>
1242
1243 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
1244 (Fwrite_region): Update for new choose_write_coding_system args.
1245 Move the last piece of choose_write_coding_system here. (Bug#13522)
1246 (syms_of_fileio): Add choose-write-coding-system.
1247
1248 2013-01-30 Eli Zaretskii <eliz@gnu.org>
1249
1250 * w32.c (sys_open): Zero out the flags for the new file descriptor.
1251 (sys_close): Zero out the flags for the file descriptor before
1252 closing it. (Bug#13546)
1253
1254 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
1255 (logon_network_drive, stat_worker, symlink, chase_symlinks):
1256 Use CharNextExA and CharPrevExA to iterate over file names encoded in
1257 DBCS. (Bug#13553)
1258
1259 * w32.c (w32_get_long_filename, init_environment, readlink):
1260 Support file names encoded in DBCS codepages.
1261 (readlink): Use the current file-name-coding-system, not the ANSI
1262 codepage, to decode and handle targets of symlinks.
1263
1264 2013-01-28 Eli Zaretskii <eliz@gnu.org>
1265
1266 * w32.c (opendir): Now accepts a 'const char *'.
1267
1268 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
1269
1270 Remove obsolete redisplay code. See the discussion at
1271 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
1272 * dispnew.c (preemption_period, preemption_next_check): Remove.
1273 (Vredisplay_preemption_period): Likewise.
1274 (update_frame, update_single_window, update_window, update_frame_1):
1275 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
1276 used, following the 2012-06-22 change.
1277
1278 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1279
1280 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
1281
1282 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1283
1284 * font.c (num_fonts): Remove the leftover from old
1285 debugging code. Adjust comment style here and there.
1286 * insdel.c (insert_1): Remove.
1287 * lisp.h (insert_1): Remove prototype.
1288 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
1289
1290 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1291
1292 * w32.c (max_filename_mbslen): New function.
1293 (normalize_filename, readdir): Use it to detect locales where ANSI
1294 encoding of file names uses a double-byte character set (DBCS).
1295 If a DBCS encoding is used, advance by characters using
1296 CharNextExA, instead of incrementing a 'char *' pointer.
1297 Use _mbslwr instead of _strlwr. (Bug#13515)
1298
1299 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
1300 request of memory reservation to 1.7GB. (Bug#13065)
1301
1302 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
1303
1304 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
1305 at check_extra_latin label. (Bug#13505)
1306
1307 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1308
1309 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
1310 Avoid redundant calls to strlen.
1311
1312 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1313
1314 Drop async_visible and async_iconified fields of struct frame.
1315 This is possible because async input is gone; for details, see
1316 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
1317 * frame.h (struct frame): Remove async_visible and async_iconified
1318 members, convert garbaged to unsigned bitfield. Adjust comments.
1319 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
1320 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
1321 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
1322 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
1323 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
1324 * w32term.c: Ditto.
1325 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
1326 properly. Likewise for obscured.
1327 * xterm.c: Ditto.
1328 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
1329 properly.
1330 * nsterm.m: Ditto.
1331 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
1332
1333 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1334
1335 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
1336 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
1337
1338 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1339
1340 * xdisp.c (message2, message2_nolog): Remove functions.
1341 (message3, message3_nolog): Extract nbytes and multibyteness directly
1342 from the string. Change all callers.
1343 (message3_nolog): Don't set message_enable_multibyte since set_message
1344 will reset it anyway.
1345 (message1, message1_nolog): Use message3.
1346 (vmessage): Use a stack allocated buffer rather than f->message_buf.
1347 (with_echo_area_buffer): Remove last two arguments. Update all callers.
1348 (set_message): Drop all but the second arg, which has to be a string.
1349 (set_message_1): Simplify now that we know that a1 is NULL and the
1350 second arg is a string.
1351 * frame.h (struct frame): Remove `message_buf' field.
1352 Use glyphs_initialized_p instead.
1353 (FRAME_MESSAGE_BUF): Remove macro.
1354 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
1355 * lisp.h (message2, message2_nolog): Remove declarations.
1356 (message3, message3_nolog): Update declarations.
1357 * keyboard.c (read_char_minibuf_menu_text)
1358 (read_char_minibuf_menu_width): Remove vars.
1359 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
1360 to correctly handle multibyte strings.
1361 * frame.c (delete_frame): Don't free message_buf any more.
1362 * editfns.c (message_text, message_length): Remove vars.
1363 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
1364 * fileio.c (auto_save_error): Use message3 instead of message2.
1365 * dispnew.c (adjust_frame_message_buffer): Remove function.
1366
1367 2013-01-23 Eli Zaretskii <eliz@gnu.org>
1368
1369 * w32term.c (w32fullscreen_hook): Account correctly for the screen
1370 real estate used for the tool bar and the menu bar.
1371
1372 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1373
1374 * insdel.c (prepare_to_modify_buffer): Force redisplay if
1375 hidden buffer is prepared to modification (Bug#13164).
1376
1377 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1378
1379 * window.h (struct window): Change window_end_valid member from
1380 Lisp_Object to a bitfield. Adjust comments.
1381 (wset_window_end_valid): Remove.
1382 * window.c (adjust_window_count): Clear window_end_valid.
1383 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
1384 (Fwindow_line_height, set_window_buffer, Frecenter)
1385 (Fsplit_window_internal, Fdelete_other_windows_internal)
1386 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
1387 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
1388 * xdisp.c (check_window_end, reconsider_clip_changes)
1389 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
1390 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
1391 (find_first_unchanged_at_end_row, try_window_id): Likewise.
1392
1393 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1394
1395 * xdisp.c (mark_window_display_accurate): Simplify the loop
1396 assuming that the only one of vchild, hchild or buffer window
1397 slots is non-nil. Call mark_window_display_accurate_1 for
1398 the leaf windows only.
1399 (mark_window_display_accurate_1): Always assume leaf window.
1400 Adjust comment.
1401
1402 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1403
1404 * emacs.c (Qkill_emacs_hook): Now static.
1405
1406 * fileio.c (Finsert_file_contents): Simplify.
1407 Remove unnecessary assignments and tests.
1408
1409 2013-01-21 Eli Zaretskii <eliz@gnu.org>
1410
1411 * w32.c (acl_set_file): Don't test for errors unless
1412 set_file_security returns FALSE. Avoids spurious errors when
1413 saving files.
1414
1415 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1416
1417 * fileio.c (Finsert_file_contents): Revert code introduced at
1418 2013-01-18 in favor of the simpler and generally better fix.
1419 Save stack space by removing 'buffer' and reusing 'read_buf'
1420 where appropriate.
1421
1422 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1423
1424 * lisp.h (eabs): Define unconditionally (Bug#13419).
1425 The old "#if !defined (eabs)" was an unnecessary revenant of back
1426 when this macro was called "abs". Document 'eabs' better.
1427
1428 2013-01-19 Glenn Morris <rgm@gnu.org>
1429
1430 * fns.c (Frandom): Doc fix.
1431
1432 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1433
1434 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1435 segfault when there are lots of overlays.
1436
1437 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1438 when there are lots of overlays.
1439 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1440 for the details and a way to reproduce.
1441
1442 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1443
1444 * fileio.c: Use O_APPEND to append.
1445 This corresponds better to the natural interpretation of "append",
1446 and avoids the need to open the output file twice, or to invoke
1447 lseek when APPEND is neither nil nor a number.
1448 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1449 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1450 file possibly twice, and lseeking to its end; this avoids the
1451 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1452 at the same time: the combination is never needed and apparently
1453 it doesn't work with DOS_NT.
1454
1455 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1456 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1457
1458 Allow floating-point file offsets.
1459 Problem reported by Vitalie Spinu in
1460 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1461 * fileio.c (emacs_lseek): Remove.
1462 (file_offset): New function.
1463 (Finsert_file_contents, Fwrite_region): Use it.
1464
1465 2013-01-19 Chong Yidong <cyd@gnu.org>
1466
1467 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1468 aborting on Fsignal (Bug#13289).
1469
1470 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1471
1472 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1473 set_file_security as failure due to insufficient privileges.
1474 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1475 (fstat): Return owner and group like 'stat' and 'lstat' do.
1476
1477 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1478
1479 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1480 The bug was observed on Ubuntu operating inside a virtual machine,
1481 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1482 The workaround introduces a race condition on non-buggy hosts,
1483 but it's an unlikely race and anyway there's a nearly identical
1484 nearby race that can't be fixed.
1485 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1486 New static vars.
1487 (Fwrite_region): Test for file system time stamp bug.
1488 (init_fileio): New function.
1489 * lisp.h (init_fileio): Declare it.
1490 * emacs.c (main): Call it.
1491
1492 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1493 and make it more consistent with other stat-failure diagnostics.
1494
1495 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1496
1497 Fix crash when inserting data from non-regular files.
1498 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1499 for the error description produced by valgrind.
1500 * fileio.c (read_non_regular): Rename to read_contents.
1501 Free Lisp_Save_Value object used to pass parameters.
1502 (read_non_regular_quit): Rename to read_contents_quit.
1503 (Finsert_file_contents): Redesign internal file reading loop to adjust
1504 gap and end positions after each read and so help make_gap to work
1505 properly. Do not signal an I/O error too early and so do not leave
1506 not yet decoded characters in a buffer, which was the reason of
1507 redisplay crash. Use list2 to build return value. Adjust comments.
1508
1509 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1510
1511 Close a race when statting and reading files (Bug#13149).
1512 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
1513 This avoids a race if the file is renamed between stat and open.
1514 This race is not the problem originally noted in Bug#13149;
1515 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
1516
1517 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1518
1519 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
1520 objects, related functions and macros.
1521 (make_save_value): Adjust prototype.
1522 (make_save_pointer): New prototype.
1523 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
1524 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
1525 * alloc.c (format_save_value): Rename to make_save_value.
1526 (make_save_pointer): New function.
1527 (record_xmalloc): Use make_save_pointer.
1528 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
1529 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
1530 Change users of make_save_value to make_save_pointer.
1531 Likewise for format_save_value and make_save_value.
1532
1533 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1534
1535 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
1536 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
1537 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
1538 debugging stubs.
1539
1540 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1541
1542 * alloc.c (free_save_value): Now static.
1543
1544 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1545
1546 * keymap.c (map_keymap_internal): Use format_save_value.
1547 (map_keymap_char_table_item): Adjust accordingly.
1548 * fileio.c (non_regular_fd, non_regular_inserted)
1549 (non_regular_nbytes): Remove.
1550 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1551 Use format_save_value to pass parameters to read_non_regular.
1552 (read_non_regular): Use XSAVE_ macros to extract parameters.
1553 Adjust comment.
1554 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
1555 format_save_value.
1556 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
1557
1558 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1559
1560 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
1561 extraction from any Lisp_Save_Value slot. Add type checking.
1562 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
1563 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
1564 * xselect.c: All users changed.
1565
1566 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1567
1568 Some convenient bits to deal with Lisp_Save_Values.
1569 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
1570 (allocate_misc): Remove prototype.
1571 (format_save_value): New prototype.
1572 * alloc.c (allocate_misc): Revert back to static.
1573 (format_save_value): New function to build Lisp_Save_Value
1574 object with the specified internal structure.
1575 (make_save_value): Reimplement using format_save_value.
1576 * editfns.c (save_excursion_save): Use format_save_value.
1577 (save_excursion_restore): Use XSAVE_OBJECT.
1578
1579 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
1580
1581 Avoid needless casts with XSAVE_POINTER.
1582 * alloc.c (mark_object) [GC_MARK_STACK]:
1583 * dired.c (directory_files_internal_unwind):
1584 * fileio.c (do_auto_save_unwind):
1585 * gtkutil.c (pop_down_dialog):
1586 * keymap.c (map_keymap_char_table_item):
1587 * lread.c (load_unwind):
1588 * nsmenu.m (pop_down_menu):
1589 * print.c (print_object) [GC_MARK_STACK]:
1590 * xfns.c (clean_up_file_dialog):
1591 * xmenu.c (cleanup_widget_value_tree):
1592 Omit casts between XSAVE_POINTER and a pointer type.
1593
1594 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1595
1596 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
1597 * eval.c (eval_sub): Protect `form' from being GCed before its
1598 car and cdr becomes protected with the backtrace entry.
1599
1600 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1601
1602 Make Lisp_Save_Value more versatile storage for up to four objects.
1603 * lisp.h (toplevel): Enumeration to describe types of saved objects.
1604 (struct Lisp_Save_Value): New layout. Adjust comments.
1605 (XSAVE_POINTER): New macro.
1606 (XSAVE_INTEGER): Likewise.
1607 (allocate_misc): Add prototype.
1608 (free_misc): Likewise.
1609 * alloc.c (allocate_misc): Now global.
1610 (free_misc): Likewise. Adjust comment.
1611 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
1612 (free_save_value): Likewise.
1613 (mark_object): Likewise.
1614 * editfns.c (save_excursion_save): Pack everything within
1615 Lisp_Save_Value and so avoid xmalloc.
1616 (save_excursion_restore): Adjust to match new layout. Use free_misc
1617 because we do not allocate extra memory any more. Add eassert.
1618 * print.c (print_object): New code to print Lisp_Save_Value. Do not
1619 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
1620 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
1621 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
1622 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
1623
1624 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1625
1626 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
1627 (nsfont_draw): Remove disabling of LCD smoothing.
1628 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
1629 Bug#11484 with LCD smoothing on.
1630
1631 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
1632
1633 Fix SIGDANGER handlers, for AIX (Bug#13408).
1634 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
1635 Move handlers here from emacs.c; they were out of place.
1636
1637 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1638
1639 * xterm.c (syms_of_xterm): Adjust documentation for
1640 scroll-bar-adjust-thumb-portion.
1641
1642 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
1643
1644 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
1645 determine whether scroll bar thumb size should be adjusted or
1646 not. Use variable for MOTIF.
1647
1648 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
1649 GTK.
1650
1651 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1652
1653 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1654 event is generated.
1655 (doCommandBySelector:): Set processingCompose to NO.
1656
1657 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
1658 Remove check for fkeys count > zero, block/unblock fixes the real bug.
1659 (nsfont_list_family): Add block/unblock_input calls.
1660 (nsfont_open): Move block_input earlier. Add unblock_input before early
1661 return.
1662 (nsfont_draw): Add block/unblock_input calls.
1663
1664 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
1665
1666 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
1667 for old_charpos and old_bytepos.
1668
1669 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1670
1671 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
1672 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
1673 Clear tzvalbuf_in_environ if this workaround is in effect.
1674 Problem and fix reported by Kazuhiro Ito.
1675
1676 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1677
1678 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1679 Fix ambiguous doc string cross-reference(s).
1680
1681 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
1682 doc string cross-reference(s).
1683
1684 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
1685 string cross-reference(s).
1686
1687 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1688
1689 Avoid unnecessary byte position calculation for the gap movement.
1690 Since all users of move_gap do CHAR_TO_BYTE for other purposes
1691 anyway, all of them should use move_gap_both instead.
1692 * lisp.h (move_gap): Remove prototype.
1693 * insdel.c (move_gap): Remove.
1694 (move_gap_both): Add eassert.
1695 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
1696 * xml.c (parse_region): Likewise.
1697
1698 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1699
1700 emacsclient -t should not suspend Emacs server (Bug#13387)
1701 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
1702 New functions.
1703 * term.c (init_tty): Use them instead of rolling our own code.
1704 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
1705 switches from 'signal' to 'pthread_sigmask', which is safer in
1706 multithreaded applications.
1707 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
1708 which has already arranged for that.
1709 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
1710 This is the main part of the bug fix.
1711
1712 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1713
1714 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1715 x_last_font_name (Bug#13403).
1716
1717 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1718
1719 Omit buffer_slot_type_mismatch and use generic predicates to enforce
1720 the type of per-buffer values where appropriate.
1721 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
1722 predicate, which is how it's really used now. Adjust comment.
1723 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
1724 * buffer.c (buffer_slot_type_mismatch): Remove.
1725 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
1726 predicate. Adjust comment.
1727 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
1728 fill-column, left-margin, tab-width, buffer-saved-size,
1729 left-margin-width, right-margin-width, left-fringe-width,
1730 right-fringe-width, scroll-bar-width and buffer-display-count.
1731 Use Qstringp for default-directory, buffer-file-name,
1732 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
1733 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
1734 line-spacing.
1735 * data.c (store_symval_forwarding): Adjust to call the predicate.
1736
1737 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
1738
1739 * w32.c (get_name_and_id, acl_set_file):
1740 * w32term.c (w32fullscreen_hook): Remove unused local variables.
1741
1742 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
1743
1744 * lisp.h (make_gap_1): New prototype.
1745 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
1746 gap size values.
1747 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
1748 naming convention.
1749 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
1750 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
1751 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
1752 (make_gap_1): New function to adjust the gap of any buffer.
1753 * coding.c (coding_alloc_by_making_gap): Use it.
1754 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
1755 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
1756
1757 2013-01-08 Juri Linkov <juri@jurta.org>
1758
1759 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
1760 of (supports :underline (:style wave)). (Bug#13000)
1761
1762 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1763
1764 * undo.c (Fprimitive_undo): Move to simple.el.
1765 (syms_of_undo): Remove declarations for Sprimitive_undo.
1766
1767 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1768
1769 * keyboard.c (echo_add_key): Rename from echo_add_char.
1770
1771 2013-01-06 Chong Yidong <cyd@gnu.org>
1772
1773 * keyboard.c (echo_add_char): New function, factored out from
1774 echo_char. Don't add a space if the previous echo string was
1775 empty (Bug#13255).
1776 (echo_char): Use it.
1777 (read_key_sequence): When echoing mock input, ensure that the
1778 trailing dash is properly added.
1779
1780 2013-01-05 Eli Zaretskii <eliz@gnu.org>
1781
1782 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
1783 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
1784 digits for buffer positions, before misalignment starts.
1785 Display "0" for integer "object" field.
1786 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1787 Display the newline glyph more unambiguously.
1788
1789 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1790
1791 * nsterm.m (ns_draw_underwave):
1792 * w32term.c (w32_draw_underwave):
1793 * xterm.c (x_draw_underwave): Make underwave look more triangular
1794 and also degrade gracefully for small fonts. (Bug#13000)
1795
1796 * nsterm.m (ns_draw_text_decoration):
1797 * w32term.c (x_draw_glyph_string):
1798 * xterm.c (x_draw_glyph_string): Don't use previous underline
1799 thickness and position if previous underline type is underwave.
1800
1801 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1802
1803 * fileio.c (Ffile_acl): Undocument return format.
1804
1805 2013-01-02 Glenn Morris <rgm@gnu.org>
1806
1807 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1808
1809 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1810
1811 Simplify via eabs.
1812 * dired.c (file_name_completion):
1813 * doc.c (get_doc_string):
1814 * floatfns.c (round2):
1815 * font.c (font_score, font_delete_unmatched):
1816 * fringe.c (compute_fringe_widths):
1817 * lread.c (read_list):
1818 * minibuf.c (Ftry_completion):
1819 * term.c (tty_ins_del_lines):
1820 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1821 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
1822
1823 2012-12-31 Eli Zaretskii <eliz@gnu.org>
1824
1825 * w32.c (unsetenv): Set up the string passed to _putenv
1826 correctly.
1827 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
1828 for the bug this caused.
1829
1830 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1831
1832 * coding.c (Qmac): Now static.
1833
1834 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1835
1836 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
1837 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
1838 handlebox_widget. Set toolbar_in_hbox to false/true, set
1839 toolbar_is_packed to true.
1840 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
1841 (update_frame_tool_bar): Check toolbar_is_packed for packing.
1842 Show all on TOOLBAR_TOP_WIDGET.
1843 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
1844 by TOOLBAR_TOP_WIDGET.
1845 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
1846 Check toolbar_is_packed.
1847 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
1848 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1849 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
1850 false.
1851 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1852 (xg_update_menubar): Update title only if
1853 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1854 (xg_update_submenu): Skip tearoff only if
1855 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1856 (xg_initialize): Initialize xg_detached_menus only if
1857 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1858
1859 * xterm.h (struct x_output): Surround handlebox_widget with
1860 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
1861 toolbar_in_hbox is bool.
1862
1863 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
1864
1865 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
1866 (LIBS_GNUSTEP): Define.
1867 (LIBES): Add $(LIBS_GNUSTEP).
1868 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
1869
1870 2012-12-30 Eli Zaretskii <eliz@gnu.org>
1871
1872 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
1873 continuation glyph on a TTY with an indication of an empty line.
1874 (Bug#13277)
1875
1876 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1877
1878 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
1879 file's SELinux context or ACLs successfully set, nil otherwise.
1880 (Bug#13298)
1881 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
1882
1883 * w32proc.c (reader_thread): Avoid passing NULL handles to
1884 SetEvent and WaitForSingleObject.
1885
1886 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
1887
1888 Port EXTERNALLY_VISIBLE to Clang 3.2.
1889 * conf_post.h (__has_attribute): New macro.
1890 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
1891
1892 2012-12-27 Glenn Morris <rgm@gnu.org>
1893
1894 * cygw32.c (Fcygwin_convert_file_name_to_windows)
1895 (Fcygwin_convert_file_name_from_windows): Doc fixes.
1896
1897 2012-12-27 Eli Zaretskii <eliz@gnu.org>
1898
1899 * fileio.c (file_name_as_directory, directory_file_name):
1900 Accept an additional argument MULTIBYTE to indicate whether the input C
1901 came from a multibyte or a unibyte Lisp string; all callers
1902 adjusted. Don't assume the input string is always multibyte.
1903 (Bug#13262)
1904 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
1905 don't ENCODE_FILE them, and return a unibyte string if the input
1906 was unibyte.
1907 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
1908 don't assume the input strings will always be multibyte. If the
1909 input strings are multibyte, decode strings obtained from C
1910 library functions.
1911
1912 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1913
1914 * lisp.h (toplevel): Add two notices to the comment about
1915 defining a new Lisp data type.
1916 * print.c (print_object): If Lisp_Save_Value object's pointer
1917 is the address of a memory area containing Lisp_Objects, try
1918 to print them.
1919 * alloc.c (valid_lisp_object_p): Adjust comment.
1920
1921 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1922
1923 * keyboard.c (record_asynch_buffer_change): Initialize an event
1924 only if it's really needed.
1925 * frame.h (enum output_method): Remove output_mac member since
1926 it's a leftover from the deleted code.
1927 * frame.c (Fframep): Adjust user here ...
1928 * terminal.c (Fterminal_live_p): ... and here.
1929 * coding.c (Qmac): Now here because it's only used to denote
1930 end-of-line encoding type.
1931 (syms_of_coding): DEFSYM it.
1932 * frame.h (Qmac): Remove duplicated declaration.
1933
1934 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1935
1936 * window.c (select_window_1): Now static, since it's used only here.
1937
1938 2012-12-25 Eli Zaretskii <eliz@gnu.org>
1939
1940 * window.c (window_body_cols): Subtract display margins from the
1941 window body width on TTYs as well. See
1942 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
1943 for the original report.
1944
1945 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
1946
1947 * xdisp.c (redisplay_window): Remove inner local variable
1948 because the outer shadowed one has the same meaning.
1949 * xterm.h (struct x_output): Remove toolbar_detached member since it's
1950 set but never used.
1951 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1952 (xg_create_tool_bar): Adjust users.
1953
1954 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
1955
1956 * buffer.h (BUF_COMPACT): New macro to follow the common style.
1957 * buffer.c (Fget_buffer_create): Use it to set compact field of
1958 struct buffer_text to avoid accessing an uninitialized value
1959 when compact_buffer is called for the first time.
1960 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
1961 (Fset_buffer_modified_p): Use buffer_window_count to check
1962 whether the buffer is displayed in some window.
1963 * xdisp.c (message_dolog): Likewise.
1964
1965 2012-12-23 Eli Zaretskii <eliz@gnu.org>
1966
1967 * w32.c (acl_set_file): If setting the file security descriptor
1968 fails, and the new DACL is identical to the existing one, silently
1969 return success. This fixes problems for users backing up their
1970 own files without having the necessary privileges for setting
1971 security descriptors.
1972
1973 * w32proc.c (reader_thread): Do not index fd_info[] with negative
1974 values.
1975 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
1976 after WaitForSingleObject returns normally. This expedites reader
1977 thread shutdown when delete_child triggers it.
1978 (reap_subprocess): More accurate commentary for why we call
1979 delete_child only when cp->fd is negative.
1980
1981 * w32.c (sys_close): Do not call delete_child on a subprocess
1982 whose handle is not yet closed. Instead, set its file descriptor
1983 to a negative value, so that reap_subprocess will call
1984 delete_child on that subprocess when its SIGCHLD arrives.
1985 This avoids closing handles used for communications between sys_select
1986 and reader_thread, which doesn't give sys_select a chance to
1987 notice that the process exited and invoke the SIGCHLD handler for
1988 it.
1989
1990 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
1991
1992 * nsfns.m (Fns_do_applescript): Run event loop until script has
1993 been executed (Bug#12969).
1994 (ns_run_ascript): Chech as_script for nil, set to nil after
1995 executing script.
1996
1997 2012-12-22 Martin Rudalics <rudalics@gmx.at>
1998
1999 * window.c (Fselect_window): Reword doc-string (Bug#13248).
2000
2001 2012-12-22 Eli Zaretskii <eliz@gnu.org>
2002
2003 * w32term.c (w32fullscreen_hook): New function.
2004 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
2005
2006 2012-12-21 Eli Zaretskii <eliz@gnu.org>
2007
2008 * fileio.c (Finsert_file_contents): Doc fix.
2009
2010 * w32proc.c (new_child, delete_child, find_child_pid): For a
2011 subprocess, consider its slot being in use as long as its process
2012 handle (procinfo.hProcess) is not NULL. This avoids reusing the
2013 slot when a new process is started immediately after killing
2014 another one, without waiting enough time for the first process to
2015 be reaped and resources allocated for it be orderly freed.
2016 (Bug#13086)
2017 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2018
2019 2012-12-21 Chong Yidong <cyd@gnu.org>
2020
2021 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
2022
2023 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
2024
2025 2012-12-21 Eli Zaretskii <eliz@gnu.org>
2026
2027 * w32.c (get_name_and_id): Always pass NULL as the first argument
2028 of lookup_account_sid. Avoids crashes with UNC file names that
2029 refer to DFS domains, not to specific machine names. (Bug#12621)
2030 Remove now unused argument FNAME; all callers changed.
2031 (get_file_owner_and_group): Remove now unused argument FNAME; all
2032 callers changed.
2033
2034 2012-12-21 Chong Yidong <cyd@gnu.org>
2035
2036 * editfns.c (Finsert_char): Since read-char-by-name now signals an
2037 error for invalid chars, don't check for a nil return value.
2038
2039 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2040
2041 Avoid calls to CHAR_TO_BYTE if byte position is known.
2042 * editfns.c (make_buffer_string_both): Use move_gap_both.
2043 (Fbuffer_string): Use make_buffer_string_both.
2044 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
2045 Adjust comment.
2046 (buf_bytepos_to_charpos): Likewise.
2047 (charpos_to_bytepos): Remove.
2048 * fileio.c (Finsert_file_contents): Use move_gap_both.
2049 * search.c (Freplace_match): Likewise.
2050 * process.c (process_send_region): Likewise. Use convenient
2051 names for byte positions.
2052 * lisp.h (charpos_to_bytepos): Remove prototype.
2053 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
2054 * insdel.c (move_gap): Likewise.
2055
2056 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
2057
2058 * xdisp.c (redisplay_internal): Remove now-unused local.
2059
2060 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
2061
2062 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
2063 (redisplay_internal): Don't bother selecting the frame to get the
2064 proper value of frame-local variables (bug#13225).
2065
2066 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
2067
2068 * textprop.c (set_text_properties_1): Do not allow NULL interval.
2069 Rename 4th argument since it may be buffer or string. Adjust comment.
2070 * intervals.c (graft_intervals_info_buffer): Find an interval here.
2071
2072 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
2073
2074 * coding.c (Fdetect_coding_region): Do not check start and end with
2075 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
2076 (code_convert_region): Likewise.
2077
2078 2012-12-18 Eli Zaretskii <eliz@gnu.org>
2079
2080 * w32.c (acl_get_file, acl_set_file): Run the file name through
2081 map_w32_filename, and resolve any symlinks in the file name, like
2082 Posix platforms do.
2083 (acl_set_file): Call revert_to_self, if any privileges were
2084 enabled.
2085
2086 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
2087
2088 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
2089 ($(BLD)/w32.$(O)): Update dependencies.
2090
2091 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
2092
2093 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
2094 propagate redisplay's scrolling (if any) to the right window.
2095 (redisplay_internal): Use ensure_selected_frame.
2096 (display_mode_lines): Complete last fix.
2097 * window.c (select_window_1): New func, extracted from select_window.
2098 (select_window): Use it.
2099 * window.h (select_window_1): Declare.
2100
2101 2012-12-17 Eli Zaretskii <eliz@gnu.org>
2102
2103 Emulate Posix ACL APIs on MS-Windows.
2104 * w32.c: Include sddl.h and sys/acl.h.
2105 (SDDL_REVISION_1): Define if not already defined.
2106 (g_b_init_get_security_descriptor_dacl)
2107 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
2108 (g_b_init_is_valid_security_descriptor)
2109 (g_b_init_set_file_security): New static flags.
2110 (globals_of_w32): Initialize them to zero.
2111 (SetFileSecurity_Name): New string constant.
2112 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
2113 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
2114 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
2115 (IsValidSecurityDescriptor_Proc): New typedefs.
2116 (get_file_security, get_security_descriptor_owner)
2117 (get_security_descriptor_group): Set errno to ENOTSUP.
2118 (set_file_security, get_security_descriptor_dacl)
2119 (is_valid_security_descriptor, convert_sd_to_sddl)
2120 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
2121 (acl_free, acl_get_file, acl_set_file): New functions.
2122
2123 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
2124
2125 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
2126
2127 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
2128 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
2129 for some of that bug's symptoms can now cause Emacs to abort.
2130 Remove the workaround.
2131 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
2132 The bug that caused SIGCHLD to get lost has been fixed, and the
2133 workaround for it can now cause Emacs to abort.
2134
2135 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
2136
2137 * sysdep.c (emacs_abort): Bump backtrace size to 40.
2138 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
2139 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
2140
2141 2012-12-16 Romain Francoise <romain@orebokech.com>
2142
2143 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
2144 (Fcopy_file): Change last arg to `preserve_extended_attributes'
2145 and copy ACL entries of file in addition to SELinux context if set.
2146 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
2147
2148 * Makefile.in (LIBACL_LIBS): New macro.
2149 (LIBES): Use it.
2150
2151 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
2152
2153 * fileio.c (internal_delete_file): Use bool for boolean.
2154
2155 2012-12-15 Eli Zaretskii <eliz@gnu.org>
2156
2157 Fix bug #13079 on MS-Windows with temp files not being deleted.
2158 * w32.h (_child_process): New members input_file and
2159 pending_deletion.
2160 (register_child): First argument is now pid_t.
2161 (record_infile, record_pending_deletion): New prototypes.
2162
2163 * w32proc.c (new_child): Initialize input_file and
2164 pending_deletion members of the child.
2165 (delete_child): Delete the child's temporary input file, if any,
2166 that is pending deletion.
2167 (register_child): First argument is now pid_t.
2168 (record_infile, record_pending_deletion): New functions.
2169 (reap_subprocess): Fix a typo in DebPrint string.
2170 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
2171
2172 * fileio.c (internal_delete_file): Return an int again: non-zero
2173 if delete-file succeeds, zero otherwise.
2174
2175 * lisp.h (internal_delete_file): Adjust prototype.
2176
2177 * callproc.c (Fcall_process): Don't overwrite infile with result
2178 of DECODE_FILE.
2179 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
2180 asynchronous subprocess, record the name of the input file name,
2181 if any.
2182 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
2183 delete the file, record it as pending deletion when the subprocess
2184 exits.
2185
2186 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2187
2188 * editfns.c [HAVE_PWD_H]: Include grp.h.
2189
2190 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
2191
2192 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2193
2194 Fix permissions bugs with setgid directories etc. (Bug#13125)
2195 * dired.c (Ffile_attributes): Return t as the 9th attribute,
2196 to mark it as a placeholder. The old value was often wrong.
2197 The only user of this attribute has been changed to use
2198 file-ownership-preserved-p instead, with its new group arg.
2199 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
2200
2201 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2202
2203 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
2204 Keep selected_window and selected_frame in sync.
2205
2206 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2207
2208 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
2209 try to get accurate owner and group information from NT file
2210 security APIs. This is to make most callers of 'stat' and
2211 'lstat', which don't need that information, much faster.
2212
2213 * dired.c (Ffile_attributes) [WINDOWSNT]:
2214 Set w32_stat_get_owner_group to a non-zero value, to request accurate
2215 owner and group information from 'lstat'.
2216
2217 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2218
2219 * fileio.c (Finsert_file_contents): Don't put tail into head area,
2220 as that confuses set-auto-coding, so insist on the head-read
2221 returning the full 1024 bytes. Let lseek compute the tail offset;
2222 less work for us. Do not ignore I/O errors when reading the tail.
2223
2224 * xdisp.c: Minor style fixes.
2225 (init_iterator): Hoist assignment out of if-expression.
2226 (markpos_of_region): Callers now test for sign, not for -1.
2227
2228 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
2229
2230 Minor redisplay optimization when the region length is zero.
2231 * xdisp.c (markpos_of_region): New function.
2232 (init_iterator): Do not highlight the region of zero length.
2233 (redisplay_window): Check whether the region is of non-zero length.
2234 (try_cursor_movement): Allow if the region length is zero.
2235 (try_window_reusing_current_matrix, try_window_id): Likewise.
2236
2237 2012-12-13 Eli Zaretskii <eliz@gnu.org>
2238
2239 * search.c (search_buffer): Check the inverse translations of each
2240 character in pattern when the buffer being searched is unibyte.
2241 (Bug#13084)
2242
2243 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2244
2245 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2246 files, fixing a regression from 24.2.
2247 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
2248
2249 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2250
2251 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
2252 fstat shouldn't fail, and if it does fail copy-file should not proceed.
2253 Remove unnecessary S_ISLNK test, as (contra the comments) this
2254 function can't copy symlinks. Improve quality of error message
2255 when attempting to copy files that are neither regular files nor
2256 directories.
2257
2258 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
2259
2260 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
2261 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
2262 * window.c (Frecenter):
2263 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
2264 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
2265
2266 2012-12-12 Daniel Colascione <dancol@dancol.org>
2267
2268 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
2269 the dumped Emacs is not a sparse file, greatly improving Cygwin
2270 "make bootstrap" performance.
2271
2272 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
2273
2274 * inotify.c (inotify_callback): Generate an Emacs event for every
2275 incoming inotify event.
2276
2277 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2278
2279 * xdisp.c (handle_face_prop): Fix logic of computing
2280 it->start_of_box_run_p.
2281 (append_space_for_newline): If the glyph row is R2L, reset the
2282 iterator's end_of_box_run_p flag before prepending the space glyph.
2283 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
2284 iterator's start_of_box_run_p flag before prepending the stretch.
2285 (append_glyph, produce_image_glyph, append_composite_glyph)
2286 (append_stretch_glyph, append_glyphless_glyph): Reverse the
2287 left_box_line_p and right_box_line_p flags of the glyph for R2L
2288 glyph rows. (Bug#13011)
2289
2290 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2291
2292 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
2293 if changed buffer is not shown in a window.
2294 * insdel.c (prepare_to_modify_buffer): Likewise.
2295 * window.c (replace_buffer_in_windows_safely): Do nothing
2296 if buffer is not shown in a window.
2297 (Fforce_window_update): Likewise if string or buffer argument
2298 is passed.
2299
2300 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2301
2302 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
2303 encoded_file_name, which is what it is.
2304
2305 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2306
2307 Consistently use marker_position and marker_byte_position.
2308 * fringe.c (Ffringe_bitmaps_at_pos):
2309 * indent.c (Fvertical_motion):
2310 * insdel.c (prepare_to_modify_buffer):
2311 * keyboard.c (make_lispy_position):
2312 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
2313 (window_scroll_pixel_based, displayed_window_lines)
2314 (Fset_window_configuration):
2315 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
2316 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
2317 Replace direct access to marker fields with calls
2318 to marker_position and/or marker_byte_position.
2319
2320 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
2321
2322 * makefile.w32-in (SIG2STR_H): New macro.
2323 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
2324 ($(BLD)/w32notify.$(O)): Update dependencies.
2325
2326 2012-12-10 Daniel Colascione <dancol@dancol.org>
2327
2328 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
2329 Windows file notification functionality unless WINDOWSNT.
2330
2331 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
2332 declarations.
2333
2334 * w32fns.c (cache_system_info): Initialize the global hinst
2335 variable here so various initialization calls DTRT.
2336
2337 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
2338 (hinst): Remove unneeded extern declaration.
2339 (_start): Remove initialization of above variables; remove
2340 initialization of hinst, as cache_system_info now does that.
2341
2342 * emacs.c (main): Call cache_system_info early in startup; we
2343 previously weren't calling it in Cygwin builds.
2344
2345 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
2346 Teach the autoconf build system how to compile a Windows resource file
2347 and link it to Emacs.
2348
2349 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
2350
2351 Per-buffer window counters.
2352 * buffer.h (struct buffer): New member window_count.
2353 (buffer_window_count): New function.
2354 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
2355 Initialize window_count.
2356 (Fkill_buffer): Verify window_count for the buffer being killed.
2357 (modify_overlay): Do not force redisplay if buffer is not shown
2358 in any window.
2359 (init_buffer_once): Initialize window_count for buffer_defaults
2360 and buffer_local_symbols.
2361 * window.h (buffer_shared): Remove declaration.
2362 (wset_buffer): Convert from inline ...
2363 * window.c (wset_buffer): ... to an ordinary function.
2364 (adjust_window_count): New function.
2365 (make_parent_window): Use it.
2366 * xdisp.c (buffer_shared): Remove.
2367 (redisplay_internal, redisplay_window): Adjust users.
2368 (buffer_shared_and_changed): Use per-buffer window counter.
2369
2370 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2371
2372 Support for filesystem notifications on MS-Windows.
2373 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
2374 and this is a TTY frame, signal the caller that keyboard input is
2375 available.
2376
2377 * w32xfns.c (drain_message_queue): Now returns an int: an
2378 indication whether any WM_EMACS_FILENOTIFY messages were found in
2379 the queue.
2380
2381 * w32inevt.c (handle_file_notifications): New function.
2382 (w32_console_read_socket): Call it to process file notifications.
2383
2384 * w32console.c (initialize_w32_display): Record the main thread ID
2385 in dwMainThreadId.
2386
2387 * deps.mk (inotify.o): New dependency list.
2388
2389 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
2390
2391 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
2392 (WM_EMACS_END): Bump value by 1.
2393 (notification_buffer_in_use, file_notifications)
2394 (notifications_size, notifications_desc): Declare.
2395 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
2396 Add prototypes.
2397
2398 * w32term.c (lispy_file_action, queue_notifications): New functions.
2399 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
2400 <Qrenamed_to>: New symbols.
2401 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
2402
2403 * w32notify.c: New file, implements file event notifications for
2404 MS-Windows.
2405
2406 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
2407 by posting it to the w32_read_socket queue.
2408
2409 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2410
2411 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
2412 (GLOBAL_SOURCES): Add w32notify.c
2413 ($(BLD)/w32notify.$(O)): New set of dependencies.
2414
2415 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2416
2417 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2418 Handle FILE_NOTIFY_EVENT.
2419 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2420 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2421 w32notify-handle-event by default.
2422
2423 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2424 syms_of_w32notify.
2425
2426 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2427
2428 Support for filesystem notifications on GNU/Linux via inotify.
2429 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2430
2431 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2432
2433 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2434 (syms_of_keyboard): DEFSYM it.
2435 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2436 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2437 Qfile_inotify events.
2438 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2439 special-event-map to inotify-handle-event.
2440
2441 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2442
2443 * Makefile.in (base_obj): Add inotify.o.
2444
2445 * inotify.c: New file.
2446
2447 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2448
2449 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2450
2451 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2452
2453 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2454 DWORD_PTR, for compatibility with 64-bit builds.
2455
2456 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2457 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2458 (system_process_attributes): Use SIZE_T rather than DWORD, for
2459 compatibility with 64-bit builds.
2460
2461 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2462
2463 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2464
2465 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2466
2467 * indent.c (Fvertical_motion): If a display string will be
2468 displayed on the left or the right margin, don't consider it as a
2469 factor in cursor positioning. (Bug#13108)
2470
2471 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2472
2473 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2474
2475 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2476
2477 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2478 for string length.
2479
2480 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2481
2482 * w32.c (unsetenv): Return 0 if the input string is too long.
2483
2484 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2485
2486 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2487 * alloc.c (xputenv): New function.
2488 * dbusbind.c (Fdbus_init_bus):
2489 * emacs.c (main):
2490 * xterm.c (x_term_init):
2491 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2492 * editfns.c (initial_tz): Move static var decl up.
2493 (tzvalbuf_in_environ): New static var.
2494 (init_editfns): Initialize these two static vars.
2495 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2496 Save old TZ value on stack, if it's small.
2497 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2498 instead, use xputenv+unsetenv to set and restore TZ.
2499 (environbuf): Remove static var. All uses removed.
2500 (Fset_time_zone_rule): Do not save TZ and environ;
2501 no longer needed here.
2502 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2503 Move to inside set_time_zone_rule; they don't need file scope any more.
2504 (set_time_zone_rule): Maintain the TZ=value string separately.
2505 (syms_of_editfns): Don't initialize initial_tz;
2506 init_editfns now does it.
2507 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2508 * lisp.h (xputenv): New decl.
2509
2510 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2511
2512 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2513
2514 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2515
2516 * w32.c (unsetenv, sys_putenv): New functions.
2517
2518 2012-12-08 Chong Yidong <cyd@gnu.org>
2519
2520 * editfns.c (Finsert_char): Make the error message more
2521 informative (Bug#12992).
2522
2523 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2524
2525 Simplify get_lim_data.
2526 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
2527 Remove USG and vlimit methods; no longer used these days.
2528 Add #error catchall just in case.
2529
2530 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
2531 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
2532 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
2533 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
2534 (deleted_pid_list, Fdelete_process, create_process)
2535 (record_child_status_change, handle_child_signal, deliver_child_signal)
2536 (init_process_emacs, syms_of_process):
2537 Assume SIGCHLD is defined.
2538 (parse_signal): Remove. All uses removed.
2539 (abbr_to_signal): New static function.
2540 (Fsignal_process): Use it to convert signal names to ints.
2541 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
2542 kill (getpgrp (), ...).
2543 (emacs_sigaction_init): Assume SIGCHLD is defined.
2544 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
2545 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
2546 * syssignal.h (EMACS_KILLPG): Remove.
2547 All uses replaced by 'kill' with a negative pid.
2548 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
2549 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
2550
2551 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
2552
2553 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
2554 This will cause a production Emacs to dump core instead of
2555 infinite-looping.
2556
2557 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2558
2559 * frame.c (make_frame): Do not set window's buffer to t.
2560 * window.c (Fsplit_window_internal): Likewise. Previously it was
2561 used to indicate that the window is being set up. Now we use
2562 set_window_buffer for all new windows, so the condition in ...
2563 (Fset_window_buffer): ... is always true and can be removed.
2564
2565 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2566
2567 Convenient macro to check whether the buffer is hidden.
2568 * buffer.h (BUFFER_HIDDEN_P): New macro.
2569 * frame.c (make_frame): Use it. Adjust comment.
2570 * buffer.c (candidate_buffer): New function.
2571 (Fother_buffer, other_buffer_safely): Use it.
2572
2573 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2574
2575 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
2576 if the child process is still running. Instead, exit the wait
2577 loop and return zero. (Bug#13086)
2578
2579 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2580
2581 * frame.h (x_char_width, x_char_height): Remove prototypes.
2582 * w32term.h (x_char_width, x_char_height): Likewise.
2583 * xfns.c (x_char_width, x_char_height): Remove.
2584 * w32fns.c (x_char_width, x_char_height): Likewise.
2585 * nsfns.c (x_char_width, x_char_height): Likewise.
2586 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
2587 all window frames.
2588 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
2589 * keyboard.c (command_loop_1): Remove prototype.
2590 (command_loop_2, top_level_1): Add static to match prototype.
2591
2592 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
2593
2594 Fix a recently-introduced delete-process race condition.
2595 * callproc.c, process.h (record_kill_process):
2596 New function, containing part of the old call_process_kill.
2597 (call_process_kill): Use it.
2598 This does not change call_process_kill's behavior.
2599 * process.c (Fdelete_process): Use record_kill_process to fix a
2600 race condition that could cause Emacs to lose track of a child.
2601
2602 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2603
2604 Avoid code duplication between prev_frame and next_frame.
2605 * frame.c (candidate_frame): New function. Add comment.
2606 (prev_frame, next_frame): Use it. Adjust comment.
2607
2608 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2609
2610 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
2611 fails, signal an error instead of continuing with an empty
2612 string. (Bug#13079)
2613 Encode expanded temp file pattern before passing it to mkstemp or
2614 mktemp.
2615
2616 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
2617 Encode the file name before passing it to dostounix_filename, in
2618 case it will downcase it (under w32-downcase-file-names).
2619 (Bug#12933)
2620
2621 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
2622
2623 Minor call-process cleanups.
2624 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
2625 at the same time as other platforms, to simplify analysis.
2626 No need for fd0_volatile since we have synch_process_fd.
2627 Avoid needless emacs_close; arg is always negative.
2628
2629 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2630
2631 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2632 processes.
2633
2634 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2635
2636 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
2637 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
2638 and mouse_face_hidden members to a bitfields.
2639 * frame.h (struct frame): Remove set-but-not-used space_width member.
2640 (FRAME_SPACE_WIDTH): Remove.
2641 * nsterm.m, w32term.c, xterm.c: Adjust users.
2642 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
2643 member. Adjust users. Convert term_initted, delete_in_insert_mode,
2644 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
2645 members to a bitfields.
2646
2647 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2648
2649 Don't let call-process be a zombie factory (Bug#12980).
2650 Fixing this bug required some cleanup of the signal-handling code.
2651 As a side effect, this change also fixes a longstanding rare race
2652 condition whereby Emacs could mistakenly kill unrelated processes,
2653 and it fixes a bug where a second C-g does not kill a recalcitrant
2654 synchronous process in GNU/Linux and similar platforms.
2655 The patch should also fix the last vestiges of Bug#9488,
2656 a bug which has mostly been fixed on the trunk by other changes.
2657 * callproc.c, process.h (synch_process_alive, synch_process_death)
2658 (synch_process_termsig, sync_process_retcode):
2659 Remove. All uses removed, to simplify analysis and so that
2660 less consing is done inside critical sections.
2661 * callproc.c (call_process_exited): Remove. All uses replaced
2662 with !synch_process_pid.
2663 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
2664 These take the role of what used to be in unwind-protect arg.
2665 All uses changed.
2666 (block_child_signal, unblock_child_signal):
2667 New functions, to avoid races that could kill innocent-victim processes.
2668 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
2669 (call_process_kill): Record killed processes as deleted, so that
2670 zombies do not clutter up the system. Do this inside a critical
2671 section, to avoid a race that would allow the clutter.
2672 (call_process_cleanup): Fix code so that the second C-g works again
2673 on common platforms such as GNU/Linux.
2674 (Fcall_process): Create the child process in a critical section,
2675 to fix a race condition. If creating an asynchronous process,
2676 record it as deleted so that zombies do not clutter up the system.
2677 Do unwind-protect for WINDOWSNT too, as that's simpler in the
2678 light of these changes. Omit unnecessary call to emacs_close
2679 before failure, as the unwind-protect code does that.
2680 * callproc.c (call_process_cleanup):
2681 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
2682 * process.c (record_deleted_pid): New function, containing
2683 code refactored out of Fdelete_process.
2684 (Fdelete_process): Use it.
2685 (process_status_retrieved): Remove. All callers changed to use
2686 child_status_change.
2687 (record_child_status_change): Remove, folding its contents into ...
2688 (handle_child_signal): ... this signal handler. Now, this
2689 function is purely a handler for SIGCHLD, and is not called after
2690 a synchronous waitpid returns; the synchronous code is moved to
2691 wait_for_termination. There is no need to worry about reaping
2692 more than one child now.
2693 * sysdep.c (get_child_status, child_status_changed): New functions.
2694 (wait_for_termination): Now takes int * status and bool
2695 interruptible arguments, too. Do not record child status change;
2696 that's now the caller's responsibility. All callers changed.
2697 Reimplement in terms of get_child_status.
2698 (wait_for_termination_1, interruptible_wait_for_termination):
2699 Remove. All callers changed to use wait_for_termination.
2700 * syswait.h: Include <stdbool.h>, for bool.
2701 (record_child_status_change, interruptible_wait_for_termination):
2702 Remove decls.
2703 (record_deleted_pid, child_status_changed): New decls.
2704 (wait_for_termination): Adjust to API changes noted above.
2705
2706 * bytecode.c, lisp.h (Qbytecode): Remove.
2707 No longer needed after 2012-11-20 interactive-p changes.
2708
2709 2012-12-03 Eli Zaretskii <eliz@gnu.org>
2710
2711 * xdisp.c (redisplay_window): If the cursor is visible, but inside
2712 the scroll margin, move point outside the margin. (Bug#13055)
2713
2714 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
2715
2716 * gtkutil.c (my_log_handler): New function.
2717 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
2718
2719 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2720
2721 * lisp.h (modify_region): Rename to...
2722 (modify_region_1): ...new prototype.
2723 * textprop.c (modify_region): Now static. Adjust users.
2724 * insdel.c (modify_region): Rename to...
2725 (modify_region_1): ...new function to work with current buffer.
2726 Adjust comment and users. Use true and false for booleans.
2727
2728 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2729
2730 * alloc.c (free_save_value): New function.
2731 (safe_alloca_unwind): Use it.
2732 * lisp.h (free_save_value): New prototype.
2733 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
2734 Add comment.
2735 (save_excursion_restore): Adjust to match saved data structure.
2736 Use free_save_value to offload some work from GC. Drop obsolete
2737 #if 0 code.
2738
2739 2012-12-03 Chong Yidong <cyd@gnu.org>
2740
2741 * fileio.c (Vauto_save_list_file_name): Doc fix.
2742
2743 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
2744
2745 * w32fns.c: Remove prototype of atof.
2746 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
2747 builds.
2748 (file_dialog_callback): Make it UINT_PTR.
2749
2750 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
2751 with 64-bit builds.
2752
2753 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2754 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
2755 defined.
2756
2757 2012-12-03 Glenn Morris <rgm@gnu.org>
2758
2759 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
2760
2761 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2762
2763 Fix xpalloc confusion after memory is exhausted.
2764 * alloc.c (xpalloc): Comment fix.
2765 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
2766 and signals an error, do not clear charset_table_size, as
2767 charset_table is still valid.
2768 * doprnt.c (evxprintf): Clear *BUF after freeing it.
2769
2770 Use execve to avoid need to munge environ (Bug#13054).
2771 * callproc.c (Fcall_process):
2772 * process.c (create_process):
2773 Don't save and restore environ; no longer needed.
2774 * callproc.c (child_setup):
2775 Use execve, not execvp, to preserve environ.
2776
2777 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2778
2779 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2780
2781 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2782
2783 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
2784 display for sliced images (Bug#10500).
2785
2786 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
2787
2788 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
2789
2790 * doc.c (Fdocumentation): Re-add handling of function-documentation,
2791 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
2792
2793 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
2794
2795 * xdisp.c (window_outdated): Remove eassert since it hits
2796 some suspicious corner cases (see Bug#13007 and Bug#13012).
2797 (mode_line_update_needed): New function.
2798 (redisplay_internal, redisplay_window): Use it.
2799 (ensure_selected_frame): New function.
2800 (redisplay_internal, unwind_redisplay): Use it.
2801 (redisplay_internal): Move comment about buffer_shared...
2802 (buffer_shared_and_changed): ...near to its real use.
2803
2804 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2805
2806 * callproc.c (Fcall_process): Don't misreport vfork failure.
2807
2808 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
2809
2810 * callproc.c (Fcall_process): Fix vfork portability problems.
2811 Do not assume that fd[0], count, filefd, and save_environ survive
2812 vfork. Fix bug whereby wrong errno value could be reported for
2813 pipe failure. Some minor cleanups, too, as follows. Move buf and
2814 bufsize to the context where they're needed. Change new_argv to
2815 be of type char **, as this is more convenient and avoids casts.
2816 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
2817 Now local constants, not macros.
2818
2819 2012-11-18 Kenichi Handa <handa@gnu.org>
2820
2821 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
2822 for the variable "f".
2823
2824 2012-11-13 Kenichi Handa <handa@gnu.org>
2825
2826 * font.c (font_unparse_xlfd): Exclude special characters from the
2827 generating XLFD name.
2828
2829 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2830
2831 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
2832 * dired.c (stat_uname, stat_gname):
2833 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
2834
2835 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
2836 * dired.c (directory_files_internal, file_name_completion):
2837 Assume EAGAIN and EINTR are defined.
2838
2839 * fileio.c (Fcopy_file): Assume EISDIR is defined.
2840 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
2841 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
2842 * lread.c (readbyte_from_file): Assume EINTR is defined.
2843 * process.c (wait_reading_process_output, send_process) [subprocesses]:
2844 Assume EIO and EAGAIN are defined.
2845 * unexcoff.c (write_segment): Assume EFAULT is defined.
2846
2847 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2848
2849 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2850 (Bug#11964)
2851
2852 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
2853 highlighting on the frame was cleared. Prevents assertion
2854 violations when repeatedly clicking on the "Top" link of the
2855 "bread-crumbs" in Info buffers.
2856
2857 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2858
2859 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2860
2861 2012-11-24 Ken Brown <kbrown@cornell.edu>
2862
2863 * keyboard.c (HAVE_MOUSE):
2864 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
2865 were always defined.
2866
2867 2012-11-24 Eli Zaretskii <eliz@gnu.org>
2868
2869 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
2870 between bpos_covered and bpos_max. This fixes cursor display when
2871 several display strings follow each other.
2872
2873 * .gdbinit (pgx): If the glyph's object is a string, display the
2874 pointer to string data, rather than the value of the string object
2875 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
2876
2877 * indent.c (Fvertical_motion): If the starting position is covered
2878 by a display string, return to one position before that, to avoid
2879 overshooting it inside move_it_to. (Bug#12930)
2880
2881 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
2882
2883 * frame.h (struct frame): Remove display_preempted member
2884 since all users are dead long ago.
2885 * nsterm.h (struct x_output): Use the only dummy member.
2886 * w32menu.c (pending_menu_activation): Remove since not
2887 really used.
2888 (set_frame_menubar): Adjust user.
2889 * w32term.h (struct x_output): Drop outdated #if 0 code.
2890 (struct w32_output): Use bitfields for explicit_parent,
2891 asked_for_visible and menubar_active members.
2892 Drop unused pending_menu_activation member.
2893 * xterm.h (struct x_output): Drop outdated #if 0 code.
2894 Use bitfields for explicit_parent, asked_for_visible,
2895 has_been_visible and net_wm_state_hidden_seen members.
2896
2897 2012-11-23 Eli Zaretskii <eliz@gnu.org>
2898
2899 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
2900 of a literal "/". (Bug#12955)
2901 (gl-stamp): Invoke fc.exe directly, not through cmd.
2902
2903 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
2904
2905 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
2906 * dired.c: Assume HAVE_DIRENT_H.
2907 (NAMLEN): Remove, replacing with ...
2908 (dirent_namelen): New function. All uses changed. Use the GNU macro
2909 _D_EXACT_NAMELEN if available, as it's faster than strlen.
2910 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
2911 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
2912 * makefile.w32-in (DIR_H): Remove. All uses replaced with
2913 $(NT_INC)/dirent.h.
2914 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
2915 * ndir.h: Rename to ../nt/inc/dirent.h.
2916 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
2917 Do not include <dirent.h>; no longer needed.
2918 * w32.c: Include <dirent.h> rather than "ndir.h".
2919
2920 2012-11-23 Chong Yidong <cyd@gnu.org>
2921
2922 * xftfont.c (xftfont_open): Remove duplicate assignment.
2923
2924 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2925
2926 * alloc.c (Fgarbage_collect): Unblock input after clearing
2927 gc_in_progress to avoid note_mouse_highlight glitch with GC.
2928 * frame.h (FRAME_MOUSE_UPDATE): New macro.
2929 * msdos.c (IT_frame_up_to_date): Use it here...
2930 * w32term.c (w32_frame_up_to_date): ...here...
2931 * xterm.c (XTframe_up_to_date): ...and here...
2932 * nsterm.m (ns_frame_up_to_date): ...but not here.
2933 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
2934 Adjust users.
2935 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
2936 Do not check whether GC is in progress.
2937
2938 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2939
2940 * xdisp.c (window_buffer_changed): New function.
2941 (update_menu_bar, update_tool_bar): Use it to
2942 simplify large 'if' statements.
2943 (redisplay_internal): Generalize commonly used
2944 'tail' and 'frame' local variables.
2945
2946 2012-11-22 Eli Zaretskii <eliz@gnu.org>
2947
2948 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
2949 with Windows system header.
2950
2951 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2952
2953 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
2954 * alloc.c: Assume unistd.h exists.
2955 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
2956 * sysdep.c (get_current_dir_name): Assume getcwd exists.
2957 (getwd) [USG]: Remove; no longer needed.
2958 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
2959 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
2960 * w32.h (getcwd): Remove decl.
2961
2962 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2963
2964 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
2965 Make it set selected_window as well.
2966 (update_tool_bar): Use it.
2967
2968 2012-11-21 Ken Brown <kbrown@cornell.edu>
2969
2970 * emacs.c (main): Set the G_SLICE environment variable for all
2971 Cygwin builds, not just GTK builds. See
2972 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
2973
2974 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2975
2976 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2977 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
2978 Define for the MSVC compiler.
2979
2980 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
2981
2982 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2983 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
2984 dostounix_filename. Prevents crashes down the road, because
2985 dostounix_filename assumes it gets a unibyte string.
2986 Reported by Michel de Ruiter <michel@sentient.nl>, see
2987 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2988
2989 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2990
2991 Conflate Qnil and Qunbound for `symbol-function'.
2992 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
2993 * lread.c (init_obarray): Set `function' fields to Qnil.
2994 * eval.c (Fcommandp): Ignore Qunbound.
2995 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
2996 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
2997 Test NILP rather than Qunbound.
2998 (Ffmakunbound): Set to Qnil.
2999 (Fsymbol_function): Never signal an error.
3000 (Finteractive_form): Ignore Qunbound.
3001
3002 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
3003
3004 * eval.c (interactive_p): Remove no-longer-used decl.
3005
3006 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
3007
3008 * xdisp.c (buffer_shared): Adjust comment.
3009 (buffer_shared_and_changed): New function.
3010 (prepare_menu_bars, redisplay_internal): Use it to
3011 decide whether all windows or frames should be updated.
3012 (window_outdated): New function.
3013 (text_outside_line_unchanged_p, redisplay_window): Use it.
3014 (redisplay_internal): Likewise. Fix indentation.
3015
3016 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
3017
3018 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
3019 (syms_of_eval): Remove corresponding defsubr.
3020 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
3021
3022 2012-11-19 Daniel Colascione <dancol@dancol.org>
3023
3024 * w32fns.c (Fx_file_dialog):
3025 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
3026 cygwin_convert_file_name*.
3027
3028 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
3029 Rename cygwin_convert_path* to cygwin_convert_file_name*.
3030
3031 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
3032
3033 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
3034
3035 2012-11-18 Eli Zaretskii <eliz@gnu.org>
3036
3037 * w32select.c: Include w32common.h before w32term.h, so that
3038 windows.h gets included before w32term.h uses some of its
3039 features, see below.
3040
3041 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
3042 New typedefs.
3043 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
3044 New prototypes.
3045 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
3046
3047 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
3048
3049 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
3050 (ns_select): Return at once if events are held (Bug#12834).
3051
3052 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
3053
3054 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
3055 Needed following 2012-10-20 change. (Bug#12902)
3056
3057 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
3058
3059 * w32proc.c (waitpid): Remove unused label get_result.
3060
3061 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
3062
3063 * makefile.w32-in (SYSWAIT_H): New macro.
3064 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
3065 ($(BLD)/sysdep.$(O)): Update dependencies.
3066
3067 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3068
3069 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
3070 * callproc.c (relocate_fd): Assume F_DUPFD.
3071 * emacs.c, term.c (O_RDWR): Remove.
3072 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
3073 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
3074 * nsterm.m: Assume <fcntl.h> exists.
3075 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
3076 (create_pty, Fmake_network_process, server_accept_connection)
3077 (wait_reading_process_output, init_process_emacs):
3078 Assume O_NONBLOCK.
3079 (wait_reading_process_output): Put in a special case for WINDOWSNT
3080 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
3081 It's not clear this is needed, but it's a more-conservative change.
3082 (create_process): Assume FD_CLOEXEC.
3083 (create_process, create_pty): Assume O_NOCTTY.
3084 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
3085 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
3086 Omit if not DOS_NT, since F_GETFL is not defined there.
3087 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
3088 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
3089 (O_NOCTTY): Remove.
3090 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
3091 lack it, since gnulib guarantees this.
3092 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
3093
3094 2012-11-17 Eli Zaretskii <eliz@gnu.org>
3095
3096 * w32.c (faccessat): Pretend that directories have the execute bit
3097 set. Emacs expects that, e.g., in files.el:cd-absolute.
3098
3099 * w32proc.c (create_child): Don't clip the PID of the child
3100 process to fit into an Emacs integer, as this is no longer a
3101 restriction.
3102 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
3103 reaping only the process specified by PID argument, if that is
3104 positive. Use PID instead of dead_child to know which process to
3105 reap. Wait for the child to die only if WNOHANG is not in
3106 OPTIONS.
3107 (sys_select): Don't set dead_child.
3108
3109 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
3110 as it is no longer needed.
3111
3112 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
3113 no longer needed.
3114 (record_child_status_change): Remove the setting of
3115 record_at_most_one_child for the !WNOHANG case.
3116
3117 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
3118
3119 Fix problems in ns port found by static checking.
3120 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
3121 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
3122 not to process group.
3123 (ns_select): Use emacs_write, not write, as that's more robust
3124 in the presence of signals.
3125 (fd_handler:): Check for read errors.
3126
3127 2012-11-16 Glenn Morris <rgm@gnu.org>
3128
3129 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
3130
3131 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
3132
3133 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
3134
3135 2012-11-16 Eli Zaretskii <eliz@gnu.org>
3136
3137 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
3138 use the same value of thread handle.
3139 (start_timer_thread): If the timer thread exited (due to error),
3140 clean up by closing the two handles it used. Duplicate the caller
3141 thread's handle here, so it gets duplicated only once, when
3142 launching the timer thread. Set priority of the timer thread, not
3143 the caller thread.
3144 (getitimer): Don't duplicate the caller thread's handle here.
3145 (Bug#12832)
3146
3147 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
3148
3149 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
3150 called (Bug#12834).
3151
3152 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
3153
3154 Remove no-longer-used pty_max_bytes variable.
3155 * process.c (pty_max_bytes): Remove; unused.
3156 (send_process): Do not set it.
3157
3158 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
3159
3160 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
3161 Update dependencies.
3162
3163 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
3164
3165 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
3166 This follows up on the 2012-09-29 patch that removed indirection
3167 for the 'function' field. Reported by Sergey Vinokurov in
3168 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
3169
3170 2012-11-14 Eli Zaretskii <eliz@gnu.org>
3171
3172 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
3173 different name, as the MS runtime does not have such a function,
3174 and probably never will.) All callers changed. Ignore DIRFD
3175 value if PATH is an absolute file name, to match Posix spec
3176 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
3177 symlinks.
3178
3179 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
3180
3181 * xdisp.c (echo_area_display, redisplay_internal):
3182 Omit redundant check whether frame_garbaged is set.
3183
3184 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
3185
3186 Use faccessat, not access, when checking file permissions (Bug#12632).
3187 This fixes a bug that has been present in Emacs since its creation.
3188 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
3189 which must set some sort of record. (Torek's bug report was against
3190 a predecessor of GNU Emacs, but GNU Emacs happened to have the
3191 same common flaw.) See Torek's Usenet posting
3192 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
3193 Posted: Fri Apr 8 14:18:56 1983.
3194 * Makefile.in (LIB_EACCESS): New macro.
3195 (LIBES): Use it.
3196 * callproc.c (init_callproc):
3197 * charset.c (init_charset):
3198 * fileio.c (check_existing, check_executable, check_writable)
3199 (Ffile_readable_p):
3200 * lread.c (openp, load_path_check):
3201 * process.c (allocate_pty):
3202 * xrdb.c (file_p):
3203 Use effective UID when checking permissions, not real UID.
3204 * callproc.c (init_callproc):
3205 * charset.c (init_charset):
3206 * lread.c (load_path_check, init_lread):
3207 Test whether directories are accessible, not merely whether they exist.
3208 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
3209 * fileio.c (check_existing, check_executable, check_writable)
3210 (Ffile_readable_p):
3211 Use symbolic names instead of integers for the flags, as they're
3212 portable now.
3213 (check_writable): New arg AMODE. All uses changed.
3214 Set errno on failure.
3215 (Ffile_readable_p): Use faccessat, not stat + open + close.
3216 (Ffile_writable_p): No need to call check_existing + check_writable.
3217 Just call check_writable and then look at errno. This saves a syscall.
3218 dir should never be nil; replace an unnecessary runtime check
3219 with an eassert. When checking the parent directory of a nonexistent
3220 file, check that the directory is searchable as well as writable, as
3221 we can't create files in unsearchable directories.
3222 (file_directory_p): New function, which uses 'stat' on most platforms
3223 but faccessat with D_OK (for efficiency) if WINDOWSNT.
3224 (Ffile_directory_p, Fset_file_times): Use it.
3225 (file_accessible_directory_p): New function, which uses a single
3226 syscall for efficiency.
3227 (Ffile_accessible_directory_p): Use it.
3228 * xrdb.c (file_p): Use file_directory_p.
3229 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
3230 * lread.c (openp): When opening a file, use fstat rather than
3231 stat, as that avoids a permissions race. When not opening a file,
3232 use file_directory_p rather than stat.
3233 (dir_warning): First arg is now a usage string, not a format.
3234 Use errno. All uses changed.
3235 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
3236 that merely introduced a race.
3237 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
3238 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
3239 and similarly for the other O_* flags.
3240 * w32.c (sys_faccessat): Rename from sys_access and switch to
3241 faccessat's API. All uses changed.
3242 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
3243 (magic_db): Rename from magic_file_p.
3244 (magic_db, search_magic_path): Return an XrmDatabase rather than a
3245 char *, so that we don't have to test for file existence
3246 separately from opening the file for reading. This removes a race
3247 fixes a permission-checking problem, and simplifies the code.
3248 All uses changed.
3249 (file_p): Remove; no longer needed.
3250
3251 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
3252
3253 Omit glyphs initialization at startup.
3254 * dispnew.c (glyphs_initialized_initially_p): Remove.
3255 (adjust_frame_glyphs_initially): Likewise. Adjust users.
3256 (Fredraw_frame): Move actual code from here...
3257 (redraw_frame): ...to here. Add eassert. Adjust comment.
3258 (Fredraw_display): Use redraw_frame.
3259 * xdisp.c (clear_garbaged_frames): Likewise.
3260
3261 2012-11-13 Eli Zaretskii <eliz@gnu.org>
3262
3263 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
3264 passed to pint2str and pint2hrstr to be at most the size of the
3265 frame's decode_mode_spec_buffer. This avoids crashes with very
3266 large values of FIELD_WIDTH argument to decode_mode_spec.
3267 (Bug#12867)
3268
3269 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
3270
3271 Fix a race with verify-visited-file-modtime (Bug#12863).
3272 Since at least 1991 Emacs has ignored an mtime difference of no
3273 more than one second, but my guess is that this was to work around
3274 file system bugs that were fixed long ago. Since the race is
3275 causing problems now, let's remove that code.
3276 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
3277 whose time stamp is off by no more than a second. Insist that the
3278 file time stamps match exactly.
3279
3280 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3281
3282 * frame.h (struct frame): Convert external_tool_bar member to
3283 1-bit unsigned bitfield.
3284 * termhooks.h (struct terminal): Remove mouse_moved member since
3285 all users are long dead. Adjust comment on mouse_position_hook.
3286
3287 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3288
3289 Simplify by using FOR_EACH_FRAME here and there.
3290 * frame.c (next_frame, prev_frame, other_visible_frames)
3291 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
3292 * w32term.c (x_window_to_scroll_bar): Likewise.
3293 * window.c (window_list): Likewise.
3294 * xdisp.c (x_consider_frame_title): Likewise.
3295 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
3296 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3297 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
3298 * xmenu.c (menubar_id_to_frame): Likewise.
3299 * xselect.c (frame_for_x_selection): Likewise.
3300 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
3301 (x_window_to_menu_bar): Likewise.
3302 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
3303
3304 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
3305
3306 * data.c (Qdefalias_fset_function): Now static.
3307
3308 Another tweak to vectorlike_header change.
3309 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
3310 Remove, and replace all uses with ...
3311 (next_in_free_list, set_next_in_free_list):
3312 New functions, which respect C's aliasing rules better.
3313
3314 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
3315
3316 * window.c (list4i): Rename from 'quad'. All uses changed.
3317 Needed because <sys/types.h> defines 'quad' on Solaris 10.
3318
3319 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
3320
3321 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
3322 warning about mixing declarations and code in ISO C90.
3323
3324 2012-11-10 Martin Rudalics <rudalics@gmx.at>
3325
3326 * window.c (Fsplit_window_internal): Set combination limit of
3327 new parent window to t iff Vwindow_combination_limit is t;
3328 fixing a regression introduced with the change from 2012-09-22.
3329 (Fset_window_combination_limit): Fix doc-string.
3330
3331 2012-11-10 Eli Zaretskii <eliz@gnu.org>
3332
3333 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
3334 amount when the scroll margins are too large. When scrolling
3335 backwards in the buffer, give up if cannot reach point or the
3336 scroll margin within a reasonable number of screen lines.
3337 Fixes point position in window under scroll-up/down-aggressively when
3338 point is positioned many lines beyond the window top/bottom.
3339 (Bug#12811)
3340
3341 * ralloc.c (relinquish): If real_morecore fails to return memory
3342 to the system, don't crash; instead, leave the last heap
3343 unchanged and return. (Bug#12774)
3344
3345 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3346
3347 * lisp.h (AUTOLOADP): New macro.
3348 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
3349 * data.c (Ffset): Remove special ad-advice-info handling.
3350 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
3351 (Fsubr_arity): CSE.
3352 (Finteractive_form): Simplify.
3353 (Fquo): Don't insist on having at least 2 arguments.
3354 (Qdefalias_fset_function): New var.
3355
3356 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3357
3358 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
3359
3360 * nsfont.m (Qcondensed, Qexpanded): New variables.
3361 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
3362 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
3363
3364 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3365
3366 Fix recently introduced crash on MS-Windows (Bug#12839).
3367 * w32term.h (struct scroll_bar): Use convenient header.
3368 (SCROLL_BAR_VEC_SIZE): Remove.
3369 * w32term.c (x_scroll_bar_create): Use VECSIZE.
3370
3371 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3372
3373 Tweak last vectorlike_header change.
3374 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
3375 vectorlike object on the free list. This is introduced to avoid
3376 some (but not all) pointer casting and aliasing problems, see
3377 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
3378 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
3379 objects.
3380 (xvectype, xvecsize): Use them to examine Lisp_Object values.
3381
3382 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3383
3384 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
3385 been removed, so remove them here also.
3386
3387 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3388
3389 * doc.c (Fdocumentation): Handle new property
3390 dynamic-docstring-function to replace the old ad-advice-info.
3391
3392 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3393
3394 * fns.c (Qeql, hashtest_eq): Now static.
3395
3396 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3397
3398 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
3399 * fns.c (hashfn_eq, hashfn_eql, sxhash):
3400 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
3401 * buffer.c (compare_overlays): Use XLI rather than XHASH.
3402
3403 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
3404
3405 Use same hash function for hashfn_profiler as for hash_string etc.
3406 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
3407 * lisp.h (sxhash_combine): New inline function, with the contents
3408 of the old SXHASH_COMBINE.
3409 * profiler.c (hashfn_profiler): Use it, instead of having a
3410 special hash function containing a comparison that always yields 1.
3411
3412 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3413
3414 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
3415 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3416 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3417 Remove unused vars.
3418
3419 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3420
3421 * image.c (xpm_make_color_table_h): Fix compiler error because
3422 make_hash_table changed.
3423
3424 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3425
3426 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3427
3428 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3429
3430 Use ad-hoc comparison function for the profiler's hash-tables.
3431 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3432 (make_log): Use them.
3433 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3434 call Fequal any more.
3435 (Ffunction_equal): New function.
3436 (cmpfn_profiler, hashfn_profiler): New functions.
3437 (syms_of_profiler): Initialize them.
3438 * lisp.h (struct hash_table_test): New struct.
3439 (struct Lisp_Hash_Table): Use it.
3440 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3441 * fns.c (make_hash_table): Take a struct to describe the test.
3442 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3443 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3444 (hash_lookup, hash_remove_from_table): Move assertion checking of
3445 hashfn result here. Check hash-equality before calling cmpfn.
3446 (Fmake_hash_table): Adjust call to make_hash_table.
3447 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3448 (syms_of_fns): Initialize them.
3449 * emacs.c (main): Move syms_of_fns earlier.
3450 * xterm.c (syms_of_xterm):
3451 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3452 * print.c (print_object): Adjust to new hash-table struct.
3453 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3454
3455 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3456
3457 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3458 value of w32-scroll-lock-modifier is neither nil nor one of the
3459 known key modifiers. (Bug#12806)
3460
3461 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3462
3463 Shrink struct vectorlike_header to the only size field.
3464 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3465 Adjust comment.
3466 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3467 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3468 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3469 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3470 information from the vector header. Adjust comment.
3471 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3472 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3473 layout.
3474 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3475 (struct vectorlike_header): Remove next member. Adjust comment.
3476 (struct Lisp_Subr): Add convenient header. Adjust comment.
3477 (allocate_pseudovector): Adjust prototype.
3478 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3479 (sweep_string, lisp_malloc): Remove useless prototypes.
3480 (enum mem_type): Adjust comment.
3481 (NEXT_IN_FREE_LIST): New macro.
3482 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3483 (Fmake_bool_vector): Likewise.
3484 (struct large_vector): New type to represent allocation unit for
3485 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3486 (large_vectors): Change type to struct large_vector.
3487 (allocate_vector_from_block): Simplify.
3488 (PSEUDOVECTOR_NBYTES): Replace with...
3489 (vector_nbytes): ...new function. Adjust users.
3490 (sweep_vectors): Adjust processing of large vectors.
3491 (allocate_vectorlike): Likewise.
3492 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3493 Add easserts. Adjust XSETPVECTYPESIZE usage.
3494 (allocate_buffer): Use BUFFER_PVEC_INIT.
3495 (live_vector_p): Adjust to match large vector.
3496 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3497 * buffer.h (struct buffer): Add next member.
3498 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3499 New macros.
3500 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3501 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3502 (copy_hash_table): Adjust to match vector header change.
3503 * lread.c (defsubr): Use XSETPVECTYPE.
3504 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3505 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3506 (xvecsize): New command.
3507
3508 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3509
3510 * keyboard.c (event_to_kboard): Do not dereference
3511 frame_or_window field of SELECTION_REQUEST_EVENT
3512 and SELECTION_CLEAR_EVENT events (Bug#12814).
3513 * xterm.h (struct selection_input_event): Adjust comment.
3514
3515 2012-11-07 Eli Zaretskii <eliz@gnu.org>
3516
3517 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
3518 such as Scroll Lock, if the respective keys are treated as
3519 function keys, not as modifiers. This avoids destroying non-ASCII
3520 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
3521
3522 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3523
3524 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3525
3526 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3527
3528 Restore some duplicate definitions (Bug#12814).
3529 This undoes part of the 2012-11-03 changes. Some people build
3530 with plain -g rather than with -g3, and they need the duplicate
3531 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
3532 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
3533 Define as macros, as well as as enums or as constants.
3534
3535 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
3536
3537 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
3538 to keypad keys (Bug#12816).
3539
3540 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3541
3542 Minor adjustments of recently-changed frame functions.
3543 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
3544 known to be a frame (we're in the FRAMEP branch).
3545 * lisp.h (Qframep): Remove decl. frame.h declares this.
3546 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
3547 since they're meant for Lisp fixnum values.
3548
3549 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3550
3551 * window.c (Fwindow_combination_limit): Revert to the only
3552 required argument and adjust docstring as suggested in
3553 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
3554 by Martin Rudalics <rudalics@gmx.at>.
3555
3556 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3557
3558 Widely used frame validity and checking functions.
3559 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
3560 * frame.c (decode_live_frame, decode_any_frame): New functions.
3561 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
3562 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
3563 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
3564 (Fframe_pointer_visible_p): Use decode_any_frame.
3565 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
3566 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
3567 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
3568 (Fframe_focus): Likewise. Allow zero number of arguments.
3569 Adjust docstring.
3570 (frame_buffer_list, frame_buffer_predicate): Remove.
3571 * lisp.h (frame_buffer_predicate): Remove prototype.
3572 * buffer.c (Fother_buffer): Use decode_any_frame.
3573 * xdisp.c (Ftool_bar_lines_needed): Likewise.
3574 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
3575 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
3576 (Fclose_font, Ffont_info): Use decode_live_frame.
3577 * fontset.c (check_fontset_name): Likewise.
3578 * terminal.c (Fframe_terminal): Likewise.
3579 * w32fns.c (check_x_frame): Likewise.
3580 * window.c (Fminibuffer_window, Fwindow_at)
3581 (Fcurrent_window_configuration): Likewise.
3582 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
3583 Likewise. Allow zero number of arguments. Adjust docstring.
3584 * dispnew.c (Fredraw_frame): Likewise.
3585 * xfaces.c (frame_or_selected_frame): Remove.
3586 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
3587 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
3588 (Fframe_face_alist): Use decode_live_frame.
3589 * xfns.c (check_x_frame): Likewise.
3590
3591 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3592
3593 * window.c (quad): New function.
3594 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
3595 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
3596 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
3597 (Fwindow_line_height): Use it.
3598 (Fwindow_fringes): Use list3.
3599 (Fwindow_scroll_bars): Use list4.
3600 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
3601 (Fwindow_combination_limit): Allow zero number of arguments.
3602
3603 2012-11-05 Eli Zaretskii <eliz@gnu.org>
3604
3605 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3606
3607 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
3608 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
3609 file descriptor 2 for standard error. (Bug#12805)
3610
3611 2012-11-05 Chong Yidong <cyd@gnu.org>
3612
3613 * process.c (wait_reading_process_output): Revert previous change.
3614
3615 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3616
3617 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
3618 This removes code that has been obsolete since around 1990.
3619 * callproc.c (Fcall_process):
3620 * emacs.c (main):
3621 * process.c (create_process):
3622 * term.c (dissociate_if_controlling_tty):
3623 Assume setsid exists.
3624 * callproc.c (child_setup): Assume setpgid exists and behaves as
3625 per POSIX.1-1988 or later.
3626 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
3627 * emacs.c (shut_down_emacs):
3628 * sysdep.c (sys_suspend, init_foreground_group):
3629 Assume getpgrp behaves as per POSIX.1-1998 or later.
3630 * msdos.c (setpgrp): Remove.
3631 (tcgetpgrp, setpgid, setsid): New functions.
3632 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
3633 * term.c (no_controlling_tty): Remove; unused.
3634 * w32proc.c (setpgrp): Remove.
3635 (setsid, tcgetpgrp): New functions.
3636
3637 Simplify by assuming __fpending.
3638 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
3639 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
3640 Do not assume that __fpending's result fits in int.
3641
3642 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3643
3644 Remove EMACS_OUTQSIZE+sleep hack.
3645 * dispnew.c (update_frame_1): Remove hack for terminals slower
3646 than 2400 bps, which throttled Emacs by having it sleep.
3647 This code hasn't worked since at least 2007, when the multi-tty stuff
3648 was added, and anyway those old terminals are long dead.
3649 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
3650 without the dispnew.c change, as dispnew.c doesn't include systty.h.
3651
3652 Fix data-loss with --version (Bug#9574).
3653 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
3654 as we can't assume that emacs_strerror is initialized, and strerror
3655 is good enough here.
3656 (main): Invoke atexit earlier, to catch earlier instances of
3657 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
3658
3659 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
3660
3661 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
3662 (keyDown): Remap keypad keys to X11 virtual key codes.
3663
3664 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3665
3666 Fix data-loss with --batch (Bug#9574).
3667 * emacs.c: Include <close-stream.h>.
3668 (close_output_streams): New function.
3669 (main): Pass it to atexit, so that Emacs closes stdout and stderr
3670 and handles errors appropriately.
3671 (Fkill_emacs): Don't worry about flushing, as close_output_stream
3672 does that now.
3673
3674 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
3675 The symptom is a diagnostic "GLib-WARNING **: In call to
3676 g_spawn_sync(), exit status of a child process was requested but
3677 SIGCHLD action was set to SIG_IGN and ECHILD was received by
3678 waitpid(), so exit status can't be returned." The diagnostic
3679 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
3680 The real bug is a race condition between Emacs and glib: Emacs
3681 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
3682 so that glib can't find it. Work around the bug by invoking
3683 waitpid only on subprocesses that Emacs itself creates.
3684 * process.c (create_process, record_child_status_change):
3685 Don't use special value -1 in pid field, as the caller now must
3686 know the pid rather than having the callee infer it.
3687 The inference was sometimes incorrect anyway, due to another race.
3688 (create_process): Set new 'alive' member if child is created.
3689 (process_status_retrieved): New function.
3690 (record_child_status_change): Use it.
3691 Accept negative 1st argument, which means to wait for the
3692 processes that Emacs already knows about. Move special-case code
3693 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
3694 processes that have already been waited for, by testing and
3695 clearing new 'alive' member.
3696 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
3697 now does this internally.
3698 (handle_child_signal): Let record_child_status_change do all
3699 the work, since we do not want to reap all exited child processes,
3700 only the child processes that Emacs itself created.
3701 * process.h (Lisp_Process): New boolean member 'alive'.
3702
3703 Omit duplicate definitions no longer needed with gcc -g3.
3704 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
3705 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
3706 Define only as macros. There's no longer any need to also define
3707 these symbols as enums or as constants, since we now assume
3708 gcc -g3 when debugging.
3709
3710 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3711
3712 * lisp.mk: Adjust comments to the fact that term/internal is now
3713 loaded from loadup.el.
3714
3715 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
3716 (msdos_fatal_signal): New function.
3717 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
3718 its argument list.
3719
3720 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
3721 for GCC versions before 4.
3722 (emacs_raise): Define to call msdos_fatal_signal.
3723
3724 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
3725 iterator when starting in the middle of a display or overlay
3726 string. (Bug#12745)
3727
3728 2012-11-03 Chong Yidong <cyd@gnu.org>
3729
3730 * process.c (wait_reading_process_output): Clean up the last
3731 change.
3732
3733 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
3734
3735 * process.c (wait_reading_process_output): Avoid a race condition
3736 with SIGIO delivery (Bug#11536).
3737
3738 2012-11-03 Chong Yidong <cyd@gnu.org>
3739
3740 * buffer.c (cursor_type): Untabify docstring.
3741
3742 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3743
3744 * frame.h (struct frame): Drop can_have_scroll_bars member
3745 which is meaningless for a long time. Adjust comments.
3746 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
3747 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
3748
3749 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3750
3751 * window.c (decode_next_window_args): Update window arg after
3752 calling decode_live_window and so fix crash reported at
3753 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
3754 by Juanma Barranquero <lekktu@gmail.com>.
3755 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
3756 * font.c (Ffont_at): Likewise.
3757
3758 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
3759
3760 * widget.c (resize_cb): New function.
3761 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
3762 (EmacsFrameResize): Check if all is up to date before changing frame
3763 size.
3764
3765 2012-11-02 Eli Zaretskii <eliz@gnu.org>
3766
3767 Implement backtrace output for fatal errors on MS-Windows.
3768 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
3769 (BACKTRACE_LIMIT_MAX): New macro.
3770 (w32_backtrace): New function.
3771 (emacs_abort): Use w32_backtrace when the user chooses not to
3772 attach a debugger. Update the text of the abort dialog.
3773
3774 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3775
3776 Window-related stuff cleanup here and there.
3777 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
3778 Use decode_any_window.
3779 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
3780 * xdisp.c (Fformat_mode_line): Likewise.
3781 * font.c (Ffont_at): Use decode_live_window.
3782 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
3783 * window.c (decode_next_window_args): Likewise.
3784 (decode_any_window): Remove static.
3785 * window.h (decode_any_window): Add prototype.
3786 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
3787 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
3788 respectively.
3789
3790 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3791
3792 Remove pad from struct input_event.
3793 * termhooks.h (struct input_event): Remove padding field.
3794 Adjust comment.
3795 * keyboard.c (event_to_kboard): Simplify because frame_or_window
3796 member is never cons for a long time. Adjust comment.
3797 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
3798 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
3799 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
3800 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
3801
3802 2012-11-01 Eli Zaretskii <eliz@gnu.org>
3803
3804 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3805
3806 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
3807
3808 Fix crash when using Emacs as commit editor for git (Bug#12697).
3809 * callproc.c (setpgrp): Remove macro, as we now use setpgid
3810 and it is configured in conf_post.h.
3811 (Fcall_process): Don't invoke both setsid and setpgid; the former
3812 is enough, if it exists.
3813 * callproc.c (Fcall_process, child_setup):
3814 * process.c (create_process): Use setpgid.
3815 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
3816 for the real thing.
3817 * dispnew.c (init_display): Initialize the foreground group
3818 if we are running a tty display.
3819 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
3820 * lisp.h (init_foreground_group): New decl.
3821 * sysdep.c (inherited_pgroup): New static var.
3822 (init_foreground_group, tcsetpgrp_without_stopping)
3823 (narrow_foreground_group, widen_foreground_group): New functions.
3824 (init_sys_modes): Narrow foreground group.
3825 (reset_sys_modes): Widen foreground group.
3826
3827 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
3828
3829 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3830
3831 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3832
3833 * minibuf.c (read_minibuf): Restore current buffer since
3834 choose_minibuf_frame calling Fset_frame_selected_window may
3835 change it (Bug#12766).
3836
3837 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3838
3839 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3840
3841 2012-10-30 Kenichi Handa <handa@gnu.org>
3842
3843 * font.c (Ffont_at): If WINDOW is specified and it is not
3844 displaying the current buffer, signal an error.
3845
3846 2012-10-29 Daniel Colascione <dancol@dancol.org>
3847
3848 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3849 In preparation for fixing bug#12739, move these functions from
3850 here...
3851
3852 * coding.h, coding.c: ... to here, and compile them only when
3853 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3854 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
3855
3856 2012-10-28 Eli Zaretskii <eliz@gnu.org>
3857
3858 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
3859 (timer_loop, getitimer, setitimer): Use it instead of
3860 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
3861 'clock'.
3862 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
3863 literal 10000.
3864
3865 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
3866
3867 * nsterm.m (NO_APPDEFINED_DATA): New define.
3868 (last_appdefined_event_data): New variable
3869 (last_appdefined_event): Remove.
3870 (ns_select): Initialize t from last_appdefined_event_data instead
3871 of [last_appdefined_event data1].
3872 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
3873 remove last_appdefined_event (Bug#12698).
3874
3875 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3876
3877 * frame.c (x_set_font): Catch internal error.
3878
3879 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3880
3881 Avoid overflow in w32 implementation of interval timers.
3882 When possible, for ITIMER_PROF count only times the main thread
3883 actually executes.
3884 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
3885 'volatile ULONGLONG' types. All the other data which was
3886 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
3887 (GetThreadTimes_Proc): New typedef.
3888 (w32_get_timer_time): New function, returns a suitable time value
3889 for the timer.
3890 (timer_loop): Enter critical section when accessing ULONGLONG
3891 values of the itimer_data struct, as these accesses are no longer
3892 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3893 Remove unused variable.
3894 (init_timers): Initialize s_pfn_Get_Thread_Times.
3895 (start_timer_thread): Don't assign itimer->caller_thread here.
3896 (getitimer): Assign itimer->caller_thread here.
3897 (setitimer): Always call getitimer to get the value of ticks_now.
3898 (sys_spawnve): Avoid compiler warning about format mismatch.
3899
3900 2012-10-26 Eli Zaretskii <eliz@gnu.org>
3901
3902 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
3903 mouse movement events if the menu bar is active. This avoids
3904 producing a busy "hour-glass" cursor by Windows if the mouse
3905 pointer is positioned over a tooltip shown for some menu item.
3906
3907 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
3908
3909 Don't assume process IDs fit in int.
3910 * emacs.c (shut_down_emacs) [!DOS_NT]:
3911 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
3912 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
3913 Use pid_t, not int, to store process IDs, as 'int'
3914 is not wide enough on a few platforms (e.g., AIX and IRIX).
3915
3916 2012-10-23 Kenichi Handa <handa@gnu.org>
3917
3918 The following change is to make face-font-rescale-alist work
3919 correctly for non-ASCII fonts.
3920
3921 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
3922 (font_open_for_lface): Handle Vface_font_rescale_alist.
3923
3924 2012-10-23 Chong Yidong <cyd@gnu.org>
3925
3926 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3927
3928 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3929
3930 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
3931 for screen font.
3932 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
3933
3934 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3935 event (Bug#12681).
3936
3937 2012-10-21 Glenn Morris <rgm@gnu.org>
3938
3939 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3940
3941 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
3942
3943 Port to OpenBSD 5.1.
3944 * frame.c (Fmouse_position, Fmouse_pixel_position):
3945 * xdisp.c (produce_stretch_glyph):
3946 Declare local vars only when they're needed.
3947 This is clearer and avoids a warning on OpenBSD about unused vars.
3948 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
3949 This is safer, and avoids OpenBSD warnings about unused vars.
3950 * keyboard.c (record_menu_key): Remove unnecessary decl.
3951 (poll_timer): Define only if POLL_FOR_INPUT is defined.
3952 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
3953 as our definition clashes with OpenBSD's.
3954 * xfaces.c (load_face_colors, check_lface_attrs)
3955 (get_lface_attributes_no_remap, get_lface_attributes)
3956 (lface_fully_specified_p, x_supports_face_attributes_p)
3957 (tty_supports_face_attributes_p, face_fontset, realize_face)
3958 (realize_x_face, realize_tty_face):
3959 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
3960 merely Lisp_Object *. This is more informative and avoids
3961 a warning on OpenBSD about accessing beyond an object's size.
3962
3963 2012-10-20 Chong Yidong <cyd@gnu.org>
3964
3965 * lread.c (Fload): Doc fix (Bug#12592).
3966
3967 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3968
3969 * font.c (Ffont_at): Fix previous change.
3970
3971 2012-10-19 Eli Zaretskii <eliz@gnu.org>
3972
3973 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
3974 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
3975 for the reasons.
3976
3977 * alloc.c (NSTATICS): Decrease to 0x800.
3978
3979 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3980
3981 * fns.c (Fnreverse): Include the problem element when signaling an
3982 error (bug#12677).
3983
3984 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
3985
3986 * nsterm.m (ns_select): Check writefds before call to
3987 FD_ISSET (Bug#12668).
3988
3989 2012-10-18 Daniel Colascione <dancol@dancol.org>
3990
3991 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
3992 (staticpro): If we run out of staticpro slots, die with an
3993 informative error instead of just calling emacs_abort.
3994
3995 2012-10-18 Martin Rudalics <rudalics@gmx.at>
3996
3997 Fix two flaws reported by Dmitry Antipov.
3998 * window.c (Ftemp_output_buffer_show): Remove.
3999 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
4000 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
4001
4002 2012-10-17 Eli Zaretskii <eliz@gnu.org>
4003
4004 * makefile.w32-in ($(BLD)/w32.$(O)):
4005 ($(BLD)/vm-limit.$(O)):
4006 ($(BLD)/term.$(O)):
4007 ($(BLD)/unexw32.$(O)):
4008 ($(BLD)/fileio.$(O)):
4009 ($(BLD)/dispnew.$(O)): Update dependencies.
4010
4011 * w32term.h (w32_initialize_display_info, initialize_w32_display):
4012 Add prototypes.
4013
4014 * w32proc.c: Include ctype.h.
4015
4016 * w32.h (init_environment, check_windows_init_file)
4017 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
4018 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
4019 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
4020 (sys_link): Add prototypes.
4021
4022 * w32.c: Include w32select.h.
4023 (sys_access, e_malloc, sys_select): Add prototypes.
4024 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
4025
4026 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
4027
4028 * unexw32.c: Include lisp.h and w32.h.
4029
4030 * term.c [WINDOWSNT]: Include w32term.h.
4031
4032 * process.c [WINDOWSNT]: Add prototype of sys_select.
4033
4034 * fileio.c [WINDOWSNT]: Include w32.h.
4035
4036 * dispnew.c [WINDOWSNT]: Include w32.h.
4037
4038 * cygw32.c (Fcygwin_convert_path_to_windows)
4039 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
4040 Lisp_Object values. (Bug#12661)
4041
4042 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
4043 to Lisp_Object. (Bug#12661)
4044
4045 2012-10-17 Kenichi Handa <handa@gnu.org>
4046
4047 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
4048 invalidate.
4049
4050 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4051
4052 * buffer.c (Fkill_buffer): When unchaining the marker,
4053 reset its buffer pointer to NULL (Bug#12652).
4054
4055 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4056
4057 Do not verify indirection counters of killed buffers (Bug#12579).
4058 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
4059 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
4060
4061 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4062
4063 * alloc.c (Fmake_byte_code): Fix typo in comment.
4064 * print.c (print_interval): Define as static to match prototype.
4065 * indent.c (disptab_matches_widthtab, recompute_width_table):
4066 Convert to eassert.
4067
4068 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
4069
4070 * editfns.c (get_system_name): Remove.
4071 * lisp.h (get_system_name): Remove prototype.
4072 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
4073 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
4074
4075 2012-10-15 Daniel Colascione <dancol@dancol.org>
4076
4077 * dbusbind.c: Add comment explaining reason for previous change.
4078
4079 2012-10-15 Martin Rudalics <rudalics@gmx.at>
4080
4081 * window.c (Fwindow_end): Rewrite check whether cached position
4082 can be used (Bug#12600).
4083 (resize_frame_windows, grow_mini_window, shrink_mini_window):
4084 Set windows_or_buffers_changed.
4085
4086 2012-10-15 Daniel Colascione <dancol@dancol.org>
4087
4088 * dbusbind.c: Fix cygw32 build break when compiling with dbus
4089 enabled by undefining the symbol "interface", which the platform
4090 headers define to something incompatible.
4091
4092 2012-10-14 Daniel Colascione <dancol@dancol.org>
4093
4094 * image.c (init_tiff_functions, init_imagemagick_functions)
4095 (init_svg_functions): Fix cygw32 build break by using these
4096 functions only when WINDOWSNT _and_ HAVE_NTGUI.
4097
4098 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
4099
4100 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
4101
4102 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
4103
4104 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
4105
4106 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
4107
4108 * coding.c (detect_coding): Set coding->id before calling
4109 this->detector.
4110
4111 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
4112
4113 * fileio.c: Formatting fixes.
4114
4115 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
4116
4117 Fix some stat-related races.
4118 * fileio.c (Fwrite_region): Avoid race condition if a file is
4119 removed or renamed by some other process immediately after Emacs
4120 writes it but before Emacs stats it. Do not assume that stat (or
4121 fstat) succeeds.
4122 * image.c (slurp_file): Resolve the file name with fopen + fstat
4123 rather than stat + fopen.
4124 (pbm_read_file) [0]: Remove unused code with stat race.
4125 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
4126 Remove ineffective code with stat race.
4127
4128 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
4129
4130 * doc.c (get_doc_string): Don't signal an error if the file is missing.
4131
4132 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4133
4134 * nsterm.m (hold_event_q): New static variable.
4135 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
4136 ! q_event_ptr.
4137 (hold_event): New function.
4138 (ns_read_socket): If hold_event_q have events, store them and
4139 return (Bug#12384).
4140 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
4141 is zero (Bug#12384).
4142
4143 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
4144
4145 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
4146
4147 2012-10-12 Eli Zaretskii <eliz@gnu.org>
4148
4149 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
4150
4151 * fileio.c (check_existing): New function.
4152 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
4153 instead of calling 'stat', when what's needed is to check whether
4154 a file exists. This avoids expensive system calls on MS-Windows.
4155 (Bug#12587)
4156
4157 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
4158
4159 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
4160 determine whether a file exists and is not a directory.
4161
4162 * lisp.h (check_existing): Add prototype.
4163
4164 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4165
4166 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
4167
4168 2012-10-12 Glenn Morris <rgm@gnu.org>
4169
4170 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
4171
4172 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4173
4174 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
4175
4176 * eval.c (Fautoload): Remember previous autoload status in load-history.
4177
4178 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4179
4180 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
4181 * lread.c (load_each_byte, new_backquote_flag, readchar)
4182 (read_filtered_event, lisp_file_lexically_bound_p)
4183 (safe_to_load_version, Fload, complete_filename_p, openp)
4184 (build_load_history, readevalloop, read_escape, read1)
4185 (string_to_number, read_vector, read_list):
4186 * macros.c (Fstart_kbd_macro):
4187 * marker.c (CONSIDER):
4188 * menu.c (parse_single_submenu, digest_single_submenu)
4189 (find_and_return_menu_selection, Fx_popup_menu):
4190 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
4191 (Ftry_completion):
4192 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
4193 (ns_menu_show):
4194 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
4195 (xmenu_show, xdialog_show):
4196 Use bool for booleans.
4197 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
4198 as it's not a predicate. All uses changed. Omit unnecessary
4199 buffer termination.
4200
4201 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
4202
4203 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
4204 (save_excursion_restore): Do not restore mark if it was not saved.
4205
4206 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4207
4208 * marker.c (cached_modiff): EMACS_INT, not int.
4209
4210 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
4211 instead of having a wrong decl.
4212 * nsmenu.m (waiting_for_input): Remove wrong decl.
4213
4214 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4215
4216 keyboard.c, keymap.c: Use bool for booleans.
4217 * dispnew.c (sit_for): Distinguish between 3-way display_option
4218 and boolean do_display.
4219 * keyboard.c (single_kboard, this_command_key_count_reset)
4220 (waiting_for_input, echoing, immediate_quit, input_pending)
4221 (interrupt_input, interrupts_deferred, pop_kboard)
4222 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
4223 (command_loop_1, adjust_point_for_property)
4224 (safe_run_hooks_error, input_polling_used, read_char):
4225 (help_char_p, readable_events, kbd_buffer_events_waiting)
4226 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
4227 (lucid_event_type_list_p, get_input_pending):
4228 (gobble_input, menu_separator_name_p, menu_bar_item)
4229 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
4230 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
4231 (keyremap_step, test_undefined, read_key_sequence)
4232 (detect_input_pending, detect_input_pending_ignore_squeezables)
4233 (detect_input_pending_run_timers, requeued_events_pending_p)
4234 (quit_throw_to_read_char, Fset_input_interrupt_mode):
4235 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
4236 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
4237 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
4238 (accessible_keymaps_1, Fkey_description, push_key_description):
4239 (shadow_lookup, struct where_is_internal_data)
4240 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
4241 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
4242 (describe_map, describe_vector):
4243 * menu.c (single_menu_item):
4244 * nsmenu.m (ns_update_menubar):
4245 * process.c (wait_reading_process_output):
4246 * search.c (scan_buffer, scan_newline):
4247 Use bool for boolean.
4248 * keyboard.c (timers_run, swallow_events)
4249 (detect_input_pending_run_timers):
4250 * process.c (wait_reading_process_output):
4251 Use unsigned for counter where wraparound-on-overflow is desired,
4252 since unsigned is guaranteed to have that behavior and signed is not.
4253 (read_char): Use ptrdiff_t for string length.
4254 (get_input_pending): Remove first argument, since it was always
4255 the same pointer-to-int (now pointer-to-boolean) &input_pending,
4256 and behave as if it had that value. Return new value of
4257 input_pending. All callers changed.
4258 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
4259 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
4260 a string length.
4261 * keymap.c (push_key_description): Omit last arg, which was always 1.
4262 All callers changed.
4263
4264 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
4265
4266 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
4267
4268 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
4269 ($(BLD)/term.$(O)): Update dependencies.
4270
4271 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4272
4273 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
4274 * lisp.h (enum pvec_type): Adjust comments and omit explicit
4275 initializer for PVEC_NORMAL_VECTOR.
4276
4277 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4278
4279 Clean out old termopts cruft.
4280 * termopts.h (flow_control, meta_key): Remove unused decls.
4281 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
4282 Don't include termopts.h.
4283
4284 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4285
4286 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
4287
4288 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4289
4290 * commands.h (immediate_quit): Remove duplicate decl.
4291
4292 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
4293
4294 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
4295 caching.
4296 (nsfont_open): Remove setting of Vfonts_in_cache.
4297 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
4298
4299 2012-10-09 Eli Zaretskii <eliz@gnu.org>
4300
4301 * w32fns.c (w32_last_error): Change the return value to DWORD, to
4302 match what GetLastError returns. Explain why the function is
4303 needed.
4304
4305 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
4306 'is_tooltip_frame', to avoid confusion with its global namesake.
4307
4308 2012-10-08 Daniel Colascione <dancol@dancol.org>
4309
4310 * xdisp.c (start_hourglass): Call w32_note_current_window when
4311 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
4312 build that caused Emacs to display the hourglass cursor forever.
4313
4314 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
4315 which is broken under remote desktop, calculate the number of
4316 colors available for a display based on the display's number of
4317 planes and number of bits per pixel per plane. (bug#10397).
4318
4319 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
4320
4321 * nsfont.m (Vfonts_in_cache): New variable.
4322 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
4323 are used. Add cached fonts to Vfonts_in_cache.
4324 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
4325
4326 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4327
4328 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4329 in nt/config.nt.
4330 (FONT_H): Define after FRAME_H.
4331 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
4332 Update dependencies.
4333
4334 * w32term.c: Remove leftover declaration of keyboard_codepage.
4335
4336 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4337
4338 * makefile.w32-in (FONT_H): Add $(FRAME_H).
4339 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
4340 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
4341 (GLOBAL_SOURCES): Add cygw32.c.
4342 ($(BLD)/unexw32.$(O)):
4343 ($(BLD)/w32.$(O)):
4344 ($(BLD)/w32console.$(O)):
4345 ($(BLD)/w32fns.$(O)):
4346 ($(BLD)/w32heap.$(O)):
4347 ($(BLD)/w32menu.$(O)):
4348 ($(BLD)/w32proc.$(O)): Add w32common.h.
4349
4350 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
4351 'const char *'.
4352 (x_to_w32_color): Don't modify the argument, modify a copy instead.
4353
4354 2012-10-08 Daniel Colascione <dancol@dancol.org>
4355
4356 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
4357 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
4358 accidental message numbering hole. Change other messages to
4359 match.
4360
4361 * w32select.h (HAVE_W32SELECT): Remove.
4362
4363 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
4364 w32common.h instead of w32heap.h.
4365
4366 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
4367 (get_allocation_unit, get_processor_type, get_w32_major_version)
4368 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4369 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4370 (OS_NT, os_subtype, cache_system_info): Move declarations to
4371 w32common.
4372
4373 * w32heap.c: Include w32common.h.
4374 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
4375 (w32_minor_version, w32_build_number, w32_subtype):
4376 Remove duplicate definitions.
4377
4378 * w32fns.c: Include w32common.h; include w32heap.h only in
4379 WINDOWSNT.
4380
4381 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
4382 Use `report_file_error' instead of `error' in order to better
4383 inform users of what went wrong. Increase NTGUI_UNICODE file
4384 dialog box file name length to 32k, the maximum allowed by the NT
4385 kernel.
4386
4387 * w32common.h: New file.
4388 (ROUND_UP, ROUND_DOWN, get_page_size)
4389 (get_allocation_unit, get_processor_type, get_w32_major_version)
4390 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4391 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4392 (OS_NT, os_subtype, cache_system_info): Move here.
4393
4394 * unexw32.c, unexcw.c: Include w32common.h.
4395
4396 * emacs.c (main): Use (defined (WINDOWSNT) || defined
4397 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
4398 to call syms_of_w32select.
4399
4400 * cygw32.h: Remove obsolete EXFUN declarations.
4401
4402 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
4403
4404 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
4405 of w32inevt.o from SOME_MACHINE_OBJECTS.
4406
4407 2012-10-08 Daniel Colascione <dancol@dancol.org>
4408
4409 * image.c: Permanent fix for JPEG compilation issue --- limit
4410 jpeglib `boolean' redefinition to Cygwin builds.
4411
4412 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4413
4414 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4415
4416 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4417 Cygwin.
4418
4419 2012-10-08 Daniel Colascione <dancol@dancol.org>
4420
4421 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4422 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4423 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4424 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4425 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4426 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4427 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4428 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4429 now a supported configuration.
4430
4431 * Makefile.in: consolidate image variables into LIBIMAGE; add
4432 W32_OBJ and W32_LIBS. Compile new files.
4433
4434 * conf_post.h:
4435 (_DebPrint) declare tracing facility for W32 debugging. We need
4436 to unify tracing later.
4437
4438 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4439 unconditional use of W32 Unicode functions. Cygwin runs only on
4440 100% Unicode operating systems.
4441
4442 * cygw32.c: New file. Define Cygwin-specific facilities.
4443 (Fcygwin_convert_path_to_windows)
4444 (Fcygwin_convert_path_from_windows): New user functions for
4445 accessing Cygwin path-munging routines.
4446
4447 * cygw32.h: New file.
4448 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4449 UTF-16LE strings temporarily inside non-Lisp-visible string
4450 objects.
4451
4452 (w32_strerror): Just what it says on the tin.
4453
4454 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4455 also run for Cygwin; both systems have the same problem with using
4456 GUI facilities in a forked child. Also call syms_of_cygw32,
4457 syms_of_w32select in correct places.
4458
4459 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4460 needs fork-then-exec for daemon launching.
4461
4462 * font.h: Include frame.h.
4463
4464 * image.c: Use the image library cache machinery only when we're
4465 compiling for native WINDOWSNT; Cygwin can use shared libraries
4466 like any other Unixlike system.
4467
4468 * keyboard.c: Clarify a comment regarding the input loop.
4469
4470 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4471 functions directly instead of trying to detect at runtime that our
4472 host operating system supports them. We make this change for two
4473 reasons: Cygwin lacks support for the multibyte character
4474 conversion functions used by the legacy menu code, and Cygwin
4475 never needs to rely on non-Unicode APIs.
4476
4477 * unexw32.c (hinst): Declare extern.
4478
4479 * w32.c: Change header order;
4480 (w32_strerror): Move to w32fns.c because we need it for
4481 non-WINDOWSNT builds.
4482
4483 * w32.h: Add #error macro to make sure we don't include w32.h for
4484 Cygwin builds. Remove w32select declarations.
4485
4486 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4487 w32fns.c. w32console.c is WINDOWSNT-only.
4488
4489 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4490 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4491 POSIXy alternative.
4492 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4493 (w32_major_version, w32_minor_version, w32_build_number)
4494 (os_subtype, sound_type): Define here
4495 (w32_defined_color): Make color parameter const for consistency
4496 with other _defined_color functions.
4497 (w32_createwindow): Unconditionally call w32_init_class instead of
4498 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4499 through the code is complex and unnecessary because class
4500 registration is practically free.
4501 (w32_name_of_message): New EMACSDEBUG-only function.
4502 (Fset_message_beep): Move here
4503 (Fx_open_connection): Require that the display name for Windows be
4504 "w32" for consistency, emacsclient disambiguation, and maybe, one
4505 day, multi-window-system support.
4506 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4507 Cygwin files for W32 GUI facilities, since these clearly don't
4508 expect Cygwin names.
4509 (_DebPrint): Define.
4510 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4511 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4512 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
4513 (w32_last_error): Remove.
4514
4515 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
4516
4517 * w32heap.c (syspage_mask): Declare here.
4518 (cache_system_info): Remove.
4519
4520 * w32inevt.c (faked_key): Define globally, not statically.
4521 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
4522 (w32_console_toggle_lock_key): Move to w32fns.c.
4523
4524 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
4525
4526 * w32proc.c (_DebPrint): Move to w32fns.c.
4527 * w32select.c: Include string.h, stdio.h for Cygwin.
4528 * w32select.h: New File.
4529
4530 * w32term.c: Include io.h for non-CYGWIN builds; needed for
4531 get_osfhandle.
4532 (w32_message_fd): New variable. Under Cygwin, holds the file
4533 descriptor the system used to tell us about pending thread
4534 messages.
4535
4536 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
4537 that prevented compilation under non-WINDOWSNT systems.
4538
4539 (w32_initialize): Open /dev/windows and assign it to
4540 w32_message_fd. Provide w32 feature.
4541
4542 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
4543 (WM_EMACS_INPUT_READY): add.
4544 (prepend_msg, w32_message_fd): Declare globally.
4545
4546 * w32xfns.c:
4547 (keyboard_handle): Use only when WINDOWSNT.
4548 (notify_msg_ready): New function. Posts a message to the main
4549 thread's message queue under CYGWIN, which wakes up the main
4550 thread from select(2) by making the /dev/windows file descriptor
4551 ready. Under WINDOWSNT, it sets an event the same way the old
4552 code did.
4553
4554 (post, prepend_msg): Actually call notify_msg_ready instead of
4555 setting the input event directly.
4556
4557 2012-10-07 Eli Zaretskii <eliz@gnu.org>
4558
4559 * ralloc.c (relinquish): If a heap is ready to be relinquished,
4560 but it still has blocs in it, don't return it to the system,
4561 instead of aborting. (Bug#12402)
4562
4563 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4564
4565 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
4566
4567 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4568 MAC_OS_X_VERSION_10_6.
4569 (syms_of_nsterm): Remove comment about Panther and above for
4570 ns-antialias-text.
4571 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
4572 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
4573 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
4574
4575 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
4576 MAC_OS_X_VERSION_10_4.
4577
4578 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4579 MAC_OS_X_VERSION_10_2.
4580
4581 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
4582
4583 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
4584 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
4585
4586 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4587 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
4588 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4589 Remove ns_in_resize check.
4590 (ns_clear_frame_area): Remove resize handle code.
4591
4592 * nsfns.m (ns_in_resize): Remove.
4593 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4594 Remove ns_in_resize check.
4595
4596 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
4597
4598 Improve sys_siglist detection.
4599 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
4600 defined as a macro, as is done in Solaris.
4601 (sys_siglist_entries): New macro.
4602 (save_strsignal): Use it.
4603 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
4604 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
4605
4606 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
4607
4608 * nsfns.m (Fx_create_frame): Call x_default_parameter with
4609 fullscreen/Fullscreen.
4610
4611 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
4612 tobar_height is new.
4613
4614 * nsterm.m (x_make_frame_visible): Check for fullscreen.
4615 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
4616 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
4617 (windowDidResize:): Check for correct window if old style fullscreen.
4618 Capitalize word in comment. Remove incorrect comment.
4619 (initFrameFromEmacs:): tbar_height renamed tibar_height.
4620 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
4621 error in drawing background.
4622 (toggleFullScreen:): Remove comment. Rearrange calls.
4623 Set toolbar values to zero, save old height in tobar_height.
4624 Restore tool bar height when leaving fullscreen.
4625 (canBecomeMainWindow): New function.
4626
4627 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4628
4629 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4630
4631 2012-10-05 Eli Zaretskii <eliz@gnu.org>
4632
4633 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4634
4635 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
4636 that time stamps of directories could also be changed.
4637 Don't request the too broad GENERIC_WRITE, only the more restrictive
4638 FILE_WRITE_ATTRIBUTES access rights.
4639
4640 * fileio.c (Fset_file_times): Special-case ignoring errors for
4641 directories only on MSDOS, not on MS-Windows.
4642
4643 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4644
4645 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4646
4647 2012-10-04 Eli Zaretskii <eliz@gnu.org>
4648
4649 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
4650 see whether CreateFile failed.
4651
4652 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
4653
4654 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
4655 to avoid similar races.
4656 * keyboard.c (pending_signals): Now bool, not int.
4657
4658 Port timers to OpenBSD, plus check for timer failures.
4659 OpenBSD problem reported by Han Boetes.
4660 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
4661 and/or setitimer.
4662 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
4663 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
4664 like OpenBSD, which has timer_settime but does not declare it.
4665 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
4666 whether to use itimerspec-related primitives. All uses of
4667 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
4668
4669 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4670
4671 * profiler.c (handle_profiler_signal): Fix a malloc race
4672 that caused Emacs to hang on Fedora 17 when profiling Lisp.
4673
4674 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4675
4676 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4677
4678 2012-10-02 Eli Zaretskii <eliz@gnu.org>
4679
4680 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
4681 consistent with the change in return value of 'safe_strsignal'.
4682
4683 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4684
4685 Prefer plain 'static' to 'static inline' (Bug#12541).
4686 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
4687 (bidi_set_sor_type, bidi_push_embedding_level)
4688 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
4689 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
4690 (bidi_cache_search, bidi_cache_ensure_space)
4691 (bidi_cache_iterator_state, bidi_cache_find)
4692 (bidi_peek_at_next_level, bidi_set_paragraph_end)
4693 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4694 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
4695 Now 'static', not 'static inline'.
4696
4697 Count overruns when profiling; change units to ns.
4698 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
4699 Give extra weight to samples after overruns, to attempt to count
4700 the time more accurately.
4701 (setup_cpu_timer): Change sampling interval units from ms to ns, since
4702 the underlying primitives nominally do ns.
4703 (Fprofiler_cpu_start): Document the change. Mention that
4704 the sampling intervals are only approximate.
4705
4706 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4707
4708 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
4709
4710 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
4711 case for the special 0 coding-system.
4712
4713 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
4714 (Fmake_overlay): Remove redundant tests.
4715 (fix_start_end_in_overlays): Remove redundant recentering.
4716
4717 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
4718
4719 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4720 Update dependencies.
4721
4722 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4723
4724 Fix a malloc race condition involving strsignal.
4725 A signal can arrive in the middle of a malloc, and Emacs's signal
4726 handler can invoke strsignal, which can invoke malloc, which is
4727 not portable. This race condition bug makes Emacs hang on GNU/Linux.
4728 Fix it by altering the signal handler so that it does not invoke
4729 strsignal.
4730 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
4731 * process.c (status_message): Use const pointer, in case strsignal
4732 is #defined to safe_strsignal.
4733 * sysdep.c (sys_siglist, init_signals): Always define and
4734 initialize a substitute sys_siglist if the system does not define
4735 one, even if HAVE_STRSIGNAL.
4736 (safe_strsignal): Rename from strsignal. Always define,
4737 using sys_siglist. Return a const pointer.
4738 * syssignal.h (safe_strsignal): New decl.
4739 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
4740
4741 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4742
4743 * w32proc.c (timer_loop): Fix code that waits for timer
4744 expiration, to avoid high CPU usage.
4745
4746 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4747
4748 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
4749 (sweep_weak_table): Remove redundant prototypes.
4750
4751 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
4752
4753 * emacs.c: Move the inclusion of TERM_HEADER after including
4754 windows.h on WINDOWSNT. This avoids compilation problems with
4755 MSVC.
4756
4757 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4758
4759 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
4760 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
4761 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
4762 as the previous version used 'void *'.
4763
4764 * ralloc.c (ROUNDUP): Fix last change.
4765 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
4766 'size_t'.
4767
4768 * w32proc.c <disable_itimers>: New static flag.
4769 (init_timers): Initialize it to zero, after creating the critical
4770 sections used by the timer threads.
4771 (term_timers): Set to 1 before deleting the critical sections.
4772 (getitimer, setitimer): If disable_itimers is non-zero, return an
4773 error indication without doing anything. Reported by Fabrice
4774 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4775 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
4776 return results.
4777 [!HAVE_SETITIMER]: Behave as the previous version that didn't
4778 support timers.
4779
4780 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
4781 term_ntproc after all the other bookkeeping, to get timers working
4782 as long as possible.
4783
4784 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4785
4786 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
4787 Suggested by Juri Linkov in
4788 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
4789
4790 Prefer plain 'static' to 'static inline' (Bug#12541).
4791 With static functions, modern compilers inline pretty well by
4792 themselves; advice from programmers often hurts as much as it helps.
4793 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
4794 this change shrinks the text size of the Emacs executable by 1.1%
4795 without affecting CPU significantly in my benchmark.
4796 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
4797 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
4798 (mark_maybe_object, mark_maybe_pointer, bounded_number):
4799 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4800 (bset_auto_fill_function, bset_auto_save_file_format)
4801 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4802 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4803 (bset_cache_long_line_scans, bset_case_fold_search)
4804 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4805 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4806 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4807 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4808 (bset_header_line_format, bset_indicate_buffer_boundaries)
4809 (bset_indicate_empty_lines, bset_invisibility_spec)
4810 (bset_left_fringe_width, bset_major_mode, bset_mark)
4811 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4812 (bset_name, bset_overwrite_mode, bset_pt_marker)
4813 (bset_right_fringe_width, bset_save_length)
4814 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4815 (bset_scroll_up_aggressively, bset_selective_display)
4816 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4817 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
4818 (set_buffer_overlays_after):
4819 * category.c (bset_category_table):
4820 * charset.c (read_hex):
4821 * coding.c (produce_composition, produce_charset)
4822 (handle_composition_annotation, handle_charset_annotation)
4823 (char_encodable_p):
4824 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
4825 (assign_row, set_frame_matrix_frame, make_current)
4826 (add_row_entry):
4827 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
4828 * fns.c (maybe_resize_hash_table):
4829 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
4830 * gmalloc.c (register_heapinfo):
4831 * image.c (lookup_image_type):
4832 * intervals.c (set_interval_object, set_interval_left)
4833 (set_interval_right, copy_interval_parent, rotate_right)
4834 (rotate_left, balance_possible_root_interval):
4835 * keyboard.c (kset_echo_string, kset_kbd_queue)
4836 (kset_keyboard_translate_table, kset_last_prefix_arg)
4837 (kset_last_repeatable_command, kset_local_function_key_map)
4838 (kset_overriding_terminal_local_map, kset_real_last_command)
4839 (kset_system_key_syms, clear_event, set_prop):
4840 * lread.c (digit_to_number):
4841 * marker.c (attach_marker, live_buffer, set_marker_internal):
4842 * nsterm.m (ns_compute_glyph_string_overhangs):
4843 * process.c (pset_buffer, pset_command)
4844 (pset_decode_coding_system, pset_decoding_buf)
4845 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
4846 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
4847 (pset_status, pset_tty_name, pset_type, pset_write_queue):
4848 * syntax.c (bset_syntax_table, dec_bytepos):
4849 * terminal.c (tset_param_alist):
4850 * textprop.c (interval_has_some_properties)
4851 (interval_has_some_properties_list):
4852 * window.c (wset_combination_limit, wset_dedicated)
4853 (wset_display_table, wset_hchild, wset_left_fringe_width)
4854 (wset_left_margin_cols, wset_new_normal, wset_new_total)
4855 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4856 (wset_right_fringe_width, wset_right_margin_cols)
4857 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
4858 (wset_vertical_scroll_bar_type, wset_window_parameters):
4859 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4860 (wset_column_number_displayed, wset_region_showing)
4861 (window_box_edges, run_window_scroll_functions)
4862 (append_glyph_string_lists, prepend_glyph_string_lists)
4863 (append_glyph_string, set_glyph_string_background_width)
4864 (append_glyph, append_composite_glyph)
4865 (take_vertical_position_into_account):
4866 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
4867 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
4868 (lface_hash, lface_same_font_attributes_p, lookup_face):
4869 * xml.c (libxml2_loaded_p):
4870 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
4871 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
4872 Now 'static', not 'static inline'.
4873
4874 * bidi.c: Tune.
4875 (bidi_copy_it): Do the whole copy with a single memcpy.
4876 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
4877
4878 Revert the FOLLOW-SYMLINKS change for file-attributes.
4879 Doing it right would require several changes to Tramp, and there's
4880 not enough time to get that tested before the freeze today.
4881 * dired.c (directory_files_internal, Ffile_attributes):
4882 Undo last change.
4883
4884 * frame.c (x_report_frame_params): Port better to wider ints.
4885 Do not assume that EMACS_UINT is the same width as uprintmax_t,
4886 or that pointers can be printed in 15 decimal digits.
4887 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
4888
4889 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
4890
4891 Support x64 build on MS-Windows.
4892 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
4893 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
4894 compatibility with x64.
4895 (x_get_focus_frame): Add prototype.
4896
4897 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
4898 defining an XRectangle structure.
4899
4900 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
4901 arithmetics for compatibility with x64.
4902
4903 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
4904 compatibility with x64.
4905
4906 * w32heap.h: Adjust prototypes and declarations.
4907
4908 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
4909 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
4910 DWORD, long, and unsigned long, for compatibility with x64.
4911 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
4912 (sbrk): Argument is now of type ptrdiff_t.
4913
4914 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
4915 less than 0x0500.
4916 (w32_msg_pump): Use WPARAM type for 'result'.
4917
4918 * w32.c (init_environment, get_emacs_configuration): Support AMD64
4919 architecture.
4920 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
4921 compatibility with x64.
4922
4923 * vm-limit.c (lim_data): Now size_t.
4924 (check_memory_limits): Adjust prototypes of real_morecore and
4925 __morecore to receive argument of type ptrdiff_t. Use size_t for
4926 five_percent and data_size.
4927
4928 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
4929 variables, for compatibility with x64.
4930 (rva_to_section, offset_to_section, relocate_offset)
4931 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
4932 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
4933 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
4934 for compatibility with x64.
4935
4936 * sysdep.c (STDERR_FILENO): Define if not already defined.
4937
4938 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
4939 (__morecore): Argument type is now ptrdiff_t.
4940 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
4941 (relinquish): Use ptrdiff_t type for 'excess'.
4942 (r_alloc_sbrk): Argument type is now ptrdiff_t.
4943
4944 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
4945 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
4946 instead of a literal number.
4947
4948 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
4949 (min): Define only if not already defined.
4950
4951 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
4952 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
4953 hosts.
4954
4955 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
4956 'bitmaps' is a pointer.
4957
4958 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
4959
4960 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
4961
4962 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4963
4964 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4965 * dired.c (directory_files_internal, Ffile_attributes):
4966 New arg follow_symlinks. All uses changed.
4967
4968 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4969
4970 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4971
4972 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4973
4974 Support atimers and CPU profiler via profile.c on MS-Windows.
4975 * w32proc.c (sig_mask, crit_sig): New static variables.
4976 (sys_signal): Support SIGALRM and SIGPROF.
4977 (sigemptyset, sigaddset, sigfillset, sigprocmask)
4978 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
4979 sigfillset, and sigprocmask are no longer no-ops.
4980 (sigismember): New function.
4981 (struct itimer_data): New definition.
4982 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
4983 (crit_prof): New static variables.
4984 (MAX_SINGLE_SLEEP): New definition.
4985 (timer_loop, stop_timer_thread, term_timers, init_timers)
4986 (start_timer_thread, getitimer, setitimer): New functions.
4987 (alarm): No longer a no-op, calls setitimer.
4988
4989 * w32.c (term_ntproc): Call term_timers.
4990 (init_ntproc): Make sure all signals are unblocked at startup, to
4991 erase any traces of dumping. Call init_timers.
4992
4993 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
4994 Windows-specific code to display the hourglass mouse pointer is no
4995 longer used.
4996 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
4997 to hourglass timer expiration.
4998 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
4999 Remove, no longer used.
5000 (w32_note_current_window, show_hourglass, hide_hourglass):
5001 New functions, in support of hourglass cursor display similar to other
5002 window systems.
5003 (syms_of_w32fns): Don't initialize hourglass_timer.
5004
5005 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
5006 WINDOWSNT as well.
5007 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
5008
5009 * w32.h (init_timers, term_timers): Add prototypes.
5010
5011 2012-09-30 Kenichi Handa <handa@gnu.org>
5012
5013 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
5014 to the buffer relocation which may be caused by ccl_driver.
5015
5016 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5017
5018 * xfns.c (Fx_file_dialog): Update comment.
5019
5020 * w32fns.c (Fx_file_dialog): Update comment.
5021
5022 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
5023 Initialize panel name field if OSX >= 10.6.
5024
5025 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
5026
5027 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
5028
5029 * nsterm.m (NEW_STYLE_FS): New define.
5030 (ns_fullscreen_hook, windowWillEnterFullScreen)
5031 (windowDidEnterFullScreen, windowWillExitFullScreen)
5032 (windowDidExitFullScreen, toggleFullScreen, handleFS)
5033 (setFSValue): New functions.
5034 (EmacsFSWindow): New implementation.
5035 (canBecomeKeyWindow): New function for EmacsFSWindow.
5036 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
5037 (dealloc): Release nonfs_window if in fullscreen.
5038 (updateFrameSize:): Call windowDidMove to update top/left.
5039 (windowWillResize:toSize:): Check if frame is still maximized.
5040 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
5041 next_maximized, maximized_width, maximized_height and nonfs_window.
5042 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
5043 tbar_height.
5044 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
5045 fullscreen. Set maximized_width/height. Act on next_maximized.
5046
5047 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
5048 (EmacsView): Add variables for fullscreen.
5049 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
5050 (EmacsFSWindow): New interface for fullscreen.
5051
5052 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
5053
5054 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5055
5056 2012-09-30 Chong Yidong <cyd@gnu.org>
5057
5058 * fns.c (Frandom): Doc fix.
5059
5060 2012-09-30 Martin Rudalics <rudalics@gmx.at>
5061
5062 * window.c (Vwindow_combination_limit): New default value.
5063 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
5064
5065 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5066
5067 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
5068 Suggested by Eli Zaretskii in
5069 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
5070
5071 2012-09-30 Eli Zaretskii <eliz@gnu.org>
5072
5073 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
5074 HAVE_TIMER_SETTIME is defined.
5075
5076 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5077
5078 Profiler improvements: more-accurate timers, overflow checks.
5079 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
5080 signal.h, setjmp.h. Include systime.h instead.
5081 (saturated_add): New function.
5082 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
5083 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
5084 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
5085 New static vars.
5086 (enum profiler_cpu_running): New enum.
5087 (profiler_cpu_running): Now of that enum type, not bool.
5088 All uses changed to store the new value.
5089 (handle_profiler_signal): Rename from sigprof_handler_1,
5090 for consistency with other handlers. Do not check whether
5091 cpu_log is a hash-table if garbage collecting, since it
5092 doesn't matter in that case.
5093 (deliver_profiler_signal): Rename from sigprof_handler,
5094 for consistency with other handlers.
5095 (setup_cpu_timer): New function, with much of what used to be in
5096 Fprofiler_cpu_start. Check for out-of-range argument.
5097 Prefer timer_settime if available, and prefer
5098 thread cputime clocks, then process cputime clocks, then
5099 monotonic clocks, to the old realtime clock. Use make_timeval
5100 to round more-correctly when falling back to setitimer.
5101 (Fprofiler_cpu_start): Use it.
5102 (Fprofiler_cpu_stop): Prefer timer_settime if available.
5103 Don't assume that passing NULL as the 2nd argument of setitimer
5104 is the same as passing a pointer to all-zero storage.
5105 Ignore SIGPROF afterwards.
5106 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
5107 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
5108 non-fatal signal handlers. Ignore SIGPROF on startup.
5109 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
5110 in profiler.c, since sysdep.c now uses it.
5111
5112 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
5113 Suggested by Eli Zaretskii in
5114 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
5115
5116 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
5117
5118 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5119
5120 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
5121
5122 * lisp.h (struct backtrace): Remove indirection for `function' field.
5123 * xdisp.c (redisplay_internal):
5124 * profiler.c (record_backtrace, sigprof_handler_1):
5125 * alloc.c (Fgarbage_collect):
5126 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
5127 (Fbacktrace_frame): Adjust accordingly.
5128
5129 2012-09-28 Glenn Morris <rgm@gnu.org>
5130
5131 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
5132 (Frun_hook_with_args_until_failure): Doc fixes.
5133
5134 2012-09-28 Eli Zaretskii <eliz@gnu.org>
5135
5136 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
5137 Qautomatic_redisplay and change the symbol name. All users changed.
5138
5139 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
5140
5141 * profiler.c (sigprof_handler): Fix race condition.
5142
5143 2012-09-28 Glenn Morris <rgm@gnu.org>
5144
5145 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
5146
5147 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
5148
5149 Check more robustly for timer_settime.
5150 * Makefile.in (LIB_TIMER_TIME): New macro.
5151 (LIBES): Add it.
5152 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
5153 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
5154 call timer_settime.
5155
5156 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5157
5158 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
5159
5160 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5161
5162 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5163
5164 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
5165
5166 * character.h (MAYBE_UNIFY_CHAR): Remove.
5167 * charset.c, charset.h (maybe_unify_char): Now static.
5168 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
5169 Since this stuff is now private to charset.c, there's no need for
5170 a public macro and no need to inline by hand.
5171
5172 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5173 Stefan Monnier <monnier@iro.umontreal.ca>
5174 Juanma Barranquero <lekktu@gmail.com>
5175
5176 * profiler.c: New file.
5177 * Makefile.in (base_obj): Add profiler.o.
5178 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
5179 ($(BLD)/profiler.$(O)): New target.
5180 * emacs.c (main): Call syms_of_profiler.
5181 * alloc.c (Qautomatic_gc): New constant.
5182 (MALLOC_PROBE): New macro.
5183 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
5184 (total_bytes_of_live_objects): New function.
5185 (Fgarbage_collect): Use it. Record itself in backtrace_list.
5186 Call malloc_probe for the memory profiler.
5187 (syms_of_alloc): Define Qautomatic_gc.
5188 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
5189 race condition.
5190 (struct backtrace): Move definition...
5191 * lisp.h (struct backtrace): ..here.
5192 (Qautomatic_gc, profiler_memory_running): Declare vars.
5193 (malloc_probe, syms_of_profiler): Declare functions.
5194 * xdisp.c (Qautomatic_redisplay): New constant.
5195 (redisplay_internal): Record itself in backtrace_list.
5196 (syms_of_xdisp): Define Qautomatic_redisplay.
5197
5198 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5199 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5200
5201 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
5202
5203 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
5204
5205 Prefer POSIX timers if available.
5206 They avoid a race if the timer is too close to the current time.
5207 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
5208 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
5209 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
5210
5211 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5212
5213 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
5214 CHAR_STRING_ADVANCE.
5215 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
5216 STRING_CHAR_ADVANCE.
5217
5218 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5219
5220 Move Vlibrary_cache to emacs.c and reset before dumping.
5221
5222 * lisp.h (reset_image_types): Declare.
5223 [WINDOWSNT] (Vlibrary_cache): Declare.
5224
5225 * image.c (reset_image_types): New function.
5226
5227 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
5228 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
5229 (Fdump_emacs): Reset Vlibrary_cache and image_types.
5230
5231 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
5232 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
5233
5234 * w32.h (Vlibrary_cache): Do not declare.
5235
5236 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5237
5238 * w32proc.c (sys_signal): Handle all signals defined by the
5239 MS-Windows runtime, not just SIGCHLD. Actually install the signal
5240 handlers for signals supported by Windows. Don't override
5241 term_ntproc as the handler for SIGABRT.
5242 (sigaction): Rewrite to call sys_signal instead of duplicating its
5243 code.
5244 (sys_kill): Improve commentary.
5245
5246 * w32.c (term_ntproc): Accept (and ignore) one argument, for
5247 consistency with a signature of a signal handler. All callers
5248 changed.
5249 (init_ntproc): Accept an argument DUMPING. If dumping, don't
5250 install term_ntproc as a signal handler for SIGABRT, as that
5251 should be done by the dumped Emacs.
5252
5253 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
5254
5255 * w32select.c (term_w32select): Protect against repeated
5256 invocation by setting clipboard_owner to NULL after calling
5257 DestroyWindow.
5258
5259 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
5260 and term_ntproc to their modified signatures.
5261
5262 * character.c (char_string, string_char): Remove calls to
5263 MAYBE_UNIFY_CHAR. See the discussion starting at
5264 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
5265 for the details.
5266
5267 2012-09-25 Chong Yidong <cyd@gnu.org>
5268
5269 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
5270
5271 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5272
5273 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
5274 when encountering an unknown bytecode.
5275
5276 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
5277
5278 image.c, indent.c: Use bool for booleans.
5279 * dispextern.h (struct image_type): Members valid_p, load, init
5280 now return bool, not int. All uses changed.
5281 * image.c: Omit unnecessary static decls.
5282 (x_create_bitmap_mask, x_build_heuristic_mask):
5283 Return void, not int, since callers don't care about the return value.
5284 (x_create_bitmap_mask, define_image_type, valid_image_p)
5285 (struct image_keyword, parse_image_spec, image_spec_value)
5286 (check_image_size, image_background)
5287 (image_background_transparent, x_clear_image_1)
5288 (postprocess_image, lookup_image, x_check_image_size)
5289 (x_create_x_image_and_pixmap, xbm_image_p)
5290 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
5291 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
5292 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
5293 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
5294 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
5295 (png_image_p, init_png_functions, png_load_body, png_load)
5296 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
5297 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
5298 (init_gif_functions, gif_load, imagemagick_image_p)
5299 (imagemagick_load_image, imagemagick_load, svg_image_p)
5300 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
5301 (gs_load):
5302 * nsimage.m (ns_load_image):
5303 * nsterm.m (ns_defined_color):
5304 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
5305 * xfns.c (x_defined_color):
5306 * xterm.c (x_alloc_lighter_color_for_widget)
5307 (x_alloc_nearest_color_1, x_alloc_nearest_color)
5308 (x_alloc_lighter_color):
5309 * indent.c (disptab_matches_widthtab, current_column)
5310 (scan_for_column, string_display_width, indented_beyond_p)
5311 (compute_motion, vmotion, Fvertical_motion):
5312 Use bool for booleans.
5313
5314 2012-09-24 Chong Yidong <cyd@gnu.org>
5315
5316 * chartab.c (Fset_char_table_default): Obsolete function removed.
5317
5318 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5319
5320 Move pid_t related decls out of lisp.h.
5321 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
5322 (interruptible_wait_for_termination):
5323 Move these decls from lisp.h to syswait.h, since they use pid_t.
5324 Needed on FreeBSD; see Herbert J. Skuhra in
5325 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
5326 * callproc.c: Include syswait.h.
5327
5328 gnutls.c, gtkutil.c: Use bool for boolean.
5329 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
5330 (emacs_gnutls_handle_error):
5331 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
5332 (xg_hide_tooltip, xg_create_frame_widgets)
5333 (create_dialog, xg_uses_old_file_dialog)
5334 (xg_get_file_with_chooser, xg_get_file_with_selection)
5335 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
5336 (xg_item_label_same_p, xg_update_menubar)
5337 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
5338 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
5339 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
5340 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
5341 (update_frame_tool_bar, free_frame_tool_bar):
5342 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
5343 * nsmenu.m (ns_update_menubar):
5344 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
5345 * xfns.c (Fx_show_tip) [USE_GTK]:
5346 Use bool for boolean.
5347 * gtkutil.c (xg_update_frame_menubar):
5348 * xmenu.c (update_frame_menubar):
5349 Return void, not int, since caller ignores return value.
5350 * gtkutil.c (xg_change_toolbar_position):
5351 Return void, not 1.
5352
5353 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5354
5355 * makefile.w32-in (BLOCKINPUT_H): Remove.
5356 (SYSSIGNAL_H): New macro.
5357 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
5358 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
5359 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
5360 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
5361 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
5362 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
5363 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
5364 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
5365 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
5366 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
5367 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
5368 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
5369 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
5370 ($(BLD)/w32xfns.$(O)): Update dependencies.
5371
5372 2012-09-23 Eli Zaretskii <eliz@gnu.org>
5373
5374 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
5375 fatal_error_backtrace.
5376
5377 * w32proc.c (sys_kill): Undo last change: don't do anything when
5378 invoked to deliver SIGABRT to our own process. This is now
5379 handled by emacs_raise.
5380
5381 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5382
5383 * w32term.c (w32_read_socket): Remove leftover reference to
5384 interrupt_input_pending.
5385
5386 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5387
5388 Do not use SA_NODEFER.
5389 Problem reported by Dani Moncayo in
5390 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
5391 * alloc.c (die):
5392 * sysdep.c (emacs_abort): Do not reset signal handler.
5393 * emacs.c (terminate_due_to_signal): Reset signal handler here.
5394 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
5395 wanted even on POSIXish hosts, and it doesn't work on Windows.
5396
5397 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5398
5399 * xterm.c (x_term_init): Call fixup_locale before and after calling
5400 gtk_init (Bug#12392).
5401
5402 2012-09-23 Chong Yidong <cyd@gnu.org>
5403
5404 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
5405 Vdynamic_library_alist.
5406
5407 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
5408 (Fgnutls_available_p): Caller changed.
5409
5410 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
5411 (Flibxml_parse_xml_region): Likewise.
5412
5413 * dispextern.h (struct image_type): Remove arg from init function.
5414
5415 * image.c (Finit_image_library, lookup_image_type)
5416 (define_image_type): Remove now-unneeded second arg.
5417 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5418 (init_tiff_functions, init_gif_functions, init_svg_functions):
5419 Arglist and w32_delayed_load calling convention changed.
5420 (gs_type): Remove init_gs_functions; there is no such function.
5421 (valid_image_p, make_image): Fix caller to lookup_image_type.
5422
5423 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5424
5425 Simplify and avoid signal-handling races (Bug#12471).
5426 * alloc.c (die):
5427 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5428 Avoid recursive loop if there's a fatal error in the function itself.
5429 * atimer.c (pending_atimers):
5430 * blockinput.h: Don't include "atimer.h"; no longer needed.
5431 (interrupt_input_pending): Remove. All uses removed.
5432 pending_signals now counts both atimers and ordinary interrupts.
5433 This is less racy than having three separate pending-signal flags.
5434 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5435 (input_blocked_p):
5436 Rename from their upper-case counterparts BLOCK_INPUT,
5437 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5438 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5439 This makes it easier to access volatile variables more accurately.
5440 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5441 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5442 that's more reliable if the code is buggy and sets
5443 interrupt_input_blocked to a negative value. All uses changed.
5444 * atimer.c (deliver_alarm_signal):
5445 Remove. No need to deliver this to the parent; any thread can
5446 handle this signal now. All uses replaced by underlying handler.
5447 * atimer.c (turn_on_atimers):
5448 * dispnew.c (handle_window_change_signal):
5449 * emacs.c (handle_danger_signal):
5450 * keyboard.c (kbd_buffer_get_event):
5451 Don't reestablish signal handler; not needed with sigaction.
5452 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5453 (UNBLOCK_INPUT_TO):
5454 Rework to avoid unnecessary accesses to volatile variables.
5455 (UNBLOCK_INPUT_TO): Now a function.
5456 (totally_unblock_input, unblock_input): New decls.
5457 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5458 (init_data): Remove. Necessary stuff now done in init_signal.
5459 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5460 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5461 (fatal_error_code): Remove; no longer needed.
5462 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5463 it doesn't always backtrace. All uses changed. No need to reset
5464 signal to default, since sigaction and/or die does that for us now.
5465 Use emacs_raise (FOO), not kill (getpid (), FOO).
5466 (main): Check more-accurately whether we're dumping.
5467 Move fatal-error setup to sysdep.c
5468 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5469 * gtkutil.c (xg_get_file_name, xg_get_font):
5470 Remove no-longer-needed signal-mask manipulation.
5471 * keyboard.c, process.c (POLL_FOR_INPUT):
5472 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5473 * keyboard.c (read_avail_input): Remove.
5474 All uses replaced by gobble_input.
5475 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5476 (kbd_buffer_store_event_hold, gobble_input):
5477 (record_asynch_buffer_change) [USABLE_SIGIO]:
5478 (store_user_signal_events):
5479 No need to mess with signal mask.
5480 (gobble_input): If blocking input and there are terminals, simply
5481 set pending_signals to 1 and return. All hooks changed to not
5482 worry about whether input is blocked.
5483 (process_pending_signals): Clear pending_signals before processing
5484 them, in case a signal comes in while we're processing.
5485 By convention callers now test pending_signals before calling us.
5486 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5487 New functions, to support changes to blockinput.h.
5488 (handle_input_available_signal): Now extern.
5489 (reinvoke_input_signal): Remove. All uses replaced by
5490 handle_async_input.
5491 (quit_count): Now volatile, since a signal handler uses it.
5492 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5493 All callers changed. Block SIGINT only if not already blocked.
5494 Clear sigmask reliably, even if Fsignal returns, which it can.
5495 Omit unnecessary accesses to volatile var.
5496 (quit_throw_to_read_char): No need to restore sigmask.
5497 * keyboard.c (gobble_input, handle_user_signal):
5498 * process.c (wait_reading_process_output):
5499 Call signal-handling code rather than killing ourselves.
5500 * lisp.h: Include <float.h>, for...
5501 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5502 (pending_signals): Now volatile.
5503 (syms_of_data): Now const if IEEE floating point.
5504 (handle_input_available_signal) [USABLE_SIGIO]:
5505 (terminate_due_to_signal, record_child_status_change): New decls.
5506 * process.c (create_process): Avoid disaster if memory is exhausted
5507 while we're processing a vfork, by tightening the critical section
5508 around the vfork.
5509 (send_process_frame, process_sent_to, handle_pipe_signal)
5510 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5511 ignores SIGPIPE.
5512 (send_process): No need for setjmp/longjmp any more, since the
5513 SIGPIPE stuff is now gone. Instead, report an error if errno
5514 is EPIPE.
5515 (record_child_status_change): Now extern. PID and W are now args.
5516 Return void, not bool. All callers changed.
5517 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
5518 Remove. All uses removed. This bug should be fixed now in a
5519 different way.
5520 (wait_for_termination_1): Use waitpid rather than sigsuspend,
5521 and record the child status change directly. This avoids the
5522 need to futz with the signal mask.
5523 (process_fatal_action): Move here from emacs.c.
5524 (emacs_sigaction_flags): New function, containing
5525 much of what used to be in emacs_sigaction_init.
5526 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
5527 caught by emacs, to make races less likely.
5528 (deliver_process_signal): Rename from handle_on_main_thread.
5529 All uses changed.
5530 (BACKTRACE_LIMIT_MAX): Now at top level.
5531 (thread_backtrace_buffer, threadback_backtrace_pointers):
5532 New static vars.
5533 (deliver_thread_signal, deliver_fatal_thread_signal):
5534 New functions, for more-accurate delivery of thread-specific signals.
5535 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
5536 (deliver_arith_signal): Handle in this thread, not
5537 in the main thread, since it's triggered by this thread.
5538 (maybe_fatal_sig): New function.
5539 (init_signals): New arg DUMPING so that we can be more accurate
5540 about whether we're dumping. Caller changed.
5541 Treat thread-specific signals differently from process-general signals.
5542 Block all signals while handling fatal error; that's safer.
5543 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
5544 on IEEE hosts.
5545 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
5546 Ignore SIGPIPE unless batch.
5547 (emacs_backtrace): Output backtrace for the appropriate thread,
5548 which is not necessarily the main thread.
5549 * syssignal.h: Include <stdbool.h>.
5550 (emacs_raise): New macro.
5551 * xterm.c (x_connection_signal): Remove; no longer needed
5552 now that we use sigaction.
5553 (x_connection_closed): No need to mess with sigmask now.
5554 (x_initialize): No need to reset SIGPIPE handler here, since
5555 init_signals does this for us now.
5556
5557 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5558
5559 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
5560 background rect may be larger (Bug#12245).
5561
5562 2012-09-23 Chong Yidong <cyd@gnu.org>
5563
5564 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5565
5566 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5567
5568 * .gdbinit: Just stop at fatal_error_backtrace.
5569 See Stefan Monnier's request in
5570 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
5571 Remove no-longer-used query of system type.
5572
5573 2012-09-22 Chong Yidong <cyd@gnu.org>
5574
5575 * search.c (Freplace_match): Doc fix (Bug#12325).
5576
5577 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
5578
5579 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
5580 (Fline_end_position): Doc fix.
5581
5582 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
5583
5584 2012-09-22 Chong Yidong <cyd@gnu.org>
5585
5586 * dispextern.h (struct image_type): Add new slot, storing a type
5587 initialization function.
5588
5589 * image.c (define_image_type): Call the image initializer function
5590 if it is defined. Arguments and return value changed.
5591 (valid_image_p, make_image): Callers changed.
5592 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
5593 (gif_type, imagemagick_type, svg_type, gs_type):
5594 Add initialization functions.
5595 (Finit_image_library): Call lookup_image_type.
5596 (CHECK_LIB_AVAILABLE): Macro deleted.
5597 (lookup_image_type): Call define_image_type here, rather than via
5598 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
5599 (syms_of_image): Move define_image_type calls for xbm_type and
5600 pbm_type to lookup_image_type.
5601
5602 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5603
5604 * keyboard.c (timer_check_2): Move calculation of 'timers' and
5605 'idle_timers' from here ...
5606 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
5607 lists, to avoid infloops when the timer does something stupid,
5608 like reinvoke itself with the same or smaller time-out.
5609 (Bug#12447)
5610
5611 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5612
5613 * window.c (Fsplit_window_internal): Handle only Qt value of
5614 Vwindow_combination_limit separately.
5615 (Qtemp_buffer_resize): New symbol.
5616 (Vwindow_combination_limit): New default value.
5617 Rewrite doc-string.
5618
5619 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5620
5621 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
5622 the new overlay string. (Bug#10159)
5623
5624 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5625
5626 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
5627 or that fprintf is async-signal-safe. POSIX doesn't require
5628 either assumption.
5629
5630 2012-09-22 Chong Yidong <cyd@gnu.org>
5631
5632 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5633 (Bug#8207).
5634
5635 2012-09-22 Kenichi Handa <handa@gnu.org>
5636
5637 * composite.c (composition_reseat_it): Handle the case that a
5638 grapheme cluster is not covered by a single font (Bug#12352).
5639
5640 2012-09-21 Chong Yidong <cyd@gnu.org>
5641
5642 * image.c (define_image_type): Avoid adding duplicate types to
5643 image_types (Bug#12463). Suggested by Jörg Walter.
5644
5645 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5646
5647 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
5648 (print_load_command_name): Add case LC_DATA_IN_CODE.
5649 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
5650
5651 2012-09-21 Glenn Morris <rgm@gnu.org>
5652
5653 * eval.c (Frun_hook_with_args_until_success)
5654 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5655
5656 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
5657
5658 * fileio.c (Ffile_selinux_context): Only call freecon when
5659 lgetfilecon succeeded.
5660 (Fset_file_selinux_context): Likewise. (Bug#12444)
5661
5662 2012-09-21 Eli Zaretskii <eliz@gnu.org>
5663
5664 * xdisp.c (try_window_reusing_current_matrix): Under bidi
5665 reordering, locate the cursor by calling set_cursor_from_row; if
5666 that fails, clear the desired glyph matrix before returning a
5667 failure indication to the caller. Fixes leaving garbled display
5668 when fast scrolling with a down-key. (Bug#12403)
5669 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5670 scrolling through multibyte text.
5671
5672 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5673
5674 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
5675 calling mark_vectorlike since that's the one that marks the window.
5676 (mark_discard_killed_buffers): Mark the final cdr.
5677 * window.h (struct window): Move prev/next_buffers to the
5678 non-standard fields.
5679 * window.c (make_window): Initialize prev/next_buffers manually.
5680
5681 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
5682
5683 Omit unused arg EXPECTED from socket hooks.
5684 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
5685 * nsterm.m (ns_term_init):
5686 * termhooks.h (struct terminal.read_socket_hook):
5687 * w32inevt.c (w32_console_read_socket):
5688 * w32term.c (w32_read_socket):
5689 * xterm.c (XTread_socket):
5690 Omit unused arg EXPECTED. All callers changed.
5691 (store_user_signal_events): Return void, not int, since callers no
5692 longer care about the return value. All uses changed.
5693
5694 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
5695
5696 * w32gui.h (XParseGeometry): Do not declare.
5697
5698 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5699
5700 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
5701 Ignore 'expected'. See Eli Zaretskii in
5702 <http://bugs.gnu.org/12471#8> (last line).
5703
5704 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
5705 (XParseGeometry): Now static. Substitute extremal values for
5706 values that are out of range.
5707
5708 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5709
5710 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
5711
5712 * nsfns.m (XParseGeometry): Remove.
5713 (Fx_create_frame): Call x_set_offset to correctly interpret
5714 top_pos in geometry.
5715
5716 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
5717 (Fx_parse_geometry): If there is a space in string, call
5718 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
5719
5720 2012-09-17 Eli Zaretskii <eliz@gnu.org>
5721
5722 * search.c (scan_buffer): Use character positions in calls to
5723 region_cache_forward and region_cache_backward, not byte
5724 positions. (Bug#12196)
5725
5726 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5727 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5728
5729 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
5730 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
5731 emacs_blocked_malloc, now deleted.
5732
5733 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
5734
5735 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
5736 The workaround was for improving performance on Solaris 2.4, but
5737 is getting in the way now. Emacs will still work if someone is
5738 still running Solaris 2.4 in a museum somewhere; Sun dropped
5739 support for Solaris 2.4 in 2003.
5740 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
5741 * process.c (create_process) [HAVE_WORKING_VFORK]:
5742 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
5743 since Emacs no longer uses vfork on that platform.
5744
5745 2012-09-17 Glenn Morris <rgm@gnu.org>
5746
5747 * emacs.c: Use COPYRIGHT.
5748
5749 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5750
5751 Remove configure's --without-sync-input option (Bug#12450).
5752 When auditing signal-handling in preparation for cleaning it up,
5753 I found that SYNC_INPUT has race conditions and would be a real
5754 pain to fix. Since it's an undocumented and deprecated
5755 configure-time option, now seems like a good time to remove it.
5756 Also see <http://bugs.gnu.org/11080#16>.
5757 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
5758 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
5759 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5760 (malloc_hysteresis):
5761 (check_depth) [XMALLOC_OVERRUN_CHECK]:
5762 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
5763 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
5764 (dont_register_blocks, bytes_used_when_reconsidered)
5765 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
5766 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
5767 [!SYSTEM_MALLOC && !SYNC_INPUT]:
5768 Remove. All uses removed.
5769 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
5770 implementation, one that depends on whether the new macro
5771 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
5772 is defined.
5773 * atimer.c (run_timers, handle_alarm_signal):
5774 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
5775 (handle_async_input, process_pending_signals)
5776 (handle_input_available_signal, init_keyboard):
5777 * nsterm.m (ns_read_socket):
5778 * process.c (wait_reading_process_output):
5779 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
5780 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
5781 (emacs_write):
5782 * xterm.c (XTread_socket):
5783 Assume SYNC_INPUT.
5784 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
5785 * eval.c (handling_signal): Remove. All uses removed.
5786 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
5787 All uses replaced with the SYNC_INPUT version.
5788 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
5789 Remove decls.
5790 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5791 Now static.
5792
5793 * font.c (Ffont_shape_gstring): Remove unused local.
5794
5795 2012-09-16 Glenn Morris <rgm@gnu.org>
5796
5797 * Makefile.in (clean): No longer run nextstep's clean.
5798
5799 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
5800 (ns_frag): Remove.
5801 (ns-app): Move here from ns.mk, and simplify.
5802 (clean): Simplify nextstep entry.
5803 * ns.mk: Remove file.
5804
5805 2012-09-17 Kenichi Handa <handa@gnu.org>
5806
5807 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
5808 not covert the last few charactes.
5809
5810 2012-09-16 Kenichi Handa <handa@gnu.org>
5811
5812 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
5813 here, but just check the validity of glyphs in the glyph-string.
5814
5815 2012-09-16 Martin Rudalics <rudalics@gmx.at>
5816
5817 * window.c (Fwindow_parameter, Fset_window_parameter):
5818 Accept any window as argument (Bug#12452).
5819
5820 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
5821
5822 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
5823 to ns_term_init to avoid memory leak.
5824
5825 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
5826 explicit retain/release.
5827 (ns_term_init): Only allow one display. Initialize outerpool and
5828 ns_*_types.
5829
5830 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5831
5832 Port _setjmp fix to POSIXish hosts as well as Microsoft.
5833 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
5834 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
5835 the Microsoft problem in a different way, by altering ../nt/config.nt.
5836
5837 2012-09-15 Eli Zaretskii <eliz@gnu.org>
5838
5839 * w32xfns.c:
5840 * w32uniscribe.c:
5841 * w32term.c:
5842 * w32select.c:
5843 * w32reg.c:
5844 * w32proc.c:
5845 * w32menu.c:
5846 * w32inevt.c:
5847 * w32heap.c:
5848 * w32font.c:
5849 * w32fns.c:
5850 * w32console.c:
5851 * w32.c:
5852 * w16select.c: Remove inclusion of setjmp.h, as it is now included
5853 by lisp.h. This completes removal of setjmp.h inclusion
5854 erroneously announced in the previous commit. (Bug#12446)
5855
5856 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
5857 more accurate.
5858
5859 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
5860 not defined as a macro. The latter happens on MS-Windows.
5861 (Bug#12446)
5862
5863 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5864
5865 Port better to POSIX hosts lacking _setjmp (Bug#12446).
5866 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
5867 Some instances of '#include <setjmp.h>' removed, if the
5868 only reason for the instance was because "lisp.h" was included.
5869 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
5870 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
5871 and _longjmp with the new symbols. Emacs already uses _setjmp if
5872 available, so this change affects only POSIXish hosts that have
5873 sigsetjmp but not _setjmp, such as some versions of Solaris and
5874 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
5875 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
5876 (png_load_body) [HAVE_PNG]:
5877 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
5878 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
5879 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
5880 since PNG requires jmp_buf. This is the only exception to the
5881 general rule that we now use sys_setjmp and sys_longjmp.
5882 This exception is OK since this code does not change the signal
5883 mask or longjmp out of a signal handler.
5884
5885 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
5886
5887 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5888 Include "syssignal.h", for 'main_thread'.
5889
5890 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5891
5892 Avoid out-of-range marker position (Bug#12426).
5893 * insdel.c (replace_range, replace_range_2):
5894 Adjust markers before overlays, as suggested by comments.
5895 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5896 Remove redundant check before calling offset_intervals.
5897
5898 2012-09-14 Martin Rudalics <rudalics@gmx.at>
5899
5900 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5901 current buffer (Bug#12387).
5902
5903 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
5904
5905 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5906
5907 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5908
5909 Use a more backwards-compatible timer format (Bug#12430).
5910 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
5911 vector element, not from the 4th, since PSECS is now at the end.
5912 (Fcurrent_idle_time): Doc fix.
5913
5914 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
5915
5916 Function to mark objects and remove killed buffers at once.
5917 * alloc.c (discard_killed_buffers): Rename to ...
5918 (mark_discard_killed buffers) ... new name. Add marking
5919 of remaining objects. Fix comment. Adjust users.
5920 (mark_object): Do not touch frame buffer lists here.
5921 * frame.c (delete_frame): Reset frame buffer lists here.
5922
5923 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5924
5925 Better workaround for GNOME bug when --enable-gcc-warnings.
5926 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
5927 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
5928 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
5929
5930 Simplify SIGIO usage (Bug#12408).
5931 The code that dealt with SIGIO was crufty and confusing, e.g., it
5932 played tricks like "#undef SIGIO" but these tricks were not used
5933 consistently. Simplify mostly by not #undeffing standard symbols,
5934 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
5935 or not as we please) rather than "defined SIGIO" (standard symbol
5936 that we probably shouldn't #undef).
5937 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
5938 Modules that need it can include it.
5939 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
5940 * dispextern.h (ignore_sigio): New decl.
5941 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
5942 unconditionally, since it's now a no-op if !USABLE_SIGIO.
5943 * emacs.c (shut_down_emacs):
5944 * keyboard.c (kbd_buffer_store_event_hold):
5945 Use ignore_sigio rather than invoking 'signal' directly.
5946 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
5947 for FIONREAD.
5948 (FIONREAD, SIGIO): Do not #undef.
5949 (tty_read_avail_input): Use #error rather than a syntax error.
5950 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
5951 for I_PIPE, used by SETUP_SLAVE_PTY.
5952 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
5953 * sysdep.c (croak): Remove; no longer needed. This bit of
5954 temporary code, with Fred N. Fish's comment that it's temporary,
5955 has been in Emacs since at least 1992!
5956 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
5957 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
5958 * syssignal.h (croak): Remove decl.
5959 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
5960 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
5961 now that we're termios-only.
5962 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
5963 * term.c (dissociate_if_controlling_tty): Use #error rather than
5964 a run-time error.
5965
5966 Work around GCC and GNOME bugs when --enable-gcc-warnings.
5967 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
5968 to work around GNOME bug 683906.
5969 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
5970 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
5971 This works around GCC bug 54561.
5972
5973 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5974
5975 More fixes for 'volatile' and setjmp/longjmp.
5976 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
5977 * image.c (struct png_load_context) [HAVE_PNG]: New type.
5978 (png_load_body) [HAVE_PNG]:
5979 (jpeg_load_body) [HAVE_JPEG]:
5980 New function, with most of the old parent function's body.
5981 (png_load) [HAVE_PNG]:
5982 (jpeg_load) [HAVE_JPEG]:
5983 Invoke the new function, to avoid longjmp munging our locals.
5984 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
5985 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
5986 longjmp is passed 2, as the C standard doesn't guarantee this.
5987 Instead, store the failure code into mgr->failure_code.
5988
5989 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5990
5991 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
5992 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
5993 (syms_of_keyboard): Remove support for unread-command-char.
5994
5995 2012-09-12 Eli Zaretskii <eliz@gnu.org>
5996
5997 * w32proc.c (sys_kill): If PID is our process ID and the signal is
5998 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
5999 violation. (Bug#12426)
6000
6001 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6002
6003 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
6004
6005 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
6006
6007 * eval.c: Add `inhibit-debugger'.
6008 (Qinhibit_debugger): New symbol.
6009 (call_debugger): Bind it instead of Qdebug_on_error.
6010 (maybe_call_debugger): Test Vinhibit_debugger.
6011 (syms_of_eval): Define inhibit-debugger.
6012 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
6013 (syms_of_xdisp): Remove inhibit-debug-on-message.
6014
6015 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6016
6017 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
6018 If a nonvolatile local variable is written before a _longjmp to
6019 the frame containing the variable, and is read after the _longjmp,
6020 the value read is indeterminate. Some local variables of type
6021 'struct handler' and 'struct catchtag' are used in this way, so
6022 mark each of their slots as volatile if the slot can be set before
6023 _longjmp and read afterwards.
6024 * lisp.h (struct handler): var and chosen_clause are now volatile.
6025 (struct catchtag): val, next, and pdlcount are now volatile.
6026
6027 * bidi.c (bidi_push_it, bidi_pop_it):
6028 * fns.c (copy_hash_table):
6029 * image.c (define_image_type):
6030 * keyboard.c (kbd_buffer_store_event_hold):
6031 * process.c (Fprocess_send_eof):
6032 * xfaces.c (x_create_gc) [HAVE_NS]:
6033 * xgselect.c (xg_select):
6034 Prefer assignment to memcpy when either will do.
6035
6036 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
6037 Use pointer-to-a-pointer to simplify and avoid a NILP check each
6038 time an item is removed. No need to mark this function 'inline';
6039 the compiler knows better than we do.
6040
6041 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
6042
6043 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
6044 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
6045 to change_frame_size (Bug#12388).
6046 (windowDidResize:): Pass YES to updateFrameSize.
6047
6048 * nsterm.h: Add delay parameter to updateFrameSize.
6049
6050 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6051
6052 Discard killed buffers from deleted window and frame objects.
6053 This reduces an amount of references to killed buffers and
6054 helps GC to reclaim them faster.
6055 * alloc.c (discard_killed_buffers): New function.
6056 (mark_object): Use it for deleted windows and frames.
6057 (mark_object): If symbol's value is set up for a killed buffer
6058 or deleted frame, restore its global binding.
6059 * data.c (swap_in_global_binding): Add GC notice.
6060 (swap_in_symval_forwarding): Use convenient set_blv_where.
6061 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
6062 * window.h: ... to here.
6063
6064 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
6065
6066 Convenient macro to check whether the buffer is live.
6067 * buffer.h (BUFFER_LIVE_P): New macro.
6068 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
6069 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
6070
6071 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
6072
6073 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
6074 composition cases (Bug#12364).
6075
6076 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
6077 overhang of succeeding glyphs overlapping box cursor.
6078
6079 * w32term.c (x_draw_glyph_string): Likewise.
6080
6081 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6082
6083 Simplify, document, and port floating-point (Bug#12381).
6084 The porting part of this patch fixes bugs on non-IEEE platforms
6085 with frexp, ldexp, logb.
6086 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
6087 Now static.
6088 * floatfns.c: Simplify discussion of functions that Emacs doesn't
6089 support, by removing commented-out code and briefly listing the
6090 C89 functions excluded. The commented-out stuff was confusing
6091 maintenance, e.g., we thought we needed cbrt but it was commented out.
6092 (logb): Remove decl; no longer needed.
6093 (isfinite): New macro, if not already supplied.
6094 (isnan): Don't replace any existing macro.
6095 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
6096 are present on all C89 platforms.
6097 (Ffrexp): Do not special-case zero, as frexp does the right thing
6098 for that case.
6099 (Flogb): Do not use logb, as it doesn't have the desired meaning
6100 on hosts that use non-base-2 floating point. Instead, stick with
6101 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
6102 frexp, to avoid getting an unspecified result.
6103
6104 * xdisp.c (Qinhibit_debug_on_message): Now static.
6105
6106 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
6107
6108 * nsterm.m (ns_update_begin): Set clip path to whole view by using
6109 NSBezierPath (Bug#12131).
6110
6111 2012-09-10 Chong Yidong <cyd@gnu.org>
6112
6113 * fns.c (Fdelq, Fdelete): Doc fix.
6114
6115 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
6116
6117 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
6118 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
6119
6120 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
6121
6122 * lisp.h (make_lisp_ptr): New macro to replace XSET.
6123 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
6124 Use it.
6125
6126 2012-09-09 Eli Zaretskii <eliz@gnu.org>
6127
6128 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
6129 left fringe if the window has a left margin. This avoids leaving
6130 traces of the cursor because its leftmost pixel is not drawn over.
6131
6132 * dispnew.c (update_window_line): When the left margin area of a
6133 screen line is updated, set the redraw_fringe_bitmaps_p flag of
6134 that screen line. (Bug#12277)
6135
6136 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
6137
6138 Assume C89 or later for math functions (Bug#12381).
6139 This simplifies the code, and makes it a bit smaller and faster,
6140 and (most important) makes it easier to clean up signal handling
6141 since we can stop worring about floating-point exceptions in
6142 library code. That was a problem before C89, but the problem
6143 went away many years ago on all practical Emacs targets.
6144 * data.c, image.c, lread.c, print.c:
6145 Don't include <math.h>; no longer needed.
6146 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
6147 might be autoconfigured, as that never happens.
6148 * data.c (fmod):
6149 * doprnt.c (DBL_MAX_10_EXP):
6150 * print.c (DBL_DIG):
6151 Remove. C89 or later always defines these.
6152 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
6153 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
6154 (arith_error, domain_error, domain_error2):
6155 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
6156 no longer needed -- we simply return what C returns. All uses removed.
6157 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
6158 the wrapped code.
6159 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
6160 Remove. All uses expanded, as these macros are no longer used
6161 more than once and are now more trouble than they're worth.
6162 (Ftan): Use tan, not sin / cos.
6163 (Flogb): Assume C89 frexp.
6164 (fmod_float): Assume C89 fmod.
6165 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
6166 (init_floatfns): Remove. All uses removed.
6167
6168 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6169
6170 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
6171 compositeToPoint for OSX < 10.6 (Bug#12390).
6172
6173 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
6174
6175 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
6176 This produces more-accurate results.
6177
6178 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6179
6180 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
6181 changes (Bug#12088).
6182
6183 2012-09-08 Chong Yidong <cyd@gnu.org>
6184
6185 * syntax.c (Fstring_to_syntax): Doc fix.
6186
6187 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6188
6189 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
6190 in the internal border.
6191 (x_set_window_size): Remove static variables and their usage.
6192 (ns_redraw_scroll_bars): Fix NSTRACE arg.
6193 (ns_after_update_window_line, ns_draw_fringe_bitmap):
6194 Remove fringe/internal border adjustment (Bug#11052).
6195 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
6196 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
6197 (ns_fix_rect_ibw): Remove.
6198 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
6199 (ns_dumpglyphs_box_or_relief): Ditto.
6200 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
6201 adjustment.
6202 (ns_dumpglyphs_image): Ditto.
6203 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
6204 border adjustment.
6205 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
6206 their usage. Add fringe_extended_p and its use as in other terms.
6207 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
6208 scroll bar was removed.
6209 (updateFrameSize): New function.
6210 (windowDidResize): Move code to updateFrameSize and call it.
6211
6212 * nsterm.h (EmacsView): Add updateFrameSize.
6213
6214 2012-09-07 Chong Yidong <cyd@gnu.org>
6215
6216 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
6217
6218 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
6219
6220 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6221
6222 More signal-handler cleanup (Bug#12327).
6223 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
6224 Problem introduced when merging patches. Noted by Eli Zaretskii in
6225 <http://bugs.gnu.org/12327#67>.
6226 * floatfns.c: Comment fix.
6227 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
6228 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
6229 and anyway the declaration is harmless even if SIGDANGER is not defined.
6230 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
6231 defined BROKEN_FIONREAD). systty.h formerly did this, but other
6232 source files not surprisingly expected syssignal.h to define, or
6233 not define, SIGIO, and it's cleaner to do it that way, for consistency.
6234 Include <sys/ioctl.h>, for FIONREAD.
6235 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
6236 This eliminates a problem whereby other files mysteriously had
6237 to include "syssignal.h" before including "systty.h" if they
6238 wanted to use "#ifdef SIGIO".
6239
6240 2012-09-07 Eli Zaretskii <eliz@gnu.org>
6241
6242 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
6243
6244 * w32.c (sigemptyset): Empty the set.
6245 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
6246
6247 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
6248
6249 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
6250
6251 * alloc.c (mark_buffer): Revert unsafe marking optimization.
6252 (mark_object): Likewise for frame objects.
6253
6254 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6255
6256 * syssignal.h (handle_on_main_thread): Always declare,
6257 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
6258 This ports to platforms without HAVE_PTHREAD.
6259
6260 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6261
6262 Signal-handler cleanup (Bug#12327).
6263 Emacs's signal handlers were written in the old 4.2BSD style with
6264 sigblock and sigmask and so forth, and this led to some
6265 inefficiencies and confusion. Rewrite these to use
6266 pthread_sigmask etc. without copying signal sets around. Also,
6267 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
6268 'signal', and instead use functions that do not attempt to take
6269 over the system name space. This patch causes Emacs's text
6270 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
6271 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
6272 Do not include <signal.h> or "syssignal.h", as these
6273 modules do not use signals.
6274 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
6275 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
6276 Do not include <signal.h>, as "syssignal.h" does that for us now.
6277 * atimer.c (sigmask_atimers): New function.
6278 (block_atimers, unblock_atimers): New functions,
6279 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
6280 All uses replaced.
6281 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
6282 no longer needed here.
6283 * emacs.c (main): Inspect existing signal handler with sigaction,
6284 so that there's no need to block and unblock SIGHUP.
6285 * sysdep.c (struct save_signal): New member 'action', replacing
6286 old member 'handler'.
6287 (save_signal_handlers, restore_signal_handlers):
6288 Use sigaction instead of 'signal' to save and restore.
6289 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
6290 New function. All users of 'signal' modified to use set_sighandler
6291 if they're writeonly, and to use sys_signal if they're read+write.
6292 (emacs_sigaction_init, forwarded_signal): New functions.
6293 (sys_signal): Remove. All uses replaced by calls to sigaction
6294 and emacs_sigaction_init, or by direct calls to 'signal'.
6295 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
6296 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
6297 all uses replaced by pthread_sigmask etc. calls.
6298 * syssignal.h: Include <signal.h>.
6299 (emacs_sigaction_init, forwarded_signal): New decls.
6300 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
6301 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
6302 (sigmask, sys_sigmask): Remove; no longer needed.
6303 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
6304 (sigblock, sigunblock, sigfree):
6305 (sigsetmask) [!defined sigsetmask]:
6306 Remove. All uses replaced by pthread_sigmask.
6307 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
6308 no longer need to be replaced, and its typical old uses
6309 are now done via emacs_sigaction_init and sigaction.
6310 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
6311 (sys_sigdel): Remove; unused.
6312 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
6313
6314 2012-09-06 Eli Zaretskii <eliz@gnu.org>
6315
6316 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
6317 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
6318
6319 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6320
6321 Explicitly mark buffer_defaults and buffer_local_symbols.
6322 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
6323 mark_local_symbols here.
6324 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
6325 since special buffers aren't marked here any more.
6326 (allocate_buffer): Chain new buffer with all_buffers here...
6327 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
6328 not here.
6329 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
6330 (syms_of_buffer): Remove staticpro of the above.
6331 (init_buffer_once): Set names for buffer_defaults and
6332 buffer_local_symbols.
6333
6334 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6335
6336 Use bool for booleans in font-related modules.
6337 * font.c (font_intern_prop, font_style_to_value)
6338 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
6339 (generate_otf_features, font_check_otf_features, font_check_otf)
6340 (font_match_p, font_list_entities, font_at):
6341 * fontset.c (fontset_id_valid_p, reorder_font_vector
6342 (fontset_find_font, Fset_fontset_font)
6343 (face_suitable_for_char_p) [0]:
6344 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
6345 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
6346 (m17n_flt_initialized, ftfont_shape_by_flt):
6347 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
6348 * nsfont.m (nsfont_draw):
6349 * w32font.c (w32font_draw):
6350 * w32term.c (x_draw_glyphless_glyph_string_foreground):
6351 Use bool for booleans.
6352 * font.h: Adjust to above API changes.
6353 (struct font, struct font_driver, struct font_driver_list):
6354 Use bool for booleans.
6355 (struct font): Remove useless member encoding_type.
6356 All users removed.
6357 * fontset.c, xftfont.c: Omit unnecessary static decls.
6358
6359 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6360
6361 * alloc.c (mark_object): Revert window marking code
6362 since it's unsafe for the Fset_window_configuration.
6363
6364 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6365
6366 Fix race conditions with signal handlers and errno (Bug#12327).
6367 Be more systematic about preserving errno whenever a signal
6368 handler returns, even if it's not in the main thread. Do this by
6369 renaming signal handlers to distinguish between signal delivery
6370 and signal handling. All uses changed.
6371 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
6372 * data.c (deliver_arith_signal): Rename from arith_error.
6373 * dispnew.c (deliver_window_change_signal): Rename from
6374 window_change_signal.
6375 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
6376 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
6377 * keyboard.c (deliver_input_available_signal): Rename from
6378 input_available_signal.
6379 (deliver_user_signal): Rename from handle_user_signal.
6380 (deliver_interrupt_signal): Rename from interrupt_signal.
6381 * process.c (deliver_pipe_signal): Rename from send_process_trap.
6382 (deliver_child_signal): Rename from sigchld_handler.
6383 * atimer.c (handle_alarm_signal):
6384 * data.c (handle_arith_signal):
6385 * dispnew.c (handle_window_change_signal):
6386 * emacs.c (handle_fatal_signal, handle_danger_signal):
6387 * keyboard.c (handle_input_available_signal):
6388 * keyboard.c (handle_user_signal, handle_interrupt_signal):
6389 * process.c (handle_pipe_signal, handle_child_signal):
6390 New functions, with the actual signal-handling code taken from the
6391 original respective signal handlers, sans the sporadic attempts to
6392 preserve errno, since that's now done by handle_on_main_thread.
6393 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
6394 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
6395 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6396 Move to sysdep.c.
6397 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6398 Move initialization of main_thread to sysdep.c's init_signals.
6399 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
6400 our usage, and simplifies the mainline code.
6401 (record_child_status_change): New static function, as a helper
6402 for handle_child_signal, and with most of the old child handler's
6403 contents.
6404 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
6405 (handle_child_signal): Use the above.
6406 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6407 Moved here from emacs.c.
6408 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
6409 code moved here from emacs.c's main function.
6410 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
6411 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6412 This lets callers save and restore errno properly.
6413
6414 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6415
6416 Remove redundant or unused things here and there.
6417 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6418 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6419 * editfns.c (Fcompare_buffer_substrings): Likewise.
6420 * frame.h (struct terminal, struct font_driver_list):
6421 Remove redundant declarations.
6422 * window.h (Qleft, Qright): Likewise.
6423
6424 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6425
6426 Do not mark objects from deleted buffers, windows and frames.
6427 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6428 (mark_object): Likewise for windows and frames.
6429
6430 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6431
6432 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6433 buffer_defaults and buffer_local_symbols as valid objects.
6434 Return special value to denote them.
6435
6436 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6437
6438 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6439 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6440 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6441 (file_name_absolute_p, Fsubstitute_in_file_name):
6442 (check_executable, check_writable, Ffile_accessible_directory_p)
6443 (Fset_file_selinux_context, Fdefault_file_modes)
6444 (Finsert_file_contents, choose_write_coding_system)
6445 (Fwrite_region, build_annotations, a_write, e_write)
6446 (Fdo_auto_save):
6447 * filelock.c (boot_time_initialized, get_boot_time)
6448 (get_boot_time_1, lock_file_1, within_one_second):
6449 * floatfns.c (in_float):
6450 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6451 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6452 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6453 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6454 * window.c (compare_window_configurations):
6455 Use bool for booleans.
6456 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6457 (Fdefault_file_modes): Now mode_t, not int, for modes.
6458 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6459 (internal_delete_file): Now returns void, not a (boolean) int,
6460 since nobody was looking at the return value.
6461 * lisp.h, window.h: Adjust to above API changes.
6462
6463 * xdisp.c (set_message): Simplify and reindent last change.
6464
6465 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6466
6467 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6468
6469 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6470
6471 * eval.c (call_debugger): Make the function non-static so that we
6472 can call it from set_message.
6473
6474 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6475 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6476
6477 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6478
6479 Give more-useful info on a fatal error (Bug#12328).
6480 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6481 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6482 of doing the work ourselves.
6483 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6484 do most of the work.
6485 (fatal_error_backtrace): New function, taken from the guts
6486 of the old fatal_error_signal, but with a new option to output
6487 a backtrace.
6488 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6489 info about the signal than just its number.
6490 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6491 * sysdep.c: Include <execinfo.h>
6492 (emacs_backtrace): New function, taken partly from the previous
6493 code of the 'die' function.
6494 (emacs_abort): Call fatal_error_backtrace rather than abort.
6495
6496 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6497
6498 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6499 eager (load-time) macro-expansion.
6500 * lisp.mk (lisp): Add macroexp.
6501
6502 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6503
6504 Simplify redefinition of 'abort' (Bug#12316).
6505 Do not try to redefine the 'abort' function. Instead, redo
6506 the code so that it calls 'emacs_abort' rather than 'abort'.
6507 This removes the need for the NO_ABORT configure-time macro
6508 and makes it easier to change the abort code to do a backtrace.
6509 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6510 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6511 Remove; sysdep.c's emacs_abort now takes its place.
6512 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
6513 'abort' changed to use 'emacs_abort'.
6514 * msdos.c (dos_abort) [defined abort]: Remove; not used.
6515 (abort) [!defined abort]: Rename to ...
6516 (emacs_abort): ... new name.
6517 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
6518 the place of the old 'abort' in emacs.c.
6519 * w32.c, w32fns.c (abort): Do not #undef.
6520 * w32.c (emacs_abort): Rename from w32_abort.
6521
6522 2012-09-04 Eli Zaretskii <eliz@gnu.org>
6523
6524 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
6525 offsets[j].dv, since the y axis of the screen coordinates points
6526 down, while the y axis of the font definition coordinates points
6527 up. This fixes display of Arabic diacritics such as KASRA and
6528 KASRATAN. (Bug#11860)
6529
6530 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6531
6532 Be more systematic about _setjmp vs setjmp.
6533 * alloc.c (test_setjmp, mark_stack):
6534 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
6535 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
6536 (png_load, my_error_exit, jpeg_load):
6537 * process.c (send_process_trap, send_process):
6538 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
6539 The underscored versions are up to 30x faster on some hosts.
6540 Formerly, the code used setjmp+longjmp sometimes and
6541 _setjmp+_longjmp at other times, with no particular reason to
6542 prefer setjmp+longjmp.
6543
6544 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6545
6546 Fix minor problem found by static checking.
6547 * buffer.c (Fdelete_all_overlays): Return nil.
6548
6549 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6550
6551 * buffer.c (Fdelete_all_overlays): New function.
6552
6553 2012-09-03 Chong Yidong <cyd@gnu.org>
6554
6555 * gtkutil.c: Add extern decl for Qxft.
6556
6557 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6558
6559 * emacs.c, eval.c: Use bool for boolean.
6560 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
6561 (malloc_using_checking) [DOUG_LEA_MALLOC]:
6562 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
6563 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
6564 (main, decode_env_path, Fdaemon_initialized):
6565 * eval.c (call_debugger, Finteractive_p, interactive_p):
6566 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
6567 (maybe_call_debugger, Fbacktrace):
6568 * process.c (read_process_output, exec_sentinel):
6569 Use bool for booleans.
6570 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
6571 All callers changed.
6572 * eval.c (interactive_p): Omit always-true boolean argument
6573 EXCLUDE_SUBRS_P. All callers changed.
6574 * dispextern.h, lisp.h: Reflect above API changes.
6575 * firstfile.c (dummy): Use the address of 'main', whose signature
6576 won't change, instead of the address of 'initialize', whose
6577 signature just changed from int to bool.
6578 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
6579 * msdos.c (fatal_error_in_progress): ... from here.
6580 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
6581 of incrementing it.
6582 (redisplay_internal, unwind_redisplay): Simply clear
6583 REDISPLAYING_P when unwinding, instead of saving its previous,
6584 always-false value and then restoring it.
6585
6586 Clean up some extern decls.
6587 Mostly, this hoists extern decls out of .c files and into .h files.
6588 That way, we're more likely to catch errors if the interfaces change.
6589 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
6590 declare xg_mark_data.
6591 * dispextern.h (x_frame_parm_handlers):
6592 * font.h (Qxft):
6593 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
6594 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
6595 (Qultra_bold, Qoblique, Qitalic):
6596 Move extern decl here from .c file.
6597 * alloc.c (xg_mark_data) [USE_GTK]:
6598 * doc.c (Qclosure):
6599 * eval.c (Qlexical_binding):
6600 * fns.c (time) [!HAVE_UNISTD_H]:
6601 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
6602 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
6603 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
6604 * lread.c (Qinternal_interpreter_environment):
6605 * minibuf.c (Qbuffer):
6606 * process.c (QCfamily, QCfilter):
6607 * widget.c (free_frame_faces):
6608 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
6609 * xfont.c (x_clear_errors):
6610 * xterm.c (x_frame_parm_handlers):
6611 Remove now-redundant extern decls.
6612 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
6613 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
6614 Now static.
6615 * xfaces.c: Remove unnecessary static decls.
6616 * xterm.c (updating_frame): Remove decl of nonexistent object.
6617
6618 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
6619 when building globals.h, as the objects that are not built on
6620 this host are not needed to compile C files on this host.
6621
6622 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
6623
6624 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
6625
6626 * frame.h: Add missing prototype for x_wm_set_size_hint.
6627
6628 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6629
6630 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
6631 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
6632 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
6633 (Fsubstitute_command_keys):
6634 * editfns.c (region_limit, find_field, Fconstrain_to_field)
6635 (save_excursion_save, save_excursion_restore)
6636 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
6637 (format_time_string, general_insert_function)
6638 (make_buffer_string, make_buffer_string_both)
6639 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
6640 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
6641 (copy_text, insert_1, insert_1_both, insert_from_string)
6642 (insert_from_string_before_markers, insert_from_string_1)
6643 (insert_from_buffer, insert_from_buffer_1, replace_range)
6644 (replace_range_2, del_range_1, del_range_byte, del_range_both)
6645 (del_range_2, modify_region):
6646 * intervals.c (intervals_equal, balance_possible_root_interval)
6647 (adjust_intervals_for_insertion, merge_properties_sticky)
6648 (graft_intervals_into_buffer, lookup_char_property)
6649 (adjust_for_invis_intang, set_point_both)
6650 (get_property_and_range, compare_string_intervals)
6651 (set_intervals_multibyte_1, set_intervals_multibyte):
6652 * keyboard.c (decode_timer):
6653 Use bool for boolean.
6654 * intervals.h, lisp.h, systime.h: Reflect above API changes.
6655 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
6656
6657 2012-09-02 Chong Yidong <cyd@gnu.org>
6658
6659 * keymap.c (push_key_description): Print M-TAB as C-M-i
6660 (Bug#11758).
6661
6662 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
6663
6664 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
6665 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
6666 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
6667 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
6668 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
6669 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
6670 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6671
6672 2012-09-01 Eli Zaretskii <eliz@gnu.org>
6673
6674 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
6675 more than one grapheme cluster passed to the shaper: compute the
6676 offset adjustment values separately for each cluster. (Bug#11860)
6677
6678 * image.c: Restore mistakenly removed inclusion of w32.h. Without
6679 it, GCC doesn't see prototypes of w32_delayed_load, and complains
6680 about implicit conversions from integer to pointer.
6681
6682 2012-09-01 Daniel Colascione <dancol@dancol.org>
6683
6684 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
6685 system used too early.
6686
6687 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6688
6689 Better seed support for (random).
6690 * emacs.c (main): Call init_random.
6691 * fns.c (Frandom): Set the seed from a string argument, if given.
6692 Remove long-obsolete Gentzel cruft.
6693 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
6694 (init_random): New function.
6695
6696 2012-09-01 Daniel Colascione <dancol@dancol.org>
6697
6698 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
6699 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
6700 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
6701 x_wm_set_size_hint, x_query_colors, x_real_positions,
6702 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
6703 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
6704 all of which have been moved to common code.
6705
6706 * xfaces.c: Include TERM_HEADER instead of listing all possible
6707 window-system headers.
6708
6709 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
6710 to match header.
6711
6712 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
6713 directly accessing frame internals.
6714
6715 * w32font.h: Include font.h. Define syms_of_w32font and
6716 globals_of_w32font.
6717
6718 * process.c: Include TERM_HEADER instead of listing all possible
6719 window-system headers.
6720
6721 * nsterm.h: Remove declarations now in frame.h.
6722 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
6723
6724 * menu.c: Include TERM_HEADER instead of listing all possible
6725 window-system headers.
6726
6727 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
6728 window system.
6729
6730 * keyboard.c: Include TERM_HEADER instead of listing all possible
6731 window-system headers.
6732
6733 * image.c: Include TERM_HEADER instead of listing all possible
6734 window-system headers. Declare Vlibrary_cache when compiling for
6735 Windows.
6736
6737 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
6738 window system declarations.
6739
6740 * frame.h: Move common functions here: set_frame_menubar,
6741 x_set_window_size, x_sync, x_get_focus_frame,
6742 x_set_mouse_position, x_set_mouse_pixel_position,
6743 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
6744 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
6745 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
6746 x_activate_menubar, x_real_positions, x_bitmap_icon,
6747 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
6748 and x_query_colors.
6749
6750 * frame.c: Include TERM_HEADER instead of listing all possible
6751 window-system headers.
6752
6753 * font.c: Include TERM_HEADER instead of listing all possible
6754 window-system headers.
6755
6756 * emacs.c: Include TERM_HEADER.
6757
6758 * dispnew.c: Include TERM_HEADER instead of listing all possible
6759 window-system headers.
6760
6761 * ccl.h: Include character.h.
6762
6763 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
6764 the current window system; include in list of objects to link into
6765 Emacs.
6766
6767 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6768
6769 Remove mark_ttys function and fix tty_display_info initialization.
6770 * lisp.h (mark_ttys): Remove prototype.
6771 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
6772 to mark_ttys because all possible values of 'top_frame' slot are
6773 the frames which are reachable from Vframe_list.
6774 * term.c (mark_ttys): Remove.
6775 (init_tty): Safely initialize 'top_frame' slot with Qnil.
6776
6777 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6778
6779 Change struct frame bitfields from unsigned char to unsigned.
6780 * frame.h (struct frame): Change type of 'display_preempted',
6781 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
6782 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
6783 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
6784 bitfields from unsigned char to unsigned.
6785
6786 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6787
6788 Remove unused member of struct x_output and struct w32_output.
6789 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
6790 * w32term.h (struct w32_output): Likewise.
6791
6792 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
6793
6794 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
6795 does not become zero (Bug#12234).
6796
6797 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
6798
6799 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
6800 for GCC 4.7.1 x86-64.
6801
6802 2012-08-30 Glenn Morris <rgm@gnu.org>
6803
6804 * lread.c (init_lread): For out-of-tree builds, only add the
6805 source directory's site-lisp dir to the load-path if it exists,
6806 consistent with in-tree builds. (Bug#12302)
6807
6808 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6809
6810 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
6811 button_values to NULL. Call setStykeMask so dialogs get a close button.
6812 (windowShouldClose:): Set window_closed.
6813 (dealloc): New member, free button_values.
6814 (process_dialog:): Make member function. Remove window argument,
6815 replace window with self. Count buttons and allocate and store values
6816 in button_values.
6817 (addButton:value:row:): value is int with the name tag. Call setTag
6818 with tag. Remove return self, declare return value as void.
6819 (addString:row:): Remove return self, declare return value as void.
6820 (addSplit): Remove return self, declare return value as void.
6821 (clicked:): Remove return self, declare return value as void.
6822 Set dialog_return to button_values[seltag]. Code formatting change.
6823 (initFromContents:isQuestion:): Adjust call to process_dialog.
6824 Code formatting change.
6825 (timeout_handler:): Set timer_fired to YES.
6826 (runDialogAt:): Set timer_fired to NO.
6827 Handle click on close button as quit.
6828
6829 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
6830 Add window_closed and button_values. Add void as return value for
6831 add(Button|String|Split). addButton takes int instead of Lisp_Object.
6832 Add process_dialog as new member.
6833
6834 2012-08-28 Eli Zaretskii <eliz@gnu.org>
6835
6836 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
6837 is not one of the heaps we manage. (Bug#12242)
6838
6839 2012-08-28 Glenn Morris <rgm@gnu.org>
6840
6841 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6842
6843 2012-08-28 Martin Rudalics <rudalics@gmx.at>
6844
6845 * window.c (Fset_window_configuration): Remove handling of
6846 auto-buffer-name window parameter. Install revision of reverted
6847 fix.
6848
6849 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6850
6851 Do not allow to set major mode for a dead buffer.
6852 * buffer.c (Fset_buffer_major_mode): Signal an error
6853 if the buffer is dead.
6854 (Fother_buffer, other_buffer_safely): Remove redundant
6855 nested declaration.
6856
6857 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6858
6859 Always use set_buffer_if_live to restore original buffer at unwind.
6860 * buffer.h (record_unwind_current_buffer): New function.
6861 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
6862 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
6863 * undo.c, window.c: Adjust users.
6864 * buffer.c (set_buffer_if_live): Fix comment.
6865
6866 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6867
6868 Fix usage of set_buffer_internal.
6869 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
6870 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
6871 * coding.c (decode_coding): Omit redundant test.
6872 * fileio.c (decide_coding_unwind): Likewise.
6873 * fns.c (secure_hash): Likewise.
6874 * insdel.c (modify_region): Likewise.
6875 * keyboard.c (command_loop_1): Likewise.
6876 * print.c (PRINTFINISH): Likewise.
6877 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
6878
6879 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6880
6881 * dispnew.c: Use bool for boolean.
6882 (frame_garbaged, display_completed, delayed_size_change)
6883 (fonts_changed_p, add_window_display_history)
6884 (add_frame_display_history, verify_row_hash)
6885 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
6886 (row_equal_p, realloc_glyph_pool)
6887 (allocate_matrices_for_frame_redisplay)
6888 (showing_window_margins_p)
6889 (adjust_frame_glyphs_for_frame_redisplay)
6890 (build_frame_matrix_from_leaf_window, make_current)
6891 (mirrored_line_dance, mirror_line_dance, update_frame)
6892 (update_window_tree, update_single_window)
6893 (check_current_matrix_flags, update_window, update_text_area)
6894 (update_window_line, set_window_update_flags, scrolling_window)
6895 (update_frame_1, scrolling, buffer_posn_from_coords)
6896 (do_pending_window_change, change_frame_size)
6897 (change_frame_size_1, sit_for):
6898 Use bool for boolean.
6899 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
6900 and remove last int (actually boolean) argument, which was always 0.
6901 All callers changed.
6902 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
6903 * dispextern.h (struct composition_it): Use bool for boolean.
6904 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
6905 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
6906 * dired.c (file_name_completion):
6907 Use bool for boolean. (This was missed in an earlier change.)
6908
6909 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6910
6911 * window.c (Fset_window_configuration): Revert first part of
6912 last change.
6913
6914 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6915
6916 * nsterm.h (NSPanel): New class variable dialog_return.
6917
6918 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6919 Initialize dialog_return.
6920 (windowShouldClose:): Use stop instead of stopModalWithCode.
6921 (clicked:): Ditto, and also set dialog_return (Bug#12258).
6922 (timeout_handler:): Use stop instead of abortModal. Send a dummy
6923 event.
6924 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
6925 modal loop returns.
6926
6927 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6928
6929 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
6930 * composite.c (find_composition, composition_gstring_p)
6931 (composition_reseat_it, find_automatic_composition):
6932 * data.c (let_shadows_buffer_binding_p)
6933 (let_shadows_global_binding_p, set_internal, make_blv)
6934 (Fmake_variable_buffer_local, Fmake_local_variable)
6935 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
6936 (cons_to_signed, arith_driver):
6937 * dbusbind.c (xd_in_read_queued_messages):
6938 * dired.c (directory_files_internal, file_name_completion):
6939 Use bool for booleans.
6940 * dired.c (file_name_completion):
6941 * process.h (fd_callback):
6942 Omit int (actually boolean) argument. It wasn't being used.
6943 All uses changed.
6944 * composite.h, lisp.h: Reflect above API changes.
6945
6946 * cmds.c, coding.c: Use bool for booleans.
6947 * cmds.c (move_point, Fself_insert_command):
6948 * coding.h (struct composition status, struct coding_system):
6949 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
6950 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
6951 (emacs_mule_char, decode_coding_emacs_mule)
6952 (encode_coding_emacs_mule, detect_coding_iso_2022)
6953 (decode_coding_iso_2022, encode_invocation_designation)
6954 (encode_designation_at_bol, encode_coding_iso_2022)
6955 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
6956 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
6957 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
6958 (encode_coding_raw_text, detect_coding_charset)
6959 (decode_coding_charset, encode_coding_charset, detect_eol)
6960 (detect_coding, get_translation_table, produce_chars)
6961 (consume_chars, reused_workbuf_in_use)
6962 (make_conversion_work_buffer, code_conversion_save)
6963 (decode_coding_object, encode_coding_object)
6964 (detect_coding_system, char_encodable_p)
6965 (Funencodable_char_position, code_convert_region)
6966 (code_convert_string, code_convert_string_norecord)
6967 (Fset_coding_system_priority):
6968 * fileio.c (Finsert_file_contents):
6969 Use bool for booleans.
6970 * coding.h, lisp.h: Reflect above API changes.
6971 * coding.c: Remove unnecessary static function decls.
6972 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
6973 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
6974 not a boolean 'int', since callers never look at the return value.
6975 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
6976 * coding.h (decoding_buffer_size, encoding_buffer_size)
6977 (emacs_mule_string_char): Remove unused extern decls.
6978 (struct iso_2022_spec, struct coding_system):
6979 Use 'unsigned int : 1' for boolean fields, since there's more than one.
6980 (struct emacs_mule_spec): Remove unused field 'full_support'.
6981 All initializations removed.
6982 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
6983
6984 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6985
6986 Fix spare memory change (Bug#12286).
6987 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6988 (valid_lisp_object_p): Likewise.
6989
6990 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6991
6992 * window.c (Fset_window_configuration): Record any window's old
6993 buffer if it's replaced (see Bug#8789). If the new current
6994 buffer doesn't appear in the selected window, go to its old
6995 point (Bug#12208).
6996
6997 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6998
6999 Special MEM_TYPE_SPARE to denote reserved memory.
7000 * alloc.c (enum mem_type): New memory type.
7001 (refill_memory_reserve): Use new type for spare memory.
7002 This prevents live_cons_p and live_string_p from incorrect
7003 detection of uninitialized objects from spare memory as live.
7004
7005 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
7006
7007 Spelling fixes.
7008 * Makefile.in (.PHONY): versioclean -> versionclean.
7009
7010 Remove unused external symbols.
7011 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
7012 * window.c (Qwindow_valid_p, decode_valid_window):
7013 Now static, not extern.
7014 * data.c (Qinterval): Remove; unused.
7015 (syms_of_data): Do not define 'interval'.
7016 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
7017 * window.h (decode_valid_window):
7018 Remove decls.
7019
7020 * character.c, charset.c, chartab.c: Use bool for booleans.
7021 * character.c (lisp_string_width, string_count_byte8)
7022 (string_escape_byte8):
7023 * charset.c (charset_map_loaded, load_charset_map, read_hex):
7024 (load_charset_map_from_file, map_charset_chars)
7025 (Fdefine_charset_internal, define_charset_internal)
7026 (Fdeclare_equiv_charset, find_charsets_in_text)
7027 (Ffind_charset_region, char_charset, Fiso_charset):
7028 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
7029 (sub_char_table_set, sub_char_table_set_range)
7030 (char_table_set_range, optimize_sub_char_table)
7031 (map_sub_char_table):
7032 Use bool for boolean.
7033 * character.c (str_to_unibyte): Omit last boolean argument; it was
7034 always 0. All callers changed.
7035 * character.h, charset.h: Adjust to match previous changes.
7036 * character.h (char_printable_p): Remove decl of nonexistent function.
7037 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
7038 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
7039 are all boolean, so make them single-bit bitfields.
7040
7041 * lisp.h (ASET): Remove attempt to detect side effects.
7042 It was meant to be temporary and it often doesn't work,
7043 because when IDX has side effects the behavior of IDX==IDX
7044 is undefined. See Stefan Monnier in
7045 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
7046
7047 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7048
7049 * lisp.h (functionp): New function (extracted from Ffunctionp).
7050 (FUNCTIONP): Use it.
7051 * eval.c (Ffunctionp): Use it.
7052
7053 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7054
7055 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
7056 as that's faster and simpler than static storage. Don't bother
7057 with the g_main_context_query overhead if g_main_context_pending
7058 says no events are pending.
7059 (gfds, gfds_size): Remove these static vars.
7060 (xgselect_initialize): Remove; no longer needed.
7061 All uses and decls removed.
7062
7063 * emacs.c (fatal_error_signal_hook): Remove.
7064 All uses removed. This leftover from old code was always 0.
7065
7066 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
7067 * casefiddle.c (casify_object, casify_region):
7068 * casetab.c (set_case_table):
7069 * category.c, category.h (word_boundary_p):
7070 * category.h (CHAR_HAS_CATEGORY):
7071 Use bool for booleans, instead of int.
7072
7073 2012-08-25 Eli Zaretskii <eliz@gnu.org>
7074
7075 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
7076
7077 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7078
7079 On assertion failure, print backtrace if available.
7080 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
7081 (die) [ENABLE_CHECKING]: Print a backtrace if available.
7082 * Makefile.in (LIB_EXECINFO): New macro.
7083 (LIBES): Use it.
7084
7085 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
7086 * bytecode.c (exec_byte_code):
7087 * callint.c (check_mark, Fcall_interactively):
7088 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
7089 (getenv_internal, sync_process_alive, call_process_exited):
7090 * lisp.h (USE_SAFE_ALLOCA):
7091 Use bool for booleans, instead of int.
7092 * lisp.h, process.h: Adjust prototypes to match above changes.
7093 * callint.c (Fcall_interactively): Don't assume the mark's
7094 offset fits in 'int'.
7095
7096 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
7097
7098 * buffer.c, buffer.h: Use bool for boolean.
7099 * buffer.c (reset_buffer_local_variables)
7100 (buffer_lisp_local_variables, Fset_buffer_modified_p)
7101 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
7102 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
7103 (overlay_touches_p, overlay_strings, Foverlay_put)
7104 (report_overlay_modification, call_overlay_mod_hooks):
7105 (mmap_enlarge, mmap_set_vars):
7106 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
7107 Use bool for booleans, instead of int.
7108 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
7109 since the 1-or-0 return value is always ignored anyway.
7110 (mmap_initialized_p):
7111 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
7112 * buffer.h, lisp.h: Adjust prototypes to match above changes.
7113
7114 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7115
7116 * bidi.c: Use bool for boolean.
7117 This is a bit more readable, and makes the text segment of bidi.o
7118 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
7119 Presumably it's faster too.
7120 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
7121 Now bool.
7122 (bidi_cache_find_level_change, bidi_cache_iterator_state)
7123 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
7124 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
7125 (bidi_explicit_dir_char, bidi_level_of_next_char)
7126 (bidi_find_other_level_edge, bidi_move_to_visually_next):
7127 Use bool for booleans, instead of int.
7128 * dispextern.h (bidi_init_it, bidi_paragraph_init)
7129 (bidi_unshelve_cache): Adjust decls to match code.
7130
7131 2012-08-23 Martin Rudalics <rudalics@gmx.at>
7132
7133 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
7134 argument.
7135
7136 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
7137
7138 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
7139 * atimer.h: Include <stdbool.h>.
7140
7141 2012-08-22 Dan Nicolaescu <dann@gnu.org>
7142
7143 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
7144 compile time tests instead of run time tests on systems that do
7145 not use them.
7146 (FRAME_MAC_P): Remove leftover from deleted code.
7147 * frame.c (syms_of_frame): Remove leftover from deleted code.
7148
7149 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
7150
7151 * nsterm.m (insertText:): Don't clear modifiers if code is space.
7152
7153 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
7154
7155 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
7156 Otherwise, the compiler complains about (A?B:C) where B is void
7157 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
7158 (fontset_add): Return void, for FONTSET_ADD.
7159
7160 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7161
7162 * alloc.c: Use bool for booleans.
7163 (gc_in_progress, abort_on_gc)
7164 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7165 (dont_register_blocks) [GC_MALLOC_CHECK]:
7166 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
7167 (check_string_bytes, make_specified_string, memory_full)
7168 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
7169 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
7170 (mark_stack, valid_pointer_p, make_pure_string)
7171 (Fgarbage_collect, survives_gc_p, gc_sweep):
7172 Use bool for booleans, instead of int.
7173 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7174 Remove unused local.
7175 * alloc.c (PURE_POINTER_P):
7176 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
7177 * editfns.c (Fformat):
7178 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
7179 (Fdo_auto_save):
7180 * fns.c (sweep_weak_table):
7181 * lisp.h (suppress_checking, push_message, survives_gc_p)
7182 (make_pure_string, gc_in_progress, abort_on_gc):
7183 * lread.c (readchar, read1):
7184 * print.c (Fprin1_to_string):
7185 * xdisp.c (push_message):
7186 Use bool for booleans affected directly or indirectly by
7187 alloc.c's changes.
7188
7189 Make recently-introduced setters macros.
7190 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
7191 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
7192 (set_fontset_default, set_fontset_fallback): Rename from their
7193 upper-case counterparts, and make them functions rather than macros.
7194 This is more consistent with the other recently-introduced setters.
7195 These don't need to be inline, since they're local.
7196
7197 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
7198
7199 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
7200 the loop (Bug#12247).
7201
7202 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7203
7204 * lisp.h (vcopy): Use memcpy rather than our own loop.
7205 This fixes a performance regression introduced by the recent
7206 addition of vcopy. This means 'vcopy' will need to be modified
7207 for a copying collector, but that's OK. Also, tighten the
7208 checking in the assertion.
7209
7210 2012-08-21 Eli Zaretskii <eliz@gnu.org>
7211
7212 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
7213 components for RTL text (Bug#11860). Adjust X-OFFSET of each
7214 non-base glyph for the width of the base character, according to
7215 what x_draw_composite_glyph_string_foreground expects.
7216 Generate WADJUST value according to composition_gstring_width's
7217 expectations, to produce correct width of the composed character.
7218 Reverse the sign of the DU offset produced by ScriptPlace.
7219
7220 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7221
7222 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
7223
7224 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7225
7226 Avoid direct writes to contents member of struct Lisp_Vector.
7227 * lisp.h (vcopy): New function to copy data into vector.
7228 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
7229 * fns.c (Ffillarray): Use ASET.
7230 * keyboard.c (timer_check_2): Use AREF and ASET.
7231 (append_tool_bar_item, Frecent_keys): Use vcopy.
7232 * lread.c (read_vector): Use ASET.
7233 * msdos.c (Frecent_doskeys): Use vcopy.
7234 * xface.c (Finternal_copy_lisp_face): Use vcopy.
7235 (Finternal_merge_in_global_face): Use ASET and vcopy.
7236 * xfont.c (xfont_list_pattern): Likewise.
7237
7238 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7239
7240 * window.c (Fwindow_point): For the selected window always return
7241 the position of its buffer's point.
7242 (Fset_window_point): For the selected window always go in its
7243 buffer to the specified position.
7244
7245 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7246
7247 Setter macros for fontsets.
7248 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
7249 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
7250 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
7251 Adjust users.
7252
7253 2012-08-20 Glenn Morris <rgm@gnu.org>
7254
7255 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7256 Don't assume that `ln -f' works.
7257
7258 2012-08-20 Eli Zaretskii <eliz@gnu.org>
7259
7260 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
7261 and later about non-assignments with no effect. See discussion at
7262 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
7263 details.
7264
7265 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7266
7267 Inline setter functions for Lisp_Objects slots of struct specbinding.
7268 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
7269 Adjust users.
7270
7271 2012-08-20 Martin Rudalics <rudalics@gmx.at>
7272
7273 * window.c (select_window): Always make selected window's buffer
7274 current.
7275
7276 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7277
7278 Use AREF and ASET for docstrings of category tables.
7279 * category.h (CATEGORY_DOCSTRING): Use AREF.
7280 (SET_CATEGORY_DOCSTRING): Use ASET.
7281 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
7282
7283 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7284
7285 Inline setter functions for hash table members.
7286 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
7287 (set_hash_hash, set_hash_index): Rename with _slot suffix.
7288 (set_hash_key_and_value, set_hash_index, set_hash_next)
7289 (set_hash_hash): New functions.
7290 * charset.c, fns.c: Adjust users.
7291
7292 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7293
7294 Inline getter and setter functions for per-buffer values.
7295 * buffer.h (per_buffer_default, set_per_buffer_default)
7296 (per_buffer_value, set_per_buffer_value): New functions.
7297 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
7298 * buffer.c, data.c: Adjust users.
7299
7300 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
7301
7302 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
7303
7304 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
7305
7306 Rely on <config.h> + <unistd.h> to declare 'environ',
7307 as gnulib does this if the system doesn't.
7308 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
7309 Remove declaration. MS-Windows declares it on stdlib.h which is
7310 included by conf_post.h.
7311 * emacs.c (environ) [DOUG_LEA_MALLOC]:
7312 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
7313 * vm-limit.c: Include <unistd.h>, for 'environ'.
7314
7315 * unexaix.c, unexcoff.c: Include "mem-limits.h".
7316 (start_of_data): Remove decl; mem-limits.h provides it.
7317
7318 * xdisp.c (handle_invisible_prop): Make it a bit faster
7319 and avoid a gcc -Wmaybe-uninitialized diagnostic.
7320
7321 2012-08-19 Chong Yidong <cyd@gnu.org>
7322
7323 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
7324 ends (Bug#3874).
7325
7326 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
7327
7328 * .gdbinit: Use call instead of set when calling a function in the
7329 inferior.
7330
7331 * data.c (set_internal): Don't use set_blv_found.
7332 (Fkill_local_variable): Likewise.
7333
7334 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
7335
7336 * nsfont.m (ns_ascii_average_width): Ensure the string
7337 ascii_printable is initialized with a null-terminated character
7338 array. Otherwise, it can contain undesired extra characters.
7339
7340 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7341
7342 port new setting code to Sun C 5.8 2005/10/13
7343 * chartab.c, lisp.h (char_table_set, char_table_set_range):
7344 Return void, not Lisp_Object. Otherwise, the compiler
7345 complains about (A?B:C) where B is void and C is Lisp_Object
7346 when compiling CHAR_TABLE_SET, due to the recent change to
7347 the API of sub_char_table_set_contents.
7348
7349 2012-08-18 Chong Yidong <cyd@gnu.org>
7350
7351 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
7352 for the string case (Bug#3874).
7353
7354 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7355
7356 * buffer.h (BSET): Remove (Bug#12215).
7357 Replace all uses with calls to new setter functions.
7358 (bset_bidi_paragraph_direction, bset_case_canon_table)
7359 (bset_case_eqv_table, bset_directory, bset_display_count)
7360 (bset_display_time, bset_downcase_table)
7361 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
7362 (bset_last_selected_window, bset_local_var_alist)
7363 (bset_mark_active, bset_point_before_scroll, bset_read_only)
7364 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
7365 (bset_width_table):
7366 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
7367 (bset_auto_fill_function, bset_auto_save_file_format)
7368 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
7369 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
7370 (bset_cache_long_line_scans, bset_case_fold_search)
7371 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
7372 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
7373 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
7374 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
7375 (bset_header_line_format, bset_indicate_buffer_boundaries)
7376 (bset_indicate_empty_lines, bset_invisibility_spec)
7377 (bset_left_fringe_width, bset_major_mode, bset_mark)
7378 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
7379 (bset_name, bset_overwrite_mode, bset_pt_marker)
7380 (bset_right_fringe_width, bset_save_length)
7381 (bset_scroll_bar_width, bset_scroll_down_aggressively)
7382 (bset_scroll_up_aggressively, bset_selective_display)
7383 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
7384 (bset_word_wrap, bset_zv_marker):
7385 * category.c (bset_category_table):
7386 * syntax.c (bset_syntax_table):
7387 New setter functions.
7388
7389 * process.h (PSET): Remove (Bug#12215).
7390 Replace all uses with calls to new setter functions.
7391 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7392 (PROCESS_INLINE): New macro.
7393 (pset_childp): New setter function.
7394 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
7395 * process.c (PROCESS_INLINE):
7396 Define to EXTERN_INLINE, so that the corresponding functions
7397 are compiled into code.
7398 (pset_buffer, pset_command, pset_decode_coding_system)
7399 (pset_decoding_buf, pset_encode_coding_system)
7400 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
7401 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
7402 (pset_type, pset_write_queue): New setter functions.
7403
7404 * window.h (WSET): Remove (Bug#12215).
7405 Replace all uses with calls to new setter functions.
7406 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7407 (WINDOW_INLINE): New macro.
7408 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
7409 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
7410 (wset_total_lines, wset_vertical_scroll_bar)
7411 (wset_window_end_pos, wset_window_end_valid)
7412 (wset_window_end_vpos): New setter functions.
7413 * window.c (WINDOW_INLINE):
7414 Define to EXTERN_INLINE, so that the corresponding functions
7415 are compiled into code.
7416 (wset_combination_limit, wset_dedicated, wset_display_table)
7417 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7418 (wset_new_normal, wset_new_total, wset_next_buffers)
7419 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7420 (wset_prev_buffers, wset_right_fringe_width)
7421 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7422 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7423 (wset_window_parameters):
7424 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7425 (wset_column_number_displayed, wset_region_showing):
7426 New setter functions.
7427
7428 * termhooks.h (TSET): Remove (Bug#12215).
7429 Replace all uses with calls to new setter functions.
7430 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7431 (TERMHOOKS_INLINE): New macro.
7432 (tset_charset_list, tset_selection_alist): New setter functions.
7433 * terminal.c (TERMHOOKS_INLINE):
7434 Define to EXTERN_INLINE, so that the corresponding functions
7435 are compiled into code.
7436 (tset_param_alist): New setter function.
7437
7438 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7439
7440 * keyboard.h (KSET): Remove (Bug#12215).
7441 Replace all uses with calls to new setter functions.
7442 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7443 (KEYBOARD_INLINE): New macro.
7444 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7445 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7446 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7447 New setter functions.
7448 * keyboard.c (KEYBOARD_INLINE):
7449 Define to EXTERN_INLINE, so that the corresponding functions
7450 are compiled into code.
7451 (kset_echo_string, kset_kbd_queue)
7452 (kset_keyboard_translate_table, kset_last_prefix_arg)
7453 (kset_last_repeatable_command, kset_local_function_key_map)
7454 (kset_overriding_terminal_local_map, kset_real_last_command)
7455 (kset_system_key_syms): New setter functions.
7456
7457 * frame.h (FSET): Remove (Bug#12215).
7458 Replace all uses with calls to new setter functions.
7459 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7460 (FRAME_INLINE): New macro.
7461 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7462 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7463 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7464 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7465 (fset_param_alist, fset_root_window, fset_scroll_bars)
7466 (fset_selected_window, fset_title, fset_tool_bar_items)
7467 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7468 * frame.c (FRAME_INLINE):
7469 Define to EXTERN_INLINE, so that the corresponding functions
7470 are compiled into code.
7471 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7472
7473 A few more naming-convention fixes for getters and setters.
7474 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7475 and rename from buffer_overlays_set_before.
7476 (set_buffer_overlays_after): Move here from buffer.h, and rename
7477 from buffer_overlays_set_after.
7478 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7479 All uses changed.
7480 (set_buffer_intervals): Rename from buffer_set_intervals.
7481 * intervals.c (set_interval_object): Move here from intervals.h,
7482 and rename from interval_set_object.
7483 (set_interval_left): Move here from intervals.h, and rename from
7484 interval_set_left.
7485 (set_interval_right): Move here from intervals.h, and rename from
7486 interval_set_right.
7487 (copy_interval_parent): Move here from intervals.h, and rename from
7488 interval_copy_parent.
7489 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7490 (set_interval_plist): Rename from interval_set_plist.
7491 Return void, not Lisp_Object, since no caller uses the result.
7492 * lisp.h (string_intervals): Rename from string_get_intervals.
7493 (set_string_intervals): Rename from string_set_intervals.
7494
7495 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7496 (set_char_table_contents): Rename from char_table_set_contents.
7497 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7498 All uses changed. See the end of
7499 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7500
7501 * lisp.h (CSET): Remove (Bug#12215).
7502 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7503 (set_char_table_purpose): New functions,
7504 replacing CSET. All uses changed. For example, replace
7505 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7506 "set_char_table_parent (char_table, parent);".
7507 The old version was confusing because it used the same name
7508 'parent' for two different things.
7509
7510 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7511
7512 Functions to get and set Lisp_Object fields of buffer-local variables.
7513 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
7514 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
7515 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
7516 * data.c, eval.c, frame.c: Adjust users.
7517
7518 2012-08-17 Chong Yidong <cyd@gnu.org>
7519
7520 * xfaces.c (merge_face_vectors): If the target font specfies a
7521 font spec, make the font's attributes take precedence over
7522 directly-specified attributes.
7523 (merge_face_ref): Recognize :font.
7524
7525 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7526
7527 Do not use memcpy for copying intervals.
7528 * intervals.c (reproduce_interval): New function.
7529 (reproduce_tree, reproduce_tree_obj): Use it.
7530 (reproduce_tree_obj): Remove prototype.
7531
7532 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7533
7534 * lisp.h (duration_to_sec_usec): Remove unused decl.
7535
7536 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
7537
7538 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
7539 to an allocated instance of NSString, not to the class itself.
7540
7541 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
7542
7543 * makefile.w32-in (C_CTYPE_H): New macro.
7544 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
7545 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
7546 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7547
7548 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
7549
7550 Use ASCII tests for character types.
7551 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
7552 * xfns.c, xterm.c:
7553 Don't include <ctype.h>; was not needed.
7554 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
7555 * sysdep.c, xfaces.c:
7556 Include <c-ctype.h> instead of <ctype.h>.
7557 * nsterm.m: Include <c-ctype.h>.
7558 * charset.c (read_hex):
7559 * doc.c (Fsnarf_documentation):
7560 * fileio.c (IS_DRIVE) [WINDOWSNT]:
7561 (DRIVE_LETTER) [DOS_NT]:
7562 (Ffile_name_directory, Fexpand_file_name)
7563 (Fsubstitute_in_file_name):
7564 * font.c (font_parse_xlfd, font_parse_fcname):
7565 * frame.c (x_set_font_backend):
7566 * gtkutil.c (xg_get_font):
7567 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
7568 * nsimage.m (hexchar):
7569 * nsterm.m (ns_xlfd_to_fontname):
7570 * sysdep.c (system_process_attributes):
7571 * xfaces.c (hash_string_case_insensitive):
7572 Use C-locale tests instead of locale-specific tests for character
7573 types, since we want the ASCII interpretation here, not the
7574 interpretation suitable for whatever happens to be the current locale.
7575
7576 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7577
7578 Consistently check windows for validity/liveness
7579 (Bug#11984, Bug#12025, Bug#12026).
7580 * lisp.h (CHECK_VALID_WINDOW): New macro.
7581 * window.c (decode_window): Rename to decode_live_window.
7582 (decode_valid_window, Fwindow_valid_p): New functions.
7583 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
7584 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
7585 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
7586 (Fwindow_prev_sibling, Fwindow_combination_limit)
7587 (Fset_window_combination_limit, Fwindow_use_time)
7588 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
7589 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
7590 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
7591 (Fwindow_hscroll, Fset_window_hscroll)
7592 (Fwindow_redisplay_end_trigger)
7593 (Fset_window_redisplay_end_trigger, Fwindow_edges)
7594 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
7595 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7596 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
7597 (Fwindow_end, Fset_window_point, Fset_window_start)
7598 (Fpos_visible_in_window_p, Fwindow_line_height)
7599 (Fwindow_dedicated_p, Fset_window_dedicated_p)
7600 (Fwindow_prev_buffers, Fset_window_prev_buffers)
7601 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
7602 (Fset_window_parameter, Fwindow_display_table)
7603 (Fset_window_display_table, Fdelete_other_windows_internal)
7604 (Fset_window_buffer, Fset_window_new_total)
7605 (Fset_window_new_normal, Fdelete_window_internal)
7606 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
7607 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
7608 (Fwindow_scroll_bars): Check whether argument window is a valid or
7609 live window. Update doc-strings.
7610 (syms_of_window): New symbol Qwindow_valid_p.
7611 * keyboard.c (Fposn_at_x_y): Check whether argument
7612 frame_or_window denotes a valid window.
7613
7614 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7615
7616 Fix previous char table change.
7617 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
7618 * chartab.c (optimize_sub_char_table): Likewise.
7619
7620 2012-08-16 Chong Yidong <cyd@gnu.org>
7621
7622 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7623
7624 * xfont.c (xfont_open):
7625 * xftfont.c (xftfont_open): Set the font's max_width field.
7626
7627 * nsfont.m (nsfont_open): Similar to the Xft backend, set
7628 min_width to space_width and average_width to the average over
7629 printable ASCII characters.
7630 (ns_char_width): Code cleanup.
7631 (ns_ascii_average_width): New utility function.
7632
7633 * font.h (struct font): Update comments.
7634
7635 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7636
7637 Simple interface to set Lisp_Object fields of character tables.
7638 * lisp.h (CSET): New macro.
7639 (char_table_set_extras, char_table_set_contents)
7640 (sub_char_table_set_contents): New function.
7641 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
7642 * syntax.c: Adjust users.
7643
7644 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
7645
7646 * eval.c (eval_sub): Bind lexical-binding.
7647 * lread.c (Qlexical_binding): Make non-static.
7648
7649 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7650
7651 * nsmenu.m (popupSession): Remove.
7652 (pop_down_menu): Remove endModalSession.
7653 (timeout_handler:): New method.
7654 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
7655 Call runModalForWindow. Check timer_fired when it returns.
7656 If not set, cancel timer and break out of loop.
7657 Otherwise loop again, with a new timeout.
7658
7659 * nsterm.m: Include fcntl.h if present.
7660 (fd_entry, t_readfds, inNsSelect): Remove.
7661 (select_writefds, select_valid, select_timeout, selfds)
7662 (select_mutex, apploopnr): Add.
7663 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
7664 Otherwise call kbd_buffer_store_event.
7665 (ns_send_appdefined): Remove release of fd_entry.
7666 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
7667 Increment and decrement apploopnr.
7668 (ns_select): If no file descriptors, just do a NSTimer.
7669 Otherwise copy read/write masks and start select thread (fd_handler).
7670 Start main loop and wait for application defined event.
7671 Inform select thread to stop selecting after main loop is exited.
7672 (ns_term_init): Create selfds pipe and set non-blocking.
7673 Initialize select_mutex. Start the select thread (fd_handler).
7674 (fd_handler:): Loop forever, wait for info from the main thread
7675 to either start or stop selecting. When select returns, send
7676 and appdefined event.
7677 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
7678 If not call kbd_buffer_store_event.
7679
7680 * nsterm.h (EmacsApp): fd_handler takes id argument.
7681 (EmacsDialogPanel): Add timer_fired and timeout_handler.
7682
7683 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7684
7685 2012-08-15 Eli Zaretskii <eliz@gnu.org>
7686
7687 * region-cache.c (move_cache_gap): Update gap_len using the actual
7688 growth of the boundaries array. Do not change cache_len.
7689 (Bug#12196)
7690
7691 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7692
7693 Generalize and cleanup font subsystem checks.
7694 * font.h (FONT_DEBUG, font_assert): Remove.
7695 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7696 Change font_assert to eassert. Use eassert where appropriate.
7697
7698 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7699
7700 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7701
7702 2012-08-15 Chong Yidong <cyd@gnu.org>
7703
7704 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
7705 When using the new font chooser, use gtk_font_chooser_get_font_desc to
7706 extract the font descriptor instead of just the font name.
7707 In that case, return a font spec instead of a string.
7708 (x_last_font_name): Move to this file from xfns.c.
7709
7710 * xfns.c (Fx_select_font): The return value can also be a font
7711 spec. Move x_last_font_name management to gtkutil.c.
7712
7713 * xfaces.c: Make font weight and style symbols non-static.
7714
7715 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7716
7717 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7718 (bug#12117).
7719
7720 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * alloc.c (Fgarbage_collect): Use plural form consistently.
7723
7724 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7725
7726 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
7727 iteration through the command loop. Fixes a problem whereby mouse
7728 movements are ignored until the first mouse click.
7729
7730 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7731
7732 Use bool, not int, for Lisp booleans.
7733 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
7734 makes Emacs a bit smaller and presumably a bit faster.
7735 * lisp.h: Include <stdbool.h>.
7736 (struct Lisp_Boolfwd, defvar_bool):
7737 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
7738 * regex.c [!emacs]: Include <stdbool.h>.
7739 (false, true): Remove; <stdbool.h> does this for us now.
7740
7741 2012-08-14 Chong Yidong <cyd@gnu.org>
7742
7743 * character.c (Fcharacterp): Doc fix (Bug#12076).
7744
7745 * data.c (Findirect_variable): Doc fix (Bug#11040).
7746
7747 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7748
7749 * editfns.c (Fformat): Doc fix (Bug#12059).
7750 (Fsave_current_buffer): Doc fix (Bug#11542).
7751
7752 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7753
7754 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7755 (bug#12022).
7756
7757 2012-08-14 Martin Rudalics <rudalics@gmx.at>
7758
7759 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
7760 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
7761 * minibuf.c (choose_minibuf_frame, read_minibuf):
7762 * w32fns.c (x_create_tip_frame):
7763 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
7764 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
7765
7766 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7767
7768 * intervals.c (offset_intervals): Remove obsolete comment.
7769
7770 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7771
7772 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7773
7774 2012-08-14 Gergely Risko <gergely@risko.hu>
7775
7776 * coding.c (decode_coding): Record buffer modification before
7777 disabling undo_list (Bug#11773).
7778
7779 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7780
7781 Revert and cleanup some recent overlay changes.
7782 * buffer.h (enum overlay_type): Remove.
7783 (buffer_get_overlays, buffer_set_overlays): Likewise.
7784 (buffer_set_overlays_before, buffer_set_overlays_after):
7785 New function. Adjust users.
7786 (unchain_both): Add eassert.
7787
7788 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7789
7790 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7791
7792 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7793
7794 * gtkutil.c (xg_mark_data): Don't assume C99.
7795
7796 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
7797
7798 * gtkutil.c (xg_frame_tb_info): New struct.
7799 (TB_INFO_KEY): New define.
7800 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
7801 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
7802 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
7803 if not present.
7804 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
7805 is up to date. Otherwise store new data.
7806 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7807
7808 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7809
7810 Use KSET for write access to Lisp_Object members of struct kboard.
7811 * keyboard.h (KSET): New macro.
7812 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
7813 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
7814 * xterm.c: Adjust users.
7815
7816 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7817
7818 Use BSET for write access to Lisp_Object members of struct buffer.
7819 * buffer.h (BSET): New macro.
7820 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
7821 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
7822 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
7823 * window.c, xdisp.c, xfns.c: Adjust users.
7824
7825 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7826
7827 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7828
7829 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7830
7831 * nsterm.m (not_in_argv): New function.
7832 (application:openFile, application:openTempFile:):
7833 (application:openFileWithoutUI:, application:openFiles:): Open file
7834 if not_in_argv returns non-zero (bug#12171).
7835
7836 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
7837 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7838 Define for Gtk+ versions less than 3.2.
7839 (xg_get_font_name): Use those functions/macros here.
7840 Reported by Frans Oilinki <moilinki@gmail.com>.
7841
7842 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7843
7844 * unexmacosx.c (copy_data_segment): Copy initialized data in
7845 statically linked libraries from input file rather than memory.
7846
7847 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
7848 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
7849 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
7850
7851 2012-08-10 Glenn Morris <rgm@gnu.org>
7852
7853 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
7854 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
7855
7856 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7857
7858 Fix last change to allow compilation with low optimization levels.
7859 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
7860 Reported by Jan Djärv <jan.h.d@swipnet.se>.
7861
7862 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7863
7864 Use common inline syntax in intervals.h.
7865 * intervals.h (INTERVALS_INLINE): New macro.
7866 Change all users from LISP_INLINE.
7867
7868 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7869
7870 Define Qnone once for all platforms.
7871 * frame.c (Qnone): Define here.
7872 (syms_of_frame): DEFSYM it.
7873 * lisp.h (Qnone): New declaration.
7874 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
7875 * xfns.c: Remove duplication. Adjust users.
7876
7877 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7878
7879 Remove unused macros from intervals.h.
7880 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
7881 * intervals.c: Adjust comment.
7882
7883 2012-08-10 Eli Zaretskii <eliz@gnu.org>
7884
7885 * w32fns.c <w32_unicode_gui>: New static variable.
7886 (globals_of_w32fns): Initialize it according to os_subtype.
7887 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
7888 testing os_subtype.
7889
7890 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
7891 Eli Zaretskii <eliz@gnu.org>
7892
7893 Fix bug #10299 with Unicode characters sent by customized
7894 keyboards created by MSKLC.
7895 * w32fns.c (INIT_WINDOW_CLASS): New macro.
7896 (w32_init_class): Use it to initialize the Emacs class with either
7897 ANSI or Unicode API calls.
7898 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
7899 later.
7900 (w32_wnd_proc): If the character code sent by WM_CHAR or
7901 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
7902 original message. Call DefWindowProcW on NT and later.
7903
7904 2012-08-10 Glenn Morris <rgm@gnu.org>
7905
7906 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7907
7908 * lisp.h (DIRECTORY_SEP): Let configure set it.
7909
7910 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
7911
7912 Use TSET for write access to Lisp_Object slots of struct terminal.
7913 * termhooks.h (TSET): New macro.
7914 * coding.c, terminal.c, xselect.c: Adjust users.
7915
7916 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7917
7918 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
7919 the failing expression, include them in the error message.
7920 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
7921 * lisp.h (internal_condition_case_n): Update declaration.
7922
7923 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7924
7925 Inline functions to examine and change buffer overlays.
7926 * buffer.c (unchain_both): New function.
7927 * buffer.h (buffer_get_overlays, buffer_set_overlays):
7928 (buffer_has_overlays): New function.
7929 (enum overlay_type): New enum.
7930 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
7931 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
7932
7933 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7934
7935 Inline functions to examine and change buffer intervals.
7936 * alloc.c (mark_interval_tree): Remove.
7937 (MARK_INTERVAL_TREE): Simplify.
7938 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
7939 * intervals.c (buffer_balance_intervals): New function.
7940 (graft_intervals_into_buffer): Adjust indentation.
7941 (set_intervals_multibyte): Simplify.
7942 * buffer.h (BUF_INTERVALS): Remove.
7943 (buffer_get_intervals, buffer_set_intervals): New function.
7944 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
7945 * intervals.c, textprop.c: Adjust users.
7946
7947 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7948
7949 Inline functions to examine and change string intervals.
7950 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
7951 (string_get_intervals, string_set_intervals): New function.
7952 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7953 * lread.c, print.c, textprop.c: Adjust users.
7954
7955 2012-08-08 Glenn Morris <rgm@gnu.org>
7956
7957 * lisp.mk (lisp): Remove language/persian.elc.
7958
7959 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7960
7961 Cleanup intervals.
7962 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
7963 (NULL_INTERVAL_P): Likewise. Adjust users.
7964 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7965 Adjust comment. Move under #if 0.
7966 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7967 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
7968
7969 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7970
7971 Check total length of intervals with eassert.
7972 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
7973 * intervals.c: Change all users to eassert.
7974
7975 2012-08-07 Eli Zaretskii <eliz@gnu.org>
7976
7977 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7978 Rename fields to match removal of FGET and WGET and disuse of
7979 INTERNAL_FIELD in Lisp_Cons.
7980
7981 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7982
7983 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
7984 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
7985 name since all xname users are fixed long time ago. Do not
7986 use INTERNAL_FIELD.
7987 (set_symbol_name, set_symbol_function, set_symbol_plist):
7988 (set_symbol_next, set_overlay_plist): New function.
7989 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
7990 (struct Lisp_Overlay): Likewise.
7991 (CVAR, MVAR, SVAR): Remove.
7992 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
7993 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
7994 * xterm.c: Adjust users.
7995 * .gdbinit: Change to use name field of struct Lisp_Symbol
7996 where appropriate.
7997
7998 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7999
8000 Basic functions to set Lisp_Object and pointer slots of intervals.
8001 * intervals.h (interval_set_parent, interval_set_object):
8002 (interval_set_left, interval_set_right, interval_set_plist):
8003 (interval_copy_parent): New function.
8004 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
8005 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
8006 Adjust indentation.
8007 (INTERVAL_SIZE): Remove. Adjust users.
8008 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
8009
8010 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8011
8012 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
8013 * process.h (PGET): Remove.
8014 (struct Lisp_Process): Do not use INTERNAL_FIELD.
8015 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8016
8017 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8018
8019 Drop WGET and revert read access to Lisp_Objects slots of struct window.
8020 * window.h (WGET): Remove.
8021 (struct window): Do not use INTERNAL_FIELD.
8022 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8023 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8024 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8025 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8026 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8027 Adjust users.
8028
8029 2012-08-07 Chong Yidong <cyd@gnu.org>
8030
8031 * window.c (Fwindow_edges, Fwindow_pixel_edges)
8032 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
8033 (Fdelete_window_internal): Signal an error if the window is not on
8034 a live frame (Bug#12025).
8035
8036 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
8037
8038 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
8039 * frame.h (FGET): Remove.
8040 (struct frame): Do not use INTERNAL_FIELD.
8041 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8042 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8043 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8044 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8045
8046 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
8047
8048 * w32.c: Silence compiler warnings.
8049 (map_w32_filename): Remove unused variable `is_fat'.
8050 (chase_symlinks): Add parentheses around expression.
8051
8052 2012-08-06 Glenn Morris <rgm@gnu.org>
8053
8054 * sysdep.c: Respect BROKEN_GETWD.
8055
8056 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
8057 Let configure handle it.
8058 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
8059
8060 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8061
8062 Use GCALIGNMENT where appropriate.
8063 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
8064 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
8065 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
8066
8067 2012-08-06 Eli Zaretskii <eliz@gnu.org>
8068
8069 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
8070 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
8071
8072 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
8073
8074 * buffer.h (struct buffer): Revert `indirections' to a simple int;
8075 that should be sufficient for everyone.
8076
8077 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8078
8079 * keyboard.c (timer_check_2): Add break so timer_check returns next
8080 timeout.
8081
8082 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8083
8084 Fix Windows build errors introduced after converting to WGET and WSET.
8085 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
8086 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8087
8088 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
8089
8090 * nsterm.m (ns_frame_rehighlight): Use FSET.
8091
8092 * nsmenu.m (ns_update_menubar): Use FSET.
8093
8094 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8095
8096 Separate read and write access to Lisp_Object slots of Lisp_Process.
8097 * process.h (PGET, PSET): New macros similar to AREF and ASET.
8098 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
8099
8100 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8101
8102 Separate read and write access to Lisp_Object slots of struct window.
8103 * window.h (WGET, WSET): New macros similar to AREF and ASET.
8104 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8105 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8106 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
8107 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
8108 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
8109 Adjust users.
8110
8111 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8112
8113 Fix Windows build errors introduced after converting to FGET and FSET.
8114 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
8115 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
8116 (w32_judge_scroll_bars): Change to use FSET.
8117 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
8118
8119 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8120
8121 Fix replacement typo.
8122 * window.c (replace_window): Set root_window instead of
8123 selected_window. This fixes a total window subsystem
8124 malfunction reported by Bastien Guerry <bzg@gnu.org>.
8125
8126 2012-08-06 Glenn Morris <rgm@gnu.org>
8127
8128 * lisp.mk (lisp): Add language/persian.elc.
8129
8130 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
8131
8132 Separate read and write access to Lisp_Object slots of struct frame.
8133 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
8134 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
8135 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
8136 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8137 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
8138
8139 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
8140
8141 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
8142
8143 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
8144
8145 Generalize common compile-time constants.
8146 * lisp.h (header_size, bool_header_size, word_size): Now here.
8147 (struct Lisp_Vector): Add comment.
8148 (struct Lisp_Bool_Vector): Move up to define handy constants.
8149 (VECSIZE, PSEUDOVECSIZE): Simplify.
8150 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
8151 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
8152 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
8153 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
8154 * xfont.c, xmenu.c: Use word_size where appropriate.
8155
8156 2012-08-05 Lawrence Mitchell <wence@gmx.li>
8157
8158 * search.c (Freplace_match): Treat \? in the replacement text
8159 literally (Bug#8161).
8160
8161 2012-08-05 Chong Yidong <cyd@gnu.org>
8162
8163 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
8164 * frame.c (Vdelete_frame_functions):
8165 * emacs.c (Vkill_emacs_hook): Doc fix.
8166
8167 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8168
8169 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
8170 --with-x-toolkit=no builds.
8171 Reported by Carsten Mattner <carstenmattner@gmail.com>.
8172
8173 2012-08-04 Chong Yidong <cyd@gnu.org>
8174
8175 * syntax.c (Fmodify_syntax_entry): Doc fix.
8176
8177 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8178
8179 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
8180 * w32.c (init_environment): Change the default values of many
8181 environment variables in dflt_envvars[] to NULL, to avoid pushing
8182 them into environment when they were not already defined.
8183 Remove the code that deletes site-lisp subdirectories from the default
8184 value of EMACSLOADPATH, as it is no longer needed.
8185 (check_windows_init_file): Now external, not static.
8186 Use Vload_path as is, without adding anything, as this function is now
8187 called when Vload_path is already set up.
8188
8189 * w32.h (check_windows_init_file): Add prototype.
8190
8191 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
8192 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
8193 compatibility with Posix platforms.
8194 (main): Move the call to check_windows_init_file to here from
8195 w32.c.
8196 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
8197 any, in the DEFALT argument into the root of the Emacs build or
8198 installation tree, as appropriate.
8199
8200 * callproc.c (init_callproc_1): Call decode_env_path instead of
8201 doing its equivalent by hand.
8202 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
8203 the code that sets Vexec_path run on MS-Windows.
8204
8205 * lread.c (init_lread): Add comments to #ifdef's.
8206
8207 * msdos.c (dos_set_window_size, IT_update_begin)
8208 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
8209 instead of direct references.
8210
8211 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
8212
8213 Export DEFAULT_REHASH_* to GDB.
8214 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
8215 Now constants, not macros.
8216
8217 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
8218
8219 Remove unnecessary casts involving pointers.
8220 These casts are no longer needed now that we assume C89 or later,
8221 since they involve casting to or from void *.
8222 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
8223 (make_pure_float, make_pure_vector):
8224 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
8225 * macros.c (Fstart_kbd_macro):
8226 * menu.c (find_and_return_menu_selection):
8227 * minibuf.c (read_minibuf_noninteractive):
8228 * sysdep.c (closedir):
8229 * xdisp.c (x_produce_glyphs):
8230 * xfaces.c (compare_fonts_by_sort_order):
8231 * xfns.c (x_real_positions, select_visual):
8232 * xselect.c (x_stop_queuing_selection_requests)
8233 (x_get_window_property, x_get_window_property_as_lisp_data):
8234 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
8235 Remove unnecessary pointer casts.
8236 * alloc.c (record_xmalloc): New function.
8237 * lisp.h (record_xmalloc): New decl.
8238 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
8239 more like a function. This is because the pointer cast is not
8240 needed. All uses changed.
8241 * print.c (print_string, print_error_message): Avoid length recalc.
8242
8243 Improve fix for macroexp crash with debugging (Bug#12118).
8244 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
8245 ARRAY_MARK_FLAG when checking subscripts, because ASET is
8246 not supposed to be invoked from the garbage collector.
8247 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
8248 (gc_aset): New function, which is like ASET but can be
8249 used in the garbage collector.
8250 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8251 (set_hash_index): Use it instead of ASET.
8252
8253 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8254
8255 Support symlinks on latest versions of MS-Windows.
8256 * w32.c: Include winioctl.h and aclapi.h.
8257 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
8258 (revert_to_self): Forward declarations of static functions.
8259 <static BOOL g_b_init_get_security_info>:
8260 <g_b_init_create_symbolic_link>: New static flags.
8261 (globals_of_w32): Initialize them to zero.
8262 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
8263 (map_w32_filename): Improve commentary. Simplify switch.
8264 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
8265 headers (most versions of MinGW w32api don't).
8266 (get_security_info, create_symbolic_link)
8267 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
8268 New functions.
8269 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
8270 in the argument file name.
8271 (sys_access): Call unc_volume_file_attributes only if
8272 GetFileAttributes fails with network-related error codes.
8273 (sys_rename): Diagnose renaming of a symlink when the user doesn't
8274 have the required privileges.
8275 (get_file_security_desc_by_name): Rename from
8276 get_file_security_desc.
8277 (stat_worker): New function, with most of the guts of 'stat', and
8278 with addition of handling of symlinks and support for 'lstat'.
8279 If possible, get file's attributes and security information by
8280 handle, not by name. Produce S_IFLNK bit for symlinks, when
8281 called from 'lstat'.
8282 (stat, lstat): New functions, call 'stat_worker'.
8283 (symlink, readlink, careadlinkat): Rewritten to create and resolve
8284 symlinks when the underlying filesystem supports them.
8285
8286 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8287
8288 Fix macroexp crash on Windows with debugging (Bug#12118).
8289 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
8290 checking subscripts; problem introduced with the recent
8291 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
8292 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
8293 since it's used in non-static inline functions now.
8294
8295 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
8296 Don't assume buffer size fits in 'int'. Remove unused local.
8297
8298 Use C99-style 'extern inline' if available.
8299 * buffer.h (BUFFER_INLINE):
8300 * category.h (CATEGORY_INLINE):
8301 * character.h (CHARACTER_INLINE):
8302 * charset.h (CHARSET_INLINE):
8303 * composite.h (COMPOSITE_INLINE):
8304 * dispextern.h (DISPEXTERN_INLINE):
8305 * lisp.h (LISP_INLINE):
8306 * systime.h (SYSTIME_INLINE):
8307 New macro, replacing 'static inline' in this header.
8308 * buffer.h, category.h, character.h, charset.h, composite.h:
8309 * dispextern.h, lisp.h, systime.h:
8310 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8311 * alloc.c (LISP_INLINE):
8312 * buffer.c (BUFFER_INLINE):
8313 * category.c (CATEGORY_INLINE):
8314 * character.c (CHARACTER_INLINE):
8315 * charset.c (CHARSET_INLINE):
8316 * composite.c (COMPOSITE_INLINE):
8317 * dispnew.c (DISPEXTERN_INLINE):
8318 * sysdep.c (SYSTIME_INLINE):
8319 Define to EXTERN_INLINE, so that the corresponding functions
8320 are compiled into code.
8321 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
8322 (INLINE_HEADER_END): New macros.
8323 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
8324 since it's used in non-static inline functions now.
8325 (VALMASK) [!USE_LSB_TAG]: Likewise.
8326
8327 2012-08-02 Glenn Morris <rgm@gnu.org>
8328
8329 * s/: Remove empty directory.
8330
8331 * s/ms-w32.h: Move to ../nt/inc.
8332 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
8333 Update for new ms-w32.h location.
8334
8335 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8336
8337 Port to Solaris 8.
8338 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
8339
8340 2012-08-02 Glenn Morris <rgm@gnu.org>
8341
8342 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
8343 hard-coding the path separator.
8344
8345 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8346
8347 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
8348 This how ASET and AREF are supposed to work, and makes
8349 it easier to think about future improvements. See
8350 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
8351 * charset.h (set_charset_attr): New function.
8352 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
8353 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
8354 (aref_addr): New function. All uses of &AREF(...) changed.
8355 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8356 (set_hash_index): New functions. All lvalue-style uses of
8357 HASH_KEY etc. changed.
8358 * keyboard.c (set_prop): New function. All lvalue-style uses
8359 of PROP changed.
8360
8361 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
8362
8363 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
8364 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
8365 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
8366 * nsfns.m (ns_set_name_as_filename): Likewise.
8367 * nsmenu.m (ns_update_menubar): Likewise.
8368 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
8369
8370 2012-08-01 Eli Zaretskii <eliz@gnu.org>
8371
8372 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
8373 Adapt to latest changes in field names of the corresponding Lisp
8374 objects.
8375
8376 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
8377
8378 2012-08-01 Glenn Morris <rgm@gnu.org>
8379
8380 * s/msdos.h: Remove file.
8381 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
8382 * Makefile.in (S_FILE): Remove.
8383 (config_h): Remove S_FILE.
8384
8385 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8386
8387 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
8388 Remove; moved to nt/config.nt.
8389
8390 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8391
8392 Use INTERNAL_FIELD for conses and overlays.
8393 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
8394 Remove obsolete comment.
8395 (MVAR): New macro.
8396 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8397 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
8398
8399 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8400
8401 Use INTERNAL_FIELD for symbols.
8402 * lisp.h (SVAR): New macro. Adjust users.
8403 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
8404 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
8405
8406 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8407
8408 Use INTERNAL_FIELD for processes.
8409 * process.h (PVAR): New macro. Adjust style.
8410 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
8411 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
8412
8413 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8414
8415 Use INTERNAL_FIELD for windows.
8416 * window.h (WVAR): New macro.
8417 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8418 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8419 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8420 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8421 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8422 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8423
8424 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8425
8426 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8427
8428 2012-08-01 Glenn Morris <rgm@gnu.org>
8429
8430 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8431 Move to configure.ac.
8432
8433 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8434
8435 * makefile.w32-in (CONFIG_H): Update dependencies.
8436 (CONF_POST_H): New macro.
8437
8438 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8439
8440 2012-07-31 Glenn Morris <rgm@gnu.org>
8441
8442 * Makefile.in (S_FILE): No longer set by configure.
8443
8444 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8445 is available.
8446 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8447
8448 * process.h (NULL_DEVICE):
8449 * emacs.c (SEPCHAR):
8450 * editfns.c (USER_FULL_NAME): Let configure set them.
8451
8452 * s/README, s/template.h: Remove files.
8453
8454 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8455
8456 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8457 Move to configure.ac.
8458
8459 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8460
8461 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8462 resulting renaming of 'struct frame' members.
8463
8464 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8465
8466 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8467 after introduction of FVAR.
8468
8469 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8470
8471 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8472
8473 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8474 instead of compositeToPoint.
8475 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8476
8477 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8478
8479 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8480
8481 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8482 * lisp.h (INTERNAL_FIELD): New macro.
8483 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8484 (BVAR): Change to use INTERNAL_FIELD.
8485 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8486 (KVAR): Change to use INTERNAL_FIELD.
8487 * frame.h (FVAR): New macro.
8488 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8489 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8490 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8491 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8492 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8493
8494 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8495
8496 Miscellaneous fixes for non-default X toolkits.
8497 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8498 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8499 Move under #ifdef USE_LUCID.
8500 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8501 definition and usage to avoid warnings.
8502
8503 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8504
8505 * nsterm.m (openFiles): Fix previous checkin.
8506
8507 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8508
8509 * indent.c (compute_motion): Remove unused local.
8510
8511 2012-07-31 Glenn Morris <rgm@gnu.org>
8512
8513 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8514
8515 * conf_post.h [USG5_4]:
8516 Move remaining contents of s/usg5-4-common.h here.
8517 * s/usg5-4-common.h: Remove file.
8518
8519 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8520 * s/irix6-5.h: Remove file.
8521
8522 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8523 * s/darwin.h: Remove file.
8524
8525 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
8526 * s/hpux10-20.h: Remove file, which is now empty.
8527
8528 2012-07-30 Glenn Morris <rgm@gnu.org>
8529
8530 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
8531 * Makefile.in (config_h): Add conf_post.h.
8532 * makefile.w32-in (CONFIG_H): Add conf_post.h.
8533
8534 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8535
8536 * nsterm.m (ns_do_open_file): New variable.
8537 (ns_term_init): Set ns_do_open_file to YES after run returns.
8538 (openFile, openTempFile, openFileWithoutUI, openFiles):
8539 Open files only if ns_do_open_file.
8540
8541 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8542
8543 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
8544 This no-op macro hasn't been needed for many years.
8545 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
8546
8547 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
8548 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
8549 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
8550 gdb_make_enums_visible.
8551 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
8552 (DIRECTORY_SEP): Now a constant, not a macro.
8553
8554 2012-07-30 Eli Zaretskii <eliz@gnu.org>
8555
8556 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
8557 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
8558
8559 * w32term.c <w32_keyboard_codepage>: Renamed from
8560 keyboard_codepage and now external. All users changed.
8561
8562 * w32term.h: Add declaration of w32_keyboard_codepage.
8563
8564 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
8565 the codepage to translate keys to Unicode. If this argument is
8566 -1, use the value returned by GetConsoleCP. All callers changed.
8567
8568 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8569
8570 Update .PHONY listings in makefiles.
8571 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
8572 bootstrap-clean, distclean, maintainer-clean, versioclean,
8573 extraclean, frc.
8574
8575 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8576 This is a bit clearer. Fix some commentary typos.
8577
8578 2012-07-30 Glenn Morris <rgm@gnu.org>
8579
8580 * s/netbsd.h: Let configure include signal.h if needed.
8581 Remove file, which is now empty.
8582
8583 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
8584 Let configure set them.
8585 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
8586 No more need to undefine.
8587
8588 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
8589
8590 * keymap.c (Fkey_description): Don't remove 0x80 bit from
8591 non-single-byte char when adding meta modifier. (Bug#12090)
8592
8593 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8594
8595 Convert safe_call to use variable number of arguments.
8596 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
8597 (safe_call2): Fix comment.
8598 * lisp.h (safe_call): Adjust prototype.
8599 * coding.c (encode_coding_object): Change to use safe_call2.
8600 * xfaces.c (merge_face_heights): Change to use safe_call1.
8601
8602 2012-07-30 Glenn Morris <rgm@gnu.org>
8603
8604 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
8605 does that unconditionally. Remove file, which is now empty.
8606
8607 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8608 Remove empty files.
8609
8610 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8611
8612 Export to GDB most of lisp.h's remaining object-like macros.
8613 * lisp.h (min, max): Move earlier, because they're used earlier now.
8614 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
8615 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
8616 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
8617 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
8618 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
8619 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
8620 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
8621 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
8622 Now constants, for GDB. They need not be macros.
8623 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
8624 Now constants, for GDB, as well as macros, for static initializers.
8625 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
8626 Move to after the definition of struct Lisp_Char_Table,
8627 since the former now needs that type defined.
8628 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
8629 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
8630 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
8631 New enums, for gdb_make_enums_visible.
8632 (GLYPH_MODE_LINE_FACE): Remove; unused.
8633 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
8634 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
8635 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
8636 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
8637 enum maxargs, enum MAX_ALLOCA.
8638 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
8639 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
8640 no longer needed, now that they are done in lisp.h.
8641
8642 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8643
8644 Cleanup string bytes checking.
8645 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
8646 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
8647 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
8648 (check_sblock, compact_small_strings): Simplify.
8649
8650 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8651
8652 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
8653 These macros are confusing and no longer need to be defined, as
8654 the enum values now suffice. All uses replaced with definiens.
8655 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
8656
8657 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
8658
8659 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
8660 ($(BLD)/w32console.$(O)): Update dependencies.
8661
8662 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8663
8664 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
8665 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
8666 time. Adjust users.
8667 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
8668
8669 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
8670
8671 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
8672 setting sitelisp (Bug#12010).
8673
8674 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8675
8676 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
8677
8678 * w32heap.c (cache_system_info):
8679 * w32.c (sys_rename):
8680 * w32proc.c (find_child_console, sys_kill): All users changed.
8681
8682 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8683
8684 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8685
8686 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8687
8688 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8689
8690 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8691
8692 Cleanup statistics calculation in Fgarbage_collect.
8693 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8694 Fix zombies percentage calculation. Simplify elapsed time calculation.
8695
8696 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8697
8698 Generalize marker debugging code under MARKER_DEBUG and use eassert.
8699 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
8700 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
8701 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
8702 (replace_range, replace_range_2, del_range_2): Change to eassert.
8703 * marker.c (byte_char_debug_check): Adjust style.
8704
8705 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8706
8707 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
8708 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
8709 long-ago-commented-out code that talks about "WIN32".
8710 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
8711 All uses changed.
8712
8713 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
8714
8715 Use Gnulib stdalign module (Bug#9772, Bug#9960).
8716 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
8717 Simplify by using alignof.
8718 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
8719 * lisp.h: Include <stdalign.h>.
8720 (GCALIGNMENT): New macro and constant.
8721 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
8722 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
8723 (stdalign): New macro, if not already defined.
8724
8725 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8726
8727 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
8728 * w32inevt.c: Include w32inevt.h.
8729 (w32_read_console_input): New inline function, calls either
8730 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
8731 w32_console_unicode_input.
8732 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
8733 (w32_kbd_patch_key, key_event): Use the codepage returned by
8734 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
8735 (key_event): use uChar.UnicodeChar only if
8736 w32_console_unicode_input is non-zero.
8737
8738 * w32console.c: Include w32heap.h.
8739 <w32_console_unicode_input>: New global variable.
8740 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
8741 family of Windows, zero otherwise.
8742
8743 * w32inevt.h: Declare w32_console_unicode_input.
8744
8745 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8746 --without-x. (Bug#11742)
8747
8748 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8749
8750 Adjust GDB to reflect pvec_type changes (Bug#12036).
8751 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
8752 2012-07-04 changes to pseudovector representation.
8753 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
8754
8755 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8756
8757 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
8758 bus address.
8759 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
8760
8761 2012-07-27 Eli Zaretskii <eliz@gnu.org>
8762
8763 * alloc.c (listn): Fix the order the arguments are consed onto the
8764 list.
8765
8766 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
8767 enumeration constants, as PURE and HEAP are too general, and clash
8768 with other headers and sources, such as gmalloc.c and the
8769 MS-Windows system headers. All users changed.
8770
8771 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8772
8773 Revert last save_excursion_save and save_excursion_restore changes.
8774 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
8775 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
8776
8777 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8778
8779 Fix recently-introduced typos in Windows port.
8780 Reported by Martin Rudalics <rudalics@gmx.at>.
8781 * w32.c (init_environment): Replace comma with semicolon.
8782 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
8783
8784 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8785
8786 Improve GDB symbol export (Bug#12036).
8787 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
8788 arms of an 'if', not using conditional expressions; otherwise GDB
8789 complains about the types in the unevaluated arm when the argument
8790 is an integer literal.
8791 (xgetint): Simplify expression.
8792 * alloc.c (gdb_make_enums_visible): New constant. This ports to
8793 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
8794 Zaretskii in <http://bugs.gnu.org/12036#13>.
8795 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
8796 needed now that we have gdb_make_enums_visible.
8797 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
8798 (enum enum_USE_LSB_TAG):
8799 New enum types, packaging up enums that need to be exported to GDB.
8800
8801 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8802
8803 Utility function to make a list from specified amount of objects.
8804 * lisp.h (enum constype): New datatype.
8805 (listn): New prototype.
8806 * alloc.c (listn): New function.
8807 (Fmemory_use_count, syms_of_alloc): Use it.
8808 * buffer.c (syms_of_buffer): Likewise.
8809 * callint.c (syms_of_callint): Likewise.
8810 * charset.c (define_charset_internal): Likewise.
8811 * coding.c (syms_of_coding): Likewise.
8812 * keymap.c (syms_of_keymap): Likewise.
8813 * search.c (syms_of_search): Likewise.
8814 * syntax.c (syms_of_syntax): Likewise.
8815 * w32.c (init_environment): Likewise.
8816 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
8817 * xdisp.c (syms_of_xdisp): Likewise.
8818 * xfns.c (syms_of_xfns): Likewise.
8819
8820 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8821
8822 Fast save_excursion_save and save_excursion_restore.
8823 * lisp.h (struct Lisp_Excursion): New data type.
8824 (PVEC_EXCURSION): New pseudovector type.
8825 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
8826 to deal with it. Adjust comments.
8827 (init_marker, attach_marker): New prototype.
8828 (unchain_marker): Adjust prototype.
8829 * marker.c (attach_marker): Change to global.
8830 (init_marker): New function.
8831 * alloc.c (Fmake_marker, build_marker): Use it.
8832 (build_marker): More easserts.
8833 (mark_object): Handle struct Lisp_Excursion.
8834 * editfns.c (save_excursion_save, save_excursion_restore):
8835 Reimplement to use struct Lisp_Excursion. Add comments.
8836
8837 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8838
8839 Fix export of symbols to GDB (Bug#12036).
8840 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
8841 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
8842 emacs.c, as this is a more-suitable home. Had this been done earlier
8843 the fix for 12036 would have avoided some of the problems noted in
8844 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
8845 would have been more obvious.
8846 * emacs.c: Do not include <verify.h>; no longer needed.
8847 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
8848 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
8849 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8850 Remove; now done in lisp.h.
8851 * lisp.h (PUBLISH_TO_GDB): New macro.
8852 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
8853 (DATA_SEG_BITS): Use it.
8854 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
8855 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
8856 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
8857 not be usable in #if. This simplifies things.
8858
8859 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
8860
8861 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8862
8863 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8864
8865 Simplify export of symbols to GDB (Bug#12036).
8866 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
8867 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
8868 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
8869 Adjust to changes in lisp.h and emacs.c, by using
8870 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
8871 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
8872 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
8873 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
8874 instead of gdb_valbits.
8875 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
8876 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
8877 instead of gdb_array_mark_flag.
8878 (xboolvector): Get size from $->size, not $->header.size.
8879 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
8880 (xreload, hook-run, hookpost-run): Remove.
8881 * emacs.c: Include <verify.h>.
8882 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
8883 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
8884 Remove.
8885 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
8886 (gdb_USE_LSB_TAG): New enum constants.
8887 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8888 Also define these as enum constants, so they're visible to GDB.
8889 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
8890 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
8891 as constants, so they're visible to GDB.
8892 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
8893 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
8894 Now enum constants, not macros, so they're visible to GDB.
8895 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
8896 more convenient now. All uses changed.
8897 (VALMASK) [USE_LSB_TAG]: Also define in this case.
8898 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
8899
8900 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
8901
8902 Explicitly free restriction data that are not needed anymore.
8903 * editfns.c (save_restriction_restore): Free restriction data.
8904
8905 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8906
8907 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
8908 add argument, tune behavior, and adjust all callers.
8909
8910 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8911
8912 Use typedef for EMACS_INT, EMACS_UINT.
8913 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
8914 than macros. This simplifies debugging in the usual case, since
8915 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
8916 and it allows expressions involving EMACS_INT casts.
8917 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
8918
8919 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
8920
8921 * nsterm.m (ns_read_socket): Return early if there is a modal
8922 window (Bug#12043).
8923
8924 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8925
8926 * frame.c (Fredirect_frame_focus): In doc-string don't mention
8927 that FOCUS-FRAME can be omitted.
8928
8929 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
8930
8931 Adjust buffer text indirection counters at the end of Fkill_buffer.
8932 * buffer.c (Fkill_buffer): Adjust indirection counters when the
8933 buffer is definitely dead. This should really fix an issue reported
8934 by Christoph Scholtes again. (Bug#12007).
8935 (init_buffer_once): Initialize indirection counters of
8936 buffer_defaults and buffer_local_symbols (for sanity and safety).
8937
8938 2012-07-24 Eli Zaretskii <eliz@gnu.org>
8939
8940 * xdisp.c (init_iterator): Don't compute dimensions of truncation
8941 and continuation glyphs on tooltip frames, leave them at zero.
8942 Avoids continued lines in tooltips. (Bug#11832)
8943
8944 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8945
8946 Simplify copy_overlay.
8947 * buffer.c (copy_overlay): Simplify. Use build_marker.
8948 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8949
8950 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8951
8952 * print.c (print_object): Don't crash when a frame's name is nil
8953 or invalid. (Bug#12025)
8954
8955 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
8956 it signals an error when a tooltip frame is being created.
8957
8958 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8959
8960 Cleanup miscellaneous objects allocation and initialization.
8961 * alloc.c (allocate_misc): Change to static. Add argument to
8962 specify the subtype. Adjust comment and users.
8963 (build_overlay): New function.
8964 * buffer.c (copy_overlays, Fmake_overlay): Use it.
8965 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
8966 (allocate_misc): Remove prototype.
8967 (build_overlay): Add prototype.
8968
8969 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8970
8971 Swap buffer text indirection counters in Fbuffer_swap_text.
8972 * buffer.c (Fbuffer_swap_text): Swap indirections too.
8973 This avoids crash reported by Christoph Scholtes at
8974 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
8975
8976 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
8977
8978 * nsmenu.m (Popdown_data): New struct.
8979 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
8980 free Popdown_data.
8981 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
8982 (initWithContentRect): Make imgView and contentView non-static
8983 and autorelease them. Also autorelease img and matrix (Bug#12005).
8984 (dealloc): Remove (Bug#12005).
8985
8986 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8987
8988 Adjust consing_since_gc when objects are explicitly freed.
8989 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
8990 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
8991 (free_cons, free_misc): Subtract object size from consing_since_gc.
8992
8993 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8994
8995 Simplify and cleanup markers positioning code.
8996 * marker.c (attach_marker): More useful eassert.
8997 (live_buffer, set_marker_internal): New function.
8998 (Fset_marker, set_marker_restricted): Use set_marker_internal.
8999 (set_marker_both, set_marker_restricted_both): Use live_buffer.
9000
9001 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
9002
9003 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
9004 as it's limited by the amount of memory, not by INT_MAX.
9005
9006 2012-07-21 Eli Zaretskii <eliz@gnu.org>
9007
9008 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
9009 in special-event-map. See the discussion at
9010 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
9011 for the reasons.
9012
9013 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
9014 info.dwItemData. Fixes crashes on 64-bit Windows.
9015 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
9016
9017 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
9018
9019 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
9020 (conversationIdentifier): Return value is NSInteger.
9021 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
9022
9023 2012-07-21 Chong Yidong <cyd@gnu.org>
9024
9025 * window.c (decode_any_window): Signal an error if the window is
9026 on a dead frame (Bug#11984).
9027
9028 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9029
9030 Add indirection counting to speed up Fkill_buffer.
9031 * buffer.h (struct buffer): New member.
9032 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
9033 (Fmake_indirect_buffer): Set indirection counter to -1, increment
9034 base buffer indirection counter.
9035 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
9036 (Fkill_buffer): Adjust indirection counters as needed, don't walk
9037 through buffer list if indirection counter is 0.
9038
9039 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9040
9041 Extend the value returned by Fgarbage_collect with heap statistics.
9042 * alloc.c (Qheap): New symbol.
9043 (syms_of_alloc): DEFSYM it.
9044 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
9045 (Fmemory_free): Remove.
9046 (syms_of_alloc): Don't defsubr it.
9047 * buffer.c (Fcompact_buffer): Remove.
9048 (syms_of_buffer): Don't defsubr it.
9049
9050 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9051
9052 Make maybe_gc inline.
9053 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
9054 * lisp.h (consing_since_gc, gc_relative_threshold)
9055 (memory_full_cons_threshold): Revert declaration.
9056 (maybe_gc): Remove prototype, define as inline.
9057 * alloc.c: Remove old commented-out code.
9058 (consing_since_gc, gc_relative_threshold)
9059 (memory_full_cons_threshold): Revert to global.
9060 (maybe_gc): Remove.
9061
9062 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9063
9064 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
9065 * lisp.h (build_unibyte_string): New function.
9066 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
9067 * sysdep.c, w32fns.c, xfns.c: Use it.
9068 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
9069 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
9070 Adjust users accordingly.
9071 * font.h (font_open_by_name): Adjust prototype.
9072
9073 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
9074
9075 Cleanup calls to Fgarbage_collect.
9076 * lisp.h (maybe_gc): New prototype.
9077 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9078 Remove declarations.
9079 * alloc.c (maybe_gc): New function.
9080 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
9081 Make them static.
9082 * bytecode.c (MAYBE_GC): Use maybe_gc.
9083 * eval.c (eval_sub, Ffuncall): Likewise.
9084 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
9085 to avoid dependency from auto-save feature.
9086
9087 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
9088
9089 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
9090 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
9091 'for_each_per_buffer_object_at'.
9092 All uses changed. It's better to use upper-case for macros that
9093 cannot be implemented as functions, to give the reader a clue
9094 that they're special.
9095
9096 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9097
9098 * alloc.c (Fgarbage_collect): Tweak docstring.
9099
9100 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9101
9102 Tweak the value returned from Fgarbage_collect again.
9103 * alloc.c (Fgarbage_collect): New return value, as confirmed in
9104 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
9105 Adjust documentation.
9106 (total_vector_bytes): Rename to total_vector_slots, adjust
9107 accounting.
9108 (total_free_vector_bytes): Rename to total_free_vector_slots,
9109 adjust accounting.
9110 (Qstring_bytes, Qvector_slots): New symbols.
9111 (syms_of_alloc): DEFSYM them.
9112
9113 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9114
9115 Buffer compaction primitive which may be used from Lisp.
9116 * buffer.c (compact_buffer, Fcompact_buffer): New function.
9117 (syms_of_buffer): Register Fcompact_buffer.
9118 * alloc.c (Fgarbage_collect): Use compact_buffer.
9119 * buffer.h (compact_buffer): New prototype.
9120 (struct buffer_text): New member.
9121
9122 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
9123
9124 New macro to iterate over all buffers, miscellaneous cleanups.
9125 * lisp.h (all_buffers): Remove declaration.
9126 * buffer.h (all_buffers): Add declaration, with comment.
9127 (for_each_buffer): New macro.
9128 * alloc.c (Fgarbage_collect, mark_object): Use it.
9129 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
9130 (init_buffer): Likewise.
9131 * data.c (Fset_default): Likewise.
9132 * coding.c (code_conversion_restore): Remove redundant check
9133 for dead buffer.
9134 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
9135
9136 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9137
9138 Fix bug that created negative-length intervals.
9139 * intervals.c (merge_interval_right, merge_interval_left):
9140 Do not zero out this interval if it is absorbed by its children,
9141 as this interval's total length doesn't change in that case. See
9142 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
9143
9144 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
9145
9146 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
9147 when invoking (make-bool-vector N t) and N is a positive
9148 multiple of 8 -- the last 8 bits were mistakenly cleared.
9149
9150 Remove some struct layout assumptions in bool vectors.
9151 * alloc.c (bool_header_size): New constant.
9152 (header_size, word_size): Move earlier, as they're now used earlier.
9153 Use 'word_size' in a few more places, where it's appropriate.
9154 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
9155 padding before the data member of a bool vector.
9156 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
9157 than doing the check by hand with an abort ().
9158
9159 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9160
9161 * eval.c (Fdefvar): Don't check constants since we only set the var if
9162 it's not yet defined anyway (bug#11904).
9163
9164 * lisp.h (last_undo_boundary): Declare new var.
9165 * keyboard.c (command_loop_1): Set it.
9166 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
9167 were auto-added by the command loop (bug#11774).
9168
9169 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9170
9171 * w32font.c (Qsymbol): Remove local definition.
9172 (syms_of_w32font): Don't DEFSYM it.
9173
9174 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9175
9176 Fix sweep_vectors to handle large bool vectors correctly.
9177 * alloc.c (sweep_vectors): Account total_vector_bytes for
9178 bool vectors larger than VBLOCK_BYTES_MAX.
9179
9180 2012-07-18 Chong Yidong <cyd@gnu.org>
9181
9182 * frame.c (x_set_frame_parameters): Revert bogus change introduced
9183 in 2012-05-25 commit by Paul Eggert (Bug#11738).
9184
9185 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9186
9187 Return more descriptive data from Fgarbage_collect.
9188 Suggested by Stefan Monnier in
9189 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
9190 * alloc.c (bounded_number): New function.
9191 (total_buffers, total_vectors): New variable.
9192 (total_string_size): Rename to total_string_bytes, adjust users.
9193 (total_vector_size): Rename to total_vector_bytes, adjust users.
9194 (sweep_vectors): Account total_vectors and total_vector_bytes.
9195 (Fgarbage_collect): New return value. Adjust documentation.
9196 (gc_sweep): Account total_buffers.
9197 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
9198 (VECTOR_SIZE): Remove.
9199 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
9200 (Qinterval, Qmisc): New symbols.
9201 (syms_of_data): Initialize them.
9202 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
9203 (Qcons, Qbuffer): New declarations.
9204
9205 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9206
9207 * alloc.c (Fmemory_free): Account for memory-free's own storage.
9208 Round up, not down. Improve doc.
9209
9210 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9211
9212 Restore old code in allocate_string_data to avoid Faset breakage.
9213 Reported by Julien Danjou <julien@danjou.info> in
9214 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
9215 * alloc.c (allocate_string_data): Restore old code with minor
9216 adjustments, fix comment to explain this subtle issue.
9217
9218 2012-07-17 Eli Zaretskii <eliz@gnu.org>
9219
9220 Remove FILE_SYSTEM_CASE.
9221 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
9222
9223 * fileio.c (FILE_SYSTEM_CASE): Don't define.
9224 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
9225 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
9226 call-process-region passes it through expand-file-name.
9227
9228 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
9229
9230 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9231
9232 Fix crash when creating indirect buffer (Bug#11917)
9233 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
9234 Don't handle unbound variables specially if non-zero.
9235 (Fbuffer_local_variables): Pass zero.
9236 (clone_per_buffer_values): Pass non-zero.
9237
9238 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9239
9240 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
9241 to make the loop interruptible.
9242
9243 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9244
9245 * gnutls.c (emacs_gnutls_handshake): Only retry if
9246 GNUTLS_E_INTERRUPTED.
9247
9248 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9249
9250 Cleanup and convert miscellaneous checks to eassert.
9251 * alloc.c (mark_interval): Fix comment, partially rephrase
9252 old comment from intervals.h (see below).
9253 * intervals.c (find_interval, adjust_intervals_for_insertion)
9254 (delete_interval, adjust_intervals_for_deletion)
9255 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
9256 Convert to eassert.
9257 (adjust_intervals_for_insertion, make_new_interval):
9258 Remove obsolete and unused code.
9259 * intervals.h (struct interval): Remove obsolete comment.
9260 * textprotp.c (erase_properties): Remove unused code.
9261 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
9262 (Fremove_list_of_text_properties): Convert to eassert.
9263
9264 2012-07-17 Chong Yidong <cyd@gnu.org>
9265
9266 * editfns.c (Finsert_char): Doc fix.
9267
9268 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9269
9270 Fix previous change to make Fmemory_free always accurate.
9271 * alloc.c (make_interval): Update total_free_intervals.
9272 (make_float): Likewise for total_free_floats.
9273 (free_cons, Fcons): Likewise for total_free_conses.
9274 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
9275 Likewise for total_free_vector_bytes.
9276 (Fmake_symbol): Likewise for total_free_symbols.
9277 (bytes_free): Remove.
9278
9279 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9280
9281 Simple free memory accounting feature.
9282 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
9283 (sweep_vectors): Accumulate size of free vectors.
9284 (Fgarbage_collect): Setup bytes_free.
9285 (Fmemory_free): New function.
9286 (syms_of_alloc): Register it.
9287
9288 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9289
9290 Cleanup overlays checking.
9291 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
9292 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
9293 eassert and OVERLAYP.
9294 (sort_overlays): Change to use OVERLAYP.
9295
9296 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9297
9298 * editfns.c (Finsert_char): Make it interactive, and make the
9299 second arg optional. Copy interactive spec and docstring from
9300 ucs-insert.
9301
9302 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9303
9304 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
9305 Unlike the other wrapped functions, fabs has an unspecified
9306 effect on errno.
9307
9308 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
9309
9310 * nsterm.m (keyDown): Interpret flags without left/right bits
9311 as the left key (Bug#11670).
9312
9313 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9314
9315 Remove empty and useless init functions.
9316 * lisp.h (init_character_once, init_fns, init_image)
9317 (init_filelock, init_sound): Remove prototype.
9318 * character.c (init_character_once): Remove.
9319 * filelock.c (init_filelock): Likewise.
9320 * fns.c (init_fns): Likewise.
9321 * image.c (init_image): Likewise.
9322 * sound.c (init_sound): Likewise.
9323 * emacs.c (main): Adjust accordingly.
9324
9325 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9326
9327 * gtkutil.h: Tiny cleanups.
9328 (use_old_gtk_file_dialog): Remove useless declaration.
9329 (xg_uses_old_file_dialog): Add suggested const attribute.
9330
9331 2012-07-15 Eli Zaretskii <eliz@gnu.org>
9332
9333 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
9334 (bidi_paragraph_init): Use it to limit search forward for a strong
9335 directional character in abnormally large paragraphs full of
9336 neutral or weak characters. (Bug#11943)
9337
9338 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
9339
9340 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
9341 the toolbar (Bug#9451).
9342 (xg_make_tool_item): Give the widget event box a transparent
9343 background.
9344
9345 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9346
9347 Cleanup basic allocation variables and functions.
9348 * alloc.c (ignore_warnings, init_intervals, init_float)
9349 (init_cons, init_symbol, init_marker): Remove.
9350 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
9351 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
9352 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
9353 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
9354 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
9355 (staticidx, init_alloc_once, init_strings, free_ablock):
9356 Remove redundant initialization.
9357 * fns.c (init_weak_hash_tables): Remove.
9358 * lisp.h (init_weak_hash_tables): Remove prototype.
9359
9360 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9361
9362 Use zero_vector where appropriate.
9363 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
9364 accordingly.
9365 * lisp.h (zero_vector): New declaration.
9366 * font.c (null_vector): Remove.
9367 (syms_of_font): Remove initialization and staticpro.
9368 (font_list_entities, font_find_for_lface): Change to use zero_vector.
9369 * keymap.c (Faccessible_keymaps): Likewise.
9370
9371 2012-07-15 Leo Liu <sdl.web@gmail.com>
9372
9373 * fringe.c: Fix typo in comments.
9374
9375 2012-07-14 Leo Liu <sdl.web@gmail.com>
9376
9377 * fringe.c: Add a new bitmap exclamation-mark.
9378
9379 2012-07-14 Eli Zaretskii <eliz@gnu.org>
9380
9381 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
9382
9383 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
9384 (HAVE_MENUS): Don't define, defined by editing config.in with
9385 msdos/sed2v2.inp.
9386 (GMALLOC_INHIBIT_VALLOC): Don't define.
9387 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
9388
9389 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
9390
9391 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
9392
9393 2012-07-14 Glenn Morris <rgm@gnu.org>
9394
9395 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
9396 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
9397 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
9398
9399 2012-07-13 Glenn Morris <rgm@gnu.org>
9400
9401 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9402
9403 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
9404 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
9405
9406 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9407
9408 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
9409 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
9410 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
9411 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
9412 where appropriate.
9413 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
9414 as boolean expression.
9415 (x_set_window_size): Remove unused variable toolbar.
9416 (ns_get_color_default, ns_mod_to_lisp): Remove.
9417 (ns_mouse_position): Remove unused variables xchar and ychar.
9418 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9419 (ns_set_vertical_scroll_bar): Remove unused variable count.
9420 (ns_delete_terminal): Remove unused variable i.
9421 (ns_term_init): Remove unused variables r, g and b.
9422 (mouseDown): Remove unused variable window.
9423 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9424 (initFrameFromEmacs): Remove unused variable vbextra.
9425 (mouseEntered): Remove unused variables p and dpyinfo.
9426 (mouseExited): Remove unused variables p and r.
9427 (ns_define_frame_cursor, ns_clear_frame_area)
9428 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9429 (menuDown): Assign [sender tag] to variable and cast the variable.
9430
9431 * nsterm.h (menuDown): Add id as type to argument sender.
9432 (ns_display_info_for_name): Add Lisp_Object argument.
9433 (ns_term_init): Add Lisp_Object argument.
9434 (ns_map_event_to_object): Add void argument.
9435 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9436 prototype with arguments and only declare if __OBJC__.
9437 (nxatoms_of_nsselect): Add void argument.
9438 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9439 (ns_alloc_autorelease_pool): Add void argument.
9440 (ns_release_autorelease_pool): Add void* argument.
9441 (ns_get_defaults_value): Add const char* argument.
9442
9443 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9444 (initFromContents): Use SSDATA where appropriate.
9445 (ns_update_menubar): Add braces to ambigous if-else.
9446 (initWithTitle): Put () around assignment in if statement.
9447 (ns_menu_show): Remove unused variables window and keymap.
9448 (update_frame_tool_bar): Remove unused variable selected_p.
9449 (initWithContentRect): Remove unused variable this_cmd_name.
9450
9451 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9452 appropriate.
9453 (setXBMColor): Remove unused variable len.
9454 (setPixmapData): Put () around assignment in loop statement.
9455
9456 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9457 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9458 where appropriate.
9459 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9460 around assignment in loop statement.
9461 (nsfont_open): Remove unused variable i.
9462 (nsfont_open): Remove unused variable len.
9463 (nsfont_draw): Remove unused variable cs.
9464
9465 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9466 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9467 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9468 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9469 (Fns_font_name, Fns_perform_service)
9470 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9471 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9472 (ns_set_name): Remove unused variable view.
9473 (x_set_menu_bar_lines): Remove unused variable olines.
9474 (x_set_tool_bar_lines): Remove unused variable root_window.
9475 (Fns_list_colors): Put () around assignment in while statement.
9476 (Fns_perform_service): Remove unused variable len.
9477 (Fns_display_usable_bounds): Remove unused variable top.
9478 (syms_of_nsfns): Remove unused variable i.
9479
9480 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9481 memcpy (Bug#11907).
9482
9483 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9484
9485 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9486 and free it with DestroyExceptionInfo (Bug#11558).
9487
9488 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9489
9490 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9491 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9492 Set here, not in nt/config.nt.
9493
9494 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9495
9496 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9497 cursor overflow into the last glyph on display line when the right
9498 fringe is off. (Bug#11832)
9499
9500 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9501
9502 * xdisp.c (produce_special_glyphs): Now static.
9503 * dispextern.h (produce_special_glyphs): Remove decl.
9504
9505 2012-07-13 Glenn Morris <rgm@gnu.org>
9506
9507 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9508 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9509
9510 * s/usg5-4-common.h (USG, USG5):
9511 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9512 * s/sol2-6.h (SOLARIS2):
9513 * s/irix6-5.h (IRIX6_5):
9514 * s/hpux10-20.h (USG, USG5, HPUX):
9515 * s/gnu-linux.h (USG, GNU_LINUX):
9516 * s/freebsd.h (BSD_SYSTEM):
9517 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
9518 * s/cygwin.h (CYGWIN):
9519 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
9520 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
9521
9522 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
9523
9524 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
9525
9526 2012-07-13 Glenn Morris <rgm@gnu.org>
9527
9528 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9529
9530 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9531
9532 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9533 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9534
9535 2012-07-12 Glenn Morris <rgm@gnu.org>
9536
9537 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
9538
9539 * process.c (init_process_emacs): Rename from init_process.
9540 The old name is also the name of a Mach system call.
9541 * lisp.h, emacs.c: Update for this name change.
9542 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
9543 longer needed.
9544
9545 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9546
9547 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
9548 memmove call that removes glyphs covered by the left truncation
9549 glyph. Improve commentary.
9550 (display_line): Fix display of continuation glyphs on GUI frames
9551 when the right fringe is turned off and variable-size fonts are
9552 used in the window. Move the code that appends a stretch glyph to
9553 produce_special_glyphs, so that it could be used for truncation
9554 and continuation glyphs alike.
9555 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
9556 glyph of a suitably computed width, to align the special glyphs at
9557 the window margin. Code moved from display_line. (Bug#11832)
9558
9559 2012-07-12 Glenn Morris <rgm@gnu.org>
9560
9561 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
9562
9563 * s/gnu-linux.h, s/hpux10-20.h:
9564 Do not unconditionally define HAVE_XRMSETDATABASE.
9565
9566 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9567
9568 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
9569
9570 Fix typos that broke OS X build.
9571 Reported by Randal L. Schwartz in
9572 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
9573 * nsterm.m (ns_timeout): Add missing local decl.
9574 (ns_get_color): snprintf -> sprintf, to fix typo.
9575
9576 2012-07-12 Glenn Morris <rgm@gnu.org>
9577
9578 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
9579 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
9580 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
9581 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
9582
9583 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9584 Move PTY_OPEN to configure.
9585
9586 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9587 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
9588 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
9589
9590 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
9591
9592 Use empty_unibyte_string where applicable.
9593 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
9594 * lread.c (read1): Likewise.
9595 * xsettings.c (syms_of_xsettings): Likewise.
9596
9597 2012-07-12 Glenn Morris <rgm@gnu.org>
9598
9599 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9600 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
9601 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
9602 * s/hpux10-20.h (RUN_TIME_REMAP):
9603 * s/bsd-common.h (TABDLY): Move to configure.
9604
9605 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
9606
9607 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
9608
9609 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9610 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
9611
9612 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
9613
9614 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
9615 * s/template.h: Move NARROWPROTO to configure.
9616
9617 2012-07-11 Glenn Morris <rgm@gnu.org>
9618
9619 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9620 unused since 2011-01-17 change to systty.h.
9621
9622 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
9623 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9624 Move HAVE_PTYS and HAVE_SOCKETS to configure.
9625
9626 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9627
9628 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9629
9630 2012-07-11 Glenn Morris <rgm@gnu.org>
9631
9632 * s/darwin.h, s/gnu-linux.h, s/template.h:
9633 Move INTERRUPT_INPUT to configure.
9634
9635 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9636
9637 Minor adjustments to interning code.
9638 * lisp.h (intern, intern_c_string): Redefine as static inline
9639 wrappers for intern_1 and intern_c_string_1, respectively.
9640 (intern_1, intern_c_string_1): Rename prototypes.
9641 * lread.c (intern_1, intern_c_string_1, oblookup):
9642 Simplify Vobarray checking.
9643 * font.c (font_intern_prop): Likewise. Adjust comment.
9644 * w32font.c (intern_font_name): Likewise.
9645
9646 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9647
9648 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9649
9650 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
9651 of Fcar/Fcdr if possible.
9652 * font.c (check_otf_features): Likewise.
9653 * fontset.c (Fnew_fontset): Likewise.
9654 * gnutls.c (Fgnutls_boot): Likewise.
9655 * minibuf.c (read_minibuf): Likewise.
9656 * msdos.c (IT_set_frame_parameters): Likewise.
9657 * xmenu.c (Fx_popup_dialog): Likewise.
9658 * w32menu.c (Fx_popup_dialog): Likewise.
9659
9660 2012-07-11 Glenn Morris <rgm@gnu.org>
9661
9662 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9663 since nothing has defined it on these platforms.
9664
9665 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
9666 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
9667
9668 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9669 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9670 Move CLASH_DETECTION to configure.
9671
9672 * s/gnu.h: Remove file, which is now empty.
9673
9674 * s/gnu.h, s/gnu-linux.h:
9675 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9676
9677 2012-07-11 John Wiegley <johnw@newartisans.com>
9678
9679 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
9680 function attribute, so we only use it if it exists in the
9681 compiler.
9682
9683 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9684
9685 Avoid call to strlen in fast_c_string_match_ignore_case.
9686 * search.c (fast_c_string_match_ignore_case): Change to use
9687 length argument. Adjust users accordingly.
9688 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
9689
9690 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9691
9692 Assume mkdir, rmdir.
9693 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9694 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9695
9696 Assume rename.
9697 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9698
9699 Assume perror.
9700 * s/hpux10-20.h (HAVE_PERROR): Remove.
9701 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
9702 Remove dummy definition, as this problem was obsolete long ago.
9703
9704 Assume strerror.
9705 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9706
9707 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9708
9709 Avoid calls to strlen in font processing functions.
9710 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
9711 (font_open_by_name): Change to use length argument.
9712 Adjust users accordingly.
9713 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
9714 Adjust prototypes.
9715 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
9716 Change to return ptrdiff_t.
9717 (xfont_list_pattern, xfont_match): Use length returned by
9718 xfont_decode_coding_xlfd.
9719 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
9720
9721 2012-07-11 Glenn Morris <rgm@gnu.org>
9722
9723 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9724 Move DONT_REOPEN_PTY to configure.
9725
9726 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9727 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9728
9729 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9730
9731 Remove "#define unix" that is no longer needed (Bug#11905).
9732 * s/aix4-2.h (unix): Remove; no longer needed.
9733
9734 EMACS_TIME simplification (Bug#11875).
9735 This replaces macros (which typically do not work in GDB)
9736 with functions, typedefs and enums, making the code easier to debug.
9737 The functional style also makes code easier to read and maintain.
9738 * systime.h: Include <sys/time.h> on all hosts, not just if
9739 WINDOWSNT, since 'struct timeval' is needed in general.
9740 (EMACS_TIME): Now a typedef, not a macro.
9741 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
9742 not macros.
9743 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
9744 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
9745 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
9746 (EMACS_TIME_LE): Now functions, not macros.
9747 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
9748 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
9749 which are not functions. All uses rewritten to use:
9750 (make_emacs_time): New function.
9751 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
9752 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
9753 not functions. All uses rewritten to use the following, respectively:
9754 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
9755 (add_emacs_time, sub_emacs_time): New functions.
9756 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
9757 * fileio.c (Fcopy_file):
9758 * xterm.c (XTflash): Get the current time closer to when it's used.
9759 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
9760
9761 * bytecode.c (targets): Suppress -Woverride-init warnings.
9762
9763 Simplify by avoiding confusing use of strncpy etc.
9764 * doc.c (Fsnarf_documentation):
9765 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
9766 * frame.c (Fmake_terminal_frame):
9767 * gtkutil.c (get_utf8_string):
9768 * lread.c (openp):
9769 * nsmenu.m (ns_update_menubar):
9770 * regex.c (regerror):
9771 Prefer memcpy to strncpy and strncat when either will do.
9772 * fileio.c (Fsubstitute_in_file_name):
9773 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
9774 (menu_separator_name_p):
9775 * nsmenu.m (ns_update_menubar):
9776 Prefer memcmp to strncmp when either will do.
9777 * nsterm.m: Include <ftoastr.h>.
9778 (ns_get_color):
9779 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
9780 Prefer snprintf to strncpy.
9781 * nsterm.m (ns_term_init):
9782 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
9783 * nsterm.m (ns_term_init):
9784 Avoid the need for strncpy, by using build_string or
9785 make_unibyte_string directly. Use dtoastr, not snprintf.
9786 * process.c (Fmake_network_process): Diagnose service names that
9787 are too long, rather than silently truncating them or creating
9788 non-null-terminated names.
9789 (Fnetwork_interface_info): Likewise, for interface names.
9790 * sysdep.c (system_process_attributes) [GNU_LINUX]:
9791 Prefer sprintf to strncat.
9792 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
9793 Prefer vsnprintf to vsprintf + strncpy.
9794
9795 2012-07-10 Glenn Morris <rgm@gnu.org>
9796
9797 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9798 Clarify fallback case.
9799
9800 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9801
9802 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
9803 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
9804 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
9805 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
9806 where argument type is known to be a Lisp_Cons.
9807
9808 2012-07-10 Tom Tromey <tromey@redhat.com>
9809
9810 * bytecode.c (BYTE_CODE_THREADED): New macro.
9811 (BYTE_CODES): New macro. Replaces all old byte-code defines.
9812 (enum byte_code_op): New type.
9813 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
9814 (exec_byte_code): Use them. Use token threading when applicable.
9815
9816 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9817
9818 Optimize pure C strings initialization.
9819 * lisp.h (make_pure_string): Fix prototype.
9820 (build_pure_c_string): New function, defined as static inline. This
9821 provides a better opportunity to optimize away calls to strlen when
9822 the function is called with compile-time constant argument.
9823 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
9824 argument, adjust users accordingly. Use build_pure_c_string where
9825 appropriate.
9826 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
9827 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
9828 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
9829
9830 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9831
9832 Avoid calls to strlen in miscellaneous functions.
9833 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
9834 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
9835 * lread.c (openp): Likewise.
9836
9837 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9838
9839 Avoid calls to strlen in path processing functions.
9840 * fileio.c (file_name_as_directory): Add comment. Change to add
9841 srclen argument and return the length of result. Adjust users
9842 accordingly.
9843 (directory_file_name): Fix comment. Change to add srclen argument,
9844 swap 1st and 2nd arguments to obey the common convention.
9845 Adjust users accordingly.
9846 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9847
9848 2012-07-10 Glenn Morris <rgm@gnu.org>
9849
9850 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
9851 Move PENDING_OUTPUT_COUNT definition to configure.
9852
9853 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
9854 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
9855 * s/gnu.h (DATA_START): Move definitions to configure.
9856
9857 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
9858 We include usg5-4-common.h, which defines them both.
9859
9860 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9861 O_RDONLY already includes it).
9862
9863 Stop ns builds setting the EMACSLOADPATH environment variable.
9864 * nsterm.m (ns_load_path): Rename from ns_init_paths.
9865 Now it does not set EMACSLOADPATH, just returns the load-path string.
9866 * nsterm.h: Update accordingly.
9867 * lread.c [HAVE_NS]: Include nsterm.h.
9868 (init_lread) [HAVE_NS]: Use ns_load_path.
9869 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
9870
9871 2012-07-09 Glenn Morris <rgm@gnu.org>
9872
9873 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9874 since the included bsd-common.h does so.
9875
9876 Stop ns builds setting the EMACSPATH environment variable.
9877 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
9878 (ns_init_paths): Do not set EMACSPATH.
9879 * nsterm.h (ns_exec_path): Add it.
9880 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
9881 Use ns_exec_path.
9882
9883 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9884
9885 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9886
9887 * process.c (wait_reading_process_output): 'waitchannels' was unset
9888 when read_kbd || !NILP (wait_for_cell); fix this.
9889
9890 Add GCC-style 'const' attribute to functions that can use it.
9891 * character.h (char_resolve_modifier_mask):
9892 * keyboard.h (make_ctrl_char):
9893 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
9894 (init_character_once, next_almost_prime, init_fns, init_image)
9895 (flush_pending_output, init_sound):
9896 * mem-limits.h (start_of_data):
9897 * menu.h (finish_menu_items):
9898 Add ATTRIBUTE_CONST.
9899 * emacs.c (DEFINE_DUMMY_FUNCTION):
9900 Declare the dummy function with ATTRIBUTE_CONST.
9901 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
9902 Add decls with ATTRIBUTE_CONST.
9903
9904 Minor improvements to make_formatted_string.
9905 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
9906 where int is good enough, as vsprintf returns an int.
9907 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
9908
9909 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9910
9911 Use make_formatted_string to avoid double length calculation.
9912 * lisp.h (make_formatted_string): New prototype.
9913 * alloc.c (make_formatted_string): New function.
9914 * buffer.c (Fgenerate_new_buffer_name): Use it.
9915 * dbusbind.c (syms_of_dbusbind): Likewise.
9916 * editfns.c (Fcurrent_time_zone): Likewise.
9917 * filelock.c (get_boot_time): Likewise.
9918 * frame.c (make_terminal_frame, set_term_frame_name)
9919 (x_report_frame_params): Likewise.
9920 * image.c (gs_load): Likewise.
9921 * minibuf.c (get_minibuffer): Likewise.
9922 * msdos.c (dos_set_window_size): Likewise.
9923 * process.c (make_process): Likewise.
9924 * xdisp.c (ensure_echo_area_buffers): Likewise.
9925 * xsettings.c (apply_xft_settings): Likewise.
9926
9927 2012-07-09 Glenn Morris <rgm@gnu.org>
9928
9929 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
9930 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
9931 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
9932 * nsterm.h (ns_etc_directory): Add it.
9933 * callproc.c [HAVE_NS]: Include nsterm.h.
9934 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
9935
9936 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9937
9938 Move marker debugging code under MARKER_DEBUG.
9939 * marker.c (MARKER_DEBUG): Move marker debugging code under
9940 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
9941 for bootstrap with --enable-checking (~3x slowdown reported
9942 by Juanma Barranquero <lekktu@gmail.com>).
9943 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
9944
9945 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
9946
9947 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
9948 See <http://bugs.gnu.org/11825#29>.
9949
9950 2012-07-08 Eli Zaretskii <eliz@gnu.org>
9951
9952 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
9953 has no font, use the frame's font. (Bug#11813)
9954 (display_line): Add commentary about displaying truncation glyphs
9955 on GUI frames.
9956 (produce_special_glyphs): Move here from term.c.
9957
9958 * term.c (produce_special_glyphs): Move to xdisp.c.
9959
9960 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
9961 section.
9962
9963 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9964
9965 * xdisp.c (display_line): Avoid warning about implicit declaration
9966 of FRAME_FONT.
9967
9968 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9969
9970 * lisp.h: Remove empty conditional.
9971
9972 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9973
9974 * lread.c (load_path_check): Now static.
9975
9976 Fix some minor --with-ns problems found by static checking.
9977 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
9978 (x_set_font) [!HAVE_X_WINDOWS]:
9979 * image.c (xpm_load_image) [HAVE_NS]:
9980 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
9981 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
9982 Remove unused local.
9983 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
9984 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
9985 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
9986 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
9987 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
9988 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
9989 Fix pointer signedness problem.
9990 * xfaces.c (FRAME_X_FONT_TABLE):
9991 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
9992
9993 2012-07-07 Glenn Morris <rgm@gnu.org>
9994
9995 * lread.c (load_path_check): New function, split from init_lread.
9996 (init_lread): Reorganize. Motivation:
9997 If EMACSLOADPATH is set, check/warn about that rather than the
9998 defaults, which we are not going to use. Hence we can remove
9999 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
10000 Don't warn if site-lisp directories are missing.
10001 If not installed, start from a blank load-path, since
10002 PATH_LOADSEARCH refers to the eventual installation directories.
10003
10004 2012-07-07 Eli Zaretskii <eliz@gnu.org>
10005
10006 Support truncation and continuation glyphs on GUI frames, when
10007 fringes are disabled. (Bug#11832)
10008 * xdisp.c (init_iterator): Get dimensions of truncation and
10009 continuation glyphs even if on GUI frames.
10010 Adjust it->last_visible_x on GUI frames when the left or right fringes,
10011 or both, are absent.
10012 (start_display, move_it_in_display_line_to): Handle the case of a
10013 GUI frame without a fringe to display continuation or truncation
10014 glyphs.
10015 (insert_left_trunc_glyphs): Support GUI frames: make sure
10016 truncation glyphs overwrite enough glyphs from the current line to
10017 have sufficient space in pixels.
10018 (display_line): Support truncation and continuation glyphs on GUI
10019 frames. If some spare pixels are left on the line after inserting
10020 the truncation glyphs, fill that space with a stretch glyph of a
10021 suitably computed width.
10022
10023 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
10024 produce_glyphs, to support GUI sessions.
10025
10026 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10027
10028 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
10029
10030 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
10031
10032 Do not require float-time's arg to fit in time_t (Bug#11825).
10033 This works better on hosts where time_t is unsigned, and where
10034 float-time is applied to the (negative) difference between two times.
10035 * editfns.c (decode_time_components): Last arg is now double *,
10036 not int *, and means to store all the result as a double, without
10037 worrying about whether the seconds part fits in time_t.
10038 All callers changed.
10039 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
10040 All callers changed.
10041 (Ffloat_time): Do not fail merely because the specified time falls
10042 outside of time_t range.
10043
10044 2012-07-07 Glenn Morris <rgm@gnu.org>
10045
10046 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
10047 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
10048 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
10049
10050 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
10051
10052 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
10053 Update dependencies.
10054
10055 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
10056
10057 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10058
10059 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
10060 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
10061 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
10062 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
10063 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
10064 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
10065
10066 * xfont.c (compare_font_names): Redo to omit the need for casts.
10067
10068 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
10069
10070 * xfns.c (Fx_change_window_property): Doc fix.
10071 * w32fns.c (Fx_change_window_property): Doc fix.
10072
10073 * w32fns.c (Fx_window_property): Accept the same arguments as the
10074 X Windows version. Doc fix.
10075 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
10076
10077 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
10078 Eli Zaretskii <eliz@gnu.org>
10079
10080 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
10081 Windows-specific code from nt/config.nt moved here.
10082 Obsolete settings removed.
10083
10084 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10085
10086 * process.c: Avoid unnecessary calls to gettime.
10087 (wait_reading_process_output): Don't get the time of day
10088 when gobbling data immediately and not waiting, as there's no need
10089 for it in that case. This removes a FIXME.
10090
10091 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
10092
10093 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
10094 is defined (Bug#11768).
10095
10096 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10097
10098 Fix marker debugging code.
10099 * marker.c (byte_char_debug_check): Do not perform the check
10100 if buffer is not multibyte.
10101 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10102 Call byte_char_debug_check with correct arguments.
10103
10104 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10105
10106 Compile marker debugging code only if ENABLE_CHECKING is defined.
10107 * marker.c (byte_char_debug_check, count_markers):
10108 Use only if ENABLE_CHECKING is defined.
10109 (byte_debug_flag): Remove.
10110 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10111 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
10112
10113 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10114
10115 Avoid code repetition in marker-related functions.
10116 * marker.c (attach_marker): New function.
10117 (Fset_marker, set_marker_restricted, set_marker_both)
10118 (set_marker_restricted_both): Use it.
10119 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
10120 Consistently rename charno to charpos.
10121 (marker_position): Add eassert.
10122 (marker_byte_position): Convert to eassert.
10123
10124 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10125
10126 Simplify list operations in unchain_overlay and unchain_marker.
10127 * buffer.c (unchain_overlay): Simplify. Add comment.
10128 * marker.c (unchain_marker): Simplify. Fix comments.
10129
10130 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10131
10132 Introduce fast path for the widely used marker operation.
10133 * alloc.c (build_marker): New function.
10134 * lisp.h (build_marker): New prototype.
10135 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
10136 * composite.c (autocmp_chars): Likewise.
10137 * editfns.c (buildmark): Remove.
10138 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
10139 (save_restriction_save): Use build_marker.
10140 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
10141 * window.c (save_window_save): Likewise.
10142
10143 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10144
10145 Do not use Fdelete_overlay in delete_all_overlays
10146 to avoid redundant calls to unchain_overlay.
10147 * buffer.c (drop_overlay): New function.
10148 (delete_all_overlays, Fdelete_overlay): Use it.
10149 * minibuf.c (get_minibuffer): Fix comment.
10150
10151 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10152
10153 Port to OpenBSD 5.1 amd64.
10154 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
10155 This is needed for OpenBSD, and should be harmless on all BSD systems.
10156 Also, include <sys/sysctl.h>, as it should be available on all
10157 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
10158 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
10159 use p_pid member, not kp_proc.pid.
10160
10161 2012-07-06 Glenn Morris <rgm@gnu.org>
10162
10163 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
10164
10165 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10166
10167 More xmalloc and related cleanup.
10168 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
10169 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
10170 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
10171 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
10172 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
10173 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
10174 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
10175 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
10176 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
10177 * xterm.c:
10178 Omit needless casts involving void * pointers and allocation.
10179 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
10180 as the former is more robust if P's type is changed.
10181 Prefer xzalloc to xmalloc + memset 0.
10182 Simplify malloc-or-realloc to realloc.
10183 Don't worry about xmalloc returning a null pointer.
10184 Prefer xstrdup to xmalloc + strcpy.
10185 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
10186 growing it.
10187 * keyboard.c (apply_modifiers_uncached): Prefer local array to
10188 alloca of a constant.
10189
10190 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10191
10192 * xdisp.c (display_line): Fix horizontal pixel coordinates when
10193 hscroll is larger than the line width. Fixes long and futile
10194 looping inside extend_face_to_end_of_line (on a TTY) producing
10195 glyphs that are not needed and thrown away.
10196
10197 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10198
10199 * marker.c (set_marker_restricted_both): Simplify by using
10200 clip_to_bounds.
10201
10202 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10203
10204 * editfns.c (region_limit): Simplify by using clip_to_bounds.
10205
10206 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
10207
10208 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
10209 not defined (Bug#11768).
10210 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
10211 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
10212 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
10213 followed by gtk_box_set_homogeneous (Bug#11768).
10214 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
10215 (update_theme_scrollbar_width, xg_create_scroll_bar):
10216 Use gtk_scrollbar_new (Bug#11768).
10217 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
10218 (is_box_type): New function (Bug#11768).
10219 (xg_tool_item_stale_p): Call is_box_type.
10220 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
10221 with default display (Bug#11768).
10222
10223 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10224
10225 * xdisp.c (window_hscroll_limited): New function.
10226 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
10227 coordinates when window's hscroll is set to insanely large
10228 values. (Bug#11857)
10229
10230 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
10231
10232 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
10233 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
10234
10235 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10236
10237 Cleanup xmalloc.
10238 * lisp.h (xzalloc): New prototype. Omit needless casts.
10239 * alloc.c (xzalloc): New function. Omit needless casts.
10240 * charset.c: Omit needless casts. Convert all calls to
10241 xmalloc with following memset to xzalloc.
10242 * dispnew.c: Likewise.
10243 * fringe.c: Likewise.
10244 * image.c: Likewise.
10245 * sound.c: Likewise.
10246 * term.c: Likewise.
10247 * w32fns.c: Likewise.
10248 * w32font.c: Likewise.
10249 * w32term.c: Likewise.
10250 * xfaces.c: Likewise.
10251 * xfns.c: Likewise.
10252 * xterm.c: Likewise.
10253 * atimer.c: Omit needless casts.
10254 * buffer.c: Likewise.
10255 * callproc.c: Likewise.
10256 * ccl.c: Likewise.
10257 * coding.c: Likewise.
10258 * composite.c: Likewise.
10259 * doc.c: Likewise.
10260 * doprnt.c: Likewise.
10261 * editfns.c: Likewise.
10262 * emacs.c: Likewise.
10263 * eval.c: Likewise.
10264 * filelock.c: Likewise.
10265 * fns.c: Likewise.
10266 * gtkutil.c: Likewise.
10267 * keyboard.c: Likewise.
10268 * lisp.h: Likewise.
10269 * lread.c: Likewise.
10270 * minibuf.c: Likewise.
10271 * msdos.c: Likewise.
10272 * print.c: Likewise.
10273 * process.c: Likewise.
10274 * region-cache.c: Likewise.
10275 * search.c: Likewise.
10276 * sysdep.c: Likewise.
10277 * termcap.c: Likewise.
10278 * terminal.c: Likewise.
10279 * tparam.c: Likewise.
10280 * w16select.c: Likewise.
10281 * w32.c: Likewise.
10282 * w32reg.c: Likewise.
10283 * w32select.c: Likewise.
10284 * w32uniscribe.c: Likewise.
10285 * widget.c: Likewise.
10286 * xdisp.c: Likewise.
10287 * xmenu.c: Likewise.
10288 * xrdb.c: Likewise.
10289 * xselect.c: Likewise.
10290
10291 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10292
10293 * fileio.c (time_error_value): Check the right error number.
10294 Problem reported by Troels Nielsen in
10295 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
10296
10297 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10298
10299 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
10300 This should be fixed in a better way; see Eli Zaretskii in
10301 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
10302 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
10303
10304 * fileio.c (time_error_value): Rename from special_mtime.
10305 The old name's problems were noted by Eli Zaretskii in
10306 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
10307
10308 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
10309 This variable's comment says Emacs needs at least one GDB-visible
10310 symbol of type enum pvec_type, to work around GDB problems.
10311 The symbol's value doesn't matter.
10312
10313 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
10314 that causes compilation to fail on pre-C99 compilers.
10315
10316 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
10317
10318 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
10319 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
10320
10321 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10322
10323 * buffer.c (init_buffer_once): Fix initialization of
10324 headers for buffer_defaults and buffer_local_symbols.
10325 Reported by Juanma Barranquero <lekktu@gmail.com>.
10326
10327 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10328
10329 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
10330 * lisp.h (enum pvec_type): Use fewer bits.
10331 (PSEUDOVECTOR_SIZE_BITS): New constant.
10332 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
10333 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
10334 change in pvec_type.
10335 (PSEUDOVECTOR_TYPEP): New macro.
10336 (TYPED_PSEUDOVECTORP): Use it.
10337 * fns.c (internal_equal): Adapt code to extract pvectype.
10338 * emacs.c (gdb_pvec_type): Update type.
10339 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
10340 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
10341 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
10342 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
10343 (sweep_vectors): Use it. Use local var `total_bytes' instead of
10344 abusing vector->header.next.nbytes.
10345 (live_vector_p): Use PVEC_TYPE.
10346 (mark_object): Adapt code to extract pvectype. Use switch.
10347
10348 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10349
10350 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
10351 Tighten new eassert a bit.
10352
10353 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10354
10355 Fix compilation with --enable-gcc-warnings and -O1
10356 optimization level.
10357 * doprnt.c (doprnt): Change type of tem to int, initialize
10358 to avoid compiler warning. Add eassert.
10359 * search.c (simple_search): Initialize match_byte to avoid
10360 compiler warning. Add eassert.
10361
10362 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10363
10364 Avoid weird behavior with large horizontal scrolls.
10365 Without this change, for example, large hscroll values would
10366 mess up Emacs's display on Fedora 15 x86, presumably due to
10367 overflows in int calculations in the display code.
10368 Also, if buffers had long lines, Emacs would freeze.
10369 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
10370 (set_window_hscroll): New function, containing the old guts of
10371 Fset_window_hscroll. Return the clipped value.
10372 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
10373 This avoids the need to check against PTRDIFF_MAX.
10374
10375 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
10376
10377 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10378
10379 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
10380
10381 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10382
10383 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
10384 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
10385 since GCC 4.4.6 issues a bogus warning for them.
10386
10387 Fix bugs in file timestamp newness comparisons.
10388 * fileio.c (Ffile_newer_than_file_p):
10389 * lread.c (Fload): Use full timestamp resolution of files,
10390 not just the 1-second resolution, so that files that are only
10391 slightly newer still count as newer.
10392 * fileio.c (Ffile_newer_than_file_p): Don't assume file
10393 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
10394
10395 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
10396
10397 * fileio.c: Improve handling of file time marker. (Bug#11852)
10398 (special_mtime): New function.
10399 (Finsert_file_contents, Fverify_visited_file_modtime):
10400 Use it to set special mtime values consistently.
10401
10402 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10403
10404 * fileio.c (Finsert_file_contents): Properly handle st_mtime
10405 marker for non-existing file. (Bug#11852)
10406
10407 2012-07-03 Glenn Morris <rgm@gnu.org>
10408
10409 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
10410 and did not make it into globals.h).
10411
10412 2012-07-03 Tom Tromey <tromey@redhat.com>
10413
10414 * window.c (Fset_window_margins, Fset_window_fringes)
10415 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10416 * textprop.c (Fprevious_property_change): No longer static.
10417 * syntax.c (Fsyntax_table_p): No longer static.
10418 * process.c (Fget_process, Fprocess_datagram_address): No longer
10419 static.
10420 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10421 * keyboard.c (Fcommand_execute): No longer static.
10422 Remove EXFUN.
10423 * insdel.c (Fcombine_after_change_execute): No longer static.
10424 * image.c (Finit_image_library): No longer static.
10425 * fileio.c (Fmake_symbolic_link): No longer static.
10426 * eval.c (Ffetch_bytecode): No longer static.
10427 * editfns.c (Fuser_full_name): No longer static.
10428 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10429 No longer static.
10430 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10431 static.
10432 * dired.c (Ffile_attributes): No longer static.
10433 * composite.c (Fcomposition_get_gstring): No longer static.
10434 * callproc.c (Fgetenv_internal): No longer static.
10435
10436 * ccl.h: Remove EXFUNs.
10437 * buffer.h: Remove EXFUNs.
10438 * dispextern.h: Remove EXFUNs.
10439 * intervals.h: Remove EXFUNs.
10440 * fontset.h: Remove EXFUN.
10441 * font.h: Remove EXFUNs.
10442 * dosfns.c (system_process_attributes): Remove EXFUN.
10443 * keymap.h: Remove EXFUNs.
10444 * lisp.h: Remove EXFUNs.
10445 * w32term.h: Remove EXFUNs.
10446 * window.h: Remove EXFUNs.
10447 * xsettings.h: Remove EXFUN.
10448 * xterm.h: Remove EXFUN.
10449
10450 2012-07-03 Glenn Morris <rgm@gnu.org>
10451
10452 * lisp.h (Frandom): Make it visible to C.
10453 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10454 buffer for invisible buffers. (Bug#1229)
10455
10456 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10457
10458 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10459 values which aren't power of 2.
10460 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10461 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10462 accordingly.
10463
10464 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10465
10466 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10467
10468 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10469
10470 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10471
10472 * alloc.c (allocate_vector_block): Remove redundant
10473 calls to mallopt if DOUG_LEA_MALLOC is defined.
10474 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10475 avoid calls to mallopt if zero_vector is returned.
10476
10477 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10478
10479 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10480 is enabled, avoid dereferencing NULL current_sblock if
10481 running undumped.
10482
10483 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10484
10485 Cleanup basic buffer management.
10486 * buffer.h (struct buffer): Change layout to use generic vector
10487 marking code. Fix some comments. Change type of 'clip_changed'
10488 to bitfield. Remove unused #ifndef old.
10489 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10490 (GET_OVERLAYS_AT): Fix indentation.
10491 (for_each_per_buffer_object_at): New macro.
10492 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10493 (Fbuffer_local_variables): Use it.
10494 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10495 * alloc.c (allocate_buffer): Adjust to match new layout of
10496 struct buffer. Fix comment.
10497 (mark_overlay): New function.
10498 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10499 Lisp area of struct buffer.
10500 (mark_object): Use it. Adjust marking of misc objects
10501 and related comments.
10502
10503 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10504
10505 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10506 wrapper that is not needed because the wrapped code is a no-op (zero
10507 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10508 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10509
10510 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10511
10512 * alloc.c (mark_buffer): Simplify. Remove prototype.
10513 (mark_object): Add comment. Reorganize marking of vector-like
10514 objects. Use CHECK_LIVE for all vector-like objects except buffers
10515 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10516 Avoid redundant calls to mark_vectorlike for bool vectors.
10517
10518 2012-06-30 Glenn Morris <rgm@gnu.org>
10519
10520 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10521
10522 * epaths.in (PATH_SITELOADSEARCH): New.
10523 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
10524 This is rather than relying on --enable-locallisppath elements
10525 having "site-lisp" in their names. (Bug#10208#25, 11658)
10526
10527 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10528
10529 * w32proc.c (sys_select): Accept and ignore one more argument.
10530
10531 * w32.c (emacs_gnutls_pull): Call select with one more argument.
10532
10533 * sysselect.h [DOS_NT]: Don't include sys/select.h.
10534 (pselect) [!MS_DOS]: Redirect to sys_select.
10535
10536 * sysdep.c: Don't include dos.h and dosfns.h.
10537
10538 * process.c (sys_select):
10539 * msdos.c (sys_select): Accept one more argument and ignore it.
10540
10541 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
10542 adapt data types and code to that.
10543
10544 * dosfns.c:
10545 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
10546 which clashes with the gnulib function of the same name.
10547
10548 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10549
10550 * font.c (font_style_to_value, font_style_symbolic)
10551 (font_prop_validate_style): Add type checks for values in
10552 font_style_table.
10553
10554 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
10555 argument.
10556 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
10557 uses.
10558
10559 2012-06-29 Eli Zaretskii <eliz@gnu.org>
10560
10561 * xdisp.c (try_window_id): Undo last change.
10562
10563 * w32.c (getwd): Adjust commentary about startup_dir.
10564 (init_environment): Always call sys_access, even in non-MSVC
10565 builds. Don't chdir to the directory of the Emacs executable.
10566 This undoes code from 1997 which was justified by the need to
10567 "avoid conflicts when removing and renaming directories". But its
10568 downside was that every relative file name was being interpreted
10569 relative to the directory of the Emacs executable, which can never
10570 be TRT. In particular, it broke sys_access when called with
10571 relative file names.
10572 (sys_access): Map GetLastError to errno.
10573
10574 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10575
10576 * window.h (struct window): Change type of 'fringes_outside_margins'
10577 to bitfield. Fix comment. Adjust users accordingly.
10578 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
10579 Adjust comment.
10580 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10581 to ptrdiff_t.
10582
10583 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10584
10585 * gnutls.c (emacs_gnutls_handshake):
10586 Add QUIT to make the loop interruptible.
10587
10588 2012-06-29 Glenn Morris <rgm@gnu.org>
10589
10590 * charset.c (init_charset): Make lack of etc/charsets fatal.
10591
10592 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10593
10594 * editfns.c (region_limit): Fix type mismatch.
10595
10596 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10597
10598 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
10599 undefined. Convert from xassert to eassert.
10600 * nsmenu.m: Convert from xassert to eassert.
10601 * nsterm.m: Likewise.
10602
10603 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10604
10605 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10606
10607 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
10608
10609 Avoid integer overflow on scroll-left and scroll-right.
10610 * window.c (HSCROLL_MAX): New macro.
10611 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
10612 overflow when requested scroll falls outside ptrdiff_t range.
10613
10614 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10615
10616 * window.h (struct window): Change type of 'hscroll',
10617 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
10618 'last_modified' and 'last_overlay_modified' to EMACS_INT.
10619 Adjust users accordingly.
10620 * xdisp.c (try_cursor_movement): Replace type check with eassert.
10621 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
10622 from EMACS_INT to ptrdiff_t.
10623 (make_window): Omit redundant initialization.
10624
10625 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10626
10627 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10628
10629 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10630
10631 * window.h (struct window): Change type of 'use_time' and
10632 'sequence_number' from Lisp_Object to int.
10633 * frame.c (make_frame): Adjust users accordingly.
10634 * print.c (print_object): Likewise.
10635 * window.c (select_window, Fwindow_use_time, make_parent_window)
10636 (make_window): Likewise.
10637
10638 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10639
10640 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
10641 enabled with --enable-checking=[all,glyphs] configure option.
10642 Fix GLYPH_DEBUG usage assuming that it may be undefined,
10643 adjust comments accordingly.
10644 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
10645 undefined, adjust comments accordingly.
10646 * image.c: Likewise.
10647 * scroll.c: Likewise.
10648 * w32fns.c: Likewise.
10649 * w32term.c: Likewise.
10650 * xdisp.c: Likewise.
10651 * xfaces.c: Likewise.
10652 * xfns.c: Likewise.
10653 * xterm.c: Likewise.
10654
10655 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10656
10657 Generalize run-time debugging checks.
10658 * dispextern.h (XASSERTS): Remove.
10659 * fontset.c (xassert): Remove.
10660 Convert from xassert to eassert.
10661 * alloc.c: Convert from xassert to eassert.
10662 * bidi.c: Likewise.
10663 * dispnew.c: Likewise.
10664 * fns.c: Likewise.
10665 * fringe.c: Likewise.
10666 * ftfont.c: Likewise.
10667 * gtkutil.c: Likewise.
10668 * image.c: Likewise.
10669 * keyboard.c: Likewise.
10670 * menu.c: Likewise.
10671 * process.c: Likewise.
10672 * scroll.c: Likewise.
10673 * sound.c: Likewise.
10674 * term.c: Likewise.
10675 * w32console.c: Likewise.
10676 * w32fns.c: Likewise.
10677 * w32term.c: Likewise.
10678 * window.c: Likewise.
10679 * xdisp.c: Likewise.
10680 * xfaces.c: Likewise.
10681 * xfns.c: Likewise.
10682 * xselect.c: Likewise.
10683 * xterm.c: Likewise.
10684
10685 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10686
10687 * fns.c (maybe_resize_hash_table): Output message when growing the
10688 purify-hashtable.
10689
10690 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10691
10692 * alloc.c (allocate_string_data): Remove dead code.
10693 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
10694 avoid GCC warning about unused macro.
10695
10696 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10697
10698 * alloc.c (allocate_string): Omit intervals initialization.
10699 * alloc.c (make_uninit_multibyte_string): Initialize intervals
10700 as in make_pure_string and make_pure_c_string.
10701
10702 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10703
10704 * alloc.c (allocate_string): Fix last change.
10705
10706 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10707
10708 * alloc.c (allocate_string): Remove two redundant calls
10709 to memset, add explicit initialization where appropriate.
10710
10711 2012-06-27 Glenn Morris <rgm@gnu.org>
10712
10713 * lisp.mk (lisp): Remove paths.elc.
10714
10715 2012-06-27 Chong Yidong <cyd@gnu.org>
10716
10717 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10718
10719 2012-06-26 John Wiegley <johnw@newartisans.com>
10720
10721 * unexmacosx.c (copy_data_segment): Add two section names used
10722 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10723
10724 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10725 when building with Clang.
10726
10727 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10728
10729 * eval.c (Fapply): Allow calling it with a single argument.
10730
10731 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10732
10733 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
10734 _stricmp and _strnicmp.
10735 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
10736
10737 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10738
10739 * alloc.c (allocate_window): Zero out non-Lisp part of newly
10740 allocated window.
10741 (allocate_process): Likewise for new process.
10742 (allocate_terminal): Change to use offsetof.
10743 (allocate_frame): Likewise.
10744 * frame.c (make_frame): Omit redundant initialization.
10745 * window.c (make_parent_window): Use memset.
10746 (make_window): Omit redundant initialization.
10747 * process.c (make_process): Omit redundant initialization.
10748 * terminal.c (create_terminal): Likewise.
10749
10750 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10751
10752 * term.c (delete_tty): Remove redundant call to memset.
10753
10754 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10755
10756 * alloc.c: Remove build_string.
10757 * lisp.h: Define build_string as static inline. This provides
10758 a better opportunity to optimize away calls to strlen when the
10759 function is called with compile-time constant argument.
10760 * image.c (imagemagick_error): Convert to build_string.
10761 * w32proc.c (sys_spawnve): Likewise.
10762 * xterm.c (x_term_init): Likewise.
10763
10764 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10765
10766 Use sprintf return value instead of invoking strlen on result.
10767 In the old days this wasn't portable, since some sprintf
10768 implementations returned char *. But they died out years ago and
10769 Emacs already assumes sprintf returns int.
10770 Similarly for float_to_string.
10771 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
10772 * ccl.c (ccl_driver):
10773 * character.c (string_escape_byte8):
10774 * data.c (Fnumber_to_string):
10775 * doprnt.c (doprnt):
10776 * print.c (print_object):
10777 * xdisp.c (message_dolog):
10778 * xfns.c (syms_of_xfns):
10779 Use sprintf or float_to_string result to avoid need to call strlen.
10780 * data.c (Fnumber_to_string):
10781 Use make_unibyte_string, since the string must be ASCII.
10782 * lisp.h, print.c (float_to_string): Now returns int length.
10783 * term.c (produce_glyphless_glyph):
10784 Use sprintf result rather than recomputing it.
10785
10786 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
10787 * Makefile.in (ALL_CFLAGS):
10788 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
10789 * gmalloc.c, regex.c: Include <config.h> unconditionally.
10790
10791 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10792
10793 * dispextern.h (xstrcasecmp): Define to library function
10794 strcasecmp if available.
10795 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10796
10797 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
10798
10799 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
10800 Avoid comma operator.
10801 * menu.c (push_submenu_start, push_submenu_end)
10802 (push_left_right_boundary, push_menu_pane): Likewise.
10803 * msdos.c (dos_rawgetc): Likewise.
10804
10805 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10806
10807 * xfns.c (xic_create_fontsetname): Remove redundant calls
10808 to memset.
10809
10810 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10811
10812 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10813 sprintf already null-terminates its output.
10814
10815 * xfns.c (x_window): Remove redundant cast.
10816
10817 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10818
10819 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
10820 `const char *' to `char *' to avoid compiler warning.
10821
10822 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10823
10824 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10825 instead of truncating it to 63 (admittedly a generous limit).
10826
10827 * process.c: Fix spelling and caps in comments.
10828
10829 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10830
10831 * emacs.c (setpgrp): Remove definition, unused.
10832 * sysdep.c (setpgrp): Remove definition, not used in this file.
10833
10834 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
10835
10836 * makefile.w32-in: Update dependencies.
10837
10838 2012-06-24 Eli Zaretskii <eliz@gnu.org>
10839
10840 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
10841 (SYSTIME_H): Add nt/inc/sys/time.h.
10842
10843 * systime.h [WINDOWSNT]: Include sys/time.h.
10844
10845 * s/ms-w32.h (struct timespec): Definition moved from
10846 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10847
10848 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10849
10850 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
10851 * buffer.h (buffer_slot_type_mismatch):
10852 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10853 * eval.c (unwind_to_catch):
10854 * image.c (my_png_error, my_error_exit):
10855 * keyboard.c (quit_throw_to_read_char, user_error)
10856 (Fexit_recursive_edit, Fabort_recursive_edit):
10857 * lisp.h (die, args_out_of_range, args_out_of_range_3)
10858 (wrong_type_argument, buffer_overflow, __executable_start)
10859 (memory_full, buffer_memory_full, string_overflow, Fthrow)
10860 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
10861 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
10862 (fatal):
10863 (child_setup) [!DOS_NT]:
10864 * lread.c (end_of_file_error, invalid_syntax):
10865 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10866 * puresize.h (pure_write_error):
10867 * search.c (matcher_overflow):
10868 * sound.c (sound_perror, alsa_sound_perror):
10869 * sysdep.c, syssignal.h (croak):
10870 * term.c (maybe_fatal, vfatal):
10871 * textprop.c (text_read_only):
10872 * undo.c (user_error):
10873 * unexmacosx.c (unexec_error):
10874 * xterm.c (x_ins_del_lines, x_delete_glyphs):
10875 Use _Noreturn rather than NO_RETURN.
10876 No need for separate decl merely because of _Noreturn.
10877 * sound.c (sound_warning, parse_sound):
10878 Remove unnecessary forward decls.
10879
10880 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10881
10882 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
10883 * lisp.h (WAIT_READING_MAX): New macro.
10884 * dispnew.c (Fsleep_for, sit_for):
10885 * keyboard.c (kbd_buffer_get_event):
10886 * process.c (Faccept_process_output):
10887 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
10888 This improves on the previous patch, which introduced a bug
10889 when time_t is unsigned and as wide as intmax_t.
10890 See <http://bugs.gnu.org/9000#51>.
10891
10892 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10893
10894 * dispnew.c (sit_for, Fsleep_for):
10895 * keyboard.c (kbd_buffer_get_event):
10896 * process.c (Faccept_process_output): Avoid compiler warnings when
10897 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
10898
10899 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10900
10901 * makefile.w32-in: Update dependencies.
10902
10903 * w32.c (ltime): Add return type and declare static.
10904 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10905
10906 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10907
10908 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
10909 Privately reported by Herbert J. Skuhra.
10910 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
10911 All uses changed.
10912 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
10913 not make_lisp_timeval, when the argument is of type EMACS_TIME.
10914
10915 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10916
10917 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10918 last argument of make_unibyte_string.
10919
10920 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
10921 language ID in the event parameters.
10922
10923 * w32term.c (w32_read_socket): Put the new keyboard codepage into
10924 event.code, not the obscure "character set ID".
10925
10926 2012-06-23 Chong Yidong <cyd@gnu.org>
10927
10928 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10929
10930 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10931
10932 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
10933 * w32.c (fdutimens): New function.
10934
10935 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
10936
10937 * s/ms-w32.h (pselect): Redirect to sys_select.
10938
10939 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
10940
10941 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
10942 in the logic of incrementing and decrementing the value of
10943 use_relocatable_buffers.
10944
10945 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10946
10947 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
10948 Privately reported by Herbert J. Skuhra.
10949 [__FreeBSD__]: Remove "*/" typo after "#include".
10950 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
10951 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
10952 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
10953 Don't assume EMACS_TIME and struct timeval are the same type.
10954
10955 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10956
10957 Support higher-resolution time stamps (Bug#9000).
10958 The time stamps are only nanosecond-resolution at the C level,
10959 since that's the best that any real-world system supports now.
10960 But they are picosecond-resolution at the Lisp level, as that's
10961 easy, and leaves room for future OS improvements.
10962
10963 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
10964 (LIBES): Use it.
10965
10966 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
10967 Don't get current time unless it's needed.
10968
10969 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
10970 now provides it if it's absent.
10971 (start_atimer): Port to higher-res time stamps.
10972 Check for time stamp overflow. Don't get current time more
10973 often than is needed.
10974
10975 * buffer.h (struct buffer): Buffer modtime now has high resolution.
10976 Include systime.h, not time.h.
10977 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
10978
10979 * dired.c: Include stat-time.h.
10980 (Ffile-attributes): File times now have higher resolution.
10981
10982 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
10983 (struct image): Timestamp now has higher resolution.
10984
10985 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
10986 has at least microseconds now. All uses removed.
10987 (update_frame, update_single_window, update_window, update_frame_1)
10988 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
10989 (duration_to_sec_usec): Remove; no longer needed.
10990
10991 * editfns.c (time_overflow): Now extern.
10992 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
10993 (float-time, Fformat_time_string, Fcurrent_time_string)
10994 (Fcurrent_time_zone): Accept and generate higher-resolution
10995 time stamps.
10996 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
10997 (decode_time_components, lisp_seconds_argument): New functions.
10998 (make_time): Now static.
10999 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
11000 Report an error if the time is invalid, rather than having the caller
11001 do that.
11002
11003 * fileio.c: Include <stat-time.h>
11004 (Fcopy_file): Copy higher-resolution time stamps.
11005 Prefer to set the time stamp via a file descriptor if that works.
11006 (Fset_file_times, Finsert_file_contents, Fwrite_region)
11007 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
11008 (Fvisited_file_modtime, Fset_visited_file_modtime):
11009 Support higher-resolution time stamps.
11010
11011 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
11012
11013 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
11014
11015 * image.c (prepare_image_for_display, clear_image_cache)
11016 (lookup_image): Port to higer-resolution time stamps.
11017
11018 * keyboard.c (start_polling, bind_polling_period):
11019 Check for time stamp overflow.
11020 (read_char, kbd_buffer_get_event, timer_start_idle)
11021 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
11022 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
11023 Port to higher-resolution time stamps. Do not assume time_t is signed.
11024 (decode_timer): New function. Timers are now vectors of length 9,
11025 not 8, to accommodate the picosecond component.
11026 (timer_check_2): Use it.
11027
11028 * nsterm.m (select_timeout, timeval_subtract): Remove.
11029 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
11030 as they're a bit more accurate and handle overflow better.
11031 (ns_select): Change prototype to be compatible with pselect.
11032 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
11033 * nsterm.h (ns_select): Adjust prototype.
11034
11035 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
11036 us-resolution time stamps.
11037 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
11038
11039 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
11040
11041 * lisp.h (time_overflow): New decl.
11042 (wait_reading_process_output): First arg is now intmax_t, not int,
11043 to accommodate larger waits.
11044
11045 * process.h (struct Lisp_Process.read_output_delay):
11046 Now counts nanoseconds, not microseconds.
11047 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
11048 EMACS_HAS_USECS.
11049 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
11050 (wait_reading_process_output):
11051 Port to ns-resolution time stamps.
11052 (Faccept_process_output, wait_reading_process_output):
11053 Check for time stamp overflow. Do not assume time_t is signed.
11054 (select_wrapper): Remove; we now use pselect.
11055 (Fprocess_attributes): Now generates ns-resolution time stamps.
11056
11057 * sysdep.c: Include utimens.h. Don't include utime.h
11058 or worry about struct utimbuf; gnulib does that for us now.
11059 (gettimeofday): Remove; gnulib provides a substitute.
11060 (make_timeval): New function.
11061 (set_file_times): Now sets ns-resolution time stamps.
11062 New arg FD; all uses changed.
11063 (time_from_jiffies, ltime_from_jiffies, get_up_time)
11064 (system_process_attributes):
11065 Now returns ns-resolution time stamp. All uses changed.
11066 Check for time stamp overflow.
11067
11068 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
11069 provides a substitute now.
11070
11071 * systime.h: Include timespec.h rather than sys/time.h and time.h,
11072 since it guarantees struct timespec.
11073 (EMACS_TIME): Now struct timespec, so that we can support
11074 ns-resolution time stamps.
11075 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
11076 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
11077 (EMACS_USECS): Remove.
11078 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
11079 so multiply the arg by 1000 before storing it.
11080 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
11081 New macros.
11082 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
11083 Port to ns-resolution time stamps.
11084 (EMACS_TIME_NEG_P): Remove; replaced by....
11085 (EMACS_TIME_SIGN): New macro.
11086 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
11087 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
11088 (set_file_times, make_time, lisp_time_argument): Adjust signature.
11089 (make_timeval, make_lisp_time, decode_time_components): New decls.
11090 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
11091 that it mishandled time_t overflow. You can't compare by subtracting!
11092 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
11093 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
11094
11095 * term.c: Include <sys/time.h>.
11096 (timeval_to_Time): New function, for proper overflow wraparound.
11097 (term_mouse_position, term_mouse_click): Use it.
11098
11099 * undo.c (record_first_change): Support higher-resolution time stamps
11100 in the undo buffer.
11101 (Fprimitive_undo): Use them when restoring time stamps.
11102
11103 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
11104 (w32_get_internal_run_time):
11105 Port to higher-resolution Emacs time stamps.
11106 (ltime): Now accepts single 64-bit integer, as that's more convenient
11107 for callers.
11108
11109 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
11110
11111 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
11112 for compatibility with pselect. Support ns-resolution time stamps.
11113
11114 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
11115
11116 * xselect.c (wait_for_property_change, x_get_foreign_selection):
11117 Check for time stamp overflow, and support ns-resolution time stamps.
11118
11119 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
11120 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
11121 (timeval_subtract): Remove; no longer needed.
11122 (XTflash, XTring_bell, x_wait_for_event):
11123 Port to ns-resolution time stamps. Don't assume time_t is signed.
11124
11125 2012-06-22 Chong Yidong <cyd@gnu.org>
11126
11127 * xdisp.c (x_consider_frame_title): Revert last change.
11128
11129 2012-06-22 Eli Zaretskii <eliz@gnu.org>
11130
11131 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
11132 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
11133 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
11134 staticidx goes up to 1597 out of 1600 = 0x640.)
11135
11136 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
11137
11138 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
11139 Otherwise, the umask might be mistakenly 0 while handling input signals.
11140
11141 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11142
11143 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
11144
11145 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
11146
11147 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
11148 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
11149 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
11150 access to `contents' member of Lisp_Vector objects with AREF and ASET
11151 where appropriate.
11152
11153 2012-06-19 Chong Yidong <cyd@gnu.org>
11154
11155 * frame.c (delete_frame): When selecting a frame on a different
11156 text terminal, do not alter the terminal's top-frame.
11157
11158 * xdisp.c (format_mode_line_unwind_data): Record the target
11159 frame's selected window and its terminal's top-frame.
11160 (unwind_format_mode_line): Restore them.
11161 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
11162 Callers changed.
11163 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
11164 since tty frames can be explicitly named.
11165 (prepare_menu_bars): Likewise.
11166
11167 * term.c (Ftty_top_frame): New function.
11168
11169 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11170
11171 Port byte-code-meter to modern targets.
11172 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
11173 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
11174 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
11175 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
11176 (METER_1, METER_2): Simplify.
11177
11178 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * data.c (Fdefalias): Return `symbol' (bug#11686).
11181
11182 2012-06-18 Martin Rudalics <rudalics@gmx.at>
11183
11184 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
11185 gets killed during executing of this function (Bug#11665).
11186 Try to always return Qt when the buffer has been actually killed.
11187 (Vkill_buffer_query_functions): In doc-string say that functions
11188 run by this hook should not change the current buffer.
11189
11190 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11191
11192 Fix recently-introduced process.c problems found by static checking.
11193 * process.c (write_queue_push, write_queue_pop, send_process):
11194 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
11195 (write_queue_pop): Fix pointer signedness problem.
11196 (send_process): Remove unused local.
11197
11198 2012-06-17 Chong Yidong <cyd@gnu.org>
11199
11200 * xdisp.c (redisplay_internal): No need to redisplay terminal
11201 frames that are not on top.
11202
11203 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
11204
11205 * process.c (make_process): Initialize write_queue.
11206 (write_queue_push, write_queue_pop): New functions.
11207 (send_process): Use them to maintain correct ordering of process
11208 writes (Bug#10815).
11209
11210 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
11211
11212 * lisp.h (eassert): Assume C89 or later.
11213 This removes the need for CHECK.
11214 (CHECK): Remove. Its comments about always evaluating its
11215 argument were confusing, as 'eassert' typically does not evaluate
11216 its argument.
11217
11218 * coding.c (produce_chars): Use ptrdiff_t, not int.
11219
11220 * xterm.c (x_draw_underwave): Check for integer overflow.
11221 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
11222
11223 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
11224
11225 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
11226 referenced (Bug#11583).
11227
11228 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
11229
11230 Implement wave-style variant of underlining.
11231 * dispextern.h (face_underline_type): New enum.
11232 (face): Add field for underline type.
11233 * nsterm.m (ns_draw_underwave): New function.
11234 (ns_draw_text_decoration): Use it.
11235 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
11236 New functions.
11237 (x_draw_glyph_string): Use them.
11238 * xfaces.c (Qline, Qwave): New Lisp objects.
11239 (check_lface_attrs, merge_face_ref)
11240 (Finternal_set_lisp_face_attribute, realize_x_face):
11241 Handle wave-style underline face attributes.
11242 * xterm.c (x_draw_underwave): New function.
11243 (x_draw_glyph_string): Use it.
11244
11245 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
11246
11247 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
11248 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
11249 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
11250 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
11251 ($(BLD)/w32select.$(O)): Update dependencies.
11252
11253 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11254
11255 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
11256 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
11257 * character.c (_fetch_multibyte_char_p): Remove.
11258 * alloc.c: Include "character.h" before "buffer.h".
11259 * bidi.c: Likewise.
11260 * buffer.c: Likewise.
11261 * bytecode.c: Likewise.
11262 * callint.c: Likewise.
11263 * callproc.c: Likewise.
11264 * casefiddle.c: Likewise.
11265 * casetab.c: Likewise.
11266 * category.c: Likewise.
11267 * cmds.c: Likewise.
11268 * coding.c: Likewise.
11269 * composite.c: Likewise.
11270 * dired.c: Likewise.
11271 * dispnew.c: Likewise.
11272 * doc.c: Likewise.
11273 * dosfns.c: Likewise.
11274 * editfns.c: Likewise.
11275 * emacs.c: Likewise.
11276 * fileio.c: Likewise.
11277 * filelock.c: Likewise.
11278 * font.c: Likewise.
11279 * fontset.c: Likewise.
11280 * fringe.c: Likewise.
11281 * indent.c: Likewise.
11282 * insdel.c: Likewise.
11283 * intervals.c: Likewise.
11284 * keyboard.c: Likewise.
11285 * keymap.c: Likewise.
11286 * lread.c: Likewise.
11287 * macros.c: Likewise.
11288 * marker.c: Likewise.
11289 * minibuf.c: Likewise.
11290 * nsfns.m: Likewise.
11291 * nsmenu.m: Likewise.
11292 * print.c: Likewise.
11293 * process.c: Likewise.
11294 * regex.c: Likewise.
11295 * region-cache.c: Likewise.
11296 * search.c: Likewise.
11297 * syntax.c: Likewise.
11298 * term.c: Likewise.
11299 * textprop.c: Likewise.
11300 * undo.c: Likewise.
11301 * unexsol.c: Likewise.
11302 * w16select.c: Likewise.
11303 * w32fns.c: Likewise.
11304 * w32menu.c: Likewise.
11305 * window.c: Likewise.
11306 * xdisp.c: Likewise.
11307 * xfns.c: Likewise.
11308 * xmenu.c: Likewise.
11309 * xml.c: Likewise.
11310 * xselect.c: Likewise.
11311
11312 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11313
11314 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
11315 If all the glyphs of the glyph row came from strings, and we have no
11316 cursor positioning clues, put the cursor on the first glyph of the
11317 row.
11318 (handle_face_prop): Use chunk-relative overlay string index when
11319 indexing into it->string_overlays array. (Bug#11653)
11320 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
11321 the rightmost. (Bug#11720)
11322
11323 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11324
11325 * category.h (CHAR_HAS_CATEGORY): Define as inline.
11326 (CATEGORY_MEMBER): Enforce 1/0 value.
11327 * category.c (_temp_category_set): Remove.
11328
11329 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11330
11331 * window.c (Fdelete_other_windows_internal)
11332 (Fdelete_window_internal): Don't access frame's mouse highlight
11333 info of the initial frame. (Bug#11677)
11334
11335 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
11336
11337 * .gdbinit (xgetint): Fix recently-introduced paren typo.
11338 Assume USE_2_TAGS_FOR_INTS.
11339 (xreload): Adjust $tagmask width to match recent lisp.h change.
11340
11341 Simplify lisp.h in minor ways that should not affect code.
11342 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
11343 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
11344 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
11345 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
11346 (INTTYPEBITS): New macro, for clarity.
11347 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
11348 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
11349 Simplify now that USE_LSB_TAG is always defined.
11350 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
11351 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
11352
11353 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
11354
11355 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
11356
11357 2012-06-13 Glenn Morris <rgm@gnu.org>
11358
11359 * s/bsd-common.h (BSD4_3):
11360 * s/usg5-4-common.h (USG5_4): No longer define; unused.
11361
11362 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
11363
11364 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
11365 instead of union.
11366 (XLI, XIL): Define.
11367 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
11368 Use them.
11369 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
11370 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
11371 * alloc.c (widen_to_Lisp_Object): Remove.
11372 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
11373 * frame.c (delete_frame): Remove outdated comment.
11374 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
11375 USE_LISP_UNION_TYPE.
11376 (Fw32_unregister_hot_key): Likewise.
11377 (Fw32_toggle_lock_key): Likewise.
11378 * w32menu.c (add_menu_item): Likewise.
11379 (w32_menu_display_help): Use XIL instead of checking
11380 USE_LISP_UNION_TYPE.
11381 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
11382 (init_heap): Likewise.
11383 * w32term.c (w32_read_socket): Update comment.
11384
11385 2012-06-13 Glenn Morris <rgm@gnu.org>
11386
11387 * s/usg5-4-common.h, src/s/unixware.h:
11388 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
11389
11390 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11391
11392 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
11393
11394 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
11395 * alloc.c (make_number) [!defined make_number]:
11396 Remove, as lisp.h always defines this now.
11397 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
11398 (roundup_size): Verify that it is a power of 2.
11399 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
11400 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
11401 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
11402 -DUSE_LSB_TAG=0, to override the automatically-selected default.
11403 USE_LSB_TAG now is always defined to be either 0 or 1.
11404 All uses changed.
11405 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
11406 code works fine either way, and efficiency is not a concern here,
11407 as the union type is for debugging, not for production.
11408 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
11409 Use an inline function on all platforms when using the union type,
11410 since this is simpler and 'static inline' can be used portably
11411 within Emacs now.
11412 (LISP_INITIALLY_ZERO): New macro.
11413 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
11414 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
11415
11416 2012-06-12 Glenn Morris <rgm@gnu.org>
11417
11418 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11419
11420 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11421
11422 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11423 Move BROKEN_SIGIO to configure.
11424
11425 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11426 Move NO_TERMIO to configure.
11427
11428 2012-06-12 Chong Yidong <cyd@gnu.org>
11429
11430 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11431 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11432 MagickExportImagePixels is undefined.
11433
11434 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11435
11436 * image.c (imagemagick_load_image): Remove unused label.
11437
11438 2012-06-11 Glenn Morris <rgm@gnu.org>
11439
11440 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11441 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11442 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11443 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11444
11445 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11446
11447 * alloc.c (make_byte_code): New function.
11448 (Fmake_byte_code): Use it. Don't purify here.
11449 * lread.c (read1): Use it as well to avoid extra allocation.
11450
11451 2012-06-11 Chong Yidong <cyd@gnu.org>
11452
11453 * image.c (imagemagick_load_image): Implement transparency.
11454
11455 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11456
11457 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11458 account for preceding backslashes. (Bug#11663)
11459
11460 2012-06-09 Chong Yidong <cyd@gnu.org>
11461
11462 * term.c: Support italics in capable terminals (Bug#9652).
11463 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11464 (turn_on_face): Output using TS_enter_italic_mode if available.
11465 Don't handle unused blinking and alt-charset cases.
11466 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11467 and tty_alt_charset_p cases.
11468 (tty_capable_p, init_tty): Support italics.
11469
11470 * termchar.h (struct tty_display_info): Add field for italics.
11471 Remove unused blink field.
11472
11473 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11474 Handle slant.
11475
11476 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11477 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11478 tty_alt_charset_p. Add tty_italic_p.
11479
11480 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11481
11482 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11483 dbus_type_is_basic if available.
11484 (xd_extract_signed, xd_extract_unsigned): Rename from
11485 extract_signed and extract_unsigned, respectively. Adapt callers.
11486
11487 2012-06-09 Chong Yidong <cyd@gnu.org>
11488
11489 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11490
11491 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11492 case (Bug#9752).
11493
11494 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11495
11496 * xdisp.c (vmessage): Treat frame message as multibyte.
11497 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11498 would generate the diagnostic "Making \302\247 buffer-local while
11499 let-bound!".
11500
11501 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11502
11503 * dispnew.c (showing_window_margins_p): Undo last change, which
11504 was done due to an inadvertent commit.
11505 (adjust_frame_glyphs_for_frame_redisplay): Do call
11506 showing_window_margins_p.
11507
11508 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11509
11510 * eval.c (Fmake_var_non_special): New primitive.
11511 (syms_of_eval): Defsubr it.
11512 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
11513
11514 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11515
11516 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
11517 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
11518
11519 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11520
11521 * alloc.c (allocate_vectorlike): Fix last change.
11522
11523 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
11524
11525 Block-based vector allocation of small vectors.
11526 * lisp.h (struct vectorlike_header): New field `nbytes',
11527 adjust comment accordingly.
11528 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
11529 to denote vector blocks. Adjust users (live_vector_p,
11530 mark_maybe_pointer, valid_lisp_object_p) accordingly.
11531 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
11532 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
11533 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
11534 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
11535 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
11536 (roundup_size): New constant.
11537 (struct vector_block): New data type.
11538 (vector_blocks, vector_free_lists, zero_vector): New variables.
11539 (all_vectors): Rename to `large_vectors'.
11540 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
11541 (sweep_vectors): New functions.
11542 (allocate_vectorlike): Return `zero_vector' as the only vector of
11543 0 items. Allocate new vector from block if vector size is less than
11544 or equal to VBLOCK_BYTES_MAX.
11545 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
11546 (init_alloc_once): Add call to init_vectors.
11547
11548 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11549
11550 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11551
11552 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
11553
11554 * doprnt.c (doprnt): Truncate multibyte char correctly.
11555 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
11556 would mishandle a string argument "Xc" if X was a multibyte
11557 character of length 2: it would truncate after X's first byte
11558 rather than including all of X.
11559
11560 2012-06-06 Chong Yidong <cyd@gnu.org>
11561
11562 * buffer.c (word_wrap): Doc fix.
11563
11564 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11565
11566 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11567
11568 2012-06-03 Glenn Morris <rgm@gnu.org>
11569
11570 * xdisp.c (tool-bar-style): Doc fix.
11571
11572 2012-06-03 Ulrich Müller <ulm@gentoo.org>
11573
11574 * Makefile.in (PAXCTL): Define.
11575 (temacs$(EXEEXT)): Disable memory randomization for the temacs
11576 binary via PaX flags if the paxctl utility is available.
11577 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
11578 Restore PaX flags to their default. (Bug#11398)
11579
11580 2012-06-03 Chong Yidong <cyd@gnu.org>
11581
11582 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
11583 buffer (Bug#11226).
11584
11585 2012-06-03 Chong Yidong <cyd@gnu.org>
11586
11587 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
11588 (note_mode_line_or_margin_highlight): If there is no help echo,
11589 use mode-line-default-help-echo. Handle the case where the mouse
11590 position is past the end of the mode line string.
11591
11592 * buffer.c (buffer_local_value_1): New function, split from
11593 Fbuffer_local_value; can return Qunbound.
11594 (Fbuffer_local_value): Use it.
11595 (Vmode_line_format): Docstring tweaks.
11596
11597 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11598
11599 * sysdep.c (system_process_attributes): Improve comment.
11600
11601 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11602
11603 * keyboard.c: Export real-this-command to Elisp.
11604 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
11605 and DEFVAR it. Update all users.
11606
11607 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11608
11609 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11610
11611 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
11612 Convert pctcpu and pctmem to Lisp float properly.
11613 Let the compiler fold better, as 100.0/0x8000 is exact.
11614
11615 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
11616
11617 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
11618 cons_block.
11619
11620 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11621
11622 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11623
11624 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
11625
11626 For a 'struct window', replace some Lisp_Object fields to
11627 bitfields where appropriate, remove unused fields.
11628 * window.h (struct window): Remove unused 'last_mark_x' and
11629 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
11630 change its type from Lisp_Object to bitfield.
11631 Change type of 'force_start', 'optional_new_start',
11632 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
11633 fields from Lisp_Object to bitfield. Adjust users accordingly.
11634
11635 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11636
11637 Pacify gcc -Wdouble-precision when using Xaw.
11638 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
11639 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
11640 Use 'float' consistently, rather than 'float' in most places
11641 and 'double' in a couple of places.
11642
11643 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11644
11645 * xdisp.c (handle_stop): Detect whether we have overlay strings
11646 loaded by testing it->current.overlay_string_index to be
11647 non-negative, instead of checking whether n_overlay_strings is
11648 positive. (Bug#11587)
11649
11650 2012-05-31 Chong Yidong <cyd@gnu.org>
11651
11652 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11653
11654 * doc.c (Fsubstitute_command_keys): Doc fix.
11655
11656 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11657
11658 * search.c (search_buffer): Remove calls to
11659 r_alloc_inhibit_buffer_relocation, as it is now called by
11660 maybe_unify_char, which was the cause of relocation of buffer text
11661 in bug#11519.
11662
11663 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11664
11665 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
11666 for the duration of call to load_charset, to avoid problems with
11667 callers of maybe_unify_char that access buffer text through C
11668 pointers.
11669
11670 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
11671 decrement the inhibition flag, instead of just setting or
11672 resetting it.
11673
11674 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11675
11676 Remove obsolete '#define static' cruft.
11677 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
11678 This #undef was "temporary" in 2000; it is no longer needed
11679 now that '#define static' has gone away.
11680 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
11681 (gray_bitmap_bits): Remove; no longer needed.
11682 All uses replaced with definiens.
11683 * xterm.c: Include "bitmaps/gray.xbm".
11684
11685 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11686
11687 Clean up __executable_start, monstartup when --enable-profiling.
11688 The following changes affect the code only when profiling.
11689 * dispnew.c (__executable_start): Rename from safe_bcopy.
11690 Define only on platforms that need it.
11691 * emacs.c: Include <sys/gmon.h> when profiling.
11692 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
11693 (__executable_start): Remove decl, since lisp.h does it now.
11694 (safe_bcopy): Remove decl; no longer has that name.
11695 (main): Coalesce #if into single bit of code, for simplicity.
11696 Cast pointers to uintptr_t, since standard libraries want integers
11697 and not pointers.
11698 * lisp.h (__executable_start): New decl.
11699
11700 2012-05-31 Glenn Morris <rgm@gnu.org>
11701
11702 * image.c (Fimagemagick_types): Doc fix.
11703
11704 2012-05-30 Jim Meyering <meyering@redhat.com>
11705
11706 * callproc.c (Fcall_process_region): Include directory component
11707 in mkstemp error message (Bug#11586).
11708
11709 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11710
11711 * alloc.c, lisp.h (make_pure_vector): Now static.
11712
11713 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11714
11715 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
11716 Move to byte-run.el.
11717 (Fautoload): Do the hash-doc more carefully.
11718 * data.c (Fdefalias): Purify definition, except for keymaps.
11719 (Qdefun): Move from eval.c.
11720 * lisp.h (Qdefun): Remove.
11721 * lread.c (read1): Tiny simplification.
11722
11723 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11724
11725 Do not create empty overlays with the evaporate property (Bug#9642).
11726 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
11727 Bug#9642, but explicitly check that the buffer the overlay would
11728 be moved to is live and rearrange lines to make sure that errors
11729 will not put the overlay in an inconsistent state.
11730 (Fdelete_overlay): Cosmetics.
11731
11732 2012-05-28 Eli Zaretskii <eliz@gnu.org>
11733
11734 * w32term.c (my_bring_window_to_top): New function.
11735 (x_raise_frame): Use handle returned by DeferWindowPos, which
11736 could be different from the original one.
11737 Call my_bring_window_to_top instead of my_set_foreground_window.
11738 (Bug#11513)
11739
11740 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
11741 by calling BringWindowToTop.
11742
11743 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
11744 (WM_EMACS_END): Increase by one.
11745
11746 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
11747
11748 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
11749 This avoids undefined behavior that might cause the eassert
11750 to not catch an out-of-range value.
11751
11752 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
11753
11754 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11755 Update dependencies.
11756
11757 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11758
11759 * bidi.c (bidi_mirror_char): Fix last change.
11760
11761 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
11762
11763 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
11764 when referring to sectname field in printf format.
11765
11766 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11767
11768 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
11769 Only r_alloc_inhibit_buffer_relocation needed to be added;
11770 the others were already declared.
11771
11772 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
11773 before checking whether it's out of range. Put the check inside
11774 eassert. See
11775 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
11776
11777 2012-05-27 Ken Brown <kbrown@cornell.edu>
11778
11779 * callproc.c (Fcall_process): Restore a line that was accidentally
11780 commented out in the 2011-02-13 change (bug#11547).
11781
11782 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11783
11784 * lisp.h [REL_ALLOC]: Add prototypes for external functions
11785 defined on ralloc.c.
11786
11787 * buffer.c [REL_ALLOC]: Remove prototypes of
11788 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
11789 they are now on lisp.h.
11790
11791 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
11792
11793 * search.c (search_buffer): Use it to inhibit relocation of buffer
11794 text while re_search_2 is doing its job, because re_search_2 is
11795 passed C pointers to buffer text. (Bug#11519)
11796
11797 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11798 Update value to 24.
11799
11800 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
11801 state after an additional call to move_it_in_display_line_to, keep
11802 the values of it->max_ascent and it->max_descent found for the
11803 entire line.
11804 (pos_visible_p): Revert the comparison against bottom_y to what it
11805 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
11806 (Bug#11464)
11807
11808 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11809
11810 Fix coding-related core dumps with gcc -ftrapv.
11811 The code was computing A - B, where A and B are pointers, and B is
11812 random garbage. This can lead to core dumps on platforms that
11813 have special pointer registers, and it also leads to core dumps on
11814 x86-64 when compiled with gcc -ftrapv. The fix is to compute
11815 A - B only when B is initialized properly.
11816 * coding.c (coding_set_source, coding_set_destination): Return void.
11817 (coding_change_source, coding_change_destinations): New functions,
11818 with the old behaviors of coding_set_source and coding_set_destination.
11819 All callers that need an offset changed to use these new functions.
11820
11821 2012-05-26 Glenn Morris <rgm@gnu.org>
11822
11823 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11824
11825 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11826
11827 Extend mouse support on W32 text-mode console.
11828 * xdisp.c (draw_row_with_mouse_face):
11829 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
11830
11831 * w32console.c: Include window.h.
11832 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11833 New functions.
11834 (initialize_w32_display): Initialize mouse-highlight data.
11835
11836 * w32inevt.c: Include termchar.h and window.h.
11837 (do_mouse_event): Support mouse-autoselect-window. When the mouse
11838 moves, call note_mouse_highlight. If help_echo changed, call
11839 gen_help_event to produce help-echo message in the echo area.
11840 Call clear_mouse_face if mouse_face_hidden is set in the mouse
11841 highlight info.
11842
11843 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11844
11845 * lread.c (read1): Simplify slightly to avoid an overflow warning
11846 with GCC 4.7.0 on x86-64.
11847
11848 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11849
11850 * bidi.c (bidi_mirror_char): Revert last change: an int is
11851 definitely wide enough here.
11852
11853 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
11854
11855 Fix integer width and related bugs (Bug#9874).
11856 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
11857 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
11858 (string_bytes, check_sblock, allocate_string_data):
11859 (compact_small_strings, Fmake_bool_vector, make_string)
11860 (make_unibyte_string, make_multibyte_string)
11861 (make_string_from_bytes, make_specified_string)
11862 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
11863 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
11864 (mark_vectorlike):
11865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11866 (allocate_pseudovector):
11867 Use int, not EMACS_INT, where int is wide enough.
11868 (inhibit_garbage_collection, Fgarbage_collect):
11869 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11870 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
11871 int might not be wide enough.
11872 (bidi_cache_search, bidi_cache_find, bidi_init_it)
11873 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
11874 (bidi_at_paragraph_end, bidi_find_paragraph_start)
11875 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11876 (bidi_level_of_next_char, bidi_move_to_visually_next):
11877 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11878 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
11879 (Fkill_buffer, Fset_buffer_major_mode)
11880 (advance_to_char_boundary, Fbuffer_swap_text)
11881 (Fset_buffer_multibyte, overlays_at, overlays_in)
11882 (overlay_touches_p, struct sortvec, record_overlay_string)
11883 (overlay_strings, recenter_overlay_lists)
11884 (adjust_overlays_for_insert, adjust_overlays_for_delete)
11885 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
11886 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
11887 (Foverlay_recenter, last_overlay_modification_hooks_used)
11888 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
11889 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11890 (validate_region): Omit unnecessary test for b <= e,
11891 since that's guaranteed by the previous test.
11892 (adjust_overlays_for_delete): Avoid pos + length overflow.
11893 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
11894 (report_overlay_modification):
11895 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11896 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
11897 Omit pointer cast, which isn't needed anyway, and doesn't work
11898 after the EMACS_INT -> ptrdiff_t change.
11899 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
11900 * buffer.h: Adjust decls to match defn changes elsewhere.
11901 (struct buffer_text, struct buffer):
11902 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11903 Use EMACS_INT, not int, where int might not be wide enough.
11904 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
11905 not int, to avoid needless 32-bit limit on 64-bit hosts.
11906 (exec_byte_code): Use tighter memory-full test, one that checks
11907 for alloca overflow. Don't compute the address of the object just
11908 before an array, as that's not portable. Use EMACS_INT, not
11909 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
11910 * callint.c (Fcall_interactively):
11911 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11912 * callproc.c (call_process_kill, Fcall_process):
11913 Don't assume pid_t fits into an Emacs fixnum.
11914 (call_process_cleanup, Fcall_process, child_setup):
11915 Don't assume pid_t fits into int.
11916 (call_process_cleanup, Fcall_process, delete_temp_file)
11917 (Fcall_process_region):
11918 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11919 (Fcall_process): Simplify handling of volatile integers.
11920 Use int, not EMACS_INT, where int will do.
11921 * casefiddle.c (casify_object, casify_region, operate_on_word)
11922 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
11923 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11924 (casify_object): Avoid integer overflow when overallocating buffer.
11925 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
11926 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
11927 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
11928 * category.h (CATEGORYP): Don't assume arg is nonnegative.
11929 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
11930 integers are now checked earlier. All uses replaced with XINT.
11931 (ccl_driver):
11932 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11933 For CCL_MapSingle, check that content and value are in int range.
11934 (ccl_driver, Fregister_code_conversion_map):
11935 Check that Vcode_version_map_vector is a vector.
11936 (resolve_symbol_ccl_program): Check that vector header is in range.
11937 Always copy the vector, so that we can check its contents reliably
11938 now rather than having to recheck each instruction as it's being
11939 executed. Check that vector words fit in 'int'.
11940 (ccl_get_compiled_code, Fregister_ccl_program)
11941 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
11942 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
11943 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
11944 contents are in range.
11945 (Fccl_execute_on_string): Check that status is in range.
11946 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
11947 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
11948 Accept and return EMACS_INT, not int, because callers can pass values
11949 out of 'int' range.
11950 (c_string_width, strwidth, lisp_string_width, chars_in_text)
11951 (multibyte_chars_in_text, parse_str_as_multibyte)
11952 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
11953 (str_as_unibyte, str_to_unibyte, string_count_byte8)
11954 (string_escape_byte8, Fget_byte):
11955 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11956 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
11957 avoid mishandling large integers.
11958 * character.h: Adjust decls to match defn changes elsewhere.
11959 * charset.c (load_charset_map_from_file, find_charsets_in_text)
11960 (Ffind_charset_region):
11961 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11962 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
11963 (load_charset_map_from_vector, Fdefine_charset_internal):
11964 Don't assume fixnum fits in int.
11965 (load_charset_map_from_vector, Fmap_charset_chars):
11966 Remove now-unnecessary CHECK_NATNUMs.
11967 (Fdefine_charset_internal): Check ranges here, more carefully.
11968 Don't rely on undefined behavior with signed left shift overflow.
11969 Don't assume unsigned int fits into fixnum, or that fixnum fits
11970 into unsigned int. Don't require max_code to be a valid fixnum;
11971 that's not true for gb10830 4-byte on a 32-bit host. Allow
11972 invalid_code to be a cons, for the same reason. Require code_offset
11973 to be a character. Avoid int overflow if max_char is close
11974 to INT_MAX.
11975 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
11976 this is intended anyway and avoids some undefined behavior.
11977 (load_charset_map): Pass unsigned, not int, as 2nd arg of
11978 INDEX_TO_CODE_POINT, as that's what it expects.
11979 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
11980 * charset.h (DECODE_CHAR): Return int, not unsigned;
11981 this is what was intended anyway, and it avoids undefined behavior.
11982 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
11983 integer-overflow issues.
11984 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
11985 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
11986 where the argument is EMACS_INT, and this behavior is not intended.
11987 * chartab.c (Fmake_char_table, Fset_char_table_range)
11988 (uniprop_get_decoder, uniprop_get_encoder):
11989 Don't assume fixnum fits in int.
11990 * cmds.c (move_point): New function, that does the gist of
11991 Fforward_char and Fbackward_char, but does so while checking
11992 for integer overflow more accurately.
11993 (Fforward_char, Fbackward_char): Use it.
11994 (Fforward_line, Fend_of_line, internal_self_insert)
11995 (internal_self_insert):
11996 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11997 Fix a FIXME, by checking for integer overflow when calculating
11998 target_clm and actual_clm.
11999 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
12000 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
12001 (ASSURE_DESTINATION, coding_alloc_by_realloc)
12002 (coding_alloc_by_making_gap, alloc_destination)
12003 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
12004 (encode_coding_utf_16, detect_coding_emacs_mule)
12005 (decode_coding_emacs_mule, encode_coding_emacs_mule)
12006 (detect_coding_iso_2022, decode_coding_iso_2022)
12007 (encode_invocation_designation, encode_designation_at_bol)
12008 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
12009 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
12010 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
12011 (encode_coding_ccl, encode_coding_raw_text)
12012 (detect_coding_charset, decode_coding_charset)
12013 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
12014 (produce_composition, produce_charset, produce_annotation)
12015 (decode_coding, handle_composition_annotation)
12016 (handle_charset_annotation, consume_chars, decode_coding_gap)
12017 (decode_coding_object, encode_coding_object, detect_coding_system)
12018 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
12019 (code_convert_region, code_convert_string)
12020 (Fdefine_coding_system_internal)
12021 (coding_set_source, coding_set_destination):
12022 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12023 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
12024 (Fdefine_coding_system_internal):
12025 Don't assume fixnums fit in int.
12026 (decode_coding_gap, decode_coding_object, encode_coding_object)
12027 (Fread_coding_system, Fdetect_coding_region)
12028 (Funencodable_char_position, Fcheck_coding_systems_region)
12029 (get_translation, handle_composition_annotation, consume_chars):
12030 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12031 (consume_chars): Rewrite to not calculate an address outside buffer.
12032 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
12033 Don't access memory outside of the args array.
12034 (Fdefine_coding_system_internal): Check for charset-id overflow.
12035 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
12036 result of ENCODE_CHAR.
12037 * coding.h: Adjust decls to match defn changes elsewhere.
12038 (struct coding_system):
12039 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12040 * composite.c (get_composition_id, find_composition)
12041 (run_composition_function, update_compositions)
12042 (compose_text, composition_gstring_put_cache)
12043 (composition_gstring_p, composition_gstring_width)
12044 (fill_gstring_header, fill_gstring_body, autocmp_chars)
12045 (composition_compute_stop_pos, composition_reseat_it)
12046 (composition_update_it, struct position_record)
12047 (find_automatic_composition, composition_adjust_point)
12048 (Fcomposition_get_gstring, Ffind_composition_internal):
12049 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12050 (update_compositions):
12051 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12052 * composite.h: Adjust decls to match defn changes elsewhere.
12053 (struct composition):
12054 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12055 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
12056 Do not attempt to compute the address of the object just before a
12057 buffer; this is not portable.
12058 (Faref, Faset):
12059 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12060 (Faset): Use int, not EMACS_INT, where int is wide enough.
12061 (Fstring_to_number): Don't assume fixnums fit in int.
12062 (Frem): Don't assume arg is nonnegative.
12063 * dbusbind.c (xd_append_arg): Check for integers out of range.
12064 (Fdbus_call_method): Don't overflow the timeout int.
12065 (extract_signed, extract_unsigned): New functions.
12066 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
12067 (xd_get_connection_references): Return ptrdiff_t, not int.
12068 All uses changed.
12069 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
12070 (xd_read_message_1):
12071 Use int, not unsigned, where the dbus API uses int.
12072 (Fdbus_message_internal): Don't overflow mtype.
12073 (syms_of_dbusbind): Allocate right-sized buffer for integers.
12074 * dired.c (directory_files_internal, file_name_completion, scmp)
12075 (file_name_completion_stat):
12076 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12077 (file_name_completion): Don't overflow matchcount.
12078 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
12079 * dispextern.h: Adjust decls to match defn changes elsewhere.
12080 (struct text_pos, struct glyph, struct bidi_saved_info)
12081 (struct bidi_string_data, struct bidi_it, struct composition_it)
12082 (struct it):
12083 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12084 (struct display_pos, struct composition_it, struct it):
12085 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12086 * dispnew.c (increment_matrix_positions)
12087 (increment_row_positions, mode_line_string)
12088 (marginal_area_string):
12089 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12090 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
12091 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12092 (duration_to_sec_usec): New function, to check for overflow better.
12093 (Fsleep_for, sit_for): Use it.
12094 * doc.c (get_doc_string, store_function_docstring):
12095 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12096 (get_doc_string, Fsnarf_documentation):
12097 Use int, not EMACS_INT, where int is wide enough.
12098 (get_doc_string):
12099 Use SAFE_ALLOCA, not alloca.
12100 Check for overflow when converting EMACS_INT to off_t.
12101 * doprnt.c (doprnt):
12102 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12103 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
12104 Don't assume uid_t fits into fixnum.
12105 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
12106 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
12107 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
12108 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
12109 (general_insert_function)
12110 (Finsert_char, make_buffer_string, make_buffer_string_both)
12111 (update_buffer_properties, Fbuffer_substring)
12112 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
12113 (Fsubst_char_in_region, check_translation)
12114 (Ftranslate_region_internal, save_restriction_restore, Fformat)
12115 (transpose_markers, Ftranspose_regions):
12116 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12117 (clip_to_bounds): Move to lisp.h as an inline function).
12118 (Fconstrain_to_field): Don't assume integers are nonnegative.
12119 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
12120 (Fsubst_char_in_region, Fsave_restriction):
12121 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12122 (Femacs_pid): Don't assume pid_t fits into fixnum.
12123 (lo_time): Use int, not EMACS_INT, when int suffices.
12124 (lisp_time_argument): Check for usec out of range.
12125 (Fencode_time): Don't assume fixnum fits in int.
12126 (Fuser_login_name, Fuser_full_name): Signal an error
12127 if a uid argument is out of range, rather than relying on
12128 undefined behavior.
12129 (Fformat_time_string): Remove now-unnecessary check.
12130 lisp_time_argument checks for out-of-range usec now.
12131 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
12132 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
12133 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
12134 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
12135 (init_cmdargs, Fdump_emacs):
12136 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12137 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
12138 the bottom (typically) 32 bits of the fixnum.
12139 * eval.c (specpdl_size, call_debugger):
12140 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12141 (when_entered_debugger, Fbacktrace_debug):
12142 Don't assume fixnum can fit in int.
12143 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
12144 the object just before a buffer; this is not portable.
12145 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
12146 (grow_specpdl, unbind_to):
12147 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12148 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
12149 (grow_specpdl): Simplify allocation by using xpalloc.
12150 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
12151 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
12152 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
12153 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12154 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
12155 (a_write, e_write):
12156 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12157 (Fcopy_file, non_regular_nbytes, read_non_regular)
12158 (Finsert_file_contents):
12159 Use int, not EMACS_INT, where int is wide enough.
12160 (READ_BUF_SIZE): Verify that it fits in int.
12161 (Finsert_file_contents): Check that counts are in proper range,
12162 rather than assuming fixnums fit into ptrdiff_t etc.
12163 Don't assume fixnums fit into int.
12164 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
12165 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
12166 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
12167 (string_char_to_byte, string_byte_to_char)
12168 (string_make_multibyte, string_to_multibyte)
12169 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
12170 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
12171 (substring_both, Fdelete, internal_equal, Ffillarray)
12172 (Fclear_string, mapcar1)
12173 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
12174 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
12175 (larger_vector, make_hash_table, maybe_resize_hash_table)
12176 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
12177 (Fmaphash, secure_hash):
12178 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12179 (concat): Check for string index and length overflow.
12180 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
12181 (Frequire):
12182 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12183 (larger_vector): New API (vec, incr_min, size_max) replaces old
12184 one (vec, new_size, init). This catches size overflow.
12185 INIT was removed because it was always Qnil.
12186 All callers changed.
12187 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
12188 the upper bound on a hash table index size.
12189 (make_hash_table, maybe_resize_hash_table): Use it.
12190 (secure_hash): Computer start_byte and end_byte only after
12191 they're known to be in ptrdiff_t range.
12192 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
12193 (Ffont_get_glyphs, Ffont_at):
12194 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12195 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
12196 (Flist_fonts, Fopen_font):
12197 Don't assume fixnum can fit in int.
12198 (check_gstring): Don't assume index can fit in int.
12199 (font_match_p): Check that fixnum is a character, not a nonnegative
12200 fixnum, since the later code needs to stuff it into an int.
12201 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
12202 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
12203 conversion overflow issues.
12204 (Fopen_font): Check for integer out of range.
12205 (Ffont_get_glyphs): Don't assume index can fit in int.
12206 * font.h: Adjust decls to match defn changes elsewhere.
12207 * fontset.c (reorder_font_vector): Redo score calculation to avoid
12208 integer overflow.
12209 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
12210 printmax_t, where ptrdiff_t is wide enough.
12211 (Finternal_char_font):
12212 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12213 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
12214 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
12215 (Fset_frame_position, x_set_frame_parameters)
12216 (x_set_line_spacing, x_set_border_width)
12217 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
12218 Check that fixnums are in proper range for system types.
12219 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
12220 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12221 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
12222 Use SAFE_ALLOCA_LISP, not alloca.
12223 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
12224 intptr_t is wide enough.
12225 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
12226 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
12227 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
12228 Check for fixnum out of range.
12229 * ftfont.c (ftfont_list): Don't assume index fits in int.
12230 Check that fixnums are in proper range for system types.
12231 (ftfont_shape_by_flt):
12232 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12233 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12234 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12235 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
12236 Check that fixnums are in proper range for system types.
12237 * gnutls.h: Adjust decls to match defn changes elsewhere.
12238 * gtkutil.c (xg_dialog_run):
12239 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12240 (update_frame_tool_bar):
12241 Check that fixnums are in proper range for system types.
12242 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
12243 (lookup_image): Check that fixnums are in range for system types.
12244 * indent.c (last_known_column, last_known_column_point):
12245 (current_column_bol_cache):
12246 (skip_invisible, current_column, check_display_width):
12247 (check_display_width, scan_for_column, current_column_1)
12248 (Findent_to, Fcurrent_indentation, position_indentation)
12249 (indented_beyond_p, Fmove_to_column, compute_motion):
12250 (Fcompute_motion, Fvertical_motion):
12251 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12252 (last_known_column_modified): Use EMACS_INT, not int.
12253 (check_display_width):
12254 (Fcompute_motion):
12255 Check that fixnums and floats are in proper range for system types.
12256 (compute_motion): Don't assume index or fixnum fits in int.
12257 (compute_motion, Fcompute_motion):
12258 Use int, not EMACS_INT, when it is wide enough.
12259 (vmotion): Omit local var start_hpos that is always 0; that way
12260 we don't need to worry about overflow in expressions involving it.
12261 * indent.h: Adjust decls to match defn changes elsewhere.
12262 (struct position):
12263 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12264 Use int, not EMACS_INT, where int is wide enough.
12265 Remove unused members ovstring_chars_done and tab_offset;
12266 all uses removed.
12267 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12268 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
12269 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12270 (make_gap, copy_text, insert, insert_and_inherit)
12271 (insert_before_markers, insert_before_markers_and_inherit)
12272 (insert_1, count_combining_before, count_combining_after)
12273 (insert_1_both, insert_from_string)
12274 (insert_from_string_before_markers, insert_from_string_1)
12275 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
12276 (adjust_after_replace, adjust_after_insert, replace_range)
12277 (replace_range_2, del_range, del_range_1, del_range_byte)
12278 (del_range_both, del_range_2, modify_region)
12279 (prepare_to_modify_buffer, signal_before_change)
12280 (signal_after_change, Fcombine_after_change_execute):
12281 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12282 * intervals.c (traverse_intervals, rotate_right, rotate_left)
12283 (balance_an_interval, split_interval_right, split_interval_left)
12284 (find_interval, next_interval, update_interval)
12285 (adjust_intervals_for_insertion, delete_node, delete_interval)
12286 (interval_deletion_adjustment, adjust_intervals_for_deletion)
12287 (static_offset_intervals, offset_intervals)
12288 (merge_interval_right, merge_interval_left, make_new_interval)
12289 (graft_intervals_into_buffer, temp_set_point_both)
12290 (temp_set_point, set_point, adjust_for_invis_intang)
12291 (set_point_both, move_if_not_intangible, get_property_and_range)
12292 (get_local_map, copy_intervals, copy_intervals_to_string)
12293 (compare_string_intervals, set_intervals_multibyte_1):
12294 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12295 * intervals.h: Adjust decls to match defn changes elsewhere.
12296 (struct interval):
12297 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12298 * keyboard.c (this_command_key_count, this_single_command_key_start)
12299 (before_command_key_count, before_command_echo_length, echo_now)
12300 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
12301 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
12302 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
12303 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
12304 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12305 (last_non_minibuf_size, last_point_position, echo_truncate)
12306 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
12307 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
12308 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
12309 (stuff_buffered_input):
12310 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12311 (last_auto_save, command_loop_1, read_char):
12312 Use EMACS_INT, not int, to avoid integer overflow.
12313 (record_char): Avoid overflow in total_keys computation.
12314 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
12315 * keyboard.h: Adjust decls to match defn changes elsewhere.
12316 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
12317 (Fkey_description, Fdescribe_vector, Flookup_key):
12318 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12319 (click_position): New function, to check that positions are in range.
12320 (Fcurrent_active_maps):
12321 (describe_command):
12322 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12323 (Faccessible_keymaps, Fkey_description):
12324 (preferred_sequence_p):
12325 Don't assume fixnum can fit into int.
12326 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
12327 Check for integer overflow in size calculations.
12328 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
12329 avoid mishandling large integers.
12330 * lisp.h: Adjust decls to match defn changes elsewhere.
12331 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
12332 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
12333 (struct Lisp_Marker):
12334 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12335 (clip_to_bounds): Now an inline function, moved here from editfns.c.
12336 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
12337 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
12338 All callers changed.
12339 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
12340 Assume the arg has valid form, since it always does.
12341 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
12342 unsigned integer system type.
12343 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
12344 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
12345 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12346 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
12347 (duration_to_sec_usec): New decl.
12348 * lread.c (read_from_string_index, read_from_string_index_byte)
12349 (read_from_string_limit, readchar, unreadchar, openp)
12350 (read_internal_start, read1, oblookup):
12351 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12352 (Fload, readevalloop, Feval_buffer, Feval_region):
12353 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12354 (openp): Check for out-of-range argument to 'access'.
12355 (read1): Use int, not EMACS_INT, where int is wide enough.
12356 Don't assume fixnum fits into int.
12357 Fix off-by-one error that can read outside a buffer.
12358 (read_filtered_event): Use duration_to_sec_usec
12359 to do proper overflow checking on durations.
12360 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
12361 in size calculation.
12362 (Fexecute_kbd_macro):
12363 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12364 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
12365 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
12366 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
12367 (set_marker_both, set_marker_restricted_both, marker_position)
12368 (marker_byte_position, Fbuffer_has_markers_at):
12369 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12370 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
12371 * menu.c (ensure_menu_items): Rename from grow_menu_items.
12372 It now merely ensures that the menu is large enough, without
12373 necessarily growing it, as this avoids some integer overflow issues.
12374 All callers changed.
12375 (keymap_panes, parse_single_submenu, Fx_popup_menu):
12376 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12377 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
12378 Use SAFE_ALLOCA_LISP, not alloca.
12379 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
12380 to EMACS_INT. Check that fixnums are in proper range for system types.
12381 * minibuf.c (minibuf_prompt_width, string_to_object)
12382 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
12383 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
12384 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12385 (get_minibuffer, read_minibuf_unwind):
12386 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12387 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
12388 this simplifies overflow checking. All callers changed.
12389 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
12390 (Ftest_completion):
12391 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12392 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
12393 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
12394 Check that fixnums are in proper range for system types.
12395 (Fx_create_frame, Fx_show_tip):
12396 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12397 * nsfont.m (ns_findfonts, nsfont_list_family):
12398 Don't assume fixnum fits in long.
12399 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
12400 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12401 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
12402 wide enough.
12403 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
12404 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12405 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
12406 (PRINTDECLARE, PRINTPREPARE):
12407 (strout, print_string):
12408 (print, print_preprocess, print_check_string_charset_prop)
12409 (print_object):
12410 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12411 (PRINTDECLARE):
12412 (temp_output_buffer_setup, Fprin1_to_string, print_object):
12413 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12414 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
12415 (printchar, strout): Use xpalloc to catch size calculation overflow.
12416 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12417 (print_error_message): Use SAFE_ALLOCA, not alloca.
12418 (print_object): Use int, not EMACS_INT, where int is wide enough.
12419 (print_depth, new_backquote_output, print_number_index):
12420 Use ptrdiff_t, not int, where int might not be wide enough.
12421 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12422 (Fset_process_window_size, Fformat_network_address)
12423 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12424 (sigchld_handler):
12425 Check that fixnums are in proper range for system types.
12426 (Fsignal_process): Simplify by avoiding a goto.
12427 Check for process-ids out of pid_t range rather than relying on
12428 undefined behavior.
12429 (process_tick, update_tick): Use EMACS_INT, not int.
12430 (Fformat_network_address, read_process_output, send_process)
12431 (Fprocess_send_region, status_notify):
12432 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12433 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12434 (wait_reading_process_output, read_process_output, exec_sentinel):
12435 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12436 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12437 (Faccept_process_output): Use duration_to_sec_usec to do proper
12438 overflow checking on durations.
12439 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12440 Don't assume pid_t fits in int.
12441 * process.h (struct Lisp_Process): Members tick and update_tick
12442 are now of type EMACS_INT, not int.
12443 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12444 configured --with-wide-int.
12445 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12446 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12447 * search.c (looking_at_1, string_match_1):
12448 (fast_string_match, fast_c_string_match_ignore_case)
12449 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12450 (scan_newline, find_before_next_newline, search_command)
12451 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12452 (set_search_regs, wordify):
12453 (Freplace_match):
12454 (Fmatch_data):
12455 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12456 (string_match_1, search_buffer, set_search_regs):
12457 (Fmatch_data):
12458 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12459 (wordify): Check for overflow in size calculation.
12460 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12461 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12462 Check that fixnums are in proper range for system types.
12463 * sound.c (struct sound_device)
12464 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12465 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12466 (Fplay_sound_internal):
12467 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12468 * syntax.c (struct lisp_parse_state, find_start_modiff)
12469 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12470 (Fparse_partial_sexp):
12471 Don't assume fixnums can fit in int.
12472 (struct lisp_parse_state, find_start_pos, find_start_value)
12473 (find_start_value_byte, find_start_begv)
12474 (update_syntax_table, char_quoted, dec_bytepos)
12475 (find_defun_start, prev_char_comend_first, back_comment):
12476 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12477 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12478 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12479 (Finternal_describe_syntax_value): Check that match_lisp is a
12480 character, not an integer, since the code stuffs it into int.
12481 (scan_words, scan_sexps_forward):
12482 Check that fixnums are in proper range for system types.
12483 (Fforward_word):
12484 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12485 (scan_sexps_forward):
12486 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12487 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12488 * syntax.h: Adjust decls to match defn changes elsewhere.
12489 (struct gl_state_s):
12490 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12491 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12492 MOST_POSITIVE_FIXNUM.
12493 * sysdep.c (wait_for_termination_1, wait_for_termination)
12494 (interruptible_wait_for_termination, mkdir):
12495 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12496 (emacs_read, emacs_write):
12497 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12498 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12499 and double all fit in int.
12500 * term.c (set_tty_color_mode):
12501 Check that fixnums are in proper range for system types.
12502 * termhooks.h (struct input_event):
12503 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12504 * textprop.c (validate_interval_range, interval_of)
12505 (Fadd_text_properties, set_text_properties_1)
12506 (Fremove_text_properties, Fremove_list_of_text_properties)
12507 (Ftext_property_any, Ftext_property_not_all)
12508 (copy_text_properties, text_property_list, extend_property_ranges)
12509 (verify_interval_modification):
12510 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12511 (Fnext_single_char_property_change)
12512 (Fprevious_single_char_property_change):
12513 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12514 (copy_text_properties):
12515 Check for integer overflow in index calculation.
12516 * undo.c (last_boundary_position, record_point, record_insert)
12517 (record_delete, record_marker_adjustment, record_change)
12518 (record_property_change):
12519 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12520 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
12521 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12522 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12523 (Fx_hide_tip, Fx_file_dialog):
12524 * w32menu.c (set_frame_menubar):
12525 Use ptrdiff_t, not int, for consistency with rest of code.
12526 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
12527 (select_window, Fdelete_other_windows_internal)
12528 (window_scroll_pixel_based, window_scroll_line_based)
12529 (Frecenter, Fset_window_configuration):
12530 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12531 (Fset_window_hscroll, run_window_configuration_change_hook)
12532 (set_window_buffer, temp_output_buffer_show, scroll_command)
12533 (Fscroll_other_window, Frecenter):
12534 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12535 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
12536 Don't assume fixnum fits in int.
12537 (Fset_window_scroll_bars):
12538 Check that fixnums are in proper range for system types.
12539 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
12540 (string_pos, c_string_pos, number_of_chars, init_iterator)
12541 (in_ellipses_for_invisible_text_p, init_from_display_pos)
12542 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
12543 (compute_display_string_end, handle_face_prop)
12544 (face_before_or_after_it_pos, handle_invisible_prop)
12545 (handle_display_prop, handle_display_spec, handle_single_display_spec)
12546 (display_prop_intangible_p, string_buffer_position_lim)
12547 (string_buffer_position, handle_composition_prop, load_overlay_strings)
12548 (get_overlay_strings_1, get_overlay_strings)
12549 (iterate_out_of_display_property, forward_to_next_line_start)
12550 (back_to_previous_visible_line_start, reseat, reseat_to_string)
12551 (get_next_display_element, set_iterator_to_next)
12552 (get_visually_first_element, compute_stop_pos_backwards)
12553 (handle_stop_backwards, next_element_from_buffer)
12554 (move_it_in_display_line_to, move_it_in_display_line)
12555 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12556 (add_to_log, message_dolog, message_log_check_duplicate)
12557 (message2, message2_nolog, message3, message3_nolog
12558 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
12559 (current_message_1, truncate_echo_area, truncate_message_1)
12560 (set_message, set_message_1, store_mode_line_noprop)
12561 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
12562 (text_outside_line_unchanged_p, check_point_in_composition)
12563 (reconsider_clip_changes)
12564 (redisplay_internal, set_cursor_from_row, try_scrolling)
12565 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
12566 (redisplay_window, find_last_unchanged_at_beg_row)
12567 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
12568 (trailing_whitespace_p, find_row_edges, display_line)
12569 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
12570 (display_mode_element, store_mode_line_string)
12571 (pint2str, pint2hrstr, decode_mode_spec)
12572 (display_count_lines, display_string, draw_glyphs)
12573 (x_produce_glyphs, x_insert_glyphs)
12574 (rows_from_pos_range, mouse_face_from_buffer_pos)
12575 (fast_find_string_pos, mouse_face_from_string_pos)
12576 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12577 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12578 (safe_call, init_from_display_pos, handle_fontified_prop)
12579 (handle_single_display_spec, load_overlay_strings)
12580 (with_echo_area_buffer, setup_echo_area_for_printing)
12581 (display_echo_area, echo_area_display)
12582 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
12583 (update_tool_bar, hscroll_window_tree, redisplay_internal)
12584 (redisplay_window, dump_glyph_row, display_mode_line)
12585 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
12586 (handle_display_spec, display_prop_string_p):
12587 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12588 (handle_single_display_spec, build_desired_tool_bar_string)
12589 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
12590 (get_specified_cursor_type):
12591 Check that fixnums are in proper range for system types.
12592 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
12593 (Flookup_image_map):
12594 Don't assume fixnums fit in int.
12595 (compare_overlay_entries):
12596 Avoid mishandling comparisons due to subtraction overflow.
12597 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
12598 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
12599 (handle_tool_bar_click):
12600 Use int, not unsigned, since we prefer signed and the signedness
12601 doesn't matter here.
12602 (get_next_display_element, next_element_from_display_vector):
12603 Use int, not EMACS_INT, when int is wide enough.
12604 (start_hourglass): Use duration_to_sec_usec to do proper
12605 overflow checking on durations.
12606 * xfaces.c (Fbitmap_spec_p):
12607 Check that fixnums are in proper range for system types.
12608 (compare_fonts_by_sort_order):
12609 Avoid mishandling comparisons due to subtraction overflow.
12610 (Fx_family_fonts, realize_basic_faces):
12611 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12612 (Fx_family_fonts):
12613 Don't assume fixnum fits in int.
12614 Use SAFE_ALLOCA_LISP, not alloca.
12615 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
12616 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
12617 (face_at_buffer_position, face_for_overlay_string)
12618 (face_at_string_position):
12619 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12620 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
12621 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
12622 (Fx_show_tip):
12623 Check that fixnums are in proper range for system types.
12624 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12625 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
12626 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12627 (Fx_change_window_property): Don't assume fixnums fit in int.
12628 * xfont.c (xfont_chars_supported):
12629 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12630 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
12631 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
12632 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12633 * xml.c (parse_region):
12634 * xrdb.c (magic_file_p):
12635 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12636 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
12637 (x_get_local_selection, x_reply_selection_request)
12638 (x_handle_selection_request, wait_for_property_change):
12639 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12640 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
12641 short is wide enough.
12642 (x_send_client_event): Don't assume fixnum fits in int.
12643 * xterm.c (x_x_to_emacs_modifiers):
12644 Don't assume EMACS_INT overflows nicely into int.
12645 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
12646 may come from Lisp.
12647 (handle_one_xevent): NATNUMP can eval its arg twice.
12648 (x_connection_closed):
12649 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12650 * xterm.h: Adjust decls to match defn changes elsewhere.
12651 (struct scroll_bar): Use struct vectorlike_header
12652 rather than rolling our own approximation.
12653 (SCROLL_BAR_VEC_SIZE): Remove; not used.
12654
12655 2012-05-25 Glenn Morris <rgm@gnu.org>
12656
12657 * lisp.mk (lisp): Update for more files being compiled now.
12658
12659 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12660
12661 * lread.c: Remove `read_pure' which makes no difference.
12662 (read_pure): Remove var.
12663 (unreadpure): Remove function.
12664 (readevalloop): Don't call read_list with -1 flag.
12665 (read1, read_vector): Don't test read_pure any more.
12666 (read_list): Simplify.
12667
12668 * fileio.c, character.h: Minor style tweaks.
12669
12670 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12671
12672 * window.h (clip_changed): Remove useless declaration.
12673
12674 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12675
12676 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
12677 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
12678
12679 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
12680
12681 Remove src/m/*.
12682 This directory predates autoconf and is no longer needed nowadays.
12683 Move its few remaining bits of functionality to where they're needed.
12684 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
12685 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
12686 * m/template.h: Remove.
12687 * Makefile.in (M_FILE): Remove. All uses removed.
12688 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
12689 * lisp.h (USE_LSB_TAG):
12690 * mem-limits.h (EXCEEDS_LISP_PTR):
12691 Use VAL_MAX, not VALBITS, in #if.
12692 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
12693 (EMACS_UINT): Define unconditionally now.
12694 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
12695 (BITS_PER_EMACS_INT): New constants, replacing
12696 what used to be in config.h, but not useful in #if.
12697 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
12698 define them any more.
12699 (VAL_MAX): New macro.
12700 (VALMASK): Use it.
12701 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
12702 BITS_PER_EMACS_INT, in #if.
12703 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
12704 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
12705 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
12706 * s/ms-w32.h (DATA_START):
12707 Move here from removed file m/intel386.h.
12708 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
12709 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
12710
12711 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
12712
12713 Assume C89 or later.
12714 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
12715 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
12716 (xrealloc):
12717 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
12718 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
12719 * textprop.c, tparam.c (NULL): Remove.
12720 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
12721 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
12722 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
12723 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
12724 * xterm.c (input_signal_count): Assume volatile works.
12725
12726 2012-05-21 Ken Brown <kbrown@cornell.edu>
12727
12728 * xgselect.c (xg_select): Fix first argument in call to 'select'
12729 (bug#11508).
12730
12731 2012-05-20 Ken Brown <kbrown@cornell.edu>
12732
12733 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
12734 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
12735
12736 2012-05-19 Ken Brown <kbrown@cornell.edu>
12737
12738 * xfns.c (x_in_use): Remove `static' qualifier.
12739 * xterm.h (x_in_use): Declare.
12740 * xgselect.c: Include xterm.h.
12741 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
12742 and `display_arg' (bug#9754).
12743
12744 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12745
12746 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12747
12748 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
12749 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
12750
12751 2012-05-18 Eli Zaretskii <eliz@gnu.org>
12752
12753 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
12754
12755 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
12756 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
12757
12758 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
12759 reference to image_cache->refcount.
12760 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
12761
12762 2012-05-17 Juri Linkov <juri@jurta.org>
12763
12764 * search.c (Fword_search_regexp, Fword_search_backward)
12765 (Fword_search_forward, Fword_search_backward_lax)
12766 (Fword_search_forward_lax): Move functions to isearch.el
12767 (bug#10145, bug#11381).
12768
12769 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12770
12771 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12772
12773 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12774
12775 * lread.c (init_obarray): Declare Qt and Qnil as special.
12776
12777 2012-05-14 Glenn Morris <rgm@gnu.org>
12778
12779 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
12780 Put "libexec" before "bin", for the sake of init_callproc_1.
12781
12782 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12783
12784 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12785
12786 * unexaix.c: Port to more-recent AIX compilers.
12787 (report_error, report_error_1, make_hdr, copy_sym)
12788 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
12789 Make arguments const char *, not char *, to avoid violations of C
12790 standard and to fix some AIX warnings reported by Gilles Pion.
12791
12792 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12793
12794 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
12795 already have overlays loaded.
12796 (handle_single_display_spec): Before returning without displaying
12797 fringe bitmap, synchronize the bidi iterator with the main display
12798 iterator, by calling iterate_out_of_display_property.
12799 (iterate_out_of_display_property): Detect buffer iteration by
12800 testing that it->string is a Lisp string.
12801 (get_next_display_element): When the current object is exhausted,
12802 and there's something on it->stack, call set_iterator_to_next to
12803 proceed with what's on the stack, instead of returning zero.
12804 (set_iterator_to_next): If called at the end of a Lisp string,
12805 proceed to consider_string_end without incrementing string
12806 position. Don't increment display vector index past the end of
12807 the display vector. (Bug#11417)
12808 (pos_visible_p): Don't report a position visible when move_it_to
12809 stopped at the last line of window, which happens to be scanned
12810 backwards by the bidi iteration. (Bug#11464)
12811
12812 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12813
12814 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
12815 and right-margin display specs even if the spec is invalid or we
12816 are on a TTY, and thus unable to display on the fringes.
12817 That's because the text with the property will not be displayed anyway,
12818 so we need to signal to the caller that this is a "replacing"
12819 display spec. This fixes display when the spec is invalid or we
12820 are on a TTY.
12821
12822 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12823
12824 * unexaix.c (make_hdr): Fix typo in prototype.
12825 This bug broke the build on AIX. Problem reported by Gilles Pion.
12826
12827 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
12828
12829 * keyboard.c (kbd_buffer_get_event): Read special events also in
12830 batch mode. (Bug#11415)
12831
12832 2012-05-12 Glenn Morris <rgm@gnu.org>
12833
12834 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12835
12836 2012-05-12 Eli Zaretskii <eliz@gnu.org>
12837
12838 * lisp.mk (lisp): Add newcomment.elc.
12839
12840 2012-05-12 Glenn Morris <rgm@gnu.org>
12841
12842 * Makefile.in (MKDIR_P): New, set by configure.
12843 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
12844
12845 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
12846
12847 Remove unused function hourglass_started.
12848 * dispextern.h (hourglass_started):
12849 * w32fns.c (hourglass_started):
12850 * xdisp.c (hourglass_started): Remove.
12851
12852 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
12853
12854 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12855 Update dependencies.
12856
12857 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12858
12859 * xgselect.c (xg_select): Put maxfds+1 into a var.
12860 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12861
12862 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12863
12864 2012-05-10 Dave Abrahams <dave@boostpro.com>
12865
12866 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
12867 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
12868
12869 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
12870
12871 * dbusbind.c (xd_registered_buses): New internal Lisp object.
12872 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
12873 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12874 Initialize xd_registered_buses.
12875
12876 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12877
12878 Untag more efficiently if USE_LSB_TAG.
12879 This is based on a proposal by YAMAMOTO Mitsuharu in
12880 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
12881 For an admittedly artificial (nth 8000 longlist) benchmark on
12882 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
12883 Emacs's overall text size by 1%.
12884 * lisp.h (XUNTAG): New macro.
12885 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
12886 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
12887 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
12888 * eval.c (Fautoload):
12889 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
12890 * frame.h (XFRAME): Use XUNTAG.
12891
12892 Port recent dbusbind.c changes to 32-bit --with-wide-int.
12893 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
12894 Remove unportable assumptions about print widths of types like
12895 dbus_uint32_t.
12896 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
12897 intptr_t when converting between pointer and integer, to avoid GCC
12898 warnings about wrong width.
12899
12900 2012-05-09 Eli Zaretskii <eliz@gnu.org>
12901
12902 * w32proc.c (new_child): Force Windows to reserve only 64KB of
12903 stack for each reader_thread, instead of defaulting to 8MB
12904 determined by the linker. This avoids failures in creating
12905 subprocesses on Windows 7, see the discussion in this thread:
12906 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
12907
12908 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
12909
12910 Fix up display of the *Minibuf-0* buffer in the mini window.
12911 * keyboard.c (read_char): Don't clear the echo area if there's no
12912 message to clear.
12913 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
12914 contents of *Minibuf-0*) if there's no message displayed in its stead.
12915
12916 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
12917
12918 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
12919 batch mode.
12920
12921 2012-05-06 Chong Yidong <cyd@gnu.org>
12922
12923 * lisp.mk (lisp): Update.
12924
12925 2012-05-05 Jim Meyering <meyering@redhat.com>
12926
12927 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12928
12929 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12930
12931 * data.c (PUT_ERROR): New macro.
12932 (syms_of_data): Use it. Add new error type `user-error'.
12933 * undo.c (user_error): New function.
12934 (Fprimitive_undo): Use it.
12935 * print.c (print_error_message): Adjust print style for `user-error'.
12936 * keyboard.c (user_error): New function.
12937 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
12938
12939 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
12940
12941 Do not limit current-time-string to years 1000..9999.
12942 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
12943 (Fcurrent_time_string): Support any year that is supported by the
12944 underlying localtime representation. Don't use asctime, as it
12945 has undefined behavior for years outside the range -999..9999.
12946
12947 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
12948
12949 Fix race conditions involving setenv, gmtime, localtime, asctime.
12950 Without this fix, interrupts could mess up code that uses these
12951 nonreentrant functions, since setting TZ invalidates existing
12952 tm_zone or tzname values, and since most of these functions return
12953 pointers to static storage.
12954 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
12955 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
12956 Grow the critical sections to include not just invoking
12957 localtime/gmtime, but also accessing these functions' results
12958 including their tm_zone values if any, and any related TZ setting.
12959 (format_time_string): Last arg is now struct tm *, not struct tm **,
12960 so that the struct tm is saved in the critical section.
12961 All callers changed. Simplify allocation of initial buffer, partly
12962 motivated by the fact that memory allocation needs to be outside
12963 the critical section.
12964
12965 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
12966
12967 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
12968 with RESET_INTERVAL.
12969
12970 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12971 Remove duplicated buffer name initialization.
12972
12973 2012-05-02 Jim Meyering <jim@meyering.net>
12974
12975 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12976
12977 * xfns.c (x_window): Use xstrdup (Bug#11375).
12978
12979 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12980
12981 * xdisp.c (pos_visible_p): If already at a newline from the
12982 display string before the 'while' loop, don't walk back the glyphs
12983 from it3.glyph_row. Solves assertion violation when the display
12984 string begins with a newline (egg.el). (Bug#11367)
12985
12986 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12987
12988 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12989 Move to simple.el.
12990
12991 2012-05-01 Glenn Morris <rgm@gnu.org>
12992
12993 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
12994 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
12995 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
12996 All were removed before 23.1.
12997
12998 * dispnew.c: Remove HAVE_LIBNCURSES test;
12999 it is always true on relevant platforms.
13000
13001 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
13002 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
13003
13004 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
13005
13006 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
13007
13008 * .gdbinit (xpr): Remove checks for no longer existing misc types.
13009 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
13010 Remove.
13011
13012 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
13013
13014 Do not avoid creating empty evaporating overlays (Bug#9642).
13015 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
13016 That is, do not delete an evaporating overlay if it becomes
13017 empty after its bounds are adjusted to fit within its buffer.
13018 This fix caused other problems, and I'm reverting it until we get
13019 to the bottom of them.
13020
13021 2012-04-27 Chong Yidong <cyd@gnu.org>
13022
13023 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
13024
13025 2012-04-27 Eli Zaretskii <eliz@gnu.org>
13026
13027 * xdisp.c (pos_visible_p): If the window start position is beyond
13028 ZV, start the display from buffer beginning. Prevents assertion
13029 violation in init_iterator when the minibuffer window is scrolled
13030 via the scroll bar.
13031
13032 * window.c (window_scroll_pixel_based): Likewise.
13033
13034 2012-04-27 Chong Yidong <cyd@gnu.org>
13035
13036 * keymap.c (where_is_internal): Doc fix (Bug#10872).
13037
13038 2012-04-27 Glenn Morris <rgm@gnu.org>
13039
13040 * fileio.c (Fcopy_file, Fset_file_selinux_context):
13041 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
13042
13043 2012-04-27 Eli Zaretskii <eliz@gnu.org>
13044
13045 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
13046 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
13047
13048 2012-04-26 Eli Zaretskii <eliz@gnu.org>
13049
13050 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
13051 display element, check also the underlying string or buffer
13052 character. (Bug#11341)
13053
13054 * w32menu.c: Include w32heap.h.
13055 (add_menu_item): If the call to AppendMenuW (via
13056 unicode_append_menu) fails, disable Unicode menus only if we are
13057 running on Windows 9X/Me.
13058
13059 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
13060
13061 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
13062 (xgetint): Add missing shift for LSB tags.
13063
13064 2012-04-24 Martin Rudalics <rudalics@gmx.at>
13065
13066 * keyboard.c (read_char): Don't wipe echo area for select window
13067 events: These might get delayed via `mouse-autoselect-window'
13068 (Bug#11304).
13069
13070 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
13071
13072 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
13073 manipulation of :loaded-from data.
13074
13075 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
13076
13077 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
13078 now a cons (bug#11311).
13079
13080 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
13081
13082 Do not create empty overlays with the evaporate property (Bug#9642).
13083 * buffer.c (Fmove_overlay): Delete an evaporating overlay
13084 if it becomes empty after its bounds are adjusted to fit within
13085 its buffer. Without this fix, in a nonempty buffer (let ((o
13086 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
13087 yields an empty overlay that has the evaporate property, which is
13088 not supposed to happen.
13089
13090 Fix minor GTK3 problems found by static checking.
13091 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13092 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13093 (struct _EmacsFixedClass, emacs_fixed_get_type):
13094 Move decls here from emacsgtkfixed.h, since they needn't be public.
13095 (emacs_fixed_get_type): Now static.
13096 (emacs_fixed_class_init): Omit unused local.
13097 (emacs_fixed_child_type): Remove; unused.
13098 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
13099 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
13100 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
13101 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
13102 (EMACS_FIXED_GET_CLASS): Remove; unused.
13103 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
13104
13105 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
13106 Problem reported by Juanma Barranquero for Windows -Wunused-function.
13107
13108 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13109
13110 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
13111 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
13112 (__malloc_size_t, __malloc_ptrdiff_t):
13113 Remove. All uses removed, replaced by the definiens if needed,
13114 since we can assume C89 or better now.
13115 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
13116 (protect_malloc_state, align, get_contiguous_space)
13117 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
13118 (malloc_atfork_handler_child, malloc_enable_thread)
13119 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
13120 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
13121 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
13122 (special_realloc, _realloc_internal_nolock, _realloc_internal)
13123 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
13124 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
13125 Define using prototypes, not old style.
13126 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
13127 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
13128 (align): Don't assume that signed integer overflow wraps around.
13129 Omit unused local var.
13130 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
13131 (_free_internal_nolock, memalign, mallochook, reallochook):
13132 Omit no-longer-needed casts.
13133 (valloc): Use getpagesize, not __getpagesize.
13134 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
13135 (struct hdr): The 'magic' member is now size_t, not unsigned long.
13136
13137 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
13138
13139 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
13140
13141 Move functions from C to Lisp. Make non-blocking method calls
13142 the default. Implement further D-Bus standard interfaces.
13143
13144 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
13145 (QCdbus_request_name_allow_replacement)
13146 (QCdbus_request_name_replace_existing)
13147 (QCdbus_request_name_do_not_queue)
13148 (QCdbus_request_name_reply_primary_owner)
13149 (QCdbus_request_name_reply_in_queue)
13150 (QCdbus_request_name_reply_exists)
13151 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
13152 (QCdbus_registered_serial, QCdbus_registered_method)
13153 (QCdbus_registered_signal): New Lisp objects.
13154 (XD_DEBUG_MESSAGE): Use sizeof.
13155 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
13156 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
13157 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
13158 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
13159 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
13160 (xd_signature, xd_append_arg): Allow float for integer types.
13161 (xd_get_connection_references): New function.
13162 (xd_get_connection_address): Rename from xd_initialize.
13163 Return cached address.
13164 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
13165 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
13166 level.
13167 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
13168 Return number of refcounts.
13169 (Fdbus_get_unique_name): Make stronger parameter check.
13170 (Fdbus_message_internal): New defun.
13171 (Fdbus_call_method, Fdbus_call_method_asynchronously)
13172 (Fdbus_method_return_internal, Fdbus_method_error_internal)
13173 (Fdbus_send_signal, Fdbus_register_service)
13174 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
13175 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
13176 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
13177 (Vdbus_compiled_version, Vdbus_runtime_version)
13178 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
13179 (Vdbus_message_type_method_return, Vdbus_message_type_error)
13180 (Vdbus_message_type_signal): New defvars.
13181 (Vdbus_registered_buses, Vdbus_registered_objects_table):
13182 Adapt docstring.
13183
13184 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13185
13186 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
13187 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
13188 Do not assume ptrdiff_t is the same width as 'int'.
13189
13190 * alloc.c: Handle unusual debugging option combinations.
13191 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
13192 since the two debugging options are incompatible.
13193 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
13194 is defined.
13195 (mem_init, mem_insert, mem_insert_fixup):
13196 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
13197 (NEED_MEM_INSERT): Remove; no longer needed.
13198
13199 2012-04-22 Leo Liu <sdl.web@gmail.com>
13200
13201 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
13202
13203 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13204
13205 * sysdep.c [__FreeBSD__]: Minor cleanups.
13206 (list_system_processes, system_process_attributes) [__FreeBSD__]:
13207 Use Emacs indenting style more consistently. Avoid some casts.
13208 Use 'double' consistently rather than mixing 'float' and 'double'.
13209
13210 2012-04-21 Eduard Wiebe <usenet@pusto.de>
13211
13212 * sysdep.c (list_system_processes, system_process_attributes):
13213 Add implementation for FreeBSD (Bug#5243).
13214
13215 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
13216
13217 * lisp.mk (lisp): Update.
13218
13219 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
13220
13221 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
13222 It is never used otherwise.
13223
13224 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13225
13226 * print.c (print_preprocess): Only check print_depth if print-circle
13227 is nil.
13228 (print_object): Check for cycles even when print-circle is nil and
13229 print-gensym is t, but only check print_depth if print-circle is nil.
13230
13231 2012-04-20 Chong Yidong <cyd@gnu.org>
13232
13233 * process.c (wait_reading_process_output): If EIO occurs on a pty,
13234 set the status to "failed" and ensure that sentinel is run.
13235
13236 2012-04-20 Glenn Morris <rgm@gnu.org>
13237
13238 * process.c (Fset_process_inherit_coding_system_flag)
13239 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
13240 (Fmake_network_process, Fmake_serial_process): Doc fix.
13241
13242 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13243
13244 * xdisp.c (string_buffer_position_lim): Limit starting position to
13245 BEGV.
13246 (set_cursor_from_row): If called for a mode-line or header-line
13247 row, return zero immediately.
13248 (try_cursor_movement): If inside continuation line, don't back up
13249 farther than the first row after the header line, if any.
13250 Don't consider the header-line row as "partially visible", even if
13251 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
13252
13253 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13254
13255 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
13256 (bug#11238).
13257
13258 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
13259 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
13260
13261 configure: new option --enable-gcc-warnings (Bug#11207)
13262 * Makefile.in (C_WARNINGS_SWITCH): Remove.
13263 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
13264 (ALL_CFLAGS): Use new macros rather than old.
13265 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
13266 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
13267 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
13268 -Wunused-result, -Wunused-variable. This should go away once
13269 the Emacs and Gnulib regex code is merged.
13270 (xmalloc, xrealloc): Now static.
13271
13272 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
13273
13274 * dired.c (Fsystem_groups): Remove unused local.
13275
13276 2012-04-17 Glenn Morris <rgm@gnu.org>
13277
13278 * dired.c (Fsystem_users): Doc fix.
13279
13280 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13281
13282 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
13283 (syms_of_dired): Add them.
13284
13285 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
13286
13287 Fix minor alloc.c problems found by static checking.
13288 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
13289 New extern decls, to avoid calling undeclared functions.
13290 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
13291 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
13292 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
13293 (NEED_MEM_INSERT): New macro.
13294 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
13295 Remove one incorrect comment and fix another.
13296
13297 Fix minor ralloc.c problems found by static checking.
13298 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13299 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
13300 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
13301 (r_alloc_sbrk): Now static.
13302
13303 Improve ralloc.c interface checking.
13304 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13305 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
13306 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
13307 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
13308 [REL_ALLOC]: ... to here, to check interface.
13309 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
13310 Remove decls. This fixes an "It stinks!".
13311
13312 * alloc.c (which_symbols): Fix alignment issue / type clash.
13313
13314 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
13315
13316 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
13317 (struct Lisp_Misc_Any): Likewise.
13318 (struct Lisp_Free): Likewise.
13319 * alloc.c (union aligned_Lisp_Symbol): Define.
13320 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
13321 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
13322 (union aligned_Lisp_Misc): Define.
13323 (MARKER_BLOCK_SIZE, struct marker_block): Use union
13324 aligned_Lisp_Misc instead of union Lisp_Misc.
13325 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
13326
13327 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13328
13329 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
13330 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
13331 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
13332 * s/netbsd.h, s/sol2-6.h:
13333 Remove definition of GC_MARK_STACK, since the default now works.
13334 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
13335 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
13336 no longer the default.
13337 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
13338
13339 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13340
13341 * lread.c (lisp_file_lexically_bound_p):
13342 Fix hang at ";-*-\n" (bug#11238).
13343
13344 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13345
13346 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
13347 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
13348
13349 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
13350
13351 * nsterm.m (constrainFrameRect): Always constrain when there is only
13352 one screen (Bug#10962).
13353
13354 2012-04-13 Ken Brown <kbrown@cornell.edu>
13355
13356 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
13357
13358 2012-04-13 Reuben Thomas <rrt@sc3d.org>
13359
13360 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
13361
13362 2012-04-11 Daniel Colascione <dancol@dancol.org>
13363
13364 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
13365 against is gone. It's better to use vfork now so that when Cygwin
13366 gains a new, working vfork, we use it automatically (bug#10398).
13367
13368 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13369
13370 * window.c (save_window_save): Obey window-point-insertion-type.
13371
13372 2012-04-11 Glenn Morris <rgm@gnu.org>
13373
13374 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
13375
13376 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13377
13378 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
13379
13380 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
13381
13382 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
13383 (force_quit_count): New var.
13384 (handle_interrupt): Use it.
13385
13386 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13387
13388 * w32.c (w32_delayed_load): Record the full path of the library
13389 being loaded (bug#10424).
13390
13391 2012-04-09 Glenn Morris <rgm@gnu.org>
13392
13393 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13394 not just in the obarray, before snarfing them. (Bug#11036)
13395
13396 * Makefile.in ($(leimdir)/leim-list.el):
13397 Pass EMACS rather than BUILT_EMACS.
13398
13399 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
13400
13401 * process.c (make_process):
13402 * process.h: Add integer `gnutls_handshakes_tried' member to
13403 process struct.
13404
13405 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13406 Add convenience `GNUTLS_LOG2i' macro.
13407
13408 * gnutls.c (gnutls_log_function2i): Convenience log function.
13409 (emacs_gnutls_read): Use new log functions,
13410 `gnutls_handshakes_tried' process member, and
13411 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
13412 attempts per process (connection).
13413
13414 2012-04-09 Chong Yidong <cyd@gnu.org>
13415
13416 * eval.c (Fuser_variable_p, user_variable_p_eh)
13417 (lisp_indirect_variable): Functions deleted.
13418 (Fdefvar): Caller changed.
13419
13420 * callint.c (Finteractive, Fcall_interactively):
13421 * minibuf.c (Fread_variable): Callers changed.
13422
13423 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13424
13425 * xdisp.c (set_cursor_from_row): If the display string appears in
13426 the buffer at position that is closer to point than the position
13427 after the display string, display the cursor on the first glyph of
13428 the display string. Fixes cursor display when a 'display' text
13429 property immediately follows invisible text. (Bug#11094)
13430
13431 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13432
13433 composite.c: use 'double' consistently
13434 * composite.c (get_composition_id): Use 'double' consistently
13435 instead of converting 'float' to 'double' and vice versa; this is
13436 easier to understand and avoids a GCC warning.
13437
13438 2012-04-09 Glenn Morris <rgm@gnu.org>
13439
13440 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13441 preparation for dumping it with emacs. (Bug#4789)
13442 (leimdir): New variable.
13443 ($(leimdir)/leim-list.el): New rule.
13444 (emacs$(EXEEXT)): Depend on leim-list.el.
13445
13446 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13447 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13448 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13449
13450 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13451
13452 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13453 proper alignment.
13454
13455 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13456
13457 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13458 Remove unused local variable.
13459
13460 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13461
13462 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13463 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13464 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13465 objects, as mark_maybe_pointer will catch them otherwise.
13466 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13467 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13468
13469 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13470
13471 Fix typo that broke non-Windows builds.
13472 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13473
13474 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13475
13476 Support building on MS-Windows with libxml2.
13477
13478 * makefile.w32-in (OBJ2): Add xml.$(O).
13479 (GLOBAL_SOURCES): Add xml.c.
13480 ($(BLD)/xml.$(O)): New dependency list.
13481
13482 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13483 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13484 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13485 [!WINDOWSNT]: New macros.
13486 (init_libxml2_functions, libxml2_loaded_p): New functions.
13487 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13488 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13489 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13490 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13491 linked in).
13492 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13493 Call init_libxml2_functions before calling libxml2 functions.
13494 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13495
13496 * emacs.c: Don't include libxml/parser.h.
13497 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13498 xmlCleanupParser directly.
13499
13500 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13501
13502 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13503
13504 * indent.c (Fvertical_motion): If there is a display string at
13505 point, use it.vpos to compute how many lines to backtrack after
13506 move_it_to point. (Bug#11133)
13507
13508 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13509
13510 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13511 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13512 about subtle differences between FETCH_CHAR* and STRING_CHAR*
13513 macros related to unification of CJK characters. For the details,
13514 see the discussion following the message here:
13515 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
13516
13517 2012-04-04 Chong Yidong <cyd@gnu.org>
13518
13519 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13520
13521 2012-04-01 Eli Zaretskii <eliz@gnu.org>
13522
13523 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
13524 instead of alloca. (Bug#11138)
13525
13526 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13527
13528 * w32menu.c (is_simple_dialog): Properly check lisp types.
13529 (Bug#11141)
13530
13531 2012-03-31 Eli Zaretskii <eliz@gnu.org>
13532
13533 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
13534 position we get to after a call to move_it_to fails the
13535 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
13536 only if we wind up in a string from display property. (Bug#11063)
13537
13538 * window.c (Fdelete_other_windows_internal): Invalidate the row
13539 and column information about mouse highlight, so that redisplay
13540 restores it after reallocating the glyph matrices. (Bug#7464)
13541
13542 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
13543 string comes from a `display' text property, use the buffer
13544 position of that property as if we actually saw that position in
13545 the row's glyphs.
13546 (move_it_by_lines): Remove the assertion that
13547 "it->current_x == 0 && it->hpos == 0" which can be legitimately
13548 violated when there's a before-string at the beginning of a line.
13549 (Bug#11063)
13550
13551 2012-03-30 Eli Zaretskii <eliz@gnu.org>
13552
13553 * xdisp.c (append_space_for_newline): If the default face was
13554 remapped, use the remapped face for the appended newline.
13555 (extend_face_to_end_of_line): Use the remapped default face for
13556 extending the face to the end of the line.
13557 (display_line): Call extend_face_to_end_of_line when the default
13558 face was remapped. (Bug#11068)
13559
13560 2012-03-29 Eli Zaretskii <eliz@gnu.org>
13561
13562 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13563
13564 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13565
13566 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13567
13568 2012-03-27 Glenn Morris <rgm@gnu.org>
13569
13570 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13571 Doc fixes.
13572
13573 2012-03-26 Kenichi Handa <handa@m17n.org>
13574
13575 * dispextern.h (struct glyph): Fix previous change. Change the
13576 bit length of glyphless.ch to 25 (Bug#11082).
13577
13578 2012-03-26 Chong Yidong <cyd@gnu.org>
13579
13580 * keyboard.c (Vselection_inhibit_update_commands): New variable.
13581 (command_loop_1): Use it; inhibit selection update for
13582 handle-select-window too (Bug#8996).
13583
13584 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13585
13586 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
13587
13588 2012-03-25 Kenichi Handa <handa@m17n.org>
13589
13590 * dispextern.h (struct glyph): Change the bit length of
13591 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
13592
13593 2012-03-24 Eli Zaretskii <eliz@gnu.org>
13594
13595 * s/ms-w32.h (tzname): Include time.h before redirecting to
13596 _tzname. Fixes the MSVC build. (Bug#9960)
13597
13598 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13599
13600 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13601 characters.
13602
13603 * xterm.c (XTread_socket): Only modify handling_signal if
13604 !SYNC_INPUT. (Bug#11080)
13605
13606 2012-03-23 Eli Zaretskii <eliz@gnu.org>
13607
13608 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
13609 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
13610 when fetching a multibyte character consumes more bytes than
13611 CHAR_BYTES returns, due to unification of CJK characters in
13612 string_char. (Bug#11073)
13613
13614 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
13615
13616 * process.c (wait_reading_process_output): Handle pty disconnect
13617 by refraining from sending oneself a SIGCHLD (bug#10933).
13618
13619 2012-03-22 Chong Yidong <cyd@gnu.org>
13620
13621 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13622
13623 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
13624 Mark string as coming from a prefix property.
13625 (handle_face_prop): Use default face for prefix strings (Bug#4281).
13626 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
13627
13628 2012-03-21 Chong Yidong <cyd@gnu.org>
13629
13630 * xfaces.c (Vface_remapping_alist): Doc fix.
13631
13632 2012-03-20 Eli Zaretskii <eliz@gnu.org>
13633
13634 * w32proc.c (Fw32_set_console_codepage)
13635 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13636 Doc fixes.
13637
13638 2012-03-20 Chong Yidong <cyd@gnu.org>
13639
13640 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
13641 to reflect default non-nil value of redisplay-dont-pause.
13642
13643 2012-03-19 Kenichi Handa <handa@m17n.org>
13644
13645 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
13646 it fit in a valid range (Bug#11003).
13647
13648 2012-03-18 Eli Zaretskii <eliz@gnu.org>
13649
13650 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
13651 that is not from display property, accept the row as a "cursor
13652 row" if one of the string's character has a non-nil `cursor'
13653 property. Fixes cursor positioning when there are newlines in
13654 overlay strings, e.g. in icomplete.el. (Bug#11035)
13655
13656 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13657
13658 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13659
13660 2012-03-12 Chong Yidong <cyd@gnu.org>
13661
13662 * eval.c (inhibit_lisp_code): Rename from
13663 inhibit_window_configuration_change_hook; move from window.c.
13664
13665 * xfns.c (unwind_create_frame_1, Fx_create_frame):
13666 * window.c (run_window_configuration_change_hook)
13667 (syms_of_window): Callers changed.
13668
13669 2012-03-11 Chong Yidong <cyd@gnu.org>
13670
13671 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13672
13673 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13674
13675 2012-03-10 Chong Yidong <cyd@gnu.org>
13676
13677 * frame.c (other_visible_frames): Don't assume the selected frame
13678 is visible (Bug#10955).
13679
13680 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13681
13682 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13683
13684 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
13685
13686 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
13687 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
13688 zero (Bug#10954).
13689
13690 2012-03-03 Glenn Morris <rgm@gnu.org>
13691
13692 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
13693
13694 2012-03-02 Eli Zaretskii <eliz@gnu.org>
13695
13696 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
13697 position past the first glyph_row that ends at ZV. (Bug#10902)
13698 (redisplay_window, next_element_from_string): Fix typos in
13699 comments.
13700 (redisplay_window): Pass to move_it_vertically the margin in
13701 pixels, not in screen lines.
13702
13703 2012-03-02 Glenn Morris <rgm@gnu.org>
13704
13705 * buffer.c (buffer-list-update-hook): Doc fix.
13706
13707 2012-02-29 Eli Zaretskii <eliz@gnu.org>
13708
13709 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
13710 push_it before setting up the iterator for the first overlay
13711 string, even if we have an empty string loaded.
13712 (next_overlay_string): If there's an empty string on the iterator
13713 stack, pop the stack. (Bug#10903)
13714
13715 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
13716
13717 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
13718 Suggested by Stefan Monnier in
13719 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
13720 * alloc.c (widen_to_Lisp_Object): New static function.
13721 (mark_memory): Also mark Lisp_Objects by fetching pointer words
13722 and widening them to Lisp_Objects. This would work even if
13723 USE_LSB_TAG is defined and wide integers are used, which might
13724 happen in a future version of Emacs.
13725
13726 2012-02-25 Chong Yidong <cyd@gnu.org>
13727
13728 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13729 Doc fix.
13730
13731 * xselect.c (Fx_selection_exists_p): Doc fix.
13732 (x_clipboard_manager_save_all): Print an informative message
13733 before saving to clipboard manager.
13734
13735 2012-02-24 Chong Yidong <cyd@gnu.org>
13736
13737 * keyboard.c (process_special_events): Handle all X selection
13738 requests in kbd_buffer, not just the next one (Bug#8869).
13739
13740 2012-02-23 Chong Yidong <cyd@gnu.org>
13741
13742 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
13743 call when setting menu-bar-lines and tool-bar-lines parameters.
13744 (unwind_create_frame_1): New helper function.
13745
13746 * window.c (inhibit_window_configuration_change_hook): New var.
13747 (run_window_configuration_change_hook): Obey it.
13748 (syms_of_window): Initialize it.
13749
13750 2012-02-22 Chong Yidong <cyd@gnu.org>
13751
13752 * xterm.c (x_draw_image_relief): Add missing type check for
13753 Vtool_bar_button_margin (Bug#10743).
13754
13755 2012-02-21 Chong Yidong <cyd@gnu.org>
13756
13757 * fileio.c (Vfile_name_handler_alist): Doc fix.
13758
13759 * buffer.c (Fget_file_buffer): Protect against invalid file
13760 handler return value.
13761
13762 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13763
13764 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13765 when computing $valmask.
13766
13767 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
13768 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
13769 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
13770 It's useless in that case, and it can cause problems on hosts
13771 that allocate halves of EMACS_INT values separately.
13772 Reported by Dan Horák. Diagnosed by Andreas Schwab in
13773 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
13774 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
13775 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
13776 it avoids undefined behavior on hosts where shifting right by more
13777 than the word width has undefined behavior.
13778
13779 2012-02-19 Chong Yidong <cyd@gnu.org>
13780
13781 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
13782 (Funhandled_file_name_directory, Ffile_name_as_directory)
13783 (Fdirectory_file_name, Fexpand_file_name)
13784 (Fsubstitute_in_file_name): Protect against invalid file handler
13785 return values (Bug#10845).
13786
13787 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13788
13789 * .gdbinit (pitx): Fix incorrect references to fields of the
13790 iterator stack.
13791
13792 2012-02-17 Chong Yidong <cyd@gnu.org>
13793
13794 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13795
13796 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
13797
13798 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
13799 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
13800
13801 2012-02-15 Chong Yidong <cyd@gnu.org>
13802
13803 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
13804 marked as special. Also, starting docstrings with * is obsolete.
13805
13806 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13807
13808 * gnutls.c (emacs_gnutls_write): Fix last change.
13809
13810 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13811
13812 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13813 send_process.
13814
13815 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13816
13817 * keymap.c (Fsingle_key_description): Handle char ranges.
13818
13819 2012-02-12 Chong Yidong <cyd@gnu.org>
13820
13821 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13822 as that creates a dangerous corner case.
13823
13824 * window.c (Fdelete_window_internal): Invalidate the mouse
13825 highlight (Bug#9904).
13826
13827 2012-02-12 Glenn Morris <rgm@gnu.org>
13828
13829 * xselect.c (Fx_own_selection_internal)
13830 (Fx_get_selection_internal, Fx_disown_selection_internal)
13831 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
13832 * nsselect.m (Fx_own_selection_internal)
13833 (Fx_disown_selection_internal, Fx_selection_exists_p)
13834 (Fx_selection_owner_p, Fx_get_selection_internal):
13835 Sync docs and argument specs with the xselect.c versions.
13836
13837 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13838
13839 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13840
13841 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13842
13843 * w32select.c (Fx_selection_exists_p): Sync doc string and
13844 argument list with xselect.c. (Bug#10783)
13845
13846 * w16select.c (Fx_selection_exists_p): Sync doc string and
13847 argument list with xselect.c. (Bug#10783)
13848
13849 2012-02-10 Glenn Morris <rgm@gnu.org>
13850
13851 * fns.c (Fsecure_hash): Doc fix.
13852
13853 2012-02-09 Kenichi Handa <handa@m17n.org>
13854
13855 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13856
13857 2012-02-07 Chong Yidong <cyd@gnu.org>
13858
13859 * buffer.c (Fbuffer_local_variables)
13860 (buffer_lisp_local_variables): Handle unbound vars correctly;
13861 don't let Qunbound leak into Lisp.
13862
13863 2012-02-07 Glenn Morris <rgm@gnu.org>
13864
13865 * image.c (Fimagemagick_types): Doc fix.
13866
13867 * image.c (imagemagick-render-type): Change it from a lisp object
13868 to an integer. Move the doc here from the lisp manual.
13869 Treat all values not equal to 0 the same.
13870
13871 2012-02-06 Chong Yidong <cyd@gnu.org>
13872
13873 * doc.c (store_function_docstring): Avoid applying docstring of
13874 alias to base function (Bug#2603).
13875
13876 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13877
13878 * .gdbinit (pp1, pv1): Remove redundant defines.
13879 (pr): Use pp.
13880
13881 2012-02-04 Chong Yidong <cyd@gnu.org>
13882
13883 * nsterm.m: Declare a global (Bug#10694).
13884
13885 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13886
13887 * w32.c (get_emacs_configuration_options):
13888 Include --enable-checking, if specified, in the return value.
13889
13890 2012-02-04 Martin Rudalics <rudalics@gmx.at>
13891
13892 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
13893 after rounding frame sizes. (Bug#9723)
13894
13895 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13896
13897 * keyboard.c (adjust_point_for_property): Don't position point
13898 before BEGV. (Bug#10696)
13899
13900 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
13901
13902 Handle overflow when computing char display width (Bug#9496).
13903 * character.c (char_width): Return EMACS_INT, not int.
13904 (char_width, c_string_width): Check for overflow when
13905 computing the width; this is possible now that individual
13906 characters can have unbounded width. Problem introduced
13907 by merge from Emacs 23 on 2012-01-19.
13908
13909 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
13910
13911 * dbusbind.c (Fdbus_register_method): Mention the return value
13912 :ignore in the docstring.
13913
13914 2012-02-02 Glenn Morris <rgm@gnu.org>
13915
13916 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13917
13918 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13919 Unconditionally set to t. (Bug#10673)
13920 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13921 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13922 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
13923
13924 2012-02-02 Kenichi Handa <handa@m17n.org>
13925
13926 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
13927 0, do not call append_composite_glyph.
13928
13929 2012-02-02 Kenichi Handa <handa@m17n.org>
13930
13931 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
13932 NULL (Bug#6988).
13933 (x_produce_glyphs): If the component of a composition is a null
13934 string, set it->pixel_width to 1 to avoid zero-width glyph.
13935
13936 2012-02-01 Eli Zaretskii <eliz@gnu.org>
13937
13938 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
13939 first 2 arguments are identical. This makes inserting large
13940 output from a subprocess an order of magnitude faster on
13941 MS-Windows, where all sbrk'ed memory is always contiguous.
13942
13943 2012-01-31 Glenn Morris <rgm@gnu.org>
13944
13945 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13946 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13947 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13948
13949 2012-01-29 Glenn Morris <rgm@gnu.org>
13950
13951 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13952
13953 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13954
13955 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13956
13957 2012-01-28 Chong Yidong <cyd@gnu.org>
13958
13959 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13960
13961 2012-01-26 Chong Yidong <cyd@gnu.org>
13962
13963 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13964
13965 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13966 repeat counts (Bug#10507).
13967
13968 2012-01-26 Glenn Morris <rgm@gnu.org>
13969
13970 * lread.c (syms_of_lread): Doc fix.
13971
13972 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
13973
13974 * coding.c (encode_designation_at_bol): Change return value to
13975 EMACS_INT.
13976
13977 2012-01-25 Chong Yidong <cyd@gnu.org>
13978
13979 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13980
13981 2012-01-21 Chong Yidong <cyd@gnu.org>
13982
13983 * floatfns.c (Fcopysign): Make the second argument non-optional,
13984 since nil is not allowed anyway.
13985
13986 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
13987
13988 * process.c (read_process_output): Use p instead of XPROCESS (proc).
13989 (send_process): Likewise.
13990
13991 2012-01-19 Martin Rudalics <rudalics@gmx.at>
13992
13993 * window.c (save_window_save, Fcurrent_window_configuration)
13994 (Vwindow_persistent_parameters): Do not use Qstate.
13995 Rewrite doc-strings.
13996
13997 2012-01-19 Kenichi Handa <handa@m17n.org>
13998
13999 * character.c (char_width): New function.
14000 (Fchar_width, c_string_width, lisp_string_width):
14001 Use char_width (Bug#9496).
14002
14003 2012-01-16 Martin Rudalics <rudalics@gmx.at>
14004
14005 * window.c (Vwindow_persistent_parameters): New variable.
14006 (Fset_window_configuration, save_window_save): Handle persistent
14007 window parameters.
14008
14009 2012-01-14 Eli Zaretskii <eliz@gnu.org>
14010
14011 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
14012 thrashing the stack of the thread. (Bug#9087)
14013
14014 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
14015
14016 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
14017
14018 2012-01-11 Eli Zaretskii <eliz@gnu.org>
14019
14020 * xdisp.c (rows_from_pos_range): Handle the case where the
14021 highlight ends on a newline. (Bug#10464)
14022 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
14023 he end column for display of highlight that ends on a newline
14024 before a R2L line.
14025
14026 2012-01-11 Glenn Morris <rgm@gnu.org>
14027
14028 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
14029 from load-path also when installation-directory is nil. (Bug#10208)
14030
14031 2012-01-10 Glenn Morris <rgm@gnu.org>
14032
14033 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
14034
14035 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
14036 Update template values to be closer to their typical values these days.
14037
14038 2012-01-09 Eli Zaretskii <eliz@gnu.org>
14039
14040 * xdisp.c (rows_from_pos_range): Accept additional argument
14041 DISP_STRING, and accept any glyph in a row whose object is that
14042 string as eligible for mouse highlight. Fixes mouse highlight of
14043 display strings from overlays. (Bug#10464)
14044
14045 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
14046
14047 emacs: fix an auto-save permissions race condition (Bug#10400)
14048 * fileio.c (auto_saving_dir_umask): New static var.
14049 (Fmake_directory_internal): Use it.
14050 (do_auto_save_make_dir): Set it, instead of invoking chmod after
14051 creating the directory. The old code temporarily assigns
14052 too-generous permissions to the directory.
14053 (do_auto_save_eh): Clear it.
14054 (Fdo_auto_save): Catch all errors, not just file errors, so
14055 that the var is always cleared.
14056
14057 2012-01-07 Eli Zaretskii <eliz@gnu.org>
14058
14059 * search.c (scan_buffer): Pass character positions to
14060 know_region_cache, not byte positions. (Bug#6540)
14061
14062 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
14063
14064 * w32.c (sys_rename): Report EXDEV when rename of a directory
14065 fails because the target is on another logical disk. (Bug#10284)
14066
14067 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
14068
14069 * xterm.c (x_embed_request_focus): New function.
14070
14071 * xterm.h: Add prototype.
14072
14073 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
14074
14075 2012-01-05 Glenn Morris <rgm@gnu.org>
14076
14077 * emacs.c (emacs_copyright): Update short copyright year to 2012.
14078
14079 2012-01-01 Eli Zaretskii <eliz@gnu.org>
14080
14081 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
14082 Load gnutls_transport_set_lowat only if GnuTLS version is below
14083 2.11.1.
14084 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
14085 GnuTLS versions below 2.11.1.
14086
14087 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
14088
14089 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
14090 to the doc string advising against its use for altering the way
14091 windows are scrolled.
14092
14093 2011-12-28 Kenichi Handa <handa@m17n.org>
14094
14095 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
14096 coding-system ASCII compatible only when it does not produce BOM
14097 on encoding (Bug#10383).
14098
14099 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
14100
14101 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
14102 can scroll.
14103 (create_and_show_popup_menu): Always use menu_position_func for
14104 Gtk3 (Bug#10361).
14105
14106 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
14107
14108 * callint.c (Fcall_interactively): Don't truncate prompt string.
14109
14110 2011-12-23 Eli Zaretskii <eliz@gnu.org>
14111
14112 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
14113 property that ends at ZV, so that the bidi iteration could be
14114 resumed from there (after widening). (Bug#10360)
14115
14116 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
14117
14118 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
14119
14120 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
14121
14122 * nsterm.m (x_free_frame_resources):
14123 Release f->output_data.ns->miniimage.
14124 (ns_index_color): Fix indentation. Do not retain
14125 color_table->colors[i].
14126
14127 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
14128 before returning.
14129
14130 * nsfns.m (x_set_background_color): Assign return value from
14131 ns_index_color to face-background instead of NSColor*.
14132 (ns_implicitly_set_icon_type): Fix indentation.
14133 Change assignment in for loop to comparison.
14134
14135 * emacs.c (ns_pool): New variable.
14136 (main): Assign ns_pool.
14137 (Fkill_emacs): Call ns_release_autorelease_pool.
14138
14139 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
14140 autorelease fdesc, release fdAttrs and tdict.
14141 (ns_get_covering_families): Release charset.
14142 (ns_findfonts): Release NSFontDescriptor created with new.
14143 (ns_uni_to_glyphs): Fix indentation.
14144 (setString): Release attrStr before assigning new value.
14145
14146 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14147
14148 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
14149 and NS_IMPL_COCOA.
14150 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
14151 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
14152
14153 2011-12-18 David Reitter <reitter@cmu.edu>
14154
14155 * nsterm.m (ns_term_init): Subscribe for notifications
14156 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
14157 to method trackingNotification in EmacsMenu.
14158
14159 * nsmenu.m (trackingMenu): New variable.
14160 (trackingNotification): New method (from Aquamacs).
14161 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
14162 from Aquamacs (Bug#7030).
14163
14164 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14165
14166 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
14167 (symbol_to_nsstring): Fix indentation.
14168 (ns_symbol_to_pb): New function.
14169 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
14170 (Fns_rotate_cut_buffers_internal): Remove.
14171 (Fns_store_selection_internal): Rename from
14172 Fns_store_cut_buffer_internal.
14173 (ns_get_foreign_selection, Fx_own_selection_internal)
14174 (Fx_disown_selection_internal, Fx_selection_exists_p)
14175 (Fns_get_selection_internal, Fns_store_selection_internal):
14176 Use ns_symbol_to_pb and check if return value is nil.
14177 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
14178 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
14179 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
14180 renamed to Sns_store_selection_internal.
14181 (ns_handle_selection_request): Move code to Fx_own_selection_internal
14182 and remove this function.
14183 (ns_handle_selection_clear): Remove, never used.
14184 (Fx_own_selection_internal): Move code from ns_handle_selection_request
14185 here.
14186
14187 2011-12-17 Ken Brown <kbrown@cornell.edu>
14188
14189 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
14190 GID is unknown (Bug#10257).
14191
14192 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
14193
14194 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
14195 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
14196 which caused a build failure on GNU/Linux IA-64. This problem was
14197 introduced by my 2011-10-07 patch.
14198
14199 2011-12-15 Juri Linkov <juri@jurta.org>
14200
14201 * image.c (imagemagick_error): New function. (Bug#10112)
14202 (imagemagick_load_image): Comment out `MagickSetResolution' call.
14203 Use `imagemagick_error' where ImageMagick functions return
14204 `MagickFalse'.
14205 (Fimagemagick_types): Add `Fnreverse' to return the list in the
14206 proper order.
14207
14208 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14209
14210 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
14211 fill background (Bug#8992).
14212
14213 2011-12-13 Martin Rudalics <rudalics@gmx.at>
14214
14215 * window.c (Vwindow_combination_resize)
14216 (Vwindow_combination_limit): Use t instead of non-nil in
14217 doc-strings.
14218 (Vrecenter_redisplay): Add first sentence of doc-string on
14219 separate line.
14220 (Frecenter): Fix doc-string typo.
14221
14222 2011-12-11 Kenichi Handa <handa@m17n.org>
14223
14224 * coding.c (Funencodable_char_position): Pay attention to the
14225 buffer text relocation (Bug#9389).
14226
14227 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14228
14229 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
14230 gtk_init (Bug#10100).
14231
14232 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14233
14234 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
14235 IT->string is nil. (Bug#10263)
14236
14237 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14238
14239 * nsterm.h (x_free_frame_resources): Declare.
14240
14241 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
14242 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
14243
14244 * nsterm.h (ns_get_defaults_value): Declare.
14245
14246 * nsterm.m (ns_default): Call ns_get_defaults_value.
14247
14248 2011-12-09 Eli Zaretskii <eliz@gnu.org>
14249
14250 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
14251 (Bug#10170)
14252
14253 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14254
14255 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
14256 that where the value of an _OBJC_* symbol points to is in the .bss
14257 section (Bug#10240).
14258
14259 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14260
14261 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
14262 after the loop to call ccl_driver at least once (Bug#8619).
14263
14264 2011-12-08 Kenichi Handa <handa@m17n.org>
14265
14266 * ftfont.c (get_adstyle_property): Fix previous change
14267 (Bug#10233).
14268
14269 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
14270
14271 * w32.c (init_environment): If no_site_lisp, remove site-lisp
14272 dirs from the default value of EMACSLOADPATH (bug#10208).
14273
14274 2011-12-07 Glenn Morris <rgm@gnu.org>
14275
14276 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
14277 installation and source directories as well. (Bug#10208)
14278
14279 2011-12-06 Chong Yidong <cyd@gnu.org>
14280
14281 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
14282
14283 2011-12-06 Glenn Morris <rgm@gnu.org>
14284
14285 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
14286 as an error, not just -1. (Bug#10217)
14287
14288 2011-12-05 Chong Yidong <cyd@gnu.org>
14289
14290 * keyboard.c (process_special_events): New function.
14291 (swallow_events, Finput_pending_p): Use it (Bug#10195).
14292
14293 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
14294
14295 * coding.c (encode_designation_at_bol): Don't use uninitialized
14296 local variable (Bug#9318).
14297
14298 2011-12-05 Kenichi Handa <handa@m17n.org>
14299
14300 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
14301 return Qnil (Bug#8046, Bug#10193).
14302
14303 2011-12-05 Kenichi Handa <handa@m17n.org>
14304
14305 * coding.c (encode_designation_at_bol): New args charbuf_end and
14306 dst. Return the number of produced bytes. Callers changed.
14307 (coding_set_source): Return how many bytes coding->source was
14308 relocated.
14309 (coding_set_destination): Return how many bytes
14310 coding->destination was relocated.
14311 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
14312 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
14313
14314 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14315
14316 * coding.c (CODING_CHAR_CHARSET_P): New macro.
14317 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
14318 macro (Bug#9318).
14319
14320 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
14321
14322 The following changes are to fix Bug#9318.
14323
14324 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
14325 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
14326 (encode_coding_iso_2022, encode_coding_sjis)
14327 (encode_coding_big5, encode_coding_charset): Use the above macros.
14328
14329 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
14330
14331 * lisp.h (process_quit_flag): Fix external declaration.
14332
14333 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
14334
14335 Don't macro-inline non-performance-critical code.
14336 * eval.c (process_quit_flag): New function.
14337 * lisp.h (QUIT): Use it.
14338
14339 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
14340
14341 * nsfns.m (get_geometry_from_preferences): New function.
14342 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
14343
14344 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
14345
14346 * emacs.c (Qkill_emacs): Define.
14347 (syms_of_emacs): Initialize it.
14348 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
14349 Qquit_flag to `kill-emacs' instead.
14350 (quit_throw_to_read_char): Add parameter `from_signal'.
14351 All callers changed. Call Fkill_emacs if requested and safe.
14352 * lisp.h (QUIT): Call Fkill_emacs if requested.
14353
14354 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
14355
14356 * widget.c (update_wm_hints): Return if wmshell is null.
14357 (widget_update_wm_size_hints): New function.
14358
14359 * widget.h (widget_update_wm_size_hints): Declare.
14360
14361 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
14362 widget_update_wm_size_hints (Bug#10104).
14363
14364 2011-12-03 Eli Zaretskii <eliz@gnu.org>
14365
14366 * xdisp.c (handle_invisible_prop): If the invisible text ends just
14367 before a newline, prepare the bidi iterator for consuming the
14368 newline, and keep the current paragraph direction. (Bug#10183)
14369 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
14370
14371 2011-12-02 Juri Linkov <juri@jurta.org>
14372
14373 * search.c (Fword_search_regexp): New Lisp function created from
14374 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
14375 (Fword_search_backward, Fword_search_forward)
14376 (Fword_search_backward_lax, Fword_search_forward_lax):
14377 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
14378 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
14379
14380 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
14381
14382 * fileio.c (Finsert_file_contents): Move after-change-function call
14383 to before the "handled:" label, since all "goto handled" appear in
14384 cases where the *-change-functions have already been properly called
14385 (bug#10117).
14386
14387 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
14388
14389 * keyboard.c (interrupt_signal): Don't call kill-emacs when
14390 waiting for input. (Bug#10169)
14391
14392 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14393
14394 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
14395 verifies glyph row's hash code--we have just reallocated the
14396 glyphs, so their contents can be complete garbage. (Bug#10164)
14397
14398 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14399
14400 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14401
14402 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14403
14404 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
14405 attributes are tested _before_ calling verify_row_hash, to protect
14406 against GCC re-ordering of the tests. (Bug#10164)
14407
14408 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
14409
14410 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
14411
14412 * xterm.c (handle_one_xevent): Only set async_visible and friends
14413 if net_wm_state_hidden_seen is non-zero (Bug#10002)
14414 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
14415 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14416
14417 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14418
14419 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14420 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14421 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14422 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14423 All uses changed to use GCPRO1 etc.
14424 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14425 Revert to old implementation (i.e., before 2011-03-11).
14426
14427 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14428
14429 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14430 of scroll runs so as to avoid assigning disabled bogus rows and
14431 unnecessary graphics copy operations.
14432
14433 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14434
14435 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14436 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14437 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14438 (malloc, free, realloc, calloc): Redirect to e_* only when
14439 compiling Emacs.
14440
14441 * lisp.h (GCTYPEBITS): Move before first use.
14442 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14443 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14444 this macro definition.
14445
14446 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14447 _MSC_VER.
14448
14449 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14450
14451 * gtkutil.c (xg_create_frame_widgets):
14452 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14453 present with Gtk+ 2.0.
14454
14455 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14456
14457 * fileio.c (Finsert_file_contents): Undo previous change; see
14458 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14459
14460 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14461
14462 Rename locals to avoid shadowing.
14463 * fileio.c (Finsert_file_contents):
14464 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14465 * process.c (wait_reading_process_output):
14466 Rename inner 'proc' to 'p' to avoid shadowing.
14467 Indent for consistency with usual Emacs style.
14468
14469 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14470
14471 * xdisp.c (redisplay_window): If cursor row is not fully visible
14472 after recentering, and scroll-conservatively is set to a large
14473 number, scroll window by a few more lines to make the cursor fully
14474 visible and out of scroll-margin. (Bug#10105)
14475 (start_display): Don't move to the next line if the display should
14476 start at a newline that is part of a display vector or an overlay
14477 string. (Bug#10119)
14478
14479 2011-11-24 Juri Linkov <juri@jurta.org>
14480
14481 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14482 after the `MagickPingImage' call. (Bug#10112)
14483
14484 2011-11-23 Chong Yidong <cyd@gnu.org>
14485
14486 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14487
14488 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14489
14490 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14491 making another buffer current. (Bug#10114)
14492
14493 2011-11-23 Glenn Morris <rgm@gnu.org>
14494
14495 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14496
14497 2011-11-23 Chong Yidong <cyd@gnu.org>
14498
14499 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14500 using it (Bug#5984).
14501
14502 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14503
14504 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14505 and header-lines, as they don't have one computed for them.
14506 (Bug#10098)
14507
14508 * .gdbinit (prow): Make displayed values more self-explaining.
14509 Add row's hash code.
14510
14511 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14512
14513 * process.c (wait_reading_process_output): Fix asynchrounous
14514 GnuTLS socket handling on some versions of the GnuTLS library.
14515 (wait_reading_process_output): Add comment and URL.
14516
14517 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14518
14519 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14520
14521 2011-11-21 Chong Yidong <cyd@gnu.org>
14522
14523 * window.c (Fnext_window, Fprevious_window): Doc fix.
14524
14525 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14526
14527 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14528
14529 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14530
14531 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14532
14533 2011-11-20 Martin Rudalics <rudalics@gmx.at>
14534
14535 * window.c (Fset_window_combination_limit): Rename argument
14536 STATUS to LIMIT.
14537 (Vwindow_combination_limit): Remove "status" from doc-string.
14538
14539 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14540
14541 * m/ibms390.h: Remove.
14542 * m/ibms390x.h: Don't include "ibms390.h".
14543
14544 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14545
14546 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
14547 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14548
14549 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14550
14551 * casetab.c (Fset_case_table):
14552 * charset.c (Fcharset_after): Fix typos.
14553
14554 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
14555
14556 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
14557 Otherwise, valgrind does not work on some platforms.
14558 Problem reported by Andreas Schwab in
14559 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
14560 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
14561 is set, removing the need for VIRT_ADDRESS_VARIES.
14562 (PURE_P): Use a more-efficient implementation that needs just one
14563 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
14564 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
14565 to 4 (xorl, subq, cmpq, setbe).
14566 * alloc.c (pure): Always extern now, since that's the
14567 VIRT_ADDR_VARIES behavior.
14568 (PURE_POINTER_P): Use a single comparison, not two, for
14569 consistency with the new puresize.h.
14570 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
14571 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
14572 Remove VIRT_ADDR_VARIES no longer needed.
14573
14574 2011-11-19 Eli Zaretskii <eliz@gnu.org>
14575
14576 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
14577 (erase_phys_cursor, update_window_cursor, show_mouse_face)
14578 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
14579 behave as if the cursor position were at the window margin.
14580
14581 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
14582 and the cursor position is out of bounds, behave as if the cursor
14583 position were at the window margin. (Bug#10075)
14584
14585 2011-11-18 Chong Yidong <cyd@gnu.org>
14586
14587 * window.c (Fwindow_combination_limit): Make first argument
14588 non-optional, since it is meaningless for live windows like the
14589 selected window.
14590
14591 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14592
14593 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14594
14595 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14596
14597 * intervals.c: Fix grafting over the whole buffer (bug#10071).
14598 (graft_intervals_into_buffer): Simplify.
14599
14600 2011-11-18 Eli Zaretskii <eliz@gnu.org>
14601
14602 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
14603 hash values of the two rows.
14604 (copy_row_except_pointers): Preserve the used[] arrays and the
14605 hash values of the two rows. (Bug#10035)
14606 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
14607
14608 * xdisp.c (row_hash): New function, body extracted from
14609 compute_line_metrics.
14610 (compute_line_metrics): Call row_hash, instead of computing the
14611 hash code inline.
14612
14613 * dispnew.c (verify_row_hash): Call row_hash for computing the
14614 hash code of a row, instead of duplicating code from xdisp.c.
14615
14616 * dispextern.h (row_hash): Add prototype.
14617
14618 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
14619
14620 * frame.c (delete_frame): Don't delete the terminal when the last
14621 X frame is closed if emacs is built with GTK toolkit.
14622
14623 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
14624
14625 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14626
14627 2011-11-17 Martin Rudalics <rudalics@gmx.at>
14628
14629 * window.c (Vwindow_splits): Rename to
14630 Vwindow_combination_resize. Suggested by Juri Linkov.
14631 (Fsplit_window_internal): Use Vwindow_combination_resize instead
14632 of Vwindow_splits.
14633
14634 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
14635
14636 * nsfns.m (Fns_font_name):
14637 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
14638
14639 2011-11-16 Martin Rudalics <rudalics@gmx.at>
14640
14641 * window.h (window): Rename slot "nest" to "combination_limit".
14642 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
14643 (Fset_window_nest): Rename to Fset_window_combination_limit.
14644 (Vwindow_nest): Rename to Vwindow_combination_limit.
14645 (recombine_windows, make_parent_window, make_window)
14646 (Fsplit_window_internal, saved_window)
14647 (Fset_window_configuration, save_window_save): Rename all
14648 occurrences of window_nest to window_combination_limit.
14649
14650 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
14651
14652 * image.c (imagemagick_load_image): Fix typo.
14653
14654 2011-11-14 Eli Zaretskii <eliz@gnu.org>
14655
14656 * xdisp.c (display_line): Move the call to
14657 highlight_trailing_whitespace before the call to
14658 compute_line_metrics, since the latter needs to see the final
14659 faces of all the glyphs to compute ROW's hash value.
14660 Fixes assertion violations in row_equal_p. (Bug#10035)
14661
14662 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
14663
14664 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
14665 just return (bug#10044).
14666
14667 2011-11-12 Eli Zaretskii <eliz@gnu.org>
14668
14669 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
14670 with user-defined heap size. Bump the default size of the temacs
14671 heap to 27MB, to avoid memory warning when running temacs.
14672 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
14673
14674 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14675 current_matrix and desired_matrix. (Bug#9990)
14676 (verify_row_hash) [XASSERTS]: New function.
14677 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
14678 that the hash value of glyph rows is correct.
14679
14680 2011-11-12 Martin Rudalics <rudalics@gmx.at>
14681
14682 * window.h (window): Remove splits slot.
14683 * window.c (Fwindow_splits, Fset_window_splits): Remove.
14684 (Fdelete_other_windows_internal, make_parent_window)
14685 (make_window, Fsplit_window_internal, Fdelete_window_internal)
14686 (Fset_window_configuration, save_window_save): Don't deal with
14687 split status of windows.
14688 (saved_window): Remove splits slot.
14689 (Vwindow_splits): Rewrite doc-string.
14690
14691 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
14692
14693 * xfns.c (unwind_create_frame):
14694 * nsfns.m (unwind_create_frame):
14695 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
14696 Vframe_list (Bug#9999).
14697
14698 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14699
14700 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
14701
14702 2011-11-11 Kenichi Handa <handa@m17n.org>
14703
14704 * callproc.c (Fcall_process): Set the member dst_multibyte of
14705 process_coding.
14706
14707 2011-11-11 Johan Bockgård <bojohan@gnu.org>
14708
14709 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
14710 avoid a crash (bug#9496).
14711
14712 2011-11-09 Chong Yidong <cyd@gnu.org>
14713
14714 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
14715 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
14716
14717 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14718
14719 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
14720
14721 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14722
14723 Avoid some portability problems by eschewing 'extern inline' functions.
14724 The trivial performance wins aren't worth the portability hassles; see
14725 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
14726 et seq.
14727 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14728 (window_box_width, window_box_left, window_box_left_offset)
14729 (window_box_right, window_box_right_offset): Undo previous change,
14730 by removing the "extern"s.
14731 * intervals.c (adjust_intervals_for_insertion)
14732 (adjust_intervals_for_deletion): Undo previous change,
14733 making these static again.
14734 (offset_intervals, temp_set_point_both, temp_set_point)
14735 (copy_intervals_to_string): No longer inline.
14736 * xdisp.c (window_text_bottom_y, window_box_width)
14737 (window_box_height, window_box_left_offset)
14738 (window_box_right_offset, window_box_left, window_box_right)
14739 (window_box): No longer inline.
14740
14741 2011-11-08 Chong Yidong <cyd@gnu.org>
14742
14743 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
14744 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14745 Signal an error if not a live window.
14746 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14747 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14748
14749 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
14750
14751 * lisp.h (syms_of_abbrev): Remove declaration.
14752 Reported by CHENG Gao <chenggao@royau.me>.
14753
14754 2011-11-07 Eli Zaretskii <eliz@gnu.org>
14755
14756 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
14757 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
14758 of temacs in GUI mode.
14759
14760 2011-11-07 Martin Rudalics <rudalics@gmx.at>
14761
14762 * window.h: Declare delete_all_child_windows instead of
14763 delete_all_subwindows.
14764 * window.c (Fwindow_nest, Fset_window_nest)
14765 (Fset_window_new_total, Fset_window_new_normal)
14766 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
14767 (delete_all_subwindows): Rename to delete_all_child_windows.
14768 (Fdelete_other_windows_internal, Fset_window_configuration):
14769 Call delete_all_child_windows instead of delete_all_subwindows.
14770 * frame.c (delete_frame): Call delete_all_child_windows instead
14771 of delete_all_subwindows.
14772
14773 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
14774
14775 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
14776 This is also needed for porting to any host where GC_MARK_STACK is
14777 not GC_MAKE_GCPROS_NOOPS.
14778 (which_symbols): Use it.
14779
14780 2011-11-07 Kenichi Handa <handa@m17n.org>
14781
14782 * coding.c (coding_set_destination): Check coding->src_pos only
14783 when coding->src_object is a buffer (bug#9910).
14784
14785 * process.c (send_process): Set the member src_multibyte of coding
14786 to 0 (bug#9911) when sending a unibyte text.
14787
14788 * callproc.c (Fcall_process): Set the member src_multibyte of
14789 process_coding to 0 (bug#9912).
14790
14791 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14792
14793 * xmenu.c (cleanup_widget_value_tree): New function.
14794 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
14795 calling free_menubar_widget_value_tree directly (Bug#9830).
14796
14797 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
14798
14799 Fix some portability problems with 'inline'.
14800 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14801 (window_box_width, window_box_left, window_box_left_offset)
14802 (window_box_right, window_box_right_offset): Declare extern.
14803 Otherwise, these inline functions do not conform to C99 and
14804 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
14805 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
14806 * intervals.c (adjust_intervals_for_insertion)
14807 (adjust_intervals_for_deletion): Now extern, because otherwise the
14808 extern inline functions 'offset_intervals' couldn't refer to it.
14809 (static_offset_intervals): Remove.
14810 (offset_intervals): Rewrite using the old contents of
14811 static_offset_intervals. The old version didn't conform to C99
14812 because an extern inline function contained a reference to an
14813 identifier with static linkage.
14814
14815 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14816
14817 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14818 GC.
14819
14820 2011-11-06 Eli Zaretskii <eliz@gnu.org>
14821
14822 * xdisp.c (init_iterator, reseat_to_string): Don't set the
14823 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
14824 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
14825 return Qleft_to_right.
14826
14827 2011-11-06 Chong Yidong <cyd@gnu.org>
14828
14829 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
14830 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
14831 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
14832 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
14833 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
14834 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
14835 (Fwindow_vscroll): Doc fix.
14836 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
14837 argument, since it makes no sense to pass a live window and for
14838 consistency with window-child.
14839
14840 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14841
14842 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14843 support MSVC.
14844
14845 2011-11-05 Jason Rumney <jasonr@gnu.org>
14846
14847 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
14848 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
14849 fonts (Bug#6029).
14850 (add_font_entity_to_list): Fix logic errors in mixed boolean and
14851 bitwise arithmetic preventing use of unicode-sip and non-truetype
14852 opentype fonts.
14853
14854 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14855
14856 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14857 "emacs"-only part.
14858
14859 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
14860 initialization code to keep similarity to xfns.c after changes
14861 from 2011-11-05.
14862
14863 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14864
14865 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
14866 (unwind_create_frame): New function (Bug#9943).
14867 (Fx_create_frame): Restructure code to be more similar to the one in
14868 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
14869 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
14870 Move terminal->reference_count++ just before making the frame official
14871 (Bug#9943).
14872
14873 * nsterm.m (x_free_frame_resources): New function.
14874 (x_destroy_window): Move code to x_free_frame_resources.
14875
14876 * xfns.c (unwind_create_frame): Fix comment.
14877 (Fx_create_frame, x_create_tip_frame):
14878 Move terminal->reference_count++ just before making the frame
14879 official. Move initialization of image_cache_refcount and
14880 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14881
14882 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14883
14884 Support MSVC build with newer versions of Visual Studio.
14885 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
14886 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
14887 nt/gmake.defs.
14888
14889 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
14890 which are not supported by MSVC.
14891 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
14892 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
14893 bitfields.
14894 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
14895 types in bitfields.
14896 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
14897
14898 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
14899
14900 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14901
14902 Support MSVC build with newer versions of Visual Studio.
14903 * w32.c: Don't include w32api.h for MSVC.
14904 (init_environment) [_MSC_VER]: Call sys_access, not _access.
14905
14906 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
14907 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
14908 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
14909 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
14910 e_* cousins.
14911 (alloca) [_MSC_VER]: Define to _alloca.
14912
14913 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
14914
14915 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
14916
14917 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14918
14919 * xdisp.c (note_mouse_highlight): If either of
14920 previous/next-single-property-change returns nil, treat that as
14921 the beginning or the end of the buffer. (Bug#9955)
14922
14923 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14924
14925 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
14926 label is not null (Bug#9951).
14927 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
14928 may be NULL.
14929
14930 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14931
14932 * window.c (Fwindow_body_size): Mention in the doc string that the
14933 return value is in frame's canonical units. (Bug#9949)
14934
14935 2011-11-03 Eli Zaretskii <eliz@gnu.org>
14936
14937 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14938
14939 * w32fns.c (unwind_create_frame): If needed, free the glyph
14940 matrices of the partially constructed frame. (Bug#9943)
14941 * xfns.c (unwind_create_frame): Likewise.
14942
14943 2011-11-01 Eli Zaretskii <eliz@gnu.org>
14944
14945 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
14946 Don't stop backward scan on the continuation glyph, even though
14947 its CHARPOS is positive.
14948 (mouse_face_from_buffer_pos, note_mouse_highlight):
14949 Rename cover_string to disp_string.
14950
14951 2011-11-01 Martin Rudalics <rudalics@gmx.at>
14952
14953 * window.c (temp_output_buffer_show): Don't use
14954 Vtemp_buffer_show_specifiers.
14955 (Vtemp_buffer_show_specifiers): Remove unused variable.
14956
14957 2011-10-30 Eli Zaretskii <eliz@gnu.org>
14958
14959 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
14960 past the beginning of the current glyph matrix.
14961
14962 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
14963
14964 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
14965 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
14966 HAVE_GTK3 (Bug#9869).
14967
14968 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
14969 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
14970
14971 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
14972
14973 * xterm.c: Declare x_handle_net_wm_state to return int.
14974 (handle_one_xevent): Check if we are iconified but don't have
14975 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
14976 (get_current_wm_state): Return non-zero if not hidden,
14977 check for _NET_WM_STATE_HIDDEN (Bug#9893).
14978 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
14979 (x_handle_net_wm_state): Return what get_current_wm_state returns.
14980 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
14981
14982 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
14983
14984 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
14985 so that this new function doesn't get optimized away by a
14986 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
14987
14988 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14989
14990 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14991
14992 2011-10-29 Eli Zaretskii <eliz@gnu.org>
14993
14994 Fix the `xbytecode' command.
14995 * .gdbinit (xprintbytestr): New command.
14996 (xwhichsymbols): Rename from `which'; all callers changed.
14997 (xbytecode): Print the byte-code string as well.
14998
14999 2011-10-29 Kim Storm <storm@cua.dk>
15000
15001 * alloc.c (which_symbols): New function.
15002
15003 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15004
15005 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
15006 line. (Bug#9903)
15007
15008 2011-10-29 Glenn Morris <rgm@gnu.org>
15009
15010 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
15011 Not clear what it was for, and it causes various bugs. (Bug#9839)
15012
15013 2011-10-28 Eli Zaretskii <eliz@gnu.org>
15014
15015 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
15016 possible random value that matches one of those tested as
15017 condition to clear the mouse face.
15018
15019 2011-10-28 Chong Yidong <cyd@gnu.org>
15020
15021 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
15022
15023 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15024
15025 * window.c (make_window): Initialize phys_cursor_on_p.
15026
15027 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15028
15029 * lisp.h (struct Lisp_Symbol): Update comments.
15030
15031 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
15032
15033 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
15034
15035 2011-10-28 Eli Zaretskii <eliz@gnu.org>
15036
15037 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
15038 <oslsachem@gmail.com> for helping to debug this.
15039
15040 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
15041 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
15042 (g_b_init_get_glyph_outline_w): New static variables.
15043 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
15044 (GetGlyphOutlineW_Proc): New typedefs.
15045 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
15046 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
15047 New functions.
15048 (w32font_open_internal, compute_metrics):
15049 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
15050 instead of calling the "wide" APIs directly.
15051
15052 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
15053
15054 * w32.h (syms_of_w32font): Add prototype.
15055
15056 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
15057
15058 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
15059 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
15060 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
15061 (Fmove_to_window_line): Doc fix.
15062
15063 2011-10-27 Chong Yidong <cyd@gnu.org>
15064
15065 * process.c (make_process): Set gnutls_state to NULL.
15066
15067 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
15068 non-NULL, regardless of GNUTLS_INITSTAGE.
15069 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
15070 an error. Set process slots as soon as we allocate them.
15071
15072 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
15073
15074 2011-10-27 Chong Yidong <cyd@gnu.org>
15075
15076 * gnutls.c (emacs_gnutls_deinit): New function.
15077 Deallocate credentials structures as well as calling gnutls_deinit.
15078 (Fgnutls_deinit, Fgnutls_boot): Use it.
15079
15080 * process.c (make_process): Initialize GnuTLS credentials to NULL.
15081 (deactivate_process): Call emacs_gnutls_deinit.
15082
15083 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
15084
15085 * image.c (x_create_x_image_and_pixmap):
15086 * w32.c (sys_rename, w32_delayed_load):
15087 * w32font.c (fill_in_logfont):
15088 * w32reg.c (x_get_string_resource): Silence compiler warnings.
15089
15090 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
15091
15092 * w32fns.c (w32_default_color_map): New function,
15093 extracted from Fw32_default_color_map.
15094 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
15095
15096 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
15097
15098 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
15099
15100 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
15101
15102 * keyboard.c (test_undefined): New function (bug#9751).
15103 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
15104
15105 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
15106
15107 * sysdep.c (init_sys_modes): Fix the check for the controlling
15108 terminal (Bug#6649).
15109
15110 2011-10-20 Eli Zaretskii <eliz@gnu.org>
15111
15112 * dispextern.h (struct bidi_it): New member next_en_type.
15113
15114 * bidi.c (bidi_line_init): Initialize the next_en_type member.
15115 (bidi_resolve_explicit_1): When next_en_pos is valid for the
15116 current character, check also for next_en_type being WEAK_EN.
15117 (bidi_resolve_weak): Don't enter the expensive loop if the current
15118 position is before next_en_pos. Record the bidi type of the first
15119 non-ET, non-BN character we find, in addition to its position.
15120 (bidi_level_of_next_char): Invalidate next_en_type when
15121 next_en_pos is over-stepped.
15122
15123 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
15124
15125 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
15126 * editfns.c: Rewrite current-time-zone so that it invokes
15127 the equivalent of (format-time-string "%Z") to get the time zone name.
15128 This fixes a bug when the time zone name contains characters that
15129 need converting from the system time locale to Emacs internal format.
15130 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
15131 that patch fixed format-time-string to do the conversion, but
15132 I forgot to fix current-time-zone.
15133 (format_time_string): New function, containing most of
15134 what Fformat_time_string used to contain.
15135 (Fformat_time_string): Rewrite in terms of format_time_string.
15136 This doesn't change this function's behavior.
15137 (current-time-zone): Rewrite to use format_time_string.
15138 This fixes the bug reported by Michael Schierl in
15139 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
15140 Jason Rumney's 2007-06-07 change worked around this bug, but
15141 didn't fix it.
15142 * systime.h (tzname, timezone): Remove no-longer-used declarations.
15143
15144 2011-10-19 Eli Zaretskii <eliz@gnu.org>
15145
15146 * xdisp.c (start_display): If the character at POS is displayed
15147 via a display vector, reset IT->current.dpvec_index to zero.
15148 (try_window_reusing_current_matrix): If a line ends in a display
15149 vector or the next line starts in a display vector, continue
15150 redrawing the window even though the character position of
15151 start_row was reached.
15152 (Bug#9771, part 2)
15153
15154 2011-10-18 Chong Yidong <cyd@gnu.org>
15155
15156 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
15157 with nobreak-char-display too.
15158
15159 2011-10-18 Eli Zaretskii <eliz@gnu.org>
15160
15161 Fix part 3 of bug#9771.
15162 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
15163 (bidi_resolve_neutral): Don't enter the expensive loop looking for
15164 non-neutral characters if the current character is a paragraph
15165 separator (a.k.a. Newline). This avoids running the same
15166 expensive loop twice, once when we consume the preceding newline
15167 and the other time when the line actually needs to be displayed.
15168 Avoid the loop when we see neutrals on the base embedding level
15169 following a character whose directionality is the same as the
15170 paragraph's. This avoids running the expensive loop when a line
15171 ends in a long sequence of neutrals, like control characters.
15172 Add assertion against STRONG_AL type. Slightly rearrange code
15173 that determines the type of a neutral given the first non-neutral
15174 that follows it.
15175 (bidi_level_of_next_char): Set next_en_pos to zero when
15176 invalidating its info.
15177
15178 2011-10-17 Eli Zaretskii <eliz@gnu.org>
15179
15180 * xdisp.c (push_display_prop): Determine whether to record string
15181 or buffer position by IT->string, not by IT->method. Allow
15182 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
15183 (move_it_vertically_backward): Don't look for character position
15184 immediately after the newline when in a continuation line.
15185 (Bug#9771, part 1)
15186
15187 2011-10-15 Martin Rudalics <rudalics@gmx.at>
15188
15189 * window.c (coordinates_in_window): Rewrite and delabelize
15190 vertical border check. (Bug#5357) (Bug#9618)
15191
15192 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
15193
15194 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
15195 errors in XSetWindowBorder (bug#9310).
15196
15197 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
15198
15199 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
15200 avoid crash when xmalloc overrun checking is enabled.
15201
15202 2011-10-13 Eli Zaretskii <eliz@gnu.org>
15203
15204 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
15205 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
15206 cursor motion with <left> and <right> arrow keys.
15207
15208 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
15209 some callers set that themselves.
15210
15211 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15212
15213 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
15214 display string and the previous row comes from the same string and
15215 is empty. (Bug#9739) (Bug#9738)
15216
15217 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15218
15219 * doc.c (get_doc_string): Encode file name (bug#9735).
15220
15221 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15222
15223 * bidi.c (bidi_level_of_next_char):
15224 * xdisp.c (get_visually_first_element): Remove old incorrect
15225 comments regarding the Unicode Line Separator character.
15226
15227 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
15228
15229 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
15230
15231 * alloc.c (Fgc_status): Do not access beyond zombies array
15232 boundary if nzombies > MAX_ZOMBIES.
15233 * alloc.c (dump_zombies): Add missing format specifier.
15234
15235 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15236
15237 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15238 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15239
15240 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15241 Some packages use them to denote characters with modifiers.
15242
15243 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
15244
15245 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
15246 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
15247 matching a pp-number. Rename parameter var to var1.
15248
15249 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15250
15251 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
15252
15253 2011-10-08 Glenn Morris <rgm@gnu.org>
15254
15255 * callint.c (Fcall_interactively): Give a more explicit error for the
15256 'c' case with a non-character input. (Bug#8479)
15257
15258 2011-10-08 Eli Zaretskii <eliz@gnu.org>
15259
15260 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
15261 lines.
15262 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
15263 lines that are hscrolled on the left.
15264
15265 * dispnew.c (buffer_posn_from_coords): Account for a possible
15266 presence of header-line. (Bug#4426)
15267
15268 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15269
15270 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
15271 Don't advertise functionality which we discourage or doesn't work.
15272
15273 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
15274
15275 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
15276 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
15277 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
15278 this makes Emacs dump core during garbage collection on rare
15279 occasions. sizeof is obviously inferior to offsetof here, so
15280 stick with offsetof.
15281 (GC_POINTER_ALIGNMENT): New macro.
15282 (mark_memory): Omit 3rd (offset) arg; caller changed.
15283 Don't assume EMACS_INT alignment is the same as pointer alignment.
15284
15285 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15286
15287 * keyboard.c (read_key_sequence_remapped): New var.
15288 (read_key_sequence): Compute remapping in the right buffer.
15289 (command_loop_1): Use read_key_sequence's remapping directly.
15290
15291 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15292
15293 * dired.c (file_name_completion): Don't expand file name.
15294 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
15295 before checking file name handler.
15296
15297 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
15298 they've been requested explicitly (bug#9591).
15299
15300 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
15301
15302 * keymap.c (Fsingle_key_description): Use make_specified_string
15303 instead of build_string to build string from push_key_description.
15304 (Bug#5193)
15305
15306 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15307
15308 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
15309 This fixes a Y2038 bug on 64-bit hosts.
15310 * buffer.c (reset_buffer):
15311 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
15312 (Fclear_buffer_auto_save_failure):
15313 Use 0, not -1, to represent an unset failure time, since time_t
15314 might not be signed.
15315
15316 Remove dependency on glibc malloc internals.
15317 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15318 Move back here from lisp.h, but with their new implementations.
15319 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15320 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
15321 * charset.c (charset_table_init): New static var.
15322 (syms_of_charset): Use it instead of xmalloc. This removes a
15323 dependency on glibc malloc internals. See Eli Zaretskii's comment in
15324 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
15325 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15326 Move back to alloc.c.
15327 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15328 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
15329
15330 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
15331
15332 * nsterm.m (windowDidResize): Call x_set_window_size only when
15333 ns_in_resize is true. Otherwise set pixelwidth/height and
15334 call change_frame_size (Bug#9628).
15335
15336 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15337
15338 Port --enable-checking=all to Fedora 14 x86-64.
15339 * charset.c (syms_of_charset): Also account for glibc malloc's
15340 internal overhead when calculating the initial malloc maximum.
15341
15342 Port --enable-checking=all to Fedora 14 x86.
15343 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15344 Move to lisp.h.
15345 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
15346 (overrun_check_realloc, overrun_check_free):
15347 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
15348 That way, xmalloc returns a properly-aligned pointer even if
15349 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
15350 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
15351 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
15352 into account when calculating the initial malloc maximum.
15353 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15354 Move here from alloc.c, so that charset.c can use it too.
15355 Properly align; the old code wasn't right for common 32-bit hosts
15356 when configured with --enable-checking=all.
15357 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15358 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
15359
15360 2011-09-29 Eli Zaretskii <eliz@gnu.org>
15361
15362 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
15363 use EDOM.
15364
15365 2011-09-28 Eli Zaretskii <eliz@gnu.org>
15366
15367 * xdisp.c (compute_display_string_end): If there's no display
15368 string at CHARPOS, return -1.
15369
15370 * bidi.c (bidi_fetch_char): When compute_display_string_end
15371 returns a negative value, treat the character as a normal
15372 character not covered by a display string. (Bug#9624)
15373
15374 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
15375
15376 * lread.c (Fread_from_string): Fix typo in docstring.
15377
15378 2011-09-27 Eli Zaretskii <eliz@gnu.org>
15379
15380 * xdisp.c (handle_invisible_prop): If invisible text ends on a
15381 newline, reseat the iterator instead of bidi-iterating there one
15382 character at a time. (Bug#9610)
15383 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
15384 TO_CHARPOS if the bidi iterator is at base embedding level.
15385
15386 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15387
15388 * lread.c (readevalloop): Use correct code for NBSP.
15389 (read1): Likewise. (Bug#9608)
15390
15391 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
15392
15393 * dbusbind.c (Fdbus_register_signal): When service is not
15394 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
15395
15396 2011-09-25 Glenn Morris <rgm@gnu.org>
15397
15398 * buffer.c (truncate-lines): Doc fix.
15399
15400 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
15401
15402 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
15403 (Fset_window_next_buffers): Doc fix.
15404
15405 2011-09-24 Glenn Morris <rgm@gnu.org>
15406
15407 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15408
15409 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15410
15411 Fix minor problems found by static checking.
15412 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
15413 * indent.c (Fvertical_motion): Fix == vs = typo.
15414
15415 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15416
15417 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15418 Default value is now t. Doc fix.
15419
15420 * indent.c (Fvertical_motion): Compute and apply the overshoot
15421 logic when moving up, not only when moving down. Fix the
15422 confusing name and values of the it_overshoot_expected variable;
15423 logic changes accordingly. (Bug#9254) (Bug#9549)
15424
15425 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15426 CHARPOS is covered by a display string which includes newlines.
15427 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15428 is covered by a display string with embedded newlines.
15429
15430 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15431
15432 * dbusbind.c (Fdbus_register_signal): Add match rule to
15433 Vdbus_registered_objects_table. (Bug#9581)
15434 (Fdbus_register_method, Vdbus_registered_objects_table):
15435 Fix docstring.
15436
15437 2011-09-24 Jim Meyering <meyering@redhat.com>
15438
15439 do not ignore write error for any output size
15440 The previous change was incomplete.
15441 While it makes emacs --batch detect the vast majority of stdout
15442 write failures, errors were still ignored whenever the output size is
15443 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15444 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15445 && echo FAIL: ignored write error
15446 FAIL: ignored write error
15447 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15448 && echo FAIL: ignored write error
15449 FAIL: ignored write error
15450 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15451
15452 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15453
15454 * emacs.c (Fkill_emacs): In noninteractive mode exit
15455 non-successfully if a write error occurred on stdout. (Bug#9574)
15456
15457 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15458
15459 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15460 the xassert test.
15461
15462 * dispextern.h (struct it): Update the comment documenting what
15463 can it->OBJECT be.
15464
15465 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15466
15467 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15468 a display string, extend search for cursor position to end of row.
15469 (find_row_edges): If the row ends in a newline from a display
15470 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15471 Handle the case of a display string with multiple newlines.
15472 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15473 non-empty line. Fixes confusing cursor motion with arrow keys at
15474 the beginning of a line that starts with whitespace.
15475
15476 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15477
15478 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15479 (bug#9493).
15480
15481 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15482
15483 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15484 boolean (Bug#9154).
15485
15486 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15487
15488 * xdisp.c (display_line): Record maximum and minimum buffer
15489 positions even if no glyphs were produced (e.g., by a zero-width
15490 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15491 buffer positions that will be removed from the glyph row because
15492 they don't fit.
15493 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15494 column is beyond frame width: don't subtract 1 "pixel" when
15495 computing width of the stretch.
15496 (reseat_at_next_visible_line_start): Undo the change made on
15497 2011-09-17 that saved paragraph information and restored it after
15498 the call to `reseat'. (Bug#9545)
15499
15500 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15501
15502 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15503 and turn window cursor on if cleared (Bug#9415).
15504
15505 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15506
15507 * search.c (boyer_moore): Take unibyte characters from pattern
15508 literally. (Bug#9458)
15509
15510 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15511
15512 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15513
15514 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15515
15516 Fix minor problem found by static checking.
15517 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
15518 initialized, to pacify gcc -Wuninitialized.
15519
15520 * fileio.c: Report proper errno when syscall falls.
15521 (Finsert_file_contents): Save and restore errno,
15522 so that report_file_error outputs the correct diagnostic.
15523 (Fwrite_region) [CLASH_DETECTION]: Likewise.
15524
15525 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15526
15527 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15528
15529 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15530
15531 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
15532 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
15533
15534 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15535
15536 * xdisp.c (reseat_at_next_visible_line_start): Keep information
15537 about the current paragraph and restore it after the call to reseat.
15538
15539 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
15540 (bidi_find_paragraph_start): Search back for paragraph beginning
15541 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
15542 (bidi_move_to_visually_next): Only trigger paragraph-related
15543 computations when the last character is a newline or at EOB, not
15544 just any NEUTRAL_B. (Bug#9470)
15545
15546 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
15547 truncated lines if point is covered by a display string. (Bug#9524)
15548
15549 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
15550
15551 * xselect.c: Relax test for outgoing X longs (Bug#9498).
15552 (cons_to_x_long): New function.
15553 (lisp_data_to_selection_data): Use it. Correct the test for
15554 short-versus-long data; it was negated. Break out of vector
15555 loop, for efficiency, when a long datum is discovered.
15556
15557 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15558
15559 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15560
15561 2011-09-16 Eli Zaretskii <eliz@gnu.org>
15562
15563 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
15564 GCC PR/17406) by declaring this function with external scope.
15565
15566 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15567
15568 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
15569 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
15570
15571 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15572
15573 * editfns.c (Fformat): Correctly handle text properties on "%%".
15574
15575 2011-09-15 Eli Zaretskii <eliz@gnu.org>
15576
15577 * xterm.c (x_draw_composite_glyph_string_foreground):
15578 * w32term.c (x_draw_composite_glyph_string_foreground):
15579 * term.c (encode_terminal_code):
15580 * composite.c (composition_update_it, get_composition_id):
15581 * xdisp.c (get_next_display_element)
15582 (fill_composite_glyph_string): Add comments about special meaning
15583 of TAB characters in a composition.
15584
15585 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15586
15587 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
15588 This occurs when processing a multibyte format.
15589 Problem reported by Wolfgang Jenker.
15590
15591 2011-09-15 Johan Bockgård <bojohan@gnu.org>
15592
15593 * xdisp.c (try_cursor_movement): Only check for exact match if
15594 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
15595
15596 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15597
15598 Remove unused external symbols.
15599 * dispextern.h (calc_pixel_width_or_height): Remove decl.
15600 * xdisp.c (calc_pixel_width_or_height): Now static.
15601 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
15602 * indent.c (check_display_width):
15603 * w32term.c: Fix comment to match code.
15604 * xterm.c, xterm.h (x_catching_errors): Remove.
15605
15606 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15607
15608 * xselect.c: Use signed conversions more consistently (Bug#9498).
15609 (selection_data_to_lisp_data): Assume incoming selection data are
15610 signed integers, not unsigned. This is to be consistent with
15611 outgoing selection data, which was modified to use signed integers
15612 in as part of the fix to Bug#9196 in response to Jan D.'s comment
15613 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
15614 expects long, not unsigned long.
15615
15616 2011-09-14 Eli Zaretskii <eliz@gnu.org>
15617
15618 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
15619 computation of loop end. Reported by Johan Bockgård
15620 <bojohan@gnu.org>.
15621
15622 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
15623
15624 * frame.c (Fother_visible_frames_p): Function deleted.
15625
15626 2011-09-12 Eli Zaretskii <eliz@gnu.org>
15627
15628 * indent.c (compute_motion): Process display vector front to back
15629 rather than the other way around. (Bug#2496)
15630
15631 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15632
15633 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15634
15635 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
15636
15637 * minibuf.c (Fread_from_minibuffer): Doc fix.
15638
15639 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15640
15641 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
15642 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
15643
15644 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15645
15646 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
15647 value for non-existent files.
15648
15649 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15650
15651 * fileio.c (Finsert_file_contents): If the file cannot be opened,
15652 set its "size" to -1. This will set the modtime_size field of
15653 the corresponding buffer to -1, which is what
15654 verify-visited-file-modtime expects for files that do not exist.
15655 (Bug#9139)
15656
15657 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
15658
15659 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
15660 here ...
15661 * lisp.h: ... from here. push_key_description is no longer
15662 defined in keyboard.c, so its declaration should not be in
15663 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
15664 logically belongs with push_key_description.
15665
15666 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
15667
15668 * buffer.h: Include <sys/types.h> instead of <time.h>.
15669 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
15670 Problem reported by Herbert J. Skuhra.
15671
15672 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15673
15674 * xml.c (parse_region): Make the parsing work for
15675 non-comment-starting XML files again (bug#9144).
15676
15677 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
15678
15679 * image.c (gif_load): Fix calculation of bottom and right corner.
15680 (Bug#9468)
15681
15682 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15683
15684 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
15685 redisplay in small windows.
15686
15687 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15688
15689 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15690
15691 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15692
15693 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
15694 Operate on live windows only.
15695
15696 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
15697
15698 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15699
15700 2011-09-07 Eli Zaretskii <eliz@gnu.org>
15701
15702 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
15703 only under bidi iteration.
15704
15705 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15706
15707 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15708
15709 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15710
15711 isnan: Fix porting problem to Solaris 10 with bundled gcc.
15712 Without this fix, the command to link temacs failed due to an
15713 undefined symbol __builtin_isnan. This is because
15714 /usr/include/iso/math_c99.h #defines isnan(x) to
15715 __builtin_isnan(x), but the bundled gcc, which identifies itself
15716 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
15717 a __builtin_isnan.
15718 * floatfns.c (isnan): #undef, and then #define to a clone of
15719 what's in data.c.
15720 (Fisnan): Always define, since it's always available now.
15721 (syms_of_floatfns): Always define isnan at the Lisp level.
15722
15723 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15724
15725 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15726
15727 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15728
15729 * fileio.c: Fix bugs with large file offsets (Bug#9428).
15730 The previous code assumed that file offsets (off_t values) fit in
15731 EMACS_INT variables, which is not true on typical 32-bit hosts.
15732 The code messed up by falsely reporting buffer overflow in cases
15733 such as (insert-file-contents "big" nil 1 2) into an empty buffer
15734 when "big" contains more than 2**29 bytes, even though this
15735 inserts just one byte and does not overflow the buffer.
15736 (Finsert_file_contents): Store file offsets as off_t
15737 values, not as EMACS_INT values. Check for overflow when
15738 converting between EMACS_INT and off_t. When checking for
15739 buffer overflow or for overlap, take the offsets into account.
15740 Don't use EMACS_INT for small values where int suffices.
15741 When checking for overlap, fix a typo: ZV was used where
15742 ZV_BYTE was intended.
15743 (Fwrite_region): Don't assume off_t fits into 'long'.
15744 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
15745
15746 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
15747
15748 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15749
15750 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15751
15752 sprintf-related integer and memory overflow issues (Bug#9412).
15753
15754 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
15755 (esprintf, exprintf, evxprintf): New functions.
15756 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
15757 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
15758 (modify_event_symbol): Do not assume that the length of
15759 name_alist_or_stem is safe to alloca and fits in int.
15760 (Fexecute_extended_command): Likewise for function name and binding.
15761 (Frecursion_depth): Wrap around reliably on integer overflow.
15762 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
15763 since some callers pass EMACS_INT values.
15764 (Fsingle_key_description): Don't crash if symbol name contains more
15765 than MAX_ALLOCA bytes.
15766 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
15767 (get_minibuffer): Arg is now EMACS_INT, not int.
15768 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
15769 (esprintf, exprintf, evxprintf): New decls.
15770 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15771
15772 * dbusbind.c (signature_cat): New function.
15773 (xd_signature, Fdbus_register_signal):
15774 Do not overrun buffer; instead, report string overflow.
15775
15776 * dispnew.c (add_window_display_history): Don't overrun buffer.
15777 Truncate instead; this is OK since it's just a log.
15778
15779 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
15780 even if the time zone offset is outlandishly large.
15781 Don't mishandle offset == INT_MIN.
15782
15783 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15784 when creating daemon; the previous buffer-overflow check was incorrect.
15785
15786 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15787 which has the guts of the old verror function.
15788
15789 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
15790 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
15791
15792 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15793 (font_unparse_xlfd): Don't blindly alloca long strings.
15794 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
15795 fits in int, when using sprintf. Use single snprintf to count
15796 length of string rather than counting it via multiple sprintfs;
15797 that's simpler and more reliable.
15798 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
15799 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
15800 sprintf, in case result does not fit in int.
15801
15802 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15803 (fontset_from_font): Print it.
15804
15805 * frame.c (tty_frame_count): Now printmax_t, not int.
15806 (make_terminal_frame, set_term_frame_name): Print it.
15807 (x_report_frame_params): In X, window IDs are unsigned long,
15808 not signed long, so print them as unsigned.
15809 (validate_x_resource_name): Check for implausibly long names,
15810 and don't assume name length fits in 'int'.
15811 (x_get_resource_string): Don't blindly alloca invocation name;
15812 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
15813 not fit in int.
15814
15815 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15816 (xg_check_special_colors, xg_set_geometry):
15817 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15818
15819 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
15820 Use esprintf, not sprintf, in case result does not fit in int.
15821
15822 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15823 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
15824 it as a large positive number.
15825 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
15826 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15827
15828 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15829 in case result does not fit in int.
15830
15831 * print.c (float_to_string): Detect width overflow more reliably.
15832 (print_object): Make sprintf buffer a bit bigger, to avoid potential
15833 buffer overrun. Don't assume list length fits in 'int'. Treat
15834 print length of 0 as 0, not as infinity; to be consistent with other
15835 uses of print length in this function. Don't overflow print length
15836 index. Don't assume hash table size fits in 'long', or that
15837 vectorlike size fits in 'unsigned long'.
15838
15839 * process.c (make_process): Use printmax_t, not int, to format
15840 process-name gensyms.
15841
15842 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15843
15844 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15845 to avoid potential buffer overrun.
15846
15847 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15848 if X resource line is longer than 512 bytes.
15849
15850 * xfns.c (x_window): Make sprintf buffer a bit bigger
15851 to avoid potential buffer overrun.
15852
15853 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15854
15855 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15856
15857 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15858
15859 Integer overflow fixes for scrolling, etc.
15860 Without these, Emacs silently mishandles large integers sometimes.
15861 For example, "C-u 4294967297 M-x recenter" was treated as if
15862 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15863
15864 * xdisp.c (try_window_id): Check Emacs fixnum range before
15865 converting to 'int'.
15866
15867 * window.c (window_scroll_line_based, Frecenter):
15868 Check that an Emacs fixnum is in range before assigning it to 'int'.
15869 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
15870 values converted from Emacs fixnums.
15871 (Frecenter): Don't wrap around a line count if it is out of 'int'
15872 range; instead, treat it as an extreme value.
15873 (Fset_window_configuration, compare_window_configurations):
15874 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
15875
15876 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
15877 that can exceed INT_MAX. Check that EMACS_INT value is in range
15878 before assigning it to the (possibly-narrower) index.
15879 (match_limit): Don't assume that a fixnum can fit in 'int'.
15880
15881 * print.c (print_object): Use ptrdiff_t, not int, for index that can
15882 exceed INT_MAX.
15883
15884 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
15885 (Fvertical_motion): Don't wrap around LINES values that don't fit
15886 in 'int'. Instead, treat them as extreme values. This is good
15887 enough for windows, which can't have more than INT_MAX lines anyway.
15888
15889 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15890
15891 * Require libxml/parser.h to avoid compilation warning.
15892
15893 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
15894
15895 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
15896 since this reportedly can destroy thread storage.
15897
15898 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
15899
15900 * syntax.c (find_defun_start): Update all cache variables if
15901 exiting early (Bug#9401).
15902
15903 2011-08-30 Eli Zaretskii <eliz@gnu.org>
15904
15905 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15906
15907 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
15908 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
15909 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
15910
15911 * term.c (tty_append_glyph): New function.
15912 (produce_stretch_glyph): Static function and its prototype deleted.
15913
15914 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15915 Add prototypes.
15916
15917 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
15918
15919 * image.c (parse_image_spec): Check for nonnegative, not for positive,
15920 when checking :margin (Bug#9390).
15921 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
15922 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
15923 so that the name doesn't mislead. All uses changed.
15924
15925 2011-08-28 Johan Bockgård <bojohan@gnu.org>
15926
15927 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
15928 set_tty_hooks.
15929
15930 2011-08-27 Eli Zaretskii <eliz@gnu.org>
15931
15932 * xdisp.c (move_it_to): Don't bail out early when reaching
15933 position beyond to_charpos, if we are scanning backwards.
15934 (move_it_vertically_backward): When DY == 0, make sure we get to
15935 the first character in the line after the newline.
15936
15937 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
15938
15939 * ccl.c: Improve and simplify overflow checking (Bug#9196).
15940 (ccl_driver): Do not generate an out-of-range pointer.
15941 (Fccl_execute_on_string): Remove unnecessary check for
15942 integer overflow, noted by Stefan Monnier in
15943 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
15944 Remove a FIXME that didn't need fixing.
15945 Simplify the newly-introduced buffer reallocation code.
15946
15947 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
15948
15949 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15950
15951 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
15952
15953 Integer and memory overflow issues (Bug#9196).
15954
15955 * doc.c (get_doc_string): Rework so that
15956 get_doc_string_buffer_size is the actual buffer size, rather than
15957 being 1 less than the actual buffer size; this makes xpalloc more
15958 convenient.
15959
15960 * image.c (x_allocate_bitmap_record, cache_image):
15961 * xselect.c (Fx_register_dnd_atom):
15962 Simplify previous changes by using xpalloc.
15963
15964 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
15965 since either will do and ptrdiff_t is convenient with xpalloc.
15966
15967 * charset.c (charset_table_size)
15968 (struct charset_sort_data.priority): Now ptrdiff_t.
15969 (charset_compare): Don't overflow if priorities differ greatly.
15970 (Fsort_charsets): Don't assume list length fits in int.
15971 Check for size-calculation overflow when allocating sort data.
15972 (syms_of_charset): Allocate an initial charset table that is
15973 just under 64 KiB, to avoid problems with glibc malloc and mmap.
15974
15975 * cmds.c (internal_self_insert): Check for size-calculation overflow.
15976
15977 * composite.h (struct composition.glyph_len): Now int, not unsigned.
15978 The actual value is always <= INT_MAX, and leaving it unsigned made
15979 overflow checking harder.
15980
15981 * dispextern.h (struct glyph_matrix.rows_allocated)
15982 (struct face_cache.size): Now ptrdiff_t, for convenience in use
15983 with xpalloc. The values are still always <= INT_MAX.
15984
15985 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
15986
15987 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
15988 (SAFE_NALLOCA): New macro.
15989
15990 * region-cache.c (struct boundary.pos, find_cache_boundary)
15991 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
15992 (set_cache_region, invalidate_region_cache)
15993 (revalidate_region_cache, know_region_cache, region_cache_forward)
15994 (region_cache_backward, pp_cache):
15995 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
15996 so that ptrdiff_t * can be passed to xpalloc.
15997 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
15998 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
15999 (pp_cache): Don't assume cache_len fits in int.
16000 * region-cache.h: Adjust extern decls to match.
16001
16002 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
16003 EMACS_INT, since either will do, for xpalloc.
16004
16005 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
16006 (xnmalloc, xnrealloc, xpalloc): New functions.
16007
16008 * bidi.c (bidi_shelve_header_size): New constant.
16009 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
16010 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
16011
16012 * bidi.c (bidi_cache_shrink):
16013 * buffer.c (overlays_at, overlays_in, record_overlay_string)
16014 (overlay_strings):
16015 Don't update size of array until after memory allocation succeeds,
16016 because xmalloc/xrealloc may not return.
16017 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
16018 now that we have proper integer overflow checking.
16019 (record_overlay_string, overlay_strings): Catch overflows when
16020 calculating size of overlay_str_buf.
16021
16022 * callproc.c (Fcall_process): Check for size overflow when
16023 calculating size of args2.
16024 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
16025 Normally we prefer signed values, but sticking with ptrdiff_t would
16026 require adding more-complicated checks.
16027
16028 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
16029 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
16030 Redo buffer-overflow calculations to avoid integer overflow.
16031 Add a FIXME comment where memory seems to be over-allocated.
16032
16033 * character.c (Fstring): Check for size-calculation overflow.
16034
16035 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
16036 unnecessary integer overflow. Check for size overflow.
16037 (encode_coding_object): Don't update size until xmalloc succeeds.
16038
16039 * composite.c (get_composition_id): Check for overflow in glyph
16040 length calculations.
16041
16042 Integer and memory overflow fixes for display code.
16043 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
16044 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
16045 (scrolling_window): Check for overflow in size calculations.
16046 (line_draw_cost, realloc_glyph_pool, add_row_entry):
16047 Don't assume glyph table len fits in int.
16048 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
16049 (row_table_size): Now ptrdiff_t, not int.
16050 (scrolling_window): Avoid overflow in size calculations.
16051 Don't update size until allocation succeeds.
16052 * fns.c (concat): Check for overflow in size calculations.
16053 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
16054 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16055 (NEXT_ALMOST_PRIME_LIMIT): New constant.
16056
16057 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
16058 (get_doc_string): Check for size calculation overflow.
16059 Don't update size until allocation succeeds.
16060 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
16061 EMACS_INT, where ptrdiff_t will do.
16062 (Fsubstitute_command_keys): Check for string overflow.
16063
16064 * editfns.c (set_time_zone_rule): Don't assume environment length
16065 fits in int.
16066 (message_length): Now ptrdiff_t, not int.
16067 (Fmessage_box): Don't update size until allocation succeeds.
16068 Don't assume message length fits in int.
16069 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
16070
16071 * emacs.c (main): Do not reallocate argv, since there is a null at
16072 the end that can be overwritten, and this way there's no need to
16073 worry about size-calculation overflow.
16074 (sort_args): Check for size-calculation overflow.
16075
16076 * eval.c (init_eval_once, grow_specpdl): Don't update size until
16077 alloc succeeds.
16078 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
16079
16080 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
16081 (x_set_scroll_bar_width, x_figure_window_size):
16082 Check for integer overflow.
16083 (x_set_alpha): Do not assume XINT fits in int.
16084
16085 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
16086 This is for the members text_lines, text_cols, total_lines, total_cols,
16087 where the system imposes an 'int' limit.
16088
16089 * fringe.c (Fdefine_fringe_bitmap):
16090 Don't update size until alloc works.
16091
16092 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
16093 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
16094
16095 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
16096 Check for size-calculation overflow.
16097 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
16098 do, as we prefer signed integers.
16099 (id_to_widget.max_size, id_to_widget.used)
16100 (xg_store_widget_in_map, xg_remove_widget_from_map)
16101 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
16102 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
16103 Use and return ptrdiff_t, not int.
16104 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
16105 * gtkutil.h: Change prototypes to match the above.
16106
16107 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
16108 are duplicate now that they've been promoted to lisp.h.
16109 (x_allocate_bitmap_record, x_alloc_image_color)
16110 (make_image_cache, cache_image, xpm_load):
16111 Don't update size until alloc is done.
16112 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
16113 (x_detect_edges):
16114 Check for size calculation overflow.
16115 (ct_colors_allocated_max): New constant.
16116 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
16117 overflow.
16118
16119 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
16120 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
16121 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
16122 Use ptrdiff_t, not int, to count maps.
16123 (read_char_minibuf_menu_prompt): Check for overflow in size
16124 calculations. Don't update size until allocation succeeds.
16125 Redo calculations to avoid overflow.
16126 * keyboard.h: Change prototypes to match the above.
16127
16128 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
16129 to count maps.
16130 (current_minor_maps): Check for size calculation overflow.
16131 * keymap.h: Change prototypes to match the above.
16132
16133 * lread.c (read1, init_obarray): Don't update size until alloc done.
16134
16135 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
16136 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
16137
16138 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
16139 Now ptrdiff_t, not int.
16140 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
16141 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
16142
16143 * process.c (Fnetwork_interface_list): Check for overflow
16144 in size calculation.
16145
16146 * region-cache.c (move_cache_gap): Check for size calculation overflow.
16147
16148 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
16149 overflow. Don't bother calling xmalloc when xrealloc will do.
16150
16151 * search.c (Freplace_match): Check for size calculation overflow.
16152 (Fset_match_data): Don't assume list lengths fit in 'int'.
16153
16154 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
16155 for command line length. Do not attempt to address one before the
16156 beginning of an array, as that's not portable.
16157
16158 * term.c (max_frame_lines): Remove; unused.
16159 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
16160 not int.
16161 (encode_terminal_code, calculate_costs): Check for size
16162 calculation overflow.
16163 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
16164 table lengths and related sizes. Don't update size until alloc
16165 done. Redo calculations to avoid overflow.
16166 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
16167
16168 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
16169 subtracting pointers.
16170 (gobble_line): Check for overflow more carefully. Don't update size
16171 until alloc done.
16172
16173 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
16174 Don't update size until alloc done.
16175 Redo size calculations to avoid overflow.
16176 Check for size calculation overflow.
16177 (main) [DEBUG]: Fix typo in invoking tparam1.
16178
16179 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
16180 Use ptrdiff_t, not int, for sizes.
16181 (store_mode_line_noprop_char): Don't update size until alloc done.
16182
16183 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
16184 Use ptrdiff_t, not int, for sizes.
16185 (Finternal_make_lisp_face, cache_face):
16186 Check for size calculation overflow.
16187 (cache_face): Treat size calculation overflows as if they were
16188 memory exhaustion (the usual treatment), rather than aborting.
16189
16190 * xfns.c (x_encode_text, x_set_name_internal)
16191 (Fx_change_window_property): Use ptrdiff_t, not int, to count
16192 sizes, since they can exceed INT_MAX in size. Check for size
16193 calculation overflow.
16194
16195 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
16196 (xg_select): Check for size calculation overflow.
16197 Don't update size until alloc done.
16198
16199 * xrdb.c (get_environ_db): Don't assume path length fits in int,
16200 as sprintf is limited to int lengths.
16201
16202 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
16203 (X_LONG_MIN): New macros.
16204 Use them to make the following changes clearer.
16205 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
16206 This change doesn't affect the value now, but it may help remind
16207 future maintainers not to raise the value too much later.
16208 (SELECTION_QUANTUM): Remove, replacing with ...
16209 (selection_quantum): ... new function, which avoids overflow.
16210 All uses changed.
16211 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
16212 assumption that selection length fits in 'int'.
16213 (x_reply_selection_request, x_handle_selection_request)
16214 (x_get_window_property, receive_incremental_selection)
16215 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
16216 (lisp_data_to_selection_data, clean_local_selection_data):
16217 Use ptrdiff_t, not int, to record length of selection.
16218 (x_reply_selection_request, x_get_window_property)
16219 (receive_incremental_selection, x_property_data_to_lisp):
16220 Redo calculations to avoid overflow.
16221 (x_reply_selection_request): When sending hint, ceiling it at
16222 X_LONG_MAX rather than relying on wraparound overflow to send
16223 something.
16224 (x_get_window_property, receive_incremental_selection)
16225 (lisp_data_to_selection_data, x_property_data_to_lisp):
16226 Check for size-calculation overflow.
16227 (x_get_window_property, receive_incremental_selection)
16228 (lisp_data_to_selection_data, Fx_register_dnd_atom):
16229 Don't store size until memory allocation succeeds.
16230 (x_get_window_property): Plug memory leak on memory exhaustion.
16231 Don't double-block input; malloc is safe here. Don't assume 2**34
16232 - 4 fits in unsigned long. Add an xassert to check
16233 XGetWindowProperty overflow. Be more careful about overflow
16234 calculations, and distinguish size from memory overflow better.
16235 (receive_incremental_selection): When tracing, don't assume
16236 unsigned int is less than INT_MAX.
16237 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
16238 harmful) conversions of unsigned short to int.
16239 (lisp_data_to_selection_data): Don't assume that integers
16240 in the range -65535 through -1 fit in an X unsigned short.
16241 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
16242 result parameters unless successful. Rely on cons_to_unsigned
16243 to report problems with elements; the old code wasn't right anyway.
16244 (x_check_property_data): Check for int overflow; we cannot use
16245 a wider type due to X limits.
16246 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
16247
16248 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
16249
16250 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
16251 (x_term_init): Check for size calculation overflow.
16252 (x_color_cells): Don't store size until memory allocation succeeds.
16253 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
16254 Don't assume alloca size is less than MAX_ALLOCA.
16255 (x_term_init): Don't assume length fits in int (sprintf is limited
16256 to int size).
16257
16258 Use ptrdiff_t for composition IDs.
16259 * character.c (lisp_string_width):
16260 * composite.c (composition_table_size, n_compositions)
16261 (get_composition_id, composition_gstring_from_id):
16262 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
16263 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
16264 * window.c (Frecenter):
16265 Use ptrdiff_t, not int, for composition IDs.
16266 * composite.c (get_composition_id): Check for integer overflow.
16267 * composite.h: Adjust prototypes to match the above changes.
16268
16269 Use ptrdiff_t for hash table indexes.
16270 * category.c (hash_get_category_set):
16271 * ccl.c (ccl_driver):
16272 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
16273 * coding.c (coding_system_charset_list, detect_coding_system):
16274 * coding.h (struct coding_system.id):
16275 * composite.c (get_composition_id, gstring_lookup_cache):
16276 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
16277 * image.c (xpm_get_color_table_h):
16278 * lisp.h (hash_lookup, hash_put):
16279 * minibuf.c (Ftest_completion):
16280 Use ptrdiff_t for hash table indexes, not int (which is too
16281 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
16282 32-bit --with-wide-int hosts).
16283
16284 * charset.c (Fdefine_charset_internal): Check for integer overflow.
16285 Add a FIXME comment about memory leaks.
16286 (syms_of_charset): Don't assume xmalloc returns.
16287
16288 Don't assume that stated character widths fit in int.
16289 * character.c (Fchar_width, c_string_width, lisp_string_width):
16290 * character.h (CHAR_WIDTH):
16291 * indent.c (MULTIBYTE_BYTES_WIDTH):
16292 Use sanitize_char_width to avoid undefined and/or bad behavior
16293 with outlandish widths.
16294 * character.h (sanitize_tab_width): Rename from sanitize_width,
16295 now that we have two such functions. All uses changed.
16296 (sanitize_char_width): New inline function.
16297
16298 Don't assume that tab-width fits in int.
16299 * character.h (sanitize_width): New inline function.
16300 (SANE_TAB_WIDTH): New macro.
16301 (ASCII_CHAR_WIDTH): Use it.
16302 * indent.c (sane_tab_width): Remove. All uses replaced by
16303 SANE_TAB_WIDTH (current_buffer).
16304 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
16305
16306 * fileio.c: Integer overflow issues with file modes.
16307 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
16308
16309 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
16310 Remove unreachable code.
16311 (read_hex, load_charset_map_from_file): Check for integer overflow.
16312
16313 * xterm.c: Don't go over XClientMessageEvent limit.
16314 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
16315 (x_send_scroll_bar_event): Likewise. Check that the size does not
16316 exceed limits imposed by XClientMessageEvent, as well as the usual
16317 ptrdiff_t and size_t limits.
16318
16319 * keyboard.c: Overflow, signedness and related fixes.
16320 (make_lispy_movement): Use same integer type in forward decl
16321 that is used in the definition.
16322 (read_key_sequence, keyremap_step):
16323 Change bufsize argument back to int, undoing my 2011-03-30 change.
16324 We prefer signed types, and int is wide enough here.
16325 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
16326 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
16327 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
16328 length, not size_t. Use ptrdiff_t for index, not int.
16329 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
16330 possibility of integer overflow.
16331
16332 Overflow, signedness and related fixes for images.
16333
16334 * dispextern.h (struct it.stack[0].u.image.image_id)
16335 (struct_it.image_id, struct image.id, struct image_cache.size)
16336 (struct image_cache.used, struct image_cache.ref_count):
16337 * gtkutil.c (update_frame_tool_bar):
16338 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
16339 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
16340 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
16341 * nsmenu.m (update_frame_tool_bar):
16342 * xdisp.c (calc_pixel_width_or_height):
16343 * xfns.c (image_cache_refcount):
16344 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
16345 on typical 64-bit hosts.
16346
16347 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16348 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
16349 Omit unnecessary casts to int.
16350 (parse_image_spec): Check that integers fall into 'int' range
16351 when the callers expect that.
16352 (image_ascent): Redo ascent calculation to avoid int overflow.
16353 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
16354 (lookup_image): Remove unnecessary tests.
16355 (xbm_image_p): Locals are now of int, not EMACS_INT,
16356 since parse_image_check makes sure they fit into int.
16357 (png_load, gif_load, svg_load_image):
16358 Prefer int to unsigned where either will do.
16359 (tiff_handler): New function, combining the cores of the
16360 old tiff_error_handler and tiff_warning_handler.
16361 This function is rewritten to use vsnprintf and thereby avoid
16362 stack buffer overflows. It uses only the features of vsnprintf
16363 that are common to both POSIX and native Microsoft.
16364 (tiff_error_handler, tiff_warning_handler): Use it.
16365 (tiff_load, gif_load, imagemagick_load_image):
16366 Don't assume :index value fits in 'int'.
16367 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
16368 (imagemagick_load_image): Check that crop parameters fit into
16369 the integer types that MagickCropImage accepts. Don't assume
16370 Vimagemagick_render_type has a nonnegative value. Don't assume
16371 size_t fits in 'long'.
16372 (gs_load): Use printmax_t to print the widest integers possible.
16373 Check for integer overflow when computing image height and width.
16374
16375 2011-08-26 Eli Zaretskii <eliz@gnu.org>
16376
16377 * xdisp.c (redisplay_window): Don't force window start if point
16378 will be invisible in the resulting window. (Bug#9324)
16379
16380 2011-08-25 Eli Zaretskii <eliz@gnu.org>
16381
16382 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
16383 the display spec is of the form `(space ...)'.
16384 (handle_display_spec): Return the value returned by
16385 handle_single_display_spec, not just 1 or zero.
16386 (handle_single_display_spec): If the display spec is of the form
16387 `(space ...)', and specifies display in the text area, return 2
16388 rather than 1.
16389 (try_cursor_movement): Check for the need to scroll more
16390 accurately, and prefer exact match for point under bidi.
16391 Don't advance `row' beyond the last row of the window.
16392
16393 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
16394 into disp_prop; all users changed.
16395
16396 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
16397 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
16398 for the text covered by the display property.
16399
16400 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
16401
16402 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
16403 Change return value to nil.
16404 (Frecord_buffer): Delete unused function.
16405
16406 2011-08-24 Eli Zaretskii <eliz@gnu.org>
16407
16408 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16409 buffers, return left-to-right.
16410 (set_cursor_from_row): Consider candidate row a win if its glyph
16411 represents a newline and point is on that newline. Fixes cursor
16412 positioning on the newline at EOL of R2L text within L2R
16413 paragraph, and vice versa.
16414 (try_cursor_movement): Check continued rows, in addition to
16415 continuation rows. Fixes unwarranted scroll when point enters a
16416 continued line of R2L text within an L2R paragraph, or vice versa.
16417 (cursor_row_p): Consider the case of point being equal to
16418 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16419 from the end of a short line to the beginning of a continued line
16420 of R2L text within L2R paragraph.
16421 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16422 composed characters.
16423
16424 * bidi.c (bidi_check_type): Use xassert.
16425 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16426 members.
16427
16428 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16429
16430 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16431 a character.
16432
16433 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16434
16435 * nsfont.m (ns_otf_to_script): Fix typo.
16436
16437 2011-08-22 Kenichi Handa <handa@m17n.org>
16438
16439 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16440 extra slot even if the purpose is char-code-property-table.
16441
16442 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16443
16444 * xdisp.c (redisplay_window): When computing centering_position,
16445 account for the height of the header line. (Bug#8874)
16446
16447 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16448 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16449 candidate is selected by the mouse, and that candidate has a
16450 composed character under the mouse.
16451
16452 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16453 coordinates reported by pos-visible-in-window-p for a composed
16454 character in column zero.
16455
16456 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16457
16458 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16459
16460 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16461
16462 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16463 consider it a hit if to_charpos is anywhere in the range of the
16464 composed buffer positions.
16465
16466 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16467
16468 * image.c (gif_load): Don't assume that each subimage has the same
16469 dimensions as the base image. Handle disposal method that is
16470 "undefined" by the gif spec (Bug#9335).
16471
16472 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16473
16474 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16475 (Fcondition_case): Document `debug' symbol in error handler.
16476
16477 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16478
16479 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16480 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16481 from an Org mode buffer to a Speedbar frame.
16482
16483 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16484 a composition, take its buffer position from IT->cmp_it.charpos.
16485 Fixes cursor positioning at the beginning of a line that begins
16486 with a composed character.
16487
16488 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16489
16490 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16491 character bidirectional type, use STRONG_L instead. Fixes crashes
16492 in a buffer produced by `describe-categories'.
16493
16494 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16495 members before the level stack, so they would be saved and
16496 restored when copying iterator state. Fixes incorrect reordering
16497 around TABs covered by display properties.
16498
16499 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16500
16501 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16502
16503 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16504
16505 * eval.c (internal_condition_case, internal_condition_case_1)
16506 (internal_condition_case_2, internal_condition_case_n):
16507 Remove unnecessary aborts (Bug#9081).
16508
16509 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16510
16511 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16512 has no `load' handler, try opening the file locally. (Bug#9311)
16513
16514 2011-08-16 Ken Brown <kbrown@cornell.edu>
16515
16516 * gmalloc.c: Expand comment.
16517
16518 2011-08-16 Eli Zaretskii <eliz@gnu.org>
16519
16520 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
16521 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
16522
16523 2011-08-16 Ken Brown <kbrown@cornell.edu>
16524
16525 Fix memory allocation problems in Cygwin build (Bug#9273).
16526
16527 * unexcw.c ( __malloc_initialized): Declare external variable.
16528 (fixup_executable): Force the dumped emacs to reinitialize malloc.
16529
16530 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16531 New variables.
16532 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
16533 dumped emacs.
16534 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
16535 in the static heap.
16536 [CYGWIN] (special_realloc): New function.
16537 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
16538 requests to realloc storage in the static heap.
16539
16540 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16541
16542 * bidi.c (bidi_initialize): Remove unused local.
16543
16544 2011-08-15 Eli Zaretskii <eliz@gnu.org>
16545
16546 * bidimirror.h:
16547 * biditype.h: Remove file.
16548 * makefile.w32-in ($(BLD)/bidi.$(O)):
16549 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
16550
16551 * dispextern.h: Fix a typo in the comment to bidi_type_t.
16552
16553 * chartab.c: Improve commentary for the uniprop_table API.
16554
16555 * bidi.c (bidi_paragraph_init): Support zero value of
16556 bidi_ignore_explicit_marks_for_paragraph_level.
16557 (bidi_initialize): Use uniprop_table instead of including
16558 biditype.h and bidimirror.h.
16559
16560 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
16561 coordinates of the iterator when restoring from ppos_it.
16562 (Bug#9296)
16563
16564 2011-08-14 Kenichi Handa <handa@m17n.org>
16565
16566 * process.c (create_process): Call setup_process_coding_systems
16567 after the pid of the process is set to -1 (Bug#8162).
16568
16569 2011-08-14 Eli Zaretskii <eliz@gnu.org>
16570
16571 * xdisp.c (move_it_in_display_line_to): Don't invoke
16572 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
16573 ppos_it. Fixes vertical cursor motion when line beginning is
16574 covered by an image. (Bug#9296)
16575
16576 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
16577
16578 * nsterm.h (ns_run_ascript): Declare.
16579 (NSAPP_DATA2_RUNASSCRIPT): Define.
16580
16581 * nsfns.m (as_script, as_result, as_status): New static variables.
16582 (ns_run_ascript): New function.
16583 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
16584 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
16585 the event loop. Get status from as_status (Bug#7276).
16586
16587 * nsterm.m (sendEvent): If event is NSApplicationDefined and
16588 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
16589 the event loop (Bug#7276).
16590
16591 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
16592
16593 * gnutls.c (QCgnutls_bootprop_priority)
16594 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
16595 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
16596 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
16597 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
16598 (QCgnutls_bootprop_verify_hostname_error)
16599 (QCgnutls_bootprop_callbacks_verify): Rename from
16600 Qgnutls_bootprop_..., all uses changed.
16601
16602 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
16603 uses changed.
16604
16605 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16606
16607 * xfaces.c (Qframe_set_background_mode): Now static.
16608 * dispextern.h (Qframe_set_background_mode): Remove decl.
16609
16610 * process.c (Fnetwork_interface_info): Declare local only if needed.
16611
16612 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
16613
16614 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
16615 (Fnetwork_interface_list): Allocate in increments of bytes instead
16616 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
16617 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
16618 sockaddr.
16619 (struct ifflag_def): notrailers is smart on OSX.
16620 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
16621 Get hardware address with getifaddrs if available.
16622
16623 2011-08-12 Eli Zaretskii <eliz@gnu.org>
16624
16625 * xdisp.c (iterate_out_of_display_property): xassert that
16626 IT->position is set to within IT->object's boundaries. Break from
16627 the loop as soon as EOB is reached; avoids infloops in redisplay
16628 when IT->position is set up wrongly due to some bug.
16629 Set IT->current to match the bidi iterator unconditionally.
16630 (push_display_prop): Allow GET_FROM_STRING as IT->method on
16631 entry. Force push_it to save on the stack the current
16632 buffer/string position, to be restored by pop_it. Fix flags in
16633 the iterator structure wrt the object coming from a display
16634 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
16635 properties. (Bug#9284)
16636
16637 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
16638
16639 * fontset.c (fontset_get_font_group): Add proper type checks.
16640 (Bug#9172)
16641
16642 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16643
16644 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
16645 and LC_VERSION_MIN_MACOSX.
16646 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
16647 (dump_it) [LC_FUNCTION_STARTS]: Use it.
16648
16649 2011-08-08 Eli Zaretskii <eliz@gnu.org>
16650
16651 * xdisp.c (forward_to_next_line_start): Allow to use the
16652 no-display-properties-and-no-overlays under bidi display.
16653 Set disp_pos in the bidi iterator to avoid searches for display
16654 properties and overlays.
16655
16656 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
16657
16658 * editfns.c (Fset_time_zone_rule): Document relationship with the
16659 setenv function.
16660
16661 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16662 the font entity extracted from the cache (Bug#8109).
16663
16664 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
16665
16666 * composite.c (autocmp_chars): Don't reset point. That is done by
16667 restore_point_unwind (Bug#5984).
16668
16669 2011-08-07 Juri Linkov <juri@jurta.org>
16670
16671 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
16672 to show the arg `TIME' instead of `TIMEVAL'.
16673
16674 2011-08-06 Eli Zaretskii <eliz@gnu.org>
16675
16676 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
16677 display property strides EOL and includes a newline, as in
16678 longlines-mode. (Bug#9254)
16679 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16680 word-wrap under bidirectional display. (Bug#9224)
16681
16682 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
16683 is non-zero, even if the data buffer is NULL. Fixes a crash in
16684 vertical-motion with longlines-mode. (Bug#9254)
16685
16686 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16687
16688 * bidi.c <bidi_cache_total_alloc>: Now static.
16689 (bidi_initialize): Initialize bidi_cache_total_alloc.
16690
16691 * xdisp.c (display_line): Release buffer allocated for shelved bidi
16692 cache. (Bug#9221)
16693
16694 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
16695 amount allocated this far in `bidi_cache_total_alloc'.
16696 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
16697 non-zero, only free the data buffer without restoring the cache
16698 contents. All callers changed.
16699
16700 * dispextern.h (bidi_unshelve_cache): Update prototype.
16701
16702 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
16703 (move_it_in_display_line, move_it_to)
16704 (move_it_vertically_backward, move_it_by_lines): Replace the call
16705 to xfree to an equivalent call to bidi_unshelve_cache.
16706 (move_it_in_display_line_to): Fix logic of returning
16707 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
16708
16709 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16710
16711 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
16712 came from a string character with a `cursor' property. (Bug#9229)
16713
16714 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16715
16716 * Makefile.in (LIB_PTHREAD): New variable.
16717 (LIBES): Add LIB_PTHREAD (Bug#9216).
16718
16719 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
16720 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
16721
16722 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16723
16724 * regex.c (re_iswctype): Remove some redundant boolean conversions.
16725
16726 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16727
16728 * xterm.c (x_find_topmost_parent): New function.
16729 (x_set_frame_alpha): Find topmost parent window with
16730 x_find_topmost_parent and set the property there also (bug#9181).
16731 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
16732
16733 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
16734
16735 * callproc.c (Fcall_process): Avoid vfork clobbering
16736 the local vars buffer, coding_systems, current_dir.
16737
16738 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16739
16740 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16741
16742 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16743
16744 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16745 so that it is not optimized away.
16746
16747 * xdisp.c (compute_display_string_pos): Remove unused local.
16748
16749 2011-08-02 Eli Zaretskii <eliz@gnu.org>
16750
16751 Fix slow cursor motion and scrolling in large buffers with
16752 selective display, like Org Mode buffers. (Bug#9218)
16753
16754 * dispextern.h (struct bidi_it): New member disp_prop_p.
16755
16756 * xdisp.c: Remove one-slot cache of display string positions.
16757 (compute_display_string_pos): Accept an additional argument
16758 DISP_PROP_P; callers changed. Scan at most 5K characters forward
16759 for a display string or property. If found, set DISP_PROP_P
16760 non-zero.
16761
16762 * bidi.c (bidi_fetch_char): Accept an additional argument
16763 DISP_PROP_P, and pass it to compute_display_string_pos.
16764 Only handle text covered by a display string if DISP_PROP_P is returned
16765 non-zero. All callers of bidi_fetch_char changed.
16766
16767 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16768
16769 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16770
16771 2010-12-03 Don March <don@ohspite.net>
16772
16773 * keymap.c (Fdefine_key): Fix non-prefix key error message when
16774 last character M-[char] is translated to ESC [char] (bug#7541).
16775
16776 2011-08-02 Kenichi Handa <handa@m17n.org>
16777
16778 * lisp.h (uniprop_table): Extern it.
16779
16780 * chartab.c (uniprop_table): Make it non-static.
16781
16782 2011-08-01 Eli Zaretskii <eliz@gnu.org>
16783
16784 * xdisp.c (forward_to_next_line_start): Accept additional argument
16785 BIDI_IT_PREV, and store into it the state of the bidi iterator had
16786 on the newline.
16787 (reseat_at_next_visible_line_start): Use the bidi iterator state
16788 returned by forward_to_next_line_start to restore the state of
16789 it->bidi_it after backing up to previous newline. (Bug#9212)
16790
16791 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
16792
16793 * regex.c (re_comp): Protoize.
16794 (re_exec): Fix return type.
16795 (regexec): Fix type of `ret'. (Bug#9203)
16796
16797 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16798
16799 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
16800 This is needed if max-image-size is a floating-point number.
16801
16802 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16803
16804 * print.c (print_object): Print empty symbol as ##.
16805
16806 * lread.c (read1): Read ## as empty symbol.
16807
16808 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16809
16810 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
16811 setting frame foreground color (Bug#9175).
16812 (x_set_background_color): Likewise.
16813
16814 * nsmenu.m (-setText): Size tooltip dimensions precisely to
16815 contents (Bug#9176).
16816 (EmacsTooltip -init): Remove bezels and add shadows to
16817 tooltip windows.
16818
16819 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16820 or scroll bar (Bug#8470).
16821
16822 * nsfont.m (nsfont_open): Remove assignment to voffset and
16823 unnecessary vars hshink, expand, hd, full_height, min_height.
16824 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
16825
16826 * nsterm.h (nsfont_info): Remove voffset field.
16827
16828 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16829
16830 Implement strike-through and overline on NextStep (Bug#8863).
16831
16832 * nsfont.m (nsfont_open): Use underline position provided by font,
16833 instead of hard-coded value of 2.
16834 (nsfont_draw): Call ns_draw_text_decoration instead.
16835
16836 * nsterm.h: Add declaration for ns_draw_text_decoration.
16837
16838 * nsterm.m (ns_draw_text_decoration): New function for drawing
16839 underline, overline, and strike-through.
16840 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
16841 ns_draw_text_decoration. Change treatment of cursor drawing to
16842 accommodate underlining, etc.
16843
16844 2011-07-28 Eli Zaretskii <eliz@gnu.org>
16845
16846 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16847 default.
16848
16849 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16850
16851 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
16852 Without this fix, if a signal arrives just after memory fills up,
16853 'malloc' might be invoked reentrantly.
16854
16855 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
16856 In other words, assume that every image size is allowed, on non-X
16857 hosts. This assumption is probably wrong, but it lets Emacs compile.
16858
16859 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16860
16861 * regex.c (re_iswctype): Convert return values to boolean.
16862
16863 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
16864
16865 * xdisp.c (compute_display_string_pos): Don't use cached display
16866 string position if the buffer had its restriction changed.
16867 (Bug#9184)
16868
16869 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16870
16871 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16872
16873 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16874
16875 Integer signedness and overflow and related fixes. (Bug#9079)
16876
16877 * bidi.c: Integer size and overflow fixes.
16878 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
16879 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
16880 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16881 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
16882 (bidi_find_other_level_edge):
16883 Use ptrdiff_t instead of EMACS_INT where either will do.
16884 This works better on 32-bit hosts configured --with-wide-int.
16885 (bidi_cache_ensure_space): Check for size-calculation overflow.
16886 Use % rather than repeated addition, for better worst-case speed.
16887 Don't set bidi_cache_size until after xrealloc returns, because it
16888 might not return.
16889 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
16890 (bidi_cache_ensure_space): Also check that the bidi cache size
16891 does not exceed that of the largest Lisp string or buffer. See Eli
16892 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
16893
16894 * alloc.c (__malloc_size_t): Remove.
16895 All uses replaced by size_t. See Andreas Schwab's note
16896 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
16897
16898 * image.c: Improve checking for integer overflow.
16899 (check_image_size): Assume that f is nonnull, since
16900 it is always nonnull in practice. This is one less thing to
16901 worry about when checking for integer overflow later.
16902 (x_check_image_size): New function, which checks for integer
16903 overflow issues inside X.
16904 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
16905 This removes the need for a memory_full check.
16906 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
16907 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
16908 (xbm_read_bitmap_data): Change locals back to 'int', since
16909 their values must fit in 'int'.
16910 (xpm_load_image, png_load, tiff_load):
16911 Invoke x_create_x_image_and_pixmap earlier,
16912 to avoid much needless work if the image is too large.
16913 (tiff_load): Treat overly large images as if
16914 x_create_x_image_and_pixmap failed, not as malloc failures.
16915 (gs_load): Use x_check_image_size.
16916
16917 * gtkutil.c: Omit integer casts.
16918 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
16919 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
16920
16921 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16922
16923 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
16924 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
16925 would wrongly return t on a 64-bit host.
16926
16927 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
16928 The plain *_OVERFLOW macros run afoul of GCC bug 49705
16929 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
16930 and therefore cause GCC to emit a bogus diagnostic in some cases.
16931
16932 * image.c: Integer signedness and overflow and related fixes.
16933 This is not an exhaustive set of fixes, but it's time to
16934 record what I've got.
16935 (lookup_pixel_color, check_image_size): Remove redundant decls.
16936 (check_image_size): Don't assume that arbitrary EMACS_INT values
16937 fit in 'int', or that arbitrary 'double' values fit in 'int'.
16938 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
16939 (tiff_load, imagemagick_load_image):
16940 Check for overflow in size calculations.
16941 (x_create_x_image_and_pixmap): Remove unnecessary test for
16942 xmalloc returning NULL; that can't happen.
16943 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
16944 (xpm_color_bucket): Use better integer hashing function.
16945 (xpm_cache_color): Don't possibly over-allocate memory.
16946 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
16947 (gif_memory_source):
16948 Use ptrdiff_t, not int or size_t, to record sizes.
16949 (png_load): Don't assume values greater than 2**31 fit in 'int'.
16950 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
16951 either works, as we prefer signed integers.
16952 (tiff_read_from_memory, tiff_write_from_memory):
16953 Return tsize_t, not size_t, since that's what the TIFF API wants.
16954 (tiff_read_from_memory): Don't fail simply because the read would
16955 go past EOF; instead, return a short read.
16956 (tiff_load): Omit no-longer-needed casts.
16957 (Fimagemagick_types): Don't assume size fits into 'int'.
16958
16959 Improve hashing quality when configured --with-wide-int.
16960 * fns.c (hash_string): New function, taken from sxhash_string.
16961 Do not discard information about ASCII character case; this
16962 discarding is no longer needed.
16963 (sxhash-string): Use it. Change sig to match it. Caller changed.
16964 * lisp.h: Declare it.
16965 * lread.c (hash_string): Remove, since we now use fns.c's version.
16966 The fns.c version returns a wider integer if --with-wide-int is
16967 specified, so this should help the quality of the hashing a bit.
16968
16969 * emacs.c: Integer overflow minor fix.
16970 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
16971 Define only if GNU_LINUX.
16972 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
16973
16974 * dispnew.c: Integer signedness and overflow fixes.
16975 Remove unnecessary forward decls, that were a maintenance hassle.
16976 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
16977 All uses changed.
16978 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
16979 (scrolling_window): Use ptrdiff_t, not int, for byte count.
16980 (prepare_desired_row, line_draw_cost):
16981 Use int, not unsigned, where either works.
16982 (save_current_matrix, restore_current_matrix):
16983 Use ptrdiff_t, not size_t, where either works.
16984 (init_display): Check for overflow more accurately, and without
16985 relying on undefined behavior.
16986
16987 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
16988 Remove, replacing with the new symbols in lisp.h. All uses changed.
16989 * fileio.c (make_temp_name):
16990 * filelock.c (lock_file_1, lock_file):
16991 * xdisp.c (message_dolog):
16992 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
16993 Use pMd etc. instead.
16994 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
16995 replacing the pWIDE etc. symbols removed from editfns.c.
16996
16997 * keyboard.h (num_input_events): Now uintmax_t.
16998 This is (very slightly) less likely to mess up due to wraparound.
16999 All uses changed.
17000
17001 * buffer.c: Integer signedness fixes.
17002 (alloc_buffer_text, enlarge_buffer_text):
17003 Use ptrdiff_t rather than size_t when either will do, as we prefer
17004 signed integers.
17005
17006 * alloc.c: Integer signedness and overflow fixes.
17007 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
17008 (__malloc_size_t): Default to size_t, not to int.
17009 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
17010 (Fgarbage_collect, mark_object_loop_halt, mark_object):
17011 Prefer ptrdiff_t to size_t when either would do, as we prefer
17012 signed integers.
17013 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
17014 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
17015 Now const. Initialize with values that are in range even if char
17016 is signed.
17017 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
17018 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
17019 These functions do the right thing with sizes > 2**32.
17020 (check_depth): Now ptrdiff_t, not int.
17021 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
17022 Adjust to new way of storing sizes. Check for size overflow bugs
17023 in rest of code.
17024 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
17025 slightly wrong anyway, as it missed one instance of
17026 XMALLOC_OVERRUN_CHECK_OVERHEAD.
17027 (refill_memory_reserve): Omit needless cast to size_t.
17028 (mark_object_loop_halt): Mark as externally visible.
17029
17030 * xselect.c: Integer signedness and overflow fixes.
17031 (Fx_register_dnd_atom, x_handle_dnd_message):
17032 Use ptrdiff_t, not size_t, since we prefer signed.
17033 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
17034 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
17035 x_dnd_atoms_size and x_dnd_atoms_length.
17036
17037 * doprnt.c: Prefer signed to unsigned when either works.
17038 * eval.c (verror):
17039 * doprnt.c (doprnt):
17040 * lisp.h (doprnt):
17041 * xdisp.c (vmessage):
17042 Use ptrdiff_t, not size_t, when using or implementing doprnt,
17043 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
17044 prefer signed arithmetic to avoid comparison confusion.
17045 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
17046 but is a bit tricky.
17047
17048 Assume freestanding C89 headers, string.h, stdlib.h.
17049 * data.c, doprnt.c, floatfns.c, print.c:
17050 Include float.h unconditionally.
17051 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
17052 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
17053 * regex.c: Likewise for stddef.h, string.h.
17054 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
17055 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
17056 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
17057 (STDC_HEADERS): Remove obsolete defines.
17058 * sysdep.c: Include limits.h unconditionally.
17059
17060 Assume support for memcmp, memcpy, memmove, memset.
17061 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
17062 * regex.c (memcmp, memcpy):
17063 Remove; we assume C89 now.
17064
17065 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
17066 (__malloc_safe_bcopy): Remove; no longer needed.
17067
17068 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
17069 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
17070 well either way, and we prefer signed to unsigned.
17071
17072 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
17073
17074 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
17075 closes the connection while we're reading (bug#9182).
17076
17077 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
17078
17079 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
17080 are specified (Bug#9168).
17081
17082 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
17083
17084 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
17085 Found by GCC static checking and --with-wide-int on a 32-bit host.
17086
17087 2011-07-25 Eli Zaretskii <eliz@gnu.org>
17088
17089 * xdisp.c (compute_display_string_pos): Fix logic of caching
17090 previous display string position. Initialize cached_prev_pos to
17091 -1. Fixes slow-down at the beginning of a buffer.
17092
17093 2011-07-24 Eli Zaretskii <eliz@gnu.org>
17094
17095 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
17096 for attrs[LFACE_FONTSET_INDEX].
17097
17098 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
17099
17100 * xml.c (parse_region): Remove unused local
17101 that was recently introduced.
17102
17103 2011-07-23 Eli Zaretskii <eliz@gnu.org>
17104
17105 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
17106 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
17107
17108 * xdisp.c (move_it_in_display_line_to): Record the best matching
17109 position for TO_CHARPOS while scanning the line, and restore it on
17110 exit if none of the characters scanned was an exact match.
17111 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
17112 when exact match is impossible due to invisible text, and the
17113 lines are truncated.
17114
17115 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
17116
17117 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
17118 for OSX >= 10.7.
17119
17120 2011-07-22 Eli Zaretskii <eliz@gnu.org>
17121
17122 Fix a significant slow-down of cursor motion with C-n, C-p,
17123 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
17124 auto-repeat under bidi redisplay in fontified buffers.
17125 * xdisp.c (compute_stop_pos_backwards): New function.
17126 (next_element_from_buffer): Call compute_stop_pos_backwards to
17127 find a suitable prev_stop when we find ourselves before
17128 base_level_stop.
17129 (reseat): Don't look for prev_stop, as that could mean a very long
17130 run.
17131 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
17132 <cached_disp_overlay_modiff>: Cache for last found display string
17133 position.
17134 (compute_display_string_pos): Return the cached position if asked
17135 about the same buffer in the same area of character positions, and
17136 the buffer wasn't changed since the time the display string
17137 position was cached.
17138
17139 2011-07-22 Eli Zaretskii <eliz@gnu.org>
17140
17141 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
17142 is an integer, which is important for empty lines. (Bug#9149)
17143
17144 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
17145
17146 * frame.c (Fmodify_frame_parameters): In tty case, update the
17147 default face if necessary (Bug#4238).
17148
17149 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
17150
17151 * editfns.c (Fstring_to_char): No need to explain what a character
17152 is in the docstring (Bug#6576).
17153
17154 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17155
17156 * xml.c (parse_region): Make sure we always return a tree.
17157
17158 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
17159
17160 * xml.c (parse_region): If a document contains only comments,
17161 return that, too.
17162
17163 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17164
17165 * xml.c (make_dom): Return comments, too.
17166
17167 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
17168
17169 Port to OpenBSD.
17170 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
17171 and the surrounding thread.
17172 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
17173 rather than fgets, and retry after EINTR. Otherwise, 'emacs
17174 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
17175 timer goes off.
17176 * s/openbsd.h (BROKEN_SIGIO): Define.
17177 * unexelf.c (unexec) [__OpenBSD__]:
17178 Don't update the .mdebug section of the Alpha COFF symbol table.
17179
17180 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
17181
17182 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
17183 (bug#8460).
17184
17185 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
17186
17187 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
17188 This fixes some race conditions on the permissions of any newly
17189 created file.
17190
17191 * alloc.c (valid_pointer_p): Use pipe, not open.
17192 This fixes some permissions issues when debugging.
17193
17194 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
17195 If fchown fails to set both uid and gid, try to set just gid,
17196 as that is sometimes allowed. Adjust the file's mode to eliminate
17197 setuid or setgid bits that are inappropriate if fchown fails.
17198
17199 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
17200
17201 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
17202 to compare Lisp_Objects.
17203 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
17204 global_gnutls_log_level, don't mistake it for a Lisp_Object.
17205 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
17206
17207 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
17208
17209 * lread.c (read_integer): Unread even EOF character.
17210 (read1): Likewise. Properly record start position of symbol.
17211
17212 * lread.c (read1): Read `#:' as empty uninterned symbol if no
17213 symbol character follows.
17214
17215 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
17216
17217 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
17218 This works around a problem with the previous change to Fcopy_file.
17219 Recent glibc declares fchown with __attribute__((warn_unused_result)),
17220 and without this change, GCC might complain about discarding
17221 fchown's return value.
17222
17223 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
17224
17225 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
17226
17227 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
17228
17229 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
17230
17231 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17232
17233 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17234 it's used from the C level.
17235
17236 * process.c: Use the same condition for POLL_FOR_INPUT in both
17237 keyboard.c and process.c (bug#1858).
17238
17239 2011-07-09 Lawrence Mitchell <wence@gmx.li>
17240
17241 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17242 (Fgnutls_boot): Use it.
17243
17244 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17245
17246 * doc.c (Fsubstitute_command_keys): Revert last change.
17247
17248 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17249
17250 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
17251 quotes the next character, and doesn't affect other longer
17252 sequences (bug#8935).
17253
17254 * lread.c (syms_of_lread): Clarify that is isn't only
17255 `eval-buffer' and `eval-defun' that's affected by
17256 `lexical-binding' (bug#8460).
17257
17258 2011-07-15 Eli Zaretskii <eliz@gnu.org>
17259
17260 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
17261 bidi redisplay when a line includes both an image and is truncated.
17262
17263 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
17264
17265 Fix minor problems found by static checking.
17266 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
17267 (elsz): Now a signed constant, not a size_t var. We prefer signed
17268 types to unsigned, to avoid integer comparison confusion. Without
17269 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
17270 "cannot optimize loop, the loop counter may overflow", a symptom
17271 of the confusion.
17272 * indent.c (Fvertical_motion): Mark locals as initialized.
17273 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
17274
17275 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17276
17277 * search.c (Fre_search_backward): Mention `case-fold-search' in
17278 all the re_search_* functions (bug#8138).
17279
17280 * keyboard.c (Fopen_dribble_file): Document when the file is
17281 closed (bug#8056).
17282
17283 2011-07-14 Eli Zaretskii <eliz@gnu.org>
17284
17285 * bidi.c (bidi_dump_cached_states): Fix format of displaying
17286 bidi_cache_idx.
17287
17288 Support bidi reordering of display and overlay strings.
17289 * xdisp.c (compute_display_string_pos)
17290 (compute_display_string_end): Accept additional argument STRING.
17291 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
17292 (reseat_to_string): Initialize bidi_it->string.s and
17293 bidi_it->string.schars.
17294 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
17295 NULL (avoids a crash in bidi_paragraph_init).
17296 Initialize itb.string.lstring.
17297 (init_iterator): Call bidi_init_it only of a valid
17298 buffer position was specified. Initialize paragraph_embedding to
17299 L2R.
17300 (reseat_to_string): Initialize the bidi iterator.
17301 (display_string): If we need to ignore text properties of
17302 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
17303 original value of -1 will not work with bidi.)
17304 (compute_display_string_pos): First arg is now struct
17305 `text_pos *'; all callers changed. Support display properties on
17306 Lisp strings.
17307 (compute_display_string_end): Support display properties on Lisp
17308 strings.
17309 (init_iterator, reseat_1, reseat_to_string): Initialize the
17310 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
17311 when iterating on a string not from display properties).
17312 (compute_display_string_pos, compute_display_string_end):
17313 Fix calculation of the object to scan. Fixes an error when using
17314 arrow keys.
17315 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
17316 base_level_stop; instead, set base_level_stop to BEGV.
17317 Fixes crashes in vertical-motion.
17318 (next_element_from_buffer): Improve commentary for when
17319 the iterator is before prev_stop.
17320 (init_iterator): Initialize bidi_p from the default value of
17321 bidi-display-reordering, not from buffer-local value. Use the
17322 buffer-local value only if initializing for buffer iteration.
17323 (handle_invisible_prop): Support invisible properties on strings
17324 that are being bidi-reordered.
17325 (set_iterator_to_next): Support bidi reordering of C strings and
17326 Lisp strings.
17327 (next_element_from_string): Support bidi reordering of Lisp
17328 strings.
17329 (handle_stop_backwards): Support Lisp strings as well.
17330 (display_string): Support display of R2L glyph rows.
17331 Use IT_STRING_CHARPOS when displaying from a Lisp string.
17332 (init_iterator): Don't initialize it->bidi_p for strings
17333 here.
17334 (reseat_to_string): Initialize it->bidi_p for strings here.
17335 (next_element_from_string, next_element_from_c_string)
17336 (next_element_from_buffer): Add xassert's for correspondence
17337 between IT's object being iterated and it->bidi_it.string
17338 structure.
17339 (face_before_or_after_it_pos): Support bidi iteration.
17340 (next_element_from_c_string): Handle the case of the first string
17341 character that is not the first one in the visual order.
17342 (get_visually_first_element): New function, refactored from common
17343 parts of next_element_from_buffer, next_element_from_string, and
17344 next_element_from_c_string.
17345 (tool_bar_lines_needed, redisplay_tool_bar)
17346 (display_menu_bar): Force left-to-right direction. Add a FIXME
17347 comment for making that be controlled by a user option.
17348 (push_it, pop_it): Save and restore the state of the
17349 bidi iterator. Save and restore the bidi_p flag.
17350 (pop_it): Iterate out of display property for string iteration as
17351 well.
17352 (iterate_out_of_display_property): Support iteration over strings.
17353 (handle_single_display_spec): Set up it->bidi_it for iteration
17354 over a display string, and call bidi_init_it.
17355 (handle_single_display_spec, next_overlay_string)
17356 (get_overlay_strings_1, push_display_prop): Set up the bidi
17357 iterator for displaying display or overlay strings.
17358 (forward_to_next_line_start): Don't use the shortcut if
17359 bidi-iterating.
17360 (back_to_previous_visible_line_start): If handle_display_prop
17361 pushed the iterator stack, restore the internal state of the bidi
17362 iterator by calling bidi_pop_it same number of times.
17363 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
17364 and we are bidi-iterating, don't decrement the iterator position;
17365 instead, set the first_elt flag in the bidi iterator, to produce
17366 the same effect.
17367 (reseat_1): Remove redundant setting of string_from_display_prop_p.
17368 (push_display_prop): xassert that we are iterating a buffer.
17369 (push_it, pop_it): Save and restore paragraph_embedding member.
17370 (handle_single_display_spec, next_overlay_string)
17371 (get_overlay_strings_1, reseat_1, reseat_to_string)
17372 (push_display_prop): Set up the `unibyte' member of bidi_it.string
17373 correctly. Don't assume unibyte strings are not bidi-reordered.
17374 (compute_display_string_pos)
17375 (compute_display_string_end): Fix handling the case of C string.
17376 (push_it, pop_it): Save and restore from_disp_prop_p.
17377 (handle_single_display_spec, push_display_prop): Set the
17378 from_disp_prop_p flag.
17379 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
17380 (pop_it): Call iterate_out_of_display_property only if we are
17381 popping after iteration over a string that came from a display
17382 property. Fix a typo in popping stretch info. Add an assertion
17383 for verifying that the iterator position is in sync with the bidi
17384 iterator.
17385 (handle_single_display_spec, get_overlay_strings_1)
17386 (push_display_prop): Fix initialization of paragraph direction for
17387 string when that of the parent object is not yet determined.
17388 (reseat_1): Call bidi_init_it to resync the bidi
17389 iterator with IT's position. (Bug#7616)
17390 (find_row_edges): If ROW->start.pos gives position
17391 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
17392 (handle_stop, back_to_previous_visible_line_start, reseat_1):
17393 Reset the from_disp_prop_p flag.
17394 (SAVE_IT, RESTORE_IT): New macros.
17395 (pos_visible_p, face_before_or_after_it_pos)
17396 (back_to_previous_visible_line_start)
17397 (move_it_in_display_line_to, move_it_in_display_line)
17398 (move_it_to, move_it_vertically_backward, move_it_by_lines)
17399 (try_scrolling, redisplay_window, display_line): Use them when
17400 saving a temporary copy of the iterator and restoring it back.
17401 (back_to_previous_visible_line_start, reseat_1)
17402 (init_iterator): Empty the bidi cache "stack".
17403 (move_it_in_display_line_to): If iterator ended up at
17404 EOL, but we never saw any buffer positions smaller than
17405 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
17406 motion in bidi-reordered lines.
17407 (move_it_in_display_line_to): Record prev_method and prev_pos
17408 immediately before the call to set_iterator_to_next. Fixes cursor
17409 motion in bidi-reordered lines with stretch glyphs and strings
17410 displayed in margins. (Bug#8133) (Bug#8867)
17411 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
17412 TO_CHARPOS.
17413 (pos_visible_p): Support positions in bidi-reordered lines.
17414 Save and restore bidi cache.
17415
17416 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17417 (bidi_paragraph_info): Delete unused struct.
17418 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17419 (bidi_cache_start): New variable.
17420 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17421 to zero.
17422 (bidi_cache_fetch_state, bidi_cache_search)
17423 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17424 (bidi_cache_find, bidi_peek_at_next_level)
17425 (bidi_level_of_next_char, bidi_find_other_level_edge)
17426 (bidi_move_to_visually_next): Compare cache index with
17427 bidi_cache_start rather than with zero.
17428 (bidi_fetch_char): Accept new argument STRING; all callers
17429 changed. Support iteration over a string. Support strings with
17430 display properties. Support unibyte strings. Fix the type of
17431 `len' according to what STRING_CHAR_AND_LENGTH expects.
17432 (bidi_paragraph_init, bidi_resolve_explicit_1)
17433 (bidi_resolve_explicit, bidi_resolve_weak)
17434 (bidi_level_of_next_char, bidi_move_to_visually_next):
17435 Support iteration over a string.
17436 (bidi_set_sor_type, bidi_resolve_explicit_1)
17437 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17438 can now be zero (for strings); special values 0 and -1 were
17439 changed to -1 and -2, respectively.
17440 (bidi_char_at_pos): New function.
17441 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17442 Call it instead of FETCH_MULTIBYTE_CHAR.
17443 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17444 initialized to valid values.
17445 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17446 values.
17447 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17448 the test for valid cached positions. Fix the logic for looking up
17449 the sentinel state in the cache. GCPRO the Lisp string we are
17450 iterating.
17451 (bidi_push_it, bidi_pop_it): New functions.
17452 (bidi_initialize): Initialize the bidi cache start stack pointer.
17453 (bidi_cache_ensure_space): New function, refactored from part of
17454 bidi_cache_iterator_state. Don't assume the required size is just
17455 one BIDI_CACHE_CHUNK away.
17456 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17457 (bidi_count_bytes, bidi_char_at_pos): New functions.
17458 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17459 always valid if bidi_cache_idx is valid.
17460 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17461 is valid if it's going to be used.
17462 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17463 (bidi_cache_fetch_state, bidi_cache_search)
17464 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17465 (bidi_cache_iterator_state, bidi_cache_find)
17466 (bidi_find_other_level_edge, bidi_cache_start_stack):
17467 All variables related to cache indices are now EMACS_INT.
17468
17469 * dispextern.h (struct bidi_string_data): New structure.
17470 (struct bidi_it): New member `string'. Make flag members be 1-bit
17471 fields, and put them last in the struct.
17472 (compute_display_string_pos, compute_display_string_end):
17473 Update prototypes.
17474 (bidi_push_it, bidi_pop_it): Add prototypes.
17475 (struct iterator_stack_entry): New members bidi_p,
17476 paragraph_embedding, and from_disp_prop_p.
17477 (struct it): Member bidi_p is now a bit field 1 bit wide.
17478 (bidi_shelve_cache, bidi_unshelve_cache):
17479 Declare prototypes.
17480
17481 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17482 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17483 and vector-like objects.
17484
17485 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17486 cache around display iteration.
17487
17488 * window.c (Fwindow_end, window_scroll_pixel_based)
17489 (displayed_window_lines, Frecenter): Save and restore the bidi
17490 cache around display iteration.
17491
17492 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17493
17494 * editfns.c (Fdelete_region): Clarify the use of the named
17495 parameters (bug#6788).
17496
17497 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17498
17499 * indent.c (Fvertical_motion): Set and restore w->pointm when
17500 saving and restoring the window's buffer (Bug#9006).
17501
17502 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17503
17504 * editfns.c (Fstring_to_char): Clarify just what is returned
17505 (bug#6576). Text by Eli Zaretskii.
17506
17507 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17508
17509 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17510
17511 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17512
17513 * buffer.c (mmap_find): Fix a typo.
17514
17515 2011-07-13 Johan Bockgård <bojohan@gnu.org>
17516
17517 Fix execution of x selection hooks.
17518 * xselect.c (Qx_lost_selection_functions)
17519 (Qx_sent_selection_functions): New vars.
17520 (syms_of_xselect): DEFSYM them.
17521 (x_handle_selection_request): Pass Qx_sent_selection_functions
17522 rather than Vx_sent_selection_functions to Frun_hook_with_args.
17523 (x_handle_selection_clear,x_clear_frame_selections):
17524 Pass Qx_lost_selection_functions rather than
17525 Vx_lost_selection_functions to Frun_hook_with_args.
17526
17527 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17528
17529 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
17530 The old code sometimes used this field without initializing it.
17531
17532 * alloc.c (gc_sweep): Don't read past end of array.
17533 In theory, the old code could also have corrupted Emacs internals,
17534 though it'd be very unlikely.
17535
17536 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17537
17538 * character.c (Fcharacterp): Don't advertise optional ignored
17539 argument. (Bug#4026)
17540
17541 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17542
17543 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17544 key" (bug#4257).
17545
17546 * window.c (Fset_window_start): Doc fix (bug#4199).
17547 (Fset_window_hscroll): Ditto.
17548
17549 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17550
17551 Fix minor new problems caught by GCC 4.6.1.
17552 * term.c (init_tty): Remove unused local.
17553 * xsettings.c (store_monospaced_changed): Define this function only
17554 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
17555 not used otherwise.
17556
17557 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
17558
17559 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17560
17561 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17562
17563 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
17564 are the mini-buffer and the echo area (bug#3320).
17565
17566 * term.c (init_tty): Remove support for supdup, c10 and perq
17567 terminals, which are no longer supported (bug#1482).
17568
17569 2011-07-10 Johan Bockgård <bojohan@gnu.org>
17570
17571 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17572
17573 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
17574
17575 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
17576 for non-popups (Bug#3642).
17577
17578 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17579
17580 * alloc.c (reset_malloc_hooks): Protoize.
17581 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
17582 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17583 * cm.c (losecursor): Likewise.
17584 * data.c (fmod): Likewise.
17585 * dispnew.c (swap_glyphs_in_rows): Likewise.
17586 * emacs.c (memory_warning_signal): Likewise.
17587 * floatfns.c (float_error): Likewise.
17588 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
17589 (otf_open, font_otf_capability, generate_otf_features)
17590 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17591 Likewise.
17592 * image.c (pbm_read_file): Likewise.
17593 * indent.c (string_display_width): Likewise.
17594 * intervals.c (check_for_interval, search_for_interval)
17595 (inc_interval_count, count_intervals, root_interval)
17596 (adjust_intervals_for_insertion, make_new_interval): Likewise.
17597 * lread.c (defalias): Likewise.
17598 * ralloc.c (r_alloc_check): Likewise.
17599 * regex.c (set_image_of_range_1, set_image_of_range)
17600 (regex_grow_registers): Likewise.
17601 * sysdep.c (strerror): Likewise.
17602 * termcap.c (valid_filename_p, tprint, main): Likewise.
17603 * tparam.c (main): Likewise.
17604 * unexhp9k800.c (run_time_remap, save_data_space)
17605 (update_file_ptrs, read_header, write_header, calculate_checksum)
17606 (copy_file, copy_rest, display_header): Likewise.
17607 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
17608 Likewise.
17609 * xdisp.c (check_it): Likewise.
17610 * xfaces.c (register_color, unregister_color, unregister_colors):
17611 Likewise.
17612 * xfns.c (print_fontset_result): Likewise.
17613 * xrdb.c (member, fatal, main): Likewise.
17614
17615 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
17616
17617 Fix minor problems found by static checking (Bug#9031).
17618 * chartab.c (char_table_set_range, map_sub_char_table):
17619 Remove unused locals.
17620 (uniprop_table): Now static.
17621 * composite.c (_work_char): Remove unused static var.
17622
17623 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
17624
17625 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17626
17627 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17628
17629 * gtkutil.c (qttip_cb): Remove code without function.
17630
17631 2011-07-09 Eli Zaretskii <eliz@gnu.org>
17632
17633 * w32.c (pthread_sigmask): New stub.
17634
17635 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
17636
17637 Use pthread_sigmask, not sigprocmask (Bug#9010).
17638 sigprocmask is portable only for single-threaded applications, and
17639 Emacs can be multi-threaded when it uses GTK.
17640 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
17641 (LIBES): Use it.
17642 * callproc.c (Fcall_process):
17643 * process.c (create_process):
17644 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
17645 Use pthread_sigmask, not sigprocmask.
17646
17647 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17648
17649 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
17650 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
17651 wrong (Bug#8591).
17652
17653 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17654
17655 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
17656 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
17657 (xg_hide_tooltip): Fix comment.
17658
17659 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
17660 in registerServicesMenuSendTypes.
17661 (validRequestorForSendType): Don't check ns_return_types.
17662
17663 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
17664 ns_return_type.
17665
17666 2011-07-08 Jason Rumney <jasonr@gnu.org>
17667
17668 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17669 SH_SHOW for hidden windows (Bug#5482).
17670
17671 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17672 frame struct members of non-existent frames (Bug#6284).
17673
17674 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17675
17676 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
17677 variable firstTime not needed on OSX >= 10.6.
17678 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
17679 >= 10.5. Use setKnobProportion, setDoubleValue.
17680
17681 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
17682 (MAC_OS_X_VERSION_10_5): Define if not defined.
17683 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
17684 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
17685 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
17686
17687 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
17688 cString and lossyCString on OSX >= 10.4.
17689
17690 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
17691 sizeToFit on OSX >= 10.2.
17692
17693 * nsimage.m (allocInitFromFile): Don't use deprecated method
17694 bestRepresentationForDevice on OSX >= 10.6.
17695
17696 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
17697 to avoid warning.
17698
17699 * emacs.c: Declare unexec_init_emacs_zone.
17700
17701 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17702
17703 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
17704
17705 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
17706 on svcsMenu (Bug#8842).
17707
17708 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
17709 ns_return_types.
17710 (Fns_list_services): Just return Qnil on 10.6, code not working there.
17711
17712 * nsterm.m (QUTF8_STRING): Declare.
17713 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
17714 (validRequestorForSendType): Return type is (id).
17715 Change indexOfObjectIdenticalTo to indexOfObject.
17716 Check if we have local selection before returning self (Bug#8842).
17717 (writeSelectionToPasteboard): Put local selection into paste board
17718 if we have a local selection (Bug#8842).
17719 (syms_of_nsterm): DEFSYM QUTF8_STRING.
17720
17721 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
17722 (ns_get_local_selection): Declare.
17723
17724 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17725
17726 * keymap.c (describe_map_tree): Don't insert a double newline at
17727 the end of the buffer (bug#1169) and return whether we inserted
17728 something.
17729
17730 * callint.c (Fcall_interactively): Change "reading args" to
17731 "providing args" to try to clarify what it does (bug#1010).
17732
17733 2011-07-07 Kenichi Handa <handa@m17n.org>
17734
17735 * composite.c (composition_compute_stop_pos): Ignore a static
17736 composition starting before CHARPOS (Bug#8915).
17737
17738 * xdisp.c (handle_composition_prop): Likewise.
17739
17740 2011-07-07 Eli Zaretskii <eliz@gnu.org>
17741
17742 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17743 (Bug#9015)
17744
17745 2011-07-07 Kenichi Handa <handa@m17n.org>
17746
17747 * character.h (unicode_category_t): New enum type.
17748
17749 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
17750 (Qchar_code_property_table): New variable.
17751 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
17752 (UNIPROP_COMPRESSED_FORM_P): New macros.
17753 (char_table_ascii): Uncompress the compressed values.
17754 (sub_char_table_ref): New arg is_uniprop. Callers changed.
17755 Uncompress the compressed values.
17756 (sub_char_table_ref_and_range): Likewise.
17757 (char_table_ref_and_range): Uncompress the compressed values.
17758 (sub_char_table_set): New arg is_uniprop. Callers changed.
17759 Uncompress the compressed values.
17760 (sub_char_table_set_range): Args changed. Callers changed.
17761 (char_table_set_range): Adjuted for the above change.
17762 (map_sub_char_table): Delete args default_val and parent. Add arg
17763 top. Give decoded values to a Lisp function.
17764 (map_char_table): Adjust for the above change. Give decoded
17765 values to a Lisp function. Gcpro more variables.
17766 (uniprop_table_uncompress)
17767 (uniprop_decode_value_run_length): New functions.
17768 (uniprop_decoder, uniprop_decoder_count): New variables.
17769 (uniprop_get_decoder, uniprop_encode_value_character)
17770 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
17771 New functions.
17772 (uniprop_encoder, uniprop_encoder_count): New variables.
17773 (uniprop_get_encoder, uniprop_table)
17774 (Funicode_property_table_internal, Fget_unicode_property_internal)
17775 (Fput_unicode_property_internal): New functions.
17776 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
17777 Sunicode_property_table_internal, Sget_unicode_property_internal,
17778 and Sput_unicode_property_internal. Defvar_lisp
17779 char-code-property-alist.
17780
17781 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
17782 Vunicode_category_table.
17783
17784 * font.c (font_range): Adjust for the change of
17785 Vunicode_category_table.
17786
17787 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17788
17789 * m/iris4d.h: Remove file, move contents ...
17790 * s/irix6-5.h: ... here.
17791
17792 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17793
17794 Remove unportable assumption about struct layout (Bug#8884).
17795 * alloc.c (mark_buffer):
17796 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17797 (clone_per_buffer_values): Don't assume that
17798 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
17799 This isn't true in general, and it's particularly not true
17800 if Emacs is configured with --with-wide-int.
17801 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
17802 New macros, used in the buffer.c change.
17803
17804 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
17805
17806 * xsettings.c: Use both GConf and GSettings if both are available.
17807 (store_config_changed_event): Add comment.
17808 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
17809 (store_tool_bar_style_changed): New functions.
17810 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
17811 (struct xsettings): Move font inside HAVE_XFT.
17812 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
17813 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
17814 Move inside HAVE_XFT.
17815 (something_changed_gsettingsCB): Rename from something_changedCB.
17816 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
17817 also.
17818 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
17819 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
17820 (something_changed_gconfCB): Rename from something_changedCB.
17821 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
17822 (parse_settings): Move check for font inside HAVE_XFT.
17823 (read_settings, apply_xft_settings): Add comment.
17824 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
17825 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
17826 call store_font_name_changed.
17827 (xft_settings_event): Add comment.
17828 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
17829 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
17830 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
17831 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
17832 (xsettings_initialize): Call init_gsettings last.
17833 (xsettings_get_system_font, xsettings_get_system_normal_font):
17834 Add comment.
17835
17836 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
17837
17838 Random fixes. E.g., (random) never returned negative values.
17839 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
17840 subseconds part to the entropy, as that's a bit more random.
17841 Prefer signed to unsigned, since the signedness doesn't matter and
17842 in general we prefer signed. When given a limit, use a
17843 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
17844 latter isn't right if USE_2_TAGS_FOR_INTS.
17845 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
17846 not 0..VALMASK. Don't discard "excess" bits that random () returns.
17847
17848 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17849
17850 * textprop.c (text_property_stickiness):
17851 Obey Vtext_property_default_nonsticky.
17852 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
17853 * w32fns.c (syms_of_w32fns):
17854 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
17855
17856 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17857
17858 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
17859 This is more efficient than Ffile_directory_p and avoids a minor race.
17860
17861 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17862
17863 * buffer.c (Foverlay_put): Say what the return value is
17864 (bug#7835).
17865
17866 * fileio.c (barf_or_query_if_file_exists): Check first if the file
17867 is a directory before asking whether to use the file name
17868 (bug#7564).
17869 (barf_or_query_if_file_exists): Make the "File is a directory"
17870 error be more correct.
17871
17872 * fns.c (Frequire): Remove the mention of the .gz files, since
17873 that's installation-specific, but keep the mention of
17874 `get-load-suffixes'.
17875
17876 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17877
17878 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
17879 Report string overflow if the output is too long.
17880
17881 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17882
17883 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
17884 (syms_of_gnutls): Remove duplicate DEFSYM for
17885 Qgnutls_bootprop_verify_hostname_error, an error for
17886 Qgnutls_bootprop_verify_error (which is no longer used).
17887
17888 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
17889 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
17890 Also (re)move comments that are misplaced or no longer relevant.
17891
17892 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17893
17894 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17895
17896 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17897
17898 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
17899 and background color parameters if they have been changed.
17900
17901 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17902
17903 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17904
17905 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17906
17907 * xsettings.c (SYSTEM_FONT): Define only when used.
17908 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17909
17910 * keymap.c (access_keymap_1): Now static.
17911
17912 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
17913
17914 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
17915 leave any prefix arg for the up event (Bug#1586).
17916
17917 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17918
17919 * lread.c (syms_of_lread): Mention single symbols defined by
17920 `defvar' or `defconst' (bug#7154).
17921
17922 * fns.c (Frequire): Mention .el.gz files (bug#7314).
17923 (Frequire): Mention get-load-suffixes.
17924
17925 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17926
17927 * window.h (window): Remove clone_number slot.
17928 * window.c (Fwindow_clone_number, Fset_window_clone_number):
17929 Remove.
17930 (make_parent_window, make_window, saved_window)
17931 (Fset_window_configuration, save_window_save): Don't deal with
17932 clone numbers.
17933 * buffer.c (Qclone_number): Remove declaration.
17934 (sort_overlays, overlay_strings): Don't deal with clone numbers.
17935
17936 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17937
17938 Add multiple inheritance to keymaps.
17939 * keymap.c (Fmake_composed_keymap): New function.
17940 (Fset_keymap_parent): Simplify.
17941 (fix_submap_inheritance): Remove.
17942 (access_keymap_1): New function extracted from access_keymap to handle
17943 embedded parents and handle lists of maps.
17944 (access_keymap): Use it.
17945 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
17946 (Fcopy_keymap): Handle embedded parents.
17947 (Fcommand_remapping, define_as_prefix): Simplify.
17948 (Fkey_binding): Simplify.
17949 (syms_of_keymap): Move minibuffer-local-completion-map,
17950 minibuffer-local-filename-completion-map,
17951 minibuffer-local-must-match-map, and
17952 minibuffer-local-filename-must-match-map to Elisp.
17953 (syms_of_keymap): Defsubr make-composed-keymap.
17954 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
17955 (parse_menu_item): Trivial simplification.
17956
17957 2011-07-01 Glenn Morris <rgm@gnu.org>
17958
17959 * Makefile.in (SETTINGS_LIBS): Fix typo.
17960
17961 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
17962
17963 * coding.c (Fencode_coding_string): Record the last coding system
17964 used, as the function doc string says (bug#8738).
17965
17966 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
17967
17968 * xsettings.c (store_monospaced_changed): Take new font as arg and
17969 check for change against current_mono_font.
17970 (EMACS_TYPE_SETTINGS): Remove this and related defines.
17971 (emacs_settings_constructor, emacs_settings_get_property)
17972 (emacs_settings_set_property, emacs_settings_class_init)
17973 (emacs_settings_init, gsettings_obj): Remove.
17974 (something_changedCB): New function for HAVE_GSETTINGS.
17975 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
17976 with value as argument.
17977 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
17978 g_settings_new (Bug#8967). Do not create gsettings_obj.
17979 Remove calls to g_settings_bind. Connect something_changedCB to
17980 "changed".
17981
17982 * xgselect.c: Add defined (HAVE_GSETTINGS).
17983 (xgselect_initialize): Ditto.
17984
17985 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
17986 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
17987 xg_select.
17988
17989 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17990
17991 * eval.c (struct backtrace): Simplify and port the data structure.
17992 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
17993 signed bit field, as this assumption is not portable and it makes
17994 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
17995 "char debug_on_exit : 1" as this is not portable either; instead,
17996 use the portable "unsigned int debug_on_exit : 1". Remove unused
17997 member evalargs. Remove obsolete comments about cc bombing out.
17998
17999 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
18000
18001 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
18002 Let HAVE_GSETTINGS override HAVE_GCONF.
18003 (store_monospaced_changed): New function.
18004 (EMACS_SETTINGS): A new type derived from GObject to handle
18005 GSettings notifications.
18006 (emacs_settings_constructor, emacs_settings_get_property)
18007 (emacs_settings_set_property, emacs_settings_class_init):
18008 New functions.
18009 (gsettings_client, gsettings_obj): New variables.
18010 (GSETTINGS_SCHEMA): New define.
18011 (something_changedCB): Call store_monospaced_changed.
18012 (init_gsettings): New function.
18013 (xsettings_initialize): Call init_gsettings.
18014 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
18015 to NULL.
18016
18017 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
18018 GCONF_CFLAGS/LIBS.
18019
18020 2011-06-29 Martin Rudalics <rudalics@gmx.at>
18021
18022 * window.c (resize_root_window, grow_mini_window)
18023 (shrink_mini_window): Rename Qresize_root_window to
18024 Qwindow_resize_root_window and Qresize_root_window_vertically to
18025 Qwindow_resize_root_window_vertically.
18026
18027 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
18028
18029 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
18030
18031 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
18032
18033 * makefile.w32-in: Redesign dependencies so they reflect more
18034 clearly which files are directly included by each source file,
18035 and not through other includes.
18036
18037 2011-06-27 Martin Rudalics <rudalics@gmx.at>
18038
18039 * buffer.c (Qclone_number): Declare static and DEFSYM it.
18040 (sort_overlays, overlay_strings): When an overlay's clone number
18041 matches the window's clone number process the overlay even if
18042 the overlay's window property doesn't match the current window.
18043
18044 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
18045 (Fwindow_hchild): Rename to Fwindow_left_child.
18046 (Fwindow_next): Rename to Fwindow_next_sibling.
18047 (Fwindow_prev): Rename to Fwindow_prev_sibling.
18048 (resize_window_check): Rename to window_resize_check.
18049 (resize_window_apply): Rename to window_resize_apply.
18050 (Fresize_window_apply): Rename to Fwindow_resize_apply.
18051 (Fdelete_other_windows_internal, resize_frame_windows)
18052 (Fsplit_window_internal, Fdelete_window_internal)
18053 (grow_mini_window, shrink_mini_window)
18054 (Fresize_mini_window_internal): Fix callers accordingly.
18055
18056 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
18057
18058 * emacsgtkfixed.h: State that this is only used with Gtk+3.
18059 (emacs_fixed_set_min_size): Remove.
18060 (emacs_fixed_new): Take frame as argument.
18061
18062 * emacsgtkfixed.c: State that this is only used with Gtk+3.
18063 (_EmacsFixedPrivate): Remove minwidth/height.
18064 Add struct frame *f.
18065 (emacs_fixed_init): Initialize priv->f.
18066 (get_parent_class, emacs_fixed_set_min_size): Remove.
18067 (emacs_fixed_new): Set priv->f to argument.
18068 (emacs_fixed_get_preferred_width)
18069 (emacs_fixed_get_preferred_height): Use min_width/height from
18070 frames size_hint to set minimum and natural (Bug#8919).
18071 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
18072 and use min_width/height from frames size_hint to set
18073 min_width/height (Bug#8919).
18074
18075 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
18076 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
18077 Fix indentation.
18078
18079 2011-06-26 Eli Zaretskii <eliz@gnu.org>
18080
18081 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
18082 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
18083 called at ZV.
18084
18085 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
18086
18087 * process.c (wait_reading_process_output): Bypass select if
18088 waiting for a cell while ignoring keyboard input, and input is
18089 pending. Suggested by Jan Djärv (Bug#8869).
18090
18091 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
18092
18093 Use gnulib's dup2 module instead of rolling our own.
18094 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
18095
18096 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
18097
18098 * dispnew.c (scrolling_window): Before scrolling, turn off a
18099 mouse-highlight in the window being scrolled.
18100
18101 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
18102
18103 Move DEFSYM to lisp.h and use everywhere.
18104
18105 * character.h (DEFSYM): Move declaration...
18106 * lisp.h (DEFSYM): ...here.
18107
18108 * gnutls.c:
18109 * minibuf.c:
18110 * w32menu.c:
18111 * w32proc.c:
18112 * w32select.c: Don't include character.h.
18113
18114 * alloc.c (syms_of_alloc):
18115 * buffer.c (syms_of_buffer):
18116 * bytecode.c (syms_of_bytecode):
18117 * callint.c (syms_of_callint):
18118 * casefiddle.c (syms_of_casefiddle):
18119 * casetab.c (init_casetab_once):
18120 * category.c (init_category_once, syms_of_category):
18121 * ccl.c (syms_of_ccl):
18122 * cmds.c (syms_of_cmds):
18123 * composite.c (syms_of_composite):
18124 * dbusbind.c (syms_of_dbusbind):
18125 * dired.c (syms_of_dired):
18126 * dispnew.c (syms_of_display):
18127 * doc.c (syms_of_doc):
18128 * editfns.c (syms_of_editfns):
18129 * emacs.c (syms_of_emacs):
18130 * eval.c (syms_of_eval):
18131 * fileio.c (syms_of_fileio):
18132 * fns.c (syms_of_fns):
18133 * frame.c (syms_of_frame):
18134 * fringe.c (syms_of_fringe):
18135 * insdel.c (syms_of_insdel):
18136 * keymap.c (syms_of_keymap):
18137 * lread.c (init_obarray, syms_of_lread):
18138 * macros.c (syms_of_macros):
18139 * msdos.c (syms_of_msdos):
18140 * print.c (syms_of_print):
18141 * process.c (syms_of_process):
18142 * search.c (syms_of_search):
18143 * sound.c (syms_of_sound):
18144 * syntax.c (init_syntax_once, syms_of_syntax):
18145 * terminal.c (syms_of_terminal):
18146 * textprop.c (syms_of_textprop):
18147 * undo.c (syms_of_undo):
18148 * w32.c (globals_of_w32):
18149 * window.c (syms_of_window):
18150 * xdisp.c (syms_of_xdisp):
18151 * xfaces.c (syms_of_xfaces):
18152 * xfns.c (syms_of_xfns):
18153 * xmenu.c (syms_of_xmenu):
18154 * xsettings.c (syms_of_xsettings):
18155 * xterm.c (syms_of_xterm): Use DEFSYM.
18156
18157 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
18158
18159 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
18160
18161 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
18162
18163 Integer and buffer overflow fixes (Bug#8873).
18164
18165 * print.c (printchar, strout): Check for string overflow.
18166 (PRINTPREPARE, printchar, strout):
18167 Don't set size unless allocation succeeds.
18168
18169 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
18170 for sizes. Check for string overflow more accurately.
18171 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
18172
18173 * macros.c: Integer and buffer overflow fixes.
18174 * keyboard.h (struct keyboard.kbd_macro_bufsize):
18175 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
18176 Use ptrdiff_t, not int, for sizes.
18177 Don't increment bufsize until after realloc succeeds.
18178 Check for size-calculation overflow.
18179 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
18180
18181 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
18182
18183 * lread.c: Integer overflow fixes.
18184 (read_integer): Radix is now EMACS_INT, not int,
18185 to improve quality of diagnostics for out-of-range radices.
18186 Calculate buffer size correctly for out-of-range radices.
18187 (read1): Check for integer overflow in radices, and in
18188 read-circle numbers.
18189 (read_escape): Avoid int overflow.
18190 (Fload, openp, read_buffer_size, read1)
18191 (substitute_object_recurse, read_vector, read_list, map_obarray):
18192 Use ptrdiff_t, not int, for sizes.
18193 (read1): Use EMACS_INT, not int, for sizes.
18194 Check for size overflow.
18195
18196 * image.c (cache_image): Check for size arithmetic overflow.
18197
18198 * lread.c: Integer overflow issues.
18199 (saved_doc_string_size, saved_doc_string_length)
18200 (prev_saved_doc_string_size, prev_saved_doc_string_length):
18201 Now ptrdiff_t, not int.
18202 (read1): Don't assume doc string length fits in int. Check for
18203 out-of-range doc string lengths.
18204 (read_list): Don't assume file position fits in int.
18205 (read_escape): Check for hex character overflow.
18206
18207 2011-06-22 Leo Liu <sdl.web@gmail.com>
18208
18209 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
18210 Move to minibuffer.el.
18211
18212 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18213
18214 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
18215 The following patches are for when GLYPH_DEBUG && !XASSERT.
18216 * dispextern.h (trace_redisplay_p, dump_glyph_string):
18217 * dispnew.c (flush_stdout):
18218 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
18219 Mark as externally visible.
18220 * dispnew.c (check_window_matrix_pointers): Now static.
18221 * dispnew.c (window_to_frame_vpos):
18222 * xfns.c (unwind_create_frame):
18223 * xterm.c (x_check_font): Remove unused local.
18224 * scroll.c (CHECK_BOUNDS):
18225 * xfaces.c (cache_fache): Rename local to avoid shadowing.
18226 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
18227 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
18228 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
18229 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
18230 Now static.
18231 (debug_method_add): Use va_list and vsprintf rather than relying
18232 on undefined behavior with wrong number of arguments.
18233 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
18234 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
18235 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
18236 since we're not interested in debugging glyphs with old libraries.
18237 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
18238 GCC 4.6.0's static checking.
18239
18240 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18241
18242 Integer overflow and signedness fixes (Bug#8873).
18243 A few related buffer overrun fixes, too.
18244
18245 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18246
18247 * dispextern.h (struct face.stipple):
18248 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
18249 (x_bitmap_mask, x_allocate_bitmap_record)
18250 (x_create_bitmap_from_data, x_create_bitmap_from_file)
18251 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
18252 (x_create_bitmap_from_xpm_data):
18253 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
18254 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
18255 (.bitmaps_last):
18256 * xfaces.c (load_pixmap):
18257 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
18258 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
18259 (.bitmaps_last, struct x_output.icon_bitmap):
18260 Use ptrdiff_t, not int, for bitmap indexes.
18261 (x_allocate_bitmap_record): Check for size overflow.
18262 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
18263
18264 Use ptrdiff_t, not int, for overlay counts.
18265 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
18266 * editfns.c (overlays_around, get_pos_property):
18267 * textprop.c (get_char_property_and_overlay):
18268 * xdisp.c (next_overlay_change, note_mouse_highlight):
18269 * xfaces.c (face_at_buffer_position):
18270 * buffer.c (OVERLAY_COUNT_MAX): New macro.
18271 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
18272 (Fnext_overlay_change, Fprevious_overlay_change)
18273 (mouse_face_overlay_overlaps, Foverlays_in):
18274 Use ptrdiff_t, not int, for sizes.
18275 (overlays_at, overlays_in): Check for size-calculation overflow.
18276
18277 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
18278
18279 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
18280 (x_session_initialize): Do not assume string length fits in int.
18281
18282 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
18283 This is unlikely, but can occur if DPI is outlandish.
18284
18285 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
18286 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
18287
18288 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
18289 * xrdb.c (magic_file_p, search_magic_path):
18290 Omit last arg SUFFIX; it was always 0. All callers changed.
18291 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
18292
18293 * xfont.c (xfont_match): Avoid need for strlen.
18294
18295 * xfns.c: Don't assume strlen fits in int.
18296 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
18297
18298 * xdisp.c (message_log_check_duplicate): Return intmax_t,
18299 not unsigned long, as we prefer signed integers. All callers changed.
18300 Detect integer overflow in repeat count.
18301 (message_dolog): Don't assume print length fits in 39 bytes.
18302 (display_mode_element): Don't assume strlen fits in int.
18303
18304 * termcap.c: Don't assume sizes fit in int and never overflow.
18305 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
18306 (gobble_line): Check for size-calculation overflow.
18307
18308 * minibuf.c (Fread_buffer):
18309 * lread.c (intern, intern_c_string):
18310 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
18311 Don't assume string length fits in int.
18312
18313 * keyboard.c (parse_tool_bar_item):
18314 * gtkutil.c (style_changed_cb): Avoid need for strlen.
18315
18316 * font.c: Don't assume string length fits in int.
18317 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
18318 Use ptrdiff_t, not int.
18319 (font_intern_prop): Don't assume string length fits in int.
18320 Don't assume integer property fits in fixnum.
18321 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
18322
18323 * filelock.c: Fix some buffer overrun and integer overflow issues.
18324 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
18325 Reformulate so as not to need the command string.
18326 Invoke gzip -cd rather than gunzip, as it's more portable.
18327 (lock_info_type, lock_file_1, lock_file):
18328 Don't assume pid_t and time_t fit in unsigned long.
18329 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
18330 (current_lock_owner): Prefer signed type for sizes.
18331 Use memcpy, not strncpy, where memcpy is what is really wanted.
18332 Don't assume (via atoi) that time_t and pid_t fit in int.
18333 Check for time_t and/or pid_t out of range, e.g., via a network share.
18334 Don't alloca where an auto var works fine.
18335
18336 * fileio.c: Fix some integer overflow issues.
18337 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
18338 Don't assume string length fits in int.
18339 (directory_file_name): Don't assume string length fits in long.
18340 (make_temp_name): Don't assume pid fits in int, or that its print
18341 length is less than 20.
18342
18343 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
18344
18345 * coding.c (make_subsidiaries): Don't assume string length fits in int.
18346
18347 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
18348
18349 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
18350 We prefer signed integers, even for size calculations.
18351
18352 * emacs.c: Don't assume string length fits in 'int'.
18353 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
18354 (main): Don't invoke strlen when not needed.
18355
18356 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
18357 (XD_DEBUG_MESSAGE): Don't waste a byte.
18358
18359 * callproc.c (getenv_internal_1, getenv_internal)
18360 (Fgetenv_internal):
18361 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
18362
18363 * lread.c (invalid_syntax): Omit length argument.
18364 All uses changed. This doesn't fix a bug, but it simplifies the
18365 code away from its former Hollerith-constant appearance, and it's
18366 one less 'int' to worry about when looking at integer-overflow issues.
18367 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
18368
18369 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
18370 This didn't break anything, but it didn't help either.
18371 It's confusing to put a bogus integer in a place where the actual
18372 value does not matter.
18373 (LIST_END_P): Remove unused macro and its bogus comment.
18374 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
18375
18376 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
18377 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
18378 implementation.
18379 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
18380 We prefer signed types, and the value cannot exceed the EMACS_INT
18381 range anyway (because otherwise the length would not be representable).
18382 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
18383 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
18384 This avoids a GCC warning when WIDE_EMACS_INT.
18385
18386 * indent.c (sane_tab_width): New function.
18387 (current_column, scan_for_column, Findent_to, position_indentation)
18388 (compute_motion): Use it. This is just for clarity.
18389 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
18390
18391 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
18392
18393 * lisp.h (lint_assume): New macro.
18394 * composite.c (composition_gstring_put_cache):
18395 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
18396
18397 * editfns.c, insdel.c:
18398 Omit unnecessary forward decls, to simplify future changes.
18399
18400 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18401
18402 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18403
18404 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
18405 Use much-faster test for byte-length change.
18406 Don't assume string byte-length fits in 'int'.
18407 Check that character arg fits in 'int'.
18408 (mapcar1): Declare byte as byte, for clarity.
18409
18410 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18411
18412 * fns.c (concat): Catch string overflow earlier.
18413 Do not rely on integer wraparound.
18414
18415 * dispextern.h (struct it.overlay_strings_charpos)
18416 (struct it.selective): Now EMACS_INT, not int.
18417 * xdisp.c (forward_to_next_line_start)
18418 (back_to_previous_visible_line_start)
18419 (reseat_at_next_visible_line_start, next_element_from_buffer):
18420 Don't arbitrarily truncate the value of 'selective' to int.
18421
18422 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18423
18424 * composite.c: Don't truncate sizes to 'int'.
18425 (composition_gstring_p, composition_reseat_it)
18426 (composition_adjust_point): Use EMACS_INT, not int.
18427 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18428 not EMACS_UINT, for indexes.
18429
18430 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18431
18432 * buffer.c: Include <verify.h>.
18433 (struct sortvec.priority, struct sortstr.priority):
18434 Now EMACS_INT, not int.
18435 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18436 (struct sortstr.size, record_overlay_string)
18437 (struct sortstrlist.size, struct sortlist.used):
18438 Don't truncate size to int.
18439 (record_overlay_string): Check for size-calculation overflow.
18440 (init_buffer_once): Check at compile-time, not run-time.
18441
18442 2011-06-22 Jim Meyering <meyering@redhat.com>
18443
18444 Don't leak an XBM-image-sized buffer
18445 * image.c (xbm_load): Free the image buffer after using it.
18446
18447 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18448
18449 Port to Sun C.
18450 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18451 that Sun C diagnosed.
18452 * fns.c (secure_hash): Fix pointer signedness issue.
18453 * intervals.c (static_offset_intervals): New function.
18454 (offset_intervals): Use it.
18455
18456 2011-06-21 Leo Liu <sdl.web@gmail.com>
18457
18458 * deps.mk (fns.o):
18459 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18460 sha512.h.
18461
18462 * fns.c (secure_hash): Rename from crypto_hash_function and change
18463 the first arg to accept symbols.
18464 (Fsecure_hash): New primitive.
18465 (syms_of_fns): New symbols.
18466
18467 2011-06-20 Deniz Dogan <deniz@dogan.se>
18468
18469 * process.c (Fset_process_buffer): Clarify return value in
18470 docstring.
18471
18472 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18473
18474 * dispnew.c (add_window_display_history): Use BVAR.
18475
18476 * xdisp.c (debug_method_add): Use BVAR.
18477 (check_window_end, dump_glyph_matrix, dump_glyph)
18478 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18479
18480 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18481 Likewise.
18482
18483 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18484 check till after the cache is created in init_frame_faces.
18485
18486 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18487
18488 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18489
18490 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18491
18492 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18493 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18494 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18495
18496 Improve buffer-overflow checking (Bug#8873).
18497 * fileio.c (Finsert_file_contents):
18498 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18499 Remove the old (too-loose) buffer overflow checks.
18500 They weren't needed, since make_gap checks for buffer overflow.
18501 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18502 The old code merely checked for Emacs fixnum overflow, and relied
18503 on undefined (wraparound) behavior. The new code avoids undefined
18504 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18505
18506 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18507 Tune. Don't use wider integers than needed. Don't use alloca.
18508 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18509
18510 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18511
18512 * insdel.c, lisp.h (buffer_overflow): New function.
18513 (insert_from_buffer_1, replace_range, replace_range_2):
18514 * insdel.c (make_gap_larger):
18515 * editfns.c (Finsert_char):
18516 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
18517
18518 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18519
18520 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18521
18522 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
18523
18524 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18525 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18526
18527 * fileio.c: Don't assume EMACS_INT fits in off_t.
18528 (emacs_lseek): New static function.
18529 (Finsert_file_contents, Fwrite_region): Use it.
18530 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
18531
18532 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18533
18534 * fns.c: Don't overflow int when computing a list length.
18535 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
18536 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
18537 truncation on 64-bit hosts. Check for QUIT every
18538 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
18539 faster and is responsive enough.
18540 (Flength): Report an error instead of overflowing an integer.
18541 (Fsafe_length): Return a float if the value is not representable
18542 as a fixnum. This shouldn't happen except in contrived situations.
18543 (Fnthcdr, Fsort): Don't assume list length fits in int.
18544 (Fcopy_sequence): Don't assume vector length fits in int.
18545
18546 * alloc.c: Check that resized vectors' lengths fit in fixnums.
18547 (header_size, word_size): New constants.
18548 (allocate_vectorlike): Don't check size overflow here.
18549 (allocate_vector): Check it here instead, since this is the only
18550 caller of allocate_vectorlike that could cause overflow.
18551 Check that the new vector's length is representable as a fixnum.
18552
18553 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
18554 The previous code was bogus. For example, next_almost_prime (32)
18555 returned 39, which is undesirable as it is a multiple of 3; and
18556 next_almost_prime (24) returned 25, which is a multiple of 5 so
18557 why was the code bothering to check for multiples of 7?
18558
18559 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18560
18561 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18562
18563 Variadic C functions now count arguments with ptrdiff_t.
18564 This partly undoes my 2011-03-30 change, which replaced int with size_t.
18565 Back then I didn't know that the Emacs coding style prefers signed int.
18566 Also, in the meantime I found a few more instances where arguments
18567 were being counted with int, which may truncate counts on 64-bit
18568 machines, or EMACS_INT, which may be unnecessarily wide.
18569 * lisp.h (struct Lisp_Subr.function.aMANY)
18570 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
18571 Arg counts are now ptrdiff_t, not size_t.
18572 All variadic functions and their callers changed accordingly.
18573 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
18574 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
18575 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
18576 * callint.c (Fcall_interactively): Check arg count for overflow,
18577 to avoid potential buffer overrun. Use signed char, not 'int',
18578 for 'varies' array, so that we needn't bother to check its size
18579 calculation for overflow.
18580 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
18581 * eval.c (apply_lambda):
18582 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
18583 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
18584 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
18585
18586 * callint.c (Fcall_interactively): Don't use index var as event count.
18587
18588 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18589 * mem-limits.h (SIZE): Remove; no longer used.
18590
18591 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
18592
18593 Remove unnecessary casts.
18594 * xterm.c (x_term_init):
18595 * xfns.c (x_set_border_pixel):
18596 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
18597 These aren't needed now that we assume ANSI C.
18598
18599 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
18600 It's more likely to cause problems (due to unsigned overflow)
18601 than to cure them.
18602
18603 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18604
18605 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18606
18607 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18608
18609 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18610
18611 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18612
18613 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18614
18615 GLYPH_CODE_FACE returns EMACS_INT, not int.
18616 * dispextern.h (merge_faces):
18617 * xfaces.c (merge_faces):
18618 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18619 Don't assume EMACS_INT fits in int.
18620
18621 * character.h (CHAR_VALID_P): Remove unused parameter.
18622 * fontset.c, lisp.h, xdisp.c: All uses changed.
18623
18624 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18625
18626 * fns.c (concat): Minor tuning based on overflow analysis.
18627 This doesn't fix any bugs. Use int to hold character, instead
18628 of constantly refetching from Emacs object. Use XFASTINT, not
18629 XINT, for value known to be a character. Don't bother comparing
18630 a single byte to 0400, as it's always less.
18631
18632 * floatfns.c (Fexpt):
18633 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18634
18635 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18636 for characters.
18637
18638 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18639
18640 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
18641 Without this fix, on a 64-bit host (aset S 0 4294967386) would
18642 incorrectly succeed when S was a string, because 4294967386 was
18643 truncated before it was used.
18644
18645 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
18646 Otherwise, an out-of-range integer could cause undefined behavior
18647 on a 64-bit host.
18648
18649 * composite.c: Use int, not EMACS_INT, for characters.
18650 (fill_gstring_body, composition_compute_stop_pos): Use int, not
18651 EMACS_INT, for values that are known to be in character range.
18652 This doesn't fix any bugs but is the usual style inside Emacs and
18653 may generate better code on 32-bit machines.
18654
18655 Make sure a 64-bit char is never passed to ENCODE_CHAR.
18656 This is for reasons similar to the recent CHAR_STRING fix.
18657 * charset.c (Fencode_char): Check that character arg is actually
18658 a character. Pass an int to ENCODE_CHAR.
18659 * charset.h (ENCODE_CHAR): Verify that the character argument is no
18660 wider than 'int', as a compile-time check to prevent future regressions
18661 in this area.
18662
18663 * character.c (char_string): Remove unnecessary casts.
18664
18665 Make sure a 64-bit char is never passed to CHAR_STRING.
18666 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
18667 by silently ignoring the top 32 bits, allowing some values
18668 that were far too large to be valid characters.
18669 * character.h: Include <verify.h>.
18670 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
18671 arguments are no wider than unsigned, as a compile-time check
18672 to prevent future regressions in this area.
18673 * data.c (Faset):
18674 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
18675 (Fsubst_char_in_region):
18676 * fns.c (concat):
18677 * xdisp.c (decode_mode_spec_coding):
18678 Adjust to CHAR_STRING's new requirement.
18679 * editfns.c (Finsert_char, Fsubst_char_in_region):
18680 * fns.c (concat): Check that character args are actually
18681 characters. Without this test, these functions did the wrong
18682 thing with wildly out-of-range values on 64-bit hosts.
18683
18684 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
18685 These casts should not be needed on 32-bit hosts, either.
18686 * keyboard.c (read_char):
18687 * lread.c (Fload): Remove casts to unsigned.
18688
18689 * lisp.h (UNSIGNED_CMP): New macro.
18690 This fixes comparison bugs on 64-bit hosts.
18691 (ASCII_CHAR_P): Use it.
18692 * casefiddle.c (casify_object):
18693 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
18694 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
18695 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
18696 * dispextern.h (FACE_FROM_ID):
18697 * keyboard.c (read_char): Use UNSIGNED_CMP.
18698
18699 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18700 not to EMACS_INT, to avoid GCC warning.
18701
18702 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18703
18704 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
18705 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
18706 isn't needed on 32-bit machines.
18707
18708 * buffer.c (Fgenerate_new_buffer_name):
18709 Use EMACS_INT for count, not int.
18710 (advance_to_char_boundary): Return EMACS_INT, not int.
18711
18712 * data.c (Qcompiled_function): Now static.
18713
18714 * window.c (window_body_lines): Now static.
18715
18716 * image.c (gif_load): Rename local to avoid shadowing.
18717
18718 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
18719 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
18720 * alloc.c (make_save_value): Integer argument is now of type
18721 ptrdiff_t, not int.
18722 (mark_object): Use ptrdiff_t, not int.
18723 * lisp.h (pD): New macro.
18724 * print.c (print_object): Use it.
18725
18726 * alloc.c: Use EMACS_INT, not int, to count objects.
18727 (total_conses, total_markers, total_symbols, total_vector_size)
18728 (total_free_conses, total_free_markers, total_free_symbols)
18729 (total_free_floats, total_floats, total_free_intervals)
18730 (total_intervals, total_strings, total_free_strings):
18731 Now EMACS_INT, not int. All uses changed.
18732 (Fgarbage_collect): Compute overall total using a double, so that
18733 integer overflow is less likely to be a problem. Check for overflow
18734 when converting back to an integer.
18735 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
18736 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
18737 These were 'int' variables that could overflow on 64-bit hosts;
18738 they were never used, so remove them instead of repairing them.
18739 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
18740 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
18741 Previously, this ceilinged at INT_MAX, but that doesn't work on
18742 64-bit machines.
18743 (allocate_pseudovector): Don't use EMACS_INT when int would do.
18744
18745 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
18746 (allocate_vectorlike): Check for ptrdiff_t overflow.
18747 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
18748 when a (possibly-narrower) signed value would do just as well.
18749 We prefer using signed arithmetic, to avoid comparison confusion.
18750
18751 * alloc.c: Catch some string size overflows that we were missing.
18752 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
18753 for convenience in STRING_BYTES_MAX.
18754 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
18755 The definition here is exact; the one in lisp.h was approximate.
18756 (allocate_string_data): Check for string overflow. This catches
18757 some instances we weren't catching before. Also, it catches
18758 size_t overflow on (unusual) hosts where SIZE_MAX <= min
18759 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
18760 and ptrdiff_t and EMACS_INT are both 64 bits.
18761
18762 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18763 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
18764 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
18765
18766 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18767
18768 * alloc.c (Fmake_string): Check for out-of-range init.
18769
18770 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18771
18772 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18773
18774 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
18775
18776 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
18777 xg_get_default_scrollbar_width.
18778
18779 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
18780 (int_gtk_range_get_value): Move to the scroll bar part of the file.
18781 (style_changed_cb): Call update_theme_scrollbar_width and call
18782 x_set_scroll_bar_default_width and xg_frame_set_char_size for
18783 all frames (Bug#8505).
18784 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
18785 Call gtk_window_set_resizable if HAVE_GTK3.
18786 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
18787 and height if HAVE_GTK3 (Bug#8505).
18788 (scroll_bar_width_for_theme): New variable.
18789 (update_theme_scrollbar_width): New function.
18790 (xg_get_default_scrollbar_width): Move code to
18791 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
18792 (xg_initialize): Call update_theme_scrollbar_width.
18793
18794 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
18795
18796 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
18797
18798 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18799
18800 * frame.c (make_frame): Call other_buffer_safely instead of
18801 other_buffer.
18802
18803 * window.c (temp_output_buffer_show): Call display_buffer with
18804 second argument Vtemp_buffer_show_specifiers and reset latter
18805 immediately after the call.
18806 (Vtemp_buffer_show_specifiers): New variable.
18807 (auto_window_vscroll_p, next_screen_context_lines)
18808 (Vscroll_preserve_screen_position): Remove leading asterisks from
18809 doc-strings.
18810
18811 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
18812
18813 Fix minor problems found by GCC 4.6.0 static checking.
18814 * buffer.c (Qclone_number): Remove for now, as it's unused.
18815 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
18816 (record_buffer): Remove unused local.
18817 * frame.c (other_visible_frames, frame_buffer_list): Now static.
18818 (set_frame_buffer_list): Remove; unused.
18819 * frame.h (other_visible_frames): Remove decl.
18820 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
18821 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
18822 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
18823 if HAVE_GPM.
18824 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
18825 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18826 Define only if HAVE_GPM.
18827 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
18828 (update_hints_inhibit): Remove; never set. All uses removed.
18829 * widgetprv.h (emacsFrameClassRec): Remove decl.
18830 * window.c (delete_deletable_window): Now returns void, since it
18831 wasn't returning anything.
18832 (compare_window_configurations): Remove unused locals.
18833 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
18834 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
18835 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
18836 the same widths as pointers. This follows up on the 2011-05-06 patch.
18837 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
18838 * xterm.h: Likewise.
18839 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
18840
18841 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
18842
18843 * makefile.w32-in: Update dependencies.
18844 (LISP_H): Add lib/intprops.h.
18845
18846 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18847
18848 * image.c (gif_load): Add animation frame delay to the metadata.
18849 (syms_of_image): Use DEFSYM. New symbol `delay'.
18850
18851 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18852
18853 * window.c (delete_deletable_window): Re-add.
18854 (Fset_window_configuration): Rewrite to handle dead buffers and
18855 consequently deletable windows.
18856 (window_tree, Fwindow_tree): Remove. Supply functionality in
18857 window.el.
18858 (compare_window_configurations): Simplify code.
18859
18860 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18861
18862 * image.c (imagemagick_load_image): Fix type mismatch.
18863 (Fimagemagick_types): Likewise.
18864
18865 * window.h (replace_buffer_in_windows): Declare.
18866
18867 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18868
18869 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
18870 Qclone_number. Remove external declaration of Qdelete_window.
18871 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
18872 code.
18873 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18874 Run Qbuffer_list_update_hook if allowed.
18875 (Fother_buffer): Rewrite doc-string. Major rewrite for new
18876 buffer list implementation.
18877 (other_buffer_safely): New function.
18878 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
18879 calls to replace_buffer_in_windows and
18880 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
18881 if allowed.
18882 (record_buffer): Inhibit quitting and rewrite using quittable
18883 functions. Run Qbuffer_list_update_hook if allowed.
18884 (Frecord_buffer, Funrecord_buffer): New functions.
18885 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18886 Move switch-to-buffer to window.el.
18887 (bury-buffer): Move to window.el.
18888 (Vbuffer_list_update_hook): New variable.
18889
18890 * lisp.h (other_buffer_safely): Add prototype in buffer.c
18891 section.
18892
18893 * window.h (resize_frame_windows): Move up in code.
18894 (Fwindow_frame): Remove EXFUN.
18895 (replace_buffer_in_all_windows): Remove prototype.
18896 (replace_buffer_in_windows_safely): Add prototype.
18897
18898 * window.c: Declare Qdelete_window static again. Move down
18899 declaration of select_count.
18900 (Fnext_window, Fprevious_window): Rewrite doc-strings.
18901 (Fother_window): Move to window.el.
18902 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
18903 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
18904 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
18905 window.el.
18906 (replace_buffer_in_windows): Implement by calling
18907 Qreplace_buffer_in_windows.
18908 (replace_buffer_in_all_windows): Remove with some functionality
18909 moved into replace_buffer_in_windows_safely.
18910 (replace_buffer_in_windows_safely): New function.
18911 (select_window_norecord, select_frame_norecord): Move in front
18912 of run_window_configuration_change_hook. Remove now obsolete
18913 declarations.
18914 (Fset_window_buffer): Rewrite doc-string.
18915 Call Qrecord_window_buffer.
18916 (keys_of_window): Move binding for other-window to window.el.
18917
18918 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18919
18920 * dispextern.h (struct image): Replace data member, whose int_val
18921 and ptr_val fields were not used by anything, with a single
18922 lisp_val object.
18923
18924 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
18925 (gif_clear_image, gif_load, imagemagick_load_image)
18926 (gs_clear_image, gs_load): Callers changed.
18927
18928 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18929
18930 * buffer.h: Include <time.h>, for time_t.
18931 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18932
18933 Fix minor problems found by static checking.
18934
18935 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18936
18937 Make identifiers static if they are not used in other modules.
18938 * data.c (Qcompiled_function, Qframe, Qvector):
18939 * image.c (QimageMagick, Qsvg):
18940 * minibuf.c (Qmetadata):
18941 * window.c (resize_window_check, resize_root_window): Now static.
18942 * window.h (resize_window_check, resize_root_window): Remove decls.
18943
18944 * window.c (window_deletion_count, delete_deletable_window):
18945 Remove; unused.
18946 (window_body_lines): Now static.
18947 (Fdelete_other_windows_internal): Mark vars as initialized.
18948 Make sure 'resize_failed' is initialized.
18949 (run_window_configuration_change_hook): Rename local to avoid shadowing.
18950 (resize_window_apply): Remove unused local.
18951 * window.h (delete_deletable_window): Remove decl.
18952
18953 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
18954 (imagemagick_load_image): Fix pointer signedness problem by changing
18955 last arg from unsigned char * to char *. All uses changed.
18956 Also, fix a local for similar reasons.
18957 Remove unused locals. Remove locals to avoid shadowing.
18958 (fn_rsvg_handle_free): Remove; unused.
18959 (svg_load, svg_load_image): Fix pointer signedness problem.
18960 (imagemagick_load_image): Don't use garbage pointer image_wand.
18961
18962 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18963
18964 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
18965
18966 * image.c (gif_load): Fix omitted cast error introduced by
18967 2011-06-06 change.
18968
18969 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18970
18971 * window.h (resize_proportionally, orig_total_lines)
18972 (orig_top_line): Remove from window structure.
18973 (set_window_height, set_window_width, change_window_heights)
18974 (Fdelete_window): Remove prototypes.
18975 (resize_frame_windows): Remove duplicate declaration.
18976
18977 2011-06-10 Eli Zaretskii <eliz@gnu.org>
18978
18979 * window.h (resize_frame_windows, resize_window_check)
18980 (delete_deletable_window, resize_root_window)
18981 (resize_frame_windows): Declare prototypes.
18982
18983 * window.c (resize_window_apply): Make definition be "static" to
18984 match the prototype.
18985
18986 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18987
18988 * window.c: Remove declarations of Qwindow_size_fixed,
18989 window_min_size_1, window_min_size_2, window_min_size,
18990 size_window, window_fixed_size_p, enlarge_window, delete_window.
18991 Remove static from declaration of Qdelete_window, it's
18992 temporarily needed by Fbury_buffer.
18993 (replace_window): Don't assign orig_top_line and
18994 orig_total_lines.
18995 (Fdelete_window, delete_window): Remove. Window deletion is
18996 handled by window.el.
18997 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18998 Replace Fdelete_window calls with calls to Qdelete_window.
18999 (Fdelete_other_windows): Remove. Deleting other windows is
19000 handled by window.el.
19001 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
19002 handled in window.el.
19003 (window_min_size_2, window_min_size_1, window_min_size): Remove.
19004 Window minimum sizes are handled in window.el.
19005 (shrink_windows, size_window, set_window_height)
19006 (set_window_width, change_window_heights, window_height)
19007 (window_width, CURBEG, CURSIZE, enlarge_window)
19008 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
19009 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
19010 handled in window.el.
19011 (make_dummy_parent): Rename to make_parent_window and give it a
19012 second argument horflag.
19013 (make_window): Don't set resize_proportionally any more.
19014 (Fsplit_window): Remove. Windows are split in window.el.
19015 (save_restore_action, save_restore_orig_size)
19016 (shrink_window_lowest_first, save_restore_orig_size): Remove.
19017 Resize mini windows in window.el.
19018 (grow_mini_window, shrink_mini_window): Implement by calling
19019 Qresize_root_window_vertically, resize_window_check and
19020 resize_window_apply.
19021 (saved_window, Fset_window_configuration, save_window_save):
19022 Do not handle orig_top_line, orig_total_lines, and
19023 resize_proportionally.
19024 (window_min_height, window_min_width): Move to window.el.
19025 (keys_of_window): Move bindings for delete-other-windows,
19026 split-window, delete-window and enlarge-window to window.el.
19027
19028 * buffer.c: Temporarily extern Qdelete_window.
19029 (Fbury_buffer): Temporarily call Qdelete_window instead of
19030 Fdelete_window (Fbury_buffer will move to window.el soon).
19031
19032 * frame.c (set_menu_bar_lines_1): Remove code handling
19033 orig_top_line and orig_total_lines.
19034
19035 * dispnew.c (adjust_frame_glyphs_initially): Don't use
19036 set_window_height but set heights directly.
19037 (change_frame_size_1): Use resize_frame_windows.
19038
19039 * xdisp.c (init_xdisp): Don't use set_window_height but set
19040 heights directly.
19041
19042 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
19043 Use resize_frame_windows instead of change_window_heights and run
19044 run_window_configuration_change_hook.
19045
19046 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
19047 instead of change_window_heights and run
19048 run_window_configuration_change_hook.
19049
19050 2011-06-09 Martin Rudalics <rudalics@gmx.at>
19051
19052 * window.c (replace_window): Rename second argument REPLACEMENT to
19053 NEW. New third argument SETFLAG. Rewrite.
19054 (delete_window, make_dummy_parent): Call replace_window with
19055 third argument 1.
19056 (window_list_1): Move down in code.
19057 (run_window_configuration_change_hook): Move set_buffer part
19058 before select_frame_norecord part in order to unwind correctly.
19059 Rename count1 to count.
19060 (recombine_windows, delete_deletable_window, resize_root_window)
19061 (Fdelete_other_windows_internal)
19062 (Frun_window_configuration_change_hook, make_parent_window)
19063 (resize_window_check, resize_window_apply, Fresize_window_apply)
19064 (resize_frame_windows, Fsplit_window_internal)
19065 (Fdelete_window_internal, Fresize_mini_window_internal):
19066 New functions.
19067 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
19068
19069 2011-06-08 Martin Rudalics <rudalics@gmx.at>
19070
19071 * window.h (window): Add some new members to window structure -
19072 normal_lines, normal_cols, new_total, new_normal, clone_number,
19073 splits, nest, prev_buffers, next_buffers.
19074 (WINDOW_TOTAL_SIZE): Move here from window.c.
19075 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
19076
19077 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
19078 Remove.
19079 (make_dummy_parent): Set new members of windows structure.
19080 (make_window): Move down in code. Handle new members of window
19081 structure.
19082 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
19083 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
19084 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
19085 (Fset_window_prev_buffers, Fwindow_next_buffers)
19086 (Fset_window_next_buffers, Fset_window_clone_number):
19087 New functions.
19088 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
19089 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
19090 Doc-string fixes.
19091 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
19092 Argument WINDOW can be now internal window too.
19093 (Fwindow_use_time): Move up in code.
19094 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
19095 Rewrite doc-string.
19096 (Fset_window_configuration, saved_window)
19097 (Fcurrent_window_configuration, save_window_save): Handle new
19098 members of window structure.
19099 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
19100 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
19101 (syms_of_window): New Lisp objects Qrecord_window_buffer,
19102 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
19103 Qget_mru_window, Qresize_root_window,
19104 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
19105 Qauto_buffer_name; staticpro them.
19106
19107 2011-06-07 Martin Rudalics <rudalics@gmx.at>
19108
19109 * window.c (Fwindow_total_size, Fwindow_left_column)
19110 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
19111 (Fwindow_list_1): New functions.
19112 (window_box_text_cols): Replace with window_body_cols.
19113 (Fwindow_width, Fscroll_left, Fscroll_right):
19114 Use window_body_cols instead of window_box_text_cols.
19115 (delete_window, Fset_window_configuration):
19116 Call delete_all_subwindows with window as argument.
19117 (delete_all_subwindows): Take a window as argument and not a
19118 structure. Rewrite.
19119 (window_loop): Remove handling of GET_LRU_WINDOW and
19120 GET_LARGEST_WINDOW.
19121 (Fget_lru_window, Fget_largest_window): Move to window.el.
19122
19123 * window.h: Extern window_body_cols instead of
19124 window_box_text_cols. delete_all_subwindows now takes a
19125 Lisp_Object as argument.
19126
19127 * indent.c (compute_motion, Fcompute_motion):
19128 Use window_body_cols instead of window_box_text_cols.
19129
19130 * frame.c (delete_frame): Call delete_all_subwindows with root
19131 window as argument.
19132
19133 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
19134
19135 * fns.c (Fputhash): Document return value.
19136
19137 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
19138
19139 * image.c (gif_load): Implement gif89a spec "no disposal" method.
19140
19141 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19142
19143 Cons<->int and similar integer overflow fixes (Bug#8794).
19144
19145 Check for overflow when converting integer to cons and back.
19146 * charset.c (Fdefine_charset_internal, Fdecode_char):
19147 Use cons_to_unsigned to catch overflow.
19148 (Fencode_char): Use INTEGER_TO_CONS.
19149 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
19150 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
19151 * data.c (long_to_cons, cons_to_long): Remove.
19152 (cons_to_unsigned, cons_to_signed): New functions.
19153 These signal an error for invalid or out-of-range values.
19154 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
19155 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
19156 * font.c (Ffont_variation_glyphs):
19157 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
19158 * lisp.h: Include <intprops.h>.
19159 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
19160 (cons_to_signed, cons_to_unsigned): New decls.
19161 (long_to_cons, cons_to_long): Remove decls.
19162 * undo.c (record_first_change): Use INTEGER_TO_CONS.
19163 (Fprimitive_undo): Use CONS_TO_INTEGER.
19164 * xfns.c (Fx_window_property): Likewise.
19165 * xselect.c: Include <limits.h>.
19166 (x_own_selection, selection_data_to_lisp_data):
19167 Use INTEGER_TO_CONS.
19168 (x_handle_selection_request, x_handle_selection_clear)
19169 (x_get_foreign_selection, Fx_disown_selection_internal)
19170 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
19171 (lisp_data_to_selection_data): Use cons_to_unsigned.
19172 (x_fill_property_data): Use cons_to_signed.
19173 Report values out of range.
19174
19175 Check for buffer and string overflow more precisely.
19176 * buffer.h (BUF_BYTES_MAX): New macro.
19177 * lisp.h (STRING_BYTES_MAX): New macro.
19178 * alloc.c (Fmake_string):
19179 * character.c (string_escape_byte8):
19180 * coding.c (coding_alloc_by_realloc):
19181 * doprnt.c (doprnt):
19182 * editfns.c (Fformat):
19183 * eval.c (verror):
19184 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
19185 since they may not be the same number.
19186 * editfns.c (Finsert_char):
19187 * fileio.c (Finsert_file_contents):
19188 Likewise for BUF_BYTES_MAX.
19189
19190 * image.c: Use ptrdiff_t, not int, for sizes.
19191 (slurp_file): Switch from int to ptrdiff_t.
19192 All uses changed.
19193 (slurp_file): Check that file size fits in both size_t (for
19194 malloc) and ptrdiff_t (for sanity and safety).
19195
19196 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
19197 if b->modtime has its maximal value.
19198
19199 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
19200
19201 Don't assume time_t can fit into int.
19202 * buffer.h (struct buffer.modtime): Now time_t, not int.
19203 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
19204 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
19205
19206 Minor fixes for signed vs unsigned integers.
19207 * character.h (MAYBE_UNIFY_CHAR):
19208 * charset.c (maybe_unify_char):
19209 * keyboard.c (read_char, reorder_modifiers):
19210 XINT -> XFASTINT, since the integer must be nonnegative.
19211 * ftfont.c (ftfont_spec_pattern):
19212 * keymap.c (access_keymap, silly_event_symbol_error):
19213 XUINT -> XFASTINT, since the integer must be nonnegative.
19214 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
19215 since it makes no difference and we prefer signed.
19216 * keyboard.c (record_char): Use XUINT when all the neighbors do.
19217 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
19218 nonnegative.
19219
19220 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
19221
19222 * window.h (Fwindow_frame): Declare.
19223
19224 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19225
19226 * alloc.c: Simplify handling of large-request failures (Bug#8800).
19227 (SPARE_MEMORY): Always define.
19228 (LARGE_REQUEST): Remove.
19229 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
19230
19231 2011-06-06 Martin Rudalics <rudalics@gmx.at>
19232
19233 * lisp.h: Move EXFUNS for Fframe_root_window,
19234 Fframe_first_window and Fset_frame_selected_window to window.h.
19235
19236 * window.h: Move EXFUNS for Fframe_root_window,
19237 Fframe_first_window and Fset_frame_selected_window here from
19238 lisp.h.
19239
19240 * frame.c (Fwindow_frame, Fframe_first_window)
19241 (Fframe_root_window, Fframe_selected_window)
19242 (Fset_frame_selected_window): Move to window.c.
19243 (Factive_minibuffer_window): Move to minibuf.c.
19244 (Fother_visible_frames_p): New function.
19245
19246 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
19247
19248 * window.c (decode_window, decode_any_window): Move up in code.
19249 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
19250 (inhibit_frame_unsplittable): Remove unused variable.
19251 (Fwindow_buffer): Move up and rewrite doc-string.
19252 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
19253 (Fwindow_prev): New functions.
19254 (Fwindow_frame): Move here from frame.c. Accept any window as
19255 argument.
19256 (Fframe_root_window, Fframe_first_window)
19257 (Fframe_selected_window): Move here from frame.c. Accept frame
19258 or arbitrary window as argument. Update doc-strings.
19259 (Fminibuffer_window): Move up in code.
19260 (Fwindow_minibuffer_p): Move up in code and simplify.
19261 (Fset_frame_selected_window): Move here from frame.c.
19262 Marginal rewrite.
19263 (Fselected_window, select_window, Fselect_window): Move up in
19264 code. Minor doc-string fixes.
19265
19266 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19267
19268 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
19269 Do not assume that spare memory exists; that assumption is valid
19270 only if SYSTEM_MALLOC.
19271 (LARGE_REQUEST): New macro, so that the issue of large requests
19272 is separated from the issue of spare memory.
19273
19274 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
19275
19276 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
19277 format. (Bug#8806)
19278
19279 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
19280
19281 * xfns.c (x_set_scroll_bar_default_width): Move declarations
19282 before statements.
19283
19284 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
19285
19286 * gtkutil.c (xg_get_default_scrollbar_width): New function.
19287
19288 * gtkutil.h: Declare xg_get_default_scrollbar_width.
19289
19290 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
19291 min width by calling x_set_scroll_bar_default_width (Bug#8505).
19292
19293 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
19294
19295 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
19296
19297 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
19298
19299 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
19300 (x_clipboard_manager_save): Add return value.
19301 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
19302 New error handlers.
19303 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
19304 Obey Vx_select_enable_clipboard_manager. Catch errors in
19305 x_clipboard_manager_save (Bug#8779).
19306 (Vx_select_enable_clipboard_manager): New variable.
19307 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
19308
19309 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
19310
19311 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
19312
19313 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19314
19315 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
19316 in the current matrix if keep_current_p is non-zero.
19317
19318 2011-06-04 Eli Zaretskii <eliz@gnu.org>
19319
19320 * bidi.c (bidi_level_of_next_char): Fix last change.
19321
19322 2011-06-03 Eli Zaretskii <eliz@gnu.org>
19323
19324 Support bidi reordering of text covered by display properties.
19325
19326 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
19327 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
19328 (bidi_cache_search, bidi_cache_iterator_state)
19329 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
19330 (bidi_level_of_next_char, bidi_move_to_visually_next):
19331 Support character positions inside a run of characters covered by a
19332 display string.
19333 (bidi_paragraph_init, bidi_resolve_explicit_1)
19334 (bidi_level_of_next_char): Call bidi_fetch_char and
19335 bidi_fetch_char_advance instead of FETCH_CHAR and
19336 FETCH_CHAR_ADVANCE.
19337 (bidi_init_it): Initialize new members.
19338 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
19339 definitions.
19340 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
19341 instead of using explicit *_CHAR codes.
19342 (bidi_resolve_explicit, bidi_resolve_weak):
19343 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
19344 bidirectional text is supported only in multibyte buffers.
19345 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
19346 it to initialize the frame_window_p member of struct bidi_it.
19347 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
19348 (bidi_resolve_explicit, bidi_resolve_weak)
19349 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
19350 bidi_it->nchars is non-positive.
19351 (bidi_level_of_next_char): Don't try to lookup the cache for the
19352 next/previous character if nothing is cached there yet, or if we
19353 were just reseat()'ed to a new position.
19354
19355 * xdisp.c (set_cursor_from_row): Set start and stop points
19356 according to the row's direction when priming the loop that looks
19357 for the glyph on which to display cursor.
19358 (single_display_spec_intangible_p): Function deleted.
19359 (display_prop_intangible_p): Reimplement to call
19360 handle_display_spec instead of single_display_spec_intangible_p.
19361 Accept 3 additional arguments needed by handle_display_spec.
19362 This fixes incorrect cursor motion across display property with complex
19363 values: lists, `(when COND...)' forms, etc.
19364 (single_display_spec_string_p): Support property values that are
19365 lists with the argument STRING its top-level element.
19366 (display_prop_string_p): Fix the condition for processing a
19367 property that is a list to be consistent with handle_display_spec.
19368 (handle_display_spec): New function, refactored from the
19369 last portion of handle_display_prop.
19370 (compute_display_string_pos): Accept additional argument
19371 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
19372 value of a `display' property is a "replacing spec".
19373 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
19374 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
19375 the display property, but just return a value indicating whether
19376 the display property will replace the characters it covers.
19377 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
19378 frame_window_p members of struct bidi_it.
19379 (compute_display_string_pos, compute_display_string_end):
19380 New functions.
19381 (push_it): Accept second argument POSITION, where pop_it should
19382 jump to continue iteration.
19383 (reseat_1): Initialize bidi_it.disp_pos.
19384
19385 * keyboard.c (adjust_point_for_property): Adjust the call to
19386 display_prop_intangible_p to its new signature.
19387
19388 * dispextern.h (struct bidi_it): New member frame_window_p.
19389 (bidi_init_it): Update prototypes.
19390 (display_prop_intangible_p): Update prototype.
19391 (compute_display_string_pos, compute_display_string_end):
19392 Declare prototypes.
19393 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19394 EMACS_INT.
19395
19396 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
19397
19398 Malloc failure behavior now depends on size of allocation.
19399 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
19400 * lisp.h: Change signatures accordingly.
19401 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
19402 All callers changed. (Bug#8762)
19403
19404 * gnutls.c: Use Emacs's memory allocators.
19405 Without this change, the gnutls library would invoke malloc etc.
19406 directly, which causes problems on non-SYNC_INPUT hosts, and which
19407 runs afoul of improving memory_full behavior. (Bug#8761)
19408 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
19409 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
19410 xfree instead of the default malloc, realloc, free.
19411 (Fgnutls_boot): No need to check for memory allocation failure,
19412 since xmalloc does that for us.
19413
19414 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
19415 * category.c (hash_get_category_set):
19416 * ccl.c (ccl_driver):
19417 * charset.c (Fdefine_charset_internal):
19418 * charset.h (struct charset.hash_index):
19419 * composite.c (get_composition_id, gstring_lookup_cache)
19420 (composition_gstring_put_cache):
19421 * composite.h (struct composition.hash_index):
19422 * dispextern.h (struct image.hash):
19423 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19424 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19425 (hashfn_equal, hashfn_user_defined, make_hash_table)
19426 (maybe_resize_hash_table, hash_lookup, hash_put)
19427 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19428 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19429 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19430 * image.c (make_image, search_image_cache, lookup_image)
19431 (xpm_put_color_table_h):
19432 * lisp.h (struct Lisp_Hash_Table):
19433 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19434 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19435 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19436 * alloc.c (allocate_vectorlike):
19437 Check for overflow in vector size calculations.
19438 * ccl.c (ccl_driver):
19439 Check for overflow when converting EMACS_INT to int.
19440 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19441 need to be updated by these changes.
19442 * fns.c (make_hash_table, maybe_resize_hash_table):
19443 Check for integer overflow with large hash tables.
19444 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19445 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19446 (SXHASH_REDUCE): New macro.
19447 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19448 Use it instead of discarding useful hash info with large hash values.
19449 (sxhash_float): New function.
19450 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19451 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19452 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19453 Rewrite to use FIXNUM_BITS, as this simplifies things.
19454 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19455 Adjust signatures to match updated version of code.
19456 (consing_since_gc): Now EMACS_INT, since a single hash table can
19457 use more than INT_MAX bytes.
19458
19459 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19460
19461 Make it possible to build with GCC-4.6+ -O2 -flto.
19462
19463 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19464
19465 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19466
19467 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19468 Call minibuffer-inactive-mode.
19469
19470 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19471
19472 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19473 Update dependencies.
19474
19475 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19476
19477 * data.c (init_data): Remove code for UTS, this system is not
19478 supported anymore.
19479
19480 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19481
19482 Don't force ./temacs to start in terminal mode.
19483
19484 * frame.c (make_initial_frame): Initialize faces in all cases, not
19485 only when CANNOT_DUMP is defined.
19486 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19487
19488 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19489
19490 * dispnew.c (add_window_display_history): Use const for the string
19491 pointer. Remove declaration, not needed.
19492
19493 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19494
19495 Use 'inline', not 'INLINE'.
19496 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19497 * alloc.c, fontset.c (INLINE): Remove.
19498 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19499 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19500 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19501 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19502 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19503
19504 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19505
19506 Make it possible to run ./temacs.
19507
19508 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19509 syms_of_callproc does the same thing. Remove test for
19510 "initialized", do it in the caller.
19511 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19512
19513 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
19514
19515 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
19516 (read_minibuf): Use get_minibuffer.
19517 (syms_of_minibuf): Use DEFSYM.
19518 (Qmetadata): New var.
19519 * data.c (Qbuffer): Don't make it static.
19520 (syms_of_data): Use DEFSYM.
19521
19522 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19523
19524 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
19525 (CCL_CODE_MIN): New macro.
19526
19527 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19528
19529 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19530
19531 * eval.c (Qdebug): Now static.
19532 * lisp.h (Qdebug): Remove decl. This reverts a part of the
19533 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
19534 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
19535
19536 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19537
19538 * image.c: Various fixes to ImageMagick code comments.
19539 (Fimagemagick_types): Doc fix.
19540
19541 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19542
19543 Minor fixes prompted by GCC 4.6.0 warnings.
19544
19545 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19546
19547 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
19548 (x_clipboard_manager_save_all): Move extern decl to ...
19549 * xterm.h: ... here, so that it can be checked for consistency.
19550
19551 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19552
19553 * xselect.c (x_clipboard_manager_save_frame)
19554 (x_clipboard_manager_save_all): New functions.
19555 (Fx_clipboard_manager_save): Lisp function deleted.
19556
19557 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
19558 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
19559
19560 * xterm.h: Update prototype.
19561
19562 2011-05-28 William Xu <william.xwl@gmail.com>
19563
19564 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19565 exiting (Bug#8239).
19566
19567 2011-05-28 Jim Meyering <meyering@redhat.com>
19568
19569 Avoid a sign-extension bug in crypto_hash_function.
19570 * fns.c (to_uchar): Define.
19571 (crypto_hash_function): Use it to convert some newly-signed
19572 variables to unsigned, to avoid sign-extension bugs. For example,
19573 without this change, (md5 "truc") would evaluate to
19574 45723a2aff78ff4fff7fff1114760e62 rather than the expected
19575 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
19576 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
19577
19578 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19579
19580 Integer overflow fixes.
19581
19582 * dbusbind.c: Serial number integer overflow fixes.
19583 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
19584 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
19585 to hold a serial number that is too large for a fixnum.
19586 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19587 Check for serial numbers out of range. Decode any serial number
19588 that was so large that it became a float. (Bug#8722)
19589
19590 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
19591 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19592 Use XFASTINT rather than XUINT when numbers are nonnegative.
19593 (xd_append_arg, Fdbus_method_return_internal):
19594 (Fdbus_method_error_internal): Likewise. Also, for unsigned
19595 arguments, check that Lisp number is nonnegative, rather than
19596 silently wrapping negative numbers around. (Bug#8722)
19597 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
19598 (Bug#8722)
19599
19600 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19601
19602 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19603
19604 ccl: Add integer overflow checks.
19605 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
19606 (IN_INT_RANGE): New macros.
19607 (ccl_driver): Use them to check for integer overflow when
19608 decoding a CCL program. Many of the new checks are whether XINT (x)
19609 fits in int; it doesn't always, on 64-bit hosts. The new version
19610 doesn't catch all possible integer overflows, but it's an
19611 improvement. (Bug#8719)
19612
19613 * alloc.c (make_event_array): Use XINT, not XUINT.
19614 There's no need for unsigned here.
19615
19616 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
19617 This follows up to the 2011-05-06 change that substituted uintptr_t
19618 for EMACS_INT. This case wasn't caught back then.
19619
19620 Rework Fformat to avoid integer overflow issues.
19621 * editfns.c: Include <float.h> unconditionally, as it's everywhere
19622 now (part of C89). Include <verify.h>.
19623 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
19624 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
19625 (Fformat): Avoid the prepass trying to compute sizes; it was only
19626 approximate and thus did not catch overflow reliably. Instead, walk
19627 through the format just once, formatting and computing sizes as we go,
19628 checking for integer overflow at every step, and allocating a larger
19629 buffer as needed. Keep track separately whether the format is
19630 multibyte. Keep only the most-recently calculated precision, rather
19631 than them all. Record whether each argument has been converted to
19632 string. Use EMACS_INT, not int, for byte and char and arg counts.
19633 Support field widths and precisions larger than INT_MAX. Avoid
19634 sprintf's undefined behavior with conversion specifications such as %#d
19635 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
19636 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
19637 formatting out-of-range floating point numbers with int
19638 formats. (Bug#8668)
19639
19640 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19641
19642 * data.c: Avoid integer truncation in expressions involving floats.
19643 * data.c: Include <intprops.h>.
19644 (arith_driver): When there's an integer overflow in an expression
19645 involving floating point, convert the integers to floating point
19646 so that the resulting value does not suffer from catastrophic
19647 integer truncation. For example, on a 64-bit host (* 4
19648 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
19649 Do not rely on undefined behavior after integer overflow.
19650
19651 merge count_size_as_multibyte, parse_str_to_multibyte
19652 * character.c, character.h (count_size_as_multibyte):
19653 Rename from parse_str_to_multibyte; all uses changed.
19654 Check for integer overflow.
19655 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
19656 since it's now a duplicate of the other. This is more of
19657 a character than a buffer op, so better that it's in character.c.
19658 * fns.c, print.c: Adjust to above changes.
19659
19660 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19661
19662 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19663
19664 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19665
19666 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19667 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
19668 (x_clipboard_manager_save): Now static.
19669 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
19670
19671 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19672 (crypto_hash_function): Now static.
19673 Fix pointer signedness problems. Avoid unnecessary initializations.
19674
19675 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
19676
19677 * termhooks.h (Vselection_alist): Make it terminal-local.
19678
19679 * terminal.c (create_terminal): Initialize it.
19680
19681 * xselect.c: Support for clipboard managers.
19682 (Vselection_alist): Move to termhooks.h as terminal-local var.
19683 (LOCAL_SELECTION): New macro.
19684 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
19685 (symbol_to_x_atom): Remove gratuitous arg.
19686 (x_handle_selection_request, lisp_data_to_selection_data)
19687 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
19688 (x_own_selection, x_get_local_selection, x_convert_selection):
19689 New arg, specifying work frame. Use terminal-local Vselection_alist.
19690 (some_frame_on_display): Delete unused function.
19691 (Fx_own_selection_internal, Fx_get_selection_internal)
19692 (Fx_disown_selection_internal, Fx_selection_owner_p)
19693 (Fx_selection_exists_p): New optional frame arg.
19694 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
19695 (x_handle_selection_clear): Don't treat other terminals with the
19696 same keyboard specially. Use the terminal-local Vselection_alist.
19697 (x_clear_frame_selections): Use Frun_hook_with_args.
19698
19699 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
19700
19701 * xterm.h: Add support for those atoms.
19702
19703 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
19704
19705 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
19706 (converted_selections, conversion_fail_tag): New global variables.
19707 (x_selection_request_lisp_error): Free the above.
19708 (x_get_local_selection): Remove unnecessary code.
19709 (x_reply_selection_request): Args changed; handle arbitrary array
19710 of converted selections stored in converted_selections.
19711 Separate the XChangeProperty and SelectionNotify steps.
19712 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
19713 (x_convert_selection): New function.
19714 (x_handle_selection_event): Simplify.
19715 (x_get_foreign_selection): Don't ignore incoming requests while
19716 waiting for an answer; this will fail when we implement
19717 SAVE_TARGETS, and seems unnecessary anyway.
19718 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
19719 (Vx_sent_selection_functions): Doc fix.
19720
19721 2011-05-26 Leo Liu <sdl.web@gmail.com>
19722
19723 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19724
19725 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19726
19727 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
19728
19729 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
19730 for fringe update if it has periodic bitmap.
19731 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
19732 and fringe_bitmap_periodic_p.
19733
19734 * fringe.c (get_fringe_bitmap_data): New function.
19735 (draw_fringe_bitmap_1, update_window_fringes): Use it.
19736 (update_window_fringes): Record periodicity of fringe bitmap in glyph
19737 row. Mark glyph row for fringe update if periodicity changed.
19738
19739 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
19740 for fringe update unless it has periodic bitmap.
19741
19742 2011-05-25 Kenichi Handa <handa@m17n.org>
19743
19744 * xdisp.c (get_next_display_element): Set correct it->face_id for
19745 a static composition.
19746
19747 2011-05-24 Leo Liu <sdl.web@gmail.com>
19748
19749 * deps.mk (fns.o):
19750 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
19751
19752 * fns.c (crypto_hash_function, Fsha1): New function.
19753 (Fmd5): Use crypto_hash_function.
19754 (syms_of_fns): Add Ssha1.
19755
19756 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19757
19758 * gnutls.c: Remove unused macros.
19759 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
19760 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
19761 Remove macros that are defined and never used.
19762 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
19763
19764 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19765
19766 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
19767 (Fx_get_selection_internal): Minor cleanup.
19768 (Fx_own_selection_internal): Rename arguments for consistency with
19769 select.el.
19770
19771 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19772
19773 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19774
19775 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19776
19777 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19778
19779 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19780
19781 * dispnew.c (scrolling_window): Don't exclude the case that the
19782 last enabled row in the desired matrix touches the bottom boundary.
19783
19784 2011-05-21 Glenn Morris <rgm@gnu.org>
19785
19786 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
19787 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19788 and add some more files.
19789
19790 2011-05-20 Eli Zaretskii <eliz@gnu.org>
19791
19792 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
19793 report_file_error introduced by the change from 2011-05-07.
19794
19795 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
19796
19797 * systime.h (Time): Define only if emacs is defined.
19798 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
19799 where the include path doesn't have X11/X.h by default. See
19800 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
19801
19802 2011-05-20 Kenichi Handa <handa@m17n.org>
19803
19804 * composite.c (find_automatic_composition): Fix previous change.
19805
19806 2011-05-20 Glenn Morris <rgm@gnu.org>
19807
19808 * lisp.mk: New file, split from Makefile.in.
19809 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
19810 (shortlisp): Remove.
19811 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
19812
19813 2011-05-19 Glenn Morris <rgm@gnu.org>
19814
19815 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
19816 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
19817 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
19818 (lisp): Set the order to that of loadup.el.
19819 (shortlisp): Make it a copy of $lisp.
19820 (SOME_MACHINE_LISP): Remove.
19821 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
19822 Use just $shortlisp, not $SOME_MACHINE_LISP too.
19823
19824 2011-05-18 Kenichi Handa <handa@m17n.org>
19825
19826 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
19827 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
19828 (find_automatic_composition): Mostly rewrite for efficiency.
19829
19830 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
19831
19832 * makefile.w32-in: Update dependencies.
19833
19834 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19835
19836 * menu.c: Include limits.h (fixes the MS-Windows build broken by
19837 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
19838
19839 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
19840
19841 Fix some integer overflow issues, such as string length overflow.
19842
19843 * insdel.c (count_size_as_multibyte): Check for string overflow.
19844
19845 * character.c (lisp_string_width): Check for string overflow.
19846 Use EMACS_INT, not int, for string indexes and lengths; in
19847 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
19848 the resulting string length overflows an EMACS_INT; instead,
19849 report a string overflow if no precision given. When checking for
19850 precision exhaustion, use a check that cannot possibly have
19851 integer overflow. (Bug#8675)
19852 * character.h (lisp_string_width): Adjust to new signature.
19853
19854 * alloc.c (string_overflow): New function.
19855 (Fmake_string): Use it. This doesn't change behavior, but saves
19856 a few bytes and will simplify future changes.
19857 * character.c (string_escape_byte8): Likewise.
19858 * lisp.h (string_overflow): New decl.
19859
19860 Fixups, following up to the user-interface timestamp change.
19861 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
19862 for UI timestamps, instead of unsigned long.
19863 * msdos.c (mouse_get_pos): Likewise.
19864 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
19865 * w32gui.h (Time): Define by including "systime.h" rather than by
19866 declaring it ourselves. (Bug#8664)
19867
19868 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19869 * image.c (clear_image_cache): Likewise.
19870
19871 * term.c (term_mouse_position): Don't assume time_t wraparound.
19872
19873 Be more systematic about user-interface timestamps.
19874 Before, the code sometimes used 'Time', sometimes 'unsigned long',
19875 and sometimes 'EMACS_UINT', to represent these timestamps.
19876 This change causes it to use 'Time' uniformly, as that's what X uses.
19877 This makes the code easier to follow, and makes it easier to catch
19878 integer overflow bugs such as Bug#8664.
19879 * frame.c (Fmouse_position, Fmouse_pixel_position):
19880 Use Time, not unsigned long, for user-interface timestamps.
19881 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
19882 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
19883 * keyboard.h (last_event_timestamp): Likewise.
19884 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
19885 * menu.h (xmenu_show): Likewise.
19886 * term.c (term_mouse_position): Likewise.
19887 * termhooks.h (struct input_event.timestamp): Likewise.
19888 (struct terminal.mouse_position_hook): Likewise.
19889 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
19890 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
19891 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
19892 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
19893 what it was before.
19894 * menu.h, termhooks.h: Include "systime.h", for Time.
19895
19896 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
19897 Don't assume that the difference between two unsigned long values
19898 can fit into an integer. At this point, we know button_down_time
19899 <= event->timestamp, so the difference must be nonnegative, so
19900 there's no need to cast the result if double-click-time is
19901 nonnegative, as it should be; check that it's nonnegative, just in
19902 case. This bug is triggered when events are more than 2**31 ms
19903 apart (about 25 days). (Bug#8664)
19904
19905 * xselect.c (last_event_timestamp): Remove duplicate decl.
19906 (x_own_selection): Remove needless cast to unsigned long.
19907
19908 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
19909 that always fit in int. Use a sentinel instead of a counter, to
19910 avoid a temp and to allay GCC's concerns about possible int overflow.
19911 * frame.h (struct frame): Use int for menu_bar_items_used
19912 instead of EMACS_INT, since it always fits in int.
19913
19914 * menu.c (grow_menu_items): Check for int overflow.
19915
19916 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19917
19918 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
19919 Before, the code was not consistent. These values cannot exceed
19920 2**31 - 1 so there's no need to make them unsigned.
19921 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
19922 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
19923 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
19924 as modifiers.
19925 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
19926
19927 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
19928 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
19929 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
19930 presumably because the widths might not match.
19931
19932 * window.c (size_window): Avoid needless test at loop start.
19933
19934 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19935
19936 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19937
19938 2011-05-12 Drew Adams <drew.adams@oracle.com>
19939
19940 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19941
19942 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19943
19944 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
19945 `width' to `bar_area_x' and `bar_area_width', respectively.
19946 (x_scroll_run): Take account of fringe background extension.
19947
19948 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19949 Rename local vars `left' and `width' to `bar_area_x' and
19950 `bar_area_width', respectively.
19951 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19952 background extension.
19953
19954 2011-05-10 Jim Meyering <meyering@redhat.com>
19955
19956 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19957
19958 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
19959
19960 * image.c (Finit_image_library): Return t for built-in image types,
19961 like pbm and xbm. (Bug#8640)
19962
19963 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19964
19965 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19966
19967 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19968
19969 * w32console.c (Fset_screen_color): Doc fix.
19970 (Fget_screen_color): New function.
19971 (syms_of_ntterm): Defsubr it.
19972
19973 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
19974 unlink the temporary file if Fcall_process didn't create it in the
19975 first place.
19976 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
19977 child process will be redirected to a file specified with `:file'.
19978 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
19979 cue to call_process_cleanup not to close that handle.
19980
19981 2011-05-07 Ben Key <bkey76@gmail.com>
19982
19983 * makefile.w32-in: The bootstrap-temacs rule now makes use of
19984 one of two shell specific rules, either bootstrap-temacs-CMD or
19985 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
19986 to the previous implementation of the bootstrap-temacs rule.
19987 The bootstrap-temacs-CMD rule is similar to the previous
19988 implementation of the bootstrap-temacs rule except that it
19989 makes use of the ESC_CFLAGS variable instead of the CFLAGS
19990 variable.
19991
19992 These changes, along with some changes to nt/configure.bat,
19993 nt/gmake.defs, and nt/nmake.defs, are required to extend my
19994 earlier fix to add support for --cflags and --ldflags options
19995 that include quotes so that it works whether make uses cmd or
19996 sh as the shell.
19997
19998 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
19999
20000 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
20001 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
20002 is a constant.
20003 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
20004 a string. Handle both cases.
20005 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
20006 (Fdbus_register_method): Use Qinvalid_function.
20007
20008 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
20009
20010 * makefile.w32-in: Update dependencies.
20011 (LISP_H): Add inttypes.h and stdin.h.
20012 (PROCESS_H): Add unistd.h.
20013
20014 2011-05-06 Eli Zaretskii <eliz@gnu.org>
20015
20016 * lread.c: Include limits.h (fixes the MS-Windows build broken by
20017 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
20018
20019 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
20020
20021 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
20022
20023 * term.c (vfatal): Remove stray call to va_end.
20024 It's not needed and the C Standard doesn't allow it here anyway.
20025
20026 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
20027 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
20028
20029 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
20030 bytes.
20031
20032 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
20033
20034 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
20035
20036 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
20037
20038 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
20039
20040 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
20041
20042 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
20043 * charset.c (Fdefine_charset_internal): Don't initialize
20044 charset.code_space[15]. The value was garbage, on hosts with
20045 32-bit int (Bug#8600).
20046
20047 * lread.c (read_integer): Be more consistent with string-to-number.
20048 Use string_to_number to do the actual conversion; this avoids
20049 rounding errors and fixes some other screwups. Without this fix,
20050 for example, #x1fffffffffffffff was misread as -2305843009213693952.
20051 (digit_to_number): Move earlier, for benefit of read_integer.
20052 Return -1 if the digit is out of range for the base, -2 if it is
20053 not a digit in any supported base. (Bug#8602)
20054
20055 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
20056
20057 * dispnew.c (scrolling_window): Return 1 if we scrolled,
20058 to match comment at start of function. This also removes a
20059 GCC warning about overflow in a 32+64-bit port.
20060
20061 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
20062
20063 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
20064 Reported by Stefan Monnier in
20065 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
20066 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20067 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
20068
20069 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
20070 (EMACS_UINTPTR): Likewise, with uintptr_t.
20071
20072 * lisp.h: Prefer 64-bit EMACS_INT if available.
20073 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
20074 on 32-bit hosts that have 64-bit int, so that they can access
20075 large files.
20076 However, temporarily disable this change unless the temporary
20077 symbol WIDE_EMACS_INT is defined.
20078
20079 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
20080
20081 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
20082 This removes an assumption that EMACS_INT and long are the same
20083 width as pointers. The assumption is true for Emacs porting targets
20084 now, but we want to make other targets possible.
20085 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
20086 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
20087 In the rest of the code, change types of integers that hold casted
20088 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
20089 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
20090 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
20091 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
20092 No need to cast type when ORing.
20093 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
20094 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
20095 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
20096 assume EMACS_INT is the same width as char *.
20097 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
20098 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
20099 Remove no-longer-needed casts.
20100 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
20101 (xg_tool_bar_help_callback, xg_make_tool_item):
20102 Use EMACS_INTPTR to hold an integer
20103 that will be cast to void *; this can avoid a GCC warning
20104 if EMACS_INT is not the same width as void *.
20105 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
20106 * xdisp.c (display_echo_area_1, resize_mini_window_1):
20107 (current_message_1, set_message_1):
20108 Use a local to convert to proper width without a cast.
20109 * xmenu.c (dialog_selection_callback): Likewise.
20110
20111 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
20112 Also, don't assume VALBITS / RAND_BITS is less than 5,
20113 and don't rely on undefined behavior when shifting a 1 left into
20114 the sign bit.
20115 * lisp.h (get_random): Change signature to match.
20116
20117 * lread.c (hash_string): Use size_t, not int, for hash computation.
20118 Normally we prefer signed values; but hashing is special, because
20119 it's better to use unsigned division on hash table sizes so that
20120 the remainder is nonnegative. Also, size_t is the natural width
20121 for hashing into memory. The previous code used 'int', which doesn't
20122 retain enough info to hash well into very large tables.
20123 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
20124
20125 * dbusbind.c: Don't possibly lose pointer info when converting.
20126 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20127 Use XPNTR rather than XHASH, so that the high-order bits of
20128 the pointer aren't lost when converting through void *.
20129
20130 * eval.c (Fautoload): Don't double-shift a pointer.
20131
20132 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
20133
20134 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
20135
20136 * gnutls.c (DEF_GNUTLS_FN):
20137 * image.c (DEF_IMGLIB_FN): Make function pointers static.
20138
20139 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
20140
20141 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
20142 marker. (Bug#8610)
20143
20144 2011-05-05 Eli Zaretskii <eliz@gnu.org>
20145
20146 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
20147 New version that can reserve upto 2GB of heap space.
20148
20149 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
20150
20151 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
20152
20153 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
20154
20155 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
20156 `gnutls_certificate_set_x509_key_file'.
20157
20158 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
20159
20160 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
20161 Update dependencies.
20162
20163 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20164
20165 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
20166 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
20167 Remove unused parameter `fildes'.
20168 * process.c (read_process_output, send_process): Don't pass it.
20169
20170 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20171
20172 Fix previous change: the library cache is defined in w32.c.
20173 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
20174 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
20175
20176 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20177
20178 Implement dynamic loading of GnuTLS on Windows.
20179
20180 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
20181 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
20182 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20183 Declare.
20184
20185 * gnutls.c (Qgnutls_dll): Define.
20186 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
20187 (gnutls_*): Declare function pointers.
20188 (init_gnutls_functions): New function to initialize function pointers.
20189 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
20190 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
20191 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20192 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
20193 (emacs_gnutls_write, emacs_gnutls_read)
20194 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
20195 (Fgnutls_available_p): New function.
20196 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
20197 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
20198 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
20199
20200 * image.c: Include w32.h.
20201 (Vimage_type_cache): Delete.
20202 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
20203 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
20204 (w32_delayed_load): Move to w32.c.
20205
20206 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
20207
20208 * w32.c (QCloaded_from, Vlibrary_cache): Define.
20209 (w32_delayed_load): Move from image.c. When loading a library, record
20210 its filename in the :loaded-from property of the library id.
20211 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
20212 Initialize and staticpro them.
20213 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
20214
20215 * process.c: Include lisp.h before w32.h, not after.
20216 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
20217 instead of gnutls_record_check_pending.
20218
20219 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
20220
20221 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
20222
20223 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
20224 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
20225 as passed in.
20226
20227 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
20228
20229 * xterm.c (x_set_frame_alpha): Do not set property on anything
20230 else than FRAME_X_OUTER_WINDOW (Bug#8608).
20231
20232 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20233
20234 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20235
20236 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20237
20238 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
20239 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
20240 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
20241 (gnutls_global_initialized, Qgnutls_bootprop_priority)
20242 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
20243 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
20244 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
20245 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
20246 (Qgnutls_bootprop_callbacks_verify): Make static.
20247
20248 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
20249
20250 * callproc.c: Indentation fixup.
20251
20252 * sysdep.c (wait_for_termination_1): Make static.
20253 (wait_for_termination, interruptible_wait_for_termination):
20254 Move after wait_for_termination_1.
20255
20256 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20257
20258 * sysdep.c (interruptible_wait_for_termination): New function
20259 which is like wait_for_termination, but allows keyboard
20260 interruptions.
20261
20262 * callproc.c (Fcall_process): Add (:file "file") as an option for
20263 the STDOUT buffer.
20264 (Fcall_process_region): Ditto.
20265
20266 2011-04-30 Eli Zaretskii <eliz@gnu.org>
20267
20268 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
20269 rather than `XVECTOR (FOO)->size'.
20270
20271 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
20272 inttypes.h, as a gnulib replacement is used if it not available in
20273 system headers.
20274
20275 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20276
20277 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
20278 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
20279 of MOST_POSITIVE_FIXNUM. (Bug#8528)
20280
20281 * coding.c (coding_alloc_by_realloc): Error out if destination
20282 will grow beyond MOST_POSITIVE_FIXNUM.
20283 (decode_coding_emacs_mule): Abort if there isn't enough place in
20284 charbuf for the composition carryover bytes. Reserve an extra
20285 space for up to 2 characters produced in a loop.
20286 (decode_coding_iso_2022): Abort if there isn't enough place in
20287 charbuf for the composition carryover bytes.
20288
20289 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20290
20291 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
20292 aborting when %lld or %lll format is passed.
20293 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
20294 %llo or %llx format is passed. (Bug#8545)
20295
20296 * window.c (window_scroll_line_based): Use a marker instead of
20297 simple variables to record original value of point. (Bug#7952)
20298
20299 * doprnt.c (doprnt): Fix the case where a multibyte sequence
20300 produced by %s or %c overflows available buffer space. (Bug#8545)
20301
20302 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
20303
20304 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
20305 (SIZE_MAX): Move defn after all includes, as they might #define it.
20306
20307 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20308
20309 * w32.c (init_environment): Warn about defaulting HOME to C:\.
20310
20311 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20312
20313 * keyboard.c (Qdelayed_warnings_hook): Define.
20314 (command_loop_1): Run `delayed-warnings-hook'
20315 if Vdelayed_warnings_list is non-nil.
20316 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
20317 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
20318
20319 2011-04-28 Eli Zaretskii <eliz@gnu.org>
20320
20321 * doprnt.c (doprnt): Don't return value smaller than the buffer
20322 size if the message was truncated. (Bug#8545).
20323
20324 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20325
20326 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
20327 (Fx_window_property): #if-0 the whole functions, not just the bodies.
20328
20329 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20330
20331 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
20332
20333 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
20334
20335 * makefile.w32-in: Update dependencies.
20336
20337 2011-04-27 Eli Zaretskii <eliz@gnu.org>
20338
20339 Improve `doprnt' and its usage. (Bug#8545)
20340 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
20341 `format_end'. Remove support for %l as a conversion specifier.
20342 Don't use xrealloc. Improve diagnostics when the %l size modifier
20343 is used. Update the commentary.
20344
20345 * eval.c (verror): Simplify calculation of size_t.
20346
20347 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
20348 messages.
20349
20350 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20351
20352 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
20353 change.
20354
20355 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20356
20357 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
20358 This makes this file independent of the recent pseudovector change.
20359
20360 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
20361
20362 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
20363
20364 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
20365 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
20366 Remove unused local.
20367 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
20368
20369 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
20370 GCC 4.6.0 optimizes based on type-based alias analysis.
20371 For example, if b is of type struct buffer * and v of type struct
20372 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
20373 != &v->size, and therefore "v->size = 1; b->size = 2; return
20374 v->size;" must therefore return 1. This assumption is incorrect
20375 for Emacs, since it type-puns struct Lisp_Vector * with many other
20376 types. To fix this problem, this patch adds a new type struct
20377 vectorlike_header that documents the constraints on layout of vectors
20378 and pseudovectors, and helps optimizing compilers not get fooled
20379 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
20380 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
20381 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20382 the size member.
20383 (XSETPVECTYPE): Rewrite in terms of new macro.
20384 (XSETPVECTYPESIZE): New macro, specifying both type and size.
20385 This is a bit clearer, and further avoids the possibility of
20386 undesirable aliasing.
20387 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
20388 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
20389 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20390 since Lisp_Subr is a special case (no "next" field).
20391 (ASIZE): Now uses header.size rather than size.
20392 All previous uses of XVECTOR (foo)->size replaced to use this macro,
20393 to avoid the hassle of writing XVECTOR (foo)->header.size.
20394 (struct vectorlike_header): New type.
20395 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
20396 object, to help avoid aliasing.
20397 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
20398 (SUBRP): Likewise, since Lisp_Subr is a special case.
20399 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
20400 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
20401 (struct Lisp_Hash_Table): Combine first two members into a single
20402 struct vectorlike_header member. All uses of "size" and "next" members
20403 changed to be "header.size" and "header.next".
20404 * buffer.h (struct buffer): Likewise.
20405 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
20406 * frame.h (struct frame): Likewise.
20407 * process.h (struct Lisp_Process): Likewise.
20408 * termhooks.h (struct terminal): Likewise.
20409 * window.c (struct save_window_data, struct saved_window): Likewise.
20410 * window.h (struct window): Likewise.
20411 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
20412 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
20413 * buffer.c (init_buffer_once): Likewise.
20414 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
20415 special case.
20416 * process.c (Fformat_network_address): Use local var for size,
20417 for brevity.
20418
20419 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20420
20421 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20422 * data.c (atof): Remove decl; no longer used or needed.
20423 (digit_to_number): Move to lread.c.
20424 (Fstring_to_number): Use new string_to_number function, to be
20425 consistent with how the Lisp reader treats infinities and NaNs.
20426 Do not assume that floating-point numbers represent EMACS_INT
20427 without losing information; this is not true on most 64-bit hosts.
20428 Avoid double-rounding errors, by insisting on integers when
20429 parsing non-base-10 numbers, as the documentation specifies.
20430 * lisp.h (string_to_number): New decl, replacing ...
20431 (isfloat_string): Remove.
20432 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20433 (read1): Do not accept +. and -. as integers; this
20434 appears to have been a coding error. Similarly, do not accept
20435 strings like +-1e0 as floating point numbers. Do not report
20436 overflow for integer overflows unless the base is not 10 which
20437 means we have no simple and reliable way to continue.
20438 Break out the floating-point parsing into a new
20439 function string_to_number, so that Fstring_to_number parses
20440 floating point numbers consistently with the Lisp reader.
20441 (digit_to_number): Move here from data.c. Make it static inline.
20442 (E_CHAR, EXP_INT): Remove, replacing with ...
20443 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20444 (string_to_number): New function, replacing isfloat_string.
20445 This function checks for valid syntax and produces the resulting
20446 Lisp float number too. Rework it so that string-to-number
20447 no longer mishandles examples like "1.0e+". Use strtoumax,
20448 so that overflow for non-base-10 numbers is reported only when
20449 there's no portable and simple way to convert to floating point.
20450
20451 * textprop.c (set_text_properties_1): Rewrite for clarity,
20452 and to avoid GCC warning about integer overflow.
20453
20454 * intervals.h (struct interval): Use EMACS_INT for members
20455 where EMACS_UINT might cause problems. See
20456 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20457 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20458 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20459 All uses changed.
20460 (offset_intervals): Tell GCC not to worry about length overflow
20461 when negating a negative length.
20462
20463 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20464 (overrun_check_free): Likewise.
20465
20466 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20467 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20468 word size.
20469
20470 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20471 (gnutls_make_error): Rename local to avoid shadowing.
20472 (gnutls_emacs_global_deinit): ifdef out; not used.
20473 (Fgnutls_boot): Use const for pointer to readonly storage.
20474 Comment out unused local. Fix pointer signedness problems.
20475
20476 * lread.c (openp): Don't stuff size_t into an 'int'.
20477 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20478 about possible signed overflow.
20479
20480 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20481 (GDK_KEY_g): Don't define if already defined.
20482 (xg_prepare_tooltip): Avoid pointer signedness problem.
20483 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20484
20485 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20486 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20487
20488 * xfns.c (Fx_window_property): Simplify a bit,
20489 to make a bit faster and to avoid GCC 4.6.0 warning.
20490 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20491
20492 * fns.c (internal_equal): Don't assume size_t fits in int.
20493
20494 * alloc.c (compact_small_strings): Tighten assertion a little.
20495
20496 Replace pEd with more-general pI, and fix some printf arg casts.
20497 * lisp.h (pI): New macro, generalizing old pEd macro to other
20498 conversion specifiers. For example, use "...%"pI"d..." rather
20499 than "...%"pEd"...".
20500 (pEd): Remove. All uses replaced with similar uses of pI.
20501 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20502 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20503 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20504 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20505 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20506 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20507 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20508 64-bit hosts.
20509 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20510 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20511 * print.c (safe_debug_print, print_object): Likewise.
20512 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
20513 to int.
20514 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20515 avoiding the 0 flag, which is not portable.
20516 * process.c (Fmake_network_process): Use pI to avoid cast.
20517 * region-cache.c (pp_cache): Likewise.
20518 * xdisp.c (decode_mode_spec): Likewise.
20519 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
20520 behavior on 64-bit hosts with printf arg.
20521 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
20522 (x_stop_queuing_selection_requests): Likewise.
20523 (x_get_window_property): Don't truncate byte count to an 'int'
20524 when tracing.
20525
20526 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
20527 here, since it parses constructs like leading '-' and spaces,
20528 which are not wanted; and it overflows with large numbers.
20529 Instead, simply match F[0-9]+, which is what is wanted anyway.
20530
20531 * alloc.c: Remove unportable assumptions about struct layout.
20532 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
20533 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
20534 (allocate_vectorlike, make_pure_vector): Use the new macros,
20535 plus offsetof, to remove unportable assumptions about struct layout.
20536 These assumptions hold on all porting targets that I know of, but
20537 they are not guaranteed, they're easy to remove, and removing them
20538 makes further changes easier.
20539
20540 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20541 This doesn't fix a bug but makes the code clearer.
20542 (string_overrun_cookie): Now const. Use initializers that
20543 don't formally overflow signed char, to avoid warnings.
20544 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20545 can cause Emacs to crash when string overrun checking is enabled.
20546 (allocate_buffer): Don't assume sizeof (struct buffer) is a
20547 multiple of sizeof (EMACS_INT); it need not be, if
20548 alignof(EMACS_INT) < sizeof (EMACS_INT).
20549 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
20550
20551 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
20552
20553 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20554
20555 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20556
20557 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
20558 supposed to be handshaking. (Bug#8556)
20559 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20560
20561 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
20562
20563 * lisp.h (Qdebug): List symbol.
20564 * eval.c (Qdebug): Restore global linkage.
20565 * keyboard.c (debug-on-event): New variable.
20566 (handle_user_signal): Break into debugger when debug-on-event
20567 matches the current signal symbol.
20568
20569 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
20570
20571 * alloc.c (check_sblock, check_string_bytes)
20572 (check_string_free_list): Convert to standard C.
20573
20574 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20575
20576 * w32.c (emacs_gnutls_push): Fix typo.
20577
20578 2011-04-25 Eli Zaretskii <eliz@gnu.org>
20579
20580 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20581 "cast to pointer from integer of different size".
20582
20583 Improve doprnt and its use in verror. (Bug#8545)
20584 * doprnt.c (doprnt): Document the set of format control sequences
20585 supported by the function. Use SAFE_ALLOCA instead of always
20586 using `alloca'.
20587
20588 * eval.c (verror): Don't limit the buffer size at size_max-1, that
20589 is one byte too soon. Don't use xrealloc; instead xfree and
20590 xmalloc anew.
20591
20592 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
20593
20594 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
20595 callbacks stage.
20596
20597 * gnutls.c: Renamed global_initialized to
20598 gnutls_global_initialized. Added internals for the
20599 :verify-hostname-error, :verify-error, and :verify-flags
20600 parameters of `gnutls-boot' and documented those parameters in the
20601 docstring. Start callback support.
20602 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
20603 unless a fatal error occurred. Call gnutls_alert_send_appropriate
20604 on error. Return error code.
20605 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
20606 (emacs_gnutls_read): Likewise.
20607 (Fgnutls_boot): Return handshake error code.
20608 (emacs_gnutls_handle_error): New function.
20609 (wsaerror_to_errno): Likewise.
20610
20611 * w32.h (emacs_gnutls_pull): Add prototype.
20612 (emacs_gnutls_push): Likewise.
20613
20614 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
20615 (emacs_gnutls_push): Likewise.
20616
20617 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
20618
20619 * process.c (wait_reading_process_output): Check if GnuTLS
20620 buffered some data internally if no FDs are set for TLS
20621 connections.
20622
20623 * makefile.w32-in (OBJ2): Add gnutls.$(O).
20624 (LIBS): Link to USER_LIBS.
20625 ($(BLD)/gnutls.$(0)): New target.
20626
20627 2011-04-24 Eli Zaretskii <eliz@gnu.org>
20628
20629 * xdisp.c (handle_single_display_spec): Rename the
20630 display_replaced_before_p argument into display_replaced_p, to
20631 make it consistent with the commentary. Fix typos in the
20632 commentary.
20633
20634 * textprop.c (syms_of_textprop): Remove dead code.
20635 (copy_text_properties): Delete obsolete commentary about an
20636 interface that was deleted long ago. Fix typos in the description
20637 of arguments.
20638
20639 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
20640 to changes in oldXMenu/XMenu.h from 2011-04-16.
20641 <menu_help_message, prev_menu_help_message>: Constify.
20642 (IT_menu_make_room): menu->help_text is now `const char **';
20643 adjust.
20644
20645 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
20646 to changes in oldXMenu/XMenu.h from 2011-04-16.
20647 (struct XMenu): Declare `help_text' `const char **'.
20648
20649 * xfaces.c <Qunspecified>: Make extern again.
20650
20651 * syntax.c: Include sys/types.h before including regex.h, as
20652 required by POSIX.
20653
20654 * doc.c (get_doc_string): Improve the format passed to `error'.
20655
20656 * doprnt.c (doprnt): Improve commentary.
20657
20658 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
20659
20660 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
20661 them with etags.
20662
20663 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20664 changes in globals.h immediately force recompilation.
20665 (TAGS): Depend on $(CURDIR)/m/intel386.h and
20666 $(CURDIR)/s/ms-w32.h.
20667 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
20668
20669 * character.c (Fchar_direction): Function deleted.
20670 (syms_of_character): Don't defsubr it.
20671 <char-direction-table>: Deleted.
20672
20673 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20674
20675 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
20676 * doprnt.c: Include limits.h.
20677 (SIZE_MAX): New macro.
20678 (doprnt): Return a size_t value. 2nd arg is now size_t.
20679 Many local variables are now size_t instead of int or unsigned.
20680 Improve overflow protection. Support `l' modifier for integer
20681 conversions. Support %l conversion. Don't assume an EMACS_INT
20682 argument for integer conversions and for %c.
20683
20684 * lisp.h (doprnt): Restore prototype.
20685
20686 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
20687 $(SRC)/character.h.
20688
20689 * Makefile.in (base_obj): Add back doprnt.o.
20690
20691 * deps.mk (doprnt.o): Add back prerequisites.
20692 (callint.o): Depend on character.h.
20693
20694 * eval.c (internal_lisp_condition_case): Include the handler
20695 representation in the error message.
20696 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
20697 when breaking from the loop.
20698
20699 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
20700
20701 * callint.c (Fcall_interactively): When displaying error message
20702 about invalid control letter, pass the character's codepoint, not
20703 a pointer to its multibyte form. Improve display of the character
20704 in octal and display also its hex code.
20705
20706 * character.c (char_string): Use %x to display the (unsigned)
20707 codepoint of an invalid character, to avoid displaying a bogus
20708 negative value.
20709
20710 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
20711 `error', not SYMBOL_NAME itself.
20712
20713 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
20714 character arguments to `error'.
20715
20716 * charset.c (check_iso_charset_parameter): Fix incorrect argument
20717 to `error' in error message about FINAL_CHAR argument. Make sure
20718 FINAL_CHAR is a character, and use %c when it is passed as
20719 argument to `error'.
20720
20721 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20722
20723 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20724
20725 * w32.c: Include <time.h>.
20726 (sys_localtime): New function.
20727
20728 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
20729
20730 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20731
20732 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
20733
20734 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
20735
20736 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20737 zombies (Bug#8467).
20738
20739 2011-04-19 Eli Zaretskii <eliz@gnu.org>
20740
20741 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
20742 gl_state.e_property when gl_state.object is Qt.
20743
20744 * insdel.c (make_gap_larger): Remove limitation of buffer size
20745 to <= INT_MAX.
20746
20747 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20748
20749 * xdisp.c (lookup_glyphless_char_display)
20750 (produce_glyphless_glyph): Handle cons cell entry in
20751 glyphless-char-display.
20752 (Vglyphless_char_display): Document it.
20753
20754 * term.c (produce_glyphless_glyph): Handle cons cell entry in
20755 glyphless-char-display.
20756
20757 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
20758
20759 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
20760
20761 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
20762
20763 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
20764 definition for no-X builds.
20765
20766 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
20767
20768 Static checks with GCC 4.6.0 and non-default toolkits.
20769
20770 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20771
20772 * process.c (keyboard_bit_set): Define only if SIGIO.
20773 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
20774 (send_process): Repair possible setjmp clobbering.
20775
20776 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20777
20778 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20779
20780 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20781
20782 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20783 Define only if needed.
20784
20785 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20786 by pacifying GCC about it. Maybe it's time to retire it?
20787 * xfaces.c (USG, __TIMEVAL__): Likewise.
20788
20789 * dispextern.h (struct redisplay_interface): Rename param
20790 to avoid shadowing.
20791 * termhooks.h (struct terminal): Likewise.
20792 * xterm.c (xembed_send_message): Likewise.
20793
20794 * insdel.c (make_gap_smaller): Define only if
20795 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20796
20797 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20798 it.
20799
20800 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
20801 so that we aren't warned about unused symbols.
20802
20803 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20804
20805 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
20806
20807 * xfns.c (x_real_positions): Mark locals as initialized.
20808
20809 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20810
20811 * xterm.c: Fix problems found by static analysis with other toolkits.
20812 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
20813 (x_dispatch_event): Declare static if USE_GTK, and
20814 define if USE_GTK || USE_X_TOOLKIT.
20815 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
20816 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
20817 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
20818 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
20819
20820 * xmenu.c (menu_help_callback): Pointer type fixes.
20821 Use const pointers when pointing at readonly data. Avoid pointer
20822 signedness clashes.
20823 (FALSE): Remove unused macro.
20824 (update_frame_menubar): Remove unused decl.
20825
20826 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20827
20828 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
20829 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
20830 (single_menu_item): Rename local to avoid shadowing.
20831
20832 * keyboard.c (make_lispy_event): Remove unused local var.
20833
20834 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20835 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20836
20837 * bitmaps: Change bitmaps from unsigned char back to the X11
20838 compatible char. Avoid the old compiler warnings about
20839 out-of-range initializers by using, for example, '\xab' rather
20840 than 0xab.
20841
20842 * xgselect.c (xgselect_initialize): Check vs interface
20843 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20844
20845 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20846
20847 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20848 to read-only memory.
20849
20850 * fns.c (vector): Remove; this old hack is no longer needed.
20851
20852 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
20853 Remove unused var.
20854 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
20855
20856 * xrdb.c (x_load_resources): Omit unused local.
20857
20858 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
20859 (x_window): Rename locals to avoid shadowing.
20860 (USG): Use the kludged USG macro, to pacify gcc.
20861
20862 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
20863 (x_term_init): Remove local to avoid shadowing.
20864
20865 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
20866
20867 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
20868 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
20869
20870 2011-04-16 Eli Zaretskii <eliz@gnu.org>
20871
20872 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20873
20874 Fix regex.c, syntax.c and friends for buffers > 2GB.
20875 * syntax.h (struct gl_state_s): Declare character position members
20876 EMACS_INT.
20877
20878 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
20879
20880 * textprop.c (verify_interval_modification, interval_of):
20881 Declare arguments EMACS_INT.
20882
20883 * intervals.c (adjust_intervals_for_insertion): Declare arguments
20884 EMACS_INT.
20885
20886 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
20887
20888 * indent.c (Fvertical_motion): Local variable it_start is now
20889 EMACS_INT.
20890
20891 * regex.c (re_match, re_match_2, re_match_2_internal)
20892 (bcmp_translate, regcomp, regexec, print_double_string)
20893 (group_in_compile_stack, re_search, re_search_2, regex_compile)
20894 (re_compile_pattern, re_exec): Declare arguments and local
20895 variables `size_t' and `ssize_t' and return values `regoff_t', as
20896 appropriate.
20897 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
20898 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
20899 <compile_stack_type>: `size' and `avail' are now `size_t'.
20900
20901 * regex.h <regoff_t>: Use ssize_t, not int.
20902 (re_search, re_search_2, re_match, re_match_2): Arguments that
20903 specify buffer/string position and length are now ssize_t and
20904 size_t. Return type is regoff_t.
20905
20906 2011-04-16 Ben Key <bkey76@gmail.com>
20907
20908 * nsfont.m: Fixed bugs in ns_get_family and
20909 ns_descriptor_to_entity that were caused by using free to
20910 deallocate memory blocks that were allocated by xmalloc (via
20911 xstrdup). This caused Emacs to crash when compiled with
20912 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
20913 --enable-checking=xmallocoverrun). xfree is now used to
20914 deallocate these memory blocks.
20915
20916 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
20917
20918 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20919
20920 emacs_write: Accept and return EMACS_INT for sizes.
20921 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
20922 et seq.
20923 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
20924 Accept and return EMACS_INT.
20925 (emacs_gnutls_write): Return the number of bytes written on
20926 partial writes.
20927 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
20928 (emacs_read, emacs_write): Remove check for negative size, as the
20929 Emacs source code has been audited now.
20930 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20931 (emacs_read, emacs_write): Use it.
20932 * process.c (send_process): Adjust to the new signatures of
20933 emacs_write and emacs_gnutls_write. Do not attempt to store
20934 a byte offset into an 'int'; it might overflow.
20935 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
20936
20937 * sound.c: Don't assume sizes fit in 'int'.
20938 (struct sound_device.period_size, alsa_period_size):
20939 Return EMACS_INT, not int.
20940 (struct sound_device.write, vox_write, alsa_write):
20941 Accept EMACS_INT, not int.
20942 (wav_play, au_play): Use EMACS_INT to store sizes and to
20943 record read return values.
20944
20945 2011-04-15 Ben Key <bkey76@gmail.com>
20946
20947 * keyboard.c (Qundefined): Don't declare static since it is used
20948 in nsfns.m.
20949 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
20950 static since they are used in nsfont.m.
20951
20952 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20953
20954 * process.c (Qprocessp): Don't declare static.
20955 * lisp.h (Qprocessp): Declare again.
20956
20957 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20958
20959 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20960
20961 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20962
20963 Improve C-level modularity by making more things 'static'.
20964
20965 Don't publish debugger-only interfaces to other modules.
20966 * lisp.h (safe_debug_print, debug_output_compilation_hack):
20967 (verify_bytepos, count_markers): Move decls to the only modules
20968 that need them.
20969 * region-cache.h (pp_cache): Likewise.
20970 * window.h (check_all_windows): Likewise.
20971 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
20972
20973 * sysdep.c (croak): Now static, if
20974 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20975 * syssignal.h (croak): Declare only if not static.
20976
20977 * alloc.c (refill_memory_reserve): Now static if
20978 !defined REL_ALLOC || defined SYSTEM_MALLOC.
20979 * lisp.h (refill_memory_reserve): Declare only if not static.
20980
20981 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20982 Define only if USE_LUCID.
20983
20984 * xrdb.c (x_customization_string, x_rm_string): Now static.
20985
20986 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
20987 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
20988
20989 * xdisp.c (draw_row_with_mouse_face): Now static.
20990 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20991
20992 * window.h (check_all_windows): Mark externally visible.
20993
20994 * window.c (window_deletion_count): Now static.
20995
20996 * undo.c: Make symbols static if they're not exported.
20997 (last_undo_buffer, last_boundary_position, pending_boundary):
20998 Now static.
20999
21000 * textprop.c (interval_insert_behind_hooks): Now static.
21001 (interval_insert_in_front_hooks): Likewise.
21002
21003 * term.c: Make symbols static if they're not exported.
21004 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
21005 (max_frame_lines, tty_set_terminal_modes):
21006 (tty_reset_terminal_modes, tty_turn_off_highlight):
21007 (get_tty_terminal): Now static.
21008 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
21009 * termhooks.h (term_mouse_moveto): Do not declare if
21010 HAVE_WINDOW_SYSTEM.
21011 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
21012 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
21013
21014 * sysdep.c: Make symbols static if they're not exported.
21015 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
21016 Now static.
21017 (sigprocmask_set, full_mask): Remove; unused.
21018 (wait_debugging): Mark as visible.
21019 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
21020 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
21021
21022 * syntax.c (syntax_temp): Define only if !__GNUC__.
21023
21024 * sound.c (current_sound_device, current_sound): Now static.
21025
21026 * search.c (searchbufs, searchbuf_head): Now static.
21027
21028 * scroll.c (scroll_cost): Remove; unused.
21029 * dispextern.h (scroll_cost): Remove decl.
21030
21031 * region-cache.h (pp_cache): Mark as externally visible.
21032
21033 * process.c: Make symbols static if they're not exported.
21034 (process_tick, update_tick, create_process, chan_process):
21035 (Vprocess_alist, proc_buffered_char, datagram_access):
21036 (fd_callback_data, send_process_frame, process_sent_to): Now static.
21037 (deactivate_process): Mark defn as static, as well as decl.
21038 * lisp.h (create_process): Remove decl.
21039 * process.h (chan_process, Vprocess_alist): Remove decls.
21040
21041 * print.c: Make symbols static if they're not exported.
21042 (print_depth, new_backquote_output, being_printed, print_buffer):
21043 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
21044 (print_interval, print_number_index, initial_stderr_stream):
21045 Now static.
21046 * lisp.h (Fprinc): Remove decl.
21047 (debug_output_compilation_hack): Mark as externally visible.
21048
21049 * sysdep.c (croak): Move decl from here to syssignal.h.
21050 * syssignal.h (croak): Put it here, so the API can be checked when
21051 'croak' is called from dissociate_if_controlling_tty.
21052
21053 * minibuf.c: Make symbols static if they're not exported.
21054 (minibuf_save_list, choose_minibuf_frame): Now static.
21055 * lisp.h (choose_minibuf_frame): Remove decl.
21056
21057 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
21058
21059 * lread.c: Make symbols static if they're not exported.
21060 (read_objects, initial_obarray, oblookup_last_bucket_number):
21061 Now static.
21062 (make_symbol): Remove; unused.
21063 * lisp.h (initial_obarray, make_symbol): Remove decls.
21064
21065 * keyboard.c: Make symbols static if they're not exported.
21066 (single_kboard, recent_keys_index, total_keys, recent_keys):
21067 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
21068 (this_single_command_key_start, echoing, last_auto_save):
21069 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
21070 (command_loop, echo_now, keyboard_init_hook, help_char_p):
21071 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
21072 (Vlispy_mouse_stem, double_click_count):
21073 Now static.
21074 (force_auto_save_soon): Define only if SIGDANGER.
21075 (ignore_mouse_drag_p): Now static if
21076 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
21077 (print_help): Remove; unused.
21078 (stop_character, last_timer_event): Mark as externally visible.
21079 * keyboard.h (ignore_mouse_drag_p): Declare only if
21080 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
21081 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
21082 * lisp.h (echoing): Remove decl.
21083 (force_auto_save_soon): Declare only if SIGDANGER.
21084 * xdisp.c (redisplay_window): Simplify code, to make it more
21085 obvious that ignore_mouse_drag_p is not accessed if !defined
21086 USE_GTK && !defined HAVE_NS.
21087
21088 * intervals.c: Make symbols static if they're not exported.
21089 (merge_properties_sticky, merge_interval_right, delete_interval):
21090 Now static.
21091 * intervals.h (merge_interval_right, delete_interval): Remove decls.
21092
21093 * insdel.c: Make symbols static if they're not exported.
21094 However, leave prepare_to_modify_buffer alone. It's never
21095 called from outside this function, but that appears to be a bug.
21096 (combine_after_change_list, combine_after_change_buffer):
21097 (adjust_after_replace, signal_before_change): Now static.
21098 (adjust_after_replace_noundo): Remove; unused.
21099 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
21100 (signal_before_change): Remove decls.
21101
21102 * indent.c (val_compute_motion, val_vmotion): Now static.
21103
21104 * image.c: Make symbols static if they're not exported.
21105 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
21106 if USE_GTK.
21107 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
21108 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
21109
21110 * fringe.c (standard_bitmaps): Now static.
21111 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
21112
21113 * frame.c: Make symbols static if they're not exported.
21114 (x_report_frame_params, make_terminal_frame): Now static.
21115 (get_frame_param): Now static, unless HAVE_NS.
21116 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
21117 (x_get_resource_string): Remove; not used.
21118 * frame.h (make_terminal_frame, x_report_frame_params):
21119 (x_get_resource_string); Remove decls.
21120 (x_fullscreen_adjust): Declare only if WINDOWSNT.
21121 * lisp.h (get_frame_param): Declare only if HAVE_NS.
21122
21123 * font.c, fontset.c: Make symbols static if they're not exported.
21124 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
21125 (FACE_SUITABLE_FOR_CHAR_P): Use it.
21126 * font.c (font_close_object): Now static.
21127 * font.h (font_close_object): Remove.
21128 * fontset.c (FONTSET_OBJLIST): Remove.
21129 (free_realized_fontset) #if-0 the body, which does nothing.
21130 (face_suitable_for_char_p): #if-0, as it's never called.
21131 * fontset.h (face_suitable_for_char_p): Remove decl.
21132 * xfaces.c (face_at_string_position):
21133 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
21134 since 0 is always ASCII.
21135
21136 * fns.c (weak_hash_tables): Now static.
21137
21138 * fileio.c: Make symbols static if they're not exported.
21139 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
21140 (Vwrite_region_annotation_buffers): Now static.
21141
21142 * eval.c: Make symbols static if they're not exported.
21143 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
21144 * lisp.h (backtrace_list): Remove decl.
21145
21146 * emacs.c: Make symbols static if they're not exported.
21147 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
21148 (fatal_error_code, fatal_error_signal_hook, standard_args):
21149 Now static.
21150 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
21151 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
21152 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
21153 * lisp.h (fatal_error_signal_hook): Remove decl.
21154 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
21155
21156 * editfns.c: Move a (normally-unused) function to its only use.
21157 * editfns.c, lisp.h (get_operating_system_release): Remove.
21158 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
21159 worth the hassle of breaking this out.
21160
21161 * xterm.c: Make symbols static if they're not exported.
21162 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
21163 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
21164 (x_destroy_window, x_delete_display):
21165 Now static.
21166 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
21167 (x_mouse_leave): Remove; unused.
21168 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
21169 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
21170 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
21171 Remove decls.
21172 (x_mouse_leave): Declare only if WINDOWSNT.
21173 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
21174 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
21175 USE_X_TOOLKIT.
21176
21177 * ftxfont.c: Make symbols static if they're not exported.
21178 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
21179 HAVE_FREETYPE.
21180 * font.h (ftxfont_driver): Likewise.
21181
21182 * xfns.c: Make symbols static if they're not exported.
21183 (x_last_font_name, x_display_info_for_name):
21184 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
21185 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
21186 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
21187 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
21188 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
21189 (last_show_tip_args): Now static.
21190 (xic_defaut_fontset, xic_create_fontsetname): Define only if
21191 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
21192 (x_screen_planes): Remove; unused.
21193 * dispextern.h (x_screen_planes): Remove decl.
21194
21195 * dispnew.c: Make symbols static if they're not exported.
21196 * dispextern.h (redraw_garbaged_frames, scrolling):
21197 (increment_row_positions): Remove.
21198 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
21199 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
21200 Now static.
21201 (redraw_garbaged_frames): Remove; unused.
21202
21203 * xfaces.c: Make symbols static if they're not exported.
21204 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
21205 Remove decls.
21206 * xterm.h (defined_color): Remove decls.
21207 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
21208 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
21209 (menu_face_changed_default, defined_color, free_realized_face):
21210 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
21211 (ascii_face_of_lisp_face): Remove; unused.
21212
21213 * xdisp.c: Make symbols static if they're not exported.
21214 * dispextern.h (scratch_glyph_row, window_box_edges):
21215 (glyph_to_pixel_coords, set_cursor_from_row):
21216 (get_next_display_element, set_iterator_to_next):
21217 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
21218 (show_mouse_face): Remove decls
21219 * frame.h (message_buf_print): Likewise.
21220 * lisp.h (pop_message, set_message, check_point_in_composition):
21221 Likewise.
21222 * xterm.h (set_vertical_scroll_bar): Likewise.
21223 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
21224 (message_buf_print, scratch_glyph_row, displayed_buffer):
21225 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
21226 (get_next_display_element, show_mouse_face, window_box_edges):
21227 (frame_to_window_pixel_xy, check_point_in_composition):
21228 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
21229 (glyph_to_pixel_coords): Remove; unused.
21230
21231 * dired.c (file_name_completion): Now static.
21232
21233 * dbusbind.c (xd_in_read_queued_messages): Now static.
21234
21235 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21236 * data.c (circular_list_error): Remove.
21237
21238 * commands.h (last_point_position, last_point_position_buffer):
21239 (last_point_position_window): Remove decls.
21240 * keyboard.c: Make these variables static.
21241
21242 * coding.h (coding, code_convert_region, encode_coding_gap):
21243 Remove decls.
21244 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
21245 (iso_code_class, detect_coding, code_convert_region): Now static.
21246 (encode_coding_gap): Remove; unused.
21247
21248 * chartab.c (chartab_chars, chartab_bits): Now static.
21249
21250 * charset.h (charset_iso_8859_1): Remove decl.
21251 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
21252 Now static.
21253
21254 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
21255 * ccl.c (Vccl_program_table): Now static.
21256 (check_ccl_update): Remove; unused.
21257
21258 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
21259 * category.h: ... from here.
21260 * category.c (check_category_table, set_category_set): Now static.
21261
21262 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
21263 * lisp.h: Remove these decls.
21264
21265 * buffer.c (buffer_count): Remove unused var.
21266
21267 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
21268 so that it's not optimized away.
21269 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
21270 * dispextern.h (bidi_dump_cached_states): Remove, since it's
21271 exported only to the debugger.
21272
21273 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
21274 * atimer.h (run_all_atimers): Remove; not exported.
21275
21276 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
21277 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
21278 was inaccessible from Lisp.
21279 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
21280 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
21281
21282 alloc.c: Import and export fewer symbols, and remove unused items.
21283 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
21284 is defined.
21285 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
21286 it's not optimized away by whole-program optimization.
21287 (message_enable_multibyte, free_misc): Remove.
21288 (catchlist, handlerlist, mark_backtrace):
21289 Declare only if BYTE_MARK_STACK.
21290 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
21291 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
21292 (message_enable_multibyte): Remove decl.
21293 (free_misc, interval_free_list, float_block, float_block_index):
21294 (n_float_blocks, float_free_list, cons_block, cons_block_index):
21295 (cons_free_list, last_marked_index):
21296 Now static.
21297 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
21298 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
21299 (mark_backtrace): Define only if BYTE_MARK_STACK.
21300 * xdisp.c (message_enable_multibyte): Now static.
21301
21302 Declare Lisp_Object Q* variables to be 'static' if not exported.
21303 This makes it easier for human readers (and static analyzers)
21304 to see whether these variables are used from other modules.
21305 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
21306 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
21307 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
21308 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
21309 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
21310 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
21311 * xmenu.c, xselect.c:
21312 Declare Q* vars static if they are not used in other modules.
21313 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
21314 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
21315 Remove decls of unexported vars.
21316 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
21317
21318 * lisp.h (DEFINE_FUNC): Make sname 'static'.
21319
21320 Make Emacs functions such as Fatom 'static' by default.
21321 This makes it easier for human readers (and static analyzers)
21322 to see whether these functions can be called from other modules.
21323 DEFUN now defines a static function. To make the function external
21324 so that it can be used in other C modules, use the new macro DEFUE.
21325 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
21326 (Finit_image_library):
21327 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
21328 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
21329 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
21330 Remove decls, since these functions are now static.
21331 (Funintern, Fget_internal_run_time): New decls, since these functions
21332 were already external.
21333
21334 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
21335 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
21336 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
21337 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
21338 * keyboard.c, keymap.c, lread.c:
21339 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
21340 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
21341 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
21342 Mark functions with DEFUE instead of DEFUN,
21343 if they are used in other modules.
21344 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
21345 decls for now-static functions.
21346 * buffer.h (Fdelete_overlay): Remove decl.
21347 * callproc.c (Fgetenv_internal): Mark as internal.
21348 * composite.c (Fremove_list_of_text_properties): Remove decl.
21349 (Fcomposition_get_gstring): New forward static decl.
21350 * composite.h (Fcomposite_get_gstring): Remove decl.
21351 * dired.c (Ffile_attributes): New forward static decl.
21352 * doc.c (Fdocumntation_property): New forward static decl.
21353 * eval.c (Ffetch_bytecode): New forward static decl.
21354 (Funintern): Remove extern decl; now in .h file where it belongs.
21355 * fileio.c (Fmake_symbolic_link): New forward static decl.
21356 * image.c (Finit_image_library): New forward static decl.
21357 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
21358 * intervals.h (Fprevious_property_change):
21359 (Fremove_list_of_text_properties): Remove decls.
21360 * keyboard.c (Fthis_command_keys): Remove decl.
21361 (Fcommand_execute): New forward static decl.
21362 * keymap.c (Flookup_key): New forward static decl.
21363 (Fcopy_keymap): Now static.
21364 * keymap.h (Flookup_key): Remove decl.
21365 * process.c (Fget_process): New forward static decl.
21366 (Fprocess_datagram_address): Mark as internal.
21367 * syntax.c (Fsyntax_table_p): New forward static decl.
21368 (skip_chars): Remove duplicate decl.
21369 * textprop.c (Fprevious_property_change): New forward static decl.
21370 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
21371 Now internal.
21372 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
21373 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
21374
21375 * editfns.c (Fformat): Remove unreachable code.
21376
21377 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
21378
21379 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
21380 change. (Bug#8496)
21381
21382 2011-04-13 Eli Zaretskii <eliz@gnu.org>
21383
21384 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
21385 when at ZV. (Bug#8487)
21386
21387 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21388
21389 * charset.c (Fclear_charset_maps): Use xfree instead of free.
21390 (Bug#8437)
21391 * keyboard.c (parse_tool_bar_item): Likewise.
21392 * sound.c (sound_cleanup, alsa_close): Likewise.
21393 * termcap.c (tgetent): Likewise.
21394 * xfns.c (x_default_font_parameter): Likewise.
21395 * xsettings.c (read_and_apply_settings): Likewise.
21396
21397 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21398 (overrun_check_free): Protoize.
21399
21400 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
21401
21402 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
21403 since callers should never pass a negative size.
21404 Change the signature to match that of plain 'read' and 'write'; see
21405 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
21406 * lisp.h: Update prototypes of emacs_write and emacs_read.
21407
21408 2011-04-11 Eli Zaretskii <eliz@gnu.org>
21409
21410 * xdisp.c (redisplay_window): Don't try to determine the character
21411 position of the scroll margin if the window start point w->startp
21412 is outside the buffer's accessible region. (Bug#8468)
21413
21414 2011-04-10 Eli Zaretskii <eliz@gnu.org>
21415
21416 Fix write-region and its subroutines for buffers > 2GB.
21417 * fileio.c (a_write, e_write): Modify declaration of arguments and
21418 local variables to support buffers larger than 2GB.
21419 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21420
21421 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21422 argument, local variables, and return value.
21423
21424 * lisp.h: Update prototypes of emacs_write and emacs_read.
21425
21426 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21427
21428 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21429
21430 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21431
21432 Fix more problems found by GCC 4.6.0's static checks.
21433
21434 * xdisp.c (vmessage): Use a better test for character truncation.
21435
21436 * charset.c (load_charset_map): <, not <=, for optimization,
21437 and to avoid potential problems with integer overflow.
21438 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21439 * casetab.c (set_identity, shuffle): Likewise.
21440 * editfns.c (Fformat): Likewise.
21441 * syntax.c (skip_chars): Likewise.
21442
21443 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21444 This also lets GCC 4.6.0 generate slightly better loop code.
21445
21446 * callint.c (Fcall_interactively): <, not <=, for optimization.
21447 (Fcall_interactively): Count the number of arguments produced,
21448 not the number of arguments given. This is simpler and lets GCC
21449 4.6.0 generate slightly better code.
21450
21451 * ftfont.c: Distingish more carefully between FcChar8 and char.
21452 The previous code passed unsigned char * to a functions like
21453 strlen and xstrcasecmp that expect char *, which does not
21454 conform to the C standard.
21455 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21456 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21457 char * when the C standard requires it.
21458
21459 * keyboard.c (read_char): Remove unused var.
21460
21461 * eval.c: Port to Windows vsnprintf (Bug#8435).
21462 Include <limits.h>.
21463 (SIZE_MAX): Define if the headers do not.
21464 (verror): Do not give up if vsnprintf returns a negative count.
21465 Instead, grow the buffer. This ports to Windows vsnprintf, which
21466 does not conform to C99. Problem reported by Eli Zaretskii.
21467 Also, simplify the allocation scheme, by avoiding the need for
21468 calling realloc, and removing the ALLOCATED variable.
21469
21470 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21471
21472 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21473 But keep the doprint source code for now, as we might revamp it
21474 and use it again (Bug#8435).
21475 * lisp.h (doprnt): Remove.
21476 * Makefile.in (base_obj): Remove doprnt.o.
21477 * deps.mk (doprnt.o): Remove.
21478
21479 error: Print 32- and 64-bit integers portably (Bug#8435).
21480 Without this change, on typical 64-bit hosts error ("...%d...", N)
21481 was used to print both 32- and 64-bit integers N, which relied on
21482 undefined behavior.
21483 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21484 * lisp.h (error, verror): Mark as printf-like functions.
21485 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21486 Report overflow in size calculations when allocating printf buffer.
21487 Do not truncate output string at its first null byte.
21488 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21489 Truncate the output at a character boundary, since vsnprintf does not
21490 do that.
21491 * charset.c (check_iso_charset_parameter): Convert internal
21492 character to string before calling 'error', since %c now has the
21493 printf meaning.
21494 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21495 overflow when computing char to be passed to 'error'. Do not
21496 pass Lisp_Object to 'error'; pass the integer instead.
21497 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21498 formatted with plain %d.
21499
21500 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21501
21502 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21503
21504 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21505
21506 * xterm.c (x_catch_errors): Remove duplicate declaration.
21507
21508 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21509
21510 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21511
21512 2011-04-10 Jim Meyering <meyering@redhat.com>
21513
21514 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
21515 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
21516 return ssize_t not "int", and use size_t as the buffer length.
21517 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
21518 * gnutls.h: Update declarations.
21519 * process.c (read_process_output): Use ssize_t, to match.
21520 (send_process): Likewise.
21521
21522 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21523
21524 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21525
21526 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21527
21528 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21529 Use unsigned char, to match FcChar8 type definition.
21530
21531 * xterm.c (handle_one_xevent):
21532 * xmenu.c (create_and_show_popup_menu):
21533 * xselect.c (x_decline_selection_request)
21534 (x_reply_selection_request): Avoid type-punned deref of X events.
21535
21536 2011-04-09 Eli Zaretskii <eliz@gnu.org>
21537
21538 Fix some uses of `int' instead of EMACS_INT.
21539 * search.c (string_match_1, fast_string_match)
21540 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
21541 (scan_buffer, find_next_newline_no_quit)
21542 (find_before_next_newline, search_command, Freplace_match)
21543 (Fmatch_data): Make some `int' variables be EMACS_INT.
21544
21545 * xdisp.c (display_count_lines): 3rd argument and return value now
21546 EMACS_INT. All callers changed.
21547 (pint2hrstr): Last argument is now EMACS_INT.
21548
21549 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
21550 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
21551 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
21552 (decode_coding_utf_16, decode_coding_emacs_mule)
21553 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21554 (decode_coding_ccl, decode_coding_charset)
21555 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21556 (decode_coding_iso_2022, decode_coding_emacs_mule)
21557 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
21558 <char_offset, last_offset>: Declare EMACS_INT.
21559 (encode_coding_utf_8, encode_coding_utf_16)
21560 (encode_coding_emacs_mule, encode_invocation_designation)
21561 (encode_designation_at_bol, encode_coding_iso_2022)
21562 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
21563 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
21564 Declare EMACS_INT.
21565 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
21566 (encode_invocation_designation): Last argument P_NCHARS is now
21567 EMACS_INT.
21568 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
21569 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
21570
21571 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
21572 All users changed.
21573
21574 * ccl.c (Fccl_execute_on_string): Declare some variables
21575 EMACS_INT.
21576
21577 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
21578
21579 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21580
21581 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21582
21583 * process.c (Fformat_network_address): Doc fix.
21584
21585 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21586
21587 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
21588
21589 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
21590
21591 * keyboard.c (read_char): Call Lisp function help-form-show,
21592 instead of using internal_with_output_to_temp_buffer.
21593 (Qhelp_form_show): New var.
21594 (syms_of_keyboard): Use DEFSYM macro.
21595
21596 * print.c (internal_with_output_to_temp_buffer): Function deleted.
21597
21598 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
21599
21600 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
21601
21602 * process.c (Flist_processes): Remove to Lisp.
21603 (list_processes_1): Delete.
21604
21605 2011-04-06 Eli Zaretskii <eliz@gnu.org>
21606
21607 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21608
21609 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21610
21611 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
21612
21613 Fix more problems found by GCC 4.6.0's static checks.
21614
21615 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21616
21617 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21618
21619 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
21620
21621 * xdisp.c (vmessage): Mark as a printf-like function.
21622
21623 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21624
21625 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21626
21627 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
21628 printf-like functions.
21629 (tiff_load): Add casts to remove these marks before passing them
21630 to system-supplied API.
21631
21632 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21633
21634 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21635 This avoids several warnings with gcc -Wstrict-overflow.
21636 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
21637 directly, rather than having caller test rule sign. This avoids
21638 some unnecessary tests.
21639 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
21640 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
21641 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
21642
21643 * xfont.c (xfont_text_extents): Remove var that was set but not used.
21644 (xfont_open): Avoid unnecessary tests.
21645
21646 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21647
21648 * composite.h, composite.c (composition_gstring_put_cache):
21649 Use EMACS_INT, not int, for length.
21650
21651 * composite.h (COMPOSITION_DECODE_REFS): New macro,
21652 breaking out part of COMPOSITION_DECODE_RULE.
21653 (COMPOSITION_DECODE_RULE): Use it.
21654 * composite.c (get_composition_id): Remove unused local vars,
21655 by using the new macro.
21656
21657 * textprop.c (set_text_properties_1): Change while to do-while,
21658 since the condition is always true at first.
21659
21660 * intervals.c (graft_intervals_into_buffer): Mark var as used.
21661 (interval_deletion_adjustment): Return unsigned value.
21662 All uses changed.
21663
21664 * process.c (list_processes_1, create_pty, read_process_output):
21665 (exec_sentinel): Remove vars that were set but not used.
21666 (create_pty): Remove unnecessary "volatile"s.
21667 (Fnetwork_interface_info): Avoid possibility of int overflow.
21668 (read_process_output): Do adaptive read buffering even if carryover.
21669 (read_process_output): Simplify nbytes computation if buffered.
21670
21671 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21672
21673 * syntax.c (scan_words): Remove var that was set but not used.
21674 (update_syntax_table): Use unsigned instead of int.
21675
21676 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
21677 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
21678 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
21679
21680 * print.c (print_error_message): Avoid int overflow.
21681
21682 * font.c (font_list_entities): Redo for clarity,
21683 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21684
21685 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
21686 (font_score): Avoid potential overflow in diff calculation.
21687
21688 * fns.c (substring_both): Remove var that is set but not used.
21689 (sxhash): Redo loop for clarity and to avoid wraparound warning.
21690
21691 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21692
21693 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
21694 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
21695 can always succeed if overflow has undefined behavior.
21696
21697 * search.c (boyer_moore, wordify): Remove vars set but not used.
21698 (wordify): Omit three unnecessary tests.
21699
21700 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21701 All callers changed. This avoids the need for an unused var.
21702
21703 * casefiddle.c (casify_region): Remove var that is set but not used.
21704
21705 * dired.c (file_name_completion): Remove var that is set but not used.
21706
21707 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21708
21709 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
21710 (Finsert_file_contents): Remove unnecessary code checking fd.
21711
21712 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21713 Check for integer overflow on size calculations.
21714
21715 * buffer.c (Fprevious_overlay_change): Remove var that is set
21716 but not used.
21717
21718 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21719 Remove vars that are set but not used.
21720 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
21721 (timer_check_2): Mark vars as initialized.
21722
21723 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21724
21725 * image.c (lookup_image): Remove var that is set but not used.
21726 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
21727
21728 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21729 that are set but not used.
21730
21731 * xfns.c (make_invisible_cursor): Don't return garbage
21732 if XCreateBitmapFromData fails (Bug#8410).
21733
21734 * xselect.c (x_get_local_selection, x_handle_property_notify):
21735 Remove vars that are set but not used.
21736
21737 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
21738 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
21739
21740 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21741 Remove var that is set but not used.
21742 (scroll_bar_windows_size): Now size_t, not int.
21743 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
21744 Check for overflow.
21745
21746 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21747 (map_tty_color) [!defined MSDOS]: Likewise.
21748
21749 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21750
21751 * coding.c: Remove vars that are set but not used.
21752 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
21753 All callers changed.
21754 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
21755 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
21756 (decode_coding_charset): Remove vars that are set but not used.
21757
21758 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21759 that is set but not used.
21760
21761 * print.c (print_object): Remove var that is set but not used.
21762
21763 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
21764 The gnulib version avoids calling malloc in the usual case,
21765 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
21766 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
21767 * filelock.c (current_lock_owner): Likewise.
21768 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
21769 * sysdep.c: Include allocator.h, careadlinkat.h.
21770 (emacs_no_realloc_allocator): New static constant.
21771 (emacs_readlink): New function.
21772 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21773 ../lib/careadlinkat.h.
21774
21775 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21776
21777 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
21778 first non-nil return value).
21779
21780 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
21781
21782 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
21783 if not defined (Bug#8403).
21784
21785 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21786
21787 * xdisp.c (display_count_lines): Remove parameter `start',
21788 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21789 (get_char_face_and_encoding): Remove parameter `multibyte_p',
21790 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21791 (fill_stretch_glyph_string): Remove parameters `row' and `area',
21792 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
21793 and thereabouts. All callers changed.
21794 (get_per_char_metric): Remove parameter `f', unused since
21795 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21796
21797 2011-04-02 Jim Meyering <meyering@redhat.com>
21798
21799 do not dereference NULL upon failed strdup
21800 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
21801 (ns_get_family): Likewise.
21802
21803 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21804
21805 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21806
21807 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
21808
21809 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
21810 later (Bug#8403).
21811
21812 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21813
21814 Add lexical binding.
21815
21816 * window.c (Ftemp_output_buffer_show): New fun.
21817 (Fsave_window_excursion):
21818 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
21819
21820 * lread.c (lisp_file_lexically_bound_p): New function.
21821 (Fload): Bind Qlexical_binding.
21822 (readevalloop): Remove `evalfun' arg.
21823 Bind Qinternal_interpreter_environment.
21824 (Feval_buffer): Bind Qlexical_binding.
21825 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
21826 Mark as dynamic.
21827 (syms_of_lread): Declare `lexical-binding'.
21828
21829 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
21830
21831 * keyboard.c (eval_dyn): New fun.
21832 (menu_item_eval_property): Use it.
21833
21834 * image.c (parse_image_spec): Use Ffunctionp.
21835
21836 * fns.c (concat, mapcar1): Accept byte-code-functions.
21837
21838 * eval.c (Fsetq): Handle lexical vars.
21839 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
21840 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
21841 (FletX, Flet): Obey lexical binding.
21842 (Fcommandp): Handle closures.
21843 (Feval): New `lexical' arg.
21844 (eval_sub): New function extracted from Feval. Use it almost
21845 everywhere where Feval was used. Look up vars in lexical env.
21846 Handle closures.
21847 (Ffunctionp): Move from subr.el.
21848 (Ffuncall): Handle closures.
21849 (apply_lambda): Remove `eval_flags'.
21850 (funcall_lambda): Handle closures and new byte-code-functions.
21851 (Fspecial_variable_p): New function.
21852 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
21853 but without exporting it to Lisp.
21854
21855 * doc.c (Fdocumentation, store_function_docstring):
21856 * data.c (Finteractive_form): Handle closures.
21857
21858 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21859 interactive spec.
21860
21861 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21862 New byte-codes.
21863 (exec_byte_code): New function extracted from Fbyte_code to handle new
21864 calling convention for byte-code-functions. Add new byte-codes.
21865
21866 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
21867
21868 * alloc.c (Fmake_symbol): Init new `declared_special' field.
21869
21870 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21871
21872 * xdisp.c (redisplay_internal): Fix prototype.
21873
21874 2011-03-31 Eli Zaretskii <eliz@gnu.org>
21875
21876 * xdisp.c (SCROLL_LIMIT): New macro.
21877 (try_scrolling): Use it when setting scroll_limit.
21878 Limit scrolling to 100 screen lines.
21879 (redisplay_window): Even when falling back on "recentering",
21880 position point in the window according to scroll-conservatively,
21881 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
21882
21883 (try_scrolling): When point is above the window, allow searching
21884 as far as scroll_max, or one screenful, to compute vertical
21885 distance from PT to the scroll margin position. This prevents
21886 try_scrolling from unnecessarily failing when
21887 scroll-conservatively is set to a value slightly larger than the
21888 window height. Clean up the case of PT below the margin at bottom
21889 of window: scroll_max can no longer be INT_MAX. When aggressive
21890 scrolling is in use, don't let point enter the opposite scroll
21891 margin as result of the scroll.
21892 (syms_of_xdisp) <scroll-conservatively>: Document the
21893 threshold of 100 lines for never-recentering scrolling.
21894
21895 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21896
21897 * dispextern.h (move_it_by_lines):
21898 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
21899 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
21900 (message_log_check_duplicate): Remove parameters `prev_bol' and
21901 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21902 (redisplay_internal): Remove parameter `preserve_echo_area',
21903 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
21904
21905 * indent.c (Fvertical_motion):
21906 * window.c (window_scroll_pixel_based, Frecenter):
21907 Don't pass `need_y_p' to `move_it_by_lines'.
21908
21909 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21910
21911 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
21912 steal a few bits to be more compact.
21913 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
21914 Remove unneeded casts.
21915
21916 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21917
21918 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
21919
21920 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
21921 binding" message (bug#7967).
21922
21923 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21924
21925 Fix more problems found by GCC 4.6.0's static checks.
21926
21927 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21928 Remove unused local var.
21929
21930 * editfns.c (Fmessage_box): Remove unused local var.
21931
21932 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
21933 (note_mode_line_or_margin_highlight, note_mouse_highlight):
21934 Omit unused local vars.
21935 * window.c (shrink_windows): Omit unused local var.
21936 * menu.c (digest_single_submenu): Omit unused local var.
21937 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21938 Omit unused local var.
21939
21940 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21941 Don't assume string length fits in int.
21942 (keyremap_step, read_key_sequence): Use size_t for sizes.
21943 (read_key_sequence): Don't check last_real_key_start redundantly.
21944
21945 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21946 instead of alloca (Bug#8344).
21947
21948 * eval.c (Fbacktrace): Don't assume nargs fits in int.
21949 (Fbacktrace_frame): Don't assume nframes fits in int.
21950
21951 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21952
21953 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
21954 concerns.
21955
21956 * term.c (produce_glyphless_glyph): Remove unnecessary test.
21957
21958 * cm.c (calccost): Turn while-do into do-while, for clarity.
21959
21960 * keyboard.c (syms_of_keyboard): Use the same style as later
21961 in this function when indexing through an array. This also
21962 works around GCC bug 48267.
21963
21964 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21965
21966 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21967
21968 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21969 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21970
21971 * keyboard.c, keyboard.h (num_input_events): Now size_t.
21972 This avoids undefined behavior on integer overflow, and is a bit
21973 more convenient anyway since it is compared to a size_t variable.
21974
21975 Variadic C functions now count arguments with size_t, not int.
21976 This avoids an unnecessary limitation on 64-bit machines, which
21977 caused (substring ...) to crash on large vectors (Bug#8344).
21978 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
21979 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
21980 All variadic functions and their callers changed accordingly.
21981 (struct gcpro.nvars): Now size_t, not int. All uses changed.
21982 * data.c (arith_driver, float_arith_driver): Likewise.
21983 * editfns.c (general_insert_function): Likewise.
21984 * eval.c (struct backtrace.nargs, interactive_p)
21985 (internal_condition_case_n, run_hook_with_args, apply_lambda)
21986 (funcall_lambda, mark_backtrace): Likewise.
21987 * fns.c (concat): Likewise.
21988 * frame.c (x_set_frame_parameters): Likewise.
21989 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
21990 0 if not found, not -1. All callers changed.
21991
21992 * alloc.c (garbage_collect): Don't assume stack size fits in int.
21993 (stack_copy_size): Now size_t, not int.
21994 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
21995
21996 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21997
21998 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
21999 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22000 All callers changed.
22001
22002 * lisp.h (multibyte_char_to_unibyte):
22003 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
22004 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
22005 * character.h (CHAR_TO_BYTE8):
22006 * cmds.c (internal_self_insert):
22007 * editfns.c (general_insert_function):
22008 * keymap.c (push_key_description):
22009 * search.c (Freplace_match):
22010 * xdisp.c (message_dolog, set_message_1): All callers changed.
22011
22012 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
22013
22014 * keyboard.c (safe_run_hook_funcall): New function.
22015 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
22016 don't set the hook to nil, but remove the offending function instead.
22017 (Qcommand_hook_internal): Remove, unused.
22018 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
22019 Vcommand_hook_internal.
22020
22021 * eval.c (enum run_hooks_condition): Remove.
22022 (funcall_nil, funcall_not): New functions.
22023 (run_hook_with_args): Call each function through a `funcall' argument.
22024 Remove `cond' argument, now redundant.
22025 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
22026 (Frun_hook_with_args_until_failure): Adjust accordingly.
22027 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
22028
22029 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
22030
22031 * dispextern.h (string_buffer_position): Remove declaration.
22032
22033 * print.c (strout): Remove parameter `multibyte', unused since
22034 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
22035
22036 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
22037 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
22038 All callers changed.
22039
22040 * w32.c (_wsa_errlist): Use braces for struct initializers.
22041
22042 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
22043 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
22044 All callers changed.
22045 (string_buffer_position): Likewise. Also, make static (it's never
22046 used outside xdisp.c).
22047 (cursor_row_p): Remove parameter `w', unused since
22048 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
22049 (decode_mode_spec): Remove parameter `precision', introduced during
22050 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
22051 All callers changed.
22052
22053 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22054
22055 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
22056
22057 2011-03-27 Anders Lindgren <andlind@gmail.com>
22058
22059 * nsterm.m (ns_menu_bar_is_hidden): New variable.
22060 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
22061 (ns_update_auto_hide_menu_bar): New functions.
22062 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
22063 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
22064 ns_constrain_all_frames.
22065 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
22066 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
22067
22068 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22069
22070 * nsmenu.m (runDialogAt): Remove argument to timer_check.
22071
22072 2011-03-27 Glenn Morris <rgm@gnu.org>
22073
22074 * syssignal.h: Replace RETSIGTYPE with void.
22075 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
22076 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
22077 Replace SIGTYPE with void everywhere.
22078 * s/usg5-4-common.h (SIGTYPE): Remove definition.
22079 * s/template.h (SIGTYPE): Remove commented out definition.
22080
22081 2011-03-26 Eli Zaretskii <eliz@gnu.org>
22082
22083 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
22084 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
22085
22086 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
22087
22088 * w32.c (read_unc_volume): Use parameter `henum', instead of
22089 global variable `wget_enum_handle'.
22090
22091 * keymap.c (describe_vector): Remove parameters `indices' and
22092 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
22093 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
22094
22095 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
22096
22097 * keyboard.c (timer_check): Remove parameter `do_it_now',
22098 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
22099 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
22100 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
22101
22102 * keyboard.c (read_char):
22103 * w32menu.c (w32_menu_display_help):
22104 * xmenu.c (show_help_event, menu_help_callback):
22105 Adjust calls to `show_help_echo'.
22106
22107 * gtkutil.c (xg_maybe_add_timer):
22108 * keyboard.c (readable_events):
22109 * process.c (wait_reading_process_output):
22110 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
22111
22112 * insdel.c (adjust_markers_gap_motion):
22113 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
22114 (gap_left, gap_right): Don't call it.
22115
22116 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
22117
22118 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
22119 incurred during fontification.
22120
22121 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
22122
22123 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
22124 (DEFVAR_PER_BUFFER): Don't pass it.
22125
22126 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
22127 (scrolling_window): Don't pass it.
22128
22129 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
22130
22131 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
22132
22133 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
22134 and `suffix'.
22135 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
22136 of variables specific to SELinux and computation of `encoded_absname'.
22137
22138 * image.c (XPutPixel): Remove unused variable `height'.
22139
22140 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
22141
22142 * unexw32.c (get_section_info): Remove unused variable `section'.
22143
22144 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
22145 (system_process_attributes): Remove unused variable `sess'.
22146 (sys_read): Remove unused variable `err'.
22147
22148 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
22149 (w32_wnd_proc): Remove unused variable `isdead'.
22150 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
22151 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
22152 (x_create_tip_frame): Remove unused variable `tem'.
22153
22154 * w32inevt.c (w32_console_read_socket):
22155 Remove unused variable `no_events'.
22156
22157 * w32term.c (x_draw_composite_glyph_string_foreground):
22158 Remove unused variable `width'.
22159
22160 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
22161
22162 * w32term.c (x_set_glyph_string_clipping):
22163 Don't pass uninitialized region to CombineRgn.
22164
22165 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
22166
22167 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
22168 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
22169 (Fx_close_connection): Remove unused variable `i'.
22170
22171 * w32font.c (w32font_draw): Return number of glyphs.
22172 (w32font_open_internal): Remove unused variable `i'.
22173 (w32font_driver): Add missing initializer.
22174
22175 * w32menu.c (utf8to16): Remove unused variable `utf16'.
22176 (fill_in_menu): Remove unused variable `items_added'.
22177
22178 * w32term.c (last_mouse_press_frame): Remove static global variable.
22179 (w32_clip_to_row): Remove unused variable `f'.
22180 (x_delete_terminal): Remove unused variable `i'.
22181
22182 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
22183 (NOTHING): Remove unused static global variable.
22184 (uniscribe_check_otf): Remove unused variable `table'.
22185 (uniscribe_font_driver): Add missing initializers.
22186
22187 2011-03-23 Julien Danjou <julien@danjou.info>
22188
22189 * term.c (Fsuspend_tty, Fresume_tty):
22190 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
22191 * window.c (temp_output_buffer_show):
22192 * insdel.c (signal_before_change):
22193 * frame.c (Fhandle_switch_frame):
22194 * fileio.c (Fdo_auto_save):
22195 * emacs.c (Fkill_emacs):
22196 * editfns.c (save_excursion_restore):
22197 * cmds.c (internal_self_insert):
22198 * callint.c (Fcall_interactively):
22199 * buffer.c (Fkill_all_local_variables):
22200 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
22201 Use Frun_hooks.
22202 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
22203 unconditionally since it does the check itself.
22204
22205 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
22206
22207 Fix more problems found by GCC 4.5.2's static checks.
22208
22209 * coding.c (encode_coding_raw_text): Avoid unnecessary test
22210 the first time through the loop, since we know p0 < p1 then.
22211 This also avoids a gcc -Wstrict-overflow warning.
22212
22213 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
22214 leading to a memory leak, possible in functions like
22215 load_charset_map_from_file that can allocate an unbounded number
22216 of objects (Bug#8318).
22217
22218 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
22219 that could (at least in theory) be that large.
22220
22221 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
22222 This is less likely to overflow, and avoids undefined behavior if
22223 overflow does occur. All callers changed. Use strtoul to scan
22224 for the unsigned long integer.
22225 (pint2hrstr): Simplify and tune code slightly.
22226 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
22227
22228 * scroll.c (do_scrolling): Work around GCC bug 48228.
22229 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
22230
22231 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22232 This also avoids a warning with gcc -Wstrict-overflow.
22233 (validate_x_resource_name): Simplify count usage.
22234 This also avoids a warning with gcc -Wstrict-overflow.
22235
22236 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22237 fail (Bug#8306).
22238
22239 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
22240
22241 * process.c (Fmake_network_process): Use socklen_t, not int,
22242 where POSIX says socklen_t is required in portable programs.
22243 This fixes a porting bug on hosts like 64-bit HP-UX, where
22244 socklen_t is wider than int (Bug#8277).
22245 (Fmake_network_process, server_accept_connection):
22246 (wait_reading_process_output, read_process_output):
22247 Likewise.
22248
22249 * process.c: Rename or move locals to avoid shadowing.
22250 (list_processes_1, Fmake_network_process):
22251 (read_process_output_error_handler, exec_sentinel_error_handler):
22252 Rename or move locals.
22253 (Fmake_network_process): Define label "retry_connect" only if needed.
22254 (Fnetwork_interface_info): Fix pointer signedness.
22255 (process_send_signal): Add cast to avoid pointer signedness problem.
22256 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
22257 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
22258
22259 Make tparam.h and terminfo.c consistent.
22260 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
22261 Include tparam.h instead, since it declares them.
22262 * cm.h (PC): Remove extern decl; tparam.h now does this.
22263 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
22264 * terminfo.c: Include tparam.h, to check interfaces.
22265 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
22266 (tparam): Adjust signature to match interface in tparam.h;
22267 this removes some undefined behavior. Check that outstring and len
22268 are zero, which they always are with Emacs.
22269 * tparam.h (PC, BC, UP): New extern decls.
22270
22271 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
22272 (xftfont_open): Rename locals to avoid shadowing.
22273
22274 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
22275 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
22276 (OTF_TAG_SYM): Omit macro if not needed.
22277 (ftfont_list): Remove unused local.
22278 (get_adstyle_property, ftfont_pattern_entity):
22279 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
22280 Rename locals to avoid shadowing.
22281
22282 * xfont.c (xfont_list_family): Mark var as initialized.
22283
22284 * xml.c (make_dom): Now static.
22285
22286 * composite.c (composition_compute_stop_pos): Rename local to
22287 avoid shadowing.
22288 (composition_reseat_it): Remove unused locals.
22289 (find_automatic_composition, composition_adjust_point): Likewise.
22290 (composition_update_it): Mark var as initialized.
22291 (find_automatic_composition): Mark vars as initialized,
22292 with a FIXME (Bug#8290).
22293
22294 character.h: Rename locals to avoid shadowing.
22295 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
22296 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
22297 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
22298 (BUF_DEC_POS): Be more systematic about renaming local temporaries
22299 to avoid shadowing.
22300
22301 * textprop.c (property_change_between_p): Remove; unused.
22302
22303 * intervals.c (interval_start_pos): Now static.
22304
22305 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
22306
22307 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
22308 Rename locals to avoid shadowing.
22309
22310 * sound.c (wav_play, au_play, Fplay_sound_internal):
22311 Fix pointer signedness.
22312 (alsa_choose_format): Remove unused local var.
22313 (wav_play): Initialize a variable to 0, to prevent undefined
22314 behavior (Bug#8278).
22315
22316 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
22317
22318 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
22319
22320 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
22321 clobbering (Bug#8298).
22322 * sysdep.c (sys_subshell): Likewise.
22323 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
22324
22325 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
22326 This should get cleaned up, so that child_setup has the
22327 same signature on all platforms.
22328
22329 * callproc.c (call_process_cleanup): Now static.
22330 (relocate_fd): Rename locals to avoid shadowing.
22331
22332 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
22333
22334 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
22335 not to be necessary, and produces flickering.
22336
22337 2011-03-20 Glenn Morris <rgm@gnu.org>
22338
22339 * config.in: Remove file.
22340
22341 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
22342
22343 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
22344 are now in src/globals.h.
22345 (syms_of_minibuf): Remove spurious & from previous change.
22346
22347 2011-03-20 Leo Liu <sdl.web@gmail.com>
22348
22349 * minibuf.c (completing-read-function): New variable.
22350 (completing-read-default): Rename from completing-read.
22351 (completing-read): Call completing-read-function.
22352
22353 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22354
22355 * xfaces.c (Fx_load_color_file):
22356 Read color file from absolute filename (bug#8250).
22357
22358 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22359
22360 * makefile.w32-in: Update dependencies.
22361
22362 2011-03-17 Eli Zaretskii <eliz@gnu.org>
22363
22364 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
22365
22366 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
22367
22368 Fix more problems found by GCC 4.5.2's static checks.
22369
22370 * process.c (make_serial_process_unwind, send_process_trap):
22371 (sigchld_handler): Now static.
22372
22373 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
22374 That way, the code declares only the vars that it needs.
22375 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
22376 * s/cygwin.h (PTY_ITERATION): Likewise.
22377 * s/darwin.h (PTY_ITERATION): Likewise.
22378 * s/gnu-linux.h (PTY_ITERATION): Likewise.
22379
22380 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
22381 * process.c (allocate_pty): Don't declare stb unless it's needed.
22382
22383 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
22384 (CONSTANTLIM): Remove; unused.
22385 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22386 Define only if needed.
22387
22388 * unexelf.c (unexec): Name an expression,
22389 to avoid gcc -Wbad-function-cast warning.
22390 Use a different way to cause a compilation error if anyone uses
22391 n rather than nn, a way that does not involve shadowing.
22392 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
22393
22394 * deps.mk (unexalpha.o): Remove; unused.
22395
22396 New file unexec.h, the (simple) interface for unexec (Bug#8267).
22397 * unexec.h: New file.
22398 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
22399 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
22400 Depend on unexec.h.
22401 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
22402 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
22403 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
22404 Change as necessary to match prototype in unexec.h.
22405
22406 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22407 shadowing.
22408 (back_comment, skip_chars): Mark vars as initialized.
22409
22410 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22411 Rename locals to avoid shadowing.
22412
22413 * lread.c (read1): Rewrite so as not to use empty "else".
22414 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
22415
22416 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22417
22418 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22419 warning when compiling print.c.
22420
22421 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22422 instead of using an uninitialized var.
22423 (font_sort_entities): Mark var as initialized.
22424
22425 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22426
22427 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22428 pointers to constants.
22429 (font_parse_fcname): Remove unused vars.
22430 (font_delete_unmatched): Now static.
22431 (font_get_spec): Remove; unused.
22432 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22433 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22434 Rename or move locals to avoid shadowing.
22435
22436 * fns.c (require_nesting_list, require_unwind): Now static.
22437 (Ffillarray): Rename locals to avoid shadowing.
22438
22439 * floatfns.c (domain_error2): Define only if needed.
22440 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22441
22442 * alloc.c (mark_backtrace): Move decl from here ...
22443 * lisp.h: ... to here, so that it can be checked.
22444
22445 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22446 (Fdefvar): Rewrite so as not to use empty "else".
22447 (lisp_indirect_variable): Name an expression,
22448 to avoid gcc -Wbad-function-cast warning.
22449 (Fdefvar): Rename locals to avoid shadowing.
22450
22451 * callint.c (quotify_arg, quotify_args): Now static.
22452 (Fcall_interactively): Rename locals to avoid shadowing.
22453 Use const pointer when appropriate.
22454
22455 * lisp.h (get_system_name, get_operating_system_release):
22456 Move decls here, to check interfaces.
22457 * process.c (get_operating_system_release): Move decl to lisp.h.
22458 * xrdb.c (get_system_name): Likewise.
22459 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22460 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22461 some of which prompt warnings from gcc -Wbad-function-cast.
22462 (Fformat_time_string, Fencode_time, Finsert_char):
22463 (Ftranslate_region_internal, Fformat):
22464 Rename or remove local vars to avoid shadowing.
22465 (Ftranslate_region_internal): Mark var as initialized.
22466
22467 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22468 avoid shadowing.
22469
22470 * lisp.h (eassert): Check that the argument compiles, even if
22471 ENABLE_CHECKING is not defined.
22472
22473 * data.c (Findirect_variable): Name an expression, to avoid
22474 gcc -Wbad-function-cast warning.
22475 (default_value, arithcompare, arith_driver, arith_error): Now static.
22476 (store_symval_forwarding): Rename local to avoid shadowing.
22477 (Fmake_variable_buffer_local, Fmake_local_variable):
22478 Mark variables as initialized.
22479 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22480
22481 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22482 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22483 Rename locals to avoid shadowing.
22484 (mark_stack): Move local variables into the #ifdef region where
22485 they're used.
22486 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22487 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22488 needed otherwise.
22489 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22490 (GC_STRING_CHARS): Remove; not used.
22491 (Fmemory_limit): Cast sbrk's returned value to char *.
22492
22493 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22494 avoids undefined behavior in theory.
22495
22496 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22497
22498 Use functions, not macros, for up- and down-casing (Bug#8254).
22499 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22500 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22501 to use the following functions instead of these macros.
22502 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22503 EMACS_INT, since callers assume the returned value fits in int.
22504 (upcase1): Likewise, for UPCASE_TABLE.
22505 (uppercasep, lowercasep, upcase): New static inline functions.
22506 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22507 the race-condition problem in the old DOWNCASE.
22508
22509 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22510 Rename locals to avoid shadowing.
22511 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22512 (regex_compile, re_search_2, re_match_2_internal):
22513 Remove unused local vars.
22514 (FREE_VAR): Rewrite so as not to use empty "else",
22515 which gcc can warn about.
22516 (regex_compile, re_match_2_internal): Mark locals as initialized.
22517 (RETALLOC_IF): Define only if needed.
22518 (WORDCHAR_P): Likewise. This one is never needed, but is used
22519 only in a comment talking about a compiler bug, so put inside
22520 the #if 0 of that comment.
22521 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
22522 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
22523 Remove; unused.
22524
22525 * search.c (boyer_moore): Rename locals to avoid shadowing.
22526 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22527 (PREV_CHAR_BOUNDARY): Likewise.
22528
22529 * search.c (simple_search): Remove unused var.
22530
22531 * dired.c (compile_pattern): Move decl from here ...
22532 * lisp.h: ... to here, so that it can be checked.
22533 (struct re_registers): New forward decl.
22534
22535 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22536
22537 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
22538 All uses changed.
22539 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
22540 Rename locals to avoid shadowing.
22541 (Fvertical_motion): Mark locals as initialized.
22542
22543 * casefiddle.c (casify_object, casify_region): Now static.
22544 (casify_region): Mark local as initialized.
22545
22546 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22547
22548 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
22549 New macros, so that the caller can use some names other than
22550 gcpro1, gcpro2, etc.
22551 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
22552 of the new macros.
22553 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
22554 argument, for consistency with GCPRO2_VAR, etc: it is now the
22555 prefix of the variable, not the variable itself. All uses
22556 changed.
22557 * dired.c (directory_files_internal, file_name_completion):
22558 Rename locals to avoid shadowing.
22559
22560 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
22561 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
22562 dired.c's scmp function, had undefined behavior.
22563 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22564 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
22565 * buffer.h: ... to here, because these macros use current_buffer,
22566 and the new implementation with inline functions needs to have
22567 current_buffer in scope now, rather than later when the macros
22568 are used.
22569 (downcase, upcase1): New static inline functions.
22570 (DOWNCASE, UPCASE1): Reimplement using these functions.
22571 This avoids undefined behavior in expressions like
22572 DOWNCASE (x) == DOWNCASE (y), which previously suffered
22573 from race conditions in accessing the global variables
22574 case_temp1 and case_temp2.
22575 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
22576 * lisp.h (case_temp1, case_temp2): Remove their decls.
22577 * character.h (ASCII_CHAR_P): Move from here ...
22578 * lisp.h: ... to here, so that the inline functions mentioned
22579 above can use them.
22580
22581 * dired.c (directory_files_internal_unwind): Now static.
22582
22583 * fileio.c (file_name_as_directory, directory_file_name):
22584 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
22585 Now static.
22586 (file_name_as_directory): Use const pointers when appropriate.
22587 (Fexpand_file_name): Likewise. In particular, newdir might
22588 point at constant storage, so make it a const pointer.
22589 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
22590 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22591 signedness issues.
22592 (Fset_file_times, Finsert_file_contents, auto_save_error):
22593 Rename locals to avoid shadowing.
22594
22595 * minibuf.c (choose_minibuf_frame_1): Now static.
22596 (Ftry_completion, Fall_completions): Rename or remove locals
22597 to avoid shadowing.
22598
22599 * marker.c (bytepos_to_charpos): Remove; unused.
22600
22601 * lisp.h (verify_bytepos, count_markers): New decls,
22602 so that gcc does not warn that these functions aren't declared.
22603
22604 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22605 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
22606 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
22607 (copy_text): Remove unused local var.
22608
22609 * filelock.c (within_one_second): Now static.
22610 (lock_file_1): Rename local to avoid shadowing.
22611
22612 * buffer.c (fix_overlays_before): Mark locals as initialized.
22613 (fix_start_end_in_overlays): Likewise. This function should be
22614 simplified by using pointers-to-pointers, but that's a different
22615 matter.
22616 (switch_to_buffer_1): Now static.
22617 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22618 (report_overlay_modification): Rename locals to avoid shadowing.
22619
22620 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
22621 Fix pointer signedness issue.
22622 (sys_subshell): Mark local as volatile if checking for lint,
22623 to suppress a gcc -Wclobbered warning that does not seem to be right.
22624 (MAXPATHLEN): Define only if needed.
22625
22626 * process.c (serial_open, serial_configure): Move decls from here ...
22627 * systty.h: ... to here, so that they can be checked.
22628
22629 * fns.c (get_random, seed_random): Move extern decls from here ...
22630 * lisp.h: ... to here, so that they can be checked.
22631
22632 * sysdep.c (reset_io): Now static.
22633 (wait_for_termination_signal): Remove; unused.
22634
22635 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22636 (copy_keymap_item, append_key, push_text_char_description):
22637 Now static.
22638 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
22639 (DENSE_TABLE_SIZE): Remove; unused.
22640 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22641 (describe_map_tree):
22642 Rename locals to avoid shadowing.
22643
22644 * keyboard.c: Declare functions static if they are not used elsewhere.
22645 (echo_char, echo_dash, cmd_error, top_level_2):
22646 (poll_for_input, handle_async_input): Now static.
22647 (read_char, kbd_buffer_get_event, make_lispy_position):
22648 (make_lispy_event, make_lispy_movement, apply_modifiers):
22649 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
22650 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
22651 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
22652 (read_key_sequence, read_char): Mark locals as initialized.
22653 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
22654
22655 * keyboard.h (make_ctrl_char): New decl.
22656 (mark_kboards): Move decl here ...
22657 * alloc.c (mark_kboards): ... from here.
22658
22659 * lisp.h (force_auto_save_soon): New decl.
22660
22661 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
22662 (DEFINE_DUMMY_FUNCTION): New macro.
22663 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22664 Use it.
22665 (main): Add casts to avoid warnings
22666 if GCC considers string literals to be constants.
22667
22668 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22669
22670 * dbusbind.c: Pointer signedness fixes.
22671 (xd_signature, xd_append_arg, xd_initialize):
22672 (Fdbus_call_method, Fdbus_call_method_asynchronously):
22673 (Fdbus_method_return_internal, Fdbus_method_error_internal):
22674 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
22675 (Fdbus_register_signal): Use SSDATA when the context wants char *.
22676
22677 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22678 if GCC considers string literals to be constants.
22679 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
22680
22681 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22682
22683 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22684 (print_preprocess, print_object): New macro to fix last change.
22685
22686 * print.c (print_preprocess): Don't forget font objects.
22687
22688 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
22689
22690 * emacs.c (USAGE3): Doc fixes.
22691
22692 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22693
22694 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22695 structure.
22696
22697 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
22698
22699 * lisp.h (VWindow_system, Qfile_name_history):
22700 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
22701 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
22702 (w32_system_caret_x, w32_system_caret_y): Declare extern.
22703
22704 * w32select.c: Don't #include "keyboard.h".
22705 (run_protected): Add extern declaration for waiting_for_input.
22706
22707 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
22708 * w32console.c (detect_input_pending, read_input_pending)
22709 (encode_terminal_code):
22710 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
22711 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
22712 (w32_system_caret_y, Qfile_name_history):
22713 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
22714 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
22715 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
22716 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
22717 * w32proc.c (Qlocal, report_file_error):
22718 * w32term.c (Vwindow_system, updating_frame):
22719 * w32uniscribe.c (initialized, uniscribe_font_driver):
22720 Remove unneeded extern declarations.
22721
22722 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
22723
22724 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
22725
22726 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
22727
22728 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
22729 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
22730 These macros can no longer be used for assignment.
22731
22732 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22733 Assign struct members directly, instead of using BUF_BEGV etc.
22734 (record_buffer_markers, fetch_buffer_markers): New functions for
22735 recording and fetching special buffer markers.
22736 (set_buffer_internal_1, set_buffer_temp): Use them.
22737
22738 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
22739
22740 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
22741
22742 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
22743 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
22744
22745 * xdisp.c (hscroll_window_tree):
22746 (reconsider_clip_changes): Use PT instead of BUF_PT.
22747
22748 2011-03-13 Eli Zaretskii <eliz@gnu.org>
22749
22750 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22751 $(EMACS_ROOT)/lib/intprops.h.
22752
22753 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22754
22755 Fix more problems found by GCC 4.5.2's static checks.
22756
22757 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22758 to unsigned char * to avoid compiler diagnostic.
22759 (xg_free_frame_widgets): Make it clear that a local variable is
22760 needed only if USE_GTK_TOOLTIP.
22761 (gdk_window_get_screen): Make it clear that this macro is needed
22762 only if USE_GTK_TOOLTIP.
22763 (int_gtk_range_get_value): New function, which avoids a diagnostic
22764 from gcc -Wbad-function-cast.
22765 (xg_set_toolkit_scroll_bar_thumb): Use it.
22766 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
22767 diagnostic from gcc -Wbad-function-cast.
22768 (get_utf8_string, xg_get_file_with_chooser):
22769 Rename locals to avoid shadowing.
22770 (create_dialog): Move locals to avoid shadowing.
22771
22772 * xgselect.c (xg_select): Remove unused var.
22773
22774 * image.c (four_corners_best): Mark locals as initialized.
22775 (gif_load): Initialize transparent_p to zero (Bug#8238).
22776 Mark another local as initialized.
22777 (my_png_error, my_error_exit): Mark with NO_RETURN.
22778
22779 * image.c (clear_image_cache): Now static.
22780 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
22781 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
22782 (x_edge_detection): Remove unnecessary cast that
22783 gcc -Wbad-function-cast diagnoses.
22784 (gif_load): Fix pointer signedness.
22785 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22786 (jpeg_load, gif_load): Rename locals to avoid shadowing.
22787
22788 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
22789
22790 Improve quality of tests for time stamp overflow.
22791 For example, without this patch (encode-time 0 0 0 1 1
22792 1152921504606846976) returns the obviously-bogus value (-948597
22793 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
22794 reports time overflow. See
22795 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
22796 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
22797 * editfns.c: Include limits.h and intprops.h.
22798 (TIME_T_MIN, TIME_T_MAX): New macros.
22799 (time_overflow): Move earlier, to before first use.
22800 (hi_time, lo_time): New functions, for an accurate test for
22801 out-of-range times.
22802 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
22803 (Fget_internal_run_time): Don't assume time_t fits in int.
22804 (make_time): Use list2 instead of Fcons twice.
22805 (Fdecode_time): More accurate test for out-of-range times.
22806 (check_tm_member): New function.
22807 (Fencode_time): Use it, to test for out-of-range times.
22808 (lisp_time_argument): Don't rely on undefined left-shift and
22809 right-shift behavior when checking for time stamp overflow.
22810
22811 * editfns.c (time_overflow): New function, refactoring common code.
22812 (Fformat_time_string, Fdecode_time, Fencode_time):
22813 (Fcurrent_time_string): Use it.
22814
22815 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
22816 * dired.c (make_time): Move to ...
22817 * editfns.c (make_time): ... here.
22818 * systime.h: Note the move.
22819
22820 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22821
22822 * fringe.c (update_window_fringes): Remove unused variables.
22823
22824 * unexmacosx.c (copy_data_segment): Also copy __got section.
22825 (Bug#8223)
22826
22827 2011-03-12 Eli Zaretskii <eliz@gnu.org>
22828
22829 * termcap.c [MSDOS]: Include "msdos.h".
22830 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22831 Constify `char *' arguments and their references according to
22832 prototypes in tparam.h.
22833
22834 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
22835
22836 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
22837 Adapt all references accordingly.
22838
22839 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
22840
22841 2011-03-11 Tom Tromey <tromey@redhat.com>
22842
22843 * buffer.c (syms_of_buffer): Remove obsolete comment.
22844
22845 2011-03-11 Eli Zaretskii <eliz@gnu.org>
22846
22847 * termhooks.h (encode_terminal_code): Declare prototype.
22848
22849 * msdos.c (encode_terminal_code): Don't declare prototype.
22850
22851 * term.c (encode_terminal_code): Now external again, used by
22852 w32console.c and msdos.c.
22853
22854 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
22855 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
22856
22857 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
22858
22859 Fix some minor problems found by GCC 4.5.2's static checks.
22860
22861 * fringe.c (update_window_fringes): Mark locals as initialized
22862 (Bug#8227).
22863 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
22864
22865 * alloc.c (mark_fringe_data): Move decl from here ...
22866 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
22867 to check its interface.
22868 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
22869
22870 * fontset.c (free_realized_fontset): Now static.
22871 (Fset_fontset_font): Rename local to avoid shadowing.
22872 (fontset_font): Mark local as initialized.
22873 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
22874
22875 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22876
22877 * xselect.c (x_disown_buffer_selections): Remove; not used.
22878 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
22879 (x_own_selection, Fx_disown_selection_internal): Rename locals
22880 to avoid shadowing.
22881 (x_handle_dnd_message): Remove local to avoid shadowing.
22882
22883 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
22884 so that the caller can use some name other than gcpro1.
22885 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
22886 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22887 (Fx_backspace_delete_keys_p):
22888 Use them to avoid shadowing, and rename vars to avoid shadowing.
22889 (x_decode_color, x_set_name, x_window): Now static.
22890 (Fx_create_frame): Add braces to silence GCC warning.
22891 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
22892 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22893 Remove unused locals.
22894 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22895 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
22896 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
22897 macros.
22898
22899 * xterm.h (x_mouse_leave): New decl.
22900
22901 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22902 Remove unused functions.
22903 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22904 (x_calc_absolute_position): Now static.
22905 (XTread_socket): Don't define label "out" unless it's used.
22906 Don't declare local "event" unless it's used.
22907 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22908 unless they are used.
22909 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22910 (x_fatal_error_signal): Remove; not used.
22911 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
22912 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
22913 (x_error_catcher, x_connection_closed, x_error_handler):
22914 (x_error_quitter, xembed_send_message, x_iconify_frame):
22915 (my_log_handler): Rename locals to avoid shadowing.
22916 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
22917 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
22918
22919 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22920 Rename or move locals to avoid shadowing.
22921 (tty_defined_color, merge_face_heights): Now static.
22922 (free_realized_faces_for_fontset): Remove; not used.
22923 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22924 does not deduce is never used uninitialized.
22925 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22926 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
22927
22928 * terminal.c (store_terminal_param): Now static.
22929
22930 * xmenu.c (menu_highlight_callback): Now static.
22931 (set_frame_menubar): Remove unused local.
22932 (xmenu_show): Rename parameter to avoid shadowing.
22933 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22934 since they might point to immutable storage.
22935 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22936 since it's unused otherwise.
22937
22938 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
22939 Add a FIXME, since the code still doesn't look right. (Bug#8215)
22940 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22941 avoids a gcc -Wuninitialized diagnostic.
22942 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
22943 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22944 does not deduce are never used uninitialized.
22945
22946 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22947
22948 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
22949 * window.c (window_loop, size_window):
22950 (run_window_configuration_change_hook, enlarge_window): Likewise.
22951
22952 * window.c (display_buffer): Now static.
22953 (size_window): Mark variables that gcc -Wuninitialized
22954 does not deduce are never used uninitialized.
22955 * window.h (check_all_windows): New decl, to forestall
22956 gcc -Wmissing-prototypes diagnostic.
22957 * dispextern.h (bidi_dump_cached_states): Likewise.
22958
22959 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22960 shadowing.
22961 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
22962 Include <limits.h>.
22963 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22964 and to avoid gcc -Wuninitialized warning.
22965 (load_charset_map): Mark variables that gcc -Wuninitialized
22966 does not deduce are never used uninitialized.
22967 (load_charset): Abort instead of using uninitialized var (Bug#8229).
22968
22969 * coding.c (coding_set_source, coding_set_destination):
22970 Use "else { /* comment */ }" rather than "else /* comment */;"
22971 for clarity, and to avoid gcc -Wempty-body warning.
22972 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
22973 a block, when the outer 'i' will do.
22974 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
22975 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
22976 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
22977 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
22978 (Fdecode_sjis_char, Fdefine_coding_system_internal):
22979 Rename locals to avoid shadowing.
22980 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22981 * coding.c (emacs_mule_char, encode_invocation_designation):
22982 Now static, since they're not used elsewhere.
22983 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
22984 (decode_coding_object, encode_coding_object, detect_coding_system):
22985 (decode_coding_emacs_mule): Mark variables that gcc
22986 -Wuninitialized does not deduce are never used uninitialized.
22987 (detect_coding_iso_2022): Initialize a local variable that might
22988 be used uninitialized. Leave a FIXME because it's not clear that
22989 this initialization is needed. (Bug#8211)
22990 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
22991 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
22992 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
22993 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
22994 Remove unused macros.
22995
22996 * category.c (hash_get_category_set): Remove unused local var.
22997 (copy_category_table): Now static, since it's not used elsewhere.
22998 * character.c (string_count_byte8): Likewise.
22999
23000 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
23001 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
23002
23003 * chartab.c (copy_sub_char_table): Now static, since it's not used
23004 elsewhere.
23005 (sub_char_table_ref_and_range, char_table_ref_and_range):
23006 Rename locals to avoid shadowing.
23007 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
23008
23009 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
23010 (BIDI_BOB): Remove unused macro.
23011
23012 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
23013 deduce are never used uninitialized.
23014 * term.c (encode_terminal_code): Likewise.
23015
23016 * term.c (encode_terminal_code): Now static. Remove unused local.
23017
23018 * tparam.h: New file.
23019 * term.c, tparam.h: Include it.
23020 * deps.mk (term.o, tparam.o): Depend on tparam.h.
23021 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
23022 Move these decls to tparam.h, and make them agree with what
23023 is actually in tparam.c. The previous trick of using incompatible
23024 decls in different modules does not conform to the C standard.
23025 All callers of tparam changed to use tparam's actual API.
23026 * tparam.c (tparam1, tparam, tgoto):
23027 Use const pointers where appropriate.
23028
23029 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
23030 * cm.h (struct cm): Likewise.
23031 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
23032 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
23033 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
23034 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
23035 (turn_on_face, init_tty): Likewise.
23036 * termchar.h (struct tty_display_info): Likewise.
23037
23038 * term.c (term_mouse_position): Rename local to avoid shadowing.
23039
23040 * alloc.c (mark_ttys): Move decl from here ...
23041 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
23042
23043 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
23044
23045 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
23046
23047 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
23048
23049 * search.c (compile_pattern_1): Remove argument regp, unused since
23050 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
23051 (compile_pattern): Don't pass it.
23052
23053 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
23054
23055 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
23056 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
23057 for ! HAVE_GTK3.
23058 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
23059
23060 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
23061
23062 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
23063 gdk_window_get_screen, gdk_window_get_geometry,
23064 gdk_x11_window_lookup_for_display and GDK_KEY_g.
23065 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
23066 (xg_get_pixbuf_from_pixmap): New function.
23067 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
23068 to Pixmap, take frame as parameter, remove GdkColormap parameter.
23069 Call xg_get_pixbuf_from_pixmap instead of
23070 gdk_pixbuf_get_from_drawable.
23071 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
23072 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
23073 (xg_check_special_colors): Use GtkStyleContext and its functions
23074 for HAVE_GTK3.
23075 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
23076 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
23077 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
23078 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
23079 Call gtk_widget_get_preferred_size.
23080 (xg_frame_resized): gdk_window_get_geometry only takes 5
23081 parameters.
23082 (xg_win_to_widget, xg_event_is_for_menubar):
23083 Call gdk_x11_window_lookup_for_display.
23084 (xg_set_widget_bg): New function.
23085 (delete_cb): New function.
23086 (xg_create_frame_widgets): Connect delete-event to delete_cb.
23087 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
23088 (xg_set_background_color): Call xg_set_widget_bg.
23089 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
23090 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
23091 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
23092 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
23093 if ! HAVE_GTK3.
23094 (update_frame_tool_bar): Call gtk_widget_hide.
23095 (xg_initialize): Use GDK_KEY_g.
23096
23097 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
23098 if ! HAVE_GTK3
23099 (x_session_initialize): Call gdk_x11_set_sm_client_id.
23100
23101 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
23102 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
23103 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
23104
23105 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
23106
23107 * w32xfns.c (select_palette): Check success of RealizePalette against
23108 GDI_ERROR, not zero.
23109
23110 See ChangeLog.11 for earlier changes.
23111
23112 ;; Local Variables:
23113 ;; coding: utf-8
23114 ;; End:
23115
23116 Copyright (C) 2011-2013 Free Software Foundation, Inc.
23117
23118 This file is part of GNU Emacs.
23119
23120 GNU Emacs is free software: you can redistribute it and/or modify
23121 it under the terms of the GNU General Public License as published by
23122 the Free Software Foundation, either version 3 of the License, or
23123 (at your option) any later version.
23124
23125 GNU Emacs is distributed in the hope that it will be useful,
23126 but WITHOUT ANY WARRANTY; without even the implied warranty of
23127 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
23128 GNU General Public License for more details.
23129
23130 You should have received a copy of the GNU General Public License
23131 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.