* window.h (struct window): Convert left_col, top_line, total_lines
[bpt/emacs.git] / src / ChangeLog
CommitLineData
5f24fa51
DA
12013-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
42143acd
DA
122013-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.
96061a21 16 (default_pixels_per_inch_x, default_pixels_per_inch_y): New
42143acd
DA
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
c0a17406
KH
282013-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
095d384d
DA
342013-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.
cf4bb06d
DA
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.
095d384d 44
748fa866
DA
452013-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
81519fd2
SM
552013-03-17 Stefan Monnier <monnier@iro.umontreal.ca>
56
57 * dispnew.c (bitch_at_user): Use `user-error'.
58
6db423a9
KB
592013-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
8f2906f5
JD
652013-03-16 Jan Djärv <jan.h.d@swipnet.se>
66
960ce480 67 * nsterm.m (updateFrameSize:): Change resize increments if needed.
6615748a 68 (ns_select): Don't return with result uninitialized.
960ce480 69
8f2906f5
JD
70 * nsterm.h (EmacsSavePanel, EmacsOpenPanel): Add getFilename
71 and getDirectory.
72
81519fd2
SM
73 * nsfns.m (ns_filename_from_panel, ns_directory_from_panel):
74 New functions.
8f2906f5
JD
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
cded56c1
PE
822013-03-15 Paul Eggert <eggert@cs.ucla.edu>
83
84 * coding.c (decode_coding_gap): Fix typo caught by static checking.
85
8a44e6d1
KH
862013-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
8a44e6d1
KH
107 * lisp.h (adjust_after_replace): Cancel externing it.
108 (insert_from_gap): Adjust prototype.
109
5f795e34
EZ
1102013-03-15 Eli Zaretskii <eliz@gnu.org>
111
112 * w32term.c (w32fullscreen_hook): Swap FULLSCREEN_BOTH and
113 FULLSCREEN_MAXIMIZED. (Bug#13935)
114
f258b4be
DA
1152013-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
a5cc4dde
EZ
1222013-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
3fc5e44a
DC
1322013-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
47d7532e
PE
1392013-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
c7ffccaf
EZ
1502013-03-13 Eli Zaretskii <eliz@gnu.org>
151
4e2df81d 152 * w32term.c (w32_read_socket): If the Emacs frame is being
c7ffccaf
EZ
153 activated, call w32fullscreen_hook, to make sure the new frame
154 dimensions are in effect. (Bug#13937)
155
8a7debc1
DA
1562013-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.
ffcd945e
DA
160 * window.c (Fscroll_other_window): Use SET_PT_BOTH because both
161 character and byte positions can be obtained from marker.
8a7debc1 162
7fd8c501
PE
1632013-03-13 Paul Eggert <eggert@cs.ucla.edu>
164
d9df6f40
PE
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
7fd8c501
PE
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
cb0290df
PE
1862013-03-11 Paul Eggert <eggert@cs.ucla.edu>
187
188 * insdel.c (adjust_after_replace): Use bool for boolean.
189
cbae07d5
SM
1902013-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
819e2da9
DC
1982013-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
99ec1647
SM
2232013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
224
d2e24f92
SM
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
99ec1647
SM
230 * bytecode.c (struct byte_stack): Remove `constants' when unused.
231
138c0ae8
EZ
2322013-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)
99ec1647
SM
238 (mouse_face_from_buffer_pos, note_mouse_highlight):
239 Use MATRIX_ROW_DISPLAYS_TEXT_P.
138c0ae8 240 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
99ec1647
SM
241 (mouse_face_from_string_pos, fast_find_string_pos):
242 Use MATRIX_ROW_VPOS.
138c0ae8
EZ
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
c230dd7d
KH
2532013-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.
99ec1647
SM
259 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
260 Skip decoding if all bytes are ASCII.
c230dd7d
KH
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
27a98a62
SM
2672013-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
457882c2
PE
2762013-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
b5426561
DA
2892013-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.
27a98a62
SM
297 * editfns.c (Fconstrain_to_field): Break long line.
298 Adjust call to find_newline.
b5426561
DA
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
0bce5d9e
PE
3062013-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
36075a19
DA
3242013-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
4aae1914
EZ
3342013-03-07 Eli Zaretskii <eliz@gnu.org>
335
336 * .gdbinit (prowlims): Display the enabled_p flag of the row.
337
c54aa166
DA
3382013-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
3de717bd
DA
3552013-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
d26e478e
EZ
3712013-03-06 Eli Zaretskii <eliz@gnu.org>
372
a611149e
EZ
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
d26e478e
EZ
385 * msdos.c: Change encoding to cp850. (Bug#13879)
386 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
387
1af1a51a
DA
3882013-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
0bafabe7 4072013-03-06 Paul Eggert <eggert@cs.ucla.edu>
725eb027 408
9b1c3271 409 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
0845a75c
PE
410 * sysdep.c (list_system_processes)
411 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
9b1c3271 412 Make it a stub in this case; otherwise the build might fail,
0845a75c 413 and this code hasn't been tested on such hosts anyway.
725eb027 414 Problem reported by Nelson H. F. Beebe in
9b1c3271
PE
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>.
725eb027 418
ffc65bee
DA
4192013-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
70743157
PE
4272013-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
05e193f1
EZ
4792013-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
3bfc46eb
DA
4862013-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
84ac6f9d
PE
4932013-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
42926ec8
DA
4992013-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
b5029e23
PE
5052013-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.
2db41375 534 (lock_file): Don't access freed storage.
b5029e23 535
b270d116
AS
5362013-03-02 Andreas Schwab <schwab@linux-m68k.org>
537
538 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
539
81c23309
PE
5402013-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
18f2ac09
EZ
5462013-03-02 Eli Zaretskii <eliz@gnu.org>
547
27a98a62
SM
548 * textprop.c (Fadd_text_properties, Fremove_text_properties):
549 If the interval tree changes as a side effect of calling
18f2ac09
EZ
550 modify_region, re-do processing starting from the call to
551 validate_interval_range. (Bug#13743)
552
929aeac6 5532013-02-28 Eli Zaretskii <eliz@gnu.org>
c49e2256
EZ
554
555 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
556 (Bug#13546).
557
531e70ec
EZ
5582013-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
6e65b9cc
PE
5652013-02-27 Paul Eggert <eggert@cs.ucla.edu>
566
567 * callint.c (Qcall_interactively):
568 * macros.c (Qexecute_kbd_macro):
569 Now static.
570
3b166f09
BG
5712013-02-26 Bastien Guerry <bzg@gnu.org>
572
573 * window.c (Frecenter): Tiny docstring enhancement.
574
ecc0fdd4
PE
5752013-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
0248b0d7
EZ
5922013-02-25 Eli Zaretskii <eliz@gnu.org>
593
343a2aef
EZ
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
0248b0d7
EZ
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
27a98a62
SM
625 have the requested properties, not just the first one.
626 Add assertions that the loop afterwards always modifies the
0248b0d7
EZ
627 properties. (Bug#13743)
628
b5071fc7
SM
6292013-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
1ddc2bd6
PE
6352013-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
51aa2a8b
AS
6682013-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
1938d88c
PE
6732013-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
fcee5028
PE
6822013-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
d78cf5ed
CB
6902013-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
6bcd97a4
KB
6952013-02-21 Ken Brown <kbrown@cornell.edu>
696
697 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
698
b6c2bfff
SM
6992013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
700
e11dacb5
SM
701 * sheap.c (report_sheap_usage): Prefer message1_nolog.
702
b6c2bfff
SM
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
d69f1120 7082013-02-19 Daniel Colascione <dancol@dancol.org>
b6c2bfff 709
d69f1120
DC
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.
b6c2bfff 713
2a14a4f1 7142013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
42926ec8 715
2a14a4f1
DA
716 * search.c (find_newline): Return byte position in bytepos.
717 Adjust comment.
b6c2bfff
SM
718 (find_next_newline_no_quit, find_before_next_newline):
719 Add bytepos argument.
2a14a4f1
DA
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
872faefb 7292013-02-19 Eli Zaretskii <eliz@gnu.org>
17ddfd15
EZ
730
731 * w32proc.c (new_child): Avoid leaking handles if the subprocess
732 resources were not orderly released.
733
fd80c659
EZ
7342013-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
2f73da9c
SM
7402013-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
fd9547e8
JD
7532013-02-17 Jan Djärv <jan.h.d@swipnet.se>
754
755 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
fd9547e8
JD
756 * frame.c (syms_of_frame): ... to here.
757
f277993b
EZ
7582013-02-16 Eli Zaretskii <eliz@gnu.org>
759
c7939585
EZ
760 * w32.c (sys_chown): Remove unused function.
761
cd91fb4b
EZ
762 * w32term.c <input_signal_count>: Declare 'volatile'
763 unconditionally. (Bug#9066)
764
f277993b
EZ
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
e454145b
PE
7752013-02-15 Paul Eggert <eggert@cs.ucla.edu>
776
777 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
778
bcf7fe2a
EZ
7792013-02-15 Eli Zaretskii <eliz@gnu.org>
780
ef9c57e2
EZ
781 * keyboard.c (read_char): Fix calculation of auto-save time out
782 when auto-save-timeout is less than 4. (Bug#13720)
783
ef862e20 784 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
b2af991a 785 time. Improve diagnostics in DebPrint. (Bug#13546)
ef862e20 786
bcf7fe2a
EZ
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
0063fdb1
DA
7972013-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
648e5523 8112013-02-15 Paul Eggert <eggert@cs.ucla.edu>
974c7646 812
35b3a27e
PE
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.
35b3a27e 818
648e5523 8192013-02-15 Eli Zaretskii <eliz@gnu.org>
6e432f0c 820
0e4e7b74
EZ
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
6e432f0c
EZ
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
51b3a99c
JD
8312013-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
e31560a7
SM
8362013-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
fe336261
SM
8412013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
842
843 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
844
5a655b9f
DA
8452013-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
1a359750
GM
8532013-02-13 Glenn Morris <rgm@gnu.org>
854
855 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
856
01fcc3a5 8572013-02-13 Paul Eggert <eggert@cs.ucla.edu>
4458c255 858
f53f992a
PE
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
4458c255
PE
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
227be86d
PE
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
01fcc3a5 8882013-02-13 Eli Zaretskii <eliz@gnu.org>
713bfeaa
EZ
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
83be8524
PE
8992013-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
45b2b768
JB
9092013-02-13 Juanma Barranquero <lekktu@gmail.com>
910
911 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
912 Update dependencies.
913
33b49d71
EZ
9142013-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)
c4131562
EZ
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.
33b49d71
EZ
925
926 * window.h (struct window): region_showing can no longer be
927 negative.
928
b09a4810
PE
9292013-02-11 Paul Eggert <eggert@cs.ucla.edu>
930
a84b7c53
PE
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
b09a4810
PE
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
99d0d6dc
SM
9442013-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
f5e1b680
EZ
9612013-02-11 Eli Zaretskii <eliz@gnu.org>
962
99d0d6dc
SM
963 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
964 Don't use the limitation on backwards movement when lines are truncated
f5e1b680
EZ
965 in the window. (Bug#13675)
966
f74de345
DA
9672013-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
a4ba3963
EZ
9782013-02-10 Eli Zaretskii <eliz@gnu.org>
979
99d0d6dc
SM
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
a4ba3963
EZ
982 too far. This speeds up some redisplay operations. (Bug#13675)
983
68643cde
DA
9842013-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
7ba11bee
PE
9892013-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
eff1c190
PE
9942013-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
6b48c831
EZ
10062013-02-09 Eli Zaretskii <eliz@gnu.org>
1007
4dde2087
EZ
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)
74ba1583 1011
8549f9e8
EZ
1012 * xdisp.c (decode_mode_spec): Remove handling of %t.
1013
6b48c831
EZ
1014 * msdos.c (careadlinkatcwd): Remove.
1015
75a65c7e
SM
10162013-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
8ca30920
DA
10222013-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
25721f5b
DA
10322013-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
9a9d91d9
DA
10512013-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
6871e574
JD
10592013-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
3f011c7f
PE
10942013-02-04 Paul Eggert <eggert@cs.ucla.edu>
1095
1096 * fileio.c (Qchoose_write_coding_system): Now static.
1097
86f7c0fe
EZ
10982013-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
99d0d6dc
SM
1103 whole window when showing region and the mark has changed.
1104 Record the new mark position to allow redisplay optimizations.
86f7c0fe
EZ
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
5257b701
DC
11112013-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
8ea41ea9
PE
11172013-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
94fbc901 11282013-02-02 Eli Zaretskii <eliz@gnu.org>
18a80473 1129
e7ac588e
EZ
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
99d0d6dc
SM
1159 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
1160 Adjust calls to dostounix_filename.
e7ac588e
EZ
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
e7c3fb06
EZ
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
18a80473
EZ
1179 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
1180 even if w32-quote-process-args is nil.
1181
35e85499
PE
11822013-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
422ff52b
DA
11912013-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
8654f9d7
PE
12102013-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
9dbda100
GM
12412013-01-31 Glenn Morris <rgm@gnu.org>
1242
1243 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
20a8c477
GM
1244 (Fwrite_region): Update for new choose_write_coding_system args.
1245 Move the last piece of choose_write_coding_system here. (Bug#13522)
9dbda100
GM
1246 (syms_of_fileio): Add choose-write-coding-system.
1247
3f82a88a 12482013-01-30 Eli Zaretskii <eliz@gnu.org>
224f4ec1
EZ
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
806fed21 1254 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
99d0d6dc
SM
1255 (logon_network_drive, stat_worker, symlink, chase_symlinks):
1256 Use CharNextExA and CharPrevExA to iterate over file names encoded in
806fed21
EZ
1257 DBCS. (Bug#13553)
1258
6ee4509a
EZ
1259 * w32.c (w32_get_long_filename, init_environment, readlink):
1260 Support file names encoded in DBCS codepages.
26854e9c
EZ
1261 (readlink): Use the current file-name-coding-system, not the ANSI
1262 codepage, to decode and handle targets of symlinks.
6ee4509a 1263
cf01a359
EZ
12642013-01-28 Eli Zaretskii <eliz@gnu.org>
1265
1266 * w32.c (opendir): Now accepts a 'const char *'.
1267
6fd326b7
DA
12682013-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
d8cd7742
EZ
12782013-01-25 Eli Zaretskii <eliz@gnu.org>
1279
1280 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
1281
266fee4f
DA
12822013-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.
59e624b3
DA
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.
266fee4f 1289
830e46e6 12902013-01-25 Eli Zaretskii <eliz@gnu.org>
6d2851de
EZ
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
99d0d6dc
SM
1296 CharNextExA, instead of incrementing a 'char *' pointer.
1297 Use _mbslwr instead of _strlwr. (Bug#13515)
6d2851de 1298
81abbb95
EZ
1299 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
1300 request of memory reservation to 1.7GB. (Bug#13065)
1301
830e46e6 13022013-01-25 Andreas Schwab <schwab@linux-m68k.org>
ba14c607
AS
1303
1304 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
1305 at check_extra_latin label. (Bug#13505)
1306
fd3ceb09
DA
13072013-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
edfa7fa0
DA
13122013-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.
266fee4f 1328 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
edfa7fa0
DA
1329 properly.
1330 * nsterm.m: Ditto.
1331 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
1332
5ad86e34
DA
13332013-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
b09cca6a
SM
13382013-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
54ab1c5a
EZ
13672013-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
6c27465b
DA
13722013-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
9d93ce29
DA
13772013-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
1dcb8ea2
DA
13932013-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
b41b8a7e
PE
14022013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1403
593a5f2e
PE
1404 * emacs.c (Qkill_emacs_hook): Now static.
1405
b41b8a7e
PE
1406 * fileio.c (Finsert_file_contents): Simplify.
1407 Remove unnecessary assignments and tests.
1408
84e5ed96
EZ
14092013-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
2ef88fd4
DA
14152013-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
d7a0a7c9
PE
14222013-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
795e7a5b 14282013-01-19 Glenn Morris <rgm@gnu.org>
085d34c4
GM
1429
1430 * fns.c (Frandom): Doc fix.
1431
59ac2d13
EZ
14322013-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
99d0d6dc
SM
1438 when there are lots of overlays.
1439 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
59ac2d13
EZ
1440 for the details and a way to reproduce.
1441
b3fbb395
PE
14422013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1443
3a955a1f
PE
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
21cd50b8
PE
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
b3fbb395
PE
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
73c14218
CY
14652013-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
6a9465f3
EZ
14702013-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>.
76e9f7b9 1475 (fstat): Return owner and group like 'stat' and 'lstat' do.
6a9465f3 1476
fa705c99
PE
14772013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1478
9fe43ff6
PE
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
fa705c99
PE
1492 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1493 and make it more consistent with other stat-failure diagnostics.
1494
e07469fa
DA
14952013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1496
99d0d6dc
SM
1497 Fix crash when inserting data from non-regular files.
1498 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
e07469fa
DA
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
67722112
PE
15092013-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
468afbac
DA
15172013-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
0e70695a
DA
15332013-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
963ea40f
PE
15402013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1541
1542 * alloc.c (free_save_value): Now static.
1543
3346c1d0
DA
15442013-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.
99d0d6dc
SM
1550 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1551 Use format_save_value to pass parameters to read_non_regular.
3346c1d0
DA
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
2b30549c
DA
15582013-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
1b971ac1
DA
15662013-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
c50cf2ea
PE
15792013-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
9d5a1260
DA
15942013-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
73ebd38f
DA
16002013-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
b826986f
JD
16242013-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
2e7a1892 1629 Bug#11484 with LCD smoothing on.
b826986f 1630
c0511b57 16312013-01-13 Paul Eggert <eggert@cs.ucla.edu>
45b7bfdd 1632
b6f960a0
PE
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
616763d5
JD
16372013-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
0b59090b 16422012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
ec782c5f
JD
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
7bc916b4
JD
16512013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1652
eac4d08f
JD
1653 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1654 event is generated.
1655 (doCommandBySelector:): Set processingCompose to NO.
1656
7bc916b4
JD
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
bdc9b756
PE
16642013-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
ee56a6dc
PE
16692013-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
9fc9a531
AH
16762013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1677
99d0d6dc
SM
1678 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1679 Fix ambiguous doc string cross-reference(s).
9fc9a531
AH
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
6020559a
DA
16872013-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
b8956427
PE
16982013-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
0b59090b 17122013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
48660ca5
JD
1713
1714 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1715 x_last_font_name (Bug#13403).
1716
58cc0a01
DA
17172013-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
5104861e
JB
17372013-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
eefd7278
DA
17422013-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.
2eae9ccc 1750 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
eefd7278
DA
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
073ca75b
JL
17572013-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
3bace969
AH
17622013-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
63a63bd4
SM
17672013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1768
1769 * keyboard.c (echo_add_key): Rename from echo_add_char.
1770
56ed110a
CY
17712013-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
b630991b
EZ
17802013-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
63a63bd4
SM
1784 digits for buffer positions, before misalignment starts.
1785 Display "0" for integer "object" field.
b630991b
EZ
1786 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1787 Display the newline glyph more unambiguously.
1788
f032a318
YM
17892013-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
4240dd3c
YM
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
553081a5
SM
18012013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1802
1803 * fileio.c (Ffile_acl): Undocument return format.
1804
9539d465 18052013-01-02 Glenn Morris <rgm@gnu.org>
08f59219
GM
1806
1807 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1808
71376d4b
PE
18092013-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
a7f11948
EZ
18232012-12-31 Eli Zaretskii <eliz@gnu.org>
1824
1825 * w32.c (unsetenv): Set up the string passed to _putenv
63a63bd4
SM
1826 correctly.
1827 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
a7f11948
EZ
1828 for the bug this caused.
1829
84cc1ab6
PE
18302012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1831
1832 * coding.c (Qmac): Now static.
1833
5a1d858b
JD
18342012-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.
8b745d92
JD
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.
5a1d858b
JD
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
d5e5e7b4 18632012-12-30 Andreas Schwab <schwab@linux-m68k.org>
2550c6e4
AS
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
d5e5e7b4 18702012-12-30 Eli Zaretskii <eliz@gnu.org>
7a3a7493
EZ
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
e7ae8039
EZ
18762012-12-29 Eli Zaretskii <eliz@gnu.org>
1877
ccad023b
EZ
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)
8d23a331 1881 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
ccad023b 1882
e7ae8039
EZ
1883 * w32proc.c (reader_thread): Avoid passing NULL handles to
1884 SetEvent and WaitForSingleObject.
1885
7456e13f
PE
18862012-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
1ab0c851
GM
18922012-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
82e2a1f0 18972012-12-27 Eli Zaretskii <eliz@gnu.org>
f5c81c80 1898
63a63bd4
SM
1899 * fileio.c (file_name_as_directory, directory_file_name):
1900 Accept an additional argument MULTIBYTE to indicate whether the input C
f5c81c80
EZ
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
8847a0de
DA
19122012-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.
6cda572a
DA
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.
8847a0de 1920
4b298d5a
DA
19212012-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
12384b01
PE
19342012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1935
1936 * window.c (select_window_1): Now static, since it's used only here.
1937
f1665bdc
EZ
19382012-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
9a0d4f34
DA
19452012-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.
cd78d9b1
DA
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.
9a0d4f34 1953
f9e7c67e
DA
19542012-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.
2944d406
DA
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.
f9e7c67e 1964
299614f3
EZ
19652012-12-23 Eli Zaretskii <eliz@gnu.org>
1966
40ff07a5
EZ
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
299614f3
EZ
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
63a63bd4
SM
1984 delete_child on that subprocess when its SIGCHLD arrives.
1985 This avoids closing handles used for communications between sys_select
299614f3
EZ
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
cf162aee
JD
19902012-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
94900bfe
MR
19972012-12-22 Martin Rudalics <rudalics@gmx.at>
1998
1999 * window.c (Fselect_window): Reword doc-string (Bug#13248).
2000
b2faf49c
EZ
20012012-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
7efa3fb3
EZ
20062012-12-21 Eli Zaretskii <eliz@gnu.org>
2007
bb085aed
EZ
2008 * fileio.c (Finsert_file_contents): Doc fix.
2009
7efa3fb3
EZ
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
c1f02afa
CY
20192012-12-21 Chong Yidong <cyd@gnu.org>
2020
2021 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
2022
5bec25eb
CY
2023 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
2024
a4b0cca1 20252012-12-21 Eli Zaretskii <eliz@gnu.org>
92340ec7
EZ
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
34b4b7eb
CY
20342012-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
13002885
DA
20392012-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.
9a0d4f34 2050 * process.c (process_send_region): Likewise. Use convenient
13002885
DA
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
99e9311c
PE
20562012-12-20 Paul Eggert <eggert@cs.ucla.edu>
2057
2058 * xdisp.c (redisplay_internal): Remove now-unused local.
2059
e02230bf
SM
20602012-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
4a74c818 2064 proper value of frame-local variables (bug#13225).
e02230bf 2065
1687fb14
DA
20662012-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
a2f07cd2
DA
20722012-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
474d441e
EZ
20782012-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
8725c076
JB
20862012-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
1e101a4b
SM
20912012-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
66447e07
EZ
21012012-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
207a7ef0
PE
21252012-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
17fdfc15
PE
21352012-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
7c3d167f
RF
21412012-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'
1e101a4b 2145 and copy ACL entries of file in addition to SELinux context if set.
7c3d167f
RF
2146 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
2147
2148 * Makefile.in (LIBACL_LIBS): New macro.
2149 (LIBES): Use it.
2150
7d80ea23
PE
21512012-12-15 Paul Eggert <eggert@cs.ucla.edu>
2152
2153 * fileio.c (internal_delete_file): Use bool for boolean.
2154
b0728617
EZ
21552012-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
7e90af26
EZ
21862012-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
97976f9f
PE
21922012-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
26ec1f49
SM
22012012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2202
ad966fe7
SM
2203 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
2204 Keep selected_window and selected_frame in sync.
26ec1f49 2205
5c207910
EZ
22062012-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
26ec1f49
SM
2213 * dired.c (Ffile_attributes) [WINDOWSNT]:
2214 Set w32_stat_get_owner_group to a non-zero value, to request accurate
5c207910
EZ
2215 owner and group information from 'lstat'.
2216
893f52d8
PE
22172012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2218
4c95c9a5
PE
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
893f52d8
PE
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
40d1e434
DA
22282012-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
727f9739 22372012-12-13 Eli Zaretskii <eliz@gnu.org>
e8c6e965
EZ
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
727f9739 22432012-12-13 Paul Eggert <eggert@cs.ucla.edu>
184246df
PE
2244
2245 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2246 files, fixing a regression from 24.2.
645c6a30 2247 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
184246df 2248
d20704ef
PE
22492012-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
2dd61a9b
DA
22582012-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
cc98b684
DC
22662012-12-12 Daniel Colascione <dancol@dancol.org>
2267
1e101a4b 2268 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
cc98b684
DC
2269 the dumped Emacs is not a sparse file, greatly improving Cygwin
2270 "make bootstrap" performance.
2271
38e791fd
MA
22722012-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
f9d1448f
EZ
22772012-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
c6afe371
DA
22902012-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
1b47babd
EZ
23002012-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
4c1acb95
DA
23052012-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
0eeb69fe
JB
23202012-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
1cf1bbd5
DC
23262012-12-10 Daniel Colascione <dancol@dancol.org>
2327
8db4b52f
DC
2328 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
2329 Windows file notification functionality unless WINDOWSNT.
2330
1cf1bbd5
DC
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
1e101a4b 2337 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
1cf1bbd5
DC
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
26ec1f49
SM
2345 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
2346 Teach the autoconf build system how to compile a Windows resource file
1cf1bbd5
DC
2347 and link it to Emacs.
2348
98a07056
DA
23492012-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
2b8c9064
EZ
23702012-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
1e101a4b 2409 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2b8c9064
EZ
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
1e101a4b
SM
2417 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2418 Handle FILE_NOTIFY_EVENT.
2b8c9064
EZ
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
81606b10
RS
24262012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2427
2b8c9064 2428 Support for filesystem notifications on GNU/Linux via inotify.
1e101a4b 2429 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
81606b10
RS
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
265c2fbf 24472012-12-10 Jan Djärv <jan.h.d@swipnet.se>
a06ae17d
JD
2448
2449 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2450
265c2fbf 24512012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
cb576b5c
FP
2452
2453 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2454 DWORD_PTR, for compatibility with 64-bit builds.
2455
a06ae17d 2456 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
cb576b5c
FP
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
265c2fbf 24612012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
76b92fee
CS
2462
2463 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2464
265c2fbf 24652012-12-10 Eli Zaretskii <eliz@gnu.org>
81d8cc53
EZ
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
265c2fbf 24712012-12-10 Martin Rudalics <rudalics@gmx.at>
2cec368c
MR
2472
2473 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2474
5f460827
PE
24752012-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
a16e75cd
EZ
24802012-12-08 Eli Zaretskii <eliz@gnu.org>
2481
2482 * w32.c (unsetenv): Return 0 if the input string is too long.
2483
5745a7df
PE
24842012-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
c56efa40
FP
25102012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2511
2512 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2513
75ceee05
EZ
25142012-12-08 Eli Zaretskii <eliz@gnu.org>
2515
2516 * w32.c (unsetenv, sys_putenv): New functions.
2517
1b6dbfeb
CY
25182012-12-08 Chong Yidong <cyd@gnu.org>
2519
2520 * editfns.c (Finsert_char): Make the error message more
2521 informative (Bug#12992).
2522
d983a10b
PE
25232012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2524
7be78020
PE
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
d983a10b
PE
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
9cdde1e2
PE
25512012-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
822995f8
DA
25572012-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
ed08365b
DA
25652012-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
e86f5134
EZ
25732012-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
1700db3c
DA
25792012-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
35fb8050
PE
25922012-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
565212e5
DA
26022012-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
d8ad4d3f 26082012-12-06 Eli Zaretskii <eliz@gnu.org>
d3cefd13
EZ
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)
7c2fcf9b
EZ
2613 Encode expanded temp file pattern before passing it to mkstemp or
2614 mktemp.
d3cefd13 2615
2e7cddd3
EZ
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
644d3f0d
PE
26212012-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
396376f1
AS
26292012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2630
2631 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2632 processes.
2633
350f51ad
DA
26342012-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
bc9dbce6
PE
26472012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2648
bb5f74ee
PE
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
bc9dbce6
PE
2706 * bytecode.c, lisp.h (Qbytecode): Remove.
2707 No longer needed after 2012-11-20 interactive-p changes.
2708
3cf3c607
EZ
27092012-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
005c8d13
JD
27142012-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
20edc1c9
DA
27192012-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
62c2e5ed
DA
27282012-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
c5bc2d1d 27392012-12-03 Chong Yidong <cyd@gnu.org>
a2458031
CY
2740
2741 * fileio.c (Vauto_save_list_file_name): Doc fix.
2742
c5bc2d1d 27432012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
c7b36b95
FP
2744
2745 * w32fns.c: Remove prototype of atof.
1e101a4b 2746 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
c7b36b95 2747 builds.
1e101a4b 2748 (file_dialog_callback): Make it UINT_PTR.
c7b36b95
FP
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
c5bc2d1d 27572012-12-03 Glenn Morris <rgm@gnu.org>
14d27346 2758
a9de9f0c 2759 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
14d27346 2760
21e54a94
PE
27612012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2762
2dd2e622
PE
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
21e54a94
PE
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
3e5490f7
PE
27772012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2778
2779 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2780
75b4f59c
YM
27812012-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
f8aff4c6
JB
27882012-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
3940b924
DA
27932012-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
4a9204fe
PE
28042012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2805
2806 * callproc.c (Fcall_process): Don't misreport vfork failure.
2807
60aeceb8
PE
28082012-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
00dc3ead
KH
28192012-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
e1bf05c1
KH
28242012-11-13 Kenichi Handa <handa@gnu.org>
2825
2826 * font.c (font_unparse_xlfd): Exclude special characters from the
2827 generating XLFD name.
2828
22626a85
PE
28292012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2830
350e0088
PE
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
22626a85
PE
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.
350e0088 2838
22626a85
PE
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
5c9cf0a3 28472012-11-27 Eli Zaretskii <eliz@gnu.org>
3fa1e84d
EZ
2848
2849 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2850 (Bug#11964)
2851
22294a56
EZ
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
5fbab051
PE
28572012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2858
2859 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2860
bcd77a2b
KB
28612012-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
d125ca15 28672012-11-24 Eli Zaretskii <eliz@gnu.org>
8654a41b 2868
24becea4
EZ
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
8654a41b
EZ
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
cb5867b1
EZ
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
f418b22e
DA
28812012-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,
26ec1f49
SM
2891 asked_for_visible and menubar_active members.
2892 Drop unused pending_menu_activation member.
f418b22e
DA
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
a879f0ea
EZ
28972012-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
95ef7787
PE
29032012-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
12645ae6
CY
29202012-11-23 Chong Yidong <cyd@gnu.org>
2921
2922 * xftfont.c (xftfont_open): Remove duplicate assignment.
2923
5c747675
DA
29242012-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
6ceeb5f1
DA
29382012-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
ec84768f
EZ
29462012-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
9239d970
PE
29512012-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
954bba56
SM
29622012-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
6ef2e5ef 29682012-11-21 Ken Brown <kbrown@cornell.edu>
4ffea447
KB
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
6ef2e5ef 29742012-11-21 Eli Zaretskii <eliz@gnu.org>
88c4a13c
EZ
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
6ef2e5ef 2980 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
273ac8d1
EZ
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
26ec1f49
SM
2985 dostounix_filename assumes it gets a unibyte string.
2986 Reported by Michel de Ruiter <michel@sentient.nl>, see
273ac8d1
EZ
2987 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2988
eadf1faa
SM
29892012-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
b83fdfa9
PE
30022012-11-20 Paul Eggert <eggert@cs.ucla.edu>
3003
3004 * eval.c (interactive_p): Remove no-longer-used decl.
3005
952580c5
DA
30062012-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.
ea6de9b1
DA
3012 (window_outdated): New function.
3013 (text_outside_line_unchanged_p, redisplay_window): Use it.
3014 (redisplay_internal): Likewise. Fix indentation.
952580c5 3015
23ba2705
SM
30162012-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
6e9f7997
DC
30222012-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
552a1590
PE
30312012-11-18 Paul Eggert <eggert@cs.ucla.edu>
3032
3033 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
3034
2ac9538d 30352012-11-18 Eli Zaretskii <eliz@gnu.org>
d8715cdf
EZ
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
23ba2705
SM
3041 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
3042 New typedefs.
3043 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
3044 New prototypes.
d8715cdf
EZ
3045 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
3046
2ac9538d 30472012-11-18 Jan Djärv <jan.h.d@swipnet.se>
7436fc63
JD
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
2ac9538d 30522012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
86dcf21c 3053
3054 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
3055 Needed following 2012-10-20 change. (Bug#12902)
3056
c1f7ba3a
JB
30572012-11-18 Juanma Barranquero <lekktu@gmail.com>
3058
3059 * w32proc.c (waitpid): Remove unused label get_result.
3060
a75ce9d3
JB
30612012-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
49cdacda
PE
30672012-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
22bae83f
EZ
30942012-11-17 Eli Zaretskii <eliz@gnu.org>
3095
6ad30855
EZ
3096 * w32.c (faccessat): Pretend that directories have the execute bit
3097 set. Emacs expects that, e.g., in files.el:cd-absolute.
3098
22bae83f
EZ
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
a631d0e0
PE
31172012-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
d56f2e49
GM
31272012-11-16 Glenn Morris <rgm@gnu.org>
3128
3129 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
3130
96e05507 31312012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
5c2a7148
SM
3132
3133 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
3134
96e05507 31352012-11-16 Eli Zaretskii <eliz@gnu.org>
730b2d8f
EZ
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
96e05507 31472012-11-16 Jan Djärv <jan.h.d@swipnet.se>
f99c65e5
JD
3148
3149 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
3150 called (Bug#12834).
3151
3d082a26
PE
31522012-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
b72c161c
JB
31582012-11-15 Juanma Barranquero <lekktu@gmail.com>
3159
3160 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
3161 Update dependencies.
3162
bf20ea80
PE
31632012-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
14f20728
EZ
31702012-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
77731919
DA
31792012-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
73dcdb9f
PE
31842012-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
2a14f83b
DA
32512012-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...
c7085245 3257 (redraw_frame): ...to here. Add eassert. Adjust comment.
2a14f83b
DA
3258 (Fredraw_display): Use redraw_frame.
3259 * xdisp.c (clear_garbaged_frames): Likewise.
3260
f78ee6af 32612012-11-13 Eli Zaretskii <eliz@gnu.org>
32520273
EZ
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
b95a9c0c
PE
32692012-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
be49ba74
DA
32802012-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
5b04e9f9
DA
32872012-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
76ae24d7
PE
33042012-11-12 Paul Eggert <eggert@cs.ucla.edu>
3305
12cc4337
PE
3306 * data.c (Qdefalias_fset_function): Now static.
3307
76ae24d7
PE
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
1479c557
PE
33142012-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
11235c03
JB
33192012-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
6baf66d5 33242012-11-10 Martin Rudalics <rudalics@gmx.at>
fdaf534a
MR
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.
6baf66d5 3329 (Fset_window_combination_limit): Fix doc-string.
fdaf534a 3330
6baf66d5 33312012-11-10 Eli Zaretskii <eliz@gnu.org>
acf93bcf
EZ
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
23ba2705
SM
3336 scroll margin within a reasonable number of screen lines.
3337 Fixes point position in window under scroll-up/down-aggressively when
acf93bcf
EZ
3338 point is positioned many lines beyond the window top/bottom.
3339 (Bug#12811)
3340
508f51f5
EZ
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
32e5c58c
SM
33452012-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
719b0aa5
JD
33562012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3357
4ab15c3e
JD
3358 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
3359
719b0aa5
JD
3360 * nsfont.m (Qcondensed, Qexpanded): New variables.
3361 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
3362 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
3363
535cc8e9
DA
33642012-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
7d377c48
DA
33712012-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
7ad27466
JD
33822012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3383
32e5c58c 3384 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
7ad27466
JD
3385 been removed, so remove them here also.
3386
57618ecf
SM
33872012-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
53371430
PE
33922012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3393
3394 * fns.c (Qeql, hashtest_eq): Now static.
3395
61ddb1b9
SM
33962012-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
04a2d0d3
PE
34032012-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
de5ef41a
SM
34122012-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
a23c4171
JD
34192012-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
0b59090b 34242012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
074d7bb0
JD
3425
3426 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3427
b7432bb2
SM
34282012-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
88002743
EZ
34552012-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
914adc42
DA
34612012-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
c66f21ea
DA
35082012-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
eb147960
EZ
35152012-11-07 Eli Zaretskii <eliz@gnu.org>
3516
dab72075
EZ
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
6b064c16 3520 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
eb147960 3521
5890e400
DA
35222012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3523
3524 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3525
b6b3b294
PE
35262012-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
e770aad5
JD
35352012-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
68f8f1c0
PE
35402012-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
72f94d4b
DA
35492012-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
d9f07150
DA
35562012-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
89bc0592
DA
35912012-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
c8e3a9c3
EZ
36032012-11-05 Eli Zaretskii <eliz@gnu.org>
3604
3605 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3606
8e2417bf 3607 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
c8e3a9c3 3608 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
ae600a8e 3609 file descriptor 2 for standard error. (Bug#12805)
c8e3a9c3 3610
209c6a58
CY
36112012-11-05 Chong Yidong <cyd@gnu.org>
3612
3613 * process.c (wait_reading_process_output): Revert previous change.
3614
8148369c
PE
36152012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3616
dd0333b6
PE
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
8148369c
PE
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
76abf5e5
PE
36422012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3643
06b63c9b
PE
3644 Remove EMACS_OUTQSIZE+sleep hack.
3645 * dispnew.c (update_frame_1): Remove hack for terminals slower
de5ef41a
SM
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
06b63c9b
PE
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
76abf5e5
PE
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
8f31e74b
MM
36592012-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
0d879dca
PE
36642012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3665
7ccfb720
PE
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
0b3d4a47
PE
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
de5ef41a
SM
3686 know the pid rather than having the callee infer it.
3687 The inference was sometimes incorrect anyway, due to another race.
0b3d4a47
PE
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
0d879dca
PE
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
3478f4b5
EZ
37102012-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
85fabcb7
CY
37282012-11-03 Chong Yidong <cyd@gnu.org>
3729
3730 * process.c (wait_reading_process_output): Clean up the last
3731 change.
3732
893cc455
CY
37332012-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
0f7b074f
CY
37382012-11-03 Chong Yidong <cyd@gnu.org>
3739
3740 * buffer.c (cursor_type): Untabify docstring.
3741
3737fee7
DA
37422012-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
b6a9e8b1
DA
37492012-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
600d4768
JD
37582012-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
1005b4b9
EZ
37652012-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
b9e9df47
DA
37742012-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
2b371ff7
DA
37902012-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
7e8b50d9
EZ
38022012-11-01 Eli Zaretskii <eliz@gnu.org>
3803
3804 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3805
322aea6d
PE
38062012-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
220cb2bd
MA
38272012-10-31 Michael Albinus <michael.albinus@gmx.de>
3828
3829 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3830
218e997a
MR
38312012-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
02615da0
JD
38372012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3838
3839 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3840
aee5b18e
KH
38412012-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
ba116008
DC
38462012-10-29 Daniel Colascione <dancol@dancol.org>
3847
de5ef41a
SM
3848 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3849 In preparation for fixing bug#12739, move these functions from
ba116008
DC
3850 here...
3851
3852 * coding.h, coding.c: ... to here, and compile them only when
53372c27
DC
3853 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3854 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
ba116008 3855
640bf8ad
EZ
38562012-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
64ccff5f
JD
38652012-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
e483264c
SM
38752012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3876
3877 * frame.c (x_set_font): Catch internal error.
3878
6c16c13e
EZ
38792012-10-27 Eli Zaretskii <eliz@gnu.org>
3880
e483264c
SM
3881 Avoid overflow in w32 implementation of interval timers.
3882 When possible, for ITIMER_PROF count only times the main thread
6c16c13e
EZ
3883 actually executes.
3884 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
2e612797
EZ
3885 'volatile ULONGLONG' types. All the other data which was
3886 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
6c16c13e
EZ
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
e483264c
SM
3892 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3893 Remove unused variable.
6c16c13e
EZ
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.
2f246cd3 3898 (sys_spawnve): Avoid compiler warning about format mismatch.
6c16c13e 3899
ccc83f50
EZ
39002012-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
69deda53
PE
39072012-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
7e70a152
KH
39162012-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
49238e7f
CY
39242012-10-23 Chong Yidong <cyd@gnu.org>
3925
3926 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3927
5ec86886
JD
39282012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3929
ef446959
JD
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
5ec86886
JD
3934 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3935 event (Bug#12681).
3936
ee7a418d
GM
39372012-10-21 Glenn Morris <rgm@gnu.org>
3938
3939 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3940
4973679b
PE
39412012-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
c664f463
CY
39632012-10-20 Chong Yidong <cyd@gnu.org>
3964
3965 * lread.c (Fload): Doc fix (Bug#12592).
3966
6ec83f92 39672012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
a0d7415f
KH
3968
3969 * font.c (Ffont_at): Fix previous change.
3970
d2824928
EZ
39712012-10-19 Eli Zaretskii <eliz@gnu.org>
3972
e483264c
SM
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
c052c554
EZ
3975 for the reasons.
3976
d2824928
EZ
3977 * alloc.c (NSTATICS): Decrease to 0x800.
3978
f60d391f
SM
39792012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3980
4a0e1924 3981 * fns.c (Fnreverse): Include the problem element when signaling an
f60d391f
SM
3982 error (bug#12677).
3983
1a9327d5
JD
39842012-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
14145a1e
DC
39892012-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
1f76f6f5
MR
39952012-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
fcf14875
EZ
40022012-10-17 Eli Zaretskii <eliz@gnu.org>
4003
1f76f6f5
MR
4004 * makefile.w32-in ($(BLD)/w32.$(O)):
4005 ($(BLD)/vm-limit.$(O)):
4006 ($(BLD)/term.$(O)):
4007 ($(BLD)/unexw32.$(O)):
4008 ($(BLD)/fileio.$(O)):
a68089e4
EZ
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
fcf14875
EZ
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
fe0b1ec4
KH
40452012-10-17 Kenichi Handa <handa@gnu.org>
4046
4047 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
4048 invalidate.
4049
d556ebf9
DA
40502012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
4051
4052 * buffer.c (Fkill_buffer): When unchaining the marker,
1f9f395d 4053 reset its buffer pointer to NULL (Bug#12652).
d556ebf9 4054
f0863a54
DA
40552012-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
12fbe755
DA
40612012-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
61655b89
DA
40682012-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
9520f2f2
DC
40752012-10-15 Daniel Colascione <dancol@dancol.org>
4076
4077 * dbusbind.c: Add comment explaining reason for previous change.
4078
dca778d5
MR
40792012-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
3e0341b0
DC
40862012-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
33d4113c
DC
40922012-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
a36fb15e
JD
40982012-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
537f336d
JD
41022012-10-13 Jan Djärv <jan.h.d@swipnet.se>
4103
4104 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
4105
0ba06a77
KH
41062012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
4107
4108 * coding.c (detect_coding): Set coding->id before calling
4109 this->detector.
4110
ce2fe65a
AS
41112012-10-13 Andreas Schwab <schwab@linux-m68k.org>
4112
4113 * fileio.c: Formatting fixes.
4114
d6453ce4
PE
41152012-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
06485aa8
SM
41282012-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
167e3640
JD
41322012-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
c40239df
JB
41432012-10-12 Juanma Barranquero <lekktu@gmail.com>
4144
4145 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
4146
bb385a92
EZ
41472012-10-12 Eli Zaretskii <eliz@gnu.org>
4148
2a9f1099
EZ
4149 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
4150
bb385a92
EZ
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
8599b23a 4157 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
bb385a92
EZ
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
2b9c2e68
JD
41642012-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
81749a23
GM
41682012-10-12 Glenn Morris <rgm@gnu.org>
4169
4170 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
4171
5253a5fd
SM
41722012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4173
389a94a5
SM
4174 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
4175
5253a5fd
SM
4176 * eval.c (Fautoload): Remember previous autoload status in load-history.
4177
7cded46f
PE
41782012-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
549c3414
DA
42012012-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
e85aafe7
PE
42062012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4207
fd2f90cf
PE
4208 * marker.c (cached_modiff): EMACS_INT, not int.
4209
c1af190b
PE
4210 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
4211 instead of having a wrong decl.
e85aafe7
PE
4212 * nsmenu.m (waiting_for_input): Remove wrong decl.
4213
e738ca56
PE
42142012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4215
9fa1de30
PE
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
e738ca56
PE
4264 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
4265
29f21cdf
JB
42662012-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
6aea7528
DA
42712012-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
5f3f57be
PE
42772012-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
3e98c68e
DA
42842012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4285
4286 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
4287
77e344e5
PE
42882012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4289
4290 * commands.h (immediate_quit): Remove duplicate decl.
4291
5683d7cd
JD
42922012-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.
1f9f395d 4297 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
5683d7cd 4298
cf5fc6db
EZ
42992012-10-09 Eli Zaretskii <eliz@gnu.org>
4300
b15736e6
EZ
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
cf5fc6db
EZ
4305 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
4306 'is_tooltip_frame', to avoid confusion with its global namesake.
4307
f99714ce
DC
43082012-10-08 Daniel Colascione <dancol@dancol.org>
4309
4310 * xdisp.c (start_hourglass): Call w32_note_current_window when
2b1f11ed
EZ
4311 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
4312 build that caused Emacs to display the hourglass cursor forever.
f99714ce 4313
fd59cb29
GM
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
62c480c9 43192012-10-08 Jan Djärv <jan.h.d@swipnet.se>
fd59cb29 4320
62c480c9
JD
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
607446ba
JB
43262012-10-08 Juanma Barranquero <lekktu@gmail.com>
4327
fd5125ad
JB
4328 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4329 in nt/config.nt.
46979e0b
JB
4330 (FONT_H): Define after FRAME_H.
4331 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
4332 Update dependencies.
fd5125ad 4333
607446ba
JB
4334 * w32term.c: Remove leftover declaration of keyboard_codepage.
4335
b6f4e300
EZ
43362012-10-08 Eli Zaretskii <eliz@gnu.org>
4337
c54ebba4
EZ
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.
fd59cb29
GM
4342 ($(BLD)/unexw32.$(O)):
4343 ($(BLD)/w32.$(O)):
4344 ($(BLD)/w32console.$(O)):
4345 ($(BLD)/w32fns.$(O)):
4346 ($(BLD)/w32heap.$(O)):
4347 ($(BLD)/w32menu.$(O)):
15c720a3 4348 ($(BLD)/w32proc.$(O)): Add w32common.h.
c54ebba4 4349
b6f4e300
EZ
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
501199a3
DC
43542012-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
1f9f395d 4364 w32common.h instead of w32heap.h.
501199a3
DC
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)
8599b23a
SM
4375 (w32_minor_version, w32_build_number, w32_subtype):
4376 Remove duplicate definitions.
501199a3
DC
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
93aa5c81
DC
44072012-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
d424f3d8
EZ
44122012-10-08 Eli Zaretskii <eliz@gnu.org>
4413
8ee4c6ce
EZ
4414 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4415
d424f3d8
EZ
4416 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4417 Cygwin.
4418
e08348a0
DC
44192012-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
8e2417bf 4432 W32_OBJ and W32_LIBS. Compile new files.
e08348a0
DC
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
1f9f395d 4487 w32fns.c. w32console.c is WINDOWSNT-only.
e08348a0
DC
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
98daa893
EZ
45572012-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
3bc0a2f7
JD
45632012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4564
8ad5b73b 4565 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
493b5b1c 4566
335f5ae4
JD
4567 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4568 MAC_OS_X_VERSION_10_6.
8ad5b73b
JD
4569 (syms_of_nsterm): Remove comment about Panther and above for
4570 ns-antialias-text.
335f5ae4
JD
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
8ad5b73b
JD
4578 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4579 MAC_OS_X_VERSION_10_2.
335f5ae4
JD
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
3bc0a2f7
JD
4586 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4587 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
8599b23a
SM
4588 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4589 Remove ns_in_resize check.
3bc0a2f7
JD
4590 (ns_clear_frame_area): Remove resize handle code.
4591
4592 * nsfns.m (ns_in_resize): Remove.
e483264c
SM
4593 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4594 Remove ns_in_resize check.
3bc0a2f7 4595
c622b48f
PE
45962012-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
04fafa46
JD
46062012-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.
1f9f395d 4622 (toggleFullScreen:): Remove comment. Rearrange calls.
04fafa46
JD
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
c6e21c03
PE
46272012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4628
4629 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4630
0d9f584b
EZ
46312012-10-05 Eli Zaretskii <eliz@gnu.org>
4632
a65fbb5f
EZ
4633 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4634
0d9f584b 4635 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
8599b23a
SM
4636 that time stamps of directories could also be changed.
4637 Don't request the too broad GENERIC_WRITE, only the more restrictive
0d9f584b
EZ
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
e8757f09 46432012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
ca347e3d
IK
4644
4645 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4646
7604f298
EZ
46472012-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
88d69b7d
PE
46522012-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
7509f454
PE
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
a3c5c0c5
PE
46692012-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
914e743b
JD
46742012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4675
4676 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4677
d8ab37a8
EZ
46782012-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
b3ecad33
PE
46832012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4684
0a99eee1
PE
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
b3ecad33
PE
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
090cf9db
SM
47062012-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.
64edc777 4715 (fix_start_end_in_overlays): Remove redundant recentering.
090cf9db 4716
81550bf4
JB
47172012-10-02 Juanma Barranquero <lekktu@gmail.com>
4718
4719 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4720 Update dependencies.
4721
aa1ba90e
PE
47222012-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
ace917bd
EZ
47412012-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
9eb71b9c
SM
47462012-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
b3317662
FP
47512012-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
f0e5f225
EZ
47572012-10-01 Eli Zaretskii <eliz@gnu.org>
4758
2d7d1608
EZ
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
f0e5f225
EZ
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.
4cdfbb89
EZ
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.
f0e5f225
EZ
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
82ef37c1
PE
47842012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4785
b3a4c387
PE
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
b0ab8123
PE
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
05584c31
PE
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
86ec63ba
PE
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
82ef37c1
PE
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
62aba0d4
FP
48892012-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.
5e4daaf3 4895 (x_get_focus_frame): Add prototype.
62aba0d4
FP
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
e7a2937b
PE
49622012-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
b43d62ae
SM
49682012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4969
4970 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4971
c06c382a
EZ
49722012-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)
b43d62ae 4978 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
c06c382a
EZ
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.
b43d62ae
SM
5000 (w32_note_current_window, show_hourglass, hide_hourglass):
5001 New functions, in support of hourglass cursor display similar to other
c06c382a
EZ
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
95402d5f
KH
50112012-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
dd946752
JD
50162012-09-30 Jan Djärv <jan.h.d@swipnet.se>
5017
d7e642cc
JD
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
dd946752
JD
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
1f9f395d 5045 fullscreen. Set maximized_width/height. Act on next_maximized.
dd946752
JD
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
427730eb
JB
50522012-09-30 Juanma Barranquero <lekktu@gmail.com>
5053
5054 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5055
48de8b12
CY
50562012-09-30 Chong Yidong <cyd@gnu.org>
5057
5058 * fns.c (Frandom): Doc fix.
5059
5938d519
MR
50602012-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
cb5b0266
PE
50652012-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
84f72efd
EZ
50712012-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
9d4dcdc9
PE
50762012-09-30 Paul Eggert <eggert@cs.ucla.edu>
5077
d89460ed
PE
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.
84f72efd 5086 (enum profiler_cpu_running): New enum.
d89460ed
PE
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
9d4dcdc9
PE
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
8e5691a0
JB
51162012-09-29 Juanma Barranquero <lekktu@gmail.com>
5117
5118 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5119
e7c1b6ef
SM
51202012-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
e61d39cd 51292012-09-28 Glenn Morris <rgm@gnu.org>
d393cefb
GM
5130
5131 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
5132 (Frun_hook_with_args_until_failure): Doc fixes.
5133
404043ea
EZ
51342012-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
704d3f45
TM
51392012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
5140
5141 * profiler.c (sigprof_handler): Fix race condition.
5142
757140ff
GM
51432012-09-28 Glenn Morris <rgm@gnu.org>
5144
5145 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
5146
a615a3ae
PE
51472012-09-27 Paul Eggert <eggert@cs.ucla.edu>
5148
5149 Check more robustly for timer_settime.
89d17fd0
PE
5150 * Makefile.in (LIB_TIMER_TIME): New macro.
5151 (LIBES): Add it.
a615a3ae
PE
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
3670daf7
TM
51562012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5157
5158 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
5159
6a586b7f
JB
51602012-09-26 Juanma Barranquero <lekktu@gmail.com>
5161
5162 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5163
41c8bfcf
PE
51642012-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
3a880af4
SM
51722012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5173 Stefan Monnier <monnier@iro.umontreal.ca>
5174 Juanma Barranquero <lekktu@gmail.com>
611b7507 5175
3a880af4
SM
5176 * profiler.c: New file.
5177 * Makefile.in (base_obj): Add profiler.o.
611b7507
JB
5178 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
5179 ($(BLD)/profiler.$(O)): New target.
3a880af4
SM
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.
611b7507 5197
5938d519 51982012-09-25 Eli Zaretskii <eliz@gnu.org>
b67238c2
JB
51992012-09-25 Juanma Barranquero <lekktu@gmail.com>
5200
5201 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
5202
e26fd2e4
PE
52032012-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.
9180598c 5209 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
e26fd2e4 5210
eedec3ee
EZ
52112012-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
aa15c6bb
JB
52182012-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
54d629be
EZ
52362012-09-25 Eli Zaretskii <eliz@gnu.org>
5237
16b22fef
EZ
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
54d629be
EZ
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
59f7af81
CY
52672012-09-25 Chong Yidong <cyd@gnu.org>
5268
5269 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
5270
22e8cf4a
SM
52712012-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
578098f3
PE
52762012-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
a5f2b6ec
CY
53142012-09-24 Chong Yidong <cyd@gnu.org>
5315
5316 * chartab.c (Fset_char_table_default): Obsolete function removed.
5317
18e27ea8
PE
53182012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5319
afea8a8a
PE
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
18e27ea8
PE
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
af0e9f75
JB
53532012-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
5101529e
EZ
53722012-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
2c3ee0ad
JB
53812012-09-23 Juanma Barranquero <lekktu@gmail.com>
5382
5383 * w32term.c (w32_read_socket): Remove leftover reference to
5384 interrupt_input_pending.
5385
62a1d661
PE
53862012-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
a0942b9a
JD
53972012-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
d07ff9db
CY
54022012-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.
641cfd14 5421 (valid_image_p, make_image): Fix caller to lookup_image_type.
d07ff9db 5422
4d7e6e51
PE
54232012-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.
3a880af4
SM
5492 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5493 All callers changed. Block SIGINT only if not already blocked.
4d7e6e51
PE
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
8f4635e9
JD
55572012-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,
fb39b937 5560 background rect may be larger (Bug#12245).
8f4635e9 5561
3296976d
CY
55622012-09-23 Chong Yidong <cyd@gnu.org>
5563
5564 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5565
d41e491e
PE
55662012-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
c88b867f
CY
55732012-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
bb4d86b4
CY
55842012-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)
3a880af4
SM
5593 (gif_type, imagemagick_type, svg_type, gs_type):
5594 Add initialization functions.
bb4d86b4
CY
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
df9685f3
EZ
56022012-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
8e17c9ba
MR
56112012-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.
3a880af4
SM
5616 (Vwindow_combination_limit): New default value.
5617 Rewrite doc-string.
8e17c9ba 5618
589bd69b
EZ
56192012-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
01108e3f
PE
56242012-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
82f8cd94
CY
56302012-09-22 Chong Yidong <cyd@gnu.org>
5631
5632 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5633 (Bug#8207).
5634
3cccbd87
KH
56352012-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
09c01941
CY
56402012-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
acfa068f 56452012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
e25c1a30
YM
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
acfa068f 56512012-09-21 Glenn Morris <rgm@gnu.org>
1e9bbf47
GM
5652
5653 * eval.c (Frun_hook_with_args_until_success)
5654 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5655
acfa068f 56562012-09-21 Andreas Schwab <schwab@linux-m68k.org>
c6ba4138
AS
5657
5658 * fileio.c (Ffile_selinux_context): Only call freecon when
5659 lgetfilecon succeeded.
5660 (Fset_file_selinux_context): Likewise. (Bug#12444)
5661
acfa068f 56622012-09-21 Eli Zaretskii <eliz@gnu.org>
aa36e4d2
EZ
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)
f2016bea
EZ
5669 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5670 scrolling through multibyte text.
aa36e4d2 5671
e99f70c8
SM
56722012-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
f75beb47
PE
56812012-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
b019b76a
JB
56942012-09-20 Juanma Barranquero <lekktu@gmail.com>
5695
5696 * w32gui.h (XParseGeometry): Do not declare.
5697
05642592
PE
56982012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5699
e4bce92a 5700 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
1f9f395d 5701 Ignore 'expected'. See Eli Zaretskii in
e4bce92a
PE
5702 <http://bugs.gnu.org/12471#8> (last line).
5703
05642592
PE
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
e543ae91
JD
57082012-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
3a880af4 5716 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
e543ae91
JD
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
45ba16c7
EZ
57202012-09-17 Eli Zaretskii <eliz@gnu.org>
5721
c8b9f1bc
EZ
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
b4c932a2
EZ
5726 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5727 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5728
45ba16c7
EZ
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
eeceac93
PE
57332012-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
78f83752
GM
57452012-09-17 Glenn Morris <rgm@gnu.org>
5746
5747 * emacs.c: Use COPYRIGHT.
5748
634b8cac
PE
57492012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5750
0caaedb1
PE
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]:
1f9f395d 5768 Remove. All uses removed.
0caaedb1
PE
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
634b8cac
PE
5793 * font.c (Ffont_shape_gstring): Remove unused local.
5794
83da1b55
GM
57952012-09-16 Glenn Morris <rgm@gnu.org>
5796
518650a5
GM
5797 * Makefile.in (clean): No longer run nextstep's clean.
5798
83da1b55
GM
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
85a43e2e
KH
58052012-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
ba13e616 58102012-09-16 Kenichi Handa <handa@gnu.org>
ea964864
KH
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
a8c729af
MR
58152012-09-16 Martin Rudalics <rudalics@gmx.at>
5816
3a880af4
SM
5817 * window.c (Fwindow_parameter, Fset_window_parameter):
5818 Accept any window as argument (Bug#12452).
a8c729af 5819
c077c059
JD
58202012-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
39a57ad0
PE
58302012-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
7105c8cb
EZ
58372012-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
0328b6de
PE
58632012-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.
7105c8cb 5867 Some instances of '#include <setjmp.h>' removed, if the
0328b6de
PE
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
2af03429
PE
58852012-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
2f294edf
DA
58902012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5891
5892 Avoid out-of-range marker position (Bug#12426).
3a880af4
SM
5893 * insdel.c (replace_range, replace_range_2):
5894 Adjust markers before overlays, as suggested by comments.
2f294edf
DA
5895 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5896 Remove redundant check before calling offset_intervals.
5897
6b533e9c
MR
58982012-09-14 Martin Rudalics <rudalics@gmx.at>
5899
5900 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5901 current buffer (Bug#12387).
5902
2a7931e3
JB
59032012-09-14 Juanma Barranquero <lekktu@gmail.com>
5904
5905 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5906
c18e885b
PE
59072012-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
d59a1afb
DA
59142012-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
5f0cb45a
PE
59232012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5924
8ea47e3a
PE
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
4a4bbad2
PE
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
5f0cb45a
PE
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
40bce90b
PE
59732012-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
bfeae2cf
SM
59892012-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
8099e36b
EZ
59952012-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
92547ff9
PE
60012012-09-12 Paul Eggert <eggert@cs.ucla.edu>
6002
6003 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
6004
45b82ad0
SM
60052012-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
5779a1dc
PE
60152012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6016
50f2e553
PE
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
ae1d87e2
PE
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
5779a1dc
PE
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
c4c9756b
JD
60412012-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
d73e321c
DA
60502012-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
1f9f395d 6058 or deleted frame, restore its global binding.
d73e321c
DA
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
e578f381
DA
60642012-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
3057e615
YM
60712012-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
6fda35f2
PE
60812012-09-11 Paul Eggert <eggert@cs.ucla.edu>
6082
c990426a
PE
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
6fda35f2
PE
6104 * xdisp.c (Qinhibit_debug_on_message): Now static.
6105
16130a58
JD
61062012-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
d105a573
CY
61112012-09-10 Chong Yidong <cyd@gnu.org>
6112
6113 * fns.c (Fdelq, Fdelete): Doc fix.
6114
ff55dfe8
PE
61152012-09-10 Paul Eggert <eggert@cs.ucla.edu>
6116
6117 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
6118 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
6119
e7032e7c
SM
61202012-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
e9957956
EZ
61262012-09-09 Eli Zaretskii <eliz@gnu.org>
6127
aba05ce9
EZ
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
e9957956
EZ
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
f6196b87
PE
61362012-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
9d7f1863
JD
61682012-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
eabf0404
PE
61732012-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
0b3b1d23
JD
61782012-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
6dcef6ec
CY
61832012-09-08 Chong Yidong <cyd@gnu.org>
6184
6185 * syntax.c (Fstring_to_syntax): Doc fix.
6186
aa7d57c5
JD
61872012-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.
3a880af4
SM
6193 (ns_after_update_window_line, ns_draw_fringe_bitmap):
6194 Remove fringe/internal border adjustment (Bug#11052).
aa7d57c5
JD
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.
fc0c31f8 6203 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
aa7d57c5
JD
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
1a5432bc
CY
62142012-09-07 Chong Yidong <cyd@gnu.org>
6215
b4f5313e
CY
6216 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
6217
1a5432bc
CY
6218 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
6219
1a4f1e9b
PE
62202012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6221
6222 More signal-handler cleanup (Bug#12327).
eddb36a7
PE
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>.
1a4f1e9b
PE
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
bc8000ff
EZ
62402012-09-07 Eli Zaretskii <eliz@gnu.org>
6241
3e6d6928
EZ
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
bc8000ff
EZ
6247 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
6248
b4fa72f2
DA
62492012-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
30730c93
PE
62542012-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
2fe28299
PE
62602012-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,
fc0c31f8 6284 so that there's no need to block and unblock SIGHUP.
2fe28299
PE
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
0216c128
EZ
63142012-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
c752cfa9
DA
63192012-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
a864ef14
PE
63342012-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
0699fc18
DA
63592012-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
20ef56db
PE
63642012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6365
2fe28299 6366 Fix race conditions with signal handlers and errno (Bug#12327).
20ef56db
PE
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,
3a880af4
SM
6411 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6412 This lets callers save and restore errno properly.
20ef56db 6413
e3ccf108
DA
64142012-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
697e1e39
DA
64242012-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
c1ca42ca
DA
64302012-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
014d93be
PE
64362012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6437
f75d7a91
PE
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
014d93be
PE
6463 * xdisp.c (set_message): Simplify and reindent last change.
6464
776f29e1
JB
64652012-09-05 Juanma Barranquero <lekktu@gmail.com>
6466
6467 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6468
7f7e0167
LI
64692012-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
cf29dd84
PE
64772012-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
972debf2
SM
64962012-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
1088b922
PE
65022012-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
30934d33
EZ
65222012-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
af26b72c
PE
65302012-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
26d4541d
PE
65442012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6545
d42f4f0f 6546 Fix minor problem found by static checking.
26d4541d 6547 * buffer.c (Fdelete_all_overlays): Return nil.
26d4541d 6548
c5e28e39
MR
65492012-09-03 Martin Rudalics <rudalics@gmx.at>
6550
6551 * buffer.c (Fdelete_all_overlays): New function.
6552
3eab3ca9
CY
65532012-09-03 Chong Yidong <cyd@gnu.org>
6554
6555 * gtkutil.c: Add extern decl for Qxft.
6556
c04889f8
PE
65572012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6558
1882aa38
PE
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
a411ac43
PE
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
c04889f8
PE
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
8b339673
JD
66222012-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
a08d4ba7
PE
66282012-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
48c948de
CY
66572012-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
6c49a40b
JB
66622012-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
4dfbd238
EZ
66722012-09-01 Eli Zaretskii <eliz@gnu.org>
6673
7e510e28
EZ
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
4dfbd238
EZ
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
86571ae0
DC
66822012-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
0e23ef9d
PE
66872012-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
17a2cbbd
DC
66962012-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
f18cbb28 6715 * w32font.h: Include font.h. Define syms_of_w32font and
17a2cbbd
DC
6716 globals_of_w32font.
6717
6718 * process.c: Include TERM_HEADER instead of listing all possible
6719 window-system headers.
6720
3a880af4
SM
6721 * nsterm.h: Remove declarations now in frame.h.
6722 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
17a2cbbd
DC
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
f18cbb28
EZ
6758 * dispnew.c: Include TERM_HEADER instead of listing all possible
6759 window-system headers.
17a2cbbd 6760
f18cbb28 6761 * ccl.h: Include character.h.
17a2cbbd
DC
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
c650a5de
DA
67672012-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
4e0f6479
DA
67772012-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
8b96a52c
DA
67862012-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
b4444c8a
JD
67922012-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
b98521db
PE
67972012-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
31d02438
GM
68022012-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
7f8941d8
JD
68082012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6809
6810 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
fc0c31f8 6811 button_values to NULL. Call setStykeMask so dialogs get a close button.
7f8941d8
JD
6812 (windowShouldClose:): Set window_closed.
6813 (dealloc): New member, free button_values.
fc0c31f8
JB
6814 (process_dialog:): Make member function. Remove window argument,
6815 replace window with self. Count buttons and allocate and store values
7f8941d8
JD
6816 in button_values.
6817 (addButton:value:row:): value is int with the name tag. Call setTag
fc0c31f8 6818 with tag. Remove return self, declare return value as void.
7f8941d8
JD
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.
fc0c31f8 6822 Set dialog_return to button_values[seltag]. Code formatting change.
7f8941d8
JD
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
eada0861 68342012-08-28 Eli Zaretskii <eliz@gnu.org>
19c17fc1 6835
eada0861
GM
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
68392012-08-28 Glenn Morris <rgm@gnu.org>
6840
6841 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6842
457294dd
MR
68432012-08-28 Martin Rudalics <rudalics@gmx.at>
6844
6845 * window.c (Fset_window_configuration): Remove handling of
37b9743e
MR
6846 auto-buffer-name window parameter. Install revision of reverted
6847 fix.
457294dd 6848
4f2daf31
DA
68492012-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
66322887
DA
68572012-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
a3d794a1
DA
68662012-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
59ea14cd
PE
68792012-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
95072a94
MR
69092012-08-27 Martin Rudalics <rudalics@gmx.at>
6910
6911 * window.c (Fset_window_configuration): Revert first part of
6912 last change.
6913
0f19feff
JD
69142012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6915
6916 * nsterm.h (NSPanel): New class variable dialog_return.
6917
3a880af4
SM
6918 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6919 Initialize dialog_return.
0f19feff
JD
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
f10fe38f
PE
69272012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6928
de1339b0
PE
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
f10fe38f
PE
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
5474c384
DA
69842012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6985
f10fe38f 6986 Fix spare memory change (Bug#12286).
5474c384
DA
6987 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6988 (valid_lisp_object_p): Likewise.
6989
c4b6914d
MR
69902012-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
35aaa1ea
DA
69972012-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
6af64513
PE
70052012-08-26 Paul Eggert <eggert@cs.ucla.edu>
7006
8b2e00a3
PE
7007 Spelling fixes.
7008 * Makefile.in (.PHONY): versioclean -> versionclean.
7009
b52d6985
PE
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
d5172d4f
PE
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
6af64513
PE
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
e1f29348
BR
70472012-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
17c05d74
PE
70532012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7054
0f46bc75
PE
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
ee4c0f69
PE
7063 * emacs.c (fatal_error_signal_hook): Remove.
7064 All uses removed. This leftover from old code was always 0.
7065
17c05d74
PE
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
391ceac5
EZ
70732012-08-25 Eli Zaretskii <eliz@gnu.org>
7074
7075 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
7076
2f221583
PE
70772012-08-25 Paul Eggert <eggert@cs.ucla.edu>
7078
f4a681b0
PE
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
2f221583
PE
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
37ef52bb
PE
70962012-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
2cc21167
PE
71142012-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
7db4ddf4
MR
71312012-08-23 Martin Rudalics <rudalics@gmx.at>
7132
7133 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
7134 argument.
7135
b1bb8011
PE
71362012-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
ff687885
DN
71412012-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
4ce7a138
JD
71492012-08-22 Jan Djärv <jan.h.d@swipnet.se>
7150
7151 * nsterm.m (insertText:): Don't clear modifiers if code is space.
7152
d733ec6d
PE
71532012-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
fc0c31f8 7157 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
d733ec6d
PE
7158 (fontset_add): Return void, for FONTSET_ADD.
7159
d0d2d26f
PE
71602012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7161
fce31d69
PE
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
d0d2d26f
PE
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
d18e2bb6
JD
71972012-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
1b9d9d16
PE
72022012-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
b2f09701
EZ
72102012-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
e1f29348
BR
7215 what x_draw_composite_glyph_string_foreground expects.
7216 Generate WADJUST value according to composition_gstring_width's
b2f09701
EZ
7217 expectations, to produce correct width of the composed character.
7218 Reverse the sign of the DU offset produced by ScriptPlace.
7219
9b994fed
PE
72202012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7221
7222 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
7223
086ca913
DA
72242012-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
5481664a
MR
72382012-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
6d470bdd
DA
72452012-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
24564fe1
GM
72532012-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
0a05a035
EZ
72582012-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
e46f2325
DA
72652012-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
734fbd86
MR
72712012-08-20 Martin Rudalics <rudalics@gmx.at>
7272
7273 * window.c (select_window): Always make selected window's buffer
7274 current.
7275
f1a95992
DA
72762012-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
e83064be
DA
72832012-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
4ce60d2e
DA
72922012-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
c06c9690
JB
73002012-08-20 Juanma Barranquero <lekktu@gmail.com>
7301
7302 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
7303
32bd4250
PE
73042012-08-19 Paul Eggert <eggert@cs.ucla.edu>
7305
bad03192 7306 Rely on <config.h> + <unistd.h> to declare 'environ',
b69a6d22
PE
7307 as gnulib does this if the system doesn't.
7308 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
72279493
EZ
7309 Remove declaration. MS-Windows declares it on stdlib.h which is
7310 included by conf_post.h.
b69a6d22
PE
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
22d7feb2
PE
7315 * unexaix.c, unexcoff.c: Include "mem-limits.h".
7316 (start_of_data): Remove decl; mem-limits.h provides it.
7317
32bd4250
PE
7318 * xdisp.c (handle_invisible_prop): Make it a bit faster
7319 and avoid a gcc -Wmaybe-uninitialized diagnostic.
7320
450809af
CY
73212012-08-19 Chong Yidong <cyd@gnu.org>
7322
7323 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
7324 ends (Bug#3874).
7325
9e677988
AS
73262012-08-19 Andreas Schwab <schwab@linux-m68k.org>
7327
6b1319ce
AS
7328 * .gdbinit: Use call instead of set when calling a function in the
7329 inferior.
7330
9e677988
AS
7331 * data.c (set_internal): Don't use set_blv_found.
7332 (Fkill_local_variable): Likewise.
7333
d7191076
AA
73342012-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
e757f1c6
PE
73402012-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
a999ce26
CY
73492012-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
3f22b86f
PE
73542012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7355
39eb03f1
PE
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
6a09a33b
PE
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
e8c17b81
PE
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
3f22b86f
PE
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
742af32f
PE
74382012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7439
15dbb4d6
PE
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
f00af5b1
PE
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
0c94c8d6
PE
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
34dabdb7
PE
7495 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7496 (set_char_table_contents): Rename from char_table_set_contents.
0b390a9d 7497 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
34dabdb7
PE
7498 All uses changed. See the end of
7499 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7500
742af32f
PE
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
c24eb18a 7506 "set_char_table_parent (char_table, parent);".
742af32f
PE
7507 The old version was confusing because it used the same name
7508 'parent' for two different things.
7509
a04e2c62
DA
75102012-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
383dcbf9
CY
75182012-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
44386687
DA
75252012-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
927c7216
PE
75322012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7533
7534 * lisp.h (duration_to_sec_usec): Remove unused decl.
7535
93044f7b
AA
75362012-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
9851e4a5
JB
75412012-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
620f13b0
PE
75482012-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
52162052
MR
75762012-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
2751c80f
DA
76142012-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
032a42c8
CY
76202012-08-16 Chong Yidong <cyd@gnu.org>
7621
a2d19368
CY
7622 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7623
032a42c8
CY
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
a098c930
DA
76352012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7636
032a42c8 7637 Simple interface to set Lisp_Object fields of character tables.
a098c930
DA
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
8be3a09c
SM
76442012-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
ac4845a6
JD
76492012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7650
ddee6515
JD
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.
fc0c31f8 7673 Initialize select_mutex. Start the select thread (fd_handler).
ddee6515
JD
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
ac4845a6
JD
7683 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7684
eb424fe3
EZ
76852012-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
4e6a86c6
DA
76912012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7692
7693 Generalize and cleanup font subsystem checks.
7694 * font.h (FONT_DEBUG, font_assert): Remove.
8be3a09c
SM
7695 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7696 Change font_assert to eassert. Use eassert where appropriate.
4e6a86c6 7697
5bf192ca
DA
76982012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7699
7700 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7701
f2045622
CY
77022012-08-15 Chong Yidong <cyd@gnu.org>
7703
8be3a09c
SM
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.
f2045622
CY
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
7f6feb56
SM
77152012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7716
7717 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7718 (bug#12117).
7719
fecbd8ff
SM
77202012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7721
7722 * alloc.c (Fgarbage_collect): Use plural form consistently.
7723
9b8d5165
EZ
77242012-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
f5d9e83a
PE
77302012-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
55802e4a
CY
77412012-08-14 Chong Yidong <cyd@gnu.org>
7742
4abcdac8
CY
7743 * character.c (Fcharacterp): Doc fix (Bug#12076).
7744
7745 * data.c (Findirect_variable): Doc fix (Bug#11040).
7746
55802e4a
CY
7747 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7748
7749 * editfns.c (Fformat): Doc fix (Bug#12059).
4abcdac8 7750 (Fsave_current_buffer): Doc fix (Bug#11542).
55802e4a 7751
8e99d072
BR
77522012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7753
7754 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7755 (bug#12022).
7756
08908aca
MR
77572012-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
56120d6f
PE
77662012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7767
7768 * intervals.c (offset_intervals): Remove obsolete comment.
7769
67b77c0b
AS
77702012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7771
7772 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7773
f48b82fd
GR
77742012-08-14 Gergely Risko <gergely@risko.hu>
7775
7776 * coding.c (decode_coding): Record buffer modification before
7777 disabling undo_list (Bug#11773).
7778
fd318b54
DA
77792012-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
41a62dd9
DA
77882012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7789
7790 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7791
5884c324
PE
77922012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7793
7794 * gtkutil.c (xg_mark_data): Don't assume C99.
7795
ca06f160
JD
77962012-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
fc0c31f8 7805 is up to date. Otherwise store new data.
ca06f160
JD
7806 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7807
7864a3f7
DA
78082012-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
4c31be61
DA
78162012-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
14ae4239
BT
78252012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7826
7827 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7828
32bcadb4
JD
78292012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7830
3d29b2ce 7831 * nsterm.m (not_in_argv): New function.
fc0c31f8 7832 (application:openFile, application:openTempFile:):
3d29b2ce
JD
7833 (application:openFileWithoutUI:, application:openFiles:): Open file
7834 if not_in_argv returns non-zero (bug#12171).
7835
32bcadb4 7836 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
14ae4239
BT
7837 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7838 Define for Gtk+ versions less than 3.2.
32bcadb4
JD
7839 (xg_get_font_name): Use those functions/macros here.
7840 Reported by Frans Oilinki <moilinki@gmail.com>.
7841
9ff9402d 78422012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
8ccd072a
YM
7843
7844 * unexmacosx.c (copy_data_segment): Copy initialized data in
7845 statically linked libraries from input file rather than memory.
7846
db74a5fc
YM
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
25e65510
GM
78512012-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
7961135c
DA
78562012-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
42b3a444
DA
78622012-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
9fb0c957
DA
78682012-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
65e8ee52
DA
78772012-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
9b855fd6
EZ
78832012-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
39cb9e56 78902012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
d30be705
EZ
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
9374581a
GM
79042012-08-10 Glenn Morris <rgm@gnu.org>
7905
4b94e8cf
GM
7906 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7907
9374581a
GM
7908 * lisp.h (DIRECTORY_SEP): Let configure set it.
7909
a2752828
DA
79102012-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
cc92c454
SM
79162012-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
4cb3e6b3
DA
79232012-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
8707c1e5
DA
79332012-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
ad8c997f
DA
79472012-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
32ac3a6b
GM
79552012-08-08 Glenn Morris <rgm@gnu.org>
7956
7957 * lisp.mk (lisp): Remove language/persian.elc.
7958
77c7bcb1
DA
79592012-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.
14ae4239
BT
7964 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7965 Adjust comment. Move under #if 0.
77c7bcb1
DA
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
9c08a8d4
DA
79692012-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
26d16b35
EZ
79752012-08-07 Eli Zaretskii <eliz@gnu.org>
7976
14ae4239
BT
7977 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7978 Rename fields to match removal of FGET and WGET and disuse of
26d16b35
EZ
7979 INTERNAL_FIELD in Lisp_Cons.
7980
c644523b
DA
79812012-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
6a3d20cc
DA
79982012-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.
14ae4239
BT
8005 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
8006 Adjust indentation.
6a3d20cc
DA
8007 (INTERVAL_SIZE): Remove. Adjust users.
8008 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
8009
4d2b044c
DA
80102012-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
d3d50620
DA
80172012-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
d10a51dc
CY
80292012-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
e69b0960
DA
80362012-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
25a20a3a
JB
80462012-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
1c6f11f4
GM
80522012-08-06 Glenn Morris <rgm@gnu.org>
8053
1db4583a
GM
8054 * sysdep.c: Respect BROKEN_GETWD.
8055
1c6f11f4
GM
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
2b90362b
DA
80602012-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
5f50daf2
EZ
80672012-08-06 Eli Zaretskii <eliz@gnu.org>
8068
14ae4239
BT
8069 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
8070 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
5f50daf2 8071
cbcc7007
SM
80722012-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
4d365fa4
JD
80772012-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
dd86bd82
DA
80822012-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
054e1668
JD
80882012-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
21238f11
DA
80942012-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
077288cf
DA
81002012-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
71688bd7
DA
81112012-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
f99bac93
DA
81192012-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
8c2a0f2d
GM
81262012-08-06 Glenn Morris <rgm@gnu.org>
8127
8128 * lisp.mk (lisp): Add language/persian.elc.
8129
edd74c35
DA
81302012-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
8671676c
AS
81392012-08-05 Andreas Schwab <schwab@linux-m68k.org>
8140
8141 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
8142
663e2b3f
DA
81432012-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
d32e47af
LM
81562012-08-05 Lawrence Mitchell <wence@gmx.li>
8157
8158 * search.c (Freplace_match): Treat \? in the replacement text
8159 literally (Bug#8161).
8160
e5d9c0d1
CY
81612012-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
8da0576b
EZ
81672012-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
02676e5d
CY
81732012-08-04 Chong Yidong <cyd@gnu.org>
8174
8175 * syntax.c (Fmodify_syntax_entry): Doc fix.
8176
97147da9
EZ
81772012-08-04 Eli Zaretskii <eliz@gnu.org>
8178
76151e2c
EZ
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
14ae4239
BT
8182 them into environment when they were not already defined.
8183 Remove the code that deletes site-lisp subdirectories from the default
76151e2c 8184 value of EMACSLOADPATH, as it is no longer needed.
14ae4239
BT
8185 (check_windows_init_file): Now external, not static.
8186 Use Vload_path as is, without adding anything, as this function is now
76151e2c
EZ
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
97147da9
EZ
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
185ee146
PE
82112012-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
8834c57a
PE
82172012-08-03 Paul Eggert <eggert@cs.ucla.edu>
8218
98c6f1e3
PE
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
8834c57a
PE
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
6dad7178
EZ
82532012-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.
14ae4239 8275 (get_file_security_desc_by_name): Rename from
6dad7178
EZ
8276 get_file_security_desc.
8277 (stat_worker): New function, with most of the guts of 'stat', and
14ae4239
BT
8278 with addition of handling of symlinks and support for 'lstat'.
8279 If possible, get file's attributes and security information by
6dad7178
EZ
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
f162bcc3
PE
82862012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8287
79ea6c20
PE
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
c0ce93fd
PE
8295 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
8296 Don't assume buffer size fits in 'int'. Remove unused local.
c71f5156 8297
f162bcc3
PE
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.
a8333d03 8325 (VALMASK) [!USE_LSB_TAG]: Likewise.
f162bcc3 8326
837b365b
GM
83272012-08-02 Glenn Morris <rgm@gnu.org>
8328
d66b744d
GM
8329 * s/: Remove empty directory.
8330
837b365b
GM
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
13294f95
PE
83352012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8336
8337 Port to Solaris 8.
8338 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
8339
90df0db3
GM
83402012-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
4939150c
PE
83452012-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
947b2afd
AA
83612012-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:)
1f9f395d 8365 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
947b2afd
AA
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
4f5d0325
EZ
83702012-08-01 Eli Zaretskii <eliz@gnu.org>
8371
2008beae
EZ
8372 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
8373 Adapt to latest changes in field names of the corresponding Lisp
288479f6 8374 objects.
2008beae 8375
4f5d0325
EZ
8376 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
8377
fe3cc771
GM
83782012-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
c90acc54
JB
83852012-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
d8a05828
DA
83902012-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
8271d590
DA
83992012-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
3193acd2
DA
84062012-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
3a45383a
DA
84132012-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
c1dbc63c
PE
84242012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8425
8426 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8427
5c0c0e8a
GM
84282012-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
552a99b4
JB
84332012-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
8d8e2dfe
GM
84402012-07-31 Glenn Morris <rgm@gnu.org>
8441
bc96620a
GM
8442 * Makefile.in (S_FILE): No longer set by configure.
8443
476b1b2d
GM
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
b2c7a106
GM
8448 * process.h (NULL_DEVICE):
8449 * emacs.c (SEPCHAR):
8450 * editfns.c (USER_FULL_NAME): Let configure set them.
8451
d53d062a
GM
8452 * s/README, s/template.h: Remove files.
8453
4515017f
GM
8454 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8455
8d8e2dfe
GM
8456 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8457 Move to configure.ac.
8458
5b20b3cc
EZ
84592012-07-31 Eli Zaretskii <eliz@gnu.org>
8460
1e0afd9a
EZ
8461 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8462 resulting renaming of 'struct frame' members.
8463
5b20b3cc
EZ
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
f1310128
JD
84692012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8470
79e721e0
JD
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
8d7c7eed 8477 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
f1310128 8478
e34f7f79
DA
84792012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8480
8481 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8482 * lisp.h (INTERNAL_FIELD): New macro.
14ae4239 8483 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
e34f7f79
DA
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.
3a45383a
DA
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:
e34f7f79
DA
8492 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8493
c09bfb2f
DA
84942012-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
14c114ae
JD
85032012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8504
8505 * nsterm.m (openFiles): Fix previous checkin.
8506
3bd21e82
PE
85072012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8508
8509 * indent.c (compute_motion): Remove unused local.
8510
c1529ded
GM
85112012-07-31 Glenn Morris <rgm@gnu.org>
8512
400d5621
GM
8513 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8514
268e2432
GM
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
7552f3ee
GM
8519 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8520 * s/irix6-5.h: Remove file.
8521
6a381852
GM
8522 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8523 * s/darwin.h: Remove file.
8524
c1529ded
GM
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
b429a4ee
GM
85282012-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
adff3182
JD
85342012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8535
8536 * nsterm.m (ns_do_open_file): New variable.
b9031d69 8537 (ns_term_init): Set ns_do_open_file to YES after run returns.
14ae4239
BT
8538 (openFile, openTempFile, openFileWithoutUI, openFiles):
8539 Open files only if ns_do_open_file.
adff3182 8540
c32af1e4
PE
85412012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8542
7393bcbb
PE
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
c32af1e4
PE
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
302fc036
EZ
85542012-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
88fb40b4
PE
85682012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8569
0aee6912
PE
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
88fb40b4
PE
8575 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8576 This is a bit clearer. Fix some commentary typos.
8577
0a763bd1
GM
85782012-07-30 Glenn Morris <rgm@gnu.org>
8579
32bac6d6
GM
8580 * s/netbsd.h: Let configure include signal.h if needed.
8581 Remove file, which is now empty.
8582
b65e7c46
GM
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.
0a763bd1 8587
169304bd
AS
85882012-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
6cd7a139
DA
85932012-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
d34d6ffc
GM
86022012-07-30 Glenn Morris <rgm@gnu.org>
8603
7b8a48e4 8604 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
227f5bd0 8605 does that unconditionally. Remove file, which is now empty.
7b8a48e4 8606
d34d6ffc
GM
8607 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8608 Remove empty files.
8609
03a660a6
PE
86102012-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.
88fb40b4 8633 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
03a660a6
PE
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
e499d0ee
DA
86422012-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
d5040d2d
PE
86502012-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
7f259ae6
JB
86572012-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
7e63e0c3
DA
86622012-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
ffd817eb
JD
86692012-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
417a7a0e
EZ
86742012-07-29 Eli Zaretskii <eliz@gnu.org>
8675
14ae4239 8676 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
417a7a0e
EZ
8677
8678 * w32heap.c (cache_system_info):
8679 * w32.c (sys_rename):
8680 * w32proc.c (find_child_console, sys_kill): All users changed.
8681
387d4d92
PE
86822012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8683
8684 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8685
55a6cca6
EZ
86862012-07-29 Eli Zaretskii <eliz@gnu.org>
8687
8688 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8689
dbcf001c
DA
86902012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8691
8692 Cleanup statistics calculation in Fgarbage_collect.
14ae4239
BT
8693 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8694 Fix zombies percentage calculation. Simplify elapsed time calculation.
dbcf001c 8695
e2688e4a
DA
86962012-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
b46a6a83
PE
87052012-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
e32a5799
PE
87132012-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
df81cd29
EZ
87252012-07-28 Eli Zaretskii <eliz@gnu.org>
8726
01bd1b0d
EZ
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
df81cd29
EZ
8745 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8746 --without-x. (Bug#11742)
8747
c20fdd9e
PE
87482012-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
14ae4239
BT
8752 2012-07-04 changes to pseudovector representation.
8753 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
c20fdd9e 8754
32770973 87552012-07-27 Michael Albinus <michael.albinus@gmx.de>
e518bc71
MA
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
3438fe21
EZ
87612012-07-27 Eli Zaretskii <eliz@gnu.org>
8762
bcfbc9de
EZ
8763 * alloc.c (listn): Fix the order the arguments are consed onto the
8764 list.
8765
3438fe21
EZ
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
eeaea515
DA
87712012-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
073c88c2
DA
87772012-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.
eeaea515 8782 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
073c88c2 8783
4706125e
PE
87842012-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
694b6c97
DA
88012012-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
6195f384
DA
88202012-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
5eceb8fb
PE
88372012-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.
562157c8
PE
8846 * emacs.c: Do not include <verify.h>; no longer needed.
8847 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
5eceb8fb
PE
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
d6749401
JB
88592012-07-26 Juanma Barranquero <lekktu@gmail.com>
8860
8861 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8862
1781b9e9
PE
88632012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8864
d89518db 8865 Simplify export of symbols to GDB (Bug#12036).
1781b9e9
PE
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
3628596a
DA
89002012-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
7abaf5cc
SM
89052012-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
71f88e00
PE
89102012-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
57ec3034
JD
89192012-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
8137e7b3
MR
89242012-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
04e9897c
DA
89292012-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
8a0484e1
EZ
89382012-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
fa691a83
DA
89442012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8945
8946 Simplify copy_overlay.
04e9897c 8947 * buffer.c (copy_overlay): Simplify. Use build_marker.
fa691a83
DA
8948 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8949
436bc8e0
EZ
89502012-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
d7a7fda3
DA
89582012-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
89692012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
372f8ffc
DA
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
9d7fa573
JD
89762012-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
0dd6d66d
DA
89862012-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
d36d71df
DA
89932012-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
fb9ea40f
PE
90012012-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
2d5c5f7d
EZ
90062012-07-21 Eli Zaretskii <eliz@gnu.org>
9007
07fb592e
EZ
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
37a9eac8 9013 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
14ae4239
BT
9014 info.dwItemData. Fixes crashes on 64-bit Windows.
9015 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
2d5c5f7d 9016
c4328746
JD
90172012-07-21 Jan Djärv <jan.h.d@swipnet.se>
9018
fc0c31f8 9019 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
4b17afa7 9020 (conversationIdentifier): Return value is NSInteger.
784051c4 9021 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
c4328746 9022
6e5d1c12
CY
90232012-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
9928463d
DA
90282012-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
f8643a6b
DA
90392012-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
dac616ff
DA
90502012-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
d7ea76b4
DA
90622012-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
765e61e3
DA
90732012-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
52b852c7
PE
90872012-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
5db81e33
SM
90962012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
9097
9098 * alloc.c (Fgarbage_collect): Tweak docstring.
9099
5b835e1d
DA
91002012-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
9cd47b72
DA
91132012-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
d17337e5
DA
91222012-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
60cfd278
AS
91362012-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
d06714cb
PE
91442012-07-18 Paul Eggert <eggert@cs.ucla.edu>
9145
83713154
PE
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
d06714cb
PE
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
464d5a5e
SM
91592012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9160
5fbc0409
SM
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
464d5a5e
SM
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
8dc2e44a
AS
91692012-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
169925ec
DA
91742012-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
5fbfb018
CY
91802012-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
3ab6e069
DA
91852012-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
6d02fe5b
PE
92052012-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
b7ffe040
DA
92102012-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
4dc7c8d5
SM
92182012-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
92302012-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
92382012-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
92432012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9244
9245 * gnutls.c (emacs_gnutls_handshake): Only retry if
9246 GNUTLS_E_INTERRUPTED.
9247
cce7fefc
DA
92482012-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
9ea10cc3
CY
92642012-07-17 Chong Yidong <cyd@gnu.org>
9265
9266 * editfns.c (Finsert_char): Doc fix.
9267
3900d5de
DA
92682012-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
7098646f
DA
92792012-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
22657b40
DA
92882012-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
ddfc8813
RK
92962012-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
7c26cf3c
PE
93022012-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
5d127af9
JD
93082012-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
6a0dd1d7
DA
93132012-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
7a6136fd
DA
93252012-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
ce811ad9
EZ
93312012-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
c9adfeaa
SF
93382012-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
fff62aa9
DA
93452012-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
9730daca
DA
93602012-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
2e2d2a13
LL
93712012-07-15 Leo Liu <sdl.web@gmail.com>
9372
9373 * fringe.c: Fix typo in comments.
9374
cd276f6e
LL
93752012-07-14 Leo Liu <sdl.web@gmail.com>
9376
9377 * fringe.c: Add a new bitmap exclamation-mark.
9378
5a1131d9
EZ
93792012-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
22e983b7
JB
93892012-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
5b3f250f
GM
93932012-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
33d63ff4
GM
93992012-07-13 Glenn Morris <rgm@gnu.org>
9400
5b633342
GM
9401 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9402
33d63ff4
GM
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
b55b9f85
JD
94062012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9407
0dc8cf50
JD
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
b55b9f85
JD
9480 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9481 memcpy (Bug#11907).
9482
ed9265fc 94832012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
2277de02
JD
9484
9485 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9486 and free it with DestroyExceptionInfo (Bug#11558).
9487
ef099b57
JB
94882012-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
ea814a5d
EZ
94942012-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
1a952767
PE
95002012-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
983188fd
GM
95052012-07-13 Glenn Morris <rgm@gnu.org>
9506
8d7c7eed 9507 * s/bsd-common.h, s/cygwin.h: Remove empty files.
32fb4bb6
GM
9508 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9509
983188fd
GM
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
d1e68667 95222012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
24ef80ae
PE
9523
9524 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
24ef80ae 9525
6de0e799
GM
95262012-07-13 Glenn Morris <rgm@gnu.org>
9527
739ae010
GM
9528 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9529
dbee5793
GM
9530 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9531
6de0e799
GM
9532 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9533 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9534
b82da769
GM
95352012-07-12 Glenn Morris <rgm@gnu.org>
9536
4fae5a7a 9537 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
b82da769
GM
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
5a979817
EZ
95452012-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
3e91a053
GM
95592012-07-12 Glenn Morris <rgm@gnu.org>
9560
ba9e4b84
GM
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
3e91a053
GM
9566 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9567
b300b1f4
PE
95682012-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
6e777848
GM
95762012-07-12 Glenn Morris <rgm@gnu.org>
9577
3f922c37
GM
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
0ab7b23a
GM
9583 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9584 Move PTY_OPEN to configure.
9585
6e777848
GM
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
4a7edc24
DA
95902012-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
308aab79
GM
95972012-07-12 Glenn Morris <rgm@gnu.org>
9598
42bd1719
GM
9599 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9600 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
7ccad002
GM
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
ea0bbd17 9609 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
42bd1719 9610 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
ea0bbd17
GM
9611
9612 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
51c3b9b4 9613
308aab79
GM
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
ee1cf5cf
GM
96172012-07-11 Glenn Morris <rgm@gnu.org>
9618
30fe9bf4
GM
9619 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9620 unused since 2011-01-17 change to systty.h.
9621
ee1cf5cf
GM
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
63e47e07
PE
96262012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9627
9628 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9629
c43fb4c3
GM
96302012-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
e8df9267
DA
96352012-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.
14ae4239
BT
9641 * lread.c (intern_1, intern_c_string_1, oblookup):
9642 Simplify Vobarray checking.
e8df9267
DA
9643 * font.c (font_intern_prop): Likewise. Adjust comment.
9644 * w32font.c (intern_font_name): Likewise.
9645
34348bd4
AS
96462012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9647
d96a1e0c
AS
9648 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9649
34348bd4
AS
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
c8add24e
GM
96602012-07-11 Glenn Morris <rgm@gnu.org>
9661
4b575b3c
GM
9662 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9663 since nothing has defined it on these platforms.
9664
09f4e3b0
GM
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
172bedef
GM
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
249685df
GM
9672 * s/gnu.h: Remove file, which is now empty.
9673
c8add24e
GM
9674 * s/gnu.h, s/gnu-linux.h:
9675 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9676
b41253a3
JW
96772012-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
d923b542
DA
96832012-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
5ebbef1d
PE
96902012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9691
bb352260
PE
9692 Assume mkdir, rmdir.
9693 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9694 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9695
57054ddd
PE
9696 Assume rename.
9697 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9698
b747d3f7
PE
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
5ebbef1d
PE
9704 Assume strerror.
9705 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9706
984e7f30
DA
97072012-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)
14ae4239
BT
9711 (font_open_by_name): Change to use length argument.
9712 Adjust users accordingly.
d923b542
DA
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.
984e7f30
DA
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
20e94fdd
GM
97212012-07-11 Glenn Morris <rgm@gnu.org>
9722
9d596af3
GM
9723 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9724 Move DONT_REOPEN_PTY to configure.
9725
20e94fdd
GM
9726 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9727 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9728
e99a530f
PE
97292012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9730
22ffb973
PE
9731 Remove "#define unix" that is no longer needed (Bug#11905).
9732 * s/aix4-2.h (unix): Remove; no longer needed.
9733
e9a9ae03
PE
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.
ed9265fc 9756 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
e9a9ae03
PE
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
ffacb126
PE
9761 * bytecode.c (targets): Suppress -Woverride-init warnings.
9762
e99a530f
PE
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
c59592b3
GM
97952012-07-10 Glenn Morris <rgm@gnu.org>
9796
9797 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9798 Clarify fallback case.
9799
7d7bbefd
DA
98002012-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,
d923b542 9805 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
7d7bbefd
DA
9806 where argument type is known to be a Lisp_Cons.
9807
3a4c8000
TT
98082012-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
2a0213a6
DA
98162012-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
cb1caeaf
DA
98302012-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
c293e30c
DA
98372012-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,
14ae4239
BT
9844 swap 1st and 2nd arguments to obey the common convention.
9845 Adjust users accordingly.
c293e30c
DA
9846 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9847
9e059e3f
GM
98482012-07-10 Glenn Morris <rgm@gnu.org>
9849
d02eb359
GM
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
882cf227
GM
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
af6e839f
GM
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
40289a12
GM
9860 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9861 O_RDONLY already includes it).
9862
9e059e3f
GM
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
7c4e8ec0
GM
98712012-07-09 Glenn Morris <rgm@gnu.org>
9872
d4f600ff
GM
9873 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9874 since the included bsd-common.h does so.
9875
cbb31951
GM
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
7c4e8ec0
GM
9883 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9884
26bccfae
PE
98852012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9886
a0bee46f
PE
9887 * process.c (wait_reading_process_output): 'waitchannels' was unset
9888 when read_kbd || !NILP (wait_for_cell); fix this.
9889
5994c183
PE
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
26bccfae
PE
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
a8290ec3
DA
99092012-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.
220cb2bd 9915 * dbusbind.c (syms_of_dbusbind): Likewise.
a8290ec3
DA
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
d01ba2f1
GM
99272012-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
f1f924b6
DA
99362012-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
ab531b66
PE
99452012-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
c4b3bc8a
EZ
99502012-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)
3434fe8a
EZ
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.
c4b3bc8a 9962
b676b881
AS
99632012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9964
f17c5273
AS
9965 * xdisp.c (display_line): Avoid warning about implicit declaration
9966 of FRAME_FONT.
9967
298819b9
AS
9968 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9969
b676b881
AS
9970 * lisp.h: Remove empty conditional.
9971
6045c4fd
PE
99722012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9973
b3350bf9
PE
9974 * lread.c (load_path_check): Now static.
9975
6045c4fd
PE
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
929e7845
GM
99932012-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
58dd0aa4
EZ
100042012-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
14ae4239
BT
10009 continuation glyphs even if on GUI frames.
10010 Adjust it->last_visible_x on GUI frames when the left or right fringes,
58dd0aa4
EZ
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
31571fd7
PE
100262012-07-07 Paul Eggert <eggert@cs.ucla.edu>
10027
5a16b9bc
PE
10028 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
10029
f3047c75
PE
10030 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
10031
31571fd7
PE
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
4516fbef
GM
100442012-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
07adc2c6
JB
100502012-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
fd573f31
PE
100572012-07-06 Paul Eggert <eggert@cs.ucla.edu>
10058
fee5959d
PE
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
fd573f31
PE
10066 * xfont.c (compare_font_names): Redo to omit the need for casts.
10067
ddadbc0e
AS
100682012-07-06 Andreas Schwab <schwab@linux-m68k.org>
10069
fca8d6b6
AS
10070 * xfns.c (Fx_change_window_property): Doc fix.
10071 * w32fns.c (Fx_change_window_property): Doc fix.
10072
ddadbc0e
AS
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
ed9265fc 100772012-07-06 Juanma Barranquero <lekktu@gmail.com>
f247498e
JB
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
216ee680
PE
100842012-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
bdd091e4
JD
100912012-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
9d44f8ce
DA
100962012-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.
090bd7cb
JB
10101 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
10102 Call byte_char_debug_check with correct arguments.
9d44f8ce 10103
90fc4786
DA
101042012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10105
10106 Compile marker debugging code only if ENABLE_CHECKING is defined.
090bd7cb
JB
10107 * marker.c (byte_char_debug_check, count_markers):
10108 Use only if ENABLE_CHECKING is defined.
90fc4786
DA
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
7b7ae965
DA
101132012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10114
4e57b342
DA
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
101242012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
10125
10126 Simplify list operations in unchain_overlay and unchain_marker.
7b7ae965 10127 * buffer.c (unchain_overlay): Simplify. Add comment.
4e57b342 10128 * marker.c (unchain_marker): Simplify. Fix comments.
7b7ae965 10129
657924ff
DA
101302012-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
041a49a6
DA
101432012-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
7dca65a4
PE
101512012-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
8eb876e2
GM
101612012-07-06 Glenn Morris <rgm@gnu.org>
10162
10163 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
10164
38182d90
PE
101652012-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
6dd5a677
EZ
101902012-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
6b312f0f
DA
101972012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10198
10199 * marker.c (set_marker_restricted_both): Simplify by using
10200 clip_to_bounds.
10201
f520ef9b
PE
102022012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10203
10204 * editfns.c (region_limit): Simplify by using clip_to_bounds.
10205
383b7c95
JD
102062012-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).
090bd7cb
JB
10215 (update_theme_scrollbar_width, xg_create_scroll_bar):
10216 Use gtk_scrollbar_new (Bug#11768).
383b7c95
JD
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.
5293d758 10220 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
383b7c95
JD
10221 with default display (Bug#11768).
10222
d6e7bf45
EZ
102232012-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
431391ec
JB
102302012-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
23f86fce
DA
102352012-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
0497dc44
PE
102912012-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
356e7178
PE
102972012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10298
4e71fd89
PE
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
f0941253
PE
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
065c9eb4
PE
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
356e7178
PE
10313 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
10314 that causes compilation to fail on pre-C99 compilers.
10315
ed9265fc 103162012-07-04 Juanma Barranquero <lekktu@gmail.com>
95f61aa2
JB
10317
10318 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
10319 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
10320
3884d954
DA
103212012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10322
d209e2fb 10323 * buffer.c (init_buffer_once): Fix initialization of
3884d954
DA
10324 headers for buffer_defaults and buffer_local_symbols.
10325 Reported by Juanma Barranquero <lekktu@gmail.com>.
10326
ee28be33
SM
103272012-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
c7f2cd7f
PE
103482012-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
8ce70ed2
DA
103532012-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
dea7f1e5
PE
103622012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10363
24a212eb
PE
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
dea7f1e5
PE
10375 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
10376
76046526
DA
103772012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10378
10379 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
10380
39adff0d
PE
103812012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10382
63807d47
PE
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
39adff0d
PE
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
dbeed9a6
PE
103952012-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
636334d6
AS
104022012-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
e2017fe2
GM
104072012-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
404dbd37
TT
104122012-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.
d209e2fb
JB
10428 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10429 No longer static.
404dbd37
TT
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
8e4fd1e1
GM
104502012-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
ca95b3eb
DA
104562012-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.
14ae4239 10460 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
1f9f395d 10461 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
ca95b3eb
DA
10462 accordingly.
10463
7555c33f
SM
104642012-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
d12e8f5a
DA
104702012-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
296094c3
DA
104772012-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
36429c89
DA
104832012-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
3b3e4cac
PE
105032012-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
cf5c0175
DA
105102012-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
faf611c7 10514 objects. Use CHECK_LIVE for all vector-like objects except buffers
14ae4239
BT
10515 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10516 Avoid redundant calls to mark_vectorlike for bool vectors.
cf5c0175 10517
ca26824c
GM
105182012-06-30 Glenn Morris <rgm@gnu.org>
10519
2e4c5312
GM
10520 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10521
ca26824c
GM
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
0d23c240
EZ
105272012-06-30 Eli Zaretskii <eliz@gnu.org>
10528
c9240d7a
EZ
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
0d23c240 10533 * sysselect.h [DOS_NT]: Don't include sys/select.h.
9ff8f76b 10534 (pselect) [!MS_DOS]: Redirect to sys_select.
0d23c240
EZ
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
af5a5a98
AS
105482012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10549
c5e4379c
AS
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
af5a5a98
AS
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
8d38f461
EZ
105592012-06-29 Eli Zaretskii <eliz@gnu.org>
10560
2e5a6631
EZ
10561 * xdisp.c (try_window_id): Undo last change.
10562
8d38f461
EZ
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
2af3565e
DA
105742012-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.
cf5c0175 10578 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
2af3565e
DA
10579 Adjust comment.
10580 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10581 to ptrdiff_t.
10582
c8d3a25c 105832012-06-29 Andreas Schwab <schwab@linux-m68k.org>
57570cd3 10584
c8d3a25c
GM
10585 * gnutls.c (emacs_gnutls_handshake):
10586 Add QUIT to make the loop interruptible.
57570cd3 10587
c8d3a25c 105882012-06-29 Glenn Morris <rgm@gnu.org>
d01fd55f 10589
c8d3a25c
GM
10590 * charset.c (init_charset): Make lack of etc/charsets fatal.
10591
3e984ee8
DA
105922012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10593
10594 * editfns.c (region_limit): Fix type mismatch.
10595
ef884f23
DA
105962012-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
7d7e0027
SM
106032012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10604
10605 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10606
aa754e6a
PE
106072012-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
80b00b08
DA
106142012-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
62b2bcf6
JB
106252012-06-28 Juanma Barranquero <lekktu@gmail.com>
10626
10627 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10628
45942c7d
DA
106292012-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
e509cfa6
DA
106382012-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
a54e2c05
DA
106552012-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
1ec4b7b2
SM
106852012-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
2014308a
DA
106902012-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
246155eb
DA
106962012-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
43184b7b
DA
107022012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10703
d209e2fb 10704 * alloc.c (allocate_string): Fix last change.
43184b7b 10705
3fe6dd74
DA
107062012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10707
d209e2fb 10708 * alloc.c (allocate_string): Remove two redundant calls
3fe6dd74
DA
10709 to memset, add explicit initialization where appropriate.
10710
1ba6038a
GM
107112012-06-27 Glenn Morris <rgm@gnu.org>
10712
10713 * lisp.mk (lisp): Remove paths.elc.
10714
c89926a5
CY
107152012-06-27 Chong Yidong <cyd@gnu.org>
10716
10717 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10718
ed6b3510
JW
107192012-06-26 John Wiegley <johnw@newartisans.com>
10720
1ec4b7b2 10721 * unexmacosx.c (copy_data_segment): Add two section names used
157e99e4
JW
10722 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10723
ed6b3510
JW
10724 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10725 when building with Clang.
10726
8edd4a2b
SM
107272012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10728
10729 * eval.c (Fapply): Allow calling it with a single argument.
10730
f6f62d1b
EZ
107312012-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
62efea5e
DA
107372012-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.
8edd4a2b 10742 (allocate_terminal): Change to use offsetof.
62efea5e
DA
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
42997f4d
DA
107502012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10751
10752 * term.c (delete_tty): Remove redundant call to memset.
10753
1130ecfc
DA
107542012-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
cf38a720
PE
107642012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10765
99027bdd
PE
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
cf38a720
PE
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
3511c784
DA
107912012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10792
0a08eb21 10793 * dispextern.h (xstrcasecmp): Define to library function
3511c784
DA
10794 strcasecmp if available.
10795 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10796
fb7da12e
AS
107972012-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
afa2ffd8
DA
108052012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10806
10807 * xfns.c (xic_create_fontsetname): Remove redundant calls
10808 to memset.
10809
b3b4476b
PE
108102012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10811
4495ff38
PE
10812 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10813 sprintf already null-terminates its output.
10814
b3b4476b
PE
10815 * xfns.c (x_window): Remove redundant cast.
10816
b00876c9
DA
108172012-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
d188e26b
PE
108222012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10823
885d1d74
PE
10824 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10825 instead of truncating it to 63 (admittedly a generous limit).
10826
d188e26b
PE
10827 * process.c: Fix spelling and caps in comments.
10828
e2f560b1
DN
108292012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10830
e86db54b 10831 * emacs.c (setpgrp): Remove definition, unused.
e2f560b1
DN
10832 * sysdep.c (setpgrp): Remove definition, not used in this file.
10833
7583a3a1
JB
108342012-06-24 Juanma Barranquero <lekktu@gmail.com>
10835
10836 * makefile.w32-in: Update dependencies.
10837
696056c2
EZ
108382012-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
845ca893
PE
108482012-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
f1dd8073
PE
108802012-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
b82c1755
EZ
108922012-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
ca300656
JB
108992012-06-23 Juanma Barranquero <lekktu@gmail.com>
10900
049ec95b
JB
10901 * makefile.w32-in: Update dependencies.
10902
ca300656
JB
10903 * w32.c (ltime): Add return type and declare static.
10904 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10905
db7b8d06
PE
109062012-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
0bd8297f
EZ
109152012-06-23 Eli Zaretskii <eliz@gnu.org>
10916
96512555
EZ
10917 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10918 last argument of make_unibyte_string.
10919
0bd8297f
EZ
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
63def6b6
CY
109262012-06-23 Chong Yidong <cyd@gnu.org>
10927
10928 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10929
e8a02204
EZ
109302012-06-23 Eli Zaretskii <eliz@gnu.org>
10931
388cdec0
EZ
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
e8a02204
EZ
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
d054f3fb
PE
109452012-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
d35af63c
PE
109552012-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.
927c7216 10989 (duration_to_sec_usec): Remove; no longer needed.
d35af63c
PE
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
b6a92dfe
CY
111252012-06-22 Chong Yidong <cyd@gnu.org>
11126
11127 * xdisp.c (x_consider_frame_title): Revert last change.
11128
d251c37c
EZ
111292012-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
f10deafb
PE
111362012-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
ec6de1e2
SM
111412012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
11142
11143 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
11144
28be1ada
DA
111452012-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
c6bf3022
CY
111532012-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
defd4196
PE
111692012-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
8b5257e1 11174 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
defd4196
PE
11175 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
11176 (METER_1, METER_2): Simplify.
11177
1053a871
SM
111782012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11179
11180 * data.c (Fdefalias): Return `symbol' (bug#11686).
11181
b7e8d081
MR
111822012-06-18 Martin Rudalics <rudalics@gmx.at>
11183
11184 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
1053a871
SM
11185 gets killed during executing of this function (Bug#11665).
11186 Try to always return Qt when the buffer has been actually killed.
b7e8d081
MR
11187 (Vkill_buffer_query_functions): In doc-string say that functions
11188 run by this hook should not change the current buffer.
11189
7ea2b339
PE
111902012-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
96a313a1
CY
111982012-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
20ca2e94
TN
112032012-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
9a900ca9
PE
112102012-06-17 Paul Eggert <eggert@cs.ucla.edu>
11211
310fbfa8
PE
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
27bb1ca4
PE
11218 * coding.c (produce_chars): Use ptrdiff_t, not int.
11219
9a900ca9
PE
11220 * xterm.c (x_draw_underwave): Check for integer overflow.
11221 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
11222
41b7f8bc 112232012-06-17 Jan Djärv <jan.h.d@swipnet.se>
50a93863
JD
11224
11225 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
11226 referenced (Bug#11583).
11227
9b0e3eba
AA
112282012-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)
1053a871
SM
11240 (Finternal_set_lisp_face_attribute, realize_x_face):
11241 Handle wave-style underline face attributes.
9b0e3eba
AA
11242 * xterm.c (x_draw_underwave): New function.
11243 (x_draw_glyph_string): Use it.
11244
0fb52f11
JB
112452012-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
e5560ff7
AS
112532012-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
2f07e6af
EZ
113122012-06-16 Eli Zaretskii <eliz@gnu.org>
11313
1053a871
SM
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
2f07e6af 11316 cursor positioning clues, put the cursor on the first glyph of the
1097afe4
EZ
11317 row.
11318 (handle_face_prop): Use chunk-relative overlay string index when
11319 indexing into it->string_overlays array. (Bug#11653)
946fdb73
EZ
11320 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
11321 the rightmost. (Bug#11720)
2f07e6af 11322
29b83cec
AS
113232012-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
4c5501e9
EZ
113292012-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
2b570124
PE
113352012-06-14 Paul Eggert <eggert@cs.ucla.edu>
11336
e93864f9
PE
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
2b570124
PE
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.
1053a871
SM
11348 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
11349 Simplify now that USE_LSB_TAG is always defined.
2b570124
PE
11350 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
11351 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
11352
81755f69
JB
113532012-06-13 Juanma Barranquero <lekktu@gmail.com>
11354
11355 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
11356
16192a57
GM
113572012-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
646b5f55
AS
113622012-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.
1053a871
SM
11367 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
11368 Use them.
11369 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
646b5f55 11370 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
1053a871 11371 * alloc.c (widen_to_Lisp_Object): Remove.
646b5f55
AS
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
1d3823c9
GM
113852012-06-13 Glenn Morris <rgm@gnu.org>
11386
c62ff706
GM
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
1d3823c9
GM
11390 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11391
bfe3e0a2
PE
113922012-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
45fa9c0f
GM
114162012-06-12 Glenn Morris <rgm@gnu.org>
11417
b4492cba
GM
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.
0d369729 11421
45fa9c0f
GM
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
0e25d334
CY
114282012-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
43682bb6
PE
114342012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11435
11436 * image.c (imagemagick_load_image): Remove unused label.
11437
a9be7d2b
GM
114382012-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
3017f87f
SM
114452012-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
1b9b4cf4
CY
114512012-06-11 Chong Yidong <cyd@gnu.org>
11452
11453 * image.c (imagemagick_load_image): Implement transparency.
11454
95988fcf
AS
114552012-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
cd4eb164
CY
114602012-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
ff88beb8
MA
114802012-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
44286096
CY
114872012-06-09 Chong Yidong <cyd@gnu.org>
11488
1682701f
CY
11489 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11490
44286096
CY
11491 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11492 case (Bug#9752).
11493
d86feb17
PE
114942012-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
d5c20fe8
EZ
115012012-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
513749ee
SM
115082012-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
d4a8f5c1
JB
115142012-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
8bbbc977
EZ
115192012-06-08 Eli Zaretskii <eliz@gnu.org>
11520
11521 * alloc.c (allocate_vectorlike): Fix last change.
11522
f3372c87
DA
115232012-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'
fc0c31f8 11529 to denote vector blocks. Adjust users (live_vector_p,
f3372c87
DA
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.
513749ee 11539 (all_vectors): Rename to `large_vectors'.
f3372c87
DA
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
fc0c31f8 11543 0 items. Allocate new vector from block if vector size is less than
f3372c87
DA
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
4f18a4ed
SM
115482012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11549
11550 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11551
86f158bc
PE
115522012-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
c5cfcbe0
CY
115602012-06-06 Chong Yidong <cyd@gnu.org>
11561
11562 * buffer.c (word_wrap): Doc fix.
11563
c05cf390
PE
115642012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11565
11566 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11567
0c3461de
GM
115682012-06-03 Glenn Morris <rgm@gnu.org>
11569
11570 * xdisp.c (tool-bar-style): Doc fix.
11571
c71232db
UM
115722012-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
383f7350
CY
115802012-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
5f2c76c6
CY
115852012-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
773d47f6
PE
115972012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11598
11599 * sysdep.c (system_process_attributes): Improve comment.
11600
f2d6a3df
SM
116012012-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
63810350
PE
116072012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11608
7bd5c1f4
PE
11609 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11610
63810350
PE
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
a2821611
AS
116152012-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
5fceba1d
PE
116202012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11621
11622 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11623
c98ff5dd
DA
116242012-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',
1f9f395d 11630 change its type from Lisp_Object to bitfield.
c98ff5dd
DA
11631 Change type of 'force_start', 'optional_new_start',
11632 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
fc0c31f8 11633 fields from Lisp_Object to bitfield. Adjust users accordingly.
c98ff5dd 11634
ca34e0be
PE
116352012-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
efc00ab1 116432012-05-31 Eli Zaretskii <eliz@gnu.org>
d5fd2c54
EZ
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
efc00ab1 116502012-05-31 Chong Yidong <cyd@gnu.org>
353c87f6
CY
11651
11652 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11653
11654 * doc.c (Fsubstitute_command_keys): Doc fix.
11655
efc00ab1 116562012-05-31 Eli Zaretskii <eliz@gnu.org>
a02ae4e5
EZ
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
efc00ab1 116632012-05-31 Eli Zaretskii <eliz@gnu.org>
291d430f
EZ
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
ba93a187
PE
116742012-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
9e4bf381
PE
116852012-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
32d72c2f
GM
117002012-05-31 Glenn Morris <rgm@gnu.org>
11701
11702 * image.c (Fimagemagick_types): Doc fix.
11703
baac5bc7
JM
117042012-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
72cb32cf
PE
117092012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11710
11711 * alloc.c, lisp.h (make_pure_vector): Now static.
11712
61b108cc
SM
117132012-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
471fe23d
TN
117232012-05-29 Troels Nielsen <bn.troels@gmail.com>
11724
934f3f58 11725 Do not create empty overlays with the evaporate property (Bug#9642).
471fe23d
TN
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
85d0efd1
EZ
117322012-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
61b108cc
SM
11736 could be different from the original one.
11737 Call my_bring_window_to_top instead of my_set_foreground_window.
85d0efd1
EZ
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
da92a98c
PE
117462012-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
74d1f848
JB
117522012-05-28 Juanma Barranquero <lekktu@gmail.com>
11753
11754 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11755 Update dependencies.
11756
9e1a06fc
EZ
117572012-05-27 Eli Zaretskii <eliz@gnu.org>
11758
11759 * bidi.c (bidi_mirror_char): Fix last change.
11760
f3dd7312
AS
117612012-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
81899c91
PE
117662012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11767
57b81a9f
PE
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
81899c91
PE
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
33017faf 117772012-05-27 Ken Brown <kbrown@cornell.edu>
2f9b9adb
KB
11778
11779 * callproc.c (Fcall_process): Restore a line that was accidentally
11780 commented out in the 2011-02-13 change (bug#11547).
11781
33017faf 117822012-05-27 Eli Zaretskii <eliz@gnu.org>
52c55cc7
EZ
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
23415acf
EZ
11797 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11798 Update value to 24.
11799
44e27368
EZ
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
c1892f11
PE
118082012-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
eb7afdad
GM
118212012-05-26 Glenn Morris <rgm@gnu.org>
11822
11823 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11824
f12fdf02
EZ
118252012-05-26 Eli Zaretskii <eliz@gnu.org>
11826
53a63be6 11827 Extend mouse support on W32 text-mode console.
61b108cc
SM
11828 * xdisp.c (draw_row_with_mouse_face):
11829 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
eb3f6f01 11830
eb3f6f01 11831 * w32console.c: Include window.h.
61b108cc
SM
11832 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11833 New functions.
eb3f6f01
EZ
11834 (initialize_w32_display): Initialize mouse-highlight data.
11835
53a63be6
EZ
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
4cfd81f6
PE
118432012-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
4446092a
EZ
118482012-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
42b2a986 118532012-05-25 Paul Eggert <eggert@cs.ucla.edu>
3164aeac 11854
42b2a986 11855 Fix integer width and related bugs (Bug#9874).
eb106a49 11856 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
d311d28c
PE
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.
977b0e45
PE
11890 (validate_region): Omit unnecessary test for b <= e,
11891 since that's guaranteed by the previous test.
d311d28c
PE
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.
02481186 11899 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
d311d28c
PE
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.
39b5db3b
PE
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.
d311d28c
PE
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
45c2afd6 11926 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
d311d28c
PE
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.
c801946a
PE
11934 (ccl_driver, Fregister_code_conversion_map):
11935 Check that Vcode_version_map_vector is a vector.
d311d28c
PE
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.
a14e1568 11956 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
d311d28c
PE
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):
3c7649c1 11964 Don't assume fixnum fits in int.
d311d28c
PE
11965 (load_charset_map_from_vector, Fmap_charset_chars):
11966 Remove now-unnecessary CHECK_NATNUMs.
11967 (Fdefine_charset_internal): Check ranges here, more carefully.
3c7649c1
PE
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.
60ad3eab
PE
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.
d311d28c
PE
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.
c96e5d6a 11993 (Fforward_char, Fbackward_char): Use it.
d311d28c
PE
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)
8f50130c 12000 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
d311d28c
PE
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)
8f50130c
PE
12020 (Fdefine_coding_system_internal)
12021 (coding_set_source, coding_set_destination):
d311d28c
PE
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)
5895d7b9 12027 (Fread_coding_system, Fdetect_coding_region)
2c6a9faa
PE
12028 (Funencodable_char_position, Fcheck_coding_systems_region)
12029 (get_translation, handle_composition_annotation, consume_chars):
d311d28c 12030 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
977b0e45 12031 (consume_chars): Rewrite to not calculate an address outside buffer.
d311d28c 12032 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
7b09a37a 12033 Don't access memory outside of the args array.
d311d28c 12034 (Fdefine_coding_system_internal): Check for charset-id overflow.
47664caa
PE
12035 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
12036 result of ENCODE_CHAR.
d311d28c
PE
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.
42b2a986 12065 (extract_signed, extract_unsigned): New functions.
243e0530
PE
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.
d311d28c
PE
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.
54e1617f 12090 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
d311d28c
PE
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.
3f4eabd1
PE
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.
c8d5c857
PE
12129 (Fformat_time_string): Remove now-unnecessary check.
12130 lisp_time_argument checks for out-of-range usec now.
243e0530 12131 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
d311d28c
PE
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.
856bbc81 12150 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
d311d28c
PE
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.
125b3835 12164 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
5895d7b9
PE
12165 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
12166 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
d311d28c
PE
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.
d311d28c
PE
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.
5895d7b9 12243 (lookup_image): Check that fixnums are in range for system types.
d311d28c
PE
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.
d311d28c
PE
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.
6efdadfd 12357 Fix off-by-one error that can read outside a buffer.
1ab7b8ac
PE
12358 (read_filtered_event): Use duration_to_sec_usec
12359 to do proper overflow checking on durations.
d311d28c
PE
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.
61b108cc 12371 * menu.c (ensure_menu_items): Rename from grow_menu_items.
d311d28c
PE
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.
17fdb222 12403 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
d311d28c
PE
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.
d311d28c 12415 (printchar, strout): Use xpalloc to catch size calculation overflow.
0fd11aa5 12416 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
d311d28c
PE
12417 (print_error_message): Use SAFE_ALLOCA, not alloca.
12418 (print_object): Use int, not EMACS_INT, where int is wide enough.
a8b7caa3
PE
12419 (print_depth, new_backquote_output, print_number_index):
12420 Use ptrdiff_t, not int, where int might not be wide enough.
d311d28c
PE
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)
d44287d4 12424 (sigchld_handler):
d311d28c 12425 Check that fixnums are in proper range for system types.
d44287d4 12426 (Fsignal_process): Simplify by avoiding a goto.
d83cf4cc
PE
12427 Check for process-ids out of pid_t range rather than relying on
12428 undefined behavior.
e4d81efc 12429 (process_tick, update_tick): Use EMACS_INT, not int.
d311d28c
PE
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.
dde14581
PE
12439 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12440 Don't assume pid_t fits in int.
02481186
PE
12441 * process.h (struct Lisp_Process): Members tick and update_tick
12442 are now of type EMACS_INT, not int.
b62b53e8
PE
12443 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12444 configured --with-wide-int.
d311d28c
PE
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.
eacd378d 12468 * syntax.c (struct lisp_parse_state, find_start_modiff)
d311d28c
PE
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.
e4ecdc9c
PE
12491 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12492 MOST_POSITIVE_FIXNUM.
d311d28c
PE
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.
225a2cff
PE
12498 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12499 and double all fit in int.
d311d28c
PE
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.
5895d7b9
PE
12514 (copy_text_properties):
12515 Check for integer overflow in index calculation.
d311d28c
PE
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)
5895d7b9 12533 (Fscroll_other_window, Frecenter):
d311d28c
PE
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)
5895d7b9
PE
12544 (face_before_or_after_it_pos, handle_invisible_prop)
12545 (handle_display_prop, handle_display_spec, handle_single_display_spec)
d311d28c
PE
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)
5895d7b9
PE
12584 (redisplay_window, dump_glyph_row, display_mode_line)
12585 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
43ad2e9a 12586 (handle_display_spec, display_prop_string_p):
d311d28c
PE
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
c6574eb5
GM
126552012-05-25 Glenn Morris <rgm@gnu.org>
12656
12657 * lisp.mk (lisp): Update for more files being compiled now.
12658
e8d32c7e
SM
126592012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12660
48def666
SM
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
e8d32c7e
SM
12668 * fileio.c, character.h: Minor style tweaks.
12669
4b2addb7
DA
126702012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12671
12672 * window.h (clip_changed): Remove useless declaration.
12673
584461b2
JB
126742012-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
34374650
PE
126792012-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
261cb4bb
PE
127112012-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
ff23cd9f
KB
127262012-05-21 Ken Brown <kbrown@cornell.edu>
12727
12728 * xgselect.c (xg_select): Fix first argument in call to 'select'
12729 (bug#11508).
12730
1b170bc6
KB
127312012-05-20 Ken Brown <kbrown@cornell.edu>
12732
12733 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
bd7239f5 12734 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
1b170bc6 12735
b2f4d39f
KB
127362012-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
003fdae2
PE
127442012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12745
9232a6d9
PE
12746 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12747
003fdae2
PE
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
784b56e2
EZ
127512012-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.
090bd7cb 12756 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
784b56e2
EZ
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
a0a79cde
JL
127622012-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
b0572523
PE
127692012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12770
12771 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12772
9660f5fc
SM
127732012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12774
12775 * lread.c (init_obarray): Declare Qt and Qnil as special.
12776
4374de83
GM
127772012-05-14 Glenn Morris <rgm@gnu.org>
12778
12779 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
985584ae 12780 Put "libexec" before "bin", for the sake of init_callproc_1.
4374de83 12781
dc44c39a
PE
127822012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12783
078c97cb
PE
12784 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12785
dc44c39a
PE
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
e18afed7 127922012-05-14 Eli Zaretskii <eliz@gnu.org>
ac268e67
EZ
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)
c8fb9dc6
EZ
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)
ac268e67 12811
e18afed7 128122012-05-14 Eli Zaretskii <eliz@gnu.org>
82f9b393
EZ
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
61b108cc
SM
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,
82f9b393
EZ
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
e18afed7 128222012-05-14 Paul Eggert <eggert@cs.ucla.edu>
297834cd
PE
12823
12824 * unexaix.c (make_hdr): Fix typo in prototype.
12825 This bug broke the build on AIX. Problem reported by Gilles Pion.
12826
9d0a235a
MA
128272012-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
9e6b06ed
GM
128322012-05-12 Glenn Morris <rgm@gnu.org>
12833
12834 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12835
c1a1d7a3
EZ
128362012-05-12 Eli Zaretskii <eliz@gnu.org>
12837
12838 * lisp.mk (lisp): Add newcomment.elc.
12839
3fe7cdc8
GM
128402012-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
53f7d2c0
PE
128452012-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
75aafb17
JB
128522012-05-10 Juanma Barranquero <lekktu@gmail.com>
12853
12854 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12855 Update dependencies.
12856
12959e8e
PE
128572012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12858
97107e2e
PE
12859 * xgselect.c (xg_select): Put maxfds+1 into a var.
12860 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12861
12959e8e
PE
12862 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12863
836d29b3
DA
128642012-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
5cb67954
MA
128692012-05-09 Michael Albinus <michael.albinus@gmx.de>
12870
12871 * dbusbind.c (xd_registered_buses): New internal Lisp object.
cccaebd2 12872 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
5cb67954
MA
12873 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12874 Initialize xd_registered_buses.
12875
3478ec45
PE
128762012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12877
b263a6b0
PE
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
3478ec45
PE
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
666b903b 129002012-05-09 Eli Zaretskii <eliz@gnu.org>
0d887c7d
EZ
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
b120cc17
JC
129082012-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
2fed2689 12914 contents of *Minibuf-0*) if there's no message displayed in its stead.
b120cc17 12915
9a4b36f8
MA
129162012-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
e5f9458f
CY
129212012-05-06 Chong Yidong <cyd@gnu.org>
12922
12923 * lisp.mk (lisp): Update.
12924
eceeb5fc 129252012-05-05 Jim Meyering <meyering@redhat.com>
bf98199c
JM
12926
12927 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12928
71873e2b
SM
129292012-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
ab0fa4e4
PE
129392012-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
7ed806a7
PE
129472012-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 **,
71873e2b
SM
12960 so that the struct tm is saved in the critical section.
12961 All callers changed. Simplify allocation of initial buffer, partly
7ed806a7
PE
12962 motivated by the fact that memory allocation needs to be outside
12963 the critical section.
12964
0c16dfed
DA
129652012-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
3f83ace8
JM
129732012-05-02 Jim Meyering <jim@meyering.net>
12974
12975 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12976
c7b8541e
JM
12977 * xfns.c (x_window): Use xstrdup (Bug#11375).
12978
90207a15 129792012-05-02 Eli Zaretskii <eliz@gnu.org>
2fa85638
EZ
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
b593d6a9
AH
129862012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12987
12988 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12989 Move to simple.el.
12990
4737362e
GM
129912012-05-01 Glenn Morris <rgm@gnu.org>
12992
99cf43f9
GM
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
9311dcff
GM
12998 * dispnew.c: Remove HAVE_LIBNCURSES test;
12999 it is always true on relevant platforms.
13000
4d5c6349
GM
13001 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
13002 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
13003
4737362e
GM
13004 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
13005
74dd3a6b
AS
130062012-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
13c379ee
PE
130122012-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
a8e7d6d7 130212012-04-27 Chong Yidong <cyd@gnu.org>
9be2fd9b
CY
13022
13023 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
13024
a8e7d6d7 130252012-04-27 Eli Zaretskii <eliz@gnu.org>
f0ee99a0
EZ
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
a8e7d6d7 130342012-04-27 Chong Yidong <cyd@gnu.org>
9ec7751f
CY
13035
13036 * keymap.c (where_is_internal): Doc fix (Bug#10872).
13037
a8e7d6d7 130382012-04-27 Glenn Morris <rgm@gnu.org>
24c51a09
GM
13039
13040 * fileio.c (Fcopy_file, Fset_file_selinux_context):
13041 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
13042
a8e7d6d7 130432012-04-27 Eli Zaretskii <eliz@gnu.org>
73055685 13044
b593d6a9
AH
13045 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
13046 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
73055685 13047
1c6900d9
EZ
130482012-04-26 Eli Zaretskii <eliz@gnu.org>
13049
4c3fa1d9
EZ
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
1c6900d9
EZ
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
42bf8205
AS
130592012-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
b1bac16e
MR
130642012-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
d69621cc
JB
130702012-04-24 Juanma Barranquero <lekktu@gmail.com>
13071
13072 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
13073 manipulation of :loaded-from data.
13074
02fd101b
JB
130752012-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
888bec30
PE
130802012-04-23 Paul Eggert <eggert@cs.ucla.edu>
13081
89a438bd
PE
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
1068fe4d
PE
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
888bec30
PE
13105 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
13106 Problem reported by Juanma Barranquero for Windows -Wunused-function.
13107
de85e130
PE
131082012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13109
d0baac98 13110 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
bd7239f5 13111 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
d0baac98
PE
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
de85e130
PE
13137 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
13138
dcbf5805
MA
131392012-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.
b593d6a9
AH
13162 (xd_get_connection_address): Rename from xd_initialize.
13163 Return cached address.
dcbf5805
MA
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.
9a4b36f8 13168 Return number of refcounts.
dcbf5805
MA
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.
b593d6a9
AH
13181 (Vdbus_registered_buses, Vdbus_registered_objects_table):
13182 Adapt docstring.
dcbf5805 13183
52828e02
PE
131842012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13185
da05bc4c
PE
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
52828e02
PE
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
f01769f9
LL
131992012-04-22 Leo Liu <sdl.web@gmail.com>
13200
13201 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
13202
5790543d
PE
132032012-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
b91b7e4d
EW
132102012-04-21 Eduard Wiebe <usenet@pusto.de>
13211
b593d6a9
AH
13212 * sysdep.c (list_system_processes, system_process_attributes):
13213 Add implementation for FreeBSD (Bug#5243).
b91b7e4d 13214
6114eb15
AS
132152012-04-21 Andreas Schwab <schwab@linux-m68k.org>
13216
13217 * lisp.mk (lisp): Update.
13218
2f38dff7
PE
132192012-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
4ae29f89
SM
132242012-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
f30d612a
CY
132312012-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
c07a4c0b 132362012-04-20 Glenn Morris <rgm@gnu.org>
016a35df
GM
13237
13238 * process.c (Fset_process_inherit_coding_system_flag)
13239 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
4373fd43 13240 (Fmake_network_process, Fmake_serial_process): Doc fix.
016a35df 13241
c07a4c0b 132422012-04-20 Eli Zaretskii <eliz@gnu.org>
20a68157
EZ
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
4ae29f89
SM
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
20a68157
EZ
13251 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
13252
c07a4c0b 132532012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 13254
4ae29f89
SM
13255 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
13256 (bug#11238).
ad3a2b41 13257
c07a4c0b 132582012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
6c94c34f 132592012-04-18 Paul Eggert <eggert@cs.ucla.edu>
ae6e112d
PE
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
aba027e8
PE
132722012-04-17 Paul Eggert <eggert@cs.ucla.edu>
13273
13274 * dired.c (Fsystem_groups): Remove unused local.
13275
e5a36063
GM
132762012-04-17 Glenn Morris <rgm@gnu.org>
13277
13278 * dired.c (Fsystem_users): Doc fix.
13279
316411f0
DA
132802012-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
9426aba4
PE
132852012-04-16 Paul Eggert <eggert@cs.ucla.edu>
13286
b62a57be
PE
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.
4b5afbb0 13295 Remove one incorrect comment and fix another.
b62a57be 13296
3539f31f
PE
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
a041960a
PE
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
9426aba4
PE
13312 * alloc.c (which_symbols): Fix alignment issue / type clash.
13313
d55c12ed
AS
133142012-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.
4ae29f89 13325 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
d55c12ed 13326
b948ce8b
PE
133272012-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
35dc09a1 133392012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
ad3a2b41 13340
35dc09a1
GM
13341 * lread.c (lisp_file_lexically_bound_p):
13342 Fix hang at ";-*-\n" (bug#11238).
ad3a2b41 13343
35dc09a1
GM
133442012-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
133492012-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
bcd86815
KB
133542012-04-13 Ken Brown <kbrown@cornell.edu>
13355
13356 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
13357
c25df26e
RT
133582012-04-13 Reuben Thomas <rrt@sc3d.org>
13359
13360 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
13361
0fc59f1e
DC
133622012-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
de8c03dc
SM
133682012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13369
13370 * window.c (save_window_save): Obey window-point-insertion-type.
13371
2f097256
GM
133722012-04-11 Glenn Morris <rgm@gnu.org>
13373
13374 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
13375
453b951e
SM
133762012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13377
13378 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
13379
75f1671a 133802012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
6bbef4e5
JC
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
2a8ce227
JB
133862012-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
935396c0
GM
133912012-04-09 Glenn Morris <rgm@gnu.org>
13392
05920a43
GM
13393 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13394 not just in the obarray, before snarfing them. (Bug#11036)
13395
935396c0
GM
13396 * Makefile.in ($(leimdir)/leim-list.el):
13397 Pass EMACS rather than BUILT_EMACS.
13398
a18ecafa
TZ
133992012-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
6bbef4e5
JC
13405 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13406 Add convenience `GNUTLS_LOG2i' macro.
a18ecafa
TZ
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
b4d3bc10
CY
134142012-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
70f4d973
EZ
134232012-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
cb3c2e3e
PE
134312012-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
fd06db5d
GM
134382012-04-09 Glenn Morris <rgm@gnu.org>
13439
50fe702a
GM
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
fd06db5d
GM
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
55c131ee
AS
134502012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13451
13452 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13453 proper alignment.
13454
9209588f
JB
134552012-04-07 Juanma Barranquero <lekktu@gmail.com>
13456
13457 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13458 Remove unused local variable.
13459
e3fb2efb
PE
134602012-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
b5385551
PE
134692012-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
9078ead6
EZ
134742012-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).
6bbef4e5
JC
13492 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13493 Call init_libxml2_functions before calling libxml2 functions.
9078ead6
EZ
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
3811fdf3
EZ
135022012-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
2f8e16b2
EZ
135082012-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
3d439cd1
CY
135172012-04-04 Chong Yidong <cyd@gnu.org>
13518
13519 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13520
8bc53d00
EZ
135212012-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
3b0512a3
AS
135262012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13527
13528 * w32menu.c (is_simple_dialog): Properly check lisp types.
13529 (Bug#11141)
13530
8427ddd2
EZ
135312012-03-31 Eli Zaretskii <eliz@gnu.org>
13532
979022ef
EZ
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
a6b1c7cc
EZ
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
8427ddd2
EZ
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.
697ba24b
EZ
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)
8427ddd2 13550
65a0a738
EZ
135512012-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
581355cc
EZ
135602012-03-29 Eli Zaretskii <eliz@gnu.org>
13561
13562 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13563
e8fc049f
SM
135642012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13565
13566 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13567
4fb9a543
GM
135682012-03-27 Glenn Morris <rgm@gnu.org>
13569
13570 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13571 Doc fixes.
13572
679910f1
KH
135732012-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
90d49b7f
CY
135782012-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
f514f6f0
FP
135842012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13585
e8fc049f 13586 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
f514f6f0 13587
bf43fa51
KH
135882012-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
8a0c01dd
EZ
135932012-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
7d1c3a76
AS
135982012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13599
8ed79523
AS
13600 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13601 characters.
13602
7d1c3a76
AS
13603 * xterm.c (XTread_socket): Only modify handling_signal if
13604 !SYNC_INPUT. (Bug#11080)
13605
e99a9b8b
EZ
136062012-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
5063c0e1
TN
136142012-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
9f851fbd
CY
136192012-03-22 Chong Yidong <cyd@gnu.org>
13620
13621 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13622
5063c0e1 13623 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
9f851fbd
CY
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
fb5b8aca
CY
136282012-03-21 Chong Yidong <cyd@gnu.org>
13629
13630 * xfaces.c (Vface_remapping_alist): Doc fix.
13631
62356a1b
EZ
136322012-03-20 Eli Zaretskii <eliz@gnu.org>
13633
13634 * w32proc.c (Fw32_set_console_codepage)
5063c0e1
TN
13635 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13636 Doc fixes.
62356a1b 13637
025de85b
CY
136382012-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
4827f94e
KH
136432012-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
e50a24a2
EZ
136482012-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
9af5ed87
PE
136562012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13657
13658 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13659
d1f55f16
CY
136602012-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
66c5eebd
CY
136692012-03-11 Chong Yidong <cyd@gnu.org>
13670
413df973
CY
13671 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13672
66c5eebd
CY
13673 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13674
1de11f56
CY
136752012-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
cae07000
SM
136802012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13681
13682 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13683
89c94350
JD
136842012-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
999dd333
GM
136902012-03-03 Glenn Morris <rgm@gnu.org>
13691
01a6dcc8 13692 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
999dd333 13693
de0100f2
EZ
136942012-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)
b8456c5c
EZ
13698 (redisplay_window, next_element_from_string): Fix typos in
13699 comments.
3e441275
EZ
13700 (redisplay_window): Pass to move_it_vertically the margin in
13701 pixels, not in screen lines.
de0100f2 13702
96a72ee9
GM
137032012-03-02 Glenn Morris <rgm@gnu.org>
13704
13705 * buffer.c (buffer-list-update-hook): Doc fix.
13706
312508d7
EZ
137072012-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
27f3c637
PE
137152012-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
3c9dfce6
CY
137262012-02-25 Chong Yidong <cyd@gnu.org>
13727
fa74b241
CY
13728 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13729 Doc fix.
13730
3c9dfce6
CY
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
9486df08
CY
137352012-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
f01d3321
CY
137402012-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.
b2e4ca7d 13748 (syms_of_window): Initialize it.
f01d3321 13749
86b847b6
CY
137502012-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
a59225b1
CY
137552012-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
310f5bd4
PE
137622012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13763
cb3a28cc
PE
13764 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13765 when computing $valmask.
13766
310f5bd4
PE
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
2375c96a
CY
137792012-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
3eb49e71
EZ
137872012-02-18 Eli Zaretskii <eliz@gnu.org>
13788
13789 * .gdbinit (pitx): Fix incorrect references to fields of the
13790 iterator stack.
13791
7b926f3f
CY
137922012-02-17 Chong Yidong <cyd@gnu.org>
13793
13794 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13795
11273115
PE
137962012-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
c3a70e2b
CY
138012012-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
0ca43699
AS
138062012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13807
13808 * gnutls.c (emacs_gnutls_write): Fix last change.
13809
2e8f3c56
LI
138102012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13811
13812 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13813 send_process.
13814
af70074f
SM
138152012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13816
13817 * keymap.c (Fsingle_key_description): Handle char ranges.
13818
95986d52
CY
138192012-02-12 Chong Yidong <cyd@gnu.org>
13820
afd83bd1
CY
13821 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13822 as that creates a dangerous corner case.
13823
95986d52
CY
13824 * window.c (Fdelete_window_internal): Invalidate the mouse
13825 highlight (Bug#9904).
13826
bd7da63e
GM
138272012-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
77abcbc2
LI
138372012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13838
13839 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13840
90b671e2
EZ
138412012-02-11 Eli Zaretskii <eliz@gnu.org>
13842
1c0ca0b7
EZ
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)
90b671e2 13848
49241268
GM
138492012-02-10 Glenn Morris <rgm@gnu.org>
13850
13851 * fns.c (Fsecure_hash): Doc fix.
13852
f998bbe7 138532012-02-09 Kenichi Handa <handa@m17n.org>
5c1ca13d
KH
13854
13855 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13856
0992bd9c
CY
138572012-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
af008560
GM
138632012-02-07 Glenn Morris <rgm@gnu.org>
13864
dd605cc4
GM
13865 * image.c (Fimagemagick_types): Doc fix.
13866
af008560
GM
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
1449fa1d
CY
138712012-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
3723ec07
AS
138762012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13877
13878 * .gdbinit (pp1, pv1): Remove redundant defines.
13879 (pr): Use pp.
13880
79c1cc1e
CY
138812012-02-04 Chong Yidong <cyd@gnu.org>
13882
13883 * nsterm.m: Declare a global (Bug#10694).
13884
d7f29f8e
EZ
138852012-02-04 Eli Zaretskii <eliz@gnu.org>
13886
cae07000
SM
13887 * w32.c (get_emacs_configuration_options):
13888 Include --enable-checking, if specified, in the return value.
d7f29f8e 13889
3b95a6f9
MR
138902012-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
d6fa96a6
EZ
138952012-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
df0b2940
PE
139002012-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
6bee44d6
MA
139092012-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
44f92739
GM
139142012-02-02 Glenn Morris <rgm@gnu.org>
13915
1b9f60cc
GM
13916 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13917
44f92739
GM
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
c5d3843c
KH
139242012-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
159462d4 139292012-02-02 Kenichi Handa <handa@m17n.org>
d2a51fd7
KH
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
78cef877
EZ
139362012-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
97897668
GM
139432012-01-31 Glenn Morris <rgm@gnu.org>
13944
13945 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
c78c6e0b 13946 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
97897668
GM
13947 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13948
31fd3586
GM
139492012-01-29 Glenn Morris <rgm@gnu.org>
13950
13951 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13952
0e24a8b2
CY
139532012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13954
13955 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13956
cc0adcb0
CY
139572012-01-28 Chong Yidong <cyd@gnu.org>
13958
13959 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13960
acc28cb9
CY
139612012-01-26 Chong Yidong <cyd@gnu.org>
13962
9c69cfb7
CY
13963 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13964
acc28cb9
CY
13965 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13966 repeat counts (Bug#10507).
13967
48da7392
GM
139682012-01-26 Glenn Morris <rgm@gnu.org>
13969
13970 * lread.c (syms_of_lread): Doc fix.
13971
14af5f7f
CY
139722012-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
0b21c100
CY
139772012-01-25 Chong Yidong <cyd@gnu.org>
13978
13979 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13980
3c2907f7
CY
139812012-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
959ad23f
AS
139862012-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
34a02f46
MR
139912012-01-19 Martin Rudalics <rudalics@gmx.at>
13992
13993 * window.c (save_window_save, Fcurrent_window_configuration)
cae07000
SM
13994 (Vwindow_persistent_parameters): Do not use Qstate.
13995 Rewrite doc-strings.
34a02f46 13996
1259009a 139972012-01-19 Kenichi Handa <handa@m17n.org>
25ed9e61
KH
13998
13999 * character.c (char_width): New function.
70d4fdf6
GM
14000 (Fchar_width, c_string_width, lisp_string_width):
14001 Use char_width (Bug#9496).
25ed9e61 14002
6a6ee00d
MR
140032012-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
c85efaf7
EZ
140092012-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
5944709e
PE
140142012-01-12 Paul Eggert <eggert@cs.ucla.edu>
14015
14016 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
14017
e71f5d99
EZ
140182012-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
ce316182
GM
140262012-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
5b43da69
GM
140312012-01-10 Glenn Morris <rgm@gnu.org>
14032
74cc8ff9
GM
14033 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
14034
7d8d6e4e
GM
14035 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
14036 Update template values to be closer to their typical values these days.
5b43da69 14037
a0db8d43
EZ
140382012-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
9a0115ab 140452012-01-07 Paul Eggert <eggert@cs.ucla.edu>
09450bae 14046
b9110d6a 14047 emacs: fix an auto-save permissions race condition (Bug#10400)
09450bae
PE
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.
b9110d6a 14054 (Fdo_auto_save): Catch all errors, not just file errors, so
09450bae
PE
14055 that the var is always cleared.
14056
6c1bd3f3
EZ
140572012-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
069d2b50
L
140622012-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
75bf0d33
DB
140672012-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
1c6e5a32
GM
140752012-01-05 Glenn Morris <rgm@gnu.org>
14076
14077 * emacs.c (emacs_copyright): Update short copyright year to 2012.
14078
651e947e
EZ
140792012-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
3778cdd8
AL
140872011-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
0e5317f7
KH
140932011-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
93d5ca1f
JD
140992011-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
ca22b785
AS
141062011-12-24 Andreas Schwab <schwab@linux-m68k.org>
14107
14108 * callint.c (Fcall_interactively): Don't truncate prompt string.
14109
d048e1e6
EZ
141102011-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
3ba1a2ad 14114 resumed from there (after widening). (Bug#10360)
d048e1e6 14115
5ccaba1f
JD
141162011-12-22 Jan Djärv <jan.h.d@swipnet.se>
14117
14118 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
14119
204ee57f
JD
141202011-12-21 Jan Djärv <jan.h.d@swipnet.se>
14121
b81d40f0
JB
14122 * nsterm.m (x_free_frame_resources):
14123 Release f->output_data.ns->miniimage.
204ee57f
JD
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
c803b2b7
JD
141462011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14147
678f4426
JD
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
cd394be1 141532011-12-18 David Reitter <reitter@cmu.edu>
678f4426 14154
5fecd5fc
JD
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.
3771cb17 14160 (trackingNotification): New method (from Aquamacs).
5fecd5fc 14161 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
3771cb17 14162 from Aquamacs (Bug#7030).
678f4426
JD
14163
141642011-12-18 Jan Djärv <jan.h.d@swipnet.se>
5fecd5fc 14165
c803b2b7
JD
14166 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
14167 (symbol_to_nsstring): Fix indentation.
14168 (ns_symbol_to_pb): New function.
cae07000
SM
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
c803b2b7
JD
14172 Fns_store_cut_buffer_internal.
14173 (ns_get_foreign_selection, Fx_own_selection_internal)
14174 (Fx_disown_selection_internal, Fx_selection_exists_p)
b81d40f0
JB
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
c803b2b7
JD
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
e1b01a3a
KB
141872011-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
2adb6e85
PE
141922011-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
d1d7b339
JL
141992011-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
100d5755
KH
142082011-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
454592a6
MR
142132011-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.
61d4b438
MR
14218 (Vrecenter_redisplay): Add first sentence of doc-string on
14219 separate line.
53524d93 14220 (Frecenter): Fix doc-string typo.
454592a6 14221
3633e3aa
KH
142222011-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
7b9d523a 142272011-12-10 Jan Djärv <jan.h.d@swipnet.se>
61ccba97 14228
7b9d523a
JD
14229 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
14230 gtk_init (Bug#10100).
14231
b73189c6
EZ
142322011-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
f7dfe5d6
JD
142372011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14238
83faebb4
JD
14239 * nsterm.h (x_free_frame_resources): Declare.
14240
f7dfe5d6
JD
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
7cd4e72c
EZ
142482011-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
b34d7317
YM
142532011-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
76470ad1
KH
142592011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14260
14261 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
2fac8180 14262 after the loop to call ccl_driver at least once (Bug#8619).
76470ad1 14263
745fff94
KH
142642011-12-08 Kenichi Handa <handa@m17n.org>
14265
14266 * ftfont.c (get_adstyle_property): Fix previous change
14267 (Bug#10233).
14268
6e44397c
JB
142692011-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
7efa6272
GM
142742011-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
f6fc4d87
CY
142792011-12-06 Chong Yidong <cyd@gnu.org>
14280
14281 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
14282
2bf26180
GM
142832011-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
3a6ad4f0
CY
142882011-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
75a3b399
PE
142932011-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
c3c9e25e
KH
142982011-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
5eb05ea3
KH
143032011-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.
a79703f5
KH
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)
cae07000 14312 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
5eb05ea3
KH
14313
143142011-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
143202011-12-05 Andreas Schwab <schwab@linux-m68k.org>
14321
14322 The following changes are to fix Bug#9318.
14323
a79703f5 14324 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
5eb05ea3
KH
14325 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
14326 (encode_coding_iso_2022, encode_coding_sjis)
a79703f5 14327 (encode_coding_big5, encode_coding_charset): Use the above macros.
5eb05ea3 14328
7dbda6df
JB
143292011-12-05 Juanma Barranquero <lekktu@gmail.com>
14330
14331 * lisp.h (process_quit_flag): Fix external declaration.
14332
6d5eb5b0
SM
143332011-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
a0c3fad0
JD
143392011-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
6c07aac2
AS
143442011-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.
6d5eb5b0
SM
14350 (quit_throw_to_read_char): Add parameter `from_signal'.
14351 All callers changed. Call Fkill_emacs if requested and safe.
6c07aac2
AS
14352 * lisp.h (QUIT): Call Fkill_emacs if requested.
14353
c052ead4
JD
143542011-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
9e49252b
EZ
143642011-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)
e9a49426 14369 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
9e49252b 14370
02b16839
JL
143712011-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
0068070e
SM
143802011-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
3360a3fc
AS
143872011-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
73d6c093
EZ
143922011-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
febe6bea
JB
143982011-11-30 Juanma Barranquero <lekktu@gmail.com>
14399
14400 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14401
801a4313
EZ
144022011-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
2b56b87e
JD
144082011-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)
7dbda6df 14414 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
2b56b87e
JD
14415 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14416
dbf31225
PE
144172011-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
1305621b
YM
144272011-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
8c9afb46
EZ
144332011-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
54e9e3bf
JD
144492011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14450
6d5eb5b0
SM
14451 * gtkutil.c (xg_create_frame_widgets):
14452 Call gtk_window_set_has_resize_grip (FALSE) if that function is
54e9e3bf
JD
14453 present with Gtk+ 2.0.
14454
83aca1cb
PE
144552011-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
5b76caa4
PE
144602011-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
8c535114
EZ
144692011-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)
91b4a718
EZ
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)
8c535114 14478
fa4fdb5c
JL
144792011-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
90ec88df
CY
144842011-11-23 Chong Yidong <cyd@gnu.org>
14485
14486 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14487
56e2e794
MR
144882011-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
b6e64c41
GM
144932011-11-23 Glenn Morris <rgm@gnu.org>
14494
14495 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14496
6b21de18
CY
144972011-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
b12cd789
EZ
145022011-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
261b6fd4
LMI
145112011-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.
16c1ad08 14515 (wait_reading_process_output): Add comment and URL.
261b6fd4 14516
e7cfd277
JD
145172011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14518
14519 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14520
a9b9b7f5
CY
145212011-11-21 Chong Yidong <cyd@gnu.org>
14522
14523 * window.c (Fnext_window, Fprevious_window): Doc fix.
14524
b0d15b4f
SM
145252011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14526
14527 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14528
fe7a3057
JB
145292011-11-20 Juanma Barranquero <lekktu@gmail.com>
14530
14531 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14532
d2999b1a
MR
145332011-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
d5ff9cd0
AS
145392011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14540
14541 * m/ibms390.h: Remove.
14542 * m/ibms390x.h: Don't include "ibms390.h".
14543
a5bb9bd3
SM
145442011-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
cd1181db
JB
145492011-11-20 Juanma Barranquero <lekktu@gmail.com>
14550
14551 * casetab.c (Fset_case_table):
14552 * charset.c (Fcharset_after): Fix typos.
14553
615a3b8d 145542011-11-20 Paul Eggert <eggert@cs.ucla.edu>
6a0bf43d 14555
17e845af
PE
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
6a0bf43d
PE
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
f8fe6f96
EZ
145742011-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
df05a53c
CY
145852011-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.
61ccba97 14590
2071918e
DA
145912011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14592
14593 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14594
b50a28de
SM
145952011-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
015137db
EZ
146002011-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)
68c95424 14606 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
015137db
EZ
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
a2addb04
TH
146182011-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
df85d315
JB
146232011-11-17 Juanma Barranquero <lekktu@gmail.com>
14624
14625 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14626
a0c2d0ae
MR
146272011-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
58179cce
JB
146342011-11-16 Juanma Barranquero <lekktu@gmail.com>
14635
7877f373
JB
14636 * nsfns.m (Fns_font_name):
14637 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
58179cce 14638
b6f67890
MR
146392011-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
c7015153
JB
146502011-11-15 Juanma Barranquero <lekktu@gmail.com>
14651
14652 * image.c (imagemagick_load_image): Fix typo.
14653
322ad6ec
EZ
146542011-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
6d5eb5b0
SM
14659 faces of all the glyphs to compute ROW's hash value.
14660 Fixes assertion violations in row_equal_p. (Bug#10035)
322ad6ec 14661
f067b8ec
JB
146622011-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
1e5b2111
EZ
146672011-11-12 Eli Zaretskii <eliz@gnu.org>
14668
7ef3cbd5
EZ
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
1e5b2111
EZ
14674 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14675 current_matrix and desired_matrix. (Bug#9990)
7a7270dd
EZ
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.
1e5b2111 14679
89d61221
MR
146802011-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
97f18cc8
JD
146912011-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
22a648b4
DA
146982011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14699
0b381c7e 14700 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
22a648b4 14701
659afede
KH
147022011-11-11 Kenichi Handa <handa@m17n.org>
14703
14704 * callproc.c (Fcall_process): Set the member dst_multibyte of
14705 process_coding.
14706
9ac0394b
KH
147072011-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
2fbdc249
CY
147122011-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
ac6b1f81
PE
147172011-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
09db192c
PE
147212011-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
105216ed
CY
147412011-11-08 Chong Yidong <cyd@gnu.org>
14742
14743 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
6d5eb5b0
SM
14744 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14745 Signal an error if not a live window.
105216ed
CY
14746 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14747 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14748
ae9e237f
JB
147492011-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
c7aa8333
EZ
147542011-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
be7f5545
MR
147602011-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
ca78dc43
PE
147732011-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
a0241d01
KH
147802011-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
a64bfdfa 147912011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
ba24cea2
YM
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
cb41b32a
PE
147972011-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
b7041366
AS
148152011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14816
14817 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14818 GC.
14819
88a37c4d
EZ
148202011-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
49745b39
CY
148272011-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
1f05cd82
CS
148402011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14841
14842 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14843 support MSVC.
14844
22610910
JR
148452011-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
a06776b2
EZ
148542011-11-05 Eli Zaretskii <eliz@gnu.org>
14855
3ad924ba
EZ
14856 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14857 "emacs"-only part.
14858
a06776b2
EZ
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
c9e7db78
JD
148632011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14864
a97f8f3f
JD
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
c9e7db78 14876 * xfns.c (unwind_create_frame): Fix comment.
6d5eb5b0
SM
14877 (Fx_create_frame, x_create_tip_frame):
14878 Move terminal->reference_count++ just before making the frame
75f1671a 14879 official. Move initialization of image_cache_refcount and
c9e7db78
JD
14880 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14881
a6fc3b5c
EZ
148822011-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
58179cce 149002011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
a6fc3b5c
EZ
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
a58c13ed
EZ
149172011-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
fe0b6370
JD
149232011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14924
a58c13ed 14925 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
fe0b6370
JD
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
89bd5ee1
EZ
149302011-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
84c3edb9
EZ
149352011-11-03 Eli Zaretskii <eliz@gnu.org>
14936
4e2fb5c7
EZ
14937 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14938
84c3edb9 14939 * w32fns.c (unwind_create_frame): If needed, free the glyph
3ab15fd6 14940 matrices of the partially constructed frame. (Bug#9943)
2a58bbc1 14941 * xfns.c (unwind_create_frame): Likewise.
84c3edb9 14942
bc17a887
EZ
149432011-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.
6d5eb5b0
SM
14948 (mouse_face_from_buffer_pos, note_mouse_highlight):
14949 Rename cover_string to disp_string.
bc17a887 14950
4ee88440
MR
149512011-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
c2ff3c02
EZ
149572011-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
58179cce 149622011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
6e56383b
JD
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).
b77a6a7f 14967
3b574623
JD
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
b77a6a7f
JD
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
196e41e4
PE
149822011-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
021f2e1a
AS
149882011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14989
14990 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14991
8b058d44
EZ
149922011-10-29 Eli Zaretskii <eliz@gnu.org>
14993
14994 Fix the `xbytecode' command.
14995 * .gdbinit (xprintbytestr): New command.
b50a28de 14996 (xwhichsymbols): Rename from `which'; all callers changed.
8b058d44
EZ
14997 (xbytecode): Print the byte-code string as well.
14998
4452fb80
EZ
149992011-10-29 Kim Storm <storm@cua.dk>
15000
8b058d44
EZ
15001 * alloc.c (which_symbols): New function.
15002
21b72067
AS
150032011-10-29 Andreas Schwab <schwab@linux-m68k.org>
15004
15005 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
15006 line. (Bug#9903)
15007
83ed7b5c
GM
150082011-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
5a7a728b
EZ
150132011-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
d3d0842f
CY
150192011-10-28 Chong Yidong <cyd@gnu.org>
15020
15021 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
15022
31b39d13
DN
150232011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
15024
15025 * window.c (make_window): Initialize phys_cursor_on_p.
15026
9aba6043
SM
150272011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
15028
15029 * lisp.h (struct Lisp_Symbol): Update comments.
15030
c20992f4
JB
150312011-10-28 Juanma Barranquero <lekktu@gmail.com>
15032
15033 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
15034
db4f02f2
EZ
150352011-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)
9aba6043
SM
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
db4f02f2
EZ
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
87e68db4
JB
150562011-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
435c1d67
CY
150632011-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
9c6c6f49
CY
150742011-10-27 Chong Yidong <cyd@gnu.org>
15075
9aba6043
SM
15076 * gnutls.c (emacs_gnutls_deinit): New function.
15077 Deallocate credentials structures as well as calling gnutls_deinit.
9c6c6f49
CY
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
657d08d3
JB
150832011-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
5430d399
JB
150902011-10-26 Juanma Barranquero <lekktu@gmail.com>
15091
15092 * w32fns.c (w32_default_color_map): New function,
15093 extracted from Fw32_default_color_map.
a7ef684b 15094 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
5430d399 15095
fe0055fa
PE
150962011-10-25 Paul Eggert <eggert@cs.ucla.edu>
15097
15098 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
15099
e6346438
SM
151002011-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
e112cc37
ET
151052011-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
7b5d6677
EZ
151102011-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
7da0b018
PE
151232011-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
8547b010
EZ
151442011-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.
12b32963
EZ
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.
8547b010
EZ
15152 (Bug#9771, part 2)
15153
4e948d15
CY
151542011-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
4787455f
EZ
151592011-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
2c91f553
EZ
151782011-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)
f2ff9e88
EZ
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)
2c91f553 15186
c7b08b0d
MR
151872011-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
6b02f655
SM
151922011-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
81d40c92
DA
151972011-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
d4172c3b
EZ
152022011-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
b00eea75
EZ
152112011-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
8fe012c4
SM
152172011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15218
15219 * doc.c (get_doc_string): Encode file name (bug#9735).
15220
0074aef2
EZ
152212011-10-12 Eli Zaretskii <eliz@gnu.org>
15222
79beb178
EZ
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
0074aef2
EZ
15227 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
15228
6e4b3fbe
DA
152292011-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
0324f3af
PE
152352011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15236
b5525cac
PE
15237 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15238 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15239
0324f3af
PE
15240 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15241 Some packages use them to denote characters with modifiers.
15242
e9b5f888
AS
152432011-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
127827c0
SM
152492011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15250
15251 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
15252
c8fd3bd0
GM
152532011-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
352ec8ff
EZ
152582011-10-08 Eli Zaretskii <eliz@gnu.org>
15259
03669ccb
EZ
15260 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
15261 lines.
7061c986
EZ
15262 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
15263 lines that are hscrolled on the left.
03669ccb 15264
352ec8ff
EZ
15265 * dispnew.c (buffer_posn_from_coords): Account for a possible
15266 presence of header-line. (Bug#4426)
15267
a66cfb1c
SM
152682011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15269
6b02f655
SM
15270 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
15271 Don't advertise functionality which we discourage or doesn't work.
a66cfb1c 15272
7c5ee88e
PE
152732011-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
df1bbe5b
SM
152852011-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
51553db6
SM
152912011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15292
32c1fffd
SM
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
51553db6
SM
15297 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
15298 they've been requested explicitly (bug#9591).
15299
b6bd1599 153002011-10-01 Andreas Schwab <schwab@linux-m68k.org>
fa2ec41f
AS
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
f701dc2a
PE
153062011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15307
4222c55d
PE
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
f701dc2a
PE
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
9ceebf39
JD
153302011-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
cb993c58
PE
153362011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15337
3930c88b
PE
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
cb993c58
PE
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
31bed486
EZ
153602011-09-29 Eli Zaretskii <eliz@gnu.org>
15361
04c70788 15362 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
31bed486
EZ
15363 use EDOM.
15364
fbcaa2f3
EZ
153652011-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
a239d4e9
JB
153742011-09-28 Juanma Barranquero <lekktu@gmail.com>
15375
15376 * lread.c (Fread_from_string): Fix typo in docstring.
15377
88652fd5
EZ
153782011-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)
32c1fffd
SM
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.
88652fd5 15385
ed497dd4
AS
153862011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15387
15388 * lread.c (readevalloop): Use correct code for NBSP.
15389 (read1): Likewise. (Bug#9608)
15390
b2bf61aa
MA
153912011-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
32bbb17c
GM
153962011-09-25 Glenn Morris <rgm@gnu.org>
15397
15398 * buffer.c (truncate-lines): Doc fix.
15399
94e0933e
CY
154002011-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
cddde921
GM
154052011-09-24 Glenn Morris <rgm@gnu.org>
15406
15407 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15408
1260aef1
PE
154092011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15410
25b4bfa0
PE
15411 Fix minor problems found by static checking.
15412 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
1260aef1
PE
15413 * indent.c (Fvertical_motion): Fix == vs = typo.
15414
e3cbd34b
EZ
154152011-09-24 Eli Zaretskii <eliz@gnu.org>
15416
a66cfb1c
SM
15417 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15418 Default value is now t. Doc fix.
6bf7006f 15419
e3cbd34b 15420 * indent.c (Fvertical_motion): Compute and apply the overshoot
32c1fffd 15421 logic when moving up, not only when moving down. Fix the
e3cbd34b 15422 confusing name and values of the it_overshoot_expected variable;
32c1fffd 15423 logic changes accordingly. (Bug#9254) (Bug#9549)
e3cbd34b
EZ
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
a3de0cbd
MA
154302011-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)
a66cfb1c
SM
15434 (Fdbus_register_method, Vdbus_registered_objects_table):
15435 Fix docstring.
a3de0cbd 15436
b260039d
JM
154372011-09-24 Jim Meyering <meyering@redhat.com>
15438
32c1fffd 15439 do not ignore write error for any output size
b260039d
JM
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
8eca8a7c
AS
154522011-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
3341db62
EZ
154572011-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
8c203dbf
EZ
154652011-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.
fd317ddf
EZ
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.
8c203dbf 15475
a4824228
LMI
154762011-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
33ed493b
CY
154812011-09-18 Chong Yidong <cyd@stupidchicken.com>
15482
15483 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15484 boolean (Bug#9154).
15485
56cd55c8
EZ
154862011-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.
c02dcedf
EZ
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.
3e62b7e0
EZ
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)
56cd55c8 15499
5ed99d36 155002011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
3390454c
YM
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
5ed99d36 155052011-09-18 Andreas Schwab <schwab@linux-m68k.org>
edb7b4dc
AS
15506
15507 * search.c (boyer_moore): Take unibyte characters from pattern
15508 literally. (Bug#9458)
15509
9bade7b2
EZ
155102011-09-18 Eli Zaretskii <eliz@gnu.org>
15511
15512 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15513
e5e9d610
PE
155142011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15515
87e4427a
PE
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
e5e9d610
PE
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
a1674f0b
EZ
155252011-09-18 Eli Zaretskii <eliz@gnu.org>
15526
15527 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15528
fbfb6dd4
EZ
155292011-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
bb187662
EZ
155342011-09-17 Eli Zaretskii <eliz@gnu.org>
15535
1137e8b8 15536 * xdisp.c (reseat_at_next_visible_line_start): Keep information
6b02f655 15537 about the current paragraph and restore it after the call to reseat.
1137e8b8
EZ
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
bb187662
EZ
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
2e621251
PE
155492011-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
91a15bc6
SM
155572011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15558
15559 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15560
b41c3a35
EZ
155612011-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
7812ba2d
PE
155662011-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
cf7edc2a
AS
155712011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15572
15573 * editfns.c (Fformat): Correctly handle text properties on "%%".
15574
bd01620e
EZ
155752011-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
a02719a3
PE
155852011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15586
15587 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
4c122725
PE
15588 This occurs when processing a multibyte format.
15589 Problem reported by Wolfgang Jenker.
a02719a3 15590
72589a3c
JB
155912011-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
1c14176c
PE
155962011-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
d2eea5b5
PE
156062011-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
46888499
EZ
156162011-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
ef8ef9fb
CY
156222011-09-13 Chong Yidong <cyd@stupidchicken.com>
15623
15624 * frame.c (Fother_visible_frames_p): Function deleted.
15625
fa819fed
EZ
156262011-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
2ba8e008
SM
156312011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15632
15633 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15634
20f53c69
CY
156352011-09-11 Chong Yidong <cyd@stupidchicken.com>
15636
15637 * minibuf.c (Fread_from_minibuffer): Doc fix.
15638
d562d7a4
EZ
156392011-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
1c4d7f3d
LMI
156442011-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
b885bf36
EZ
156492011-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
6612f0bf
PE
156572011-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
dfb3f755
PE
156662011-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
3134906c
LMI
156722011-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
8d903f4e
AS
156772011-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
80ad64f4
EZ
156822011-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
208a048d
EZ
156872011-09-09 Eli Zaretskii <eliz@gnu.org>
15688
15689 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15690
9b1c252e
MR
156912011-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
2949f33b
JB
156962011-09-08 Juanma Barranquero <lekktu@gmail.com>
15697
15698 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15699
e08dcafd
EZ
157002011-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
115b96bd
JD
157052011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15706
15707 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15708
c8199d0f
PE
157092011-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
e39b275c 157232011-09-06 Paul Eggert <eggert@cs.ucla.edu>
1c262cae
PE
15724
15725 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15726
b2db44d9 157272011-09-06 Paul Eggert <eggert@cs.ucla.edu>
728f8f0a 15728
f4af5137 15729 * fileio.c: Fix bugs with large file offsets (Bug#9428).
728f8f0a
PE
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
ecfc0a49
MA
157462011-09-05 Michael Albinus <michael.albinus@gmx.de>
15747
15748 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15749
6511acf2 157502011-09-04 Paul Eggert <eggert@cs.ucla.edu>
61bfeeb7 15751
0999621a 15752 sprintf-related integer and memory overflow issues (Bug#9412).
62f19c19
PE
15753
15754 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
8666506e 15755 (esprintf, exprintf, evxprintf): New functions.
62f19c19 15756 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
6b02f655 15757 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
62f19c19
PE
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.
8666506e 15769 (esprintf, exprintf, evxprintf): New decls.
62f19c19
PE
15770 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15771
2be7d702
PE
15772 * dbusbind.c (signature_cat): New function.
15773 (xd_signature, Fdbus_register_signal):
2ea16b89
PE
15774 Do not overrun buffer; instead, report string overflow.
15775
9d1df220
PE
15776 * dispnew.c (add_window_display_history): Don't overrun buffer.
15777 Truncate instead; this is OK since it's just a log.
15778
33ef5c64
PE
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
66c6fdd5
PE
15783 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15784 when creating daemon; the previous buffer-overflow check was incorrect.
15785
d749b01b
PE
15786 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15787 which has the guts of the old verror function.
15788
b5cd1905
PE
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
6e1a67fb
PE
15792 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15793 (font_unparse_xlfd): Don't blindly alloca long strings.
c21721cc 15794 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
8666506e 15795 fits in int, when using sprintf. Use single snprintf to count
c21721cc
PE
15796 length of string rather than counting it via multiple sprintfs;
15797 that's simpler and more reliable.
c21721cc
PE
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
c57b67fc
PE
15802 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15803 (fontset_from_font): Print it.
15804
8a401434
PE
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
6e1a67fb
PE
15815 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15816 (xg_check_special_colors, xg_set_geometry):
84722b3d
PE
15817 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15818
0df02bf3
PE
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
48e30793
PE
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
a66ff6d8
PE
15828 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15829 in case result does not fit in int.
15830
aca216ff
PE
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
31c286f7
PE
15839 * process.c (make_process): Use printmax_t, not int, to format
15840 process-name gensyms.
15841
55e5faa1
PE
15842 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15843
80f2e268
PE
15844 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15845 to avoid potential buffer overrun.
15846
670741ab
PE
15847 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15848 if X resource line is longer than 512 bytes.
15849
b7163a50
PE
15850 * xfns.c (x_window): Make sprintf buffer a bit bigger
15851 to avoid potential buffer overrun.
15852
ae58ff1f
PE
15853 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15854
c43c8a6a
PE
15855 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15856
3f8236f4
PE
158572011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15858
53e9fe90 15859 Integer overflow fixes for scrolling, etc.
6511acf2
PE
15860 Without these, Emacs silently mishandles large integers sometimes.
15861 For example, "C-u 4294967297 M-x recenter" was treated as if
53e9fe90
PE
15862 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15863
6511acf2
PE
15864 * xdisp.c (try_window_id): Check Emacs fixnum range before
15865 converting to 'int'.
806add1d 15866
6511acf2 15867 * window.c (window_scroll_line_based, Frecenter):
71f02bc5
PE
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
6511acf2
PE
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.
a0efffc8
PE
15879 (match_limit): Don't assume that a fixnum can fit in 'int'.
15880
6511acf2 15881 * print.c (print_object): Use ptrdiff_t, not int, for index that can
29ebea3b
PE
15882 exceed INT_MAX.
15883
6511acf2 15884 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
3f8236f4
PE
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
fcb901a7
LMI
158892011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15890
0f2f6b6d
LMI
15891 * Require libxml/parser.h to avoid compilation warning.
15892
fcb901a7
LMI
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
6e20a0d4
CY
158982011-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
148ae00e
EZ
159032011-08-30 Eli Zaretskii <eliz@gnu.org>
15904
f6cfbd8f
EZ
15905 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15906
148ae00e
EZ
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
a66cfb1c
SM
15914 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15915 Add prototypes.
148ae00e 15916
c4a07a4c
PE
159172011-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):
a66cfb1c 15922 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
c4a07a4c
PE
15923 so that the name doesn't mislead. All uses changed.
15924
6bc8cd65
JB
159252011-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
dca4927e
EZ
159302011-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
f2cad773
PE
159372011-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
0cae2cdb
JB
159472011-08-27 Juanma Barranquero <lekktu@gmail.com>
15948
15949 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15950
5fc295a4 159512011-08-26 Paul Eggert <eggert@cs.ucla.edu>
ddff3151 15952
70c60eb2 15953 Integer and memory overflow issues (Bug#9196).
726e0ab1 15954
d31850da
PE
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
a69fbedb
PE
15960 * image.c (x_allocate_bitmap_record, cache_image):
15961 * xselect.c (Fx_register_dnd_atom):
15962 Simplify previous changes by using xpalloc.
15963
fe5c5d37
PE
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
0065d054
PE
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
726e0ab1
PE
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
51f30bc5 16012 * bidi.c (bidi_cache_shrink):
726e0ab1
PE
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.
0065d054
PE
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.
726e0ab1 16021
0065d054
PE
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.
726e0ab1
PE
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.
0065d054 16031 Add a FIXME comment where memory seems to be over-allocated.
726e0ab1
PE
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
0065d054
PE
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.
726e0ab1
PE
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):
3256efce 16114 Check for size calculation overflow.
726e0ab1
PE
16115 (ct_colors_allocated_max): New constant.
16116 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
16117 overflow.
3256efce 16118
726e0ab1
PE
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
a66cfb1c
SM
16124 calculations. Don't update size until allocation succeeds.
16125 Redo calculations to avoid overflow.
726e0ab1
PE
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
726e0ab1
PE
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.
0065d054 16177 (main) [DEBUG]: Fix typo in invoking tparam1.
726e0ab1
PE
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
0065d054
PE
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.
726e0ab1
PE
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
0065d054
PE
16195 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
16196 (xg_select): Check for size calculation overflow.
726e0ab1
PE
16197 Don't update size until alloc done.
16198
0065d054 16199 * xrdb.c (get_environ_db): Don't assume path length fits in int,
726e0ab1 16200 as sprintf is limited to int lengths.
1d526e2f 16201
252c5ee1
PE
16202 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
16203 (X_LONG_MIN): New macros.
864d7ce7
PE
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
252c5ee1 16222 X_LONG_MAX rather than relying on wraparound overflow to send
864d7ce7
PE
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
726e0ab1 16248 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
34db673b 16249
0065d054
PE
16250 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
16251 (x_term_init): Check for size calculation overflow.
726e0ab1
PE
16252 (x_color_cells): Don't store size until memory allocation succeeds.
16253 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
0065d054 16254 Don't assume alloca size is less than MAX_ALLOCA.
726e0ab1
PE
16255 (x_term_init): Don't assume length fits in int (sprintf is limited
16256 to int size).
bc18e09d 16257
ebfa62c0
PE
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
d3411f89
PE
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
e097a6fa
PE
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
5637687f
PE
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.
a66cfb1c 16294 * character.h (sanitize_tab_width): Rename from sanitize_width,
5637687f
PE
16295 now that we have two such functions. All uses changed.
16296 (sanitize_char_width): New inline function.
16297
a2271ba2
PE
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
18c52557
PE
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
caeeedc1
PE
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
6df6ae42 16313 * xterm.c: Don't go over XClientMessageEvent limit.
50849c52
PE
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
b13995db
PE
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
13464394
PE
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
a66cfb1c
SM
16360 old tiff_error_handler and tiff_warning_handler.
16361 This function is rewritten to use vsnprintf and thereby avoid
13464394
PE
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
c11821d4
EZ
163752011-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
0c95fcf7
EZ
163802011-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.
fee65a97 16389 (try_cursor_movement): Check for the need to scroll more
a66cfb1c
SM
16390 accurately, and prefer exact match for point under bidi.
16391 Don't advance `row' beyond the last row of the window.
0c95fcf7
EZ
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
e4ed06f1
CY
164002011-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
f67cdd7f
EZ
164062011-08-24 Eli Zaretskii <eliz@gnu.org>
16407
5980d4c6
EZ
16408 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16409 buffers, return left-to-right.
8610fe8b
EZ
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.
5980d4c6 16423
f67cdd7f
EZ
16424 * bidi.c (bidi_check_type): Use xassert.
16425 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16426 members.
16427
bca633fb
EZ
164282011-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
4a5885a7
CY
164332011-08-23 Chong Yidong <cyd@stupidchicken.com>
16434
16435 * nsfont.m (ns_otf_to_script): Fix typo.
16436
0902a04e
KH
164372011-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
1a2e6670
EZ
164422011-08-23 Eli Zaretskii <eliz@gnu.org>
16443
8ddde651
EZ
16444 * xdisp.c (redisplay_window): When computing centering_position,
16445 account for the height of the header line. (Bug#8874)
16446
425cc014
EZ
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
1a2e6670
EZ
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
8b76d6f8
SM
164562011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16457
16458 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16459
dac347dd
EZ
164602011-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
e013fb34
CY
164662011-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
bd1ba3e8
CY
164722011-08-20 Chong Yidong <cyd@stupidchicken.com>
16473
16474 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
024a2d76 16475 (Fcondition_case): Document `debug' symbol in error handler.
bd1ba3e8 16476
54a1215b
EZ
164772011-08-19 Eli Zaretskii <eliz@gnu.org>
16478
823564e5
EZ
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
54a1215b
EZ
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
9778ebcc
EZ
164882011-08-18 Eli Zaretskii <eliz@gnu.org>
16489
0be6ee06
EZ
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
9778ebcc
EZ
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
156bffbe
AS
164992011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16500
6b02f655 16501 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
156bffbe 16502
72ad093b
CY
165032011-08-17 Chong Yidong <cyd@stupidchicken.com>
16504
16505 * eval.c (internal_condition_case, internal_condition_case_1)
8b76d6f8
SM
16506 (internal_condition_case_2, internal_condition_case_n):
16507 Remove unnecessary aborts (Bug#9081).
72ad093b 16508
35774242
EZ
165092011-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
db76dd85
KB
165142011-08-16 Ken Brown <kbrown@cornell.edu>
16515
16516 * gmalloc.c: Expand comment.
16517
b215eee5
EZ
165182011-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
a4579d33
KB
165232011-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
8b76d6f8
SM
16530 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16531 New variables.
a4579d33
KB
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
3ebec551
PE
165402011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16541
16542 * bidi.c (bidi_initialize): Remove unused local.
16543
9fd8be00
EZ
165442011-08-15 Eli Zaretskii <eliz@gnu.org>
16545
6b02f655
SM
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.
474a8465
EZ
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
32413314
EZ
16555 * bidi.c (bidi_paragraph_init): Support zero value of
16556 bidi_ignore_explicit_marks_for_paragraph_level.
474a8465
EZ
16557 (bidi_initialize): Use uniprop_table instead of including
16558 biditype.h and bidimirror.h.
32413314 16559
9fd8be00
EZ
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
5cf2b69b
KH
165642011-08-14 Kenichi Handa <handa@m17n.org>
16565
16566 * process.c (create_process): Call setup_process_coding_systems
72ad093b 16567 after the pid of the process is set to -1 (Bug#8162).
5cf2b69b 16568
daf17d00
EZ
165692011-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
08e3161a
JD
165762011-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.
5e617bc2 16583 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
08e3161a
JD
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
a3720aa2
AS
165912011-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
0a0d27fb
PE
166052011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16606
19d5c50c
PE
16607 * xfaces.c (Qframe_set_background_mode): Now static.
16608 * dispextern.h (Qframe_set_background_mode): Remove decl.
16609
0a0d27fb
PE
16610 * process.c (Fnetwork_interface_info): Declare local only if needed.
16611
377538cb
JD
166122011-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
08fff70c
EZ
166232011-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
8b76d6f8
SM
16628 when IT->position is set up wrongly due to some bug.
16629 Set IT->current to match the bidi iterator unconditionally.
08fff70c
EZ
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
7be1c708 166372011-08-09 Andreas Schwab <schwab@linux-m68k.org>
aac0c6e3 16638
7be1c708
CY
16639 * fontset.c (fontset_get_font_group): Add proper type checks.
16640 (Bug#9172)
aac0c6e3 16641
7be1c708 166422011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
aac0c6e3 16643
7be1c708
CY
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.
aac0c6e3 16648
97bb72a6
EZ
166492011-08-08 Eli Zaretskii <eliz@gnu.org>
16650
16651 * xdisp.c (forward_to_next_line_start): Allow to use the
8b76d6f8
SM
16652 no-display-properties-and-no-overlays under bidi display.
16653 Set disp_pos in the bidi iterator to avoid searches for display
757664a4 16654 properties and overlays.
97bb72a6 16655
d5617611
CY
166562011-08-08 Chong Yidong <cyd@stupidchicken.com>
16657
37e11a63
CY
16658 * editfns.c (Fset_time_zone_rule): Document relationship with the
16659 setenv function.
16660
d5617611
CY
16661 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16662 the font entity extracted from the cache (Bug#8109).
16663
58872834
CY
166642011-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
75bfc667
JL
166692011-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
d1410150
EZ
166742011-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)
75b771e4
EZ
16679 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16680 word-wrap under bidirectional display. (Bug#9224)
d1410150
EZ
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
35928349
EZ
166862011-08-05 Eli Zaretskii <eliz@gnu.org>
16687
ec7cc85b
EZ
16688 * bidi.c <bidi_cache_total_alloc>: Now static.
16689 (bidi_initialize): Initialize bidi_cache_total_alloc.
16690
8b76d6f8 16691 * xdisp.c (display_line): Release buffer allocated for shelved bidi
35928349
EZ
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
412b6358 16707 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
35928349 16708
e2e2423b
EZ
167092011-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
ae9e757a
JD
167142011-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
213bd7f2
AS
167222011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16723
6b02f655 16724 * regex.c (re_iswctype): Remove some redundant boolean conversions.
213bd7f2 16725
99aaf75f
JD
167262011-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
c74e9d86
PE
167332011-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
640c8776
SM
167382011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16739
16740 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16741
f26d0e4c
PE
167422011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16743
8a10d76c
PE
16744 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16745 so that it is not optimized away.
16746
f26d0e4c
PE
16747 * xdisp.c (compute_display_string_pos): Remove unused local.
16748
55439c61
EZ
167492011-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
5e617bc2 16758 DISP_PROP_P; callers changed. Scan at most 5K characters forward
55439c61
EZ
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
640c8776
SM
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
55439c61
EZ
16765 non-zero. All callers of bidi_fetch_char changed.
16766
fb33fa43
SM
167672011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16768
16769 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16770
b099e063
DM
167712010-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
5cc7f7af
KH
167762011-08-02 Kenichi Handa <handa@m17n.org>
16777
d0fffa3f 16778 * lisp.h (uniprop_table): Extern it.
5cc7f7af
KH
16779
16780 * chartab.c (uniprop_table): Make it non-static.
16781
525d5e6e
EZ
167822011-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
31011111
AS
167912011-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
476371c4
PE
167972011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16798
e5d76069
PE
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
9a79b20c
AS
168022011-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
d8c2fa78
AA
168082011-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
ffe57a7a
AA
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
bf3492a5
AA
16819 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16820 or scroll bar (Bug#8470).
16821
d55e9c53
AA
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
d8c2fa78 168282011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
4843aac3
AA
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
8d5ed899 16842 accommodate underlining, etc.
4843aac3 16843
4cc60b9b
EZ
168442011-07-28 Eli Zaretskii <eliz@gnu.org>
16845
bc7ece87
EZ
16846 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16847 default.
4cc60b9b 16848
476371c4
PE
168492011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16850
66606eea
PE
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
476371c4
PE
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
f3fcc40d
AS
168592011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16860
16861 * regex.c (re_iswctype): Convert return values to boolean.
16862
350c992f
EZ
168632011-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
5266b4bb
PE
168692011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16870
16871 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16872
2573a837 168732011-07-28 Paul Eggert <eggert@cs.ucla.edu>
ca4aa935 16874
41f55ccd 16875 Integer signedness and overflow and related fixes. (Bug#9079)
cf950e6b 16876
39e378da
PE
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.
f0eb61e9
PE
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>.
39e378da 16893
5e927815
PE
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
ca4aa935
PE
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
5f8f9cc2
PE
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
5adf60bc
PE
16921 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16922
c8907a93
PE
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
e3c25c68
PE
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
3f791afe
PE
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
3cc5a532
PE
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
b312a492
PE
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
dfd153ae
PE
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
a81d11a3
PE
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
3300e6fd
PE
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
fd05c7e9
PE
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
903fe15d
PE
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
ac82cc6a
PE
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
c2d1e36d
PE
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
0e926e56
PE
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
9cfdb3ec
PE
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
cf950e6b 17068 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
6089c567
PE
17069 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
17070 well either way, and we prefer signed to unsigned.
17071
dbf38e02
LMI
170722011-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
d6f0886c 170772011-07-25 Jan Djärv <jan.h.d@swipnet.se>
24e0f6b1 17078
d6f0886c
JD
17079 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
17080 are specified (Bug#9168).
24e0f6b1 17081
2eb1f9e6
PE
170822011-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
22381272 170872011-07-25 Eli Zaretskii <eliz@gnu.org>
7daee910
EZ
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
f25e39b4
EZ
170932011-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
04c4b52e
PE
170982011-07-23 Paul Eggert <eggert@cs.ucla.edu>
17099
17100 * xml.c (parse_region): Remove unused local
17101 that was recently introduced.
17102
c1734fbd
EZ
171032011-07-23 Eli Zaretskii <eliz@gnu.org>
17104
be18c5a5
EZ
17105 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
17106 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
17107
c1734fbd
EZ
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
640c8776
SM
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
a9269c18
EZ
17112 when exact match is impossible due to invisible text, and the
17113 lines are truncated.
17114
a258d627
JD
171152011-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
b6d5a689
EZ
171202011-07-22 Eli Zaretskii <eliz@gnu.org>
17121
0f74f785
EZ
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.
b6d5a689 17125 * xdisp.c (compute_stop_pos_backwards): New function.
b6d5a689
EZ
17126 (next_element_from_buffer): Call compute_stop_pos_backwards to
17127 find a suitable prev_stop when we find ourselves before
0f74f785
EZ
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.
551918c1 17134 (compute_display_string_pos): Return the cached position if asked
0f74f785
EZ
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.
551918c1 17138
b2d0c91a
EZ
171392011-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
043604ee
CY
171442011-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
da4adb04
CY
171492011-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
9abd0532
LMI
171542011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17155
17156 * xml.c (parse_region): Make sure we always return a tree.
17157
36881d16
HK
171582011-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
1e98674d
LMI
171632011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17164
17165 * xml.c (make_dom): Return comments, too.
17166
590bd467
PE
171672011-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
f41628b2
LMI
171802011-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
b59b67c5
PE
171852011-07-18 Paul Eggert <eggert@cs.ucla.edu>
17186
15e3a074
PE
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
41bed37d
PE
17191 * alloc.c (valid_pointer_p): Use pipe, not open.
17192 This fixes some permissions issues when debugging.
17193
b59b67c5
PE
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
925a6be7
SM
171992011-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
52968808
AS
172072011-07-17 Andreas Schwab <schwab@linux-m68k.org>
17208
0a6a104b
AS
17209 * lread.c (read_integer): Unread even EOF character.
17210 (read1): Likewise. Properly record start position of symbol.
17211
52968808
AS
17212 * lread.c (read1): Read `#:' as empty uninterned symbol if no
17213 symbol character follows.
17214
9e381cdd
PE
172152011-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
b5641435
JB
172232011-07-16 Juanma Barranquero <lekktu@gmail.com>
17224
17225 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
17226
a8031457
PE
172272011-07-16 Paul Eggert <eggert@cs.ucla.edu>
17228
17229 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
17230
dd889327
LMI
172312011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17232
750c33f7
LMI
17233 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17234 it's used from the C level.
17235
dd889327
LMI
17236 * process.c: Use the same condition for POLL_FOR_INPUT in both
17237 keyboard.c and process.c (bug#1858).
17238
87e86684
LM
172392011-07-09 Lawrence Mitchell <wence@gmx.li>
17240
17241 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17242 (Fgnutls_boot): Use it.
17243
64348f40
AS
172442011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17245
17246 * doc.c (Fsubstitute_command_keys): Revert last change.
17247
1d698799
LMI
172482011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17249
f863868c
LMI
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
1d698799
LMI
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
aa4b6df6
EZ
172582011-07-15 Eli Zaretskii <eliz@gnu.org>
17259
17260 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
6b02f655 17261 bidi redisplay when a line includes both an image and is truncated.
aa4b6df6 17262
5d856da6
PE
172632011-07-14 Paul Eggert <eggert@cs.ucla.edu>
17264
ad6042bb
PE
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.
f00bbb22 17272 * indent.c (Fvertical_motion): Mark locals as initialized.
5d856da6
PE
17273 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
17274
6468f31c
LMI
172752011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17276
49080b10
LMI
17277 * search.c (Fre_search_backward): Mention `case-fold-search' in
17278 all the re_search_* functions (bug#8138).
17279
6468f31c
LMI
17280 * keyboard.c (Fopen_dribble_file): Document when the file is
17281 closed (bug#8056).
17282
c965adc5
EZ
172832011-07-14 Eli Zaretskii <eliz@gnu.org>
17284
df9733bf
EZ
17285 * bidi.c (bidi_dump_cached_states): Fix format of displaying
17286 bidi_cache_idx.
17287
0bb23927
EZ
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
640c8776
SM
17295 NULL (avoids a crash in bidi_paragraph_init).
17296 Initialize itb.string.lstring.
0bb23927
EZ
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).
640c8776
SM
17312 (compute_display_string_pos, compute_display_string_end):
17313 Fix calculation of the object to scan. Fixes an error when using
0bb23927
EZ
17314 arrow keys.
17315 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
640c8776
SM
17316 base_level_stop; instead, set base_level_stop to BEGV.
17317 Fixes crashes in vertical-motion.
0bb23927
EZ
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.
640c8776
SM
17330 (display_string): Support display of R2L glyph rows.
17331 Use IT_STRING_CHARPOS when displaying from a Lisp string.
0bb23927
EZ
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.
640c8776
SM
17413 (pos_visible_p): Support positions in bidi-reordered lines.
17414 Save and restore bidi cache.
0bb23927
EZ
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)
640c8776
SM
17434 (bidi_level_of_next_char, bidi_move_to_visually_next):
17435 Support iteration over a string.
0bb23927
EZ
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)
c965adc5
EZ
17464 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17465 (bidi_cache_iterator_state, bidi_cache_find)
640c8776
SM
17466 (bidi_find_other_level_edge, bidi_cache_start_stack):
17467 All variables related to cache indices are now EMACS_INT.
c965adc5 17468
0bb23927
EZ
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.
640c8776
SM
17472 (compute_display_string_pos, compute_display_string_end):
17473 Update prototypes.
0bb23927
EZ
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.
640c8776
SM
17478 (bidi_shelve_cache, bidi_unshelve_cache):
17479 Declare prototypes.
0bb23927
EZ
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
3bbd2265
LMI
174922011-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
adc47434
MR
174972011-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
837c31f8
LMI
175022011-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
ac389d0c
JB
175072011-07-13 Juanma Barranquero <lekktu@gmail.com>
17508
17509 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17510
0be0ce47
EZ
175112011-07-13 Eli Zaretskii <eliz@gnu.org>
17512
17513 * buffer.c (mmap_find): Fix a typo.
17514
cd18e7e3
JB
175152011-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
47ea7f44
PE
175272011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17528
ac389d0c 17529 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
2941c447
PE
17530 The old code sometimes used this field without initializing it.
17531
47ea7f44
PE
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
bc985c87
AS
175362011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17537
17538 * character.c (Fcharacterp): Don't advertise optional ignored
ac389d0c 17539 argument. (Bug#4026)
bc985c87 17540
0cf34688
LMI
175412011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17542
b3dadd76
LMI
17543 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17544 key" (bug#4257).
17545
0cf34688
LMI
17546 * window.c (Fset_window_start): Doc fix (bug#4199).
17547 (Fset_window_hscroll): Ditto.
17548
270768cd
PE
175492011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17550
077e3dda 17551 Fix minor new problems caught by GCC 4.6.1.
270768cd 17552 * term.c (init_tty): Remove unused local.
490011a6 17553 * xsettings.c (store_monospaced_changed): Define this function only
077e3dda 17554 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
490011a6 17555 not used otherwise.
270768cd 17556
b1f58454
CY
175572011-07-12 Chong Yidong <cyd@stupidchicken.com>
17558
17559 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17560
22b9578d
LMI
175612011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17562
6e70ab07
LMI
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
22b9578d
LMI
17566 * term.c (init_tty): Remove support for supdup, c10 and perq
17567 terminals, which are no longer supported (bug#1482).
17568
8974cc9f
JB
175692011-07-10 Johan Bockgård <bojohan@gnu.org>
17570
17571 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17572
a560d974
JD
175732011-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
1dae0f0a
AS
175782011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17579
268c2c36 17580 * alloc.c (reset_malloc_hooks): Protoize.
1dae0f0a 17581 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
268c2c36
AS
17582 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17583 * cm.c (losecursor): Likewise.
1dae0f0a
AS
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.
268c2c36 17598 * ralloc.c (r_alloc_check): Likewise.
1dae0f0a
AS
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
99033785
PE
176152011-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
9cb2ac56
JB
176232011-07-09 Juanma Barranquero <lekktu@gmail.com>
17624
17625 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17626
f25661f0
JD
176272011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17628
17629 * gtkutil.c (qttip_cb): Remove code without function.
17630
8278c4fe
EZ
176312011-07-09 Eli Zaretskii <eliz@gnu.org>
17632
17633 * w32.c (pthread_sigmask): New stub.
17634
1692ae2d 176352011-07-08 Paul Eggert <eggert@cs.ucla.edu>
123403e4 17636
8a6ebd58 17637 Use pthread_sigmask, not sigprocmask (Bug#9010).
123403e4
PE
17638 sigprocmask is portable only for single-threaded applications, and
17639 Emacs can be multi-threaded when it uses GTK.
1301ac26
PE
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.
123403e4 17646
1b854618
JD
176472011-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
3fe4b549
JD
176532011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17654
0ce7e563
JD
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
3fe4b549
JD
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
5df75e47
JR
176662011-07-08 Jason Rumney <jasonr@gnu.org>
17667
22610910
JR
17668 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17669 SH_SHOW for hidden windows (Bug#5482).
17670
5df75e47
JR
17671 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17672 frame struct members of non-existent frames (Bug#6284).
17673
699c10bd
JD
176742011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17675
4393663b
JD
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
090bd7cb 17688 cString and lossyCString on OSX >= 10.4.
4393663b 17689
58179cce 17690 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
4393663b
JD
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
a63e0781
JD
17701 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17702
699c10bd
JD
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
54e10184
LMI
177242011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17725
9888ff71
LMI
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
54e10184
LMI
17730 * callint.c (Fcall_interactively): Change "reading args" to
17731 "providing args" to try to clarify what it does (bug#1010).
17732
15fa4783
KH
177332011-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
a8815b00
EZ
177402011-07-07 Eli Zaretskii <eliz@gnu.org>
17741
17742 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17743 (Bug#9015)
17744
ef7b981d 177452011-07-07 Kenichi Handa <handa@m17n.org>
c805dec0
KH
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.
ac389d0c 17756 (sub_char_table_ref_and_range): Likewise.
c805dec0
KH
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.
640c8776 17764 (map_char_table): Adjust for the above change. Give decoded
c805dec0
KH
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,
5e617bc2 17778 and Sput_unicode_property_internal. Defvar_lisp
c805dec0
KH
17779 char-code-property-alist.
17780
640c8776 17781 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
c805dec0
KH
17782 Vunicode_category_table.
17783
640c8776 17784 * font.c (font_range): Adjust for the change of
c805dec0
KH
17785 Vunicode_category_table.
17786
76b397fb
DN
177872011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17788
17789 * m/iris4d.h: Remove file, move contents ...
17790 * s/irix6-5.h: ... here.
17791
22b4128e
PE
177922011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17793
17794 Remove unportable assumption about struct layout (Bug#8884).
8a5c77bb
PE
17795 * alloc.c (mark_buffer):
17796 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17797 (clone_per_buffer_values): Don't assume that
22b4128e
PE
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
869795d6
JD
178042011-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.
5e617bc2 17810 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
869795d6
JD
17811 (struct xsettings): Move font inside HAVE_XFT.
17812 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
640c8776 17813 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
869795d6 17814 Move inside HAVE_XFT.
640c8776 17815 (something_changed_gsettingsCB): Rename from something_changedCB.
869795d6
JD
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.
5e617bc2 17819 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
640c8776 17820 (something_changed_gconfCB): Rename from something_changedCB.
869795d6
JD
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.
640c8776
SM
17833 (xsettings_get_system_font, xsettings_get_system_normal_font):
17834 Add comment.
869795d6 17835
d8ed26bd
PE
178362011-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
cabf1cac
SM
178482011-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
6e9b2be9
PE
178562011-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
90186c68
LMI
178612011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17862
7c301272
LMI
17863 * buffer.c (Foverlay_put): Say what the return value is
17864 (bug#7835).
17865
c4f2d8d4
LMI
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).
ad637907
LMI
17869 (barf_or_query_if_file_exists): Make the "File is a directory"
17870 error be more correct.
c4f2d8d4 17871
90186c68
LMI
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
da64016e
PE
178762011-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
7d47b580
JB
178812011-07-04 Juanma Barranquero <lekktu@gmail.com>
17882
a555cb87
JB
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
7d47b580
JB
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
1e49bfab
LMI
178922011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17893
17894 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17895
1485f4c0
CY
178962011-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
a9ab721e
LMI
179012011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17902
17903 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17904
cf7cff57
PE
179052011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17906
2e13213d
PE
17907 * xsettings.c (SYSTEM_FONT): Define only when used.
17908 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17909
cf7cff57
PE
17910 * keymap.c (access_keymap_1): Now static.
17911
7a8e04f7
CY
179122011-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
61352f62
LMI
179172011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17918
69bb1ef7
LMI
17919 * lread.c (syms_of_lread): Mention single symbols defined by
17920 `defvar' or `defconst' (bug#7154).
17921
61352f62 17922 * fns.c (Frequire): Mention .el.gz files (bug#7314).
7b3747f9 17923 (Frequire): Mention get-load-suffixes.
61352f62 17924
28545e04
MR
179252011-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
3349e122
SM
179362011-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
3279eb87
GM
179572011-07-01 Glenn Morris <rgm@gnu.org>
17958
17959 * Makefile.in (SETTINGS_LIBS): Fix typo.
17960
39cb9e56 179612011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
4550efdf
KI
17962
17963 * coding.c (Fencode_coding_string): Record the last coding system
17964 used, as the function doc string says (bug#8738).
17965
0949d2b6
JD
179662011-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.
9173deec 17979 Remove calls to g_settings_bind. Connect something_changedCB to
0949d2b6
JD
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
bbc6b304
PE
179892011-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
9851bfc5
JD
179992011-06-30 Jan Djärv <jan.h.d@swipnet.se>
18000
51bb811f 18001 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
9851bfc5
JD
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
640c8776 18017 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
9851bfc5
JD
18018 GCONF_CFLAGS/LIBS.
18019
5386012d
MR
180202011-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
f13e0b08
PE
180272011-06-28 Paul Eggert <eggert@cs.ucla.edu>
18028
18029 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
18030
94515237
JB
180312011-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
e43b6e43
MR
180372011-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
d68443dc
MR
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.
d615d6d2
MR
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.
d68443dc 18055
c7e73be5
JD
180562011-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.
9173deec
JB
18076 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
18077 Fix indentation.
c7e73be5 18078
cf99dcf8
EZ
180792011-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
029529ac
CY
180852011-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
7a7ef429
PE
180912011-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
11fdef7d 180962011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
989b42d2
YM
18097
18098 * dispnew.c (scrolling_window): Before scrolling, turn off a
18099 mouse-highlight in the window being scrolled.
18100
cd3520a4
JB
181012011-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
4228cf16
TZ
181572011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
18158
cd3520a4 18159 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
4228cf16 18160
7fcccf1e
PE
181612011-06-23 Paul Eggert <eggert@cs.ucla.edu>
18162
7efb4e0e
PE
18163 Integer and buffer overflow fixes (Bug#8873).
18164
ff5844ad
PE
18165 * print.c (printchar, strout): Check for string overflow.
18166 (PRINTPREPARE, printchar, strout):
18167 Don't set size unless allocation succeeds.
18168
90532f02
PE
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
6d84508d
PE
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
437b2cb4
PE
18181 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
18182
8b9ac8b4
PE
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.
82cb60d3
PE
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.
20270765 18194 Check for size overflow.
8b9ac8b4 18195
7fcccf1e
PE
18196 * image.c (cache_image): Check for size arithmetic overflow.
18197
bfbbd7e7
PE
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.
39019e54 18205 (read_escape): Check for hex character overflow.
bfbbd7e7 18206
4e323265
LL
182072011-06-22 Leo Liu <sdl.web@gmail.com>
18208
18209 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
18210 Move to minibuffer.el.
18211
85fece3e
PE
182122011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18213
20b84ce9 18214 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
85fece3e
PE
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
0766b489
PE
182402011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18241
31fd4b32
PE
18242 Integer overflow and signedness fixes (Bug#8873).
18243 A few related buffer overrun fixes, too.
18244
b79e8648
PE
18245 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18246
0766b489
PE
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
b081724f
PE
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):
21514da7
PE
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):
b081724f 18274 Use ptrdiff_t, not int, for sizes.
21514da7 18275 (overlays_at, overlays_in): Check for size-calculation overflow.
b081724f 18276
3de73e5e
PE
18277 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
18278
2606c57b
PE
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
aaafe47a
PE
18282 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
18283 This is unlikely, but can occur if DPI is outlandish.
18284
2674ddc8 18285 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
3a5077c5
PE
18286 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
18287
28154962
PE
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
7de51af5
PE
18293 * xfont.c (xfont_match): Avoid need for strlen.
18294
25ed6cc3
PE
18295 * xfns.c: Don't assume strlen fits in int.
18296 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
18297
4eab31dd
PE
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.
df1f27af 18302 (display_mode_element): Don't assume strlen fits in int.
4eab31dd 18303
171e2a58
PE
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
ad39faca 18308 * minibuf.c (Fread_buffer):
6e5bb2dc 18309 * lread.c (intern, intern_c_string):
74ca2eb3
PE
18310 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
18311 Don't assume string length fits in int.
18312
52c61c22 18313 * keyboard.c (parse_tool_bar_item):
9bda3520
PE
18314 * gtkutil.c (style_changed_cb): Avoid need for strlen.
18315
b5b8c9e5
PE
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.
ccd6111c
PE
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.
b5b8c9e5 18322
882f0d81 18323 * filelock.c: Fix some buffer overrun and integer overflow issues.
51cab52b 18324 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
882f0d81
PE
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
93f4cf88
PE
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
f3e92b69
PE
18343 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
18344
1bfdaf10
PE
18345 * coding.c (make_subsidiaries): Don't assume string length fits in int.
18346
35016e9a
PE
18347 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
18348
3d1e65a1
PE
18349 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
18350 We prefer signed integers, even for size calculations.
18351
0b963a93
PE
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
573f4b54
PE
18356 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
18357 (XD_DEBUG_MESSAGE): Don't waste a byte.
18358
989f33ba
PE
18359 * callproc.c (getenv_internal_1, getenv_internal)
18360 (Fgetenv_internal):
965d34eb
PE
18361 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
18362
e4d29b33
PE
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.
51cab52b 18367 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
e4d29b33 18368
eb49b136
PE
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.
9f62aeb1 18373 (LIST_END_P): Remove unused macro and its bogus comment.
cbeff735 18374 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
eb49b136 18375
15375a22
PE
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.
b61cc01c
PE
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).
9a8e8d9b
PE
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.
15375a22 18385
53b2623d
PE
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.
8fcaf9cc 18389 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
53b2623d 18390
51cab52b 18391 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
45aebb64 18392
f2ed8a70
PE
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
abe80cc6
PE
18397 * editfns.c, insdel.c:
18398 Omit unnecessary forward decls, to simplify future changes.
a9e860e1 18399
b02c740e
PE
18400 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18401
ebc96716
PE
18402 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18403
b4e50fa0 18404 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
f03dc6ef 18405 Use much-faster test for byte-length change.
311d5d7c 18406 Don't assume string byte-length fits in 'int'.
a4cf38e4 18407 Check that character arg fits in 'int'.
85461888 18408 (mapcar1): Declare byte as byte, for clarity.
b4e50fa0 18409
c0c1ee9f
PE
18410 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18411
a498d7f4
PE
18412 * fns.c (concat): Catch string overflow earlier.
18413 Do not rely on integer wraparound.
18414
51cab52b
PE
18415 * dispextern.h (struct it.overlay_strings_charpos)
18416 (struct it.selective): Now EMACS_INT, not int.
87830974
PE
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
76031fad
PE
18422 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18423
5eb55db9
PE
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.
7d100a81
PE
18427 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18428 not EMACS_UINT, for indexes.
5eb55db9 18429
0703a717
PE
18430 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18431
d6202519
PE
18432 * buffer.c: Include <verify.h>.
18433 (struct sortvec.priority, struct sortstr.priority):
8961a454 18434 Now EMACS_INT, not int.
c20998a7 18435 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
67c36fce
PE
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.
d6202519 18440 (init_buffer_once): Check at compile-time, not run-time.
fadf4e30 18441
d5a19415
JM
184422011-06-22 Jim Meyering <meyering@redhat.com>
18443
029529ac 18444 Don't leak an XBM-image-sized buffer
d5a19415
JM
18445 * image.c (xbm_load): Free the image buffer after using it.
18446
a9041e6c
PE
184472011-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
7f3f739f
LL
184562011-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.
5b66d427 18464 (Fsecure_hash): New primitive.
7f3f739f
LL
18465 (syms_of_fns): New symbols.
18466
76147d94
DD
184672011-06-20 Deniz Dogan <deniz@dogan.se>
18468
18469 * process.c (Fset_process_buffer): Clarify return value in
18470 docstring.
18471
7d7d0045
CY
184722011-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
ff2bc410
SM
184862011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18487
18488 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18489
28177add
PE
184902011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18491
dd3482fe
PE
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
393d71f3 18496 Improve buffer-overflow checking (Bug#8873).
1c8e352f
PE
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
2e6813b0 18506 * editfns.c (Finsert_char): Don't dump core with very negative counts.
21d890a4
PE
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.
2e6813b0 18509
599a9e4f
PE
18510 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18511
99561444
PE
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
28177add
PE
18518 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18519
e69dafad
PE
185202011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18521
4baa020d 18522 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
ff672d2c 18523
b1c46f02
PE
18524 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18525 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18526
e69dafad
PE
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
566684ea
PE
18532 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18533
e6966cd6
PE
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.
6346d301 18543 (Fnthcdr, Fsort): Don't assume list length fits in int.
de41a810 18544 (Fcopy_sequence): Don't assume vector length fits in int.
00c604f2 18545
dd0b0efb
PE
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
86fe5cfe
PE
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
80e88859
PE
18559 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18560
4a2f0ad6
PE
18561 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18562
f66c7cf8
PE
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
4a2f0ad6
PE
18567 were being counted with int, which may truncate counts on 64-bit
18568 machines, or EMACS_INT, which may be unnecessarily wide.
f66c7cf8
PE
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
a1759b76
PE
18586 * callint.c (Fcall_interactively): Don't use index var as event count.
18587
d96be9fc
PE
18588 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18589 * mem-limits.h (SIZE): Remove; no longer used.
18590
a690a978 18591 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
5efd304b 18592
578c21e6
PE
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
96f53c6c
PE
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
83c77d31
PE
18603 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18604
ee2079f1
PE
18605 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18606
6da65536
PE
18607 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18608
7147c4a4
PE
18609 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18610
193e32d9
PE
18611 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18612
e5533da6
PE
18613 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18614
9910e595
PE
18615 GLYPH_CODE_FACE returns EMACS_INT, not int.
18616 * dispextern.h (merge_faces):
18617 * xfaces.c (merge_faces):
01103c44
PE
18618 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18619 Don't assume EMACS_INT fits in int.
9910e595 18620
2638320e
PE
18621 * character.h (CHAR_VALID_P): Remove unused parameter.
18622 * fontset.c, lisp.h, xdisp.c: All uses changed.
18623
045eb8d9
PE
18624 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18625
c1f134b5
PE
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
395fcb93 18632 * floatfns.c (Fexpt):
327eeec8
PE
18633 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18634
abbd3d23
PE
18635 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18636 for characters.
18637
684a03ef
PE
18638 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18639
0fed43f3
PE
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
8fd02eb7
PE
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
f8c86b69
PE
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
34206dd2
PE
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
c5958d4c 18663 * character.c (char_string): Remove unnecessary casts.
13bdea59
PE
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):
01103c44 18674 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
13bdea59
PE
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
d37ca623
PE
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
ea204efb
PE
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):
01103c44 18693 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
ea204efb
PE
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
41cb286c
PE
18699 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18700 not to EMACS_INT, to avoid GCC warning.
18701
4a1b9832
PE
18702 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18703
55daad71
PE
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.
8f95c75c 18707
01103c44
PE
18708 * buffer.c (Fgenerate_new_buffer_name):
18709 Use EMACS_INT for count, not int.
0ceccced 18710 (advance_to_char_boundary): Return EMACS_INT, not int.
e762cafe
PE
18711
18712 * data.c (Qcompiled_function): Now static.
18713
c6f072e7
PE
18714 * window.c (window_body_lines): Now static.
18715
20ce5912
PE
18716 * image.c (gif_load): Rename local to avoid shadowing.
18717
9c4c5f81
PE
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
c0c5c8ae
PE
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)
01103c44
PE
18729 (total_free_floats, total_floats, total_free_intervals)
18730 (total_intervals, total_strings, total_free_strings):
c0c5c8ae
PE
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.
5a25e253
PE
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.
211a0b2a 18739 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
6349ae4d
PE
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.
e46bb31a 18743 (allocate_pseudovector): Don't use EMACS_INT when int would do.
c0c5c8ae 18744
c78baabf 18745 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
86f61a15 18746 (allocate_vectorlike): Check for ptrdiff_t overflow.
b6439961
PE
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.
c78baabf 18750
c9d624c6
PE
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.
c78baabf 18761
c9d624c6
PE
18762 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18763 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
640c8776 18764 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
c9d624c6 18765
353032ce
PE
18766 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18767
2bccce07
PE
18768 * alloc.c (Fmake_string): Check for out-of-range init.
18769
0ac30604
SM
187702011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18771
18772 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18773
c195f2de
JD
187742011-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
e10ac9f1
MR
187982011-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
2d3c217e 188112011-06-12 Paul Eggert <eggert@cs.ucla.edu>
4475bec4 18812
7b7f97e8 18813 Fix minor problems found by GCC 4.6.0 static checking.
4475bec4
PE
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.
4475bec4
PE
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
1384b89e
JB
188412011-06-12 Juanma Barranquero <lekktu@gmail.com>
18842
18843 * makefile.w32-in: Update dependencies.
18844 (LISP_H): Add lib/intprops.h.
18845
1100a63c
CY
188462011-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
6198ccd0
MR
188512011-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
b6e3633c
AS
188602011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18861
1ab0dee5
AS
18862 * image.c (imagemagick_load_image): Fix type mismatch.
18863 (Fimagemagick_types): Likewise.
18864
b6e3633c
AS
18865 * window.h (replace_buffer_in_windows): Declare.
18866
9397e56f
MR
188672011-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.
640c8776
SM
18873 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18874 Run Qbuffer_list_update_hook if allowed.
9397e56f
MR
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.
640c8776
SM
18885 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18886 Move switch-to-buffer to window.el.
9397e56f
MR
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.
640c8776
SM
18914 (Fset_window_buffer): Rewrite doc-string.
18915 Call Qrecord_window_buffer.
9397e56f
MR
18916 (keys_of_window): Move binding for other-window to window.el.
18917
b50691aa
CY
189182011-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
3f754b86
PE
189282011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18929
cca69397
PE
18930 * buffer.h: Include <time.h>, for time_t.
18931 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18932
109e28d0
PE
18933 Fix minor problems found by static checking.
18934
60737f02
PE
18935 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18936
4b66faf3
PE
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
109e28d0
PE
18944 * window.c (window_deletion_count, delete_deletable_window):
18945 Remove; unused.
46a4ce9e
PE
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
109e28d0 18953 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
33290528
PE
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.
f7e13da3 18960 (imagemagick_load_image): Don't use garbage pointer image_wand.
33290528 18961
3f754b86
PE
18962 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18963
2547adb1
CY
189642011-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
2c8e37d4
MR
189692011-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
440a42e3
EZ
189772011-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
562dd5e9
MR
189862011-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.
640c8776
SM
18997 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18998 Replace Fdelete_window calls with calls to Qdelete_window.
562dd5e9
MR
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.
640c8776
SM
19021 (saved_window, Fset_window_configuration, save_window_save):
19022 Do not handle orig_top_line, orig_total_lines, and
562dd5e9
MR
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
640c8776
SM
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
562dd5e9
MR
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
1a13852e
MR
190502011-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)
640c8776
SM
19065 (Fdelete_window_internal, Fresize_mini_window_internal):
19066 New functions.
1a13852e
MR
19067 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
19068
f3d1777e
MR
190692011-06-08 Martin Rudalics <rudalics@gmx.at>
19070
496e208e
MR
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.
b9e809c2 19075 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
496e208e 19076
f3d1777e
MR
19077 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
19078 Remove.
496e208e
MR
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)
640c8776
SM
19086 (Fset_window_next_buffers, Fset_window_clone_number):
19087 New functions.
496e208e
MR
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.
b9e809c2
MR
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.
f3d1777e 19106
abde8f8c
MR
191072011-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.
640c8776
SM
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.
fa8a67e6
MR
19117 (delete_all_subwindows): Take a window as argument and not a
19118 structure. Rewrite.
190b47e6
MR
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.
abde8f8c
MR
19122
19123 * window.h: Extern window_body_cols instead of
fa8a67e6
MR
19124 window_box_text_cols. delete_all_subwindows now takes a
19125 Lisp_Object as argument.
abde8f8c 19126
640c8776
SM
19127 * indent.c (compute_motion, Fcompute_motion):
19128 Use window_body_cols instead of window_box_text_cols.
abde8f8c 19129
fa8a67e6
MR
19130 * frame.c (delete_frame): Call delete_all_subwindows with root
19131 window as argument.
19132
a54e3482
DC
191332011-06-07 Daniel Colascione <dan.colascione@gmail.com>
19134
19135 * fns.c (Fputhash): Document return value.
19136
60002bf5
CY
191372011-06-06 Chong Yidong <cyd@stupidchicken.com>
19138
19139 * image.c (gif_load): Implement gif89a spec "no disposal" method.
19140
0c671da6 191412011-06-06 Paul Eggert <eggert@cs.ucla.edu>
ccd9a01a 19142
b862a52a 19143 Cons<->int and similar integer overflow fixes (Bug#8794).
77984278 19144
be44ca6c
PE
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
d1f3d2af
PE
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
dd52fcea
PE
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
7f9bbdbb
PE
19196 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
19197 if b->modtime has its maximal value.
19198
dfe18f82
PE
19199 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
19200
84acfcf0
PE
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
ccd9a01a
PE
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
d6d100dd
SM
192202011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
19221
19222 * window.h (Fwindow_frame): Declare.
19223
2b6148e4
PE
192242011-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
f230ecc9
MR
192312011-06-06 Martin Rudalics <rudalics@gmx.at>
19232
727e958e
MR
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
f230ecc9
MR
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.
bf60a96b
MR
19251 (Fwindow_buffer): Move up and rewrite doc-string.
19252 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
19253 (Fwindow_prev): New functions.
727e958e
MR
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.
d6d100dd
SM
19261 (Fset_frame_selected_window): Move here from frame.c.
19262 Marginal rewrite.
727e958e
MR
19263 (Fselected_window, select_window, Fselect_window): Move up in
19264 code. Minor doc-string fixes.
f230ecc9 19265
4d09bcf6
PE
192662011-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
810928a2
AS
192742011-06-05 Andreas Schwab <schwab@linux-m68k.org>
19275
172418ad
AS
19276 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
19277 format. (Bug#8806)
19278
43f862f7
AS
19279 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
19280
810928a2
AS
19281 * xfns.c (x_set_scroll_bar_default_width): Move declarations
19282 before statements.
19283
a059fe24
JD
192842011-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
989bf368
JB
192932011-06-05 Juanma Barranquero <lekktu@gmail.com>
19294
19295 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
19296
4b80f674
CY
192972011-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.
d6d100dd
SM
19301 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
19302 New error handlers.
4b80f674
CY
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.
de65b42c 19307 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
4b80f674 19308
99a33b77 193092011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
8b3115e7
DN
19310
19311 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
19312
99a33b77 193132011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14eca62f
YM
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
8264569d
EZ
193182011-06-04 Eli Zaretskii <eliz@gnu.org>
19319
19320 * bidi.c (bidi_level_of_next_char): Fix last change.
19321
57f97249
EZ
193222011-06-03 Eli Zaretskii <eliz@gnu.org>
19323
fec2107c 19324 Support bidi reordering of text covered by display properties.
57f97249 19325
fec2107c
EZ
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)
d6d100dd
SM
19330 (bidi_level_of_next_char, bidi_move_to_visually_next):
19331 Support character positions inside a run of characters covered by a
fec2107c
EZ
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.
d6d100dd
SM
19342 (bidi_resolve_explicit, bidi_resolve_weak):
19343 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
fec2107c
EZ
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.
c40e2fb2 19354
0e14fe90
EZ
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.
d6d100dd
SM
19361 Accept 3 additional arguments needed by handle_display_spec.
19362 This fixes incorrect cursor motion across display property with complex
0e14fe90
EZ
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.
fec2107c 19368 (handle_display_spec): New function, refactored from the
fc6f18ce
EZ
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.
d6d100dd
SM
19379 (compute_display_string_pos, compute_display_string_end):
19380 New functions.
fec2107c
EZ
19381 (push_it): Accept second argument POSITION, where pop_it should
19382 jump to continue iteration.
19383 (reseat_1): Initialize bidi_it.disp_pos.
fc6f18ce 19384
fec2107c
EZ
19385 * keyboard.c (adjust_point_for_property): Adjust the call to
19386 display_prop_intangible_p to its new signature.
fc6f18ce
EZ
19387
19388 * dispextern.h (struct bidi_it): New member frame_window_p.
fec2107c
EZ
19389 (bidi_init_it): Update prototypes.
19390 (display_prop_intangible_p): Update prototype.
d6d100dd
SM
19391 (compute_display_string_pos, compute_display_string_end):
19392 Declare prototypes.
fec2107c
EZ
19393 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19394 EMACS_INT.
fc6f18ce 19395
40087514 193962011-06-02 Paul Eggert <eggert@cs.ucla.edu>
0de4bb68 19397
57f53182
PE
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
ac32cd99 19414 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
3870d916
PE
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):
0de4bb68 19433 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
ac389d0c 19434 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
3870d916 19435 for hashes and hash indexes, instead of 'unsigned' and 'int'.
40087514
PE
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.
0de4bb68
PE
19440 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19441 need to be updated by these changes.
40087514
PE
19442 * fns.c (make_hash_table, maybe_resize_hash_table):
19443 Check for integer overflow with large hash tables.
0de4bb68
PE
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.
40087514
PE
19452 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19453 Rewrite to use FIXNUM_BITS, as this simplifies things.
0de4bb68
PE
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
698d32e2
DN
194592011-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
fd6fa53f
SM
194652011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19466
19467 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19468 Call minibuffer-inactive-mode.
19469
864db017
JB
194702011-05-31 Juanma Barranquero <lekktu@gmail.com>
19471
19472 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19473 Update dependencies.
19474
2ad0baf4
DN
194752011-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
4fcc2638
DN
194802011-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
c56e0fd5
DN
194882011-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
333d54da 194932011-05-31 Paul Eggert <eggert@cs.ucla.edu>
9cf9f756 19494
55d4c1b2 19495 Use 'inline', not 'INLINE'.
333d54da 19496 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
55d4c1b2
PE
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
738db178
DN
195042011-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
620c53a6
SM
195132011-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
e003a292
PE
195222011-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
ed008a6d
PE
195272011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19528
3687c2ef
PE
19529 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19530
ed008a6d
PE
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
d66c4c7c
CY
195362011-05-29 Chong Yidong <cyd@stupidchicken.com>
19537
19538 * image.c: Various fixes to ImageMagick code comments.
19539 (Fimagemagick_types): Doc fix.
19540
5fbc2025
PE
195412011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19542
0196f88a
PE
19543 Minor fixes prompted by GCC 4.6.0 warnings.
19544
19545 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19546
5fbc2025
PE
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
1dd3c2d9
CY
195512011-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
5ba6571d
WX
195622011-05-28 William Xu <william.xwl@gmail.com>
19563
19564 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19565 exiting (Bug#8239).
19566
3eaff834
JM
195672011-05-28 Jim Meyering <meyering@redhat.com>
19568
e1900994 19569 Avoid a sign-extension bug in crypto_hash_function.
3eaff834
JM
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
e1900994 19576 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
3eaff834 19577
0f6990a7
PE
195782011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19579
19580 Integer overflow fixes.
c8a9ca5a 19581
08686060
PE
19582 * dbusbind.c: Serial number integer overflow fixes.
19583 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
08686060
PE
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
59568bf0 19588 that was so large that it became a float. (Bug#8722)
08686060 19589
2d1fc3c7
PE
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
59568bf0 19596 silently wrapping negative numbers around. (Bug#8722)
30217ff0 19597 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
59568bf0 19598 (Bug#8722)
2d1fc3c7 19599
c8a9ca5a
PE
19600 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19601
519e1d69
PE
19602 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19603
6df6ae42 19604 ccl: Add integer overflow checks.
30569699
PE
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
847044ea 19611 improvement. (Bug#8719)
30569699 19612
c11285dc
PE
19613 * alloc.c (make_event_array): Use XINT, not XUINT.
19614 There's no need for unsigned here.
19615
fdccd48e
PE
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
37910ab2
PE
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
9173deec 19638 formats. (Bug#8668)
37910ab2 19639
2e6578fb
PE
19640 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19641
0ae6bdee
PE
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
de883a70
PE
19651 merge count_size_as_multibyte, parse_str_to_multibyte
19652 * character.c, character.h (count_size_as_multibyte):
fd6fa53f 19653 Rename from parse_str_to_multibyte; all uses changed.
de883a70
PE
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
2ff916cb
PE
196602011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19661
19662 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19663
f1b54466
PE
196642011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19665
fb1ac845
PE
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
f1b54466
PE
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
a9f737ee
CY
196752011-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.
620c53a6
SM
19688 (x_own_selection, x_get_local_selection, x_convert_selection):
19689 New arg, specifying work frame. Use terminal-local Vselection_alist.
a9f737ee
CY
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
e067f0c1
CY
197032011-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
620c53a6
SM
19710 of converted selections stored in converted_selections.
19711 Separate the XChangeProperty and SelectionNotify steps.
e067f0c1
CY
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
0f4aebc0
LL
197212011-05-26 Leo Liu <sdl.web@gmail.com>
19722
19723 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19724
e61124cd
YM
197252011-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.
ac389d0c 19731 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
e61124cd
YM
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
f16d9837
KH
197422011-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
e1b90ef6
LL
197472011-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
7400048f
PE
197562011-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
abb71cf4
CY
197642011-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
6307db39
PE
197712011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19772
19773 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19774
f3d4e0a4
CY
197752011-05-22 Chong Yidong <cyd@stupidchicken.com>
19776
19777 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19778
4d8ade89
YM
197792011-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
32078c8d
GM
197842011-05-21 Glenn Morris <rgm@gnu.org>
19785
19786 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
33cf345f
GM
19787 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19788 and add some more files.
32078c8d 19789
7285dc67
EZ
197902011-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
89d1bd22
PE
197952011-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
cd394be1 198022011-05-20 Kenichi Handa <handa@m17n.org>
31bfc35c
KH
19803
19804 * composite.c (find_automatic_composition): Fix previous change.
19805
b9704ad9
GM
198062011-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
4a720484
GM
198132011-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
a28d4396
KH
198242011-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
a2b1fa8e
JB
198302011-05-18 Juanma Barranquero <lekktu@gmail.com>
19831
19832 * makefile.w32-in: Update dependencies.
19833
8e1f5610
CS
198342011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19835
19836 * menu.c: Include limits.h (fixes the MS-Windows build broken by
7d7d0045 19837 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
8e1f5610 19838
7025ee00 198392011-05-18 Paul Eggert <eggert@cs.ucla.edu>
cb93f9be 19840
cdfa6eab
PE
19841 Fix some integer overflow issues, such as string length overflow.
19842
06d6db33
PE
19843 * insdel.c (count_size_as_multibyte): Check for string overflow.
19844
2b4560a8
PE
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
cb93f9be
PE
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
1a1f3366
PE
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.
9fbd6841
PE
19863 * msdos.c (mouse_get_pos): Likewise.
19864 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
1a1f3366
PE
19865 * w32gui.h (Time): Define by including "systime.h" rather than by
19866 declaring it ourselves. (Bug#8664)
19867
d4e3e4d3
PE
19868 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19869 * image.c (clear_image_cache): Likewise.
19870
f6a24d19
PE
19871 * term.c (term_mouse_position): Don't assume time_t wraparound.
19872
08dc5ae6
PE
19873 Be more systematic about user-interface timestamps.
19874 Before, the code sometimes used 'Time', sometimes 'unsigned long',
620c53a6
SM
19875 and sometimes 'EMACS_UINT', to represent these timestamps.
19876 This change causes it to use 'Time' uniformly, as that's what X uses.
08dc5ae6
PE
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
8e55734a
PE
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
86db42d2 19903 apart (about 25 days). (Bug#8664)
8e55734a 19904
841f1b75 19905 * xselect.c (last_event_timestamp): Remove duplicate decl.
6434756c 19906 (x_own_selection): Remove needless cast to unsigned long.
841f1b75 19907
3e26f69c
PE
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.
d230cb74
PE
19911 * frame.h (struct frame): Use int for menu_bar_items_used
19912 instead of EMACS_INT, since it always fits in int.
3e26f69c 19913
5cc152c0
PE
19914 * menu.c (grow_menu_items): Check for int overflow.
19915
d89eb65e
PE
19916 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19917
5235bd3e
PE
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
bc827e23
PE
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
78eb494e
PE
19932 * window.c (size_window): Avoid needless test at loop start.
19933
04f2d78b
CB
199342011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19935
19936 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19937
d2fc7e3d 199382011-05-12 Drew Adams <drew.adams@oracle.com>
e531bdff
DA
19939
19940 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19941
d2fc7e3d 199422011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7db47798
YM
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
04f2d78b
CB
19948 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19949 Rename local vars `left' and `width' to `bar_area_x' and
7db47798
YM
19950 `bar_area_width', respectively.
19951 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19952 background extension.
19953
79b70037
GM
199542011-05-10 Jim Meyering <meyering@redhat.com>
19955
19956 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19957
2f142cc5
JB
199582011-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
57679c86
AS
199632011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19964
19965 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19966
888c9e86
EZ
199672011-05-07 Eli Zaretskii <eliz@gnu.org>
19968
b0512a1d
EZ
19969 * w32console.c (Fset_screen_color): Doc fix.
19970 (Fget_screen_color): New function.
19971 (syms_of_ntterm): Defsubr it.
19972
7285dc67
EZ
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'.
888c9e86
EZ
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
4d3fcc8e
BK
199812011-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
b4289b64
MA
199982011-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
af4c0e28
JB
200082011-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
c51453d9
EZ
200142011-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
8ff0ac3c 200192011-05-06 Paul Eggert <eggert@cs.ucla.edu>
c032b5f8 20020
4c4b566b
PE
20021 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
20022
aab2b9b5
PE
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
c378da0b
PE
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
288b08c7
PE
20029 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
20030 bytes.
20031
e3601888
PE
20032 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
20033
db6c0e74
PE
20034 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
20035
dd5963ea
PE
20036 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
20037
88c9450f
PE
20038 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
20039
2f9442b8
PE
20040 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
20041
c032b5f8
PE
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
2d38271b 20045 32-bit int (Bug#8600).
a108c10b
PE
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
48e400f0 20053 not a digit in any supported base. (Bug#8602)
a108c10b 20054
ad5f9eea
PE
20055 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
20056
aec1708a
PE
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
47be4ab5
PE
20061 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
20062
371cac43
PE
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>.
04f2d78b
CB
20066 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
20067 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
371cac43 20068
d01a7826
PE
20069 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
20070 (EMACS_UINTPTR): Likewise, with uintptr_t.
20071
7fd47d5c
PE
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.
122b0c86
PE
20076 However, temporarily disable this change unless the temporary
20077 symbol WIDE_EMACS_INT is defined.
7fd47d5c 20078
8727937b
PE
20079 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
20080
8ac068ac
PE
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
ede49d71
PE
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
2f30ecd0
PE
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
2a866e7b
PE
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
51639eac
PE
20130 * eval.c (Fautoload): Don't double-shift a pointer.
20131
92394119
PE
20132 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
20133
dbdb9a7c
JB
201342011-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
db7a0b4f
AS
201392011-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
cd394be1 201442011-05-05 Eli Zaretskii <eliz@gnu.org>
fab624aa
EZ
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
f7ff1b0f 201492011-05-05 Chong Yidong <cyd@stupidchicken.com>
45cb8994
CY
20150
20151 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
20152
639c109b
TZ
201532011-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
d2127135
JB
201582011-05-05 Juanma Barranquero <lekktu@gmail.com>
20159
20160 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
20161 Update dependencies.
20162
e968f4f3
JB
201632011-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
84d358f0
JB
201702011-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
0898ca10
JB
201762011-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
ff4de4aa
TZ
202212011-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
abe95abb
JD
202272011-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
e16e55d4
JB
202322011-05-02 Juanma Barranquero <lekktu@gmail.com>
20233
20234 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20235
bafcf6a5
JB
202362011-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
e7a6747f
AS
202482011-05-01 Andreas Schwab <schwab@linux-m68k.org>
20249
19ed11ba
AS
20250 * callproc.c: Indentation fixup.
20251
e7a6747f 20252 * sysdep.c (wait_for_termination_1): Make static.
04f2d78b
CB
20253 (wait_for_termination, interruptible_wait_for_termination):
20254 Move after wait_for_termination_1.
e7a6747f 20255
1ef14cb4
LMI
202562011-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
330d880c
EZ
202662011-04-30 Eli Zaretskii <eliz@gnu.org>
20267
8db90b73
EZ
20268 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
20269 rather than `XVECTOR (FOO)->size'.
20270
330d880c
EZ
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
15cbd324
EZ
202752011-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
202892011-04-21 Eli Zaretskii <eliz@gnu.org>
afda1437 20290
ae940cca
EZ
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
03ab8921
EZ
20296 * window.c (window_scroll_line_based): Use a marker instead of
20297 simple variables to record original value of point. (Bug#7952)
20298
afda1437
EZ
20299 * doprnt.c (doprnt): Fix the case where a multibyte sequence
20300 produced by %s or %c overflows available buffer space. (Bug#8545)
20301
f76dee0c
PE
203022011-04-28 Paul Eggert <eggert@cs.ucla.edu>
20303
20304 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
283cdbef 20305 (SIZE_MAX): Move defn after all includes, as they might #define it.
f76dee0c 20306
fdc5744d
JB
203072011-04-28 Juanma Barranquero <lekktu@gmail.com>
20308
20309 * w32.c (init_environment): Warn about defaulting HOME to C:\.
20310
638f053a
JB
203112011-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
d178f871
EZ
203192011-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
b124fd93
JB
203242011-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
e810457d
PE
203292011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20330
20331 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
20332
ea51cceb
JB
203332011-04-27 Juanma Barranquero <lekktu@gmail.com>
20334
20335 * makefile.w32-in: Update dependencies.
20336
94dcfacf
EZ
203372011-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
f61f41d7
PE
203502011-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
96fb4434
PE
203552011-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
671875da 203602011-04-26 Paul Eggert <eggert@cs.ucla.edu>
eab3844f 20361
69e9b5a3
PE
20362 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
20363
b5f869a7 20364 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
7754e151 20365 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
8d4c3955 20366 Remove unused local.
c8926152 20367 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
080e5a8d 20368
841a1577 20369 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
04f2d78b
CB
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
eab3844f
PE
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
f904488f 20377 vectorlike_header that documents the constraints on layout of vectors
eab3844f
PE
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.
f904488f
PE
20381 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20382 the size member.
eab3844f
PE
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.
f904488f 20388 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
eab3844f
PE
20389 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20390 since Lisp_Subr is a special case (no "next" field).
04f2d78b
CB
20391 (ASIZE): Now uses header.size rather than size.
20392 All previous uses of XVECTOR (foo)->size replaced to use this macro,
f904488f
PE
20393 to avoid the hassle of writing XVECTOR (foo)->header.size.
20394 (struct vectorlike_header): New type.
eab3844f
PE
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
f904488f 20402 struct vectorlike_header member. All uses of "size" and "next" members
eab3844f
PE
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
0df1eac5
PE
20419 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20420
847ab9d1 20421 Make the Lisp reader and string-to-float more consistent (Bug#8525)
452f4150
PE
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.
bc0a5c13 20432 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
d78050d6 20433 (read1): Do not accept +. and -. as integers; this
452f4150
PE
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.
04f2d78b 20441 (digit_to_number): Move here from data.c. Make it static inline.
452f4150
PE
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
bc0a5c13 20447 no longer mishandles examples like "1.0e+". Use strtoumax,
d78050d6
PE
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.
452f4150 20450
67769ffc
PE
20451 * textprop.c (set_text_properties_1): Rewrite for clarity,
20452 and to avoid GCC warning about integer overflow.
20453
c20db43f
PE
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.
37aa2f85
PE
20460 (offset_intervals): Tell GCC not to worry about length overflow
20461 when negating a negative length.
c20db43f 20462
2538aa2f
PE
20463 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20464 (overrun_check_free): Likewise.
20465
f2d3008d
PE
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
ec8df744
PE
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
640ee02d
PE
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
6048fb2a
PE
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
fa3c87e1
PE
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
2172544b
PE
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
9b821a21
PE
20492 * fns.c (internal_equal): Don't assume size_t fits in int.
20493
3c616cfa
PE
20494 * alloc.c (compact_small_strings): Tighten assertion a little.
20495
c2982e87
PE
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.
61bdb816 20501 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
c2982e87
PE
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.
6f04d126
PE
20514 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20515 avoiding the 0 flag, which is not portable.
c2982e87
PE
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.
6f04d126 20521 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
c2982e87
PE
20522 (x_stop_queuing_selection_requests): Likewise.
20523 (x_get_window_property): Don't truncate byte count to an 'int'
20524 when tracing.
0b432f21 20525
5e073ec7
PE
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
36372bf9
PE
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
0b432f21
PE
20540 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20541 This doesn't fix a bug but makes the code clearer.
bfd1c781
PE
20542 (string_overrun_cookie): Now const. Use initializers that
20543 don't formally overflow signed char, to avoid warnings.
000098c1
PE
20544 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20545 can cause Emacs to crash when string overrun checking is enabled.
c7bda33c
PE
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).
d0f4e1f5 20549 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
0b432f21 20550
895009e1
JB
205512011-04-26 Juanma Barranquero <lekktu@gmail.com>
20552
20553 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20554
6a7a1b0b
TZ
205552011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20556
20557 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
b5f869a7 20558 supposed to be handshaking. (Bug#8556)
6a7a1b0b
TZ
20559 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20560
841a1577 205612011-04-26 Daniel Colascione <dan.colascione@gmail.com>
0438ce91
DC
20562
20563 * lisp.h (Qdebug): List symbol.
895009e1 20564 * eval.c (Qdebug): Restore global linkage.
0438ce91
DC
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
f2d3ba6f
DN
205692011-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
42ce4c63
TZ
205742011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20575
20576 * w32.c (emacs_gnutls_push): Fix typo.
20577
825cd63c
EZ
205782011-04-25 Eli Zaretskii <eliz@gnu.org>
20579
fb11d64d
EZ
20580 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20581 "cast to pointer from integer of different size".
20582
825cd63c
EZ
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
e061a11b
TZ
205922011-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.
9173deec
JB
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.
e061a11b
TZ
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
206172011-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
fa6996bc
EZ
206272011-04-24 Eli Zaretskii <eliz@gnu.org>
20628
eb35682e
EZ
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
e2ad650c
EZ
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
1b2de274
EZ
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
75f1671a 20652 required by POSIX.
1b2de274 20653
762b15be
EZ
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
f1052e5d
EZ
20663 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20664 changes in globals.h immediately force recompilation.
762b15be
EZ
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.
f1052e5d 20668
fa6996bc
EZ
20669 * character.c (Fchar_direction): Function deleted.
20670 (syms_of_character): Don't defsubr it.
20671 <char-direction-table>: Deleted.
20672
e6c3da20
EZ
206732011-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.
04f2d78b
CB
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.
e6c3da20
EZ
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
4ffd0d6b 207212011-04-23 Eli Zaretskii <eliz@gnu.org>
97a93095
EZ
20722
20723 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20724
20725 * w32.c: Include <time.h>.
20726 (sys_localtime): New function.
20727
4ffd0d6b 207282011-04-23 Chong Yidong <cyd@stupidchicken.com>
c17819f4
CY
20729
20730 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20731
4ffd0d6b 20732 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
aac0c6e3 20733
4ffd0d6b 207342011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
aac0c6e3 20735
4ffd0d6b
GM
20736 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20737 zombies (Bug#8467).
aac0c6e3 20738
04c56954
EZ
207392011-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
16a43933
CY
207472011-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
4581706e
CY
207572011-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
4887c6e2 207662011-04-16 Paul Eggert <eggert@cs.ucla.edu>
764430a3 20767
fd35b6f9
PE
20768 Static checks with GCC 4.6.0 and non-default toolkits.
20769
5c1ccb01
PE
20770 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20771
006c5daa
PE
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
efc736d3
PE
20776 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20777
4e2fe2e6
PE
20778 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20779
f97334a2
PE
20780 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20781
4e75f29d
PE
20782 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20783 Define only if needed.
20784
90efadd1
PE
20785 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20786 by pacifying GCC about it. Maybe it's time to retire it?
875975e9 20787 * xfaces.c (USG, __TIMEVAL__): Likewise.
90efadd1 20788
3c647824
PE
20789 * dispextern.h (struct redisplay_interface): Rename param
20790 to avoid shadowing.
e264f262 20791 * termhooks.h (struct terminal): Likewise.
761383f4 20792 * xterm.c (xembed_send_message): Likewise.
3c647824 20793
b58c5c4a
PE
20794 * insdel.c (make_gap_smaller): Define only if
20795 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20796
cad59032
PE
20797 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20798 it.
20799
c339dc2e
PE
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
91a3e27b
PE
20803 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20804
399c71d3 20805 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
7a3fb125 20806
8ffc96f5
PE
20807 * xfns.c (x_real_positions): Mark locals as initialized.
20808
eef9bc79
PE
20809 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20810
098db9dd
PE
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.
dda3aedd
PE
20813 (x_dispatch_event): Declare static if USE_GTK, and
20814 define if USE_GTK || USE_X_TOOLKIT.
098db9dd 20815 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
dda3aedd 20816 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
841a1577
JB
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.
098db9dd 20819
eb18f6cc
PE
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
1fe72bf8
PE
20826 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20827
60d9e1db
PE
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
39261c26
PE
20832 * keyboard.c (make_lispy_event): Remove unused local var.
20833
018c5e19
PE
20834 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20835 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20836
63d2b86e
PE
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
aefd87e1
PE
20842 * xgselect.c (xgselect_initialize): Check vs interface
20843 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20844
bf501fb9
PE
20845 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20846
e9829fdf
PE
20847 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20848 to read-only memory.
20849
1086c095
PE
20850 * fns.c (vector): Remove; this old hack is no longer needed.
20851
2baccd04 20852 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
401f10cb 20853 Remove unused var.
dde42981 20854 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
2baccd04 20855
72391843 20856 * xrdb.c (x_load_resources): Omit unused local.
3565b346 20857
436c16df 20858 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
8a94ea33 20859 (x_window): Rename locals to avoid shadowing.
dc5ddd85 20860 (USG): Use the kludged USG macro, to pacify gcc.
436c16df 20861
92bb796d 20862 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
bbbef9e1 20863 (x_term_init): Remove local to avoid shadowing.
92bb796d 20864
764430a3 20865 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
4887c6e2
PE
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
d1dfb56c
EZ
208702011-04-16 Eli Zaretskii <eliz@gnu.org>
20871
c4354cb4
EZ
20872 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20873
d1dfb56c
EZ
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
04f2d78b
CB
20880 * textprop.c (verify_interval_modification, interval_of):
20881 Declare arguments EMACS_INT.
d1dfb56c
EZ
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
613052cd
BK
209062011-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
4170f62f 209162011-04-15 Paul Eggert <eggert@cs.ucla.edu>
3e047f51 20917
71b41406
PE
20918 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20919
9587a89d
PE
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.
273a5f82
PE
20928 (emacs_read, emacs_write): Remove check for negative size, as the
20929 Emacs source code has been audited now.
9587a89d
PE
20930 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20931 (emacs_read, emacs_write): Use it.
273a5f82
PE
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.
9587a89d 20935 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
273a5f82 20936
3e047f51
PE
20937 * sound.c: Don't assume sizes fit in 'int'.
20938 (struct sound_device.period_size, alsa_period_size):
9c3c56a7 20939 Return EMACS_INT, not int.
3e047f51 20940 (struct sound_device.write, vox_write, alsa_write):
9c3c56a7
PE
20941 Accept EMACS_INT, not int.
20942 (wav_play, au_play): Use EMACS_INT to store sizes and to
3e047f51
PE
20943 record read return values.
20944
cc39a9db
BK
209452011-04-15 Ben Key <bkey76@gmail.com>
20946
c9d0ec6d
JB
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.
cc39a9db 20951
6c60eb9f
SM
209522011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20953
20954 * process.c (Qprocessp): Don't declare static.
20955 * lisp.h (Qprocessp): Declare again.
20956
7990b61a
JB
209572011-04-15 Juanma Barranquero <lekktu@gmail.com>
20958
20959 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20960
5d4cb038
PE
209612011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20962
8bd7b830 20963 Improve C-level modularity by making more things 'static'.
cd64ea1d 20964
e3b27b31
PE
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
5d4cb038
PE
20973 * sysdep.c (croak): Now static, if
20974 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20975 * syssignal.h (croak): Declare only if not static.
69003fd8
PE
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.
93ea6e8f 20980
e87b6180
PE
20981 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20982 Define only if USE_LUCID.
20983
ac64929e
PE
20984 * xrdb.c (x_customization_string, x_rm_string): Now static.
20985
6f37259d
PE
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
1683e3ab
PE
20989 * xdisp.c (draw_row_with_mouse_face): Now static.
20990 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20991
de9c2632
PE
20992 * window.h (check_all_windows): Mark externally visible.
20993
2b96acb7
PE
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
50436f33
PE
21000 * textprop.c (interval_insert_behind_hooks): Now static.
21001 (interval_insert_in_front_hooks): Likewise.
21002
64520e5c
PE
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
8bd7b830 21010 HAVE_WINDOW_SYSTEM.
64520e5c
PE
21011 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
21012 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
21013
1fa53021
PE
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
d4b43b22
PE
21022 * syntax.c (syntax_temp): Define only if !__GNUC__.
21023
b7c513d0
PE
21024 * sound.c (current_sound_device, current_sound): Now static.
21025
989b29ad
PE
21026 * search.c (searchbufs, searchbuf_head): Now static.
21027
13a55a78
PE
21028 * scroll.c (scroll_cost): Remove; unused.
21029 * dispextern.h (scroll_cost): Remove decl.
21030
de68a1fc
PE
21031 * region-cache.h (pp_cache): Mark as externally visible.
21032
40ccffa6
PE
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
ad64fc97
PE
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
adddb265
PE
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
1717ede2
PE
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
fa5fb2bc
PE
21057 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
21058
1e3890d1
PE
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
8a1414fa
PE
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
93ea6e8f
PE
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
77382fcc
PE
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):
4889fc82 21097 (adjust_after_replace, signal_before_change): Now static.
77382fcc
PE
21098 (adjust_after_replace_noundo): Remove; unused.
21099 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
4889fc82 21100 (signal_before_change): Remove decls.
77382fcc 21101
9306c32e
PE
21102 * indent.c (val_compute_motion, val_vmotion): Now static.
21103
cd44d2eb
PE
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
ad9a7a06
PE
21110 * fringe.c (standard_bitmaps): Now static.
21111 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
21112
81626931
PE
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
239f9db9
PE
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.
04f2d78b
CB
21132 * xfaces.c (face_at_string_position):
21133 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
239f9db9
PE
21134 since 0 is always ASCII.
21135
dfcf3579
PE
21136 * fns.c (weak_hash_tables): Now static.
21137
5045092b
PE
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
57a96f5c
PE
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
35f08c38
PE
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
f44bd759
PE
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
b532497d
PE
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
1675728f
PE
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
e4cebfca
PE
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
5bf46f05
PE
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
435f4c28
PE
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
8524aef3
PE
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
16390cd2
PE
21231 * dired.c (file_name_completion): Now static.
21232
21233 * dbusbind.c (xd_in_read_queued_messages): Now static.
21234
a25f4dfa
PE
21235 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21236 * data.c (circular_list_error): Remove.
21237
14a9c8df
PE
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
04f2d78b
CB
21242 * coding.h (coding, code_convert_region, encode_coding_gap):
21243 Remove decls.
74ab6df5
PE
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
38dfbee1
PE
21248 * chartab.c (chartab_chars, chartab_bits): Now static.
21249
a2cb4e63
PE
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
127198fd
PE
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
d85b608f
PE
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
31cd66f3
PE
21262 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
21263 * lisp.h: Remove these decls.
21264
c358e587
PE
21265 * buffer.c (buffer_count): Remove unused var.
21266
e78aecca
PE
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
e192d7d3 21273 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
04f2d78b 21274 * atimer.h (run_all_atimers): Remove; not exported.
e192d7d3 21275
92470028
PE
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
244ed907
PE
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
61c2b50e 21302 Declare Lisp_Object Q* variables to be 'static' if not exported.
955cbe7b
PE
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
95c82688
PE
21318 * lisp.h (DEFINE_FUNC): Make sname 'static'.
21319
16a97296
PE
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.
8bd7b830
PE
21325 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
21326 (Finit_image_library):
16a97296
PE
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.
95c82688 21333
16a97296
PE
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
785bbd42
PE
21375 * editfns.c (Fformat): Remove unreachable code.
21376
8b913b57
AS
213772011-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
a6744a35
EZ
213822011-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
e7974947
AS
213872011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21388
baad03f0
AS
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
e7974947
AS
21397 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21398 (overrun_check_free): Protoize.
21399
28272684
PE
214002011-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
11997c76
EZ
214082011-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
e896f03c 21412 is outside the buffer's accessible region. (Bug#8468)
11997c76 21413
8a2cbd72
EZ
214142011-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
4073e537 214282011-04-10 Paul Eggert <eggert@cs.ucla.edu>
eb3f1cc8 21429
1ebfdcb6
PE
21430 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21431
b2ded58d
PE
21432 Fix more problems found by GCC 4.6.0's static checks.
21433
7d66342c
PE
21434 * xdisp.c (vmessage): Use a better test for character truncation.
21435
bbf47d44
PE
21436 * charset.c (load_charset_map): <, not <=, for optimization,
21437 and to avoid potential problems with integer overflow.
9248994d 21438 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
f9a68bc5 21439 * casetab.c (set_identity, shuffle): Likewise.
3ab1c7ce 21440 * editfns.c (Fformat): Likewise.
1e69125e 21441 * syntax.c (skip_chars): Likewise.
3befa583 21442
e3019616
PE
21443 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21444 This also lets GCC 4.6.0 generate slightly better loop code.
21445
becfa255
PE
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
dae0cd48
PE
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
76032d70
PE
21459 * keyboard.c (read_char): Remove unused var.
21460
eb3f1cc8
PE
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
70476b54
PE
21470 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21471
12020a9e
PE
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).
ea6c7ae6
PE
21475 * lisp.h (doprnt): Remove.
21476 * Makefile.in (base_obj): Remove doprnt.o.
21477 * deps.mk (doprnt.o): Remove.
21478
5fdb398c
PE
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.
61bdb816 21483 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
5fdb398c
PE
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
b189fa66
PE
21500 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21501
bff87ef0
PE
21502 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21503
7e2cac20
PE
21504 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21505
ce4d90b5
PE
21506 * xterm.c (x_catch_errors): Remove duplicate declaration.
21507
266c9547
PE
21508 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21509
79c49ad2
PE
21510 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21511
368f4090
JM
215122011-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
a32d4040
CY
215222011-04-09 Chong Yidong <cyd@stupidchicken.com>
21523
21524 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21525
8546720e 215262011-04-09 Chong Yidong <cyd@stupidchicken.com>
aac0c6e3 21527
04f2d78b
CB
21528 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21529 Use unsigned char, to match FcChar8 type definition.
aac0c6e3 21530
8546720e
GM
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.
aac0c6e3 21535
0a2f5c1a 215362011-04-09 Eli Zaretskii <eliz@gnu.org>
a53e2e89
EZ
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
8546720e 215772011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
0080dc6b
SS
21578
21579 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21580
4e19a977
CS
215812011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21582
21583 * process.c (Fformat_network_address): Doc fix.
21584
87302331
R
215852011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21586
ee7683eb 21587 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
87302331 21588
cbb59342
CY
215892011-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.
e0d38eeb 21594 (syms_of_keyboard): Use DEFSYM macro.
cbb59342
CY
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
e67a13ab
CY
216002011-04-06 Chong Yidong <cyd@stupidchicken.com>
21601
04f2d78b
CB
21602 * process.c (Flist_processes): Remove to Lisp.
21603 (list_processes_1): Delete.
e67a13ab 21604
973f782d
EZ
216052011-04-06 Eli Zaretskii <eliz@gnu.org>
21606
7c106b1e
EZ
21607 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21608
973f782d
EZ
21609 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21610
41cf7d1a 216112011-04-06 Paul Eggert <eggert@cs.ucla.edu>
27ccc379 21612
ca23cc88
PE
21613 Fix more problems found by GCC 4.6.0's static checks.
21614
f390e2d5
PE
21615 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21616
42eea0d0
PE
21617 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21618
b69769da 21619 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
1e973bc7 21620
f9541e84
PE
21621 * xdisp.c (vmessage): Mark as a printf-like function.
21622
13841b55
PE
21623 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21624
c136c10f
PE
21625 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21626
5e2d4a30
PE
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
583f48b9
PE
21632 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21633
b25d760e
PE
21634 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21635 This avoids several warnings with gcc -Wstrict-overflow.
d5efd1d1
PE
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.
b25d760e 21642
bc7b6697 21643 * xfont.c (xfont_text_extents): Remove var that was set but not used.
625a3eb1 21644 (xfont_open): Avoid unnecessary tests.
bc7b6697 21645
27ccc379
PE
21646 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21647
dcd5c89a
PE
21648 * composite.h, composite.c (composition_gstring_put_cache):
21649 Use EMACS_INT, not int, for length.
21650
b13a45c6
PE
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
1e792e4d
PE
21657 * textprop.c (set_text_properties_1): Change while to do-while,
21658 since the condition is always true at first.
21659
dc6c6455 21660 * intervals.c (graft_intervals_into_buffer): Mark var as used.
aa86731f
PE
21661 (interval_deletion_adjustment): Return unsigned value.
21662 All uses changed.
dc6c6455 21663
aba7731a
PE
21664 * process.c (list_processes_1, create_pty, read_process_output):
21665 (exec_sentinel): Remove vars that were set but not used.
afd4052b 21666 (create_pty): Remove unnecessary "volatile"s.
bc57d757 21667 (Fnetwork_interface_info): Avoid possibility of int overflow.
82eaa333 21668 (read_process_output): Do adaptive read buffering even if carryover.
fe07cdfa 21669 (read_process_output): Simplify nbytes computation if buffered.
aba7731a 21670
fdfc4bf3
PE
21671 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21672
fca8fe46 21673 * syntax.c (scan_words): Remove var that was set but not used.
12cbf13f 21674 (update_syntax_table): Use unsigned instead of int.
fca8fe46 21675
06a0259a 21676 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
3c346cc3 21677 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
e6eb4e9e 21678 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
06a0259a 21679
e7b9e80f
PE
21680 * print.c (print_error_message): Avoid int overflow.
21681
56201685
PE
21682 * font.c (font_list_entities): Redo for clarity,
21683 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21684
78834453 21685 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
790771b1 21686 (font_score): Avoid potential overflow in diff calculation.
78834453 21687
0bc0b309 21688 * fns.c (substring_both): Remove var that is set but not used.
8cd55cb4 21689 (sxhash): Redo loop for clarity and to avoid wraparound warning.
0bc0b309 21690
e610eaca
PE
21691 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21692
b895abce
PE
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
1f1d9321 21697 * search.c (boyer_moore, wordify): Remove vars set but not used.
6f076cc7 21698 (wordify): Omit three unnecessary tests.
1f1d9321 21699
c59478bc
PE
21700 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21701 All callers changed. This avoids the need for an unused var.
21702
79b73827
PE
21703 * casefiddle.c (casify_region): Remove var that is set but not used.
21704
a4db5dfe
PE
21705 * dired.c (file_name_completion): Remove var that is set but not used.
21706
43aae36e
PE
21707 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21708
2a47c44d 21709 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
163c5f32 21710 (Finsert_file_contents): Remove unnecessary code checking fd.
2a47c44d 21711
a37c69bf
PE
21712 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21713 Check for integer overflow on size calculations.
21714
328ab8e7
PE
21715 * buffer.c (Fprevious_overlay_change): Remove var that is set
21716 but not used.
21717
e5a2a5cb
PE
21718 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21719 Remove vars that are set but not used.
8d84a6eb 21720 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
6b043475 21721 (timer_check_2): Mark vars as initialized.
e5a2a5cb 21722
a60e5f68
PE
21723 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21724
f661cb61 21725 * image.c (lookup_image): Remove var that is set but not used.
35fa624f 21726 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
f661cb61 21727
f0397f5a
PE
21728 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21729 that are set but not used.
21730
8664db06 21731 * xfns.c (make_invisible_cursor): Don't return garbage
03733ee7 21732 if XCreateBitmapFromData fails (Bug#8410).
8664db06 21733
6abdaa4a
PE
21734 * xselect.c (x_get_local_selection, x_handle_property_notify):
21735 Remove vars that are set but not used.
21736
0ce7538d 21737 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
6abdaa4a 21738 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
0ce7538d 21739
9ae848fc
PE
21740 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21741 Remove var that is set but not used.
0b918413
PE
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.
9ae848fc 21745
a5a62657
PE
21746 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21747 (map_tty_color) [!defined MSDOS]: Likewise.
21748
5c5cdd39
PE
21749 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21750
66ebf983
PE
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
1be4d761
PE
21758 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21759 that is set but not used.
21760
47553fa8
PE
21761 * print.c (print_object): Remove var that is set but not used.
21762
1f7196bf 21763 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
d1fdcab7
PE
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.
fdb61804
PE
21772 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21773 ../lib/careadlinkat.h.
d1fdcab7 21774
f84c17c7
SM
217752011-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
ef3862ad
JD
217802011-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
376a7006
JB
217852011-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
6ca3801d
JM
217972011-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
d8e2b5ba
JB
218032011-04-02 Juanma Barranquero <lekktu@gmail.com>
21804
21805 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21806
8c74fcbd
JD
218072011-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
7200d79c
SM
218122011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21813
03408648 21814 Add lexical binding.
7200d79c 21815
03408648
SM
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.
ca105506
SM
21833
21834 * image.c (parse_image_spec): Use Ffunctionp.
ca105506 21835
03408648
SM
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.
23aba0ea 21854
23aba0ea 21855 * doc.c (Fdocumentation, store_function_docstring):
03408648 21856 * data.c (Finteractive_form): Handle closures.
23aba0ea 21857
03408648
SM
21858 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21859 interactive spec.
ba83908c 21860
04f2d78b
CB
21861 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21862 New byte-codes.
03408648
SM
21863 (exec_byte_code): New function extracted from Fbyte_code to handle new
21864 calling convention for byte-code-functions. Add new byte-codes.
ba83908c 21865
03408648 21866 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
e2abe5a1 21867
03408648 21868 * alloc.c (Fmake_symbol): Init new `declared_special' field.
e2abe5a1 21869
e2abce01
JB
218702011-03-31 Juanma Barranquero <lekktu@gmail.com>
21871
21872 * xdisp.c (redisplay_internal): Fix prototype.
21873
63696a73 218742011-03-31 Eli Zaretskii <eliz@gnu.org>
09725d26 21875
63696a73 21876 * xdisp.c (SCROLL_LIMIT): New macro.
04f2d78b
CB
21877 (try_scrolling): Use it when setting scroll_limit.
21878 Limit scrolling to 100 screen lines.
63696a73
EZ
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
09725d26
EZ
21893 threshold of 100 lines for never-recentering scrolling.
21894
e4cc2dfc
JB
218952011-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
1c470562
SM
219092011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21910
44f230aa
SM
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
1c470562
SM
21916 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21917
888adce9
ZK
219182011-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
f838ed7b
PE
219232011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21924
77861b95
PE
21925 Fix more problems found by GCC 4.6.0's static checks.
21926
de6dbc14
PE
21927 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21928 Remove unused local var.
21929
f838ed7b
PE
21930 * editfns.c (Fmessage_box): Remove unused local var.
21931
792c7b2b
PE
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.
c499e557 21935 * window.c (shrink_windows): Omit unused local var.
b01a1c29 21936 * menu.c (digest_single_submenu): Omit unused local var.
0bc32927
PE
21937 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21938 Omit unused local var.
21939
ba0165e1
PE
21940 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21941 Don't assume string length fits in int.
32ad8845 21942 (keyremap_step, read_key_sequence): Use size_t for sizes.
48011560 21943 (read_key_sequence): Don't check last_real_key_start redundantly.
ba0165e1 21944
3c59b4c9
PE
21945 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21946 instead of alloca (Bug#8344).
21947
a3eed478 21948 * eval.c (Fbacktrace): Don't assume nargs fits in int.
5d5d959d 21949 (Fbacktrace_frame): Don't assume nframes fits in int.
a3eed478 21950
eb4d412d
PE
21951 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21952
1658b401
PE
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.
44f730c8 21959
9a2c6e05
PE
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
03d0a109
PE
21964 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21965
44f730c8
PE
21966 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21967
fe75f926
PE
21968 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21969 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21970
ffa8c828
PE
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
c5101a77
PE
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.
77861b95 21980 All variadic functions and their callers changed accordingly.
c5101a77
PE
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
dd3f25f7
PE
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
461c2ab9
JB
219962011-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
f6d62986
SM
220122011-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
1db5b1ad
JB
220292011-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
5ffb62aa
JD
220532011-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
461c2ab9 220572011-03-27 Anders Lindgren <andlind@gmail.com>
f0a1382a
JD
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
5c380ffb
JD
220682011-03-27 Jan Djärv <jan.h.d@swipnet.se>
22069
22070 * nsmenu.m (runDialogAt): Remove argument to timer_check.
22071
9af30bdf
GM
220722011-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
e2abce01
JB
220812011-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
f868cd8a
JB
220862011-03-26 Juanma Barranquero <lekktu@gmail.com>
22087
59eb0929
JB
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
f868cd8a
JB
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
2ecf6fdb
CY
221162011-03-25 Chong Yidong <cyd@stupidchicken.com>
22117
22118 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
22119 incurred during fontification.
22120
6b1f9ba4
JB
221212011-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
0f4a96b5
JB
221292011-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
1149507c
JB
221602011-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
9c88f339
JB
221652011-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
dee091a3
JD
221872011-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.
0f4a96b5 22202 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
e9fce1ac 22203 unconditionally since it does the check itself.
dee091a3 22204
2c520ab5 222052011-03-23 Paul Eggert <eggert@cs.ucla.edu>
f0641eff 22206
c9c49752
PE
22207 Fix more problems found by GCC 4.5.2's static checks.
22208
8abc3f12
PE
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
a2d26660
PE
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
b12ef411 22216 of objects (Bug#8318).
a2d26660 22217
916c72e9
PE
22218 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
22219 that could (at least in theory) be that large.
22220
19ab8a18
PE
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.
b7cbbd6f
PE
22225 (pint2hrstr): Simplify and tune code slightly.
22226 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
19ab8a18 22227
f0641eff
PE
22228 * scroll.c (do_scrolling): Work around GCC bug 48228.
22229 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
22230
7f650bb9
PE
22231 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22232 This also avoids a warning with gcc -Wstrict-overflow.
39f5e519
PE
22233 (validate_x_resource_name): Simplify count usage.
22234 This also avoids a warning with gcc -Wstrict-overflow.
7f650bb9 22235
37dd57d1
PE
22236 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22237 fail (Bug#8306).
81e56e61 22238
699979fc 22239 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
dc1ca6a8 22240
401bf9b4
PE
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
591b2973 22244 socklen_t is wider than int (Bug#8277).
401bf9b4
PE
22245 (Fmake_network_process, server_accept_connection):
22246 (wait_reading_process_output, read_process_output):
22247 Likewise.
22248
b93aacde
PE
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.
4dc343ee 22253 (Fmake_network_process): Define label "retry_connect" only if needed.
0da49335 22254 (Fnetwork_interface_info): Fix pointer signedness.
f990b4e5 22255 (process_send_signal): Add cast to avoid pointer signedness problem.
7b808126 22256 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
c939f91b 22257 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
b93aacde 22258
af8a867c 22259 Make tparam.h and terminfo.c consistent.
44f230aa
SM
22260 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
22261 Include tparam.h instead, since it declares them.
af8a867c
PE
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
0248044d 22271 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
001a7ab4 22272 (xftfont_open): Rename locals to avoid shadowing.
0248044d 22273
8ff096c1 22274 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
a00924bb
PE
22275 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
22276 (OTF_TAG_SYM): Omit macro if not needed.
e932860f 22277 (ftfont_list): Remove unused local.
49eaafba
PE
22278 (get_adstyle_property, ftfont_pattern_entity):
22279 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
22280 Rename locals to avoid shadowing.
8ff096c1 22281
e2be39f6
PE
22282 * xfont.c (xfont_list_family): Mark var as initialized.
22283
c9735e30
PE
22284 * xml.c (make_dom): Now static.
22285
8f5201ae
PE
22286 * composite.c (composition_compute_stop_pos): Rename local to
22287 avoid shadowing.
b246f932
PE
22288 (composition_reseat_it): Remove unused locals.
22289 (find_automatic_composition, composition_adjust_point): Likewise.
80e079b2 22290 (composition_update_it): Mark var as initialized.
11b61122
PE
22291 (find_automatic_composition): Mark vars as initialized,
22292 with a FIXME (Bug#8290).
8f5201ae 22293
760fbc2c
PE
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
ff08eb85
PE
22301 * textprop.c (property_change_between_p): Remove; unused.
22302
fc7bf025
PE
22303 * intervals.c (interval_start_pos): Now static.
22304
235d7abc
PE
22305 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
22306
44f230aa
SM
22307 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
22308 Rename locals to avoid shadowing.
3e7d6594 22309
50060332
PE
22310 * sound.c (wav_play, au_play, Fplay_sound_internal):
22311 Fix pointer signedness.
d01f234b 22312 (alsa_choose_format): Remove unused local var.
c83b8872
PE
22313 (wav_play): Initialize a variable to 0, to prevent undefined
22314 behavior (Bug#8278).
50060332 22315
c4fc4e30
PE
22316 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
22317
918436ed
PE
22318 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
22319
c939f91b
PE
22320 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
22321 clobbering (Bug#8298).
b9c7f648
PE
22322 * sysdep.c (sys_subshell): Likewise.
22323 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
7e9123a2 22324
6bd8c144
PE
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
7710357c 22329 * callproc.c (call_process_cleanup): Now static.
cb1d0ef7 22330 (relocate_fd): Rename locals to avoid shadowing.
7710357c 22331
c59da222
CY
223322011-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
66b87493
GM
223372011-03-20 Glenn Morris <rgm@gnu.org>
22338
22339 * config.in: Remove file.
22340
45b6f6d5
JB
223412011-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
cd394be1 223472011-03-20 Leo Liu <sdl.web@gmail.com>
3ec03f7e
LL
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
b14e3e21
CY
223532011-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
f2b726e6
JB
223582011-03-19 Juanma Barranquero <lekktu@gmail.com>
22359
22360 * makefile.w32-in: Update dependencies.
22361
09f6ff02
EZ
223622011-03-17 Eli Zaretskii <eliz@gnu.org>
22363
22364 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
22365
29a6015a
PE
223662011-03-17 Paul Eggert <eggert@cs.ucla.edu>
22367
a3a6c54e
PE
22368 Fix more problems found by GCC 4.5.2's static checks.
22369
b766f867
PE
22370 * process.c (make_serial_process_unwind, send_process_trap):
22371 (sigchld_handler): Now static.
22372
be02381c
PE
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
57048744
PE
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
7914961c 22383 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
615f2d59
PE
22384 (CONSTANTLIM): Remove; unused.
22385 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22386 Define only if needed.
7914961c 22387
b3967b18
PE
22388 * unexelf.c (unexec): Name an expression,
22389 to avoid gcc -Wbad-function-cast warning.
9ae71512
PE
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.
73366a00 22392 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
b3967b18 22393
29a6015a
PE
22394 * deps.mk (unexalpha.o): Remove; unused.
22395
43cfc33e 22396 New file unexec.h, the (simple) interface for unexec (Bug#8267).
7feda0d2 22397 * unexec.h: New file.
ce701a33
PE
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.
381259ef 22404 Change as necessary to match prototype in unexec.h.
ce701a33 22405
01f44d5a
PE
22406 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22407 shadowing.
4f63c6bb 22408 (back_comment, skip_chars): Mark vars as initialized.
01f44d5a 22409
a6670b0b
PE
22410 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22411 Rename locals to avoid shadowing.
22412
cef2010d 22413 * lread.c (read1): Rewrite so as not to use empty "else".
0902fe45 22414 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
cef2010d 22415
d4d7173a
PE
22416 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22417
f08b802a
PE
22418 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22419 warning when compiling print.c.
22420
3ddb0639
PE
22421 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22422 instead of using an uninitialized var.
5ad03b97 22423 (font_sort_entities): Mark var as initialized.
3ddb0639 22424
170a2692
PE
22425 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22426
e663c700
PE
22427 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22428 pointers to constants.
89bc529a 22429 (font_parse_fcname): Remove unused vars.
7b81e2d0 22430 (font_delete_unmatched): Now static.
ea838e10 22431 (font_get_spec): Remove; unused.
13a547c6
PE
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.
e663c700 22435
2a80c887 22436 * fns.c (require_nesting_list, require_unwind): Now static.
612f56df 22437 (Ffillarray): Rename locals to avoid shadowing.
2a80c887 22438
1384fa33 22439 * floatfns.c (domain_error2): Define only if needed.
a885e2ed 22440 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
1384fa33 22441
8b2c52e9
PE
22442 * alloc.c (mark_backtrace): Move decl from here ...
22443 * lisp.h: ... to here, so that it can be checked.
22444
475545b5 22445 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
d28a2170 22446 (Fdefvar): Rewrite so as not to use empty "else".
cfcbfb1a
PE
22447 (lisp_indirect_variable): Name an expression,
22448 to avoid gcc -Wbad-function-cast warning.
1faed8ae 22449 (Fdefvar): Rename locals to avoid shadowing.
475545b5 22450
b1349114 22451 * callint.c (quotify_arg, quotify_args): Now static.
a3e8cbda 22452 (Fcall_interactively): Rename locals to avoid shadowing.
b0e80955 22453 Use const pointer when appropriate.
b1349114 22454
a2928364
PE
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.
63c5d10b
PE
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.
545b49b4
PE
22462 (Fformat_time_string, Fencode_time, Finsert_char):
22463 (Ftranslate_region_internal, Fformat):
22464 Rename or remove local vars to avoid shadowing.
9710023e 22465 (Ftranslate_region_internal): Mark var as initialized.
63c5d10b 22466
a415e694
PE
22467 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22468 avoid shadowing.
22469
8ef4622d
PE
22470 * lisp.h (eassert): Check that the argument compiles, even if
22471 ENABLE_CHECKING is not defined.
22472
946f9a5b
PE
22473 * data.c (Findirect_variable): Name an expression, to avoid
22474 gcc -Wbad-function-cast warning.
112396d6 22475 (default_value, arithcompare, arith_driver, arith_error): Now static.
b9b84fa9 22476 (store_symval_forwarding): Rename local to avoid shadowing.
44f230aa
SM
22477 (Fmake_variable_buffer_local, Fmake_local_variable):
22478 Mark variables as initialized.
52746918 22479 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
946f9a5b 22480
e5aab7e7 22481 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
ae35e756
PE
22482 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22483 Rename locals to avoid shadowing.
dff45157
PE
22484 (mark_stack): Move local variables into the #ifdef region where
22485 they're used.
7bc26fdb
PE
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.
d40d4be1 22491 (Fmemory_limit): Cast sbrk's returned value to char *.
ae35e756 22492
e5aab7e7
PE
22493 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22494 avoids undefined behavior in theory.
22495
4da60324
PE
22496 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22497
88043301
PE
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.
0da09c43 22506 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
db69b0cd 22507 the race-condition problem in the old DOWNCASE.
88043301 22508
19ed5445
PE
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.
abbd1bcf
PE
22512 (regex_compile, re_search_2, re_match_2_internal):
22513 Remove unused local vars.
952db0d7
PE
22514 (FREE_VAR): Rewrite so as not to use empty "else",
22515 which gcc can warn about.
da053e48 22516 (regex_compile, re_match_2_internal): Mark locals as initialized.
b313f9d8
PE
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.
19ed5445 22524
1f3561e4 22525 * search.c (boyer_moore): Rename locals to avoid shadowing.
76ef09b7
PE
22526 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22527 (PREV_CHAR_BOUNDARY): Likewise.
1f3561e4 22528
ded6f8f7
PE
22529 * search.c (simple_search): Remove unused var.
22530
dbd37a95
PE
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
7e47afad
PE
22535 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22536
85f24f61
PE
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.
5671df8f 22541 (Fvertical_motion): Mark locals as initialized.
85f24f61 22542
181aa2be 22543 * casefiddle.c (casify_object, casify_region): Now static.
e45a141a 22544 (casify_region): Mark local as initialized.
181aa2be 22545
930d429c
PE
22546 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22547
7082eac6
PE
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.
38b2c076
PE
22557 * dired.c (directory_files_internal, file_name_completion):
22558 Rename locals to avoid shadowing.
22559
15206ed9
PE
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
4a6bea26
PE
22581 * dired.c (directory_files_internal_unwind): Now static.
22582
f14b7e14
PE
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.
2893f146
PE
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.
fd4ead52 22589 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
b14aac08
PE
22590 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22591 signedness issues.
f839df0c
PE
22592 (Fset_file_times, Finsert_file_contents, auto_save_error):
22593 Rename locals to avoid shadowing.
f14b7e14 22594
5716756e 22595 * minibuf.c (choose_minibuf_frame_1): Now static.
62137a95
PE
22596 (Ftry_completion, Fall_completions): Rename or remove locals
22597 to avoid shadowing.
5716756e 22598
b4c3046a
PE
22599 * marker.c (bytepos_to_charpos): Remove; unused.
22600
b45db522
PE
22601 * lisp.h (verify_bytepos, count_markers): New decls,
22602 so that gcc does not warn that these functions aren't declared.
22603
85876d07
PE
22604 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22605 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
f0cb4a60 22606 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
40ef059e 22607 (copy_text): Remove unused local var.
85876d07 22608
03d78a21 22609 * filelock.c (within_one_second): Now static.
b3dd38ab 22610 (lock_file_1): Rename local to avoid shadowing.
03d78a21 22611
5df8f01b
PE
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.
b1d876f1 22616 (switch_to_buffer_1): Now static.
8f54f30a
PE
22617 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22618 (report_overlay_modification): Rename locals to avoid shadowing.
c3bd59b5 22619
a70072c9 22620 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
fbd02d7b 22621 Fix pointer signedness issue.
edced198
PE
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.
15dfd3d9 22624 (MAXPATHLEN): Define only if needed.
a70072c9 22625
a0977c44
PE
22626 * process.c (serial_open, serial_configure): Move decls from here ...
22627 * systty.h: ... to here, so that they can be checked.
22628
a884fdcc
PE
22629 * fns.c (get_random, seed_random): Move extern decls from here ...
22630 * lisp.h: ... to here, so that they can be checked.
22631
604efe86 22632 * sysdep.c (reset_io): Now static.
b8950c94 22633 (wait_for_termination_signal): Remove; unused.
604efe86 22634
38fc62d9
PE
22635 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22636 (copy_keymap_item, append_key, push_text_char_description):
22637 Now static.
1004a21a 22638 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
dbbb8427 22639 (DENSE_TABLE_SIZE): Remove; unused.
c1141155
PE
22640 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22641 (describe_map_tree):
22642 Rename locals to avoid shadowing.
38fc62d9 22643
2f2650da
PE
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.
69a058fa
PE
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.
c8a06054 22652 (read_key_sequence, read_char): Mark locals as initialized.
3ac94672 22653 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
2f2650da 22654
a053e86c 22655 * keyboard.h (make_ctrl_char): New decl.
da2f2dd9
PE
22656 (mark_kboards): Move decl here ...
22657 * alloc.c (mark_kboards): ... from here.
a053e86c 22658
4752793e
PE
22659 * lisp.h (force_auto_save_soon): New decl.
22660
74f10ca7 22661 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
244fc23d
PE
22662 (DEFINE_DUMMY_FUNCTION): New macro.
22663 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22664 Use it.
c03cd23f
PE
22665 (main): Add casts to avoid warnings
22666 if GCC considers string literals to be constants.
74f10ca7 22667
022e70d4
PE
22668 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22669
59d6fe83
PE
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
78320123
PE
22677 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22678 if GCC considers string literals to be constants.
49cebcca 22679 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
78320123 22680
35ac2a97
SM
226812011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22682
fb103ca9
SM
22683 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22684 (print_preprocess, print_object): New macro to fix last change.
22685
35ac2a97
SM
22686 * print.c (print_preprocess): Don't forget font objects.
22687
62973b41
JB
226882011-03-16 Juanma Barranquero <lekktu@gmail.com>
22689
22690 * emacs.c (USAGE3): Doc fixes.
22691
0e48bb22
AS
226922011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22693
22694 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22695 structure.
22696
7684e57b
JB
226972011-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".
c96bbc66 22705 (run_protected): Add extern declaration for waiting_for_input.
7684e57b
JB
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
2aa46d6c
CY
227222011-03-14 Chong Yidong <cyd@stupidchicken.com>
22723
c96bbc66 22724 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
2aa46d6c 22725
cffc6f3b
CY
227262011-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
44f230aa
SM
22732 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22733 Assign struct members directly, instead of using BUF_BEGV etc.
cffc6f3b
CY
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
d251f04b
EZ
227482011-03-13 Eli Zaretskii <eliz@gnu.org>
22749
22750 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22751 $(EMACS_ROOT)/lib/intprops.h.
22752
f0c77cd1
PE
227532011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22754
3eca4629
PE
22755 Fix more problems found by GCC 4.5.2's static checks.
22756
7c86ee98
PE
22757 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22758 to unsigned char * to avoid compiler diagnostic.
b0afc268
PE
22759 (xg_free_frame_widgets): Make it clear that a local variable is
22760 needed only if USE_GTK_TOOLTIP.
01e0b5ad
PE
22761 (gdk_window_get_screen): Make it clear that this macro is needed
22762 only if USE_GTK_TOOLTIP.
1e5524e7
PE
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.
65dc836c
PE
22768 (get_utf8_string, xg_get_file_with_chooser):
22769 Rename locals to avoid shadowing.
22770 (create_dialog): Move locals to avoid shadowing.
7c86ee98 22771
41729b81
PE
22772 * xgselect.c (xg_select): Remove unused var.
22773
f0c77cd1
PE
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.
ec6cf4c6 22777 (my_png_error, my_error_exit): Mark with NO_RETURN.
f0c77cd1 22778
ce0ad53d 22779 * image.c (clear_image_cache): Now static.
d5d5a617 22780 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
e22cffbc 22781 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
77a765fd
PE
22782 (x_edge_detection): Remove unnecessary cast that
22783 gcc -Wbad-function-cast diagnoses.
2037898d 22784 (gif_load): Fix pointer signedness.
6ae141d6
PE
22785 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22786 (jpeg_load, gif_load): Rename locals to avoid shadowing.
ce0ad53d 22787
33383987 227882011-03-12 Paul Eggert <eggert@cs.ucla.edu>
3eca4629 22789
d32df629
PE
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>.
b8d9bd41
PE
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.
d32df629
PE
22808 (lisp_time_argument): Don't rely on undefined left-shift and
22809 right-shift behavior when checking for time stamp overflow.
8be6f318 22810
fe31d94c
PE
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
8be6f318
PE
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
09d9db2c 228202011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
c47cbdfd 22821
126bc0dc
YM
22822 * fringe.c (update_window_fringes): Remove unused variables.
22823
c47cbdfd
YM
22824 * unexmacosx.c (copy_data_segment): Also copy __got section.
22825 (Bug#8223)
22826
7ac80be9
EZ
228272011-03-12 Eli Zaretskii <eliz@gnu.org>
22828
c96bbc66 22829 * termcap.c [MSDOS]: Include "msdos.h".
058e5dad
EZ
22830 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22831 Constify `char *' arguments and their references according to
22832 prototypes in tparam.h.
22833
ecb0f94d 22834 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
058e5dad 22835
7ac80be9
EZ
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
ef1fd07e
TT
228412011-03-11 Tom Tromey <tromey@redhat.com>
22842
22843 * buffer.c (syms_of_buffer): Remove obsolete comment.
22844
7ef4b50c
EZ
228452011-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
44f230aa
SM
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.
7ef4b50c 22856
4b1ec863 228572011-03-11 Paul Eggert <eggert@cs.ucla.edu>
f78faa98 22858
1714f52b 22859 Fix some minor problems found by GCC 4.5.2's static checks.
83316bf4 22860
4b1ec863
PE
22861 * fringe.c (update_window_fringes): Mark locals as initialized
22862 (Bug#8227).
22863 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
bf60f616 22864
524c7aa6
PE
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
a5c0af81 22870 * fontset.c (free_realized_fontset): Now static.
7519b8cd 22871 (Fset_fontset_font): Rename local to avoid shadowing.
cc6e5db1 22872 (fontset_font): Mark local as initialized.
a9a06e0b 22873 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
a5c0af81 22874
b4716021
PE
22875 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22876
811e9bac 22877 * xselect.c (x_disown_buffer_selections): Remove; not used.
7b83e2f1 22878 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
aa0daa9f
PE
22879 (x_own_selection, Fx_disown_selection_internal): Rename locals
22880 to avoid shadowing.
22881 (x_handle_dnd_message): Remove local to avoid shadowing.
811e9bac 22882
7e3ab302
PE
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.
58d2d479
PE
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.
6b437900 22890 (Fx_create_frame): Add braces to silence GCC warning.
c0951e53 22891 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
06b0c8a0
PE
22892 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22893 Remove unused locals.
7e3ab302
PE
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.
f78faa98 22898
e2b13473
PE
22899 * xterm.h (x_mouse_leave): New decl.
22900
77f23912
PE
22901 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22902 Remove unused functions.
cdf4ba58
PE
22903 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22904 (x_calc_absolute_position): Now static.
7411c686 22905 (XTread_socket): Don't define label "out" unless it's used.
2b07bcff 22906 Don't declare local "event" unless it's used.
ed7bf3a5
PE
22907 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22908 unless they are used.
38d0b34a
PE
22909 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22910 (x_fatal_error_signal): Remove; not used.
a6067996
PE
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.
28f1c698 22916 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
2a8fade0 22917 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
77f23912 22918
44f230aa
SM
22919 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22920 Rename or move locals to avoid shadowing.
6b463e58 22921 (tty_defined_color, merge_face_heights): Now static.
5967d051 22922 (free_realized_faces_for_fontset): Remove; not used.
1e9966ea
PE
22923 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22924 does not deduce is never used uninitialized.
73719eba
PE
22925 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22926 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
071048a3 22927
426994c3 22928 * terminal.c (store_terminal_param): Now static.
5489860b 22929
032f1620 22930 * xmenu.c (menu_highlight_callback): Now static.
9d66f88e 22931 (set_frame_menubar): Remove unused local.
d4323972 22932 (xmenu_show): Rename parameter to avoid shadowing.
6d1f7fee
PE
22933 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22934 since they might point to immutable storage.
281585b0
PE
22935 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22936 since it's unused otherwise.
032f1620 22937
367c19e5 22938 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
53df7c11 22939 Add a FIXME, since the code still doesn't look right. (Bug#8215)
9f36b9fd
PE
22940 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22941 avoids a gcc -Wuninitialized diagnostic.
0e086e8f 22942 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
44a3a108
PE
22943 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22944 does not deduce are never used uninitialized.
70739cbe 22945
07b48fa9
PE
22946 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22947
8868a238 22948 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
4554d213
PE
22949 * window.c (window_loop, size_window):
22950 (run_window_configuration_change_hook, enlarge_window): Likewise.
8868a238 22951
7e5cf297 22952 * window.c (display_buffer): Now static.
d6550a9f
PE
22953 (size_window): Mark variables that gcc -Wuninitialized
22954 does not deduce are never used uninitialized.
a586633d
PE
22955 * window.h (check_all_windows): New decl, to forestall
22956 gcc -Wmissing-prototypes diagnostic.
5b555da1 22957 * dispextern.h (bidi_dump_cached_states): Likewise.
7e5cf297 22958
f6095868
PE
22959 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22960 shadowing.
22961 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
726929c4
PE
22962 Include <limits.h>.
22963 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22964 and to avoid gcc -Wuninitialized warning.
89ef49df
PE
22965 (load_charset_map): Mark variables that gcc -Wuninitialized
22966 does not deduce are never used uninitialized.
53df7c11 22967 (load_charset): Abort instead of using uninitialized var (Bug#8229).
f6095868 22968
f38b440c
PE
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.
2735d060
PE
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.
e2f1bab9
PE
22981 * coding.c (emacs_mule_char, encode_invocation_designation):
22982 Now static, since they're not used elsewhere.
413bb2db 22983 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
c4a63b12 22984 (decode_coding_object, encode_coding_object, detect_coding_system):
ee05f961
PE
22985 (decode_coding_emacs_mule): Mark variables that gcc
22986 -Wuninitialized does not deduce are never used uninitialized.
160b01f6
PE
22987 (detect_coding_iso_2022): Initialize a local variable that might
22988 be used uninitialized. Leave a FIXME because it's not clear that
53df7c11 22989 this initialization is needed. (Bug#8211)
5f58e762
PE
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.
f38b440c 22995
232b38b9 22996 * category.c (hash_get_category_set): Remove unused local var.
9f3b5e69 22997 (copy_category_table): Now static, since it's not used elsewhere.
d0891610 22998 * character.c (string_count_byte8): Likewise.
232b38b9 22999
fb90da1b
PE
23000 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
23001 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
23002
fb93dbc2
PE
23003 * chartab.c (copy_sub_char_table): Now static, since it's not used
23004 elsewhere.
5c156ace
PE
23005 (sub_char_table_ref_and_range, char_table_ref_and_range):
23006 Rename locals to avoid shadowing.
bbcd0949 23007 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
fb93dbc2 23008
7d3b3862 23009 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
630d6892 23010 (BIDI_BOB): Remove unused macro.
7d3b3862 23011
6be7d3da
PE
23012 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
23013 deduce are never used uninitialized.
c2ed9c8b 23014 * term.c (encode_terminal_code): Likewise.
6be7d3da 23015
75f8807f 23016 * term.c (encode_terminal_code): Now static. Remove unused local.
72abad34 23017
50938595
PE
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
fbceeba2
PE
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.
fbceeba2 23037
7f3f1250
PE
23038 * term.c (term_mouse_position): Rename local to avoid shadowing.
23039
e6ca6543
PE
23040 * alloc.c (mark_ttys): Move decl from here ...
23041 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
23042
c40f8d15
AS
230432011-03-11 Andreas Schwab <schwab@linux-m68k.org>
23044
23045 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
23046
cfe0661d
JB
230472011-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
0afb4571
J
230532011-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)
44f230aa
SM
23078 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
23079 Call gtk_widget_get_preferred_size.
0afb4571
J
23080 (xg_frame_resized): gdk_window_get_geometry only takes 5
23081 parameters.
44f230aa
SM
23082 (xg_win_to_widget, xg_event_is_for_menubar):
23083 Call gdk_x11_window_lookup_for_display.
0afb4571
J
23084 (xg_set_widget_bg): New function.
23085 (delete_cb): New function.
895009e1 23086 (xg_create_frame_widgets): Connect delete-event to delete_cb.
5c32d3f2 23087 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
0afb4571
J
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
1c2cc4ef
JB
231052011-03-08 Juanma Barranquero <lekktu@gmail.com>
23106
23107 * w32xfns.c (select_palette): Check success of RealizePalette against
23108 GDI_ERROR, not zero.
23109
33383987 23110See ChangeLog.11 for earlier changes.
aac0c6e3
MR
23111
23112;; Local Variables:
23113;; coding: utf-8
aac0c6e3
MR
23114;; End:
23115
ab422c4d 23116 Copyright (C) 2011-2013 Free Software Foundation, Inc.
aac0c6e3
MR
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/>.