Optimize ASCII file reading with EOL format detection and decoding.
[bpt/emacs.git] / src / ChangeLog
1 2013-03-15 handa <handa@gnu.org>
2
3 * insdel.c (insert_from_gap): New arg text_at_gap_tail.
4 (adjust_after_replace): Make it back to static. Delete the third
5 arg text_at_gap_tail. Cancel the code for handling it.
6
7 * coding.h (struct coding_system): New member eol_seen.
8
9 * coding.c (detect_ascii): New function.
10 (detect_coding): Set coding->head_ascii and coding->eol_seen only
11 when the source bytes are actually scanned. On detecting for
12 coding_category_utf_8_auto, call detect_ascii instead of scanning
13 source bytes directly.
14 (produce_chars): Call insert_from_gap with the new arg 0.
15 (encode_coding): Likewise.
16 (decode_coding_gap): Control ASCII optimization by the variable
17 disable_ascii_optimization instead of #ifndef .. #endif.
18 Deccode EOL format according to coding->eol_seen.
19 (syms_of_coding): Declare disable-ascii-optimization as a Lisp
20 variable.
21
22 * global.h (struct emacs_globals): New member
23 f_disable_ascii_optimization.
24 (disable_ascii_optimization): New macro.
25
26 * lisp.h (adjust_after_replace): Cancel externing it.
27 (insert_from_gap): Adjust prototype.
28
29 2013-03-11 Paul Eggert <eggert@cs.ucla.edu>
30
31 * insdel.c (adjust_after_replace): Use bool for boolean.
32
33 2013-03-11 Stefan Monnier <monnier@iro.umontreal.ca>
34
35 * keyboard.c: Move keyboard decoding to read_key_sequence.
36 (decode_keyboard_code): Remove.
37 (tty_read_avail_input): Don't try to decode input.
38 (read_decoded_char): New function.
39 (read_key_sequence): Use it.
40
41 2013-03-10 Daniel Colascione <dancol@dancol.org>
42
43 * w32term.h (GUISTR, GUI_ENCODE_FILE, GUI_ENCODE_SYSTEM, GUI_FN)
44 (GUI_SDATA, guichar_t): Macros to abstract out differences between
45 NTGUI_UNICODE and !NTGUI_UNICODE builds, some moved out of
46 w32fns.c.
47
48 * w32term.c (construct_drag_n_drop): Use the above macros to make
49 drag-and-drop work for non-ASCII filenames in cygw32 builds.
50
51 * w32fns.c (x_set_name, x_set_title): Use the above macros to
52 properly display non-ASCII frame titles in cygw32 builds.
53
54 * w32fns.c (Fw32_shell_execute): Use the above macros to properly
55 call ShellExecute in cygw32 builds.
56
57 * w32fn.c (Fx_file_dialog): Use the above macros to simplify the
58 common file dialog code.
59
60 * w32fns.c (Ffile_system_info): Remove from cygw32 builds, which
61 can just use du like other systems.
62
63 * coding.c (from_unicode_buffer): Declare.
64 * coding.c (from_unicode_buffer): Implement.
65
66 2013-03-10 Stefan Monnier <monnier@iro.umontreal.ca>
67
68 * lread.c: Minor cleanup.
69 (FROM_FILE_P): New macro.
70 (skip_dyn_bytes, unreadchar, read1): Use it.
71 (read_list): Consolidate duplicated code.
72
73 * bytecode.c (struct byte_stack): Remove `constants' when unused.
74
75 2013-03-10 Eli Zaretskii <eliz@gnu.org>
76
77 * xdisp.c (display_tool_bar_line, redisplay_tool_bar)
78 (redisplay_internal, set_cursor_from_row, try_window)
79 (try_window_id, dump_glyph_row, extend_face_to_end_of_line)
80 (display_line, notice_overwritten_cursor)
81 (mouse_face_from_buffer_pos, note_mouse_highlight):
82 Use MATRIX_ROW_DISPLAYS_TEXT_P.
83 (note_mouse_highlight): Use MATRIX_ROW_GLYPH_START.
84 (mouse_face_from_string_pos, fast_find_string_pos):
85 Use MATRIX_ROW_VPOS.
86
87 * xfns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
88
89 * w32fns.c (Fx_show_tip): Use MATRIX_ROW_DISPLAYS_TEXT_P.
90
91 * xdisp.c (try_cursor_movement): Use MATRIX_ROW and
92 MATRIX_MODE_LINE_ROW.
93
94 * dispnew.c (update_window): Use MATRIX_ROW and MATRIX_MODE_LINE_ROW.
95
96 2013-03-10 handa <handa@gnu.org>
97
98 * lisp.h (adjust_after_replace): Extern it.
99
100 * coding.c (detect_coding): Cound the heading ASCII bytes in the
101 case of detection for coding_category_utf_8_auto.
102 (decode_coding_gap) [not CODING_DISABLE_ASCII_OPTIMIZATION]:
103 Skip decoding if all bytes are ASCII.
104
105 * insdel.c (adjust_after_replace): Make it public. New arg
106 text_at_gap_tail.
107 (adjust_after_insert): Call adjust_after_replace with the new arg
108 value 0.
109
110 2013-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
111
112 * keyboard.h (EVENT_START, EVENT_END, POSN_WINDOW, POSN_POSN)
113 (POSN_WINDOW_POSN, POSN_TIMESTAMP): Be careful since events may come
114 from Elisp via unread-command-events.
115
116 * keyboard.c (access_keymap_keyremap): Accept nil return value from
117 functions to mean "no change".
118
119 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
120
121 region-cache.c, scroll.c, search.c: Use bool for booleans.
122 * lisp.h (compile_pattern):
123 * scroll.c (do_scrolling, do_direct_scrolling):
124 * search.c (struct regexp_cache, compile_pattern_1)
125 (compile_pattern, string_match_1, search_command)
126 (trivial_regexp_p, search_buffer, Freplace_match, match_limit)
127 (search_regs_saved, Fregexp_quote):
128 Use bool for boolean.
129 * region-cache.c (region_cache_forward, region_cache_backward):
130 Fix comments to match code: these functions return int, not boolean.
131
132 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
133
134 * search.c (find_newline): Accept start and end byte positions
135 as arguments and allow -1 if not known.
136 (find_newline_no_quit): Likewise for start position.
137 * lisp.h (find_newline, find_newline_no_quit): Adjust prototype.
138 * bidi.c (bidi_find_paragraph_start): Pass byte position to
139 find_newline_no_quit, thus eliminating CHAR_TO_BYTE.
140 * editfns.c (Fconstrain_to_field): Break long line.
141 Adjust call to find_newline.
142 * indent.c (vmotion): Adjust calls to find_newline_no_quit.
143 Use DEC_BOTH to start next search from the previous buffer
144 position, where appropriate.
145 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
146 (get_visually_first_element, move_it_vertically_backward): Likewise.
147 Obtain byte position from the display iterator, where appropriate.
148
149 2013-03-08 Paul Eggert <eggert@cs.ucla.edu>
150
151 print.c, process.c: Use bool for booleans.
152 * lisp.h (wait_reading_process_output):
153 * print.c (print_output_debug_flag, PRINTDECLARE, printchar)
154 (strout, debug_output_compilation_hack, float_to_string, print)
155 (print_object):
156 * process.c (kbd_is_on_hold, inhibit_sentinels, process_output_skip)
157 (decode_status, status_message, create_process, create_pty)
158 (Fmake_network_process, Fnetwork_interface_info)
159 (wait_reading_process_output, read_process_output)
160 (write_queue_push, write_queue_pop, process_send_signal)
161 (handle_child_signal, keyboard_bit_set, kbd_on_hold_p):
162 * process.h (struct Lisp_Process, inhibit_sentinels, kbd_on_hold_p):
163 Use bool for booleans.
164 * process.c (Fnetwork_interface_list): Remove unused local.
165 (connect_counter): Now EMACS_INT, not int.
166
167 2013-03-08 Dmitry Antipov <dmantipov@yandex.ru>
168
169 * bidi.c (bidi_fetch_char): Swap first and second arguments
170 to match other functions accepting character and byte positions.
171 Adjust comment.
172 (bidi_resolve_explicit_1, bidi_level_of_next_char): Adjust users.
173 (bidi_paragraph_init): Likewise. Use DEC_BOTH which is faster
174 when you need just to move to the previous buffer position.
175 * xdisp.c (Fcurrent_bidi_paragraph_direction): Use DEC_BOTH.
176
177 2013-03-07 Eli Zaretskii <eliz@gnu.org>
178
179 * .gdbinit (prowlims): Display the enabled_p flag of the row.
180
181 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
182
183 Avoid character to byte conversions in motion subroutines.
184 * indent.h (compute_motion, vmotion): Add byte position argument.
185 * indent.c (compute_motion): Use it and avoid CHAR_TO_BYTE.
186 Add eassert.
187 (Fcompute_motion): Break long line. Adjust call to compute_motion.
188 Use list5 for return value.
189 (vmotion): Use byte position argument and avoid call to CHAR_TO_BYTE.
190 Adjust comments, style and calls to compute_motion.
191 (Fvertical_motion): Adjust call to vmotion.
192 * window.c (Fdelete_other_windows_internal): Record window start
193 byte position and adjust call to vmotion.
194 (window_scroll_line_based): Likewise with call to compute_motion.
195 Use SET_PT_BOTH.
196 (Frecenter): Adjust calls to vmotion.
197
198 2013-03-07 Dmitry Antipov <dmantipov@yandex.ru>
199
200 * lisp.h (list2i, list3i): New functions.
201 (list4i): Move from window.c and make LISP_INLINE.
202 * editfns.c (make_lisp_time):
203 * fns.c (Flocale_info):
204 * keyboard.c (parse_modifiers):
205 * xterm.c (x_ewmh_activate_frame): Use list2i.
206 * instel.c (signal_after_change):
207 * nsfns.m (Fx_server_version, Fxw_color_values):
208 * w32fns.c (Fxw_color_values, Fx_server_version):
209 * xfns.c (Fxw_color_values, Fx_server_version): Use list3i.
210 * fileio.c (Fvisited_file_modtime):
211 * nsfns.m (Fns_display_usable_bounds):
212 * w32.c (ltime): Use list4i.
213
214 2013-03-06 Eli Zaretskii <eliz@gnu.org>
215
216 * search.c (find_newline_no_quit): Rename from find_next_newline.
217 Add commentary.
218
219 * lisp.h (find_newline_no_quit): Rename prototype.
220
221 * xdisp.c (back_to_previous_line_start)
222 (forward_to_next_line_start, get_visually_first_element)
223 (move_it_vertically_backward): Callers of find_newline_no_quit changed.
224 * indent.c (vmotion): Callers of find_newline_no_quit changed.
225 * bidi.c (bidi_find_paragraph_start): Callers of
226 find_newline_no_quit changed.
227
228 * msdos.c: Change encoding to cp850. (Bug#13879)
229 (fr_keyboard, it_keyboard, dk_keyboard): Update keyboard layouts.
230
231 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
232
233 Coding system support cleanup and minor refactoring.
234 * coding.h (enum coding_result_code): Remove
235 CODING_RESULT_INCONSISTENT_EOL and CODING_RESULT_INSUFFICIENT_MEM.
236 (toplevel): Remove unused CODING_MODE_INHIBIT_INCONSISTENT_EOL.
237 (CODING_MODE_LAST_BLOCK, CODING_MODE_SELECTIVE_DISPLAY)
238 (CODING_MODE_DIRECTION, CODING_MODE_FIXED_DESTINATION)
239 (CODING_MODE_SAFE_ENCODING): Rearrange bit values.
240 (decode_coding_region, encode_coding_region, decode_coding_string):
241 Remove unused compatibility macros.
242 * coding.c (Qinconsistent_eol, Qinsufficient_memory): Remove.
243 (record_conversion_result): Adjust user.
244 (syms_of_coding): Likewise.
245 (ALLOC_CONVERSION_WORK_AREA): Use SAFE_ALLOCA.
246 (decode_coding, encode_coding): Add USE_SAFE_ALLOCA and SAFE_FREE.
247 (decode_coding_object): Simplify since xrealloc never returns NULL.
248 Add eassert.
249
250 2013-03-06 Paul Eggert <eggert@cs.ucla.edu>
251
252 Fix a build failure on OpenBSD 4.x and MirBSD (Bug#13881).
253 * sysdep.c (list_system_processes)
254 [BSD_SYSTEM && !DARWIN_OS && !__FreeBSD__]:
255 Make it a stub in this case; otherwise the build might fail,
256 and this code hasn't been tested on such hosts anyway.
257 Problem reported by Nelson H. F. Beebe in
258 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00021.html>
259 and analyzed by Jérémie Courrèges-Anglas in
260 <http://lists.gnu.org/archive/html/emacs-devel/2013-03/msg00062.html>.
261
262 2013-03-06 Dmitry Antipov <dmantipov@yandex.ru>
263
264 * lisp.h (find_next_newline_no_quit): Rename to find_next_newline.
265 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start)
266 (get_visually_first_element, move_it_vertically_backward): Ajust users.
267 * bidi.c (bidi_find_paragraph_start): Likewise.
268 * indent.c (vmotion): Likewise.
269
270 2013-03-05 Paul Eggert <eggert@cs.ucla.edu>
271
272 FILE's lock is now always .#FILE and may be a regular file (Bug#13807).
273 * filelock.c: Include <c-ctype.h>.
274 (MAX_LFINFO): New top-level constant.
275 (lock_info_type): Remove members pid, boot_time. Add members at,
276 dot, colon. Change user member to be the entire buffer, not a
277 pointer. This allows us to handle the case where a foreign
278 pid or boot time exceeds the local range. All uses changed.
279 (LINKS_MIGHT_NOT_WORK): New constant.
280 (FREE_LOCK_INFO): Remove, as the pieces no longer need freeing.
281 (defined_WINDOWSNT): Remove.
282 (MAKE_LOCK_NAME, file_in_lock_file_name):
283 Always use .#FILE (not .#-FILE) for the file lock,
284 even if it is a regular file.
285 (rename_lock_file): New function.
286 (create_lock_file): Use it.
287 (create_lock_file, read_lock_data):
288 Prefer a symbolic link for the lock file, falling back on a
289 regular file if symlinks don't work. Do not try to create
290 symlinks on MS-Windows, due to security hassles. Stick with
291 POSIXish functions (open, read, write, close, fchmod, readlink, symlink,
292 link, rename, unlink, mkstemp) when creating locks, as a GNUish
293 host may be using a Windowsish file system, and cannot use
294 MS-Windows-only system calls. Fall back on mktemp if mkstemp
295 doesn't work. Don't fail merely because of a symlink-contents
296 length limit in the current file system; fall back on regular
297 files. Increase the symlink contents length limit to 8 KiB, this
298 should be big enough for any real use and doesn't crunch the
299 stack.
300 (create_lock_file, lock_file_1, read_lock_data):
301 Simplify allocation of lock file buffers now that they fit in 8 KiB.
302 (lock_file_1): Return error number, not bool. All callers changed.
303 (ELOOP): New macro, if not already defined.
304 (read_lock_data): Return size of lock file contents, not Lisp object.
305 All callers changed. Handle a race condition if some other process
306 replaces a regular-file lock with a symlink lock or vice versa,
307 while we're trying to read the lock.
308 (current_lock_owner): Parse contents more carefully, to help avoid
309 confusing a regular-file lock with some other application's use
310 of the file. Check for lock file contents being too long, or
311 not parsing correctly.
312 (current_lock_owner, lock_file):
313 Allow foreign pid and boot times that exceed the local range.
314 (current_lock_owner, lock_if_free, lock_file):
315 Simplify allocation of lock file contents.
316 * w32.c (sys_rename_replace): New function, containing most of
317 the contents of the old sys_rename.
318 (sys_rename): Use it.
319 (fchmod): New dummy function.
320 * w32.h (sys_rename_replace, fchmod): New decls.
321
322 2013-03-05 Eli Zaretskii <eliz@gnu.org>
323
324 * bidi.c (bidi_resolve_explicit_1): Don't call CHAR_TO_BYTE or
325 bidi_count_bytes, as the callers now arrange for bidi_it->charpos
326 to be in sync with bidi_it->bytepos. Suggested by Dmitry Antipov
327 <dmantipov@yandex.ru>.
328
329 2013-03-05 Dmitry Antipov <dmantipov@yandex.ru>
330
331 * composite.c (get_composition_id, fill_gstring_header):
332 Use make_uninit_vector where appropriate.
333 * font.c (Ffont_get_glyphs, build_style_table): Likewise.
334 * xselect.c (clean_local_selection_data): Likewise.
335
336 2013-03-04 Paul Eggert <eggert@cs.ucla.edu>
337
338 Fix misuse of ImageMagick that caused core dump (Bug#13846).
339 * image.c (imagemagick_load_image): Calculate height and width
340 after flattening the image, not before.
341
342 2013-03-04 Dmitry Antipov <dmantipov@yandex.ru>
343
344 * font.c (Ffont_get_glyphs): Use convenient LGLYPH_NEW.
345 * ftfont.c (ftfont_shape_by_flt): Likewise.
346 * w32uniscribe.c (uniscribe_shape): Likewise.
347
348 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
349
350 The lock for FILE is now .#FILE or .#-FILE (Bug#13807).
351 The old approach, which fell back on DIR/.#FILE.0 through
352 DIR/.#FILE.9, had race conditions that could not be easily fixed.
353 If DIR/.#FILE is a non-symlink file, Emacs now does not create a
354 lock file for DIR/FILE; that is, DIR/FILE is no longer partly
355 protected by a lock if DIR/.#FILE is a non-symlink file ("partly"
356 because the locking mechanism was never reliable in that case).
357 This patch fixes this and other bugs discovered by a code
358 inspection that was prompted by
359 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00531.html>.
360 Also, this patch switches to .#-FILE (not .#FILE) on MS-Windows,
361 to avoid interoperability problems between the MS-Windows and
362 non-MS-Windows implementations. MS-Windows and non-MS-Windows
363 instances of Emacs now ignore each others' locks.
364 * filelock.c (defined_WINDOWSNT): New constant.
365 (MAKE_LOCK_NAME, fill_in_lock_file_name):
366 Don't create DIR/.#FILE.0 through DIR/.#FILE.9. Instead, create
367 DIR/.#FILE symlinks on non-MS-Windows hosts, and DIR/.#-FILE
368 regular files on MS-Windows hosts.
369 (MAKE_LOCK_NAME, unlock_file, Ffile_locked_p):
370 Use SAFE_ALLOCA to avoid problems with long file names.
371 (MAX_LFINFO): Now a local constant, not a global macro.
372 (IS_LOCK_FILE): Remove.
373 (lock_file_1): Don't inspect errno if symlink call succeeds;
374 that's not portable.
375 (lock_file): Document that this function can return if lock
376 creation fails.
377 (lock_file): Don't access freed storage.
378
379 2013-03-02 Andreas Schwab <schwab@linux-m68k.org>
380
381 * lisp.h (XPNTR) [!USE_LSB_TAG]: Remove extra paren. (Bug#13734)
382
383 2013-03-02 Paul Eggert <eggert@cs.ucla.edu>
384
385 * textprop.c: Use bool for booleans.
386 (validate_interval_range, Fadd_text_properties)
387 (Fremove_text_properties): Prefer bool to int when either works.
388
389 2013-03-02 Eli Zaretskii <eliz@gnu.org>
390
391 * textprop.c (Fadd_text_properties, Fremove_text_properties):
392 If the interval tree changes as a side effect of calling
393 modify_region, re-do processing starting from the call to
394 validate_interval_range. (Bug#13743)
395
396 2013-02-28 Eli Zaretskii <eliz@gnu.org>
397
398 * w32.c (sys_open): Don't reset the flags for FD in fd_info[].
399 (Bug#13546).
400
401 2013-02-27 Eli Zaretskii <eliz@gnu.org>
402
403 * filelock.c (create_lock_file) [WINDOWSNT]: Use _sopen with
404 _SH_DENYRW flag, instead of emacs_open, to deny any other process
405 access to the lock file until it is written and closed.
406 (Bug#13807)
407
408 2013-02-27 Paul Eggert <eggert@cs.ucla.edu>
409
410 * callint.c (Qcall_interactively):
411 * macros.c (Qexecute_kbd_macro):
412 Now static.
413
414 2013-02-26 Bastien Guerry <bzg@gnu.org>
415
416 * window.c (Frecenter): Tiny docstring enhancement.
417
418 2013-02-26 Paul Eggert <eggert@cs.ucla.edu>
419
420 Minor textprop integer cleanup.
421 * intervals.h, textprop.c (add_text_properties_from_list):
422 Return void, not int, since nobody uses the return value.
423 * textprop.c (validate_plist, add_properties, remove_properties)
424 (Fadd_text_properties):
425 Don't assume list length fits in int.
426 (interval_has_all_properties, interval_has_some_properties)
427 (interval_has_some_properties_list, add_properties, remove_properties)
428 (Fadd_text_properties, Fremove_text_properties)
429 (Fremove_list_of_text_properties, text_property_stickiness):
430 Use bool for booleans.
431 (Fadd_text_properties, Fremove_text_properties):
432 (Fremove_list_of_text_properties):
433 Reindent do-while as per GNU style.
434
435 2013-02-25 Eli Zaretskii <eliz@gnu.org>
436
437 Implement CLASH_DETECTION for MS-Windows.
438
439 * filelock.c [WINDOWSNT]: Include w32.h.
440 (MAKE_LOCK_NAME): Don't use 'lock', it clashes with MS runtime
441 function of that name. Up-case the macro arguments.
442 (IS_LOCK_FILE): New macro.
443 (fill_in_lock_file_name): Use IS_LOCK_FILE instead of S_ISLNK.
444 (create_lock_file): New function, with body extracted from
445 lock_file_1.
446 [WINDOWSNT]: Implement lock files by writing a regular file with
447 the lock information as its contents.
448 (read_lock_data): New function, on Posix platforms just calls
449 emacs_readlinkat.
450 [WINDOWSNT]: Read the lock info from the file.
451 (current_lock_owner): Call read_lock_data instead of calling
452 emacs_readlinkat directly.
453 (lock_file) [WINDOWSNT]: Run the file name through
454 dostounix_filename.
455
456 * w32proc.c (sys_kill): Support the case of SIG = 0, in which case
457 just check if the process by that PID exists.
458
459 * w32.c (sys_open): Don't reset the _O_CREAT flag if _O_EXCL is
460 also present, as doing so will fail to error out if the file
461 already exists.
462
463 * makefile.w32-in ($(BLD)/filelock.$(O)): Depend on src/w32.h.
464
465 * textprop.c (Fadd_text_properties, Fremove_text_properties)
466 (Fremove_list_of_text_properties): Skip all of the intervals in
467 the region between START and END that already have resp. don't
468 have the requested properties, not just the first one.
469 Add assertions that the loop afterwards always modifies the
470 properties. (Bug#13743)
471
472 2013-02-25 Stefan Monnier <monnier@iro.umontreal.ca>
473
474 * callint.c (Fcall_interactively): Use the right lexical environment
475 for `interactive' specs (bug#13811).
476 * eval.c (Feval): Accept a lexical environment.
477
478 2013-02-25 Paul Eggert <eggert@cs.ucla.edu>
479
480 Simplify data_start configuration (Bug#13783).
481 This is a followon simplification to the fix for Bug#13650.
482 * Makefile.in (LD_FIRSTFLAG, LIB_GCC, CRT_DIR, LIB_STANDARD)
483 (START_FILES): Remove. All uses removed.
484 (otherobj): Remove $(VMLIMIT_OBJ), as it's now first.
485 (ALLOBJS): Move here from autodeps.mk, and with VMLIMITS_OBJ first.
486 (buildobj.h): Use it.
487 ($(ALLOBJS)): Depend on globals.h.
488 (temacs$(EXEEXT)): Use $(ALLOBJS).
489 * autodeps.mk (ALLOBJS): Move to Makefile.in.
490 * deps.mk (vm-limit.o):
491 * makefile.w32-in ($(BLD)/vm-limit.$(O)):
492 Do not depend on mem-limits.h.
493 * emacs.c (__do_global_ctors, __do_global_ctors_aux)
494 (__do_global_dtors, __CTOR_LIST__, __DTOR_LIST__)
495 [__GNUC__ && !ORDINARY_LINK]: Remove.
496 * mem-limits.h, pre-crt0.c: Remove.
497 * unexaix.c, unexcoff.c: Don't include mem-limits.h.
498 * unexcoff.c (etext): New decl.
499 (make_hdr): Use DATA_START instead of start_of_data.
500 * vm-limit.c: Move most of mem-limits.h's contents here.
501 (data_start): New decl. It's OK if this is approximate,
502 so simplify-away some unnecessary exactness.
503 (POINTER): Remove; all uses removed.
504 (data_space_start): Now char *, to avoid casts.
505 (exceeds_lisp_ptr): New function, replacing the old
506 EXCEEDS_LISP_PTR macro. All uses changed.
507 (check_memory_limits): Simplify and remove casts.
508 (start_of_data) [!CANNOT_DUMP || !SYSTEM_MALLOC]: Remove.
509 (memory_warnings): Use data_start instead of start_of_data.
510
511 2013-02-24 Andreas Schwab <schwab@linux-m68k.org>
512
513 * xdisp.c (set_message): Only check for debug-on-message if STRING
514 is a string. (Bug#13797)
515
516 2013-02-24 Paul Eggert <eggert@cs.ucla.edu>
517
518 Fix regression introduced by July 10 filelock.c patch.
519 * filelock.c (fill_in_lock_file_name): Fix crash caused by the
520 2012-07-10 patch to this file. Reported by Eli Zaretskii in
521 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00533.html>
522 and diagnosed by Andreas Schwab in
523 <http://lists.gnu.org/archive/html/emacs-devel/2013-02/msg00534.html>.
524
525 2013-02-22 Paul Eggert <eggert@cs.ucla.edu>
526
527 Assume C89 or better.
528 * ralloc.c (SIZE, POINTER, NIL):
529 * vm-limit.c (POINTER):
530 Remove, replacing all uses with C89 equivalents. These old
531 symbols were present only for porting to pre-C89 platforms.
532
533 2013-02-22 Claudio Bley <claudio.bley@gmail.com>
534
535 * w32.c (emacs_gnutls_pull): Don't call 'select', and don't loop.
536 This avoids warning messages reported as part of Bug#13546.
537
538 2013-02-21 Ken Brown <kbrown@cornell.edu>
539
540 * sheap.c (report_sheap_usage): Fix arguments of message1_no_log.
541
542 2013-02-20 Stefan Monnier <monnier@iro.umontreal.ca>
543
544 * sheap.c (report_sheap_usage): Prefer message1_nolog.
545
546 * keyboard.c (Qcommand_execute): New var.
547 (command_loop_1, read_char): Use it.
548 (Fcommand_execute): Remove, replace by an Elisp implementation.
549 (syms_of_keyboard): Adjust accordingly.
550
551 2013-02-19 Daniel Colascione <dancol@dancol.org>
552
553 * sheap.c (report_sheap_usage): Use message, not message1, so
554 that we don't try to create a buffer while we're in the middle
555 of dumping Emacs. Explain why.
556
557 2013-02-20 Dmitry Antipov <dmantipov@yandex.ru>
558
559 * search.c (find_newline): Return byte position in bytepos.
560 Adjust comment.
561 (find_next_newline_no_quit, find_before_next_newline):
562 Add bytepos argument.
563 * lisp.h (find_newline, find_next_newline_no_quit)
564 (find_before_next_newline): Adjust prototypes.
565 * bidi.c (bidi_find_paragraph_start):
566 * editfns.c (Fconstrain_to_field, Fline_end_position):
567 * indent.c (compute_motion, vmotion):
568 * xdisp.c (back_to_previous_line_start, forward_to_next_line_start):
569 (get_visually_first_element, move_it_vertically_backward):
570 Adjust users and avoid calls to CHAR_TO_BYTE where appropriate.
571
572 2013-02-19 Eli Zaretskii <eliz@gnu.org>
573
574 * w32proc.c (new_child): Avoid leaking handles if the subprocess
575 resources were not orderly released.
576
577 2013-02-17 Eli Zaretskii <eliz@gnu.org>
578
579 * xdisp.c (x_draw_vertical_border): For a window that is neither
580 the leftmost nor the rightmost, redraw both the left and the right
581 vertical borders. (Bug#13723)
582
583 2013-02-17 Stefan Monnier <monnier@iro.umontreal.ca>
584
585 * xml.c (init_libxml2_functions):
586 * sound.c (sound_warning):
587 * sheap.c (report_sheap_usage):
588 * process.c (wait_reading_process_output):
589 * msdos.c (XMenuActivate):
590 * macros.c (Fstart_kbd_macro, Fend_kbd_macro):
591 * keyboard.c (top_level_1):
592 * editfns.c (Fmessage, Fmessage_box):
593 * callint.c (Fcall_interactively):
594 * fns.c (Fyes_or_no_p): Prefer `message1' over `message'.
595
596 2013-02-17 Jan Djärv <jan.h.d@swipnet.se>
597
598 * xterm.c (syms_of_xterm): Move scroll-bar-adjust-thumb-portion ...
599 * frame.c (syms_of_frame): ... to here.
600
601 2013-02-16 Eli Zaretskii <eliz@gnu.org>
602
603 * w32.c (sys_chown): Remove unused function.
604
605 * w32term.c <input_signal_count>: Declare 'volatile'
606 unconditionally. (Bug#9066)
607
608 * w32.c (set_errno): Reset h_errno and don't set it to any other
609 value. Set errno instead.
610 (check_errno): Reset h_errno.
611 (sys_socket, socket_to_fd, sys_bind, sys_connect)
612 (sys_gethostname, sys_getservbyname, sys_getpeername)
613 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
614 (sys_accept, sys_recvfrom, sys_sendto, fcntl, sys_read): Don't set
615 h_errno.
616 (sys_gethostbyname): Set h_errno only errors detected.
617
618 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
619
620 * process.c (h_errno) [!HAVE_H_ERRNO]: Remove unused decl.
621
622 2013-02-15 Eli Zaretskii <eliz@gnu.org>
623
624 * keyboard.c (read_char): Fix calculation of auto-save time out
625 when auto-save-timeout is less than 4. (Bug#13720)
626
627 * w32proc.c (new_child): Free up to 2 slots of dead processes at a
628 time. Improve diagnostics in DebPrint. (Bug#13546)
629
630 * w32.c (sys_socket, sys_bind, sys_connect, sys_gethostname)
631 (sys_gethostbyname, sys_getservbyname, sys_getpeername)
632 (sys_shutdown, sys_setsockopt, sys_listen, sys_getsockname)
633 (sys_accept, sys_recvfrom, sys_sendto, fcntl): In case of failure,
634 make sure errno is set to an appropriate value. (Bug#13546)
635 (socket_to_fd): Add assertion against indexing fd_info[] with a
636 value that is out of bounds.
637 (sys_accept): If fd is negative, do not set up the child_process
638 structure for reading.
639
640 2013-02-15 Dmitry Antipov <dmantipov@yandex.ru>
641
642 * composite.c (fill_gstring_header): Remove useless prototype.
643 Break long line.
644 * lisp.h (message_dolog, compile_pattern): Adjust prototype.
645 * print.c (PRINTDECLARE, print_object):
646 * search.c (compile_pattern, fast_looking_at, search_buffer):
647 (simple_search, boyer_moore, Freplace_match):
648 * xdisp.c (c_string_pos, number_of_chars, message_dolog):
649 (get_overlay_arrow_glyph_row, display_mode_element):
650 (decode_mode_spec_coding, message3):
651 * xfaces.c (face_at_string_position): Use bool for booleans.
652 Adjust comments.
653
654 2013-02-15 Paul Eggert <eggert@cs.ucla.edu>
655
656 Fix AIX port (Bug#13650).
657 * lisp.h (XPNTR) [!USE_LSB_TAG && DATA_SEG_BITS]:
658 Fix bug introduced in 2012-07-27 change. DATA_SEG_BITS, if set,
659 was #undeffed earlier, so it cannot be used as a macro here.
660 Use the constant and not the macro.
661
662 2013-02-15 Eli Zaretskii <eliz@gnu.org>
663
664 * w32proc.c (new_child): If no vacant slots are found in
665 child_procs[], make another pass looking for slots whose process
666 has exited or died. (Bug#13546)
667
668 * w32.c (sys_pipe): When failing due to file descriptors above
669 MAXDESC, set errno to EMFILE.
670 (_sys_read_ahead): Update cp->status when failing to read serial
671 communications input, so that the status doesn't stay at
672 STATUS_READ_IN_PROGRESS. (Bug#13546)
673
674 2013-02-14 Jan Djärv <jan.h.d@swipnet.se>
675
676 * gtkutil.c (tb_size_cb): New function.
677 (xg_create_tool_bar): Connect size-allocate to tb_size_cb (Bug#13512).
678
679 2013-02-14 Stefan Monnier <monnier@iro.umontreal.ca>
680
681 * keyboard.c (active_maps): Fcurrent_active_maps expects a position, not
682 an event.
683
684 2013-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
685
686 * keyboard.c (syms_of_keyboard): Further tweaks of docstring.
687
688 2013-02-13 Dmitry Antipov <dmantipov@yandex.ru>
689
690 * font.c (font_range): Add pos_byte argument. Adjust comment
691 and break long line.
692 * font.h (font_range): Adjust prototype.
693 * composite.c (autocmp_chars): Pass byte position to font_range.
694 Break long line. Remove useless prototype and format comment.
695
696 2013-02-13 Glenn Morris <rgm@gnu.org>
697
698 * keyboard.c (input-decode-map, key-translation-map): Doc fixes.
699
700 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
701
702 Improve AIX port some more (Bug#13650).
703 With this, it should be as good as it was in 23.3, though it's
704 still pretty bad: the dumped emacs does not run. See Mark Fleishman in
705 http://lists.gnu.org/archive/html/help-gnu-emacs/2011-04/msg00287.html
706 * unexaix.c (start_of_text): Remove.
707 (_data, _text): Declare as char[], not int, as AIX manual suggests.
708 (bias, lnnoptr, text_scnptr, data_scnptr, load_scnptr)
709 (orig_load_scnptr, orig_data_scnptr):
710 Now off_t, not long, since they are file offsets.
711 (make_hdr): Use _data, not start_of_data ().
712 This is the key part of the fix.
713 (make_hdr, unrelocate_symbols): Use off_t for file offsets.
714 (unrelocate_symbols): Cast pointers to intptr_t, not to ulong.
715
716 * pre-crt0.c (data_start): Initialize to 1.
717 This ports to compilers that optimize the external declaration
718 'int x = 0;' as if it were 'int x;' to shrink the executable.
719
720 Improve AIX port (Bug#13650).
721 This doesn't fix the bug, but it makes progress: Emacs builds now.
722 * unexaix.c: Include inttypes.h, stdarg.h.
723 (report_error, report_error_1): Mark as _Noreturn.
724 (report_error): Don't report the wrong errno.
725 (report_error_1): Now varargs. All callers changed.
726 (make_hdr): Use uintptr_t, not unsigned, when converting pointers
727 to unsigned. Don't use ADDR_CORRECT, as it no longer exists.
728 (write_ptr): Use %p to print address rather than %lx and a cast
729 to unsigned long. Grow buffer a bit, to be safer.
730
731 2013-02-13 Eli Zaretskii <eliz@gnu.org>
732
733 * bidi.c (bidi_resolve_neutral): After finding the next
734 non-neutral character, accept NEUTRAL_ON type as well, because
735 directional control characters, such as LRE and RLE, have their
736 type converted to that by bidi_resolve_weak. This avoids aborts
737 when LRE/RLE follows a run of neutrals.
738 (bidi_move_to_visually_next): Assert that return value of
739 bidi_peek_at_next_level is non-negative. Negative values will
740 cause an infloop.
741
742 2013-02-13 Paul Eggert <eggert@cs.ucla.edu>
743
744 Minor getenv-related fixes.
745 * callproc.c (Fcall_process_region) [!DOS_NT]:
746 Avoid unnecessary duplicate call to getenv.
747 * callproc.c (init_callproc):
748 * dispnew.c (init_display):
749 * sysdep.c (sys_subshell):
750 Omit unnecessary cast of getenv or egetenv.
751
752 2013-02-13 Juanma Barranquero <lekktu@gmail.com>
753
754 * makefile.w32-in ($(BLD)/filelock.$(O), $(BLD)/sysdep.$(O)):
755 Update dependencies.
756
757 2013-02-12 Eli Zaretskii <eliz@gnu.org>
758
759 * xdisp.c (redisplay_internal): Don't set w->region_showing to the
760 marker's position.
761 (display_line): Set w->region_showing to the value of
762 it->region_beg_charpos, not to -1. This fixes redisplay
763 optimization when cursor is moved up after M->. (Bug#13623)
764 (Bug#13626)
765 (try_scrolling): Scroll text up more if point is too close to ZV
766 and inside the scroll margin. This makes sure point is moved
767 outside the scroll margin in these cases.
768
769 * window.h (struct window): region_showing can no longer be
770 negative.
771
772 2013-02-11 Paul Eggert <eggert@cs.ucla.edu>
773
774 Tune by using memchr and memrchr.
775 * doc.c (Fsnarf_documentation):
776 * fileio.c (Fsubstitute_in_file_name):
777 * search.c (find_newline, scan_newline):
778 * xdisp.c (pos_visible_p, display_count_lines):
779 Use memchr and memrchr rather than scanning byte-by-byte.
780 * search.c (find_newline): Rename from scan_buffer.
781 Omit first arg TARGET, as it's always '\n'. All callers changed.
782
783 Clean up read_key_sequence a tiny bit more.
784 * keyboard.c (read_char_x_menu_prompt) [HAVE_MENUS]:
785 (read_key_sequence): Remove unused locals.
786
787 2013-02-11 Stefan Monnier <monnier@iro.umontreal.ca>
788
789 Clean up read_key_sequence a bit; reread active keymaps after first event.
790 * keyboard.c (read_char, read_char_x_menu_prompt)
791 (read_char_minibuf_menu_prompt):
792 Replace nmaps+maps with a single `map' arg.
793 (follow_key): Operate on a single map.
794 (active_maps): New function.
795 (test_undefined): Also return true for nil bindings.
796 (read_key_sequence): Use active_maps to replace the arrays of keymaps with
797 a single (composed) keymap. Remember `first_event' to choose the right
798 set of active keymaps. Recompute the set of keymaps after receiving
799 the first event. Remove GOBBLE_FIRST_EVENT.
800 (syms_of_keyboard): Remove inhibit_local_menu_bar_menus.
801 * keyboard.h (read_char): Update declaration.
802 * lread.c (read_filtered_event): Adjust call to read_char.
803
804 2013-02-11 Eli Zaretskii <eliz@gnu.org>
805
806 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
807 Don't use the limitation on backwards movement when lines are truncated
808 in the window. (Bug#13675)
809
810 2013-02-11 Dmitry Antipov <dmantipov@yandex.ru>
811
812 * marker.c (set_marker_internal): If desired position is passed
813 as a marker, avoid call to buf_charpos_to_bytepos.
814 * window.c (Fset_window_point): Omit redundant type checking.
815 (Fset_window_start): Likewise. Format comment.
816 (window_scroll_pixel_based): Use set_marker_restricted_both
817 with character and byte positions obtained from an iterator.
818 (Fset_window_configuration): Use set_marker_restricted_both.
819 * xdisp.c (message_dolog): Likewise.
820
821 2013-02-10 Eli Zaretskii <eliz@gnu.org>
822
823 * xdisp.c (move_it_vertically_backward, move_it_by_lines):
824 When text lines are longer than window's screen lines, don't move back
825 too far. This speeds up some redisplay operations. (Bug#13675)
826
827 2013-02-10 Dmitry Antipov <dmantipov@yandex.ru>
828
829 * syntax.c (scan_sexps_forward): Fix byte position calculation
830 Bug#13664 (a.k.a Bug#13667) introduced with 2013-02-08 change.
831
832 2013-02-10 Paul Eggert <eggert@cs.ucla.edu>
833
834 * fileio.c (Fexpand_file_name): Omit confusing pointer comparison
835 that was not needed.
836
837 2013-02-09 Paul Eggert <eggert@cs.ucla.edu>
838
839 Minor hashing refactoring.
840 * fns.c (SXHASH_REDUCE): Move to lisp.h.
841 (sxhash_float): Return EMACS_UINT, for consistency with the other
842 hash functions.
843 * lisp.h (INTMASK): Now a macro, since SXHASH_REDUCE is now a
844 non-static inline function and therefore can't use static vars.
845 (SXHASH_REDUCE): Move here from fns.c, and make it inline.
846 * profiler.c (hashfn_profiler): Use SXHASH_REDUCE, to be consistent
847 with the other hash functions.
848
849 2013-02-09 Eli Zaretskii <eliz@gnu.org>
850
851 * callproc.c (Fcall_process_region) [WINDOWSNT]: Make sure the
852 XXXXXX part of the temporary file pattern is not downcased even
853 when w32-downcase-file-names is non-nil. (Bug#13661)
854
855 * xdisp.c (decode_mode_spec): Remove handling of %t.
856
857 * msdos.c (careadlinkatcwd): Remove.
858
859 2013-02-08 Stefan Monnier <monnier@iro.umontreal.ca>
860
861 * lread.c (skip_dyn_bytes): New function (bug#12598).
862 (read1): Use it. Use getc instead of READCHAR to read bytes.
863 (load_each_byte): Remove. Update users.
864
865 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
866
867 * search.c (scan_buffer): Calculate end byte position just once.
868 (scan_newline): Do not recalculate start_byte.
869 (search_command): Use eassert.
870 * syntax.c (struct lisp_parse_state): New member location_byte.
871 (scan_sexps_forward): Record from_byte and avoid redundant
872 character to byte position calculation ...
873 (Fparse_partial_sexp): ... here. Break too long line.
874
875 2013-02-08 Dmitry Antipov <dmantipov@yandex.ru>
876
877 * lisp.h (make_uninit_vector): New function.
878 * alloc.c (Fvector, Fmake_byte_code):
879 * ccl.c (Fregister_ccl_program):
880 * charset.c (Fdefine_charset_internal, define_charset_internal):
881 * coding.c (make_subsidiaries, Fdefine_coding_system_internal):
882 * composite.c (syms_of_composite):
883 * font.c (Fquery_font, Ffont_info, syms_of_font):
884 * fontset.c (FONT_DEF_NEW, Fset_fontset_font):
885 * ftfont.c (ftfont_shape_by_flt):
886 * indent.c (recompute_width_table):
887 * nsselect.m (clean_local_selection_data):
888 * syntax.c (init_syntax_once):
889 * w32unsubscribe.c (uniscribe_shape):
890 * window.c (Fcurrent_window_configuration):
891 * xfaces.c (Fx_family_fonts):
892 * xselect.c (selection_data_to_lisp_data): Use it.
893
894 2013-02-07 Dmitry Antipov <dmantipov@yandex.ru>
895
896 * coding.c (Fdefine_coding_system_internal): Use AREF where
897 argument is known to be a vector.
898 * fns.c (Flocale_info): Likewise for ASET.
899 * xselect.c (selection_data_to_lisp_data): Likewise for ASET.
900 * w32fns.c (w32_parse_hot_key): Likewise for ASIZE and AREF.
901
902 2013-02-05 Jan Djärv <jan.h.d@swipnet.se>
903
904 * nsmenu.m (update_frame_tool_bar): Check for negative tool bar
905 height.
906
907 * nsterm.h (HAVE_NATIVE_FS): Define if OSX => 10.7.
908 (EmacsView): Add fs_is_native, fsIsNative, isFullscreen and
909 updateCollectionBehaviour.
910
911 * nsterm.m (NEW_STYLE_FS): Remove.
912 (ns_last_use_native_fullscreen): New variable.
913 (x_make_frame_visible): Replace NEW_STYLE_FS with isFullscreen.
914 (x_set_window_size): Do not take title bar and tool bar into account
915 if isFullscreen returns YES.
916 (ns_fullscreen_hook): Replace NEW_STYLE_FS with isFullscreen.
917 (check_native_fs): New function.
918 (ns_select, ns_read_socket): Call check_native_fs if HAVE_NATIVE_FS.
919 (ns_term_init): Remove NEW_STYLE_FS.
920 (updateFrameSize:, windowWillResize:toSize:): Only adjust for title bar
921 and tool bar if isFullscreen returns NO.
922 (windowDidResize:): Replace NEW_STYLE_FS with fsIsNative.
923 (initFrameFromEmacs:): Initialize fs_is_native. Replace NEW_STYLE_FS
924 with HAVE_NATIVE_FS.
925 (window:willUseFullScreenPresentationOptions:): New method.
926 (windowDidEnterFullScreen:): Replace NEW_STYLE_FS with fsIsNative.
927 Hide toolbar if not enabled (Bug#13444).
928 (windowDidExitFullScreen:): Call updateCollectionBehaviour.
929 Restore tool bar if enabled, hide it otherwise (Bug#13444).
930 (fsIsNative, isFullscreen, updateCollectionBehaviour): New methods.
931 (toggleFullScreen:): If fs_is_native, call toggleFullScreen on
932 window. Do no set FRAME_EXTERNAL_TOOL_BAR (f) to 0.
933 Check FRAME_EXTERNAL_TOOL_BAR (f) before restoring
934 FRAME_TOOLBAR_HEIGHT (f). Call updateFrameSize when going non-fs.
935 (syms_of_nsterm): Add ns-use-native-fullscreen.
936
937 2013-02-04 Paul Eggert <eggert@cs.ucla.edu>
938
939 * fileio.c (Qchoose_write_coding_system): Now static.
940
941 2013-02-04 Eli Zaretskii <eliz@gnu.org>
942
943 * xdisp.c (window_buffer_changed): region_showing can be negative,
944 which still means region is being displayed.
945 (redisplay_internal): Resurrect code that forced redisplay of the
946 whole window when showing region and the mark has changed.
947 Record the new mark position to allow redisplay optimizations.
948 (display_line): If it->region_beg_charpos is non-zero, set the
949 window's region_showing member to -1. (Bug#13623) (Bug#13626)
950
951 * window.h (struct window) <region_showing>: Declare ptrdiff_t,
952 not bitfield of 1 bit.
953
954 2013-02-03 Daniel Colascione <dancol@dancol.org>
955
956 * emacs.c: Use execvp, not execv, when DAEMON_MUST_EXEC, so that
957 daemon mode works on cygw32 when Emacs is installed and not just
958 during development.
959
960 2013-02-02 Paul Eggert <eggert@cs.ucla.edu>
961
962 Avoid file time stamp bug on MS-Windows (Bug#13149).
963 * fileio.c (Fwrite_region): Don't use the heuristic on empty files,
964 as FAT32 doesn't update time stamps when truncating them.
965 Also, check that a file time stamp is not a multiple of 100 ns;
966 this should catch all instances of the problem on MS-Windows,
967 as its native file system resolution is 100 ns or worse, and
968 checking for a non-multiple of 100 ns should impose only a small
969 overhead on systems with ns resolution.
970
971 2013-02-02 Eli Zaretskii <eliz@gnu.org>
972
973 Avoid encoding file names on MS-Windows when they need to be run
974 through dostounix_filename.
975 * w32.c (normalize_filename): Accept an additional argument
976 MULTIBYTE; if non-zero, traverse the file name by bytes and don't
977 downcase it even if w32-downcase-file-names is non-nil.
978 (dostounix_filename): Accept an additional argument MULTIBYTE and
979 pass it to normalize_filename.
980 (emacs_root_dir): Adjust.
981
982 * msdos.h (dostounix_filename): Adjust prototype.
983
984 * w32.h (dostounix_filename): Adjust prototype.
985
986 * msdos.c (dostounix_filename): Accept an additional argument and
987 ignore it.
988 (init_environment): Adjust callers of dostounix_filename.
989
990 * fileio.c (Ffile_name_directory, file_name_as_directory)
991 (directory_file_name, Fexpand_file_name)
992 (Fsubstitute_in_file_name): [DOS_NT] Adjust call to
993 dostounix_filename.
994 [WINDOWSNT]: Downcase file names if w32-downcase-file-names is
995 non-nil.
996 (Fsubstitute_in_file_name): [DOS_NT] Don't downcase environment
997 variables, as egetenv is case-insensitive for DOS_NT.
998
999 * dired.c (file_name_completion): Don't call Fdirectory_file_name
1000 with an encoded file name.
1001
1002 * w32proc.c (Fw32_short_file_name, Fw32_long_file_name):
1003 Adjust calls to dostounix_filename.
1004
1005 * w32fns.c (Fx_file_dialog): Adjust call to dostounix_filename.
1006
1007 * unexw32.c (unexec): Adjust call to dostounix_filename.
1008
1009 * termcap.c (tgetent) [MSDOS]: Adjust call to dostounix_filename.
1010
1011 * emacs.c (decode_env_path) [DOS_NT]: Adjust call to
1012 dostounix_filename.
1013
1014 * callproc.c (Fcall_process) [MSDOS]: Adjust call to
1015 dostounix_filename.
1016
1017 * callproc.c (Fcall_process): Make sure program name in PATH and
1018 new_argv[0] is encoded, if needed. Otherwise, un-encoded string
1019 is passed to exec/spawnve, which fails unless the file-name
1020 encoding is UTF-8.
1021
1022 * w32proc.c (sys_spawnve): Make sure escape_char is initialized,
1023 even if w32-quote-process-args is nil.
1024
1025 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1026
1027 Fix timestamp bug when write-region appends nothing (Bug#13149).
1028 * fileio.c (Fwrite_region): When neither O_EXCL nor O_TRUNC is used,
1029 the file's time stamp doesn't change if Emacs happens to write nothing
1030 to the file, and on a buggy file system this could cause Emacs to
1031 incorrectly infer that the file system doesn't have the bug.
1032 Avoid this problem by inhibiting the inference in this case.
1033
1034 2013-02-01 Dmitry Antipov <dmantipov@yandex.ru>
1035
1036 * window.h (struct window): Convert base_line_number, base_line_pos
1037 and column_number_displayed members from Lisp_Object to ptrdiff_t.
1038 Convert region_showing member from Lisp_Object to bitfield.
1039 Remove sequence_number member. Adjust comments.
1040 * window.c (sequence_number): Remove.
1041 (make_window): Initialize column_number_displayed.
1042 * print.c (print_object): Follow the printed representation of
1043 frames and print window pointer to distinguish between windows.
1044 (adjust_window_count): Invalidate base_line_pos. Adjust comment.
1045 * xdisp.c (wset_base_line_number, wset_base_line_pos)
1046 (wset_column_number_displayed, wset_region_showing): Remove.
1047 (window_buffer_changed, mode_line_update_needed, redisplay_internal)
1048 (try_scrolling, try_cursor_movement, redisplay_window)
1049 (try_window_reusing_current_matrix, try_window_id, display_line)
1050 (display_mode_lines, decode_mode_spec): Adjust users.
1051 * .gdbinit (pwinx): Do not print sequence_number.
1052
1053 2013-02-01 Paul Eggert <eggert@cs.ucla.edu>
1054
1055 Use fdopendir, fstatat and readlinkat, for efficiency (Bug#13539).
1056 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): Remove.
1057 * dired.c: Include <fcntl.h>.
1058 (open_directory): New function, which uses open and fdopendir
1059 rather than opendir. DOS_NT platforms still use opendir, though.
1060 (directory_files_internal, file_name_completion): Use it.
1061 (file_attributes): New function, with most of the old Ffile_attributes.
1062 (directory_files_internal, Ffile_attributes): Use it.
1063 (file_attributes, file_name_completion_stat): First arg is now fd,
1064 not dir name. All uses changed. Use fstatat rather than lstat +
1065 stat.
1066 (file_attributes): Use emacs_readlinkat rather than Ffile_symlink_p.
1067 * fileio.c: Include <allocator.h>, <careadlinkat.h>.
1068 (emacs_readlinkat): New function, with much of the old
1069 Ffile_symlink_p, but with an fd argument for speed.
1070 It uses readlinkat rather than careadlinkatcwd, so that it
1071 need not assume the working directory.
1072 (Ffile_symlink_p): Use it.
1073 * filelock.c (current_lock_owner): Use emacs_readlinkat
1074 rather than emacs_readlink.
1075 * lisp.h (emacs_readlinkat): New decl.
1076 (READLINK_BUFSIZE, emacs_readlink): Remove.
1077 * sysdep.c: Do not include <allocator.h>, <careadlinkat.h>.
1078 (emacs_norealloc_allocator, emacs_readlink): Remove.
1079 This stuff is moved to fileio.c.
1080 * w32.c (fstatat, readlinkat): New functions.
1081 (careadlinkat): Don't check that fd == AT_FDCWD.
1082 (careadlinkatcwd): Remove; no longer needed.
1083
1084 2013-01-31 Glenn Morris <rgm@gnu.org>
1085
1086 * fileio.c (choose_write_coding_system): Make it callable from Lisp.
1087 (Fwrite_region): Update for new choose_write_coding_system args.
1088 Move the last piece of choose_write_coding_system here. (Bug#13522)
1089 (syms_of_fileio): Add choose-write-coding-system.
1090
1091 2013-01-30 Eli Zaretskii <eliz@gnu.org>
1092
1093 * w32.c (sys_open): Zero out the flags for the new file descriptor.
1094 (sys_close): Zero out the flags for the file descriptor before
1095 closing it. (Bug#13546)
1096
1097 * w32.c (parse_root, get_volume_info, readdir, read_unc_volume)
1098 (logon_network_drive, stat_worker, symlink, chase_symlinks):
1099 Use CharNextExA and CharPrevExA to iterate over file names encoded in
1100 DBCS. (Bug#13553)
1101
1102 * w32.c (w32_get_long_filename, init_environment, readlink):
1103 Support file names encoded in DBCS codepages.
1104 (readlink): Use the current file-name-coding-system, not the ANSI
1105 codepage, to decode and handle targets of symlinks.
1106
1107 2013-01-28 Eli Zaretskii <eliz@gnu.org>
1108
1109 * w32.c (opendir): Now accepts a 'const char *'.
1110
1111 2013-01-28 Dmitry Antipov <dmantipov@yandex.ru>
1112
1113 Remove obsolete redisplay code. See the discussion at
1114 http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00576.html.
1115 * dispnew.c (preemption_period, preemption_next_check): Remove.
1116 (Vredisplay_preemption_period): Likewise.
1117 (update_frame, update_single_window, update_window, update_frame_1):
1118 Adjust users. Always assume that PERIODIC_PREEMPTION_CHECKING is not
1119 used, following the 2012-06-22 change.
1120
1121 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1122
1123 * w32notify.c (Fw32notify_add_watch): Doc fix. (Bug#13540)
1124
1125 2013-01-25 Dmitry Antipov <dmantipov@yandex.ru>
1126
1127 * font.c (num_fonts): Remove the leftover from old
1128 debugging code. Adjust comment style here and there.
1129 * insdel.c (insert_1): Remove.
1130 * lisp.h (insert_1): Remove prototype.
1131 * xdisp.c (message_dolog): Adjust users to call insert_1_both.
1132
1133 2013-01-25 Eli Zaretskii <eliz@gnu.org>
1134
1135 * w32.c (max_filename_mbslen): New function.
1136 (normalize_filename, readdir): Use it to detect locales where ANSI
1137 encoding of file names uses a double-byte character set (DBCS).
1138 If a DBCS encoding is used, advance by characters using
1139 CharNextExA, instead of incrementing a 'char *' pointer.
1140 Use _mbslwr instead of _strlwr. (Bug#13515)
1141
1142 * w32heap.c (allocate_heap) [!_WIN64]: Decrease the initial
1143 request of memory reservation to 1.7GB. (Bug#13065)
1144
1145 2013-01-25 Andreas Schwab <schwab@linux-m68k.org>
1146
1147 * coding.c (detect_coding_iso_2022): Move back mis-reordered code
1148 at check_extra_latin label. (Bug#13505)
1149
1150 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1151
1152 * nsfont.m (ns_escape_name, ns_unescape_name, ns_registry_to_script):
1153 Avoid redundant calls to strlen.
1154
1155 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1156
1157 Drop async_visible and async_iconified fields of struct frame.
1158 This is possible because async input is gone; for details, see
1159 http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00734.html.
1160 * frame.h (struct frame): Remove async_visible and async_iconified
1161 members, convert garbaged to unsigned bitfield. Adjust comments.
1162 (FRAME_SAMPLE_VISIBILITY): Remove. Adjust all users.
1163 (SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED): New macros.
1164 * frame.c, gtkutil.c, term.c, w32fns.c, window.c, xdisp.c:
1165 Consistently use SET_FRAME_VISIBLE, SET_FRAME_ICONIFIED,
1166 FRAME_VISIBLE_P and FRAME_ICONIFIED_P macros where appropriate.
1167 * w32term.c: Ditto.
1168 (w32_read_socket): Save iconified state to generate DEICONIFY_EVENT
1169 properly. Likewise for obscured.
1170 * xterm.c: Ditto.
1171 (handle_one_xevent): Save visible state to generate ICONIFY_EVENT
1172 properly.
1173 * nsterm.m: Ditto.
1174 (windowDidDeminiaturize): Generate DEICONIFY_EVENT.
1175
1176 2013-01-24 Dmitry Antipov <dmantipov@yandex.ru>
1177
1178 * insdel.c (prepare_to_modify_buffer): Revert last change as suggested
1179 in http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00555.html.
1180
1181 2013-01-23 Stefan Monnier <monnier@iro.umontreal.ca>
1182
1183 * xdisp.c (message2, message2_nolog): Remove functions.
1184 (message3, message3_nolog): Extract nbytes and multibyteness directly
1185 from the string. Change all callers.
1186 (message3_nolog): Don't set message_enable_multibyte since set_message
1187 will reset it anyway.
1188 (message1, message1_nolog): Use message3.
1189 (vmessage): Use a stack allocated buffer rather than f->message_buf.
1190 (with_echo_area_buffer): Remove last two arguments. Update all callers.
1191 (set_message): Drop all but the second arg, which has to be a string.
1192 (set_message_1): Simplify now that we know that a1 is NULL and the
1193 second arg is a string.
1194 * frame.h (struct frame): Remove `message_buf' field.
1195 Use glyphs_initialized_p instead.
1196 (FRAME_MESSAGE_BUF): Remove macro.
1197 * w16select.c (Fw16_set_clipboard_data): Prefer message3 to message2.
1198 * lisp.h (message2, message2_nolog): Remove declarations.
1199 (message3, message3_nolog): Update declarations.
1200 * keyboard.c (read_char_minibuf_menu_text)
1201 (read_char_minibuf_menu_width): Remove vars.
1202 (read_char_minibuf_menu_prompt): Rewrite the menu's construction so as
1203 to correctly handle multibyte strings.
1204 * frame.c (delete_frame): Don't free message_buf any more.
1205 * editfns.c (message_text, message_length): Remove vars.
1206 (Fmessage_box): Don't copy the Lisp string's bytes any longer.
1207 * fileio.c (auto_save_error): Use message3 instead of message2.
1208 * dispnew.c (adjust_frame_message_buffer): Remove function.
1209
1210 2013-01-23 Eli Zaretskii <eliz@gnu.org>
1211
1212 * w32term.c (w32fullscreen_hook): Account correctly for the screen
1213 real estate used for the tool bar and the menu bar.
1214
1215 2013-01-23 Dmitry Antipov <dmantipov@yandex.ru>
1216
1217 * insdel.c (prepare_to_modify_buffer): Force redisplay if
1218 hidden buffer is prepared to modification (Bug#13164).
1219
1220 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1221
1222 * window.h (struct window): Change window_end_valid member from
1223 Lisp_Object to a bitfield. Adjust comments.
1224 (wset_window_end_valid): Remove.
1225 * window.c (adjust_window_count): Clear window_end_valid.
1226 (Fwindow_end): Adjust user. Remove ancient #if 0 code.
1227 (Fwindow_line_height, set_window_buffer, Frecenter)
1228 (Fsplit_window_internal, Fdelete_other_windows_internal)
1229 (Fset_window_fringes, Fset_window_scroll_bars): Adjust users.
1230 * dispnew.c (adjust_glyph_matrix, clear_window_matrices): Likewise.
1231 * xdisp.c (check_window_end, reconsider_clip_changes)
1232 (redisplay_internal, mark_window_display_accurate_1, redisplay_window)
1233 (try_window, try_window_reusing_current_matrix, note_mouse_highlight)
1234 (find_first_unchanged_at_end_row, try_window_id): Likewise.
1235
1236 2013-01-22 Dmitry Antipov <dmantipov@yandex.ru>
1237
1238 * xdisp.c (mark_window_display_accurate): Simplify the loop
1239 assuming that the only one of vchild, hchild or buffer window
1240 slots is non-nil. Call mark_window_display_accurate_1 for
1241 the leaf windows only.
1242 (mark_window_display_accurate_1): Always assume leaf window.
1243 Adjust comment.
1244
1245 2013-01-22 Paul Eggert <eggert@cs.ucla.edu>
1246
1247 * emacs.c (Qkill_emacs_hook): Now static.
1248
1249 * fileio.c (Finsert_file_contents): Simplify.
1250 Remove unnecessary assignments and tests.
1251
1252 2013-01-21 Eli Zaretskii <eliz@gnu.org>
1253
1254 * w32.c (acl_set_file): Don't test for errors unless
1255 set_file_security returns FALSE. Avoids spurious errors when
1256 saving files.
1257
1258 2013-01-21 Dmitry Antipov <dmantipov@yandex.ru>
1259
1260 * fileio.c (Finsert_file_contents): Revert code introduced at
1261 2013-01-18 in favor of the simpler and generally better fix.
1262 Save stack space by removing 'buffer' and reusing 'read_buf'
1263 where appropriate.
1264
1265 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1266
1267 * lisp.h (eabs): Define unconditionally (Bug#13419).
1268 The old "#if !defined (eabs)" was an unnecessary revenant of back
1269 when this macro was called "abs". Document 'eabs' better.
1270
1271 2013-01-19 Glenn Morris <rgm@gnu.org>
1272
1273 * fns.c (Frandom): Doc fix.
1274
1275 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1276
1277 * editfns.c (get_pos_property): Use SAFE_ALLOCA_LISP, to avoid
1278 segfault when there are lots of overlays.
1279
1280 * buffer.c (sort_overlays): Use SAFE_NALLOCA, to avoid segfault
1281 when there are lots of overlays.
1282 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00421.html
1283 for the details and a way to reproduce.
1284
1285 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1286
1287 * fileio.c: Use O_APPEND to append.
1288 This corresponds better to the natural interpretation of "append",
1289 and avoids the need to open the output file twice, or to invoke
1290 lseek when APPEND is neither nil nor a number.
1291 This relies on POSIX 1003.1-1988 or later, which is OK nowadays.
1292 (Fwrite_region): Simplify. Use O_APPEND instead of opening the
1293 file possibly twice, and lseeking to its end; this avoids the
1294 need to lseek on non-regular files. Do not use O_EXCL and O_TRUNC
1295 at the same time: the combination is never needed and apparently
1296 it doesn't work with DOS_NT.
1297
1298 Fix size bug on DOS_NT introduced by CIFS workaround (Bug#13149).
1299 * fileio.c (Fwrite_region): Use O_BINARY in checking code, too.
1300
1301 Allow floating-point file offsets.
1302 Problem reported by Vitalie Spinu in
1303 <http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00411.html>.
1304 * fileio.c (emacs_lseek): Remove.
1305 (file_offset): New function.
1306 (Finsert_file_contents, Fwrite_region): Use it.
1307
1308 2013-01-19 Chong Yidong <cyd@gnu.org>
1309
1310 * emacs.c (Fkill_emacs): Set waiting_for_input to 0 to avoid
1311 aborting on Fsignal (Bug#13289).
1312
1313 2013-01-19 Eli Zaretskii <eliz@gnu.org>
1314
1315 * w32.c (acl_set_file): Treat ERROR_ACCESS_DENIED from
1316 set_file_security as failure due to insufficient privileges.
1317 Reported by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1318 (fstat): Return owner and group like 'stat' and 'lstat' do.
1319
1320 2013-01-19 Paul Eggert <eggert@cs.ucla.edu>
1321
1322 Work around bug in CIFS and vboxsf file systems (Bug#13149).
1323 The bug was observed on Ubuntu operating inside a virtual machine,
1324 editing files mounted via CIFS or vboxsf from the MS Windows 7 host.
1325 The workaround introduces a race condition on non-buggy hosts,
1326 but it's an unlikely race and anyway there's a nearly identical
1327 nearby race that can't be fixed.
1328 * fileio.c (valid_timestamp_file_system, timestamp_file_system):
1329 New static vars.
1330 (Fwrite_region): Test for file system time stamp bug.
1331 (init_fileio): New function.
1332 * lisp.h (init_fileio): Declare it.
1333 * emacs.c (main): Call it.
1334
1335 * fileio.c (Finsert_file_contents): Simplify new diagnostic
1336 and make it more consistent with other stat-failure diagnostics.
1337
1338 2013-01-18 Dmitry Antipov <dmantipov@yandex.ru>
1339
1340 Fix crash when inserting data from non-regular files.
1341 See http://lists.gnu.org/archive/html/emacs-devel/2013-01/msg00406.html
1342 for the error description produced by valgrind.
1343 * fileio.c (read_non_regular): Rename to read_contents.
1344 Free Lisp_Save_Value object used to pass parameters.
1345 (read_non_regular_quit): Rename to read_contents_quit.
1346 (Finsert_file_contents): Redesign internal file reading loop to adjust
1347 gap and end positions after each read and so help make_gap to work
1348 properly. Do not signal an I/O error too early and so do not leave
1349 not yet decoded characters in a buffer, which was the reason of
1350 redisplay crash. Use list2 to build return value. Adjust comments.
1351
1352 2013-01-17 Paul Eggert <eggert@cs.ucla.edu>
1353
1354 Close a race when statting and reading files (Bug#13149).
1355 * fileio.c (Finsert_file_contents): Use open+fstat, not stat+open.
1356 This avoids a race if the file is renamed between stat and open.
1357 This race is not the problem originally noted in Bug#13149;
1358 see <http://bugs.gnu.org/13149#73> and later messages in the thread.
1359
1360 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1361
1362 * lisp.h (toplevel): Add comment about using Lisp_Save_Value
1363 objects, related functions and macros.
1364 (make_save_value): Adjust prototype.
1365 (make_save_pointer): New prototype.
1366 (SAFE_NALLOCA): Fix indentation. Use make_save_pointer.
1367 (SAFE_ALLOCA_LISP): Adjust make_save_value usage.
1368 * alloc.c (format_save_value): Rename to make_save_value.
1369 (make_save_pointer): New function.
1370 (record_xmalloc): Use make_save_pointer.
1371 * dired.c, editfns.c, fileio.c, font.c, gtkutil.c, lread.c:
1372 * nsmenu.m, nsterm.m, xfns.c, xmenu.c, xselect.c, keymap.c:
1373 Change users of make_save_value to make_save_pointer.
1374 Likewise for format_save_value and make_save_value.
1375
1376 2013-01-17 Dmitry Antipov <dmantipov@yandex.ru>
1377
1378 * buffer.h (NARROWED, BUF_NARROWED): Drop unused macros.
1379 (DECODE_POSITION, BUFFER_CHECK_INDIRECTION): Fix indentation.
1380 * buffer.c (toplevel, syms_of_buffer): Drop old commented-out
1381 debugging stubs.
1382
1383 2013-01-15 Paul Eggert <eggert@cs.ucla.edu>
1384
1385 * alloc.c (free_save_value): Now static.
1386
1387 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1388
1389 * keymap.c (map_keymap_internal): Use format_save_value.
1390 (map_keymap_char_table_item): Adjust accordingly.
1391 * fileio.c (non_regular_fd, non_regular_inserted)
1392 (non_regular_nbytes): Remove.
1393 (Finsert_file_contents): Convert trytry to ptrdiff_t.
1394 Use format_save_value to pass parameters to read_non_regular.
1395 (read_non_regular): Use XSAVE_ macros to extract parameters.
1396 Adjust comment.
1397 * xmenu.c (xmenu_show) [!USE_X_TOOLKIT && !USE_GTK]: Use
1398 format_save_value.
1399 (pop_down_menu) [!USE_X_TOOLKIT && !USE_GTK]: Adjust user.
1400
1401 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1402
1403 * lisp.h (XSAVE_POINTER, XSAVE_INTEGER): Change to allow
1404 extraction from any Lisp_Save_Value slot. Add type checking.
1405 * alloc.c, dired.c, editfns.c, fileio.c, ftfont.c, gtkutil.c:
1406 * keymap.c, lread.c, nsterm.h, nsmenu.c, xfns.c, xmenu.c:
1407 * xselect.c: All users changed.
1408
1409 2013-01-15 Dmitry Antipov <dmantipov@yandex.ru>
1410
1411 Some convenient bits to deal with Lisp_Save_Values.
1412 * lisp.h (XSAVE_OBJECT): New macro to extract saved objects.
1413 (allocate_misc): Remove prototype.
1414 (format_save_value): New prototype.
1415 * alloc.c (allocate_misc): Revert back to static.
1416 (format_save_value): New function to build Lisp_Save_Value
1417 object with the specified internal structure.
1418 (make_save_value): Reimplement using format_save_value.
1419 * editfns.c (save_excursion_save): Use format_save_value.
1420 (save_excursion_restore): Use XSAVE_OBJECT.
1421
1422 2013-01-14 Paul Eggert <eggert@cs.ucla.edu>
1423
1424 Avoid needless casts with XSAVE_POINTER.
1425 * alloc.c (mark_object) [GC_MARK_STACK]:
1426 * dired.c (directory_files_internal_unwind):
1427 * fileio.c (do_auto_save_unwind):
1428 * gtkutil.c (pop_down_dialog):
1429 * keymap.c (map_keymap_char_table_item):
1430 * lread.c (load_unwind):
1431 * nsmenu.m (pop_down_menu):
1432 * print.c (print_object) [GC_MARK_STACK]:
1433 * xfns.c (clean_up_file_dialog):
1434 * xmenu.c (cleanup_widget_value_tree):
1435 Omit casts between XSAVE_POINTER and a pointer type.
1436
1437 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1438
1439 Fix compilation with GC_MARK_STACK == GC_USE_GCPROS_AS_BEFORE.
1440 * eval.c (eval_sub): Protect `form' from being GCed before its
1441 car and cdr becomes protected with the backtrace entry.
1442
1443 2013-01-14 Dmitry Antipov <dmantipov@yandex.ru>
1444
1445 Make Lisp_Save_Value more versatile storage for up to four objects.
1446 * lisp.h (toplevel): Enumeration to describe types of saved objects.
1447 (struct Lisp_Save_Value): New layout. Adjust comments.
1448 (XSAVE_POINTER): New macro.
1449 (XSAVE_INTEGER): Likewise.
1450 (allocate_misc): Add prototype.
1451 (free_misc): Likewise.
1452 * alloc.c (allocate_misc): Now global.
1453 (free_misc): Likewise. Adjust comment.
1454 (make_save_value): Use new Lisp_Save_Value layout. Adjust comment.
1455 (free_save_value): Likewise.
1456 (mark_object): Likewise.
1457 * editfns.c (save_excursion_save): Pack everything within
1458 Lisp_Save_Value and so avoid xmalloc.
1459 (save_excursion_restore): Adjust to match new layout. Use free_misc
1460 because we do not allocate extra memory any more. Add eassert.
1461 * print.c (print_object): New code to print Lisp_Save_Value. Do not
1462 rely on valid_lisp_object_p if !GC_MARK_STACK. Adjust comments.
1463 * dired.c, fileio.c, font.c, ftfont.c, gtkutil.c, keymap.c,
1464 * lread.c, nsmenu.m, nsterm.h, xfns.c, xmenu.c, xselect.c:
1465 Use XSAVE_POINTER and XSAVE_INTEGER where appropriate.
1466
1467 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1468
1469 * nsfont.m (LCD_SMOOTHING_MARGIN): New define.
1470 (nsfont_draw): Remove disabling of LCD smoothing.
1471 (ns_glyph_metrics): Add LCD_SMOOTHING_MARGIN to bearings to fix
1472 Bug#11484 with LCD smoothing on.
1473
1474 2013-01-13 Paul Eggert <eggert@cs.ucla.edu>
1475
1476 Fix SIGDANGER handlers, for AIX (Bug#13408).
1477 * sysdep.c.c (handle_danger_signal, deliver_danger_signal) [SIGDANGER]:
1478 Move handlers here from emacs.c; they were out of place.
1479
1480 2013-01-11 Jan Djärv <jan.h.d@swipnet.se>
1481
1482 * xterm.c (syms_of_xterm): Adjust documentation for
1483 scroll-bar-adjust-thumb-portion.
1484
1485 2012-12-31 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
1486
1487 * xterm.c (scroll-bar-adjust-thumb-portion): New variable to
1488 determine whether scroll bar thumb size should be adjusted or
1489 not. Use variable for MOTIF.
1490
1491 * gtkutil.c (scroll-bar-adjust-thumb-portion): Use variable for
1492 GTK.
1493
1494 2013-01-13 Jan Djärv <jan.h.d@swipnet.se>
1495
1496 * nsterm.m (keyDown:): Set processingCompose to NO if an emacs key
1497 event is generated.
1498 (doCommandBySelector:): Set processingCompose to NO.
1499
1500 * nsfont.m (ns_findfonts): Add block/unblock_input calls.
1501 Remove check for fkeys count > zero, block/unblock fixes the real bug.
1502 (nsfont_list_family): Add block/unblock_input calls.
1503 (nsfont_open): Move block_input earlier. Add unblock_input before early
1504 return.
1505 (nsfont_draw): Add block/unblock_input calls.
1506
1507 2013-01-12 Dmitry Antipov <dmantipov@yandex.ru>
1508
1509 * indent.c (Fvertical_motion): Remove now-incorrect GCPROs
1510 for old_charpos and old_bytepos.
1511
1512 2013-01-12 Paul Eggert <eggert@cs.ucla.edu>
1513
1514 Fix bug with set-time-zone-rule and LOCALTIME_CACHE (Bug#13415).
1515 * editfns.c (set_time_zone_rule) [LOCALTIME_CACHE]:
1516 Clear tzvalbuf_in_environ if this workaround is in effect.
1517 Problem and fix reported by Kazuhiro Ito.
1518
1519 2013-01-11 Aaron S. Hawley <Aaron.Hawley@vtinfo.com>
1520
1521 * insdel.c (Fcombine_after_change_execute, syms_of_insdel):
1522 Fix ambiguous doc string cross-reference(s).
1523
1524 * keyboard.c (Fcommand_execute, syms_of_keyboard): Fix ambiguous
1525 doc string cross-reference(s).
1526
1527 * window.c (Fwindow_point, syms_of_window): Fix ambiguous doc
1528 string cross-reference(s).
1529
1530 2013-01-11 Dmitry Antipov <dmantipov@yandex.ru>
1531
1532 Avoid unnecessary byte position calculation for the gap movement.
1533 Since all users of move_gap do CHAR_TO_BYTE for other purposes
1534 anyway, all of them should use move_gap_both instead.
1535 * lisp.h (move_gap): Remove prototype.
1536 * insdel.c (move_gap): Remove.
1537 (move_gap_both): Add eassert.
1538 * editfns.c (Ftranspose_regions): Tweak to use move_gap_both.
1539 * xml.c (parse_region): Likewise.
1540
1541 2013-01-11 Paul Eggert <eggert@cs.ucla.edu>
1542
1543 emacsclient -t should not suspend Emacs server (Bug#13387)
1544 * lisp.h, sysdep.c (block_tty_out_signal, unblock_tty_out_signal):
1545 New functions.
1546 * term.c (init_tty): Use them instead of rolling our own code.
1547 * sysdep.c (tcsetpgrp_without_stopping): Likewise. Here, this
1548 switches from 'signal' to 'pthread_sigmask', which is safer in
1549 multithreaded applications.
1550 * term.c (Fresume_tty): Don't bother dissociating if O_IGNORE_CTTY,
1551 which has already arranged for that.
1552 (dissociate_if_controlling_tty): If setsid fails, fall back on TIOCNOTTY.
1553 This is the main part of the bug fix.
1554
1555 2013-01-10 Rainer Orth <ro@CeBiTec.Uni-Bielefeld.DE> (tiny change)
1556
1557 * gtkutil.c (xg_initialize): Add ifdef HAVE_FREETYPE around
1558 x_last_font_name (Bug#13403).
1559
1560 2013-01-10 Dmitry Antipov <dmantipov@yandex.ru>
1561
1562 Omit buffer_slot_type_mismatch and use generic predicates to enforce
1563 the type of per-buffer values where appropriate.
1564 * lisp.h (struct Lisp_Buffer_Objfwd): Rename slottype member to
1565 predicate, which is how it's really used now. Adjust comment.
1566 * buffer.h (buffer_slot_type_mismatch): Remove prototype.
1567 * buffer.c (buffer_slot_type_mismatch): Remove.
1568 (DEFVAR_PER_BUFFER, defvar_per_buffer): Rename type argument to
1569 predicate. Adjust comment.
1570 (syms_of_buffer): Use Qsymbolp for major-mode. Use Qintegerp for
1571 fill-column, left-margin, tab-width, buffer-saved-size,
1572 left-margin-width, right-margin-width, left-fringe-width,
1573 right-fringe-width, scroll-bar-width and buffer-display-count.
1574 Use Qstringp for default-directory, buffer-file-name,
1575 buffer-file-truename and buffer-auto-save-file-name. Use Qfloatp for
1576 scroll-up-aggressively and scroll-down-aggressively. Use Qnumberp for
1577 line-spacing.
1578 * data.c (store_symval_forwarding): Adjust to call the predicate.
1579
1580 2013-01-09 Juanma Barranquero <lekktu@gmail.com>
1581
1582 * w32.c (get_name_and_id, acl_set_file):
1583 * w32term.c (w32fullscreen_hook): Remove unused local variables.
1584
1585 2013-01-09 Dmitry Antipov <dmantipov@yandex.ru>
1586
1587 * lisp.h (make_gap_1): New prototype.
1588 * buffer.h (GAP_BYTES_DFL, GAP_BYTES_MIN): New macros for the special
1589 gap size values.
1590 * editfns.c (Fbuffer_size): Rename from Fbufsize to fit the common
1591 naming convention.
1592 (syms_of_editfns): Adjust defsubr. Drop commented-out obsolete code.
1593 * insdel.c (make_gap_larger): Use GAP_BYTES_DFL. Adjust comment.
1594 (make_gap_smaller): Use GAP_BYTES_MIN. Adjust comment.
1595 (make_gap_1): New function to adjust the gap of any buffer.
1596 * coding.c (coding_alloc_by_making_gap): Use it.
1597 * buffer.c (compact_buffer): Likewise. Use BUF_Z_BYTE, BUF_GAP_SIZE,
1598 GAP_BYTES_DFL and GAP_BYTES_MIN. Adjust comment.
1599
1600 2013-01-08 Juri Linkov <juri@jurta.org>
1601
1602 * xfaces.c (tty_supports_face_attributes_p): Return 0 for the case
1603 of (supports :underline (:style wave)). (Bug#13000)
1604
1605 2013-01-08 Aaron S. Hawley <aaron.s.hawley@gmail.com>
1606
1607 * undo.c (Fprimitive_undo): Move to simple.el.
1608 (syms_of_undo): Remove declarations for Sprimitive_undo.
1609
1610 2013-01-08 Stefan Monnier <monnier@iro.umontreal.ca>
1611
1612 * keyboard.c (echo_add_key): Rename from echo_add_char.
1613
1614 2013-01-06 Chong Yidong <cyd@gnu.org>
1615
1616 * keyboard.c (echo_add_char): New function, factored out from
1617 echo_char. Don't add a space if the previous echo string was
1618 empty (Bug#13255).
1619 (echo_char): Use it.
1620 (read_key_sequence): When echoing mock input, ensure that the
1621 trailing dash is properly added.
1622
1623 2013-01-05 Eli Zaretskii <eliz@gnu.org>
1624
1625 * xdisp.c (dump_glyph): Align glyph data better. Use "pD" instead
1626 of a non-portable "t" to print ptrdiff_t values. Allow up to 9
1627 digits for buffer positions, before misalignment starts.
1628 Display "0" for integer "object" field.
1629 (dump_glyph_row): Adapt the header line to changes in dump_glyph.
1630 Display the newline glyph more unambiguously.
1631
1632 2013-01-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
1633
1634 * nsterm.m (ns_draw_underwave):
1635 * w32term.c (w32_draw_underwave):
1636 * xterm.c (x_draw_underwave): Make underwave look more triangular
1637 and also degrade gracefully for small fonts. (Bug#13000)
1638
1639 * nsterm.m (ns_draw_text_decoration):
1640 * w32term.c (x_draw_glyph_string):
1641 * xterm.c (x_draw_glyph_string): Don't use previous underline
1642 thickness and position if previous underline type is underwave.
1643
1644 2013-01-04 Stefan Monnier <monnier@iro.umontreal.ca>
1645
1646 * fileio.c (Ffile_acl): Undocument return format.
1647
1648 2013-01-02 Glenn Morris <rgm@gnu.org>
1649
1650 * keymap.c (Fkey_description): Doc fix. (Bug#13323)
1651
1652 2013-01-02 Paul Eggert <eggert@cs.ucla.edu>
1653
1654 Simplify via eabs.
1655 * dired.c (file_name_completion):
1656 * doc.c (get_doc_string):
1657 * floatfns.c (round2):
1658 * font.c (font_score, font_delete_unmatched):
1659 * fringe.c (compute_fringe_widths):
1660 * lread.c (read_list):
1661 * minibuf.c (Ftry_completion):
1662 * term.c (tty_ins_del_lines):
1663 * xterm.c (x_draw_image_foreground, x_draw_image_foreground_1):
1664 Use eabs (x) rather than open-coding it as (x < 0 ? -x : x).
1665
1666 2012-12-31 Eli Zaretskii <eliz@gnu.org>
1667
1668 * w32.c (unsetenv): Set up the string passed to _putenv
1669 correctly.
1670 See http://lists.gnu.org/archive/html/emacs-devel/2012-12/msg00863.html
1671 for the bug this caused.
1672
1673 2012-12-30 Paul Eggert <eggert@cs.ucla.edu>
1674
1675 * coding.c (Qmac): Now static.
1676
1677 2012-12-30 Jan Djärv <jan.h.d@swipnet.se>
1678
1679 * gtkutil.c (TOOLBAR_TOP_WIDGET): New macro.
1680 (xg_pack_tool_bar): Use TOOLBAR_TOP_WIDGET, condition out use of
1681 handlebox_widget. Set toolbar_in_hbox to false/true, set
1682 toolbar_is_packed to true.
1683 (xg_update_tool_bar_sizes): Use widget returned by TOOLBAR_TOP_WIDGET.
1684 (update_frame_tool_bar): Check toolbar_is_packed for packing.
1685 Show all on TOOLBAR_TOP_WIDGET.
1686 (free_frame_tool_bar): Check toolbar_is_packed. Use widget returned
1687 by TOOLBAR_TOP_WIDGET.
1688 (xg_change_toolbar_position): Use widget returned by TOOLBAR_TOP_WIDGET.
1689 Check toolbar_is_packed.
1690 (xg_have_tear_offs, tearoff_remove, tearoff_activate): Condition on
1691 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1692 (xg_have_tear_offs): When ! HAVE_GTK_TEAROFF_MENU_ITEM_NEW, return
1693 false.
1694 (create_menus): Create tearoff only if HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1695 (xg_update_menubar): Update title only if
1696 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1697 (xg_update_submenu): Skip tearoff only if
1698 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1699 (xg_initialize): Initialize xg_detached_menus only if
1700 HAVE_GTK_TEAROFF_MENU_ITEM_NEW.
1701
1702 * xterm.h (struct x_output): Surround handlebox_widget with
1703 #ifdef HAVE_GTK_HANDLE_BOX_NEW. toolbar_is_packed is new,
1704 toolbar_in_hbox is bool.
1705
1706 2012-12-30 Andreas Schwab <schwab@linux-m68k.org>
1707
1708 * src/Makefile.in (TEMACS_LDFLAGS2): Remove.
1709 (LIBS_GNUSTEP): Define.
1710 (LIBES): Add $(LIBS_GNUSTEP).
1711 (temacs$(EXEEXT)): Use $(LDFLAGS) instead of $(TEMACS_LDFLAGS2).
1712
1713 2012-12-30 Eli Zaretskii <eliz@gnu.org>
1714
1715 * xdisp.c (set_cursor_from_row): Don't confuse a truncation or
1716 continuation glyph on a TTY with an indication of an empty line.
1717 (Bug#13277)
1718
1719 2012-12-29 Eli Zaretskii <eliz@gnu.org>
1720
1721 * fileio.c (Fset_file_selinux_context, Fset_file_acl): Return t if
1722 file's SELinux context or ACLs successfully set, nil otherwise.
1723 (Bug#13298)
1724 (Fcopy_file) [WINDOWSNT]: Improve diagnostics when CopyFile fails.
1725
1726 * w32proc.c (reader_thread): Avoid passing NULL handles to
1727 SetEvent and WaitForSingleObject.
1728
1729 2012-12-28 Paul Eggert <eggert@cs.ucla.edu>
1730
1731 Port EXTERNALLY_VISIBLE to Clang 3.2.
1732 * conf_post.h (__has_attribute): New macro.
1733 (EXTERNALLY_VISIBLE): Use it. This ports to Clang 3.2.
1734
1735 2012-12-27 Glenn Morris <rgm@gnu.org>
1736
1737 * cygw32.c (Fcygwin_convert_file_name_to_windows)
1738 (Fcygwin_convert_file_name_from_windows): Doc fixes.
1739
1740 2012-12-27 Eli Zaretskii <eliz@gnu.org>
1741
1742 * fileio.c (file_name_as_directory, directory_file_name):
1743 Accept an additional argument MULTIBYTE to indicate whether the input C
1744 came from a multibyte or a unibyte Lisp string; all callers
1745 adjusted. Don't assume the input string is always multibyte.
1746 (Bug#13262)
1747 (Ffile_name_directory) [DOS_NT]: Handle unibyte strings correctly:
1748 don't ENCODE_FILE them, and return a unibyte string if the input
1749 was unibyte.
1750 (Fexpand_file_name): Don't mix unibyte with multibyte strings, and
1751 don't assume the input strings will always be multibyte. If the
1752 input strings are multibyte, decode strings obtained from C
1753 library functions.
1754
1755 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1756
1757 * lisp.h (toplevel): Add two notices to the comment about
1758 defining a new Lisp data type.
1759 * print.c (print_object): If Lisp_Save_Value object's pointer
1760 is the address of a memory area containing Lisp_Objects, try
1761 to print them.
1762 * alloc.c (valid_lisp_object_p): Adjust comment.
1763
1764 2012-12-26 Dmitry Antipov <dmantipov@yandex.ru>
1765
1766 * keyboard.c (record_asynch_buffer_change): Initialize an event
1767 only if it's really needed.
1768 * frame.h (enum output_method): Remove output_mac member since
1769 it's a leftover from the deleted code.
1770 * frame.c (Fframep): Adjust user here ...
1771 * terminal.c (Fterminal_live_p): ... and here.
1772 * coding.c (Qmac): Now here because it's only used to denote
1773 end-of-line encoding type.
1774 (syms_of_coding): DEFSYM it.
1775 * frame.h (Qmac): Remove duplicated declaration.
1776
1777 2012-12-26 Paul Eggert <eggert@cs.ucla.edu>
1778
1779 * window.c (select_window_1): Now static, since it's used only here.
1780
1781 2012-12-25 Eli Zaretskii <eliz@gnu.org>
1782
1783 * window.c (window_body_cols): Subtract display margins from the
1784 window body width on TTYs as well. See
1785 http://lists.gnu.org/archive/html/help-gnu-emacs/2012-12/msg00317.html
1786 for the original report.
1787
1788 2012-12-25 Dmitry Antipov <dmantipov@yandex.ru>
1789
1790 * xdisp.c (redisplay_window): Remove inner local variable
1791 because the outer shadowed one has the same meaning.
1792 * xterm.h (struct x_output): Remove toolbar_detached member since it's
1793 set but never used.
1794 * gtkutil.c (xg_tool_bar_detach_callback, xg_tool_bar_attach_callback)
1795 (xg_create_tool_bar): Adjust users.
1796
1797 2012-12-24 Dmitry Antipov <dmantipov@yandex.ru>
1798
1799 * buffer.h (BUF_COMPACT): New macro to follow the common style.
1800 * buffer.c (Fget_buffer_create): Use it to set compact field of
1801 struct buffer_text to avoid accessing an uninitialized value
1802 when compact_buffer is called for the first time.
1803 (compact_buffer): Use convenient BUF_COMPACT and BUF_MODIFF.
1804 (Fset_buffer_modified_p): Use buffer_window_count to check
1805 whether the buffer is displayed in some window.
1806 * xdisp.c (message_dolog): Likewise.
1807
1808 2012-12-23 Eli Zaretskii <eliz@gnu.org>
1809
1810 * w32.c (acl_set_file): If setting the file security descriptor
1811 fails, and the new DACL is identical to the existing one, silently
1812 return success. This fixes problems for users backing up their
1813 own files without having the necessary privileges for setting
1814 security descriptors.
1815
1816 * w32proc.c (reader_thread): Do not index fd_info[] with negative
1817 values.
1818 (reader_thread): Exit when cp->status becomes STATUS_READ_ERROR
1819 after WaitForSingleObject returns normally. This expedites reader
1820 thread shutdown when delete_child triggers it.
1821 (reap_subprocess): More accurate commentary for why we call
1822 delete_child only when cp->fd is negative.
1823
1824 * w32.c (sys_close): Do not call delete_child on a subprocess
1825 whose handle is not yet closed. Instead, set its file descriptor
1826 to a negative value, so that reap_subprocess will call
1827 delete_child on that subprocess when its SIGCHLD arrives.
1828 This avoids closing handles used for communications between sys_select
1829 and reader_thread, which doesn't give sys_select a chance to
1830 notice that the process exited and invoke the SIGCHLD handler for
1831 it.
1832
1833 2012-12-23 Jan Djärv <jan.h.d@swipnet.se>
1834
1835 * nsfns.m (Fns_do_applescript): Run event loop until script has
1836 been executed (Bug#12969).
1837 (ns_run_ascript): Chech as_script for nil, set to nil after
1838 executing script.
1839
1840 2012-12-22 Martin Rudalics <rudalics@gmx.at>
1841
1842 * window.c (Fselect_window): Reword doc-string (Bug#13248).
1843
1844 2012-12-22 Eli Zaretskii <eliz@gnu.org>
1845
1846 * w32term.c (w32fullscreen_hook): New function.
1847 (w32_create_terminal): Plug it into the terminal's fullscreen_hook.
1848
1849 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1850
1851 * fileio.c (Finsert_file_contents): Doc fix.
1852
1853 * w32proc.c (new_child, delete_child, find_child_pid): For a
1854 subprocess, consider its slot being in use as long as its process
1855 handle (procinfo.hProcess) is not NULL. This avoids reusing the
1856 slot when a new process is started immediately after killing
1857 another one, without waiting enough time for the first process to
1858 be reaped and resources allocated for it be orderly freed.
1859 (Bug#13086)
1860 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
1861
1862 2012-12-21 Chong Yidong <cyd@gnu.org>
1863
1864 * buffer.c (Fset_buffer_major_mode): Doc fix (Bug#13231).
1865
1866 * fns.c (Fcompare_strings): Doc fix (Bug#13081).
1867
1868 2012-12-21 Eli Zaretskii <eliz@gnu.org>
1869
1870 * w32.c (get_name_and_id): Always pass NULL as the first argument
1871 of lookup_account_sid. Avoids crashes with UNC file names that
1872 refer to DFS domains, not to specific machine names. (Bug#12621)
1873 Remove now unused argument FNAME; all callers changed.
1874 (get_file_owner_and_group): Remove now unused argument FNAME; all
1875 callers changed.
1876
1877 2012-12-21 Chong Yidong <cyd@gnu.org>
1878
1879 * editfns.c (Finsert_char): Since read-char-by-name now signals an
1880 error for invalid chars, don't check for a nil return value.
1881
1882 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1883
1884 Avoid calls to CHAR_TO_BYTE if byte position is known.
1885 * editfns.c (make_buffer_string_both): Use move_gap_both.
1886 (Fbuffer_string): Use make_buffer_string_both.
1887 * marker.c (buf_charpos_to_bytepos): Convert to eassert.
1888 Adjust comment.
1889 (buf_bytepos_to_charpos): Likewise.
1890 (charpos_to_bytepos): Remove.
1891 * fileio.c (Finsert_file_contents): Use move_gap_both.
1892 * search.c (Freplace_match): Likewise.
1893 * process.c (process_send_region): Likewise. Use convenient
1894 names for byte positions.
1895 * lisp.h (charpos_to_bytepos): Remove prototype.
1896 * indent.c (scan_for_column): Use CHAR_TO_BYTE.
1897 * insdel.c (move_gap): Likewise.
1898
1899 2012-12-20 Paul Eggert <eggert@cs.ucla.edu>
1900
1901 * xdisp.c (redisplay_internal): Remove now-unused local.
1902
1903 2012-12-20 Stefan Monnier <monnier@iro.umontreal.ca>
1904
1905 * xdisp.c (select_frame_for_redisplay, ensure_selected_frame): Remove.
1906 (redisplay_internal): Don't bother selecting the frame to get the
1907 proper value of frame-local variables (bug#13225).
1908
1909 2012-12-20 Dmitry Antipov <dmantipov@yandex.ru>
1910
1911 * textprop.c (set_text_properties_1): Do not allow NULL interval.
1912 Rename 4th argument since it may be buffer or string. Adjust comment.
1913 * intervals.c (graft_intervals_info_buffer): Find an interval here.
1914
1915 2012-12-19 Dmitry Antipov <dmantipov@yandex.ru>
1916
1917 * coding.c (Fdetect_coding_region): Do not check start and end with
1918 CHECK_NUMBER_COERCE_MARKER since validate_region does that itself.
1919 (code_convert_region): Likewise.
1920
1921 2012-12-18 Eli Zaretskii <eliz@gnu.org>
1922
1923 * w32.c (acl_get_file, acl_set_file): Run the file name through
1924 map_w32_filename, and resolve any symlinks in the file name, like
1925 Posix platforms do.
1926 (acl_set_file): Call revert_to_self, if any privileges were
1927 enabled.
1928
1929 2012-12-17 Juanma Barranquero <lekktu@gmail.com>
1930
1931 * makefile.w32-in ($(BLD)/editfns.$(O), $(BLD)/fileio.$(O))
1932 ($(BLD)/w32.$(O)): Update dependencies.
1933
1934 2012-12-17 Stefan Monnier <monnier@iro.umontreal.ca>
1935
1936 * xdisp.c (select_frame_for_redisplay): Use select_window_1 to
1937 propagate redisplay's scrolling (if any) to the right window.
1938 (redisplay_internal): Use ensure_selected_frame.
1939 (display_mode_lines): Complete last fix.
1940 * window.c (select_window_1): New func, extracted from select_window.
1941 (select_window): Use it.
1942 * window.h (select_window_1): Declare.
1943
1944 2012-12-17 Eli Zaretskii <eliz@gnu.org>
1945
1946 Emulate Posix ACL APIs on MS-Windows.
1947 * w32.c: Include sddl.h and sys/acl.h.
1948 (SDDL_REVISION_1): Define if not already defined.
1949 (g_b_init_get_security_descriptor_dacl)
1950 (g_b_init_convert_sd_to_sddl, g_b_init_convert_sddl_to_sd)
1951 (g_b_init_is_valid_security_descriptor)
1952 (g_b_init_set_file_security): New static flags.
1953 (globals_of_w32): Initialize them to zero.
1954 (SetFileSecurity_Name): New string constant.
1955 (SetFileSecurity_Proc, GetSecurityDescriptorDacl_Proc)
1956 (ConvertStringSecurityDescriptorToSecurityDescriptor_Proc)
1957 (ConvertSecurityDescriptorToStringSecurityDescriptor_Proc)
1958 (IsValidSecurityDescriptor_Proc): New typedefs.
1959 (get_file_security, get_security_descriptor_owner)
1960 (get_security_descriptor_group): Set errno to ENOTSUP.
1961 (set_file_security, get_security_descriptor_dacl)
1962 (is_valid_security_descriptor, convert_sd_to_sddl)
1963 (convert_sddl_to_sd, acl_valid, acl_to_text, acl_from_text)
1964 (acl_free, acl_get_file, acl_set_file): New functions.
1965
1966 * fileio.c (Fcopy_file) [WINDOWSNT]: Support copying ACLs.
1967
1968 2012-12-17 Paul Eggert <eggert@cs.ucla.edu>
1969
1970 Don't reraise SIGCHLD, as that can now lose (Bug#13192).
1971 With the 2012-12-03 fix for Bug#12980 in place, an old workaround
1972 for some of that bug's symptoms can now cause Emacs to abort.
1973 Remove the workaround.
1974 * process.c (wait_reading_process_output): Don't reraise SIGCHLD.
1975 The bug that caused SIGCHLD to get lost has been fixed, and the
1976 workaround for it can now cause Emacs to abort.
1977
1978 2012-12-16 Paul Eggert <eggert@cs.ucla.edu>
1979
1980 * sysdep.c (emacs_abort): Bump backtrace size to 40.
1981 Companion to the 2012-09-30 patch. Suggested by Eli Zaretskii in
1982 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
1983
1984 2012-12-16 Romain Francoise <romain@orebokech.com>
1985
1986 * fileio.c (Ffile_acl, Fset_file_acl): New functions.
1987 (Fcopy_file): Change last arg to `preserve_extended_attributes'
1988 and copy ACL entries of file in addition to SELinux context if set.
1989 (syms_of_fileio): Add `file-acl' and `set-file-acl'.
1990
1991 * Makefile.in (LIBACL_LIBS): New macro.
1992 (LIBES): Use it.
1993
1994 2012-12-15 Paul Eggert <eggert@cs.ucla.edu>
1995
1996 * fileio.c (internal_delete_file): Use bool for boolean.
1997
1998 2012-12-15 Eli Zaretskii <eliz@gnu.org>
1999
2000 Fix bug #13079 on MS-Windows with temp files not being deleted.
2001 * w32.h (_child_process): New members input_file and
2002 pending_deletion.
2003 (register_child): First argument is now pid_t.
2004 (record_infile, record_pending_deletion): New prototypes.
2005
2006 * w32proc.c (new_child): Initialize input_file and
2007 pending_deletion members of the child.
2008 (delete_child): Delete the child's temporary input file, if any,
2009 that is pending deletion.
2010 (register_child): First argument is now pid_t.
2011 (record_infile, record_pending_deletion): New functions.
2012 (reap_subprocess): Fix a typo in DebPrint string.
2013 (sys_spawnve, sys_kill): Use pid_t for PID arguments.
2014
2015 * fileio.c (internal_delete_file): Return an int again: non-zero
2016 if delete-file succeeds, zero otherwise.
2017
2018 * lisp.h (internal_delete_file): Adjust prototype.
2019
2020 * callproc.c (Fcall_process): Don't overwrite infile with result
2021 of DECODE_FILE.
2022 [WINDOWSNT] If BUFFER is an integer, i.e. we are launching an
2023 asynchronous subprocess, record the name of the input file name,
2024 if any.
2025 (delete_temp_file) [WINDOWSNT]: If internal_delete_file fails to
2026 delete the file, record it as pending deletion when the subprocess
2027 exits.
2028
2029 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2030
2031 * editfns.c [HAVE_PWD_H]: Include grp.h.
2032
2033 * makefile.w32-in ($(BLD)/editfns.$(O)): Add $(NT_INC)/grp.h.
2034
2035 2012-12-14 Paul Eggert <eggert@cs.ucla.edu>
2036
2037 Fix permissions bugs with setgid directories etc. (Bug#13125)
2038 * dired.c (Ffile_attributes): Return t as the 9th attribute,
2039 to mark it as a placeholder. The old value was often wrong.
2040 The only user of this attribute has been changed to use
2041 file-ownership-preserved-p instead, with its new group arg.
2042 * editfns.c (Fgroup_gid, Fgroup_real_gid): New functions.
2043
2044 2012-12-14 Stefan Monnier <monnier@iro.umontreal.ca>
2045
2046 * xdisp.c (select_frame_for_redisplay, display_mode_lines):
2047 Keep selected_window and selected_frame in sync.
2048
2049 2012-12-14 Eli Zaretskii <eliz@gnu.org>
2050
2051 * w32.c (stat_worker): If w32_stat_get_owner_group is zero, do not
2052 try to get accurate owner and group information from NT file
2053 security APIs. This is to make most callers of 'stat' and
2054 'lstat', which don't need that information, much faster.
2055
2056 * dired.c (Ffile_attributes) [WINDOWSNT]:
2057 Set w32_stat_get_owner_group to a non-zero value, to request accurate
2058 owner and group information from 'lstat'.
2059
2060 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2061
2062 * fileio.c (Finsert_file_contents): Don't put tail into head area,
2063 as that confuses set-auto-coding, so insist on the head-read
2064 returning the full 1024 bytes. Let lseek compute the tail offset;
2065 less work for us. Do not ignore I/O errors when reading the tail.
2066
2067 * xdisp.c: Minor style fixes.
2068 (init_iterator): Hoist assignment out of if-expression.
2069 (markpos_of_region): Callers now test for sign, not for -1.
2070
2071 2012-12-13 Dmitry Antipov <dmantipov@yandex.ru>
2072
2073 Minor redisplay optimization when the region length is zero.
2074 * xdisp.c (markpos_of_region): New function.
2075 (init_iterator): Do not highlight the region of zero length.
2076 (redisplay_window): Check whether the region is of non-zero length.
2077 (try_cursor_movement): Allow if the region length is zero.
2078 (try_window_reusing_current_matrix, try_window_id): Likewise.
2079
2080 2012-12-13 Eli Zaretskii <eliz@gnu.org>
2081
2082 * search.c (search_buffer): Check the inverse translations of each
2083 character in pattern when the buffer being searched is unibyte.
2084 (Bug#13084)
2085
2086 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2087
2088 * fileio.c (Fvisited_file_modtime): Return (-1 ...) for nonexistent
2089 files, fixing a regression from 24.2.
2090 (Fverify_visited_file_modtime): Don't read uninitialized st.st_size.
2091
2092 2012-12-13 Paul Eggert <eggert@cs.ucla.edu>
2093
2094 * fileio.c (Fcopy_file): Make fstat failure as serious as open failure.
2095 fstat shouldn't fail, and if it does fail copy-file should not proceed.
2096 Remove unnecessary S_ISLNK test, as (contra the comments) this
2097 function can't copy symlinks. Improve quality of error message
2098 when attempting to copy files that are neither regular files nor
2099 directories.
2100
2101 2012-12-12 Dmitry Antipov <dmantipov@yandex.ru>
2102
2103 * dispnew.c (set_window_cursor_after_update): Use clip_to_bounds.
2104 * gtkutil.c (xg_set_toolkit_scroll_bar_thumb):
2105 * window.c (Frecenter):
2106 * xdisp.c (resize_mini_window, hscroll_window_tree, draw_glyphs):
2107 * xterm.c (x_set_toolkit_scroll_bar_thumb): Likewise.
2108
2109 2012-12-12 Daniel Colascione <dancol@dancol.org>
2110
2111 * unexcw.c (fixup_executable): Use posix_fallocate to ensure that
2112 the dumped Emacs is not a sparse file, greatly improving Cygwin
2113 "make bootstrap" performance.
2114
2115 2012-12-11 Michael Albinus <michael.albinus@gmx.de>
2116
2117 * inotify.c (inotify_callback): Generate an Emacs event for every
2118 incoming inotify event.
2119
2120 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2121
2122 * xdisp.c (handle_face_prop): Fix logic of computing
2123 it->start_of_box_run_p.
2124 (append_space_for_newline): If the glyph row is R2L, reset the
2125 iterator's end_of_box_run_p flag before prepending the space glyph.
2126 (extend_face_to_end_of_line): If the glyph row is R2L, reset the
2127 iterator's start_of_box_run_p flag before prepending the stretch.
2128 (append_glyph, produce_image_glyph, append_composite_glyph)
2129 (append_stretch_glyph, append_glyphless_glyph): Reverse the
2130 left_box_line_p and right_box_line_p flags of the glyph for R2L
2131 glyph rows. (Bug#13011)
2132
2133 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2134
2135 * buffer.c (Fset_buffer_multibyte): Do not force redisplay
2136 if changed buffer is not shown in a window.
2137 * insdel.c (prepare_to_modify_buffer): Likewise.
2138 * window.c (replace_buffer_in_windows_safely): Do nothing
2139 if buffer is not shown in a window.
2140 (Fforce_window_update): Likewise if string or buffer argument
2141 is passed.
2142
2143 2012-12-11 Eli Zaretskii <eliz@gnu.org>
2144
2145 * inotify.c (Finotify_add_watch): Rename decoded_file_name to
2146 encoded_file_name, which is what it is.
2147
2148 2012-12-11 Dmitry Antipov <dmantipov@yandex.ru>
2149
2150 Consistently use marker_position and marker_byte_position.
2151 * fringe.c (Ffringe_bitmaps_at_pos):
2152 * indent.c (Fvertical_motion):
2153 * insdel.c (prepare_to_modify_buffer):
2154 * keyboard.c (make_lispy_position):
2155 * window.c (Fwindow_end, Fpos_visible_in_window_p, unshow_buffer)
2156 (window_scroll_pixel_based, displayed_window_lines)
2157 (Fset_window_configuration):
2158 * xdisp.c (message_dolog, with_echo_area_buffer_unwind_data)
2159 (mark_window_display_accurate_1, redisplay_window, decode_mode_spec):
2160 Replace direct access to marker fields with calls
2161 to marker_position and/or marker_byte_position.
2162
2163 2012-12-11 Juanma Barranquero <lekktu@gmail.com>
2164
2165 * makefile.w32-in (SIG2STR_H): New macro.
2166 (SYSWAIT_H, $(BLD)/emacs.$(O), $(BLD)/process.$(O))
2167 ($(BLD)/w32notify.$(O)): Update dependencies.
2168
2169 2012-12-10 Daniel Colascione <dancol@dancol.org>
2170
2171 * w32term.c, keyboard.c: Fix build break in cygw32 by omitting
2172 Windows file notification functionality unless WINDOWSNT.
2173
2174 * w32gui.h (hprevinst, lpCmdLine, nCmdShow): Remove unused
2175 declarations.
2176
2177 * w32fns.c (cache_system_info): Initialize the global hinst
2178 variable here so various initialization calls DTRT.
2179
2180 * unexw32.c (hprevinst, lpCmdLine, nCmdShow): Remove unused variables.
2181 (hinst): Remove unneeded extern declaration.
2182 (_start): Remove initialization of above variables; remove
2183 initialization of hinst, as cache_system_info now does that.
2184
2185 * emacs.c (main): Call cache_system_info early in startup; we
2186 previously weren't calling it in Cygwin builds.
2187
2188 * Makefile.in (ntsource, WINDRES, W32_RES, W#@_RES_LINK):
2189 Teach the autoconf build system how to compile a Windows resource file
2190 and link it to Emacs.
2191
2192 2012-12-10 Dmitry Antipov <dmantipov@yandex.ru>
2193
2194 Per-buffer window counters.
2195 * buffer.h (struct buffer): New member window_count.
2196 (buffer_window_count): New function.
2197 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
2198 Initialize window_count.
2199 (Fkill_buffer): Verify window_count for the buffer being killed.
2200 (modify_overlay): Do not force redisplay if buffer is not shown
2201 in any window.
2202 (init_buffer_once): Initialize window_count for buffer_defaults
2203 and buffer_local_symbols.
2204 * window.h (buffer_shared): Remove declaration.
2205 (wset_buffer): Convert from inline ...
2206 * window.c (wset_buffer): ... to an ordinary function.
2207 (adjust_window_count): New function.
2208 (make_parent_window): Use it.
2209 * xdisp.c (buffer_shared): Remove.
2210 (redisplay_internal, redisplay_window): Adjust users.
2211 (buffer_shared_and_changed): Use per-buffer window counter.
2212
2213 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2214
2215 Support for filesystem notifications on MS-Windows.
2216 * w32proc.c (sys_select): If drain_message_queue returns non-zero,
2217 and this is a TTY frame, signal the caller that keyboard input is
2218 available.
2219
2220 * w32xfns.c (drain_message_queue): Now returns an int: an
2221 indication whether any WM_EMACS_FILENOTIFY messages were found in
2222 the queue.
2223
2224 * w32inevt.c (handle_file_notifications): New function.
2225 (w32_console_read_socket): Call it to process file notifications.
2226
2227 * w32console.c (initialize_w32_display): Record the main thread ID
2228 in dwMainThreadId.
2229
2230 * deps.mk (inotify.o): New dependency list.
2231
2232 * Makefile.in (SOME_MACHINE_OBJECTS): Add w32notify.o.
2233
2234 * w32term.h (WM_EMACS_FILENOTIFY): New custom message.
2235 (WM_EMACS_END): Bump value by 1.
2236 (notification_buffer_in_use, file_notifications)
2237 (notifications_size, notifications_desc): Declare.
2238 (w32_get_watch_object, lispy_file_action, globals_of_w32notify):
2239 Add prototypes.
2240
2241 * w32term.c (lispy_file_action, queue_notifications): New functions.
2242 (syms_of_w32term) <Qadded, Qremoved, Qmodified, Qrenamed_from>
2243 <Qrenamed_to>: New symbols.
2244 (w32_read_socket): Handle the WM_EMACS_FILENOTIFY message.
2245
2246 * w32notify.c: New file, implements file event notifications for
2247 MS-Windows.
2248
2249 * w32fns.c (w32_wnd_proc): Handle the WM_EMACS_FILENOTIFY message
2250 by posting it to the w32_read_socket queue.
2251
2252 * termhooks.h (enum event_kind) [HAVE_NTGUI]: Support FILE_NOTIFY_EVENT.
2253
2254 * makefile.w32-in (OBJ2): Add $(BLD)/w32notify.$(O).
2255 (GLOBAL_SOURCES): Add w32notify.c
2256 ($(BLD)/w32notify.$(O)): New set of dependencies.
2257
2258 * lisp.h (syms_of_w32notify) [WINDOWSNT]: Add prototype.
2259
2260 * keyboard.c (kbd_buffer_get_event) [WINDOWSNT]:
2261 Handle FILE_NOTIFY_EVENT.
2262 (syms_of_keyboard) [HAVE_NTGUI] <Qfile_notify>: New symbol.
2263 (keys_of_keyboard) [WINDOWSNT]: Bind file-notify to
2264 w32notify-handle-event by default.
2265
2266 * emacs.c (main) [WINDOWSNT]: Call globals_of_w32notify and
2267 syms_of_w32notify.
2268
2269 2012-12-10 Rüdiger Sonderfeld <ruediger@c-plusplus.de>
2270
2271 Support for filesystem notifications on GNU/Linux via inotify.
2272 * termhooks.h (enum event_kind) [HAVE_INOTIFY]: Add FILE_NOTIFY_EVENT.
2273
2274 * lisp.h (syms_of_inotify) [HAVE_INOTIFY]: Add prototype.
2275
2276 * keyboard.c (Qfile_inotify) [HAVE_INOTIFY]: New variable.
2277 (syms_of_keyboard): DEFSYM it.
2278 (kbd_buffer_get_event) [HAVE_INOTIFY]: Generate FILE_NOTIFY_EVENT.
2279 (make_lispy_event): Support FILE_NOTIFY_EVENT by generating
2280 Qfile_inotify events.
2281 (keys_of_keyboard) [HAVE_INOTIFY]: Bind file-inotify events in
2282 special-event-map to inotify-handle-event.
2283
2284 * emacs.c (main) [HAVE_INOTIFY]: Call syms_of_inotify.
2285
2286 * Makefile.in (base_obj): Add inotify.o.
2287
2288 * inotify.c: New file.
2289
2290 2012-12-10 Jan Djärv <jan.h.d@swipnet.se>
2291
2292 * nsterm.m (fd_handler:): FD_ZERO fds (Bug#13103).
2293
2294 2012-12-10 Fabrice Popineau <fabrice.popineau@gmail.com>
2295
2296 * w32fns.c (cache_system_info): Cast sysinfo_cache.dwPageSize to
2297 DWORD_PTR, for compatibility with 64-bit builds.
2298
2299 * w32.c (_PROCESS_MEMORY_COUNTERS_EX):
2300 (GetProcessWorkingSetSize_Proc, get_process_working_set_size)
2301 (system_process_attributes): Use SIZE_T rather than DWORD, for
2302 compatibility with 64-bit builds.
2303
2304 2012-12-10 Christopher Schmidt <christopher@ch.ristopher.com>
2305
2306 * lread.c (Vload_source_file_function): Doc fix (Bug#11647).
2307
2308 2012-12-10 Eli Zaretskii <eliz@gnu.org>
2309
2310 * indent.c (Fvertical_motion): If a display string will be
2311 displayed on the left or the right margin, don't consider it as a
2312 factor in cursor positioning. (Bug#13108)
2313
2314 2012-12-10 Martin Rudalics <rudalics@gmx.at>
2315
2316 * editfns.c (Fcompare_buffer_substrings): Reword doc-string.
2317
2318 2012-12-10 Paul Eggert <eggert@cs.ucla.edu>
2319
2320 * fileio.c (Fsubstitute_in_file_name): Use ptrdiff_t, not int,
2321 for string length.
2322
2323 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2324
2325 * w32.c (unsetenv): Return 0 if the input string is too long.
2326
2327 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2328
2329 Use putenv+unsetenv instead of modifying environ directly (Bug#13070).
2330 * alloc.c (xputenv): New function.
2331 * dbusbind.c (Fdbus_init_bus):
2332 * emacs.c (main):
2333 * xterm.c (x_term_init):
2334 Use xputenv instead of setenv or putenv, to detect memory exhaustion.
2335 * editfns.c (initial_tz): Move static var decl up.
2336 (tzvalbuf_in_environ): New static var.
2337 (init_editfns): Initialize these two static vars.
2338 (Fencode_time): Don't assume arbitrary limit on EMACS_INT width.
2339 Save old TZ value on stack, if it's small.
2340 (Fencode_time, set_time_zone_rule): Don't modify 'environ' directly;
2341 instead, use xputenv+unsetenv to set and restore TZ.
2342 (environbuf): Remove static var. All uses removed.
2343 (Fset_time_zone_rule): Do not save TZ and environ;
2344 no longer needed here.
2345 (set_time_zone_rule_tz1, set_time_zone_rule_tz2) [LOCALTIME_CACHE]:
2346 Move to inside set_time_zone_rule; they don't need file scope any more.
2347 (set_time_zone_rule): Maintain the TZ=value string separately.
2348 (syms_of_editfns): Don't initialize initial_tz;
2349 init_editfns now does it.
2350 * emacs.c (dump_tz) [HAVE_TZSET]: Now const.
2351 * lisp.h (xputenv): New decl.
2352
2353 2012-12-08 Fabrice Popineau <fabrice.popineau@gmail.com>
2354
2355 * w32fns.c (emacs_abort): Don't do arithmetics on void pointers.
2356
2357 2012-12-08 Eli Zaretskii <eliz@gnu.org>
2358
2359 * w32.c (unsetenv, sys_putenv): New functions.
2360
2361 2012-12-08 Chong Yidong <cyd@gnu.org>
2362
2363 * editfns.c (Finsert_char): Make the error message more
2364 informative (Bug#12992).
2365
2366 2012-12-08 Paul Eggert <eggert@cs.ucla.edu>
2367
2368 Simplify get_lim_data.
2369 * vm-limit.c (get_lim_data): Combine RLIMIT_AS and RLIMIT_DATA methods.
2370 Remove USG and vlimit methods; no longer used these days.
2371 Add #error catchall just in case.
2372
2373 Assume POSIX 1003.1-1988 or later for signal.h (Bug#13026).
2374 Exceptions: do not assume SIGCONT, SIGSTOP, SIGTSTP, SIGTTIN,
2375 SIGTTOU, SIGUSR1, SIGUSR2, as Microsoft platforms lack these.
2376 * process.c [subprocesses]: Include <c-ctype.h>, <sig2str.h>.
2377 (deleted_pid_list, Fdelete_process, create_process)
2378 (record_child_status_change, handle_child_signal, deliver_child_signal)
2379 (init_process_emacs, syms_of_process):
2380 Assume SIGCHLD is defined.
2381 (parse_signal): Remove. All uses removed.
2382 (abbr_to_signal): New static function.
2383 (Fsignal_process): Use it to convert signal names to ints.
2384 * sysdep.c (sys_suspend) [!DOS_NT]: Use kill (0, ...) rather than
2385 kill (getpgrp (), ...).
2386 (emacs_sigaction_init): Assume SIGCHLD is defined.
2387 (init_signals): Assume SIGALRM, SIGCHLD, SIGHUP, SIGKILL,
2388 SIGPIPE, and SIGQUIT are defined. Do not worry about SIGCLD any more.
2389 * syssignal.h (EMACS_KILLPG): Remove.
2390 All uses replaced by 'kill' with a negative pid.
2391 (SIGCHLD): Remove definition, as we now assume SIGCHLD.
2392 * w32proc.c (sys_kill): Support negative pids compatibly with POSIX.
2393
2394 2012-12-07 Paul Eggert <eggert@cs.ucla.edu>
2395
2396 * sysdep.c (get_child_status): Abort on internal error (Bug#13086).
2397 This will cause a production Emacs to dump core instead of
2398 infinite-looping.
2399
2400 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2401
2402 * frame.c (make_frame): Do not set window's buffer to t.
2403 * window.c (Fsplit_window_internal): Likewise. Previously it was
2404 used to indicate that the window is being set up. Now we use
2405 set_window_buffer for all new windows, so the condition in ...
2406 (Fset_window_buffer): ... is always true and can be removed.
2407
2408 2012-12-07 Dmitry Antipov <dmantipov@yandex.ru>
2409
2410 Convenient macro to check whether the buffer is hidden.
2411 * buffer.h (BUFFER_HIDDEN_P): New macro.
2412 * frame.c (make_frame): Use it. Adjust comment.
2413 * buffer.c (candidate_buffer): New function.
2414 (Fother_buffer, other_buffer_safely): Use it.
2415
2416 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2417
2418 * w32proc.c (waitpid): Avoid busy-waiting when called with WNOHANG
2419 if the child process is still running. Instead, exit the wait
2420 loop and return zero. (Bug#13086)
2421
2422 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2423
2424 * frame.h (x_char_width, x_char_height): Remove prototypes.
2425 * w32term.h (x_char_width, x_char_height): Likewise.
2426 * xfns.c (x_char_width, x_char_height): Remove.
2427 * w32fns.c (x_char_width, x_char_height): Likewise.
2428 * nsfns.c (x_char_width, x_char_height): Likewise.
2429 * frame.c (Fframe_char_width): Use FRAME_COLUMN_WIDTH for
2430 all window frames.
2431 (Fframe_char_height): Likewise with FRAME_LINE_HEIGHT.
2432 * keyboard.c (command_loop_1): Remove prototype.
2433 (command_loop_2, top_level_1): Add static to match prototype.
2434
2435 2012-12-06 Paul Eggert <eggert@cs.ucla.edu>
2436
2437 Fix a recently-introduced delete-process race condition.
2438 * callproc.c, process.h (record_kill_process):
2439 New function, containing part of the old call_process_kill.
2440 (call_process_kill): Use it.
2441 This does not change call_process_kill's behavior.
2442 * process.c (Fdelete_process): Use record_kill_process to fix a
2443 race condition that could cause Emacs to lose track of a child.
2444
2445 2012-12-06 Dmitry Antipov <dmantipov@yandex.ru>
2446
2447 Avoid code duplication between prev_frame and next_frame.
2448 * frame.c (candidate_frame): New function. Add comment.
2449 (prev_frame, next_frame): Use it. Adjust comment.
2450
2451 2012-12-06 Eli Zaretskii <eliz@gnu.org>
2452
2453 * callproc.c (Fcall_process_region) [!HAVE_MKSTEMP]: If mktemp
2454 fails, signal an error instead of continuing with an empty
2455 string. (Bug#13079)
2456 Encode expanded temp file pattern before passing it to mkstemp or
2457 mktemp.
2458
2459 * fileio.c (file_name_as_directory, directory_file_name) [DOS_NT]:
2460 Encode the file name before passing it to dostounix_filename, in
2461 case it will downcase it (under w32-downcase-file-names).
2462 (Bug#12933)
2463
2464 2012-12-05 Paul Eggert <eggert@cs.ucla.edu>
2465
2466 Minor call-process cleanups.
2467 * callproc.c (Fcall_process): Do record-unwind-protect on MSDOS
2468 at the same time as other platforms, to simplify analysis.
2469 No need for fd0_volatile since we have synch_process_fd.
2470 Avoid needless emacs_close; arg is always negative.
2471
2472 2012-12-04 Andreas Schwab <schwab@linux-m68k.org>
2473
2474 * callproc.c (Fcall_process): Fix specpdl nesting for asynchronous
2475 processes.
2476
2477 2012-12-04 Dmitry Antipov <dmantipov@yandex.ru>
2478
2479 * lisp.h (Mouse_HLInfo): Remove set-but-unused mouse_face_image_state
2480 member. Adjust users. Convert mouse_face_past_end, mouse_face_defer
2481 and mouse_face_hidden members to a bitfields.
2482 * frame.h (struct frame): Remove set-but-not-used space_width member.
2483 (FRAME_SPACE_WIDTH): Remove.
2484 * nsterm.m, w32term.c, xterm.c: Adjust users.
2485 * termchar.h (struct tty_display_info): Remove set-but-unused se_is_so
2486 member. Adjust users. Convert term_initted, delete_in_insert_mode,
2487 costs_set, insert_mode, standout_mode, cursor_hidden and flow_control
2488 members to a bitfields.
2489
2490 2012-12-03 Paul Eggert <eggert@cs.ucla.edu>
2491
2492 Don't let call-process be a zombie factory (Bug#12980).
2493 Fixing this bug required some cleanup of the signal-handling code.
2494 As a side effect, this change also fixes a longstanding rare race
2495 condition whereby Emacs could mistakenly kill unrelated processes,
2496 and it fixes a bug where a second C-g does not kill a recalcitrant
2497 synchronous process in GNU/Linux and similar platforms.
2498 The patch should also fix the last vestiges of Bug#9488,
2499 a bug which has mostly been fixed on the trunk by other changes.
2500 * callproc.c, process.h (synch_process_alive, synch_process_death)
2501 (synch_process_termsig, sync_process_retcode):
2502 Remove. All uses removed, to simplify analysis and so that
2503 less consing is done inside critical sections.
2504 * callproc.c (call_process_exited): Remove. All uses replaced
2505 with !synch_process_pid.
2506 * callproc.c (synch_process_pid, synch_process_fd): New static vars.
2507 These take the role of what used to be in unwind-protect arg.
2508 All uses changed.
2509 (block_child_signal, unblock_child_signal):
2510 New functions, to avoid races that could kill innocent-victim processes.
2511 (call_process_kill, call_process_cleanup, Fcall_process): Use them.
2512 (call_process_kill): Record killed processes as deleted, so that
2513 zombies do not clutter up the system. Do this inside a critical
2514 section, to avoid a race that would allow the clutter.
2515 (call_process_cleanup): Fix code so that the second C-g works again
2516 on common platforms such as GNU/Linux.
2517 (Fcall_process): Create the child process in a critical section,
2518 to fix a race condition. If creating an asynchronous process,
2519 record it as deleted so that zombies do not clutter up the system.
2520 Do unwind-protect for WINDOWSNT too, as that's simpler in the
2521 light of these changes. Omit unnecessary call to emacs_close
2522 before failure, as the unwind-protect code does that.
2523 * callproc.c (call_process_cleanup):
2524 * w32proc.c (waitpid): Simplify now that synch_process_alive is gone.
2525 * process.c (record_deleted_pid): New function, containing
2526 code refactored out of Fdelete_process.
2527 (Fdelete_process): Use it.
2528 (process_status_retrieved): Remove. All callers changed to use
2529 child_status_change.
2530 (record_child_status_change): Remove, folding its contents into ...
2531 (handle_child_signal): ... this signal handler. Now, this
2532 function is purely a handler for SIGCHLD, and is not called after
2533 a synchronous waitpid returns; the synchronous code is moved to
2534 wait_for_termination. There is no need to worry about reaping
2535 more than one child now.
2536 * sysdep.c (get_child_status, child_status_changed): New functions.
2537 (wait_for_termination): Now takes int * status and bool
2538 interruptible arguments, too. Do not record child status change;
2539 that's now the caller's responsibility. All callers changed.
2540 Reimplement in terms of get_child_status.
2541 (wait_for_termination_1, interruptible_wait_for_termination):
2542 Remove. All callers changed to use wait_for_termination.
2543 * syswait.h: Include <stdbool.h>, for bool.
2544 (record_child_status_change, interruptible_wait_for_termination):
2545 Remove decls.
2546 (record_deleted_pid, child_status_changed): New decls.
2547 (wait_for_termination): Adjust to API changes noted above.
2548
2549 * bytecode.c, lisp.h (Qbytecode): Remove.
2550 No longer needed after 2012-11-20 interactive-p changes.
2551
2552 2012-12-03 Eli Zaretskii <eliz@gnu.org>
2553
2554 * xdisp.c (redisplay_window): If the cursor is visible, but inside
2555 the scroll margin, move point outside the margin. (Bug#13055)
2556
2557 2012-12-03 Jan Djärv <jan.h.d@swipnet.se>
2558
2559 * gtkutil.c (my_log_handler): New function.
2560 (xg_set_geometry): Set log handler to my_log_handler (Bug#11177).
2561
2562 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2563
2564 * lisp.h (modify_region): Rename to...
2565 (modify_region_1): ...new prototype.
2566 * textprop.c (modify_region): Now static. Adjust users.
2567 * insdel.c (modify_region): Rename to...
2568 (modify_region_1): ...new function to work with current buffer.
2569 Adjust comment and users. Use true and false for booleans.
2570
2571 2012-12-03 Dmitry Antipov <dmantipov@yandex.ru>
2572
2573 * alloc.c (free_save_value): New function.
2574 (safe_alloca_unwind): Use it.
2575 * lisp.h (free_save_value): New prototype.
2576 * editfns.c (save_excursion_save): Use Lisp_Misc_Save_Value.
2577 Add comment.
2578 (save_excursion_restore): Adjust to match saved data structure.
2579 Use free_save_value to offload some work from GC. Drop obsolete
2580 #if 0 code.
2581
2582 2012-12-03 Chong Yidong <cyd@gnu.org>
2583
2584 * fileio.c (Vauto_save_list_file_name): Doc fix.
2585
2586 2012-12-03 Fabrice Popineau <fabrice.popineau@gmail.com>
2587
2588 * w32fns.c: Remove prototype of atof.
2589 (syspage_mask): Make it DWORD_PTR, for compatibility with 64-bit
2590 builds.
2591 (file_dialog_callback): Make it UINT_PTR.
2592
2593 * w32common.h (syspage_mask): Declare DWORD_PTR, for compatibility
2594 with 64-bit builds.
2595
2596 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2597 (FILE_ANY_ACCESS, CTL_CODE) [_MSC_VER]: Define only if not already
2598 defined.
2599
2600 2012-12-03 Glenn Morris <rgm@gnu.org>
2601
2602 * data.c (Fboundp, Fsymbol_value): Doc fix re lexical-binding.
2603
2604 2012-12-02 Paul Eggert <eggert@cs.ucla.edu>
2605
2606 Fix xpalloc confusion after memory is exhausted.
2607 * alloc.c (xpalloc): Comment fix.
2608 * charset.c (Fdefine_charset_internal): If xpalloc exhausts memory
2609 and signals an error, do not clear charset_table_size, as
2610 charset_table is still valid.
2611 * doprnt.c (evxprintf): Clear *BUF after freeing it.
2612
2613 Use execve to avoid need to munge environ (Bug#13054).
2614 * callproc.c (Fcall_process):
2615 * process.c (create_process):
2616 Don't save and restore environ; no longer needed.
2617 * callproc.c (child_setup):
2618 Use execve, not execvp, to preserve environ.
2619
2620 2012-12-01 Paul Eggert <eggert@cs.ucla.edu>
2621
2622 * xterm.c (x_draw_image_relief): Remove unused locals (Bug#10500).
2623
2624 2012-12-01 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
2625
2626 * xterm.c (x_draw_relief_rect, x_draw_image_relief): Fix relief
2627 display for sliced images (Bug#10500).
2628
2629 * w32term.c (w32_draw_relief_rect, x_draw_image_relief): Likewise.
2630
2631 2012-11-30 Juanma Barranquero <lekktu@gmail.com>
2632
2633 * doc.c (Fdocumentation): Re-add handling of function-documentation,
2634 accidentally removed in 2012-11-09T04:10:16Z!monnier@iro.umontreal.ca (bug#13034).
2635
2636 2012-11-29 Dmitry Antipov <dmantipov@yandex.ru>
2637
2638 * xdisp.c (window_outdated): Remove eassert since it hits
2639 some suspicious corner cases (see Bug#13007 and Bug#13012).
2640 (mode_line_update_needed): New function.
2641 (redisplay_internal, redisplay_window): Use it.
2642 (ensure_selected_frame): New function.
2643 (redisplay_internal, unwind_redisplay): Use it.
2644 (redisplay_internal): Move comment about buffer_shared...
2645 (buffer_shared_and_changed): ...near to its real use.
2646
2647 2012-11-29 Paul Eggert <eggert@cs.ucla.edu>
2648
2649 * callproc.c (Fcall_process): Don't misreport vfork failure.
2650
2651 2012-11-28 Paul Eggert <eggert@cs.ucla.edu>
2652
2653 * callproc.c (Fcall_process): Fix vfork portability problems.
2654 Do not assume that fd[0], count, filefd, and save_environ survive
2655 vfork. Fix bug whereby wrong errno value could be reported for
2656 pipe failure. Some minor cleanups, too, as follows. Move buf and
2657 bufsize to the context where they're needed. Change new_argv to
2658 be of type char **, as this is more convenient and avoids casts.
2659 (CALLPROC_BUFFER_SIZE_MIN, CALLPROC_BUFFER_SIZE_MAX):
2660 Now local constants, not macros.
2661
2662 2012-11-18 Kenichi Handa <handa@gnu.org>
2663
2664 * font.c (font_unparse_xlfd): Fix previous change. Keep "const"
2665 for the variable "f".
2666
2667 2012-11-13 Kenichi Handa <handa@gnu.org>
2668
2669 * font.c (font_unparse_xlfd): Exclude special characters from the
2670 generating XLFD name.
2671
2672 2012-11-27 Paul Eggert <eggert@cs.ucla.edu>
2673
2674 Assume POSIX 1003.1-1988 or later for grp.h, pwd.h.
2675 * dired.c (stat_uname, stat_gname):
2676 * fileio.c (Fexpand_file_name): Remove no-longer-needed casts.
2677
2678 Assume POSIX 1003.1-1988 or later for errno.h (Bug#12968).
2679 * dired.c (directory_files_internal, file_name_completion):
2680 Assume EAGAIN and EINTR are defined.
2681
2682 * fileio.c (Fcopy_file): Assume EISDIR is defined.
2683 * gmalloc.c (ENOMEM, EINVAL): Assume they're defined.
2684 * gnutls.c (emacs_gnutls_write): Assume EAGAIN is defined.
2685 * lread.c (readbyte_from_file): Assume EINTR is defined.
2686 * process.c (wait_reading_process_output, send_process) [subprocesses]:
2687 Assume EIO and EAGAIN are defined.
2688 * unexcoff.c (write_segment): Assume EFAULT is defined.
2689
2690 2012-11-27 Eli Zaretskii <eliz@gnu.org>
2691
2692 * fontset.c (Finternal_char_font): Return nil on non-GUI frames.
2693 (Bug#11964)
2694
2695 * xdisp.c (draw_glyphs): Don't draw in mouse face if mouse
2696 highlighting on the frame was cleared. Prevents assertion
2697 violations when repeatedly clicking on the "Top" link of the
2698 "bread-crumbs" in Info buffers.
2699
2700 2012-11-25 Paul Eggert <eggert@cs.ucla.edu>
2701
2702 * sysdep.c (sys_subshell): Don't assume pid_t fits in int.
2703
2704 2012-11-24 Ken Brown <kbrown@cornell.edu>
2705
2706 * keyboard.c (HAVE_MOUSE):
2707 * frame.c (HAVE_MOUSE): Remove, and rewrite code as if HAVE_MOUSE
2708 were always defined.
2709
2710 2012-11-24 Eli Zaretskii <eliz@gnu.org>
2711
2712 * xdisp.c (set_cursor_from_row): Skip step 2 only if point is not
2713 between bpos_covered and bpos_max. This fixes cursor display when
2714 several display strings follow each other.
2715
2716 * .gdbinit (pgx): If the glyph's object is a string, display the
2717 pointer to string data, rather than the value of the string object
2718 itself (which barfs under CHECK_LISP_OBJECT_TYPE).
2719
2720 * indent.c (Fvertical_motion): If the starting position is covered
2721 by a display string, return to one position before that, to avoid
2722 overshooting it inside move_it_to. (Bug#12930)
2723
2724 2012-11-23 Dmitry Antipov <dmantipov@yandex.ru>
2725
2726 * frame.h (struct frame): Remove display_preempted member
2727 since all users are dead long ago.
2728 * nsterm.h (struct x_output): Use the only dummy member.
2729 * w32menu.c (pending_menu_activation): Remove since not
2730 really used.
2731 (set_frame_menubar): Adjust user.
2732 * w32term.h (struct x_output): Drop outdated #if 0 code.
2733 (struct w32_output): Use bitfields for explicit_parent,
2734 asked_for_visible and menubar_active members.
2735 Drop unused pending_menu_activation member.
2736 * xterm.h (struct x_output): Drop outdated #if 0 code.
2737 Use bitfields for explicit_parent, asked_for_visible,
2738 has_been_visible and net_wm_state_hidden_seen members.
2739
2740 2012-11-23 Eli Zaretskii <eliz@gnu.org>
2741
2742 * makefile.w32-in (globals.h, gl-stamp): Use $(SWITCHCHAR) instead
2743 of a literal "/". (Bug#12955)
2744 (gl-stamp): Invoke fc.exe directly, not through cmd.
2745
2746 2012-11-23 Paul Eggert <eggert@cs.ucla.edu>
2747
2748 Assume POSIX 1003.1-1988 or later for dirent.h (Bug#12958).
2749 * dired.c: Assume HAVE_DIRENT_H.
2750 (NAMLEN): Remove, replacing with ...
2751 (dirent_namelen): New function. All uses changed. Use the GNU macro
2752 _D_EXACT_NAMELEN if available, as it's faster than strlen.
2753 (DIRENTRY): Remove, replacing all uses with 'struct dirent'.
2754 (DIRENTRY_NONEMPTY): Remove. All callers now assume it's nonzero.
2755 * makefile.w32-in (DIR_H): Remove. All uses replaced with
2756 $(NT_INC)/dirent.h.
2757 ($(BLD)/w32.$(O)): Do not depend on $(SRC)/ndir.h.
2758 * ndir.h: Rename to ../nt/inc/dirent.h.
2759 * sysdep.h (closedir) [!HAVE_CLOSEDIR]: Remove.
2760 Do not include <dirent.h>; no longer needed.
2761 * w32.c: Include <dirent.h> rather than "ndir.h".
2762
2763 2012-11-23 Chong Yidong <cyd@gnu.org>
2764
2765 * xftfont.c (xftfont_open): Remove duplicate assignment.
2766
2767 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2768
2769 * alloc.c (Fgarbage_collect): Unblock input after clearing
2770 gc_in_progress to avoid note_mouse_highlight glitch with GC.
2771 * frame.h (FRAME_MOUSE_UPDATE): New macro.
2772 * msdos.c (IT_frame_up_to_date): Use it here...
2773 * w32term.c (w32_frame_up_to_date): ...here...
2774 * xterm.c (XTframe_up_to_date): ...and here...
2775 * nsterm.m (ns_frame_up_to_date): ...but not here.
2776 * lisp.h (Mouse_HLInfo): Remove mouse_face_deferred_gc member.
2777 Adjust users.
2778 * xdisp.c (message2_nolog, message3_nolog, note_mouse_highlight):
2779 Do not check whether GC is in progress.
2780
2781 2012-11-22 Dmitry Antipov <dmantipov@yandex.ru>
2782
2783 * xdisp.c (window_buffer_changed): New function.
2784 (update_menu_bar, update_tool_bar): Use it to
2785 simplify large 'if' statements.
2786 (redisplay_internal): Generalize commonly used
2787 'tail' and 'frame' local variables.
2788
2789 2012-11-22 Eli Zaretskii <eliz@gnu.org>
2790
2791 * w32.c (getcwd): Fix the 2nd argument type, to prevent conflicts
2792 with Windows system header.
2793
2794 2012-11-21 Paul Eggert <eggert@cs.ucla.edu>
2795
2796 Assume POSIX 1003.1-1988 or later for unistd.h (Bug#12945).
2797 * alloc.c: Assume unistd.h exists.
2798 * fileio.c (Fexpand_file_name) [DOS_NT]: Use getcwd, not getwd.
2799 * sysdep.c (get_current_dir_name): Assume getcwd exists.
2800 (getwd) [USG]: Remove; no longer needed.
2801 (sys_subshell) [DOS_NT]: Use getcwd, not getwd.
2802 * w32.c (getcwd): Rename from getwd, and switch to getcwd's API.
2803 * w32.h (getcwd): Remove decl.
2804
2805 2012-11-21 Stefan Monnier <monnier@iro.umontreal.ca>
2806
2807 * xdisp.c (fast_set_selected_frame): Rename from update_tool_bar_unwind.
2808 Make it set selected_window as well.
2809 (update_tool_bar): Use it.
2810
2811 2012-11-21 Ken Brown <kbrown@cornell.edu>
2812
2813 * emacs.c (main): Set the G_SLICE environment variable for all
2814 Cygwin builds, not just GTK builds. See
2815 https://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00368.html.
2816
2817 2012-11-21 Eli Zaretskii <eliz@gnu.org>
2818
2819 * w32.c (FILE_DEVICE_FILE_SYSTEM, METHOD_BUFFERED)
2820 (FILE_ANY_ACCESS, CTL_CODE, FSCTL_GET_REPARSE_POINT) [_MSC_VER]:
2821 Define for the MSVC compiler.
2822
2823 * w32term.h (EnumSystemLocalesW) [_MSC_VER]: Add a missing semi-colon.
2824
2825 * fileio.c (Fsubstitute_in_file_name, Ffile_name_directory)
2826 (Fexpand_file_name) [DOS_NT]: Pass encoded file name to
2827 dostounix_filename. Prevents crashes down the road, because
2828 dostounix_filename assumes it gets a unibyte string.
2829 Reported by Michel de Ruiter <michel@sentient.nl>, see
2830 http://lists.gnu.org/archive/html/help-emacs-windows/2012-11/msg00017.html
2831
2832 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2833
2834 Conflate Qnil and Qunbound for `symbol-function'.
2835 * alloc.c (Fmake_symbol): Initialize `function' to Qnil.
2836 * lread.c (init_obarray): Set `function' fields to Qnil.
2837 * eval.c (Fcommandp): Ignore Qunbound.
2838 (Fautoload, eval_sub, Fapply, Ffuncall, Fmacroexpand):
2839 * data.c (Ffset, Ffboundp, indirect_function, Findirect_function):
2840 Test NILP rather than Qunbound.
2841 (Ffmakunbound): Set to Qnil.
2842 (Fsymbol_function): Never signal an error.
2843 (Finteractive_form): Ignore Qunbound.
2844
2845 2012-11-20 Paul Eggert <eggert@cs.ucla.edu>
2846
2847 * eval.c (interactive_p): Remove no-longer-used decl.
2848
2849 2012-11-20 Dmitry Antipov <dmantipov@yandex.ru>
2850
2851 * xdisp.c (buffer_shared): Adjust comment.
2852 (buffer_shared_and_changed): New function.
2853 (prepare_menu_bars, redisplay_internal): Use it to
2854 decide whether all windows or frames should be updated.
2855 (window_outdated): New function.
2856 (text_outside_line_unchanged_p, redisplay_window): Use it.
2857 (redisplay_internal): Likewise. Fix indentation.
2858
2859 2012-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
2860
2861 * eval.c (Finteractive_p, Fcalled_interactively_p, interactive_p): Remove.
2862 (syms_of_eval): Remove corresponding defsubr.
2863 * bytecode.c (exec_byte_code): `interactive-p' is now a Lisp function.
2864
2865 2012-11-19 Daniel Colascione <dancol@dancol.org>
2866
2867 * w32fns.c (Fx_file_dialog):
2868 (Fx_file_dialog): Accomodate rename of cygwin_convert_path* to
2869 cygwin_convert_file_name*.
2870
2871 * cygw32.c (Fcygwin_convert_path_to_windows, syms_of_cygw32):
2872 Rename cygwin_convert_path* to cygwin_convert_file_name*.
2873
2874 2012-11-18 Paul Eggert <eggert@cs.ucla.edu>
2875
2876 * nsterm.m (ns_select): Send SIGIO only to self, not to process group.
2877
2878 2012-11-18 Eli Zaretskii <eliz@gnu.org>
2879
2880 * w32select.c: Include w32common.h before w32term.h, so that
2881 windows.h gets included before w32term.h uses some of its
2882 features, see below.
2883
2884 * w32term.h (LOCALE_ENUMPROCA, LOCALE_ENUMPROCW) [_MSC_VER]:
2885 New typedefs.
2886 (EnumSystemLocalesA, EnumSystemLocalesW) [_MSC_VER]:
2887 New prototypes.
2888 (EnumSystemLocales) [_MSC_VER]: Define if undefined. (Bug#12878)
2889
2890 2012-11-18 Jan Djärv <jan.h.d@swipnet.se>
2891
2892 * nsterm.m (hold_event): Set send_appdefined to YES (Bug#12834).
2893 (ns_select): Return at once if events are held (Bug#12834).
2894
2895 2012-11-18 enami tsugutomo <tsugutomo.enami@jp.sony.com>
2896
2897 * unexelf.c (ELFSIZE) [__NetBSD__ && _LP64]: Set to 64.
2898 Needed following 2012-10-20 change. (Bug#12902)
2899
2900 2012-11-18 Juanma Barranquero <lekktu@gmail.com>
2901
2902 * w32proc.c (waitpid): Remove unused label get_result.
2903
2904 2012-11-17 Juanma Barranquero <lekktu@gmail.com>
2905
2906 * makefile.w32-in (SYSWAIT_H): New macro.
2907 ($(BLD)/callproc.$(O), $(BLD)/w32proc.$(O), $(BLD)/process.$(O))
2908 ($(BLD)/sysdep.$(O)): Update dependencies.
2909
2910 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2911
2912 Assume POSIX 1003.1-1988 or later for fcntl.h (Bug#12881).
2913 * callproc.c (relocate_fd): Assume F_DUPFD.
2914 * emacs.c, term.c (O_RDWR): Remove.
2915 * keyboard.c (tty_read_avail_input): Use O_NONBLOCK rather than
2916 O_NDELAY, since O_NONBLOCK is the standard name for this flag.
2917 * nsterm.m: Assume <fcntl.h> exists.
2918 * process.c (NON_BLOCKING_CONNECT, allocate_pty, create_process)
2919 (create_pty, Fmake_network_process, server_accept_connection)
2920 (wait_reading_process_output, init_process_emacs):
2921 Assume O_NONBLOCK.
2922 (wait_reading_process_output): Put in a special case for WINDOWSNT
2923 to mimick the older behavior where it had O_NDELAY but not O_NONBLOCK.
2924 It's not clear this is needed, but it's a more-conservative change.
2925 (create_process): Assume FD_CLOEXEC.
2926 (create_process, create_pty): Assume O_NOCTTY.
2927 * sysdep.c (init_sys_modes, reset_sys_modes): Assume F_SETFL.
2928 (reset_sys_modes): Use O_NONBLOCK rather than O_NDELAY.
2929 Omit if not DOS_NT, since F_GETFL is not defined there.
2930 (serial_open): Assume O_NONBLOCK and O_NOCTTY.
2931 * term.c: Include <fcntl.h>, for flags like O_NOCTTY.
2932 (O_NOCTTY): Remove.
2933 (init_tty): Assume O_IGNORE_CTTY is defined to 0 on platforms that
2934 lack it, since gnulib guarantees this.
2935 * w32.c (fcntl): Test for O_NONBLOCK rather than O_NDELAY.
2936
2937 2012-11-17 Eli Zaretskii <eliz@gnu.org>
2938
2939 * w32.c (faccessat): Pretend that directories have the execute bit
2940 set. Emacs expects that, e.g., in files.el:cd-absolute.
2941
2942 * w32proc.c (create_child): Don't clip the PID of the child
2943 process to fit into an Emacs integer, as this is no longer a
2944 restriction.
2945 (waitpid): Rename from sys_wait. Emulate a Posix 'waitpid' by
2946 reaping only the process specified by PID argument, if that is
2947 positive. Use PID instead of dead_child to know which process to
2948 reap. Wait for the child to die only if WNOHANG is not in
2949 OPTIONS.
2950 (sys_select): Don't set dead_child.
2951
2952 * sysdep.c (wait_for_termination_1): Remove the WINDOWSNT portion,
2953 as it is no longer needed.
2954
2955 * process.c (waitpid, WUNTRACED) [!WNOHANG]: Remove definitions,
2956 no longer needed.
2957 (record_child_status_change): Remove the setting of
2958 record_at_most_one_child for the !WNOHANG case.
2959
2960 2012-11-17 Paul Eggert <eggert@cs.ucla.edu>
2961
2962 Fix problems in ns port found by static checking.
2963 * nsterm.m: Include <pthread.h>, for pthread_mutex_lock etc.
2964 (hold_event, setPosition:portion:whole:): Send SIGIO only to self,
2965 not to process group.
2966 (ns_select): Use emacs_write, not write, as that's more robust
2967 in the presence of signals.
2968 (fd_handler:): Check for read errors.
2969
2970 2012-11-16 Glenn Morris <rgm@gnu.org>
2971
2972 * editfns.c (Fmessage): Mention message-log-max. (Bug#12849)
2973
2974 2012-11-16 Stefan Monnier <monnier@iro.umontreal.ca>
2975
2976 * eval.c (Finteractive_p): Revert lexbind-merge mishap.
2977
2978 2012-11-16 Eli Zaretskii <eliz@gnu.org>
2979
2980 * w32proc.c (timer_loop): Make sure SuspendThread and ResumeThread
2981 use the same value of thread handle.
2982 (start_timer_thread): If the timer thread exited (due to error),
2983 clean up by closing the two handles it used. Duplicate the caller
2984 thread's handle here, so it gets duplicated only once, when
2985 launching the timer thread. Set priority of the timer thread, not
2986 the caller thread.
2987 (getitimer): Don't duplicate the caller thread's handle here.
2988 (Bug#12832)
2989
2990 2012-11-16 Jan Djärv <jan.h.d@swipnet.se>
2991
2992 * nsterm.m (hold_event): Send SIGIO to make sure ns_read_socket is
2993 called (Bug#12834).
2994
2995 2012-11-16 Paul Eggert <eggert@cs.ucla.edu>
2996
2997 Remove no-longer-used pty_max_bytes variable.
2998 * process.c (pty_max_bytes): Remove; unused.
2999 (send_process): Do not set it.
3000
3001 2012-11-15 Juanma Barranquero <lekktu@gmail.com>
3002
3003 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/emacs.$(O)):
3004 Update dependencies.
3005
3006 2012-11-15 Paul Eggert <eggert@cs.ucla.edu>
3007
3008 * eval.c (mark_backtrace) [BYTE_MARK_STACK]: Remove stray '*'.
3009 This follows up on the 2012-09-29 patch that removed indirection
3010 for the 'function' field. Reported by Sergey Vinokurov in
3011 <http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00263.html>.
3012
3013 2012-11-14 Eli Zaretskii <eliz@gnu.org>
3014
3015 * w32.c (faccessat): Rename from sys_faccessat. (No need to use a
3016 different name, as the MS runtime does not have such a function,
3017 and probably never will.) All callers changed. Ignore DIRFD
3018 value if PATH is an absolute file name, to match Posix spec
3019 better. If AT_SYMLINK_NOFOLLOW is set in FLAGS, don't resolve
3020 symlinks.
3021
3022 2012-11-14 Dmitry Antipov <dmantipov@yandex.ru>
3023
3024 * xdisp.c (echo_area_display, redisplay_internal):
3025 Omit redundant check whether frame_garbaged is set.
3026
3027 2012-11-14 Paul Eggert <eggert@cs.ucla.edu>
3028
3029 Use faccessat, not access, when checking file permissions (Bug#12632).
3030 This fixes a bug that has been present in Emacs since its creation.
3031 It was reported by Chris Torek in 1983 even before GNU Emacs existed,
3032 which must set some sort of record. (Torek's bug report was against
3033 a predecessor of GNU Emacs, but GNU Emacs happened to have the
3034 same common flaw.) See Torek's Usenet posting
3035 "setuid/setgid programs & Emacs" Article-I.D.: sri-arpa.858
3036 Posted: Fri Apr 8 14:18:56 1983.
3037 * Makefile.in (LIB_EACCESS): New macro.
3038 (LIBES): Use it.
3039 * callproc.c (init_callproc):
3040 * charset.c (init_charset):
3041 * fileio.c (check_existing, check_executable, check_writable)
3042 (Ffile_readable_p):
3043 * lread.c (openp, load_path_check):
3044 * process.c (allocate_pty):
3045 * xrdb.c (file_p):
3046 Use effective UID when checking permissions, not real UID.
3047 * callproc.c (init_callproc):
3048 * charset.c (init_charset):
3049 * lread.c (load_path_check, init_lread):
3050 Test whether directories are accessible, not merely whether they exist.
3051 * conf_post.h (GNULIB_SUPPORT_ONLY_AT_FDCWD): New macro.
3052 * fileio.c (check_existing, check_executable, check_writable)
3053 (Ffile_readable_p):
3054 Use symbolic names instead of integers for the flags, as they're
3055 portable now.
3056 (check_writable): New arg AMODE. All uses changed.
3057 Set errno on failure.
3058 (Ffile_readable_p): Use faccessat, not stat + open + close.
3059 (Ffile_writable_p): No need to call check_existing + check_writable.
3060 Just call check_writable and then look at errno. This saves a syscall.
3061 dir should never be nil; replace an unnecessary runtime check
3062 with an eassert. When checking the parent directory of a nonexistent
3063 file, check that the directory is searchable as well as writable, as
3064 we can't create files in unsearchable directories.
3065 (file_directory_p): New function, which uses 'stat' on most platforms
3066 but faccessat with D_OK (for efficiency) if WINDOWSNT.
3067 (Ffile_directory_p, Fset_file_times): Use it.
3068 (file_accessible_directory_p): New function, which uses a single
3069 syscall for efficiency.
3070 (Ffile_accessible_directory_p): Use it.
3071 * xrdb.c (file_p): Use file_directory_p.
3072 * lisp.h (file_directory_p, file_accessible_directory_p): New decls.
3073 * lread.c (openp): When opening a file, use fstat rather than
3074 stat, as that avoids a permissions race. When not opening a file,
3075 use file_directory_p rather than stat.
3076 (dir_warning): First arg is now a usage string, not a format.
3077 Use errno. All uses changed.
3078 * nsterm.m (ns_term_init): Remove unnecessary call to file-readable
3079 that merely introduced a race.
3080 * process.c, sysdep.c, term.c: All uses of '#ifdef O_NONBLOCK'
3081 changed to '#if O_NONBLOCK', to accommodate gnulib O_* style,
3082 and similarly for the other O_* flags.
3083 * w32.c (sys_faccessat): Rename from sys_access and switch to
3084 faccessat's API. All uses changed.
3085 * xrdb.c: Do not include <sys/stat.h>; no longer needed.
3086 (magic_db): Rename from magic_file_p.
3087 (magic_db, search_magic_path): Return an XrmDatabase rather than a
3088 char *, so that we don't have to test for file existence
3089 separately from opening the file for reading. This removes a race
3090 fixes a permission-checking problem, and simplifies the code.
3091 All uses changed.
3092 (file_p): Remove; no longer needed.
3093
3094 2012-11-13 Dmitry Antipov <dmantipov@yandex.ru>
3095
3096 Omit glyphs initialization at startup.
3097 * dispnew.c (glyphs_initialized_initially_p): Remove.
3098 (adjust_frame_glyphs_initially): Likewise. Adjust users.
3099 (Fredraw_frame): Move actual code from here...
3100 (redraw_frame): ...to here. Add eassert. Adjust comment.
3101 (Fredraw_display): Use redraw_frame.
3102 * xdisp.c (clear_garbaged_frames): Likewise.
3103
3104 2012-11-13 Eli Zaretskii <eliz@gnu.org>
3105
3106 * xdisp.c (decode_mode_spec): Limit the value of WIDTH argument
3107 passed to pint2str and pint2hrstr to be at most the size of the
3108 frame's decode_mode_spec_buffer. This avoids crashes with very
3109 large values of FIELD_WIDTH argument to decode_mode_spec.
3110 (Bug#12867)
3111
3112 2012-11-13 Paul Eggert <eggert@cs.ucla.edu>
3113
3114 Fix a race with verify-visited-file-modtime (Bug#12863).
3115 Since at least 1991 Emacs has ignored an mtime difference of no
3116 more than one second, but my guess is that this was to work around
3117 file system bugs that were fixed long ago. Since the race is
3118 causing problems now, let's remove that code.
3119 * fileio.c (Fverify_visited_file_modtime): Do not accept a file
3120 whose time stamp is off by no more than a second. Insist that the
3121 file time stamps match exactly.
3122
3123 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3124
3125 * frame.h (struct frame): Convert external_tool_bar member to
3126 1-bit unsigned bitfield.
3127 * termhooks.h (struct terminal): Remove mouse_moved member since
3128 all users are long dead. Adjust comment on mouse_position_hook.
3129
3130 2012-11-12 Dmitry Antipov <dmantipov@yandex.ru>
3131
3132 Simplify by using FOR_EACH_FRAME here and there.
3133 * frame.c (next_frame, prev_frame, other_visible_frames)
3134 (delete_frame, visible-frame-list): Use FOR_EACH_FRAME.
3135 * w32term.c (x_window_to_scroll_bar): Likewise.
3136 * window.c (window_list): Likewise.
3137 * xdisp.c (x_consider_frame_title): Likewise.
3138 * xfaces.c ( Fdisplay_supports_face_attributes_p): Likewise.
3139 * xfns.c (x_window_to_frame, x_any_window_to_frame)
3140 (x_menubar_window_to_frame, x_top_window_to_frame): Likewise.
3141 * xmenu.c (menubar_id_to_frame): Likewise.
3142 * xselect.c (frame_for_x_selection): Likewise.
3143 * xterm.c (x_frame_of_widget, x_window_to_scroll_bar)
3144 (x_window_to_menu_bar): Likewise.
3145 * w32fns.c (x_window_to_frame): Likewise. Adjust comment.
3146
3147 2012-11-12 Paul Eggert <eggert@cs.ucla.edu>
3148
3149 * data.c (Qdefalias_fset_function): Now static.
3150
3151 Another tweak to vectorlike_header change.
3152 * alloc.c (struct Lisp_Vectorlike_Free, NEXT_IN_FREE_LIST):
3153 Remove, and replace all uses with ...
3154 (next_in_free_list, set_next_in_free_list):
3155 New functions, which respect C's aliasing rules better.
3156
3157 2012-11-11 Paul Eggert <eggert@cs.ucla.edu>
3158
3159 * window.c (list4i): Rename from 'quad'. All uses changed.
3160 Needed because <sys/types.h> defines 'quad' on Solaris 10.
3161
3162 2012-11-11 Juanma Barranquero <lekktu@gmail.com>
3163
3164 * xdisp.c (start_hourglass) [HAVE_NTGUI]: Add block to silence
3165 warning about mixing declarations and code in ISO C90.
3166
3167 2012-11-10 Martin Rudalics <rudalics@gmx.at>
3168
3169 * window.c (Fsplit_window_internal): Set combination limit of
3170 new parent window to t iff Vwindow_combination_limit is t;
3171 fixing a regression introduced with the change from 2012-09-22.
3172 (Fset_window_combination_limit): Fix doc-string.
3173
3174 2012-11-10 Eli Zaretskii <eliz@gnu.org>
3175
3176 * xdisp.c (try_scrolling): Fix correction of aggressive-scroll
3177 amount when the scroll margins are too large. When scrolling
3178 backwards in the buffer, give up if cannot reach point or the
3179 scroll margin within a reasonable number of screen lines.
3180 Fixes point position in window under scroll-up/down-aggressively when
3181 point is positioned many lines beyond the window top/bottom.
3182 (Bug#12811)
3183
3184 * ralloc.c (relinquish): If real_morecore fails to return memory
3185 to the system, don't crash; instead, leave the last heap
3186 unchanged and return. (Bug#12774)
3187
3188 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3189
3190 * lisp.h (AUTOLOADP): New macro.
3191 * eval.c (Fautoload): Don't attach to loadhist, call Fdefalias instead.
3192 * data.c (Ffset): Remove special ad-advice-info handling.
3193 (Fdefalias): Handle autoload definitions and new Qdefalias_fset_function.
3194 (Fsubr_arity): CSE.
3195 (Finteractive_form): Simplify.
3196 (Fquo): Don't insist on having at least 2 arguments.
3197 (Qdefalias_fset_function): New var.
3198
3199 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3200
3201 * image.c (xpm_make_color_table_h): Change to hashtest_equal.
3202
3203 * nsfont.m (Qcondensed, Qexpanded): New variables.
3204 (ns_descriptor_to_entity): Restore Qcondensed, Qexpanded setting.
3205 (syms_of_nsfont): Defsym Qcondensed, Qexpanded.
3206
3207 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3208
3209 Fix recently introduced crash on MS-Windows (Bug#12839).
3210 * w32term.h (struct scroll_bar): Use convenient header.
3211 (SCROLL_BAR_VEC_SIZE): Remove.
3212 * w32term.c (x_scroll_bar_create): Use VECSIZE.
3213
3214 2012-11-09 Dmitry Antipov <dmantipov@yandex.ru>
3215
3216 Tweak last vectorlike_header change.
3217 * alloc.c (struct Lisp_Vectorlike_Free): Special type to represent
3218 vectorlike object on the free list. This is introduced to avoid
3219 some (but not all) pointer casting and aliasing problems, see
3220 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00105.html.
3221 * .gdbinit (pvectype, pvecsize): New commands to examine vectorlike
3222 objects.
3223 (xvectype, xvecsize): Use them to examine Lisp_Object values.
3224
3225 2012-11-09 Jan Djärv <jan.h.d@swipnet.se>
3226
3227 * nsfont.m (ns_descriptor_to_entity): Qcondensed and Qexpanded has
3228 been removed, so remove them here also.
3229
3230 2012-11-09 Stefan Monnier <monnier@iro.umontreal.ca>
3231
3232 * doc.c (Fdocumentation): Handle new property
3233 dynamic-docstring-function to replace the old ad-advice-info.
3234
3235 2012-11-09 Paul Eggert <eggert@cs.ucla.edu>
3236
3237 * fns.c (Qeql, hashtest_eq): Now static.
3238
3239 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3240
3241 * lisp.h (XHASH): Redefine to be imperfect and fit in a Lisp int.
3242 * fns.c (hashfn_eq, hashfn_eql, sxhash):
3243 * profiler.c (hashfn_profiler): Don't use XUINT on non-integers.
3244 * buffer.c (compare_overlays): Use XLI rather than XHASH.
3245
3246 2012-11-08 Paul Eggert <eggert@cs.ucla.edu>
3247
3248 Use same hash function for hashfn_profiler as for hash_string etc.
3249 * fns.c (SXHASH_COMBINE): Remove. All uses replaced by sxhash_combine.
3250 * lisp.h (sxhash_combine): New inline function, with the contents
3251 of the old SXHASH_COMBINE.
3252 * profiler.c (hashfn_profiler): Use it, instead of having a
3253 special hash function containing a comparison that always yields 1.
3254
3255 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3256
3257 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic)
3258 (Qultra_condensed, Qextra_condensed, Qcondensed, Qsemi_condensed)
3259 (Qsemi_expanded, Qextra_expanded, Qexpanded, Qultra_expanded):
3260 Remove unused vars.
3261
3262 2012-11-08 Jan Djärv <jan.h.d@swipnet.se>
3263
3264 * image.c (xpm_make_color_table_h): Fix compiler error because
3265 make_hash_table changed.
3266
3267 2012-11-08 Thomas Kappler <tkappler@gmail.com> (tiny change)
3268
3269 * nsfont.m (ns_findfonts): Handle empty matchingDescs (Bug#11541).
3270
3271 2012-11-08 Stefan Monnier <monnier@iro.umontreal.ca>
3272
3273 Use ad-hoc comparison function for the profiler's hash-tables.
3274 * profiler.c (Qprofiler_backtrace_equal, hashtest_profiler): New vars.
3275 (make_log): Use them.
3276 (handle_profiler_signal): Don't inhibit quit any longer since we don't
3277 call Fequal any more.
3278 (Ffunction_equal): New function.
3279 (cmpfn_profiler, hashfn_profiler): New functions.
3280 (syms_of_profiler): Initialize them.
3281 * lisp.h (struct hash_table_test): New struct.
3282 (struct Lisp_Hash_Table): Use it.
3283 * alloc.c (mark_object): Mark hash_table_test fields of hash tables.
3284 * fns.c (make_hash_table): Take a struct to describe the test.
3285 (cmpfn_eql, cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
3286 (hashfn_equal, hashfn_user_defined): Adjust to new calling convention.
3287 (hash_lookup, hash_remove_from_table): Move assertion checking of
3288 hashfn result here. Check hash-equality before calling cmpfn.
3289 (Fmake_hash_table): Adjust call to make_hash_table.
3290 (hashtest_eq, hashtest_eql, hashtest_equal): New structs.
3291 (syms_of_fns): Initialize them.
3292 * emacs.c (main): Move syms_of_fns earlier.
3293 * xterm.c (syms_of_xterm):
3294 * category.c (hash_get_category_set): Adjust call to make_hash_table.
3295 * print.c (print_object): Adjust to new hash-table struct.
3296 * composite.c (composition_gstring_put_cache): Adjust to new hashfn.
3297
3298 2012-11-08 Eli Zaretskii <eliz@gnu.org>
3299
3300 * w32fns.c (modifier_set): Fix handling of Scroll Lock when the
3301 value of w32-scroll-lock-modifier is neither nil nor one of the
3302 known key modifiers. (Bug#12806)
3303
3304 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3305
3306 Shrink struct vectorlike_header to the only size field.
3307 * lisp.h (enum pvec_type): Avoid explicit enum member values.
3308 Adjust comment.
3309 (enum More_Lisp_Bits): Change PSEUDOVECTOR_SIZE_BITS and
3310 PVEC_TYPE_MASK to arrange new bitfield in the vector header.
3311 (PSEUDOVECTOR_REST_BITS, PSEUDOVECTOR_REST_MASK): New members.
3312 (PSEUDOVECTOR_AREA_BITS): New member used to extract subtype
3313 information from the vector header. Adjust comment.
3314 (XSETPVECTYPE, XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR)
3315 (PSEUDOVECTOR_TYPEP, DEFUN): Adjust to match new vector header
3316 layout.
3317 (XSETSUBR, SUBRP): Adjust to match new Lisp_Subr layout.
3318 (struct vectorlike_header): Remove next member. Adjust comment.
3319 (struct Lisp_Subr): Add convenient header. Adjust comment.
3320 (allocate_pseudovector): Adjust prototype.
3321 * alloc.c (mark_glyph_matrix, mark_face_cache, allocate_string)
3322 (sweep_string, lisp_malloc): Remove useless prototypes.
3323 (enum mem_type): Adjust comment.
3324 (NEXT_IN_FREE_LIST): New macro.
3325 (SETUP_ON_FREE_LIST): Adjust XSETPVECTYPESIZE usage.
3326 (Fmake_bool_vector): Likewise.
3327 (struct large_vector): New type to represent allocation unit for
3328 the vectors with the memory footprint more than VBLOOCK_BYTES_MAX.
3329 (large_vectors): Change type to struct large_vector.
3330 (allocate_vector_from_block): Simplify.
3331 (PSEUDOVECTOR_NBYTES): Replace with...
3332 (vector_nbytes): ...new function. Adjust users.
3333 (sweep_vectors): Adjust processing of large vectors.
3334 (allocate_vectorlike): Likewise.
3335 (allocate_pseudovector): Change type of 3rd arg to enum pvec_type.
3336 Add easserts. Adjust XSETPVECTYPESIZE usage.
3337 (allocate_buffer): Use BUFFER_PVEC_INIT.
3338 (live_vector_p): Adjust to match large vector.
3339 * buffer.c (init_buffer_once): Use BUFFER_PVEC_INIT.
3340 * buffer.h (struct buffer): Add next member.
3341 (BUFFER_LISP_SIZE, BUFFER_REST_SIZE, BUFFER_PVEC_INIT):
3342 New macros.
3343 (FOR_EACH_BUFFER): Adjust to match struct buffer change.
3344 * fns.c (internal_equal): Adjust to match enum pvec_type change.
3345 (copy_hash_table): Adjust to match vector header change.
3346 * lread.c (defsubr): Use XSETPVECTYPE.
3347 * .gdbinit (xpr, xbacktrace): Adjust to match vector header change.
3348 (xvectype): Likewise. Print PVEC_NORMAL_VECTOR for regular vectors.
3349 (xvecsize): New command.
3350
3351 2012-11-08 Dmitry Antipov <dmantipov@yandex.ru>
3352
3353 * keyboard.c (event_to_kboard): Do not dereference
3354 frame_or_window field of SELECTION_REQUEST_EVENT
3355 and SELECTION_CLEAR_EVENT events (Bug#12814).
3356 * xterm.h (struct selection_input_event): Adjust comment.
3357
3358 2012-11-07 Eli Zaretskii <eliz@gnu.org>
3359
3360 * w32fns.c (modifier_set): Don't report modifiers from toggle key,
3361 such as Scroll Lock, if the respective keys are treated as
3362 function keys, not as modifiers. This avoids destroying non-ASCII
3363 keyboard input when Scroll Lock is toggled ON. (Bug#12806)
3364
3365 2012-11-07 Dmitry Antipov <dmantipov@yandex.ru>
3366
3367 * xfns.c (Fx_wm_set_size_hint): Use check_x_frame. Adjust docstring.
3368
3369 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3370
3371 Restore some duplicate definitions (Bug#12814).
3372 This undoes part of the 2012-11-03 changes. Some people build
3373 with plain -g rather than with -g3, and they need the duplicate
3374 definitions for .gdbinit to work; see <http://bugs.gnu.org/12814#26>.
3375 * lisp.h (GCTYPEBITS, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK):
3376 Define as macros, as well as as enums or as constants.
3377
3378 2012-11-06 Jan Djärv <jan.h.d@swipnet.se>
3379
3380 * nsterm.m (convert_ns_to_X_keysym, keyDown:): Add NSNumericPadKeyMask
3381 to keypad keys (Bug#12816).
3382
3383 2012-11-06 Paul Eggert <eggert@cs.ucla.edu>
3384
3385 Minor adjustments of recently-changed frame functions.
3386 * buffer.c (Fbuffer_list): Omit CHECK_FRAME, since arg is already
3387 known to be a frame (we're in the FRAMEP branch).
3388 * lisp.h (Qframep): Remove decl. frame.h declares this.
3389 * window.c (quad): Args are of type EMACS_INT, not ptrdiff_t,
3390 since they're meant for Lisp fixnum values.
3391
3392 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3393
3394 * window.c (Fwindow_combination_limit): Revert to the only
3395 required argument and adjust docstring as suggested in
3396 http://lists.gnu.org/archive/html/emacs-diffs/2012-11/msg01082.html
3397 by Martin Rudalics <rudalics@gmx.at>.
3398
3399 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3400
3401 Widely used frame validity and checking functions.
3402 * frame.h (decode_live_frame, decode_any_frame): Add prototypes.
3403 * frame.c (decode_live_frame, decode_any_frame): New functions.
3404 (delete_frame, Fredirect_frame_focus, Fframe_parameters)
3405 (Fframe_parameter, Fframe_char_height, Fframe_char_width)
3406 (Fframe_pixel_height, Fframe_pixel_width, Ftool_bar_pixel_width)
3407 (Fframe_pointer_visible_p): Use decode_any_frame.
3408 (Fmake_frame_visible, Fmake_frame_invisible, Ficonify_frame)
3409 (Fraise_frame, Flower_frame, Fmodify_frame_parameters)
3410 (Fset_frame_height, Fset_frame_width): Use decode_live_frame.
3411 (Fframe_focus): Likewise. Allow zero number of arguments.
3412 Adjust docstring.
3413 (frame_buffer_list, frame_buffer_predicate): Remove.
3414 * lisp.h (frame_buffer_predicate): Remove prototype.
3415 * buffer.c (Fother_buffer): Use decode_any_frame.
3416 * xdisp.c (Ftool_bar_lines_needed): Likewise.
3417 * xfaces.c (Fcolor_gray_p, Fcolor_supported_p): Likewise.
3418 * font.c (Ffont_face_attributes, Ffont_family_list, Fopen_font)
3419 (Fclose_font, Ffont_info): Use decode_live_frame.
3420 * fontset.c (check_fontset_name): Likewise.
3421 * terminal.c (Fframe_terminal): Likewise.
3422 * w32fns.c (check_x_frame): Likewise.
3423 * window.c (Fminibuffer_window, Fwindow_at)
3424 (Fcurrent_window_configuration): Likewise.
3425 (Frun_window_configuration_change_hook, Fwindow_resize_apply):
3426 Likewise. Allow zero number of arguments. Adjust docstring.
3427 * dispnew.c (Fredraw_frame): Likewise.
3428 * xfaces.c (frame_or_selected_frame): Remove.
3429 (Fx_list_fonts, Finternal_get_lisp_face_attribute, Fface_font)
3430 (Finternal_lisp_face_equal_p, Finternal_lisp_face_empty_p)
3431 (Fframe_face_alist): Use decode_live_frame.
3432 * xfns.c (check_x_frame): Likewise.
3433
3434 2012-11-06 Dmitry Antipov <dmantipov@yandex.ru>
3435
3436 * window.c (quad): New function.
3437 (Fwindow_edges, Fwindow_pixel_edges, Fwindow_inside_edges)
3438 (Fwindow_absolute_pixel_edges, Fwindow_inside_absolute_pixel_edges)
3439 (Fwindow_inside_pixel_edges, Fpos_visible_in_window_p)
3440 (Fwindow_line_height): Use it.
3441 (Fwindow_fringes): Use list3.
3442 (Fwindow_scroll_bars): Use list4.
3443 (Fwindow_frame, Fwindow_top_child, Fwindow_left_child)
3444 (Fwindow_combination_limit): Allow zero number of arguments.
3445
3446 2012-11-05 Eli Zaretskii <eliz@gnu.org>
3447
3448 * makefile.w32-in ($(BLD)/w32fns.$(O)): Depend on $(NT_INC)/unistd.h.
3449
3450 * w32fns.c: Include unistd.h, to avoid compiler warnings on Cygwin.
3451 (emacs_abort) [CYGWIN]: Don't call _open_osfhandle; instead, use
3452 file descriptor 2 for standard error. (Bug#12805)
3453
3454 2012-11-05 Chong Yidong <cyd@gnu.org>
3455
3456 * process.c (wait_reading_process_output): Revert previous change.
3457
3458 2012-11-05 Paul Eggert <eggert@cs.ucla.edu>
3459
3460 Assume at least POSIX.1-1988 for getpgrp, setpgid, setsid (Bug#12800).
3461 This removes code that has been obsolete since around 1990.
3462 * callproc.c (Fcall_process):
3463 * emacs.c (main):
3464 * process.c (create_process):
3465 * term.c (dissociate_if_controlling_tty):
3466 Assume setsid exists.
3467 * callproc.c (child_setup): Assume setpgid exists and behaves as
3468 per POSIX.1-1988 or later.
3469 * conf_post.h (setpgid) [!HAVE_SETPGID]: Remove.
3470 * emacs.c (shut_down_emacs):
3471 * sysdep.c (sys_suspend, init_foreground_group):
3472 Assume getpgrp behaves as per POSIX.1-1998 or later.
3473 * msdos.c (setpgrp): Remove.
3474 (tcgetpgrp, setpgid, setsid): New functions.
3475 * systty.h (EMACS_GETPGRP): Remove. All callers now use getpgrp.
3476 * term.c (no_controlling_tty): Remove; unused.
3477 * w32proc.c (setpgrp): Remove.
3478 (setsid, tcgetpgrp): New functions.
3479
3480 Simplify by assuming __fpending.
3481 * dispnew.c: Include <fpending.h>, not <stdio_ext.h>.
3482 (update_frame_1): Use __fpending, not PENDING_OUTPUT_COUNT.
3483 Do not assume that __fpending's result fits in int.
3484
3485 2012-11-04 Paul Eggert <eggert@cs.ucla.edu>
3486
3487 Remove EMACS_OUTQSIZE+sleep hack.
3488 * dispnew.c (update_frame_1): Remove hack for terminals slower
3489 than 2400 bps, which throttled Emacs by having it sleep.
3490 This code hasn't worked since at least 2007, when the multi-tty stuff
3491 was added, and anyway those old terminals are long dead.
3492 * systty.h (EMACS_OUTQSIZE): Remove; unused. The macro isn't used even
3493 without the dispnew.c change, as dispnew.c doesn't include systty.h.
3494
3495 Fix data-loss with --version (Bug#9574).
3496 * emacs.c (close_output_streams): Use strerror, not emacs_strerror,
3497 as we can't assume that emacs_strerror is initialized, and strerror
3498 is good enough here.
3499 (main): Invoke atexit earlier, to catch earlier instances of
3500 sending data to stdout and exiting, e.g., "emacs --version >/dev/full".
3501
3502 2012-11-04 Michael Marchionna <tralfaz@pacbell.net>
3503
3504 * nsterm.m: Add NSClearLineFunctionKey and keypad keys (Bug#8680).
3505 (keyDown): Remap keypad keys to X11 virtual key codes.
3506
3507 2012-11-03 Paul Eggert <eggert@cs.ucla.edu>
3508
3509 Fix data-loss with --batch (Bug#9574).
3510 * emacs.c: Include <close-stream.h>.
3511 (close_output_streams): New function.
3512 (main): Pass it to atexit, so that Emacs closes stdout and stderr
3513 and handles errors appropriately.
3514 (Fkill_emacs): Don't worry about flushing, as close_output_stream
3515 does that now.
3516
3517 Fix a race condition that causes Emacs to mess up glib (Bug#8855).
3518 The symptom is a diagnostic "GLib-WARNING **: In call to
3519 g_spawn_sync(), exit status of a child process was requested but
3520 SIGCHLD action was set to SIG_IGN and ECHILD was received by
3521 waitpid(), so exit status can't be returned." The diagnostic
3522 is partly wrong, as the SIGCHLD action is not set to SIG_IGN.
3523 The real bug is a race condition between Emacs and glib: Emacs
3524 does a waitpid (-1, ...) and reaps glib's subprocess by mistake,
3525 so that glib can't find it. Work around the bug by invoking
3526 waitpid only on subprocesses that Emacs itself creates.
3527 * process.c (create_process, record_child_status_change):
3528 Don't use special value -1 in pid field, as the caller now must
3529 know the pid rather than having the callee infer it.
3530 The inference was sometimes incorrect anyway, due to another race.
3531 (create_process): Set new 'alive' member if child is created.
3532 (process_status_retrieved): New function.
3533 (record_child_status_change): Use it.
3534 Accept negative 1st argument, which means to wait for the
3535 processes that Emacs already knows about. Move special-case code
3536 for DOS_NT (which lacks WNOHANG) here, from caller. Keep track of
3537 processes that have already been waited for, by testing and
3538 clearing new 'alive' member.
3539 (CAN_HANDLE_MULTIPLE_CHILDREN): Remove, as record_child_status_change
3540 now does this internally.
3541 (handle_child_signal): Let record_child_status_change do all
3542 the work, since we do not want to reap all exited child processes,
3543 only the child processes that Emacs itself created.
3544 * process.h (Lisp_Process): New boolean member 'alive'.
3545
3546 Omit duplicate definitions no longer needed with gcc -g3.
3547 * lisp.h (GCTYPEBITS, GCALIGNMENT, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG)
3548 (VALMASK, MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM):
3549 Define only as macros. There's no longer any need to also define
3550 these symbols as enums or as constants, since we now assume
3551 gcc -g3 when debugging.
3552
3553 2012-11-03 Eli Zaretskii <eliz@gnu.org>
3554
3555 * lisp.mk: Adjust comments to the fact that term/internal is now
3556 loaded from loadup.el.
3557
3558 * msdos.c (msdos_abort): Rename from emacs_abort, and make static.
3559 (msdos_fatal_signal): New function.
3560 (XMenuActivate): Adjust the call to kbd_buffer_events_waiting to
3561 its argument list.
3562
3563 * conf_post.h (_GL_EXECINFO_INLINE) [MSDOS]: Define to "inline"
3564 for GCC versions before 4.
3565 (emacs_raise): Define to call msdos_fatal_signal.
3566
3567 * xdisp.c (init_from_display_pos): Fix initialization of the bidi
3568 iterator when starting in the middle of a display or overlay
3569 string. (Bug#12745)
3570
3571 2012-11-03 Chong Yidong <cyd@gnu.org>
3572
3573 * process.c (wait_reading_process_output): Clean up the last
3574 change.
3575
3576 2012-11-03 Jim Paris <jim@jtan.com> (tiny change)
3577
3578 * process.c (wait_reading_process_output): Avoid a race condition
3579 with SIGIO delivery (Bug#11536).
3580
3581 2012-11-03 Chong Yidong <cyd@gnu.org>
3582
3583 * buffer.c (cursor_type): Untabify docstring.
3584
3585 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3586
3587 * frame.h (struct frame): Drop can_have_scroll_bars member
3588 which is meaningless for a long time. Adjust comments.
3589 (FRAME_CAN_HAVE_SCROLL_BARS): Remove.
3590 * frame.c, nsfns.m, term.c, w32fns.c, xfns.c: Adjust users.
3591
3592 2012-11-03 Dmitry Antipov <dmantipov@yandex.ru>
3593
3594 * window.c (decode_next_window_args): Update window arg after
3595 calling decode_live_window and so fix crash reported at
3596 http://lists.gnu.org/archive/html/emacs-devel/2012-11/msg00035.html
3597 by Juanma Barranquero <lekktu@gmail.com>.
3598 (Fwindow_body_width, Fwindow_body_height): Simplify a bit.
3599 * font.c (Ffont_at): Likewise.
3600
3601 2012-11-01 Jan Djärv <jan.h.d@swipnet.se>
3602
3603 * widget.c (resize_cb): New function.
3604 (EmacsFrameRealize): Add resize_cb as event handler (Bug#12733).
3605 (EmacsFrameResize): Check if all is up to date before changing frame
3606 size.
3607
3608 2012-11-02 Eli Zaretskii <eliz@gnu.org>
3609
3610 Implement backtrace output for fatal errors on MS-Windows.
3611 * w32fns.c (CaptureStackBackTrace_proc): New typedef.
3612 (BACKTRACE_LIMIT_MAX): New macro.
3613 (w32_backtrace): New function.
3614 (emacs_abort): Use w32_backtrace when the user chooses not to
3615 attach a debugger. Update the text of the abort dialog.
3616
3617 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3618
3619 Window-related stuff cleanup here and there.
3620 * dispnew.c (Finternal_show_cursor, Finternal_show_cursor_p):
3621 Use decode_any_window.
3622 * fringe.c (Ffringe_bitmaps_at_pos): Likewise.
3623 * xdisp.c (Fformat_mode_line): Likewise.
3624 * font.c (Ffont_at): Use decode_live_window.
3625 * indent.c (Fcompute_motion, Fvertical_motion): Likewise.
3626 * window.c (decode_next_window_args): Likewise.
3627 (decode_any_window): Remove static.
3628 * window.h (decode_any_window): Add prototype.
3629 * lisp.h (CHECK_VALID_WINDOW, CHECK_LIVE_WINDOW): Move from here...
3630 * window.h: ...to here, redefine via WINDOW_VALID_P and WINDOW_LIVE_P,
3631 respectively.
3632
3633 2012-11-02 Dmitry Antipov <dmantipov@yandex.ru>
3634
3635 Remove pad from struct input_event.
3636 * termhooks.h (struct input_event): Remove padding field.
3637 Adjust comment.
3638 * keyboard.c (event_to_kboard): Simplify because frame_or_window
3639 member is never cons for a long time. Adjust comment.
3640 (mark_kboards): Adjust because SELECTION_REQUEST_EVENT and
3641 SELECTION_CLEAR_EVENT has no Lisp_Objects to mark. Add comment.
3642 * xterm.c (handle_one_xevent): Do not initialize frame_or_window
3643 field of SELECTION_REQUEST_EVENT and SELECTION_CLEAR_EVENT.
3644
3645 2012-11-01 Eli Zaretskii <eliz@gnu.org>
3646
3647 * w32proc.c (getpgrp, setpgid): New functions. (Bug#12776)
3648
3649 2012-10-31 Paul Eggert <eggert@cs.ucla.edu>
3650
3651 Fix crash when using Emacs as commit editor for git (Bug#12697).
3652 * callproc.c (setpgrp): Remove macro, as we now use setpgid
3653 and it is configured in conf_post.h.
3654 (Fcall_process): Don't invoke both setsid and setpgid; the former
3655 is enough, if it exists.
3656 * callproc.c (Fcall_process, child_setup):
3657 * process.c (create_process): Use setpgid.
3658 * conf_post.h (setpgid) [!HAVE_SETPGID]: New macro, which substitutes
3659 for the real thing.
3660 * dispnew.c (init_display): Initialize the foreground group
3661 if we are running a tty display.
3662 * emacs.c (main): Do not worry about setpgrp; init_display does it now.
3663 * lisp.h (init_foreground_group): New decl.
3664 * sysdep.c (inherited_pgroup): New static var.
3665 (init_foreground_group, tcsetpgrp_without_stopping)
3666 (narrow_foreground_group, widen_foreground_group): New functions.
3667 (init_sys_modes): Narrow foreground group.
3668 (reset_sys_modes): Widen foreground group.
3669
3670 2012-10-31 Michael Albinus <michael.albinus@gmx.de>
3671
3672 * dbusbind.c: Fix cut'n'waste error. Use HAVE_DBUS_VALIDATE_INTERFACE.
3673
3674 2012-10-31 Martin Rudalics <rudalics@gmx.at>
3675
3676 * minibuf.c (read_minibuf): Restore current buffer since
3677 choose_minibuf_frame calling Fset_frame_selected_window may
3678 change it (Bug#12766).
3679
3680 2012-10-30 Jan Djärv <jan.h.d@swipnet.se>
3681
3682 * frame.c (Fframe_pixel_height): Fix documentation (Bug#12733).
3683
3684 2012-10-30 Kenichi Handa <handa@gnu.org>
3685
3686 * font.c (Ffont_at): If WINDOW is specified and it is not
3687 displaying the current buffer, signal an error.
3688
3689 2012-10-29 Daniel Colascione <dancol@dancol.org>
3690
3691 * cygw32.h, cygw32.c (Qutf_16le, from_unicode, to_unicode):
3692 In preparation for fixing bug#12739, move these functions from
3693 here...
3694
3695 * coding.h, coding.c: ... to here, and compile them only when
3696 WINDOWSNT or CYGWIN. Moving these functions out of cygw32 proper
3697 lets us write cygw32-agnostic code for the HAVE_NTGUI case.
3698
3699 2012-10-28 Eli Zaretskii <eliz@gnu.org>
3700
3701 * w32proc.c (TIMER_TICKS_PER_SEC): New macro.
3702 (timer_loop, getitimer, setitimer): Use it instead of
3703 CLOCKS_PER_SEC, which is no longer pertinent, since we don't use
3704 'clock'.
3705 (w32_get_timer_time): Use 10*TIMER_TICKS_PER_SEC instead of a
3706 literal 10000.
3707
3708 2012-10-28 Jan Djärv <jan.h.d@swipnet.se>
3709
3710 * nsterm.m (NO_APPDEFINED_DATA): New define.
3711 (last_appdefined_event_data): New variable
3712 (last_appdefined_event): Remove.
3713 (ns_select): Initialize t from last_appdefined_event_data instead
3714 of [last_appdefined_event data1].
3715 (sendEvent:): Save [theEvent data1] to last_appdefined_event_data,
3716 remove last_appdefined_event (Bug#12698).
3717
3718 2012-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
3719
3720 * frame.c (x_set_font): Catch internal error.
3721
3722 2012-10-27 Eli Zaretskii <eliz@gnu.org>
3723
3724 Avoid overflow in w32 implementation of interval timers.
3725 When possible, for ITIMER_PROF count only times the main thread
3726 actually executes.
3727 * w32proc.c <struct itimer_data>: 'expire' and 'reload' are now
3728 'volatile ULONGLONG' types. All the other data which was
3729 previously clock_t is now ULONGLONG. 'terminate' is 'volatile int'.
3730 (GetThreadTimes_Proc): New typedef.
3731 (w32_get_timer_time): New function, returns a suitable time value
3732 for the timer.
3733 (timer_loop): Enter critical section when accessing ULONGLONG
3734 values of the itimer_data struct, as these accesses are no longer
3735 atomic. Call 'w32_get_timer_time' instead of 'clock'.
3736 Remove unused variable.
3737 (init_timers): Initialize s_pfn_Get_Thread_Times.
3738 (start_timer_thread): Don't assign itimer->caller_thread here.
3739 (getitimer): Assign itimer->caller_thread here.
3740 (setitimer): Always call getitimer to get the value of ticks_now.
3741 (sys_spawnve): Avoid compiler warning about format mismatch.
3742
3743 2012-10-26 Eli Zaretskii <eliz@gnu.org>
3744
3745 * w32fns.c (w32_wnd_proc) <WM_MOUSEMOVE>: Don't enable tracking of
3746 mouse movement events if the menu bar is active. This avoids
3747 producing a busy "hour-glass" cursor by Windows if the mouse
3748 pointer is positioned over a tooltip shown for some menu item.
3749
3750 2012-10-25 Paul Eggert <eggert@cs.ucla.edu>
3751
3752 Don't assume process IDs fit in int.
3753 * emacs.c (shut_down_emacs) [!DOS_NT]:
3754 * sysdep.c (sys_suspend) [SIGTSTP && !MSDOS]:
3755 * term.c (dissociate_if_controlling_tty) [!DOS_NT]:
3756 Use pid_t, not int, to store process IDs, as 'int'
3757 is not wide enough on a few platforms (e.g., AIX and IRIX).
3758
3759 2012-10-23 Kenichi Handa <handa@gnu.org>
3760
3761 The following change is to make face-font-rescale-alist work
3762 correctly for non-ASCII fonts.
3763
3764 * font.c (font_open_entity): Don't handle Vface_font_rescale_alist.
3765 (font_open_for_lface): Handle Vface_font_rescale_alist.
3766
3767 2012-10-23 Chong Yidong <cyd@gnu.org>
3768
3769 * xfaces.c (Vfont_list_limit): Move unused variable to faces.el.
3770
3771 2012-10-21 Jan Djärv <jan.h.d@swipnet.se>
3772
3773 * nsfont.m (nsfont_open, ns_glyph_metrics): Force integer advancement
3774 for screen font.
3775 (nsfont_draw): Turn off LCD-smoothing (Bug#11484).
3776
3777 * xterm.c (x_focus_changed): Check if daemonp when sending focus in
3778 event (Bug#12681).
3779
3780 2012-10-21 Glenn Morris <rgm@gnu.org>
3781
3782 * lisp.mk (lisp): Add cp51932.el and eucjp-ms.el.
3783
3784 2012-10-20 Paul Eggert <eggert@cs.ucla.edu>
3785
3786 Port to OpenBSD 5.1.
3787 * frame.c (Fmouse_position, Fmouse_pixel_position):
3788 * xdisp.c (produce_stretch_glyph):
3789 Declare local vars only when they're needed.
3790 This is clearer and avoids a warning on OpenBSD about unused vars.
3791 * frame.h (FRAME_WINDOW_P): Always evaluate its argument.
3792 This is safer, and avoids OpenBSD warnings about unused vars.
3793 * keyboard.c (record_menu_key): Remove unnecessary decl.
3794 (poll_timer): Define only if POLL_FOR_INPUT is defined.
3795 * unexelf.c (ELFSIZE) [!ElfW]: Do not define if already defined,
3796 as our definition clashes with OpenBSD's.
3797 * xfaces.c (load_face_colors, check_lface_attrs)
3798 (get_lface_attributes_no_remap, get_lface_attributes)
3799 (lface_fully_specified_p, x_supports_face_attributes_p)
3800 (tty_supports_face_attributes_p, face_fontset, realize_face)
3801 (realize_x_face, realize_tty_face):
3802 Declare parameters to be Lisp_Object[LFACE_VECTOR_SIZE], not
3803 merely Lisp_Object *. This is more informative and avoids
3804 a warning on OpenBSD about accessing beyond an object's size.
3805
3806 2012-10-20 Chong Yidong <cyd@gnu.org>
3807
3808 * lread.c (Fload): Doc fix (Bug#12592).
3809
3810 2012-10-19 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
3811
3812 * font.c (Ffont_at): Fix previous change.
3813
3814 2012-10-19 Eli Zaretskii <eliz@gnu.org>
3815
3816 * puresize.h (BASE_PURESIZE): Bump the base value to 1700000.
3817 See http://lists.gnu.org/archive/html/emacs-devel/2012-10/msg00593.html
3818 for the reasons.
3819
3820 * alloc.c (NSTATICS): Decrease to 0x800.
3821
3822 2012-10-19 Stefan Monnier <monnier@iro.umontreal.ca>
3823
3824 * fns.c (Fnreverse): Include the problem element when signaling an
3825 error (bug#12677).
3826
3827 2012-10-18 Jan Djärv <jan.h.d@swipnet.se>
3828
3829 * nsterm.m (ns_select): Check writefds before call to
3830 FD_ISSET (Bug#12668).
3831
3832 2012-10-18 Daniel Colascione <dancol@dancol.org>
3833
3834 * alloc.c (NSTATICS): Increase from 0x650 to 0x1000
3835 (staticpro): If we run out of staticpro slots, die with an
3836 informative error instead of just calling emacs_abort.
3837
3838 2012-10-18 Martin Rudalics <rudalics@gmx.at>
3839
3840 Fix two flaws reported by Dmitry Antipov.
3841 * window.c (Ftemp_output_buffer_show): Remove.
3842 (Fwindow_vscroll, Fset_window_vscroll): Use decode_live_window.
3843 (syms_of_window): Remove defsubr for Stemp_output_buffer_show.
3844
3845 2012-10-17 Eli Zaretskii <eliz@gnu.org>
3846
3847 * makefile.w32-in ($(BLD)/w32.$(O)):
3848 ($(BLD)/vm-limit.$(O)):
3849 ($(BLD)/term.$(O)):
3850 ($(BLD)/unexw32.$(O)):
3851 ($(BLD)/fileio.$(O)):
3852 ($(BLD)/dispnew.$(O)): Update dependencies.
3853
3854 * w32term.h (w32_initialize_display_info, initialize_w32_display):
3855 Add prototypes.
3856
3857 * w32proc.c: Include ctype.h.
3858
3859 * w32.h (init_environment, check_windows_init_file)
3860 (syms_of_ntproc, syms_of_ntterm, dostounix_filename)
3861 (unixtodos_filename, init_winsock, srandom, random, sys_pipe)
3862 (set_process_dir, sys_spawnve, register_child, sys_sleep, getwd)
3863 (sys_link): Add prototypes.
3864
3865 * w32.c: Include w32select.h.
3866 (sys_access, e_malloc, sys_select): Add prototypes.
3867 (emacs_gnutls_pull): 'timeout' is now EMACS_TIME, not struct timeval.
3868
3869 * vm-limit.c [WINDOWSNT]: Include w32heap.h.
3870
3871 * unexw32.c: Include lisp.h and w32.h.
3872
3873 * term.c [WINDOWSNT]: Include w32term.h.
3874
3875 * process.c [WINDOWSNT]: Add prototype of sys_select.
3876
3877 * fileio.c [WINDOWSNT]: Include w32.h.
3878
3879 * dispnew.c [WINDOWSNT]: Include w32.h.
3880
3881 * cygw32.c (Fcygwin_convert_path_to_windows)
3882 (Fcygwin_convert_path_from_windows): Use EQ to compare 2
3883 Lisp_Object values. (Bug#12661)
3884
3885 * w32fns.c (w32_msg_pump): Use XIL instead of casting an integer
3886 to Lisp_Object. (Bug#12661)
3887
3888 2012-10-17 Kenichi Handa <handa@gnu.org>
3889
3890 * xdisp.c (reseat_1): Make the information stored in it->cmp_it
3891 invalidate.
3892
3893 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3894
3895 * buffer.c (Fkill_buffer): When unchaining the marker,
3896 reset its buffer pointer to NULL (Bug#12652).
3897
3898 2012-10-17 Dmitry Antipov <dmantipov@yandex.ru>
3899
3900 Do not verify indirection counters of killed buffers (Bug#12579).
3901 * buffer.h (BUFFER_CHECK_INDIRECTION): New macro.
3902 * buffer.c (compact_buffer, set_buffer_internal_1): Use it.
3903
3904 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3905
3906 * alloc.c (Fmake_byte_code): Fix typo in comment.
3907 * print.c (print_interval): Define as static to match prototype.
3908 * indent.c (disptab_matches_widthtab, recompute_width_table):
3909 Convert to eassert.
3910
3911 2012-10-16 Dmitry Antipov <dmantipov@yandex.ru>
3912
3913 * editfns.c (get_system_name): Remove.
3914 * lisp.h (get_system_name): Remove prototype.
3915 * xrdb.c (getenv, getpwuid, getpwnam): Remove prototypes.
3916 (get_environ_db): Use Vsystem_name. Avoid call to strlen.
3917
3918 2012-10-15 Daniel Colascione <dancol@dancol.org>
3919
3920 * dbusbind.c: Add comment explaining reason for previous change.
3921
3922 2012-10-15 Martin Rudalics <rudalics@gmx.at>
3923
3924 * window.c (Fwindow_end): Rewrite check whether cached position
3925 can be used (Bug#12600).
3926 (resize_frame_windows, grow_mini_window, shrink_mini_window):
3927 Set windows_or_buffers_changed.
3928
3929 2012-10-15 Daniel Colascione <dancol@dancol.org>
3930
3931 * dbusbind.c: Fix cygw32 build break when compiling with dbus
3932 enabled by undefining the symbol "interface", which the platform
3933 headers define to something incompatible.
3934
3935 2012-10-14 Daniel Colascione <dancol@dancol.org>
3936
3937 * image.c (init_tiff_functions, init_imagemagick_functions)
3938 (init_svg_functions): Fix cygw32 build break by using these
3939 functions only when WINDOWSNT _and_ HAVE_NTGUI.
3940
3941 2012-10-14 Jan Djärv <jan.h.d@swipnet.se>
3942
3943 * nsterm.m (ns_select): Count fd:s in writefs also (Bug#12422).
3944
3945 2012-10-13 Jan Djärv <jan.h.d@swipnet.se>
3946
3947 * gtkutil.c (xg_set_widget_bg): Divide by 65535 (Bug#12612).
3948
3949 2012-10-13 HANATAKA, Shinya <bogytech@gmail.com> (tiny change)
3950
3951 * coding.c (detect_coding): Set coding->id before calling
3952 this->detector.
3953
3954 2012-10-13 Andreas Schwab <schwab@linux-m68k.org>
3955
3956 * fileio.c: Formatting fixes.
3957
3958 2012-10-13 Paul Eggert <eggert@cs.ucla.edu>
3959
3960 Fix some stat-related races.
3961 * fileio.c (Fwrite_region): Avoid race condition if a file is
3962 removed or renamed by some other process immediately after Emacs
3963 writes it but before Emacs stats it. Do not assume that stat (or
3964 fstat) succeeds.
3965 * image.c (slurp_file): Resolve the file name with fopen + fstat
3966 rather than stat + fopen.
3967 (pbm_read_file) [0]: Remove unused code with stat race.
3968 * process.c (allocate_pty) [HAVE_PTYS && !PTY_ITERATION && !PTY_OPEN]:
3969 Remove ineffective code with stat race.
3970
3971 2012-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
3972
3973 * doc.c (get_doc_string): Don't signal an error if the file is missing.
3974
3975 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
3976
3977 * nsterm.m (hold_event_q): New static variable.
3978 (EV_TRAILER, sendScrollEventAtLoc:fromEvent:): Call hold_event if
3979 ! q_event_ptr.
3980 (hold_event): New function.
3981 (ns_read_socket): If hold_event_q have events, store them and
3982 return (Bug#12384).
3983 (setPosition:portion:whole:): Send SIGIO to ourselves if apploopnr
3984 is zero (Bug#12384).
3985
3986 2012-10-12 Juanma Barranquero <lekktu@gmail.com>
3987
3988 * makefile.w32-in ($(BLD)/w32select.$(O)): Update dependencies.
3989
3990 2012-10-12 Eli Zaretskii <eliz@gnu.org>
3991
3992 * makefile.w32-in ($(BLD)/fileio.$(O)): Add sys/file.h.
3993
3994 * fileio.c (check_existing): New function.
3995 (make_temp_name, Ffile_exists_p, Ffile_writable_p): Call it
3996 instead of calling 'stat', when what's needed is to check whether
3997 a file exists. This avoids expensive system calls on MS-Windows.
3998 (Bug#12587)
3999
4000 * w32.c (init_environment): Call 'check_existing' instead of 'stat'.
4001
4002 * lread.c (openp) [WINDOWSNT]: Call 'access' instead of 'stat' to
4003 determine whether a file exists and is not a directory.
4004
4005 * lisp.h (check_existing): Add prototype.
4006
4007 2012-10-12 Jan Djärv <jan.h.d@swipnet.se>
4008
4009 * nsfont.m (nsfont_open): Remove font cache, it is not GC correct.
4010
4011 2012-10-12 Glenn Morris <rgm@gnu.org>
4012
4013 * buffer.c (Fset_buffer): Doc fix. (Bug#12624)
4014
4015 2012-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
4016
4017 * buffer.c (Fkill_buffer): Null out the overlay list(s) as well.
4018
4019 * eval.c (Fautoload): Remember previous autoload status in load-history.
4020
4021 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4022
4023 lread.c, macros.c, marker.c, menu.c, minibuf.c: Use bool for booleans.
4024 * lread.c (load_each_byte, new_backquote_flag, readchar)
4025 (read_filtered_event, lisp_file_lexically_bound_p)
4026 (safe_to_load_version, Fload, complete_filename_p, openp)
4027 (build_load_history, readevalloop, read_escape, read1)
4028 (string_to_number, read_vector, read_list):
4029 * macros.c (Fstart_kbd_macro):
4030 * marker.c (CONSIDER):
4031 * menu.c (parse_single_submenu, digest_single_submenu)
4032 (find_and_return_menu_selection, Fx_popup_menu):
4033 * minibuf.c (read_minibuf_noninteractive, read_minibuf)
4034 (Ftry_completion):
4035 * nsmenu.m (ns_update_menubar, runMenuAt:forFrame:keymaps:):
4036 (ns_menu_show):
4037 * xmenu.c (set_frame_menubar, create_and_show_popup_menu)
4038 (xmenu_show, xdialog_show):
4039 Use bool for booleans.
4040 * lread.c (safe_to_load_version): Rename from safe_to_load_p,
4041 as it's not a predicate. All uses changed. Omit unnecessary
4042 buffer termination.
4043
4044 2012-10-11 Dmitry Antipov <dmantipov@yandex.ru>
4045
4046 * editfns.c (save_excursion_save): Use nil if mark points to nowhere.
4047 (save_excursion_restore): Do not restore mark if it was not saved.
4048
4049 2012-10-11 Paul Eggert <eggert@cs.ucla.edu>
4050
4051 * marker.c (cached_modiff): EMACS_INT, not int.
4052
4053 * w32select.c (waiting_for_input): Declare by including "keyboard.h"
4054 instead of having a wrong decl.
4055 * nsmenu.m (waiting_for_input): Remove wrong decl.
4056
4057 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4058
4059 keyboard.c, keymap.c: Use bool for booleans.
4060 * dispnew.c (sit_for): Distinguish between 3-way display_option
4061 and boolean do_display.
4062 * keyboard.c (single_kboard, this_command_key_count_reset)
4063 (waiting_for_input, echoing, immediate_quit, input_pending)
4064 (interrupt_input, interrupts_deferred, pop_kboard)
4065 (temporarily_switch_to_single_kboard, ignore_mouse_drag_p)
4066 (command_loop_1, adjust_point_for_property)
4067 (safe_run_hooks_error, input_polling_used, read_char):
4068 (help_char_p, readable_events, kbd_buffer_events_waiting)
4069 (kbd_buffer_get_event, timer_check_2, make_lispy_event)
4070 (lucid_event_type_list_p, get_input_pending):
4071 (gobble_input, menu_separator_name_p, menu_bar_item)
4072 (parse_menu_item, parse_tool_bar_item, read_char_x_menu_prompt)
4073 (read_char_minibuf_menu_prompt, access_keymap_keyremap)
4074 (keyremap_step, test_undefined, read_key_sequence)
4075 (detect_input_pending, detect_input_pending_ignore_squeezables)
4076 (detect_input_pending_run_timers, requeued_events_pending_p)
4077 (quit_throw_to_read_char, Fset_input_interrupt_mode):
4078 * keymap.c (get_keymap, keymap_parent, keymap_memberp)
4079 (access_keymap_1, access_keymap, map_keymap, get_keyelt)
4080 (Fdefine_key, Flookup_key, struct accessible_keymaps_data)
4081 (accessible_keymaps_1, Fkey_description, push_key_description):
4082 (shadow_lookup, struct where_is_internal_data)
4083 (where_is_internal, Fwhere_is_internal, where_is_internal_1)
4084 (Fdescribe_buffer_bindings, describe_map_tree, struct describe_map_elt)
4085 (describe_map, describe_vector):
4086 * menu.c (single_menu_item):
4087 * nsmenu.m (ns_update_menubar):
4088 * process.c (wait_reading_process_output):
4089 * search.c (scan_buffer, scan_newline):
4090 Use bool for boolean.
4091 * keyboard.c (timers_run, swallow_events)
4092 (detect_input_pending_run_timers):
4093 * process.c (wait_reading_process_output):
4094 Use unsigned for counter where wraparound-on-overflow is desired,
4095 since unsigned is guaranteed to have that behavior and signed is not.
4096 (read_char): Use ptrdiff_t for string length.
4097 (get_input_pending): Remove first argument, since it was always
4098 the same pointer-to-int (now pointer-to-boolean) &input_pending,
4099 and behave as if it had that value. Return new value of
4100 input_pending. All callers changed.
4101 * keyboard.h (struct kboard): Use unsigned : 1 for boolean member
4102 immediate_echo. Use ptrdiff_t for echo_after_prompt, since it's
4103 a string length.
4104 * keymap.c (push_key_description): Omit last arg, which was always 1.
4105 All callers changed.
4106
4107 * regex.c (immediate_quit) [emacs]: Remove duplicate decl.
4108
4109 2012-10-10 Juanma Barranquero <lekktu@gmail.com>
4110
4111 * makefile.w32-in ($(BLD)/dispnew.$(O), $(BLD)/indent.$(O))
4112 ($(BLD)/term.$(O)): Update dependencies.
4113
4114 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4115
4116 * alloc.c (mark_object): Use meaningful PVEC_NORMAL_VECTOR.
4117 * lisp.h (enum pvec_type): Adjust comments and omit explicit
4118 initializer for PVEC_NORMAL_VECTOR.
4119
4120 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4121
4122 Clean out old termopts cruft.
4123 * termopts.h (flow_control, meta_key): Remove unused decls.
4124 * dispnew.c, indent.c, nsterm.m, term.c, xsettings.c, xsmfns.c:
4125 Don't include termopts.h.
4126
4127 2012-10-10 Dmitry Antipov <dmantipov@yandex.ru>
4128
4129 * alloc.c (gc_sweep): Use pointer-to-a-pointer loop for buffers.
4130
4131 2012-10-10 Paul Eggert <eggert@cs.ucla.edu>
4132
4133 * commands.h (immediate_quit): Remove duplicate decl.
4134
4135 2012-10-09 Jan Djärv <jan.h.d@swipnet.se>
4136
4137 * nsfont.m (Vfonts_in_cache): Remove, not needed as font.c handles
4138 caching.
4139 (nsfont_open): Remove setting of Vfonts_in_cache.
4140 (syms_of_nsfont): Remove initialization of Vfonts_in_cache.
4141
4142 2012-10-09 Eli Zaretskii <eliz@gnu.org>
4143
4144 * w32fns.c (w32_last_error): Change the return value to DWORD, to
4145 match what GetLastError returns. Explain why the function is
4146 needed.
4147
4148 * frame.c (delete_frame): Rename local variable 'tooltip_frame' to
4149 'is_tooltip_frame', to avoid confusion with its global namesake.
4150
4151 2012-10-08 Daniel Colascione <dancol@dancol.org>
4152
4153 * xdisp.c (start_hourglass): Call w32_note_current_window when
4154 HAVE_NTGUI, not just WINDOWSNT, resolving a problem in the cygw32
4155 build that caused Emacs to display the hourglass cursor forever.
4156
4157 * w32fns.c (Fx_display_color_cells): Instead of using NCOLORS,
4158 which is broken under remote desktop, calculate the number of
4159 colors available for a display based on the display's number of
4160 planes and number of bits per pixel per plane. (bug#10397).
4161
4162 2012-10-08 Jan Djärv <jan.h.d@swipnet.se>
4163
4164 * nsfont.m (Vfonts_in_cache): New variable.
4165 (nsfont_open): Use unsignedLongLongValue for cache in case wide ints
4166 are used. Add cached fonts to Vfonts_in_cache.
4167 (syms_of_nsfont): Initialize and staticpro Vfonts_in_cache.
4168
4169 2012-10-08 Juanma Barranquero <lekktu@gmail.com>
4170
4171 * makefile.w32-in (LOCAL_FLAGS): Don't define HAVE_NTGUI, it's now
4172 in nt/config.nt.
4173 (FONT_H): Define after FRAME_H.
4174 ($(BLD)/emacs.$(O), $(BLD)/process.$(O), $(BLD)/w32heap.$(O)):
4175 Update dependencies.
4176
4177 * w32term.c: Remove leftover declaration of keyboard_codepage.
4178
4179 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4180
4181 * makefile.w32-in (FONT_H): Add $(FRAME_H).
4182 (W32TERM_H): Add $(ATIMER_H) and $(FRAME_H).
4183 ($(BLD)/emacs.$(O), $(BLD)/w32console.$(O)): Update dependencies.
4184 (GLOBAL_SOURCES): Add cygw32.c.
4185 ($(BLD)/unexw32.$(O)):
4186 ($(BLD)/w32.$(O)):
4187 ($(BLD)/w32console.$(O)):
4188 ($(BLD)/w32fns.$(O)):
4189 ($(BLD)/w32heap.$(O)):
4190 ($(BLD)/w32menu.$(O)):
4191 ($(BLD)/w32proc.$(O)): Add w32common.h.
4192
4193 * w32fns.c (w32_color_map_lookup, x_to_w32_color): Argument is now
4194 'const char *'.
4195 (x_to_w32_color): Don't modify the argument, modify a copy instead.
4196
4197 2012-10-08 Daniel Colascione <dancol@dancol.org>
4198
4199 * w32term.h (WM_EMACS_BRINGTOTOP, WM_EMACS_INPUT_READY)
4200 (WM_EMACS_END): Change WM_EMACS_BRINGTOTOP from 22 to 21 to close
4201 accidental message numbering hole. Change other messages to
4202 match.
4203
4204 * w32select.h (HAVE_W32SELECT): Remove.
4205
4206 * w32select.c, w32proc.c, w32menu.c, w32console.c, w32.c: Include
4207 w32common.h instead of w32heap.h.
4208
4209 * w32heap.h (ROUND_UP, ROUND_DOWN, get_page_size)
4210 (get_allocation_unit, get_processor_type, get_w32_major_version)
4211 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4212 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4213 (OS_NT, os_subtype, cache_system_info): Move declarations to
4214 w32common.
4215
4216 * w32heap.c: Include w32common.h.
4217 (sysinfo_cache, syspage_mask, osinfo_cache, w32_major_version)
4218 (w32_minor_version, w32_build_number, w32_subtype):
4219 Remove duplicate definitions.
4220
4221 * w32fns.c: Include w32common.h; include w32heap.h only in
4222 WINDOWSNT.
4223
4224 (Fx_file_dialog): Clarify comment on GetOpenFileName structure.
4225 Use `report_file_error' instead of `error' in order to better
4226 inform users of what went wrong. Increase NTGUI_UNICODE file
4227 dialog box file name length to 32k, the maximum allowed by the NT
4228 kernel.
4229
4230 * w32common.h: New file.
4231 (ROUND_UP, ROUND_DOWN, get_page_size)
4232 (get_allocation_unit, get_processor_type, get_w32_major_version)
4233 (get_w32_minor_version, sysinfo_cache, osinfo_cache)
4234 (w32_major_version, w32_minor_version, w32_build_number, OS_9X)
4235 (OS_NT, os_subtype, cache_system_info): Move here.
4236
4237 * unexw32.c, unexcw.c: Include w32common.h.
4238
4239 * emacs.c (main): Use (defined (WINDOWSNT) || defined
4240 HAVE_NTGUI) instead of removed HAVE_W32SELECT to decide whether
4241 to call syms_of_w32select.
4242
4243 * cygw32.h: Remove obsolete EXFUN declarations.
4244
4245 * cygw32.c (Qutf_16_le): Rename to Qutf_16le.
4246
4247 * Makefile.in (SOME_MACHINE_OBJECTS): Reverse accidental removal
4248 of w32inevt.o from SOME_MACHINE_OBJECTS.
4249
4250 2012-10-08 Daniel Colascione <dancol@dancol.org>
4251
4252 * image.c: Permanent fix for JPEG compilation issue --- limit
4253 jpeglib `boolean' redefinition to Cygwin builds.
4254
4255 2012-10-08 Eli Zaretskii <eliz@gnu.org>
4256
4257 * image.c (CHECK_LIB_AVAILABLE): Remove, no longer used.
4258
4259 * emacs.c (DAEMON_MUST_EXEC) [HAVE_NTGUI]: Define this only on
4260 Cygwin.
4261
4262 2012-10-08 Daniel Colascione <dancol@dancol.org>
4263
4264 * xfaces.c, xdisp.c, window.c, w32xfns.c, w32term.h, w32term.c,
4265 w32select.h w32select.c, w32proc.c, w32menu.c, w32inevt.c,
4266 w32help.c, w32font.c, w32font.c, w32fns.c, w32console.c, w32.h,
4267 w32.c, unexw32.c, termhooks.h, process.c, menu.c, keyboard.h,
4268 keyboard.c, image.c, frame.h, frame.c, fontset.c, font.h, font.c,
4269 emacs.c, dispextern.h, cygw32.h, cygw32.c, conf_post.h,
4270 Makefile.in: use HAVE_NTGUI for W32 GUI and WINDOWSNT for the
4271 operating system. defined(HAVE_NTGUI) && !defined(WINDOWSNT) is
4272 now a supported configuration.
4273
4274 * Makefile.in: consolidate image variables into LIBIMAGE; add
4275 W32_OBJ and W32_LIBS. Compile new files.
4276
4277 * conf_post.h:
4278 (_DebPrint) declare tracing facility for W32 debugging. We need
4279 to unify tracing later.
4280
4281 (NTGUI_UNICODE) Define when compiling for Cygwin to allow the
4282 unconditional use of W32 Unicode functions. Cygwin runs only on
4283 100% Unicode operating systems.
4284
4285 * cygw32.c: New file. Define Cygwin-specific facilities.
4286 (Fcygwin_convert_path_to_windows)
4287 (Fcygwin_convert_path_from_windows): New user functions for
4288 accessing Cygwin path-munging routines.
4289
4290 * cygw32.h: New file.
4291 (WCSDATA, to_unicode, from_unicode): Define facilities for storing
4292 UTF-16LE strings temporarily inside non-Lisp-visible string
4293 objects.
4294
4295 (w32_strerror): Just what it says on the tin.
4296
4297 * emacs.c: Make the NS fork-then-exec code for daemon-launching
4298 also run for Cygwin; both systems have the same problem with using
4299 GUI facilities in a forked child. Also call syms_of_cygw32,
4300 syms_of_w32select in correct places.
4301
4302 (DAEMON_MUST_EXEC): new macro defined to signal that a platform
4303 needs fork-then-exec for daemon launching.
4304
4305 * font.h: Include frame.h.
4306
4307 * image.c: Use the image library cache machinery only when we're
4308 compiling for native WINDOWSNT; Cygwin can use shared libraries
4309 like any other Unixlike system.
4310
4311 * keyboard.c: Clarify a comment regarding the input loop.
4312
4313 * menu.c: When NTGUI_UNICODE is defined, use Unicode menu
4314 functions directly instead of trying to detect at runtime that our
4315 host operating system supports them. We make this change for two
4316 reasons: Cygwin lacks support for the multibyte character
4317 conversion functions used by the legacy menu code, and Cygwin
4318 never needs to rely on non-Unicode APIs.
4319
4320 * unexw32.c (hinst): Declare extern.
4321
4322 * w32.c: Change header order;
4323 (w32_strerror): Move to w32fns.c because we need it for
4324 non-WINDOWSNT builds.
4325
4326 * w32.h: Add #error macro to make sure we don't include w32.h for
4327 Cygwin builds. Remove w32select declarations.
4328
4329 * w32console.c (w32_sys_ring_bell, Fset_message_beep): Move to
4330 w32fns.c. w32console.c is WINDOWSNT-only.
4331
4332 * w32fns.c: Include cygw32.h or w32.h depending on CYGWIN; more
4333 NTGUI_UNICODE tweaks. (See above.) Change _snprintf to the more
4334 POSIXy alternative.
4335 (faked_key, sysinfo_cache, osinfo_cahce, syspage_mask)
4336 (w32_major_version, w32_minor_version, w32_build_number)
4337 (os_subtype, sound_type): Define here
4338 (w32_defined_color): Make color parameter const for consistency
4339 with other _defined_color functions.
4340 (w32_createwindow): Unconditionally call w32_init_class instead of
4341 doing so only when hprevinst is non-NULL. Plumbing hprevinst
4342 through the code is complex and unnecessary because class
4343 registration is practically free.
4344 (w32_name_of_message): New EMACSDEBUG-only function.
4345 (Fset_message_beep): Move here
4346 (Fx_open_connection): Require that the display name for Windows be
4347 "w32" for consistency, emacsclient disambiguation, and maybe, one
4348 day, multi-window-system support.
4349 (file_dialog_callback): NTGUI_UNICODE changes; encode and decode
4350 Cygwin files for W32 GUI facilities, since these clearly don't
4351 expect Cygwin names.
4352 (_DebPrint): Define.
4353 (w32_strerror, w32_console_toggle_lock_key, w32_kbd_mods_to_emacs)
4354 (w32_kbd_patch_key, w32_sys_ring_bell): Move here.
4355 (Ssystem_move_file_to_trash): Define only for native WINDOWSNT.
4356 (w32_last_error): Remove.
4357
4358 * w32font.c: Define _strlwr to strlwr for non-WINDOWSNT builds.
4359
4360 * w32heap.c (syspage_mask): Declare here.
4361 (cache_system_info): Remove.
4362
4363 * w32inevt.c (faked_key): Define globally, not statically.
4364 (w32_kbd_mods_to_emacs, w32_kbd_patch_key, faked_key)
4365 (w32_console_toggle_lock_key): Move to w32fns.c.
4366
4367 * w32menu.c: Include setjmp.h. NTGUI_UNICODE changes throughout.
4368
4369 * w32proc.c (_DebPrint): Move to w32fns.c.
4370 * w32select.c: Include string.h, stdio.h for Cygwin.
4371 * w32select.h: New File.
4372
4373 * w32term.c: Include io.h for non-CYGWIN builds; needed for
4374 get_osfhandle.
4375 (w32_message_fd): New variable. Under Cygwin, holds the file
4376 descriptor the system used to tell us about pending thread
4377 messages.
4378
4379 (w32_init_term): Remove incorrect calls to fcntl and init_sigio
4380 that prevented compilation under non-WINDOWSNT systems.
4381
4382 (w32_initialize): Open /dev/windows and assign it to
4383 w32_message_fd. Provide w32 feature.
4384
4385 * w32term.h: Include frame.h, atimer.h. Declare various frame functions.
4386 (WM_EMACS_INPUT_READY): add.
4387 (prepend_msg, w32_message_fd): Declare globally.
4388
4389 * w32xfns.c:
4390 (keyboard_handle): Use only when WINDOWSNT.
4391 (notify_msg_ready): New function. Posts a message to the main
4392 thread's message queue under CYGWIN, which wakes up the main
4393 thread from select(2) by making the /dev/windows file descriptor
4394 ready. Under WINDOWSNT, it sets an event the same way the old
4395 code did.
4396
4397 (post, prepend_msg): Actually call notify_msg_ready instead of
4398 setting the input event directly.
4399
4400 2012-10-07 Eli Zaretskii <eliz@gnu.org>
4401
4402 * ralloc.c (relinquish): If a heap is ready to be relinquished,
4403 but it still has blocs in it, don't return it to the system,
4404 instead of aborting. (Bug#12402)
4405
4406 2012-10-07 Jan Djärv <jan.h.d@swipnet.se>
4407
4408 * nsterm.m (ns_dumpglyphs_image): Only draw slice of image (Bug#12506).
4409
4410 * nsterm.m (ns_update_auto_hide_menu_bar): Remove defintion of
4411 MAC_OS_X_VERSION_10_6.
4412 (syms_of_nsterm): Remove comment about Panther and above for
4413 ns-antialias-text.
4414 * nsterm.h (MAC_OS_X_VERSION_10_3, onTiger): Remove.
4415 (EmacsApp): Remove check for >= MAC_OS_X_VERSION_10_4.
4416 (struct nsfont_info): Remove check for >= MAC_OS_X_VERSION_10_3.
4417
4418 * nsselect.m (ns_string_from_pasteboard): Remove check for >=
4419 MAC_OS_X_VERSION_10_4.
4420
4421 * nsmenu.m (fillWithWidgetValue:): Remove code for <
4422 MAC_OS_X_VERSION_10_2.
4423
4424 * nsimage.m (setPixmapData, getPixelAtX, setAlphaAtX): Remove onTiger.
4425
4426 * nsfns.m (Fns_list_services): Remove comment and check for OSX < 10.4.
4427 (ns_do_applescript): Remove check for >= MAC_OS_X_VERSION_10_4.
4428
4429 * nsterm.m (ns_in_resize): Remove (Bug#12479).
4430 (ns_resize_handle_rect, mouseDown, mouseUp, mouseDragged): Remove.
4431 (ns_clear_frame, sendEvent, windowDidResize, drawRect:):
4432 Remove ns_in_resize check.
4433 (ns_clear_frame_area): Remove resize handle code.
4434
4435 * nsfns.m (ns_in_resize): Remove.
4436 (x_set_icon_name, ns_set_name, ns_set_name_as_filename):
4437 Remove ns_in_resize check.
4438
4439 2012-10-07 Paul Eggert <eggert@cs.ucla.edu>
4440
4441 Improve sys_siglist detection.
4442 * sysdep.c (sys_siglist, init_signals): Use _sys_siglist if it's
4443 defined as a macro, as is done in Solaris.
4444 (sys_siglist_entries): New macro.
4445 (save_strsignal): Use it.
4446 * syssignal.h (safe_strsignal): Now ATTRIBUTE_CONST, to pacify
4447 GCC 4.7.2 on Fedora 17 with the fixed sys_siglist detection.
4448
4449 2012-10-06 Jan Djärv <jan.h.d@swipnet.se>
4450
4451 * nsfns.m (Fx_create_frame): Call x_default_parameter with
4452 fullscreen/Fullscreen.
4453
4454 * nsterm.h (EmacsView): Rename tbar_height to tibar_height.
4455 tobar_height is new.
4456
4457 * nsterm.m (x_make_frame_visible): Check for fullscreen.
4458 (ns_fullscreen_hook): Activate old style fullscreen with a timer.
4459 (ns_term_init): Set activateIgnoringOtherApps if old style fullscreen.
4460 (windowDidResize:): Check for correct window if old style fullscreen.
4461 Capitalize word in comment. Remove incorrect comment.
4462 (initFrameFromEmacs:): tbar_height renamed tibar_height.
4463 (windowDidEnterFullScreen:): Toggle toolbar for fullscreen to fix
4464 error in drawing background.
4465 (toggleFullScreen:): Remove comment. Rearrange calls.
4466 Set toolbar values to zero, save old height in tobar_height.
4467 Restore tool bar height when leaving fullscreen.
4468 (canBecomeMainWindow): New function.
4469
4470 2012-10-06 Paul Eggert <eggert@cs.ucla.edu>
4471
4472 * keyboard.c (read_char): Remove unnecessary 'volatile's and label.
4473
4474 2012-10-05 Eli Zaretskii <eliz@gnu.org>
4475
4476 * w32proc.c (stop_timer_thread): Fix declaration of 'err'.
4477
4478 * w32.c (utime): Open the file with FILE_FLAG_BACKUP_SEMANTICS, so
4479 that time stamps of directories could also be changed.
4480 Don't request the too broad GENERIC_WRITE, only the more restrictive
4481 FILE_WRITE_ATTRIBUTES access rights.
4482
4483 * fileio.c (Fset_file_times): Special-case ignoring errors for
4484 directories only on MSDOS, not on MS-Windows.
4485
4486 2012-10-05 Ikumi Keita <ikumi@ikumi.que.jp> (tiny change)
4487
4488 * minibuf.c (Fcompleting_read): Doc fix. (Bug#12555)
4489
4490 2012-10-04 Eli Zaretskii <eliz@gnu.org>
4491
4492 * w32.c (utime): Test for INVALID_HANDLE_VALUE, not for NULL, to
4493 see whether CreateFile failed.
4494
4495 2012-10-04 Paul Eggert <eggert@cs.ucla.edu>
4496
4497 * profiler.c (handle_profiler_signal): Inhibit pending signals too,
4498 to avoid similar races.
4499 * keyboard.c (pending_signals): Now bool, not int.
4500
4501 Port timers to OpenBSD, plus check for timer failures.
4502 OpenBSD problem reported by Han Boetes.
4503 * profiler.c (setup_cpu_timer): Check for failure of timer_settime
4504 and/or setitimer.
4505 (Fprofiler_cpu_stop): Don't assume HAVE_SETITIMER.
4506 * syssignal.h (HAVE_ITIMERSPEC): New macro. This is for platforms
4507 like OpenBSD, which has timer_settime but does not declare it.
4508 OpenBSD does not define SIGEV_SIGNAL, so use that when deciding
4509 whether to use itimerspec-related primitives. All uses of
4510 HAVE_TIMER_SETTIME replaced with HAVE_ITIMERSPEC.
4511
4512 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4513
4514 * profiler.c (handle_profiler_signal): Fix a malloc race
4515 that caused Emacs to hang on Fedora 17 when profiling Lisp.
4516
4517 2012-10-02 Jan Djärv <jan.h.d@swipnet.se>
4518
4519 * nsterm.m (windowDidEnterFullScreen): Remove fprintf.
4520
4521 2012-10-02 Eli Zaretskii <eliz@gnu.org>
4522
4523 * w32proc.c (sys_wait): Declare 'signame' 'const char *', to be
4524 consistent with the change in return value of 'safe_strsignal'.
4525
4526 2012-10-02 Paul Eggert <eggert@cs.ucla.edu>
4527
4528 Prefer plain 'static' to 'static inline' (Bug#12541).
4529 * bidi.c (bidi_get_type, bidi_check_type, bidi_get_category)
4530 (bidi_set_sor_type, bidi_push_embedding_level)
4531 (bidi_pop_embedding_level, bidi_remember_char, bidi_copy_it)
4532 (bidi_cache_reset, bidi_cache_shrink, bidi_cache_fetch_state)
4533 (bidi_cache_search, bidi_cache_ensure_space)
4534 (bidi_cache_iterator_state, bidi_cache_find)
4535 (bidi_peek_at_next_level, bidi_set_paragraph_end)
4536 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
4537 (bidi_explicit_dir_char, bidi_resolve_neutral_1):
4538 Now 'static', not 'static inline'.
4539
4540 Count overruns when profiling; change units to ns.
4541 * profiler.c (handle_profiler_signal): Count sampling intervals, not ms.
4542 Give extra weight to samples after overruns, to attempt to count
4543 the time more accurately.
4544 (setup_cpu_timer): Change sampling interval units from ms to ns, since
4545 the underlying primitives nominally do ns.
4546 (Fprofiler_cpu_start): Document the change. Mention that
4547 the sampling intervals are only approximate.
4548
4549 2012-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
4550
4551 * frame.c (Fmake_terminal_frame): Prefer safer CONSP over !NILP.
4552
4553 * coding.h (ENCODE_FILE, DECODE_FILE, DECODE_SYSTEM): Remove special
4554 case for the special 0 coding-system.
4555
4556 * buffer.c (Fset_buffer_multibyte): Signal an error instead of widening.
4557 (Fmake_overlay): Remove redundant tests.
4558 (fix_start_end_in_overlays): Remove redundant recentering.
4559
4560 2012-10-02 Juanma Barranquero <lekktu@gmail.com>
4561
4562 * makefile.w32-in ($(BLD)/alloc.$(O), $(BLD)/gmalloc.$(O)):
4563 Update dependencies.
4564
4565 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4566
4567 Fix a malloc race condition involving strsignal.
4568 A signal can arrive in the middle of a malloc, and Emacs's signal
4569 handler can invoke strsignal, which can invoke malloc, which is
4570 not portable. This race condition bug makes Emacs hang on GNU/Linux.
4571 Fix it by altering the signal handler so that it does not invoke
4572 strsignal.
4573 * emacs.c (shut_down_emacs): Use safe_strsignal, not strsignal.
4574 * process.c (status_message): Use const pointer, in case strsignal
4575 is #defined to safe_strsignal.
4576 * sysdep.c (sys_siglist, init_signals): Always define and
4577 initialize a substitute sys_siglist if the system does not define
4578 one, even if HAVE_STRSIGNAL.
4579 (safe_strsignal): Rename from strsignal. Always define,
4580 using sys_siglist. Return a const pointer.
4581 * syssignal.h (safe_strsignal): New decl.
4582 (strsignal) [!HAVE_STRSIGNAL]: Define in terms of safe_strsignal.
4583
4584 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4585
4586 * w32proc.c (timer_loop): Fix code that waits for timer
4587 expiration, to avoid high CPU usage.
4588
4589 2012-10-01 Stefan Monnier <monnier@iro.umontreal.ca>
4590
4591 * fns.c (check_hash_table, get_key_arg, maybe_resize_hash_table)
4592 (sweep_weak_table): Remove redundant prototypes.
4593
4594 2012-10-01 Fabrice Popineau <fabrice.popineau@gmail.com>
4595
4596 * emacs.c: Move the inclusion of TERM_HEADER after including
4597 windows.h on WINDOWSNT. This avoids compilation problems with
4598 MSVC.
4599
4600 2012-10-01 Eli Zaretskii <eliz@gnu.org>
4601
4602 * unexw32.c (OFFSET_TO_RVA, RVA_TO_OFFSET)
4603 (RVA_TO_SECTION_OFFSET): Encode all macro arguments in parentheses.
4604 (RVA_TO_PTR): Cast the result of RVA_TO_OFFSET to 'unsigned char *',
4605 as the previous version used 'void *'.
4606
4607 * ralloc.c (ROUNDUP): Fix last change.
4608 (MEM_ROUNDUP): Don't cast MEM_ALIGN, it is already of type
4609 'size_t'.
4610
4611 * w32proc.c <disable_itimers>: New static flag.
4612 (init_timers): Initialize it to zero, after creating the critical
4613 sections used by the timer threads.
4614 (term_timers): Set to 1 before deleting the critical sections.
4615 (getitimer, setitimer): If disable_itimers is non-zero, return an
4616 error indication without doing anything. Reported by Fabrice
4617 Popineau <fabrice.popineau@supelec.fr> as part of bug#12544.
4618 (alarm) [HAVE_SETITIMER]: Be more conformant to the expected
4619 return results.
4620 [!HAVE_SETITIMER]: Behave as the previous version that didn't
4621 support timers.
4622
4623 * emacs.c (shut_down_emacs) [WINDOWSNT]: Move the call to
4624 term_ntproc after all the other bookkeeping, to get timers working
4625 as long as possible.
4626
4627 2012-10-01 Paul Eggert <eggert@cs.ucla.edu>
4628
4629 * xdisp.c (syms_of_xdisp): Default message-log-max to 1000, not 100.
4630 Suggested by Juri Linkov in
4631 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00821.html>.
4632
4633 Prefer plain 'static' to 'static inline' (Bug#12541).
4634 With static functions, modern compilers inline pretty well by
4635 themselves; advice from programmers often hurts as much as it helps.
4636 On my host (x86-64, Fedora 17, GCC 4.7.2, default 'configure'),
4637 this change shrinks the text size of the Emacs executable by 1.1%
4638 without affecting CPU significantly in my benchmark.
4639 * alloc.c (mem_find, live_string_p, live_cons_p, live_symbol_p)
4640 (live_float_p, live_misc_p, live_vector_p, live_buffer_p)
4641 (mark_maybe_object, mark_maybe_pointer, bounded_number):
4642 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
4643 (bset_auto_fill_function, bset_auto_save_file_format)
4644 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
4645 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
4646 (bset_cache_long_line_scans, bset_case_fold_search)
4647 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
4648 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
4649 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
4650 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
4651 (bset_header_line_format, bset_indicate_buffer_boundaries)
4652 (bset_indicate_empty_lines, bset_invisibility_spec)
4653 (bset_left_fringe_width, bset_major_mode, bset_mark)
4654 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
4655 (bset_name, bset_overwrite_mode, bset_pt_marker)
4656 (bset_right_fringe_width, bset_save_length)
4657 (bset_scroll_bar_width, bset_scroll_down_aggressively)
4658 (bset_scroll_up_aggressively, bset_selective_display)
4659 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
4660 (bset_word_wrap, bset_zv_marker, set_buffer_overlays_before)
4661 (set_buffer_overlays_after):
4662 * category.c (bset_category_table):
4663 * charset.c (read_hex):
4664 * coding.c (produce_composition, produce_charset)
4665 (handle_composition_annotation, handle_charset_annotation)
4666 (char_encodable_p):
4667 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers)
4668 (assign_row, set_frame_matrix_frame, make_current)
4669 (add_row_entry):
4670 * eval.c (set_specpdl_symbol, set_specpdl_old_value):
4671 * fns.c (maybe_resize_hash_table):
4672 * frame.c (fset_buffer_predicate, fset_minibuffer_window):
4673 * gmalloc.c (register_heapinfo):
4674 * image.c (lookup_image_type):
4675 * intervals.c (set_interval_object, set_interval_left)
4676 (set_interval_right, copy_interval_parent, rotate_right)
4677 (rotate_left, balance_possible_root_interval):
4678 * keyboard.c (kset_echo_string, kset_kbd_queue)
4679 (kset_keyboard_translate_table, kset_last_prefix_arg)
4680 (kset_last_repeatable_command, kset_local_function_key_map)
4681 (kset_overriding_terminal_local_map, kset_real_last_command)
4682 (kset_system_key_syms, clear_event, set_prop):
4683 * lread.c (digit_to_number):
4684 * marker.c (attach_marker, live_buffer, set_marker_internal):
4685 * nsterm.m (ns_compute_glyph_string_overhangs):
4686 * process.c (pset_buffer, pset_command)
4687 (pset_decode_coding_system, pset_decoding_buf)
4688 (pset_encode_coding_system, pset_encoding_buf, pset_filter)
4689 (pset_log, pset_mark, pset_name, pset_plist, pset_sentinel)
4690 (pset_status, pset_tty_name, pset_type, pset_write_queue):
4691 * syntax.c (bset_syntax_table, dec_bytepos):
4692 * terminal.c (tset_param_alist):
4693 * textprop.c (interval_has_some_properties)
4694 (interval_has_some_properties_list):
4695 * window.c (wset_combination_limit, wset_dedicated)
4696 (wset_display_table, wset_hchild, wset_left_fringe_width)
4697 (wset_left_margin_cols, wset_new_normal, wset_new_total)
4698 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
4699 (wset_right_fringe_width, wset_right_margin_cols)
4700 (wset_scroll_bar_width, wset_start, wset_temslot, wset_vchild)
4701 (wset_vertical_scroll_bar_type, wset_window_parameters):
4702 * xdisp.c (wset_base_line_number, wset_base_line_pos)
4703 (wset_column_number_displayed, wset_region_showing)
4704 (window_box_edges, run_window_scroll_functions)
4705 (append_glyph_string_lists, prepend_glyph_string_lists)
4706 (append_glyph_string, set_glyph_string_background_width)
4707 (append_glyph, append_composite_glyph)
4708 (take_vertical_position_into_account):
4709 * xfaces.c (x_create_gc, x_free_gc, merge_face_vectors)
4710 (face_attr_equal_p, lface_equal_p, hash_string_case_insensitive)
4711 (lface_hash, lface_same_font_attributes_p, lookup_face):
4712 * xml.c (libxml2_loaded_p):
4713 * xterm.c (x_set_mode_line_face_gc, x_set_glyph_string_gc)
4714 (x_set_glyph_string_clipping, x_clear_glyph_string_rect):
4715 Now 'static', not 'static inline'.
4716
4717 * bidi.c: Tune.
4718 (bidi_copy_it): Do the whole copy with a single memcpy.
4719 (bidi_char_at_pos): Merge the two STRING_CHAR calls into one.
4720
4721 Revert the FOLLOW-SYMLINKS change for file-attributes.
4722 Doing it right would require several changes to Tramp, and there's
4723 not enough time to get that tested before the freeze today.
4724 * dired.c (directory_files_internal, Ffile_attributes):
4725 Undo last change.
4726
4727 * frame.c (x_report_frame_params): Port better to wider ints.
4728 Do not assume that EMACS_UINT is the same width as uprintmax_t,
4729 or that pointers can be printed in 15 decimal digits.
4730 Avoid GCC warnings if EMACS_UINT is wider than a pointer.
4731
4732 2012-09-30 Fabrice Popineau <fabrice.popineau@supelec.fr>
4733
4734 Support x64 build on MS-Windows.
4735 * w32term.h (SCROLL_BAR_PACK, SCROLL_BAR_UNPACK): Define for x64.
4736 (SET_SCROLL_BAR_W32_WINDOW): Cast ID to intptr_t, for
4737 compatibility with x64.
4738 (x_get_focus_frame): Add prototype.
4739
4740 * w32term.c (w32_draw_underwave): Don't use GCC extensions for
4741 defining an XRectangle structure.
4742
4743 * w32proc.c (RVA_TO_PTR, w32_executable_type): Fix pointer
4744 arithmetics for compatibility with x64.
4745
4746 * w32menu.c (add_menu_item): Use UINT_PTR instead of UINT, for
4747 compatibility with x64.
4748
4749 * w32heap.h: Adjust prototypes and declarations.
4750
4751 * w32heap.c (RVA_TO_PTR, allocate_heap, sbrk, init_heap)
4752 (round_heap): Use DWORD_PTR, ptrdiff_t and size_t instead of
4753 DWORD, long, and unsigned long, for compatibility with x64.
4754 (allocate_heap) [_WIN64]: Reserve 32GB of memory.
4755 (sbrk): Argument is now of type ptrdiff_t.
4756
4757 * w32fns.c (HMONITOR): Condition declaration on _WIN32_WINNT being
4758 less than 0x0500.
4759 (w32_msg_pump): Use WPARAM type for 'result'.
4760
4761 * w32.c (init_environment, get_emacs_configuration): Support AMD64
4762 architecture.
4763 (init_ntproc): Cast arguments of _open_osfhandle to intptr_t, for
4764 compatibility with x64.
4765
4766 * vm-limit.c (lim_data): Now size_t.
4767 (check_memory_limits): Adjust prototypes of real_morecore and
4768 __morecore to receive argument of type ptrdiff_t. Use size_t for
4769 five_percent and data_size.
4770
4771 * unexw32.c: Use DWORD_PTR instead of DWORD for file-scope
4772 variables, for compatibility with x64.
4773 (rva_to_section, offset_to_section, relocate_offset)
4774 (OFFSET_TO_RVA, RVA_TO_OFFSET, RVA_TO_SECTION_OFFSET)
4775 (PTR_TO_RVA, RVA_TO_PTR, OFFSET_TO_PTR, get_section_info)
4776 (copy_executable_and_dump_data): Use DWORD_PTR instead of DWORD
4777 for compatibility with x64.
4778
4779 * sysdep.c (STDERR_FILENO): Define if not already defined.
4780
4781 * ralloc.c (real_morecore): Argument type is now ptrdiff_t.
4782 (__morecore): Argument type is now ptrdiff_t.
4783 (ROUNDUP, MEM_ROUNDUP): Use size_t instead of 'unsigned long'.
4784 (relinquish): Use ptrdiff_t type for 'excess'.
4785 (r_alloc_sbrk): Argument type is now ptrdiff_t.
4786
4787 * makefile.w32-in (HEAPSIZE): Get value from EMACS_HEAPSIZE.
4788 (bootstrap-temacs-CMD, bootstrap-temacs-SH): Use $(EMACS_PURESIZE)
4789 instead of a literal number.
4790
4791 * gmalloc.c [WINDOWSNT]: Include w32heap.h.
4792 (min): Define only if not already defined.
4793
4794 * frame.c (x_report_frame_params): Use EMACS_UINT for the return
4795 value of FRAME_X_WINDOW, to fit a 64-bit pointer on 64-bit Windows
4796 hosts.
4797
4798 * image.c (x_bitmap_pixmap): Return ptrdiff_t, not int, since
4799 'bitmaps' is a pointer.
4800
4801 * dispextern.h (x_bitmap_pixmap): Adjust prototype.
4802
4803 * alloc.c (gdb_make_enums_visible): Now conditional on __GNUC__.
4804
4805 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4806
4807 file-attributes has a new optional arg FOLLOW-SYMLINKS.
4808 * dired.c (directory_files_internal, Ffile_attributes):
4809 New arg follow_symlinks. All uses changed.
4810
4811 2012-09-30 Stefan Monnier <monnier@iro.umontreal.ca>
4812
4813 * .gdbinit (xbacktrace): Adjust to recent "struct backtrace" change.
4814
4815 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4816
4817 Support atimers and CPU profiler via profile.c on MS-Windows.
4818 * w32proc.c (sig_mask, crit_sig): New static variables.
4819 (sys_signal): Support SIGALRM and SIGPROF.
4820 (sigemptyset, sigaddset, sigfillset, sigprocmask)
4821 (pthread_sigmask, setpgrp): Move here from w32.c. sigaddset,
4822 sigfillset, and sigprocmask are no longer no-ops.
4823 (sigismember): New function.
4824 (struct itimer_data): New definition.
4825 (ticks_now, real_itimer, prof_itimer, clocks_min, crit_real)
4826 (crit_prof): New static variables.
4827 (MAX_SINGLE_SLEEP): New definition.
4828 (timer_loop, stop_timer_thread, term_timers, init_timers)
4829 (start_timer_thread, getitimer, setitimer): New functions.
4830 (alarm): No longer a no-op, calls setitimer.
4831
4832 * w32.c (term_ntproc): Call term_timers.
4833 (init_ntproc): Make sure all signals are unblocked at startup, to
4834 erase any traces of dumping. Call init_timers.
4835
4836 * w32fns.c (hourglass_timer, HOURGLASS_ID): Remove.
4837 Windows-specific code to display the hourglass mouse pointer is no
4838 longer used.
4839 (w32_wnd_proc): Remove code that handled the WM_TIMER message due
4840 to hourglass timer expiration.
4841 (start_hourglass, cancel_hourglass, DEFAULT_HOURGLASS_DELAY):
4842 Remove, no longer used.
4843 (w32_note_current_window, show_hourglass, hide_hourglass):
4844 New functions, in support of hourglass cursor display similar to other
4845 window systems.
4846 (syms_of_w32fns): Don't initialize hourglass_timer.
4847
4848 * xdisp.c (start_hourglass, cancel_hourglass): Now used on
4849 WINDOWSNT as well.
4850 (start_hourglass) [WINDOWSNT]: Call w32_note_current_window.
4851
4852 * w32.h (init_timers, term_timers): Add prototypes.
4853
4854 2012-09-30 Kenichi Handa <handa@gnu.org>
4855
4856 * coding.c (decode_coding_ccl, encode_coding_ccl): Pay attention
4857 to the buffer relocation which may be caused by ccl_driver.
4858
4859 2012-09-30 Jan Djärv <jan.h.d@swipnet.se>
4860
4861 * xfns.c (Fx_file_dialog): Update comment.
4862
4863 * w32fns.c (Fx_file_dialog): Update comment.
4864
4865 * nsfns.m (Fns_read_file_name): Add argument DIR_ONLY_P.
4866 Initialize panel name field if OSX >= 10.6.
4867
4868 * fileio.c (Fnext_read_file_uses_dialog_p): Add HAVE_NS.
4869
4870 * nsfns.m (ns_frame_parm_handlers): Add x_set_fullscreen.
4871
4872 * nsterm.m (NEW_STYLE_FS): New define.
4873 (ns_fullscreen_hook, windowWillEnterFullScreen)
4874 (windowDidEnterFullScreen, windowWillExitFullScreen)
4875 (windowDidExitFullScreen, toggleFullScreen, handleFS)
4876 (setFSValue): New functions.
4877 (EmacsFSWindow): New implementation.
4878 (canBecomeKeyWindow): New function for EmacsFSWindow.
4879 (ns_create_terminal): Set fullscreen_hook to ns_fullscreen_hook.
4880 (dealloc): Release nonfs_window if in fullscreen.
4881 (updateFrameSize:): Call windowDidMove to update top/left.
4882 (windowWillResize:toSize:): Check if frame is still maximized.
4883 (initFrameFromEmacs:): Initialize fs_state, fs_before_fs,
4884 next_maximized, maximized_width, maximized_height and nonfs_window.
4885 Call setCollectionBehavior if NEW_STYLE_FS. Initialize bwidth and
4886 tbar_height.
4887 (windowWillUseStandardFrame:defaultFrame:): Update frame parameter
4888 fullscreen. Set maximized_width/height. Act on next_maximized.
4889
4890 * nsterm.h (MAC_OS_X_VERSION_10_7, MAC_OS_X_VERSION_10_8): New.
4891 (EmacsView): Add variables for fullscreen.
4892 (handleFS, setFSValue, toggleFullScreen): New in EmacsView.
4893 (EmacsFSWindow): New interface for fullscreen.
4894
4895 2012-09-30 Juanma Barranquero <lekktu@gmail.com>
4896
4897 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4898
4899 2012-09-30 Chong Yidong <cyd@gnu.org>
4900
4901 * fns.c (Frandom): Doc fix.
4902
4903 2012-09-30 Martin Rudalics <rudalics@gmx.at>
4904
4905 * window.c (Vwindow_combination_limit): New default value.
4906 (Qwindow_size): New symbol replacing Qtemp_buffer_resize.
4907
4908 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4909
4910 * syssignal.h (PROFILER_CPU_SUPPORT): Don't define if PROFILING.
4911 Suggested by Eli Zaretskii in
4912 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00811.html>.
4913
4914 2012-09-30 Eli Zaretskii <eliz@gnu.org>
4915
4916 * profiler.c (Fprofiler_cpu_stop): Use timer_settime only if
4917 HAVE_TIMER_SETTIME is defined.
4918
4919 2012-09-30 Paul Eggert <eggert@cs.ucla.edu>
4920
4921 Profiler improvements: more-accurate timers, overflow checks.
4922 * profiler.c: Don't include stdio.h, limits.h, sys/time.h,
4923 signal.h, setjmp.h. Include systime.h instead.
4924 (saturated_add): New function.
4925 (record_backtrace, current_sample_interval): Use EMACS_INT, not size_t.
4926 (record_backtrace, handle_profiler_signal): Saturate on fixnum overflow.
4927 (profiler_timer, profiler_timer_ok) [HAVE_TIMER_SETTIME]:
4928 New static vars.
4929 (enum profiler_cpu_running): New enum.
4930 (profiler_cpu_running): Now of that enum type, not bool.
4931 All uses changed to store the new value.
4932 (handle_profiler_signal): Rename from sigprof_handler_1,
4933 for consistency with other handlers. Do not check whether
4934 cpu_log is a hash-table if garbage collecting, since it
4935 doesn't matter in that case.
4936 (deliver_profiler_signal): Rename from sigprof_handler,
4937 for consistency with other handlers.
4938 (setup_cpu_timer): New function, with much of what used to be in
4939 Fprofiler_cpu_start. Check for out-of-range argument.
4940 Prefer timer_settime if available, and prefer
4941 thread cputime clocks, then process cputime clocks, then
4942 monotonic clocks, to the old realtime clock. Use make_timeval
4943 to round more-correctly when falling back to setitimer.
4944 (Fprofiler_cpu_start): Use it.
4945 (Fprofiler_cpu_stop): Prefer timer_settime if available.
4946 Don't assume that passing NULL as the 2nd argument of setitimer
4947 is the same as passing a pointer to all-zero storage.
4948 Ignore SIGPROF afterwards.
4949 (malloc_probe): Saturate at MOST_POSITIVE_FIXNUM.
4950 * sysdep.c (emacs_sigaction_init): Also mask out SIGPROF in
4951 non-fatal signal handlers. Ignore SIGPROF on startup.
4952 * syssignal.h (PROFILER_CPU_SUPPORT): Define this macro here, not
4953 in profiler.c, since sysdep.c now uses it.
4954
4955 * sysdep.c (handle_fatal_signal): Bump backtrace size to 40.
4956 Suggested by Eli Zaretskii in
4957 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00796.html>.
4958
4959 2012-09-29 Juanma Barranquero <lekktu@gmail.com>
4960
4961 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
4962
4963 2012-09-29 Stefan Monnier <monnier@iro.umontreal.ca>
4964
4965 * lisp.h (struct backtrace): Remove indirection for `function' field.
4966 * xdisp.c (redisplay_internal):
4967 * profiler.c (record_backtrace, sigprof_handler_1):
4968 * alloc.c (Fgarbage_collect):
4969 * eval.c (interactive_p, Fsignal, eval_sub, Ffuncall, Fbacktrace)
4970 (Fbacktrace_frame): Adjust accordingly.
4971
4972 2012-09-28 Glenn Morris <rgm@gnu.org>
4973
4974 * eval.c (Frun_hook_with_args, Frun_hook_with_args_until_success)
4975 (Frun_hook_with_args_until_failure): Doc fixes.
4976
4977 2012-09-28 Eli Zaretskii <eliz@gnu.org>
4978
4979 * xdisp.c (syms_of_xdisp) <Qredisplay_internal>: Rename from
4980 Qautomatic_redisplay and change the symbol name. All users changed.
4981
4982 2012-09-28 Tomohiro Matsuyama <tomo@cx4a.org>
4983
4984 * profiler.c (sigprof_handler): Fix race condition.
4985
4986 2012-09-28 Glenn Morris <rgm@gnu.org>
4987
4988 * lread.c (lisp_file_lexically_bound_p): Handle #! lines. (Bug#12528)
4989
4990 2012-09-27 Paul Eggert <eggert@cs.ucla.edu>
4991
4992 Check more robustly for timer_settime.
4993 * Makefile.in (LIB_TIMER_TIME): New macro.
4994 (LIBES): Add it.
4995 * atimer.c (alarm_timer, alarm_timer_ok, set_alarm, init_atimer):
4996 Use HAVE_TIMER_SETTIME, not SIGEV_SIGNAL, to decide whether to
4997 call timer_settime.
4998
4999 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5000
5001 * profiler.c (Fprofiler_cpu_start): Remove unnecessary flag SA_SIGINFO.
5002
5003 2012-09-26 Juanma Barranquero <lekktu@gmail.com>
5004
5005 * makefile.w32-in ($(BLD)/profiler.$(O)): Update dependencies.
5006
5007 2012-09-26 Paul Eggert <eggert@cs.ucla.edu>
5008
5009 * character.h (MAYBE_UNIFY_CHAR): Remove.
5010 * charset.c, charset.h (maybe_unify_char): Now static.
5011 * charset.c (decode_char): Use maybe_unify_char, not MAYBE_UNIFY_CHAR.
5012 Since this stuff is now private to charset.c, there's no need for
5013 a public macro and no need to inline by hand.
5014
5015 2012-09-26 Tomohiro Matsuyama <tomo@cx4a.org>
5016 Stefan Monnier <monnier@iro.umontreal.ca>
5017 Juanma Barranquero <lekktu@gmail.com>
5018
5019 * profiler.c: New file.
5020 * Makefile.in (base_obj): Add profiler.o.
5021 * makefile.w32-in (OBJ2, GLOBAL_SOURCES): Add profiler.c.
5022 ($(BLD)/profiler.$(O)): New target.
5023 * emacs.c (main): Call syms_of_profiler.
5024 * alloc.c (Qautomatic_gc): New constant.
5025 (MALLOC_PROBE): New macro.
5026 (xmalloc, xzalloc, xrealloc, lisp_malloc, lisp_align_malloc): Use it.
5027 (total_bytes_of_live_objects): New function.
5028 (Fgarbage_collect): Use it. Record itself in backtrace_list.
5029 Call malloc_probe for the memory profiler.
5030 (syms_of_alloc): Define Qautomatic_gc.
5031 * eval.c (eval_sub, Ffuncall): Reorder assignments to avoid
5032 race condition.
5033 (struct backtrace): Move definition...
5034 * lisp.h (struct backtrace): ..here.
5035 (Qautomatic_gc, profiler_memory_running): Declare vars.
5036 (malloc_probe, syms_of_profiler): Declare functions.
5037 * xdisp.c (Qautomatic_redisplay): New constant.
5038 (redisplay_internal): Record itself in backtrace_list.
5039 (syms_of_xdisp): Define Qautomatic_redisplay.
5040
5041 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5042 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5043
5044 * makefile.w32-in ($(BLD)/callproc.$(O)): Update dependencies.
5045
5046 2012-09-25 Paul Eggert <eggert@cs.ucla.edu>
5047
5048 Prefer POSIX timers if available.
5049 They avoid a race if the timer is too close to the current time.
5050 * atimer.c (alarm_timer, alarm_timer_ok) [SIGEV_SIGNAL]: New static vars.
5051 (set_alarm) [SIGEV_SIGNAL]: Use POSIX timers if available.
5052 (init_atimer) [SIGEV_SIGNAL]: Initialize them.
5053
5054 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5055
5056 * coding.c (CHAR_STRING_ADVANCE_NO_UNIFY): Make it an alias of
5057 CHAR_STRING_ADVANCE.
5058 (STRING_CHAR_ADVANCE_NO_UNIFY): Make it an alias of
5059 STRING_CHAR_ADVANCE.
5060
5061 2012-09-25 Juanma Barranquero <lekktu@gmail.com>
5062
5063 Move Vlibrary_cache to emacs.c and reset before dumping.
5064
5065 * lisp.h (reset_image_types): Declare.
5066 [WINDOWSNT] (Vlibrary_cache): Declare.
5067
5068 * image.c (reset_image_types): New function.
5069
5070 * emacs.c [WINDOWSNT] (Vlibrary_cache): Move from w32.c.
5071 (syms_of_emacs) [WINDOWSNT] <Vlibrary_cache>: Initialize and staticpro.
5072 (Fdump_emacs): Reset Vlibrary_cache and image_types.
5073
5074 * w32.c (Vlibrary_cache): Do not define; moved to emacs.c
5075 (globals_of_w32) <Vlibrary_cache>: Do not initialize.
5076
5077 * w32.h (Vlibrary_cache): Do not declare.
5078
5079 2012-09-25 Eli Zaretskii <eliz@gnu.org>
5080
5081 * w32proc.c (sys_signal): Handle all signals defined by the
5082 MS-Windows runtime, not just SIGCHLD. Actually install the signal
5083 handlers for signals supported by Windows. Don't override
5084 term_ntproc as the handler for SIGABRT.
5085 (sigaction): Rewrite to call sys_signal instead of duplicating its
5086 code.
5087 (sys_kill): Improve commentary.
5088
5089 * w32.c (term_ntproc): Accept (and ignore) one argument, for
5090 consistency with a signature of a signal handler. All callers
5091 changed.
5092 (init_ntproc): Accept an argument DUMPING. If dumping, don't
5093 install term_ntproc as a signal handler for SIGABRT, as that
5094 should be done by the dumped Emacs.
5095
5096 * w32.h (init_ntproc, term_ntproc): Adjust prototypes.
5097
5098 * w32select.c (term_w32select): Protect against repeated
5099 invocation by setting clipboard_owner to NULL after calling
5100 DestroyWindow.
5101
5102 * emacs.c (shut_down_emacs, main): Adapt the calls to init_ntproc
5103 and term_ntproc to their modified signatures.
5104
5105 * character.c (char_string, string_char): Remove calls to
5106 MAYBE_UNIFY_CHAR. See the discussion starting at
5107 http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00433.html
5108 for the details.
5109
5110 2012-09-25 Chong Yidong <cyd@gnu.org>
5111
5112 * xdisp.c (mode_line_inverse_video): Delete obsolete variable.
5113
5114 2012-09-24 Stefan Monnier <monnier@iro.umontreal.ca>
5115
5116 * bytecode.c (exec_byte_code): Signal an error instead of aborting,
5117 when encountering an unknown bytecode.
5118
5119 2012-09-24 Paul Eggert <eggert@cs.ucla.edu>
5120
5121 image.c, indent.c: Use bool for booleans.
5122 * dispextern.h (struct image_type): Members valid_p, load, init
5123 now return bool, not int. All uses changed.
5124 * image.c: Omit unnecessary static decls.
5125 (x_create_bitmap_mask, x_build_heuristic_mask):
5126 Return void, not int, since callers don't care about the return value.
5127 (x_create_bitmap_mask, define_image_type, valid_image_p)
5128 (struct image_keyword, parse_image_spec, image_spec_value)
5129 (check_image_size, image_background)
5130 (image_background_transparent, x_clear_image_1)
5131 (postprocess_image, lookup_image, x_check_image_size)
5132 (x_create_x_image_and_pixmap, xbm_image_p)
5133 (Create_Pixmap_From_Bitmap_Data, xbm_read_bitmap_data)
5134 (xbm_load_image, xbm_file_p, xbm_load, xpm_lookup_color)
5135 (init_xpm_functions, xpm_valid_color_symbols_p, xpm_image_p)
5136 (xpm_load, xpm_load_image, lookup_rgb_color, lookup_pixel_color)
5137 (x_to_xcolors, x_build_heuristic_mask, pbm_image_p, pbm_load)
5138 (png_image_p, init_png_functions, png_load_body, png_load)
5139 (jpeg_image_p, init_jpeg_functions, jpeg_load_body, jpeg_load)
5140 (tiff_image_p, init_tiff_functions, tiff_load, gif_image_p)
5141 (init_gif_functions, gif_load, imagemagick_image_p)
5142 (imagemagick_load_image, imagemagick_load, svg_image_p)
5143 (init_svg_functions, svg_load, svg_load_image, gs_image_p)
5144 (gs_load):
5145 * nsimage.m (ns_load_image):
5146 * nsterm.m (ns_defined_color):
5147 * xfaces.c (tty_lookup_color, tty_defined_color, defined_color):
5148 * xfns.c (x_defined_color):
5149 * xterm.c (x_alloc_lighter_color_for_widget)
5150 (x_alloc_nearest_color_1, x_alloc_nearest_color)
5151 (x_alloc_lighter_color):
5152 * indent.c (disptab_matches_widthtab, current_column)
5153 (scan_for_column, string_display_width, indented_beyond_p)
5154 (compute_motion, vmotion, Fvertical_motion):
5155 Use bool for booleans.
5156
5157 2012-09-24 Chong Yidong <cyd@gnu.org>
5158
5159 * chartab.c (Fset_char_table_default): Obsolete function removed.
5160
5161 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5162
5163 Move pid_t related decls out of lisp.h.
5164 * lisp.h, syswait.h (record_child_status_change, wait_for_termination)
5165 (interruptible_wait_for_termination):
5166 Move these decls from lisp.h to syswait.h, since they use pid_t.
5167 Needed on FreeBSD; see Herbert J. Skuhra in
5168 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00571.html>.
5169 * callproc.c: Include syswait.h.
5170
5171 gnutls.c, gtkutil.c: Use bool for boolean.
5172 * gnutls.c (gnutls_global_initialized, init_gnutls_functions)
5173 (emacs_gnutls_handle_error):
5174 * gtkutil.c (xg_check_special_colors, xg_prepare_tooltip)
5175 (xg_hide_tooltip, xg_create_frame_widgets)
5176 (create_dialog, xg_uses_old_file_dialog)
5177 (xg_get_file_with_chooser, xg_get_file_with_selection)
5178 (xg_get_file_name, xg_have_tear_offs, create_menus, xg_create_widget)
5179 (xg_item_label_same_p, xg_update_menubar)
5180 (xg_modify_menubar_widgets, xg_event_is_for_menubar)
5181 (xg_ignore_gtk_scrollbar, xg_set_toolkit_scroll_bar_thumb)
5182 (xg_event_is_for_scrollbar, xg_pack_tool_bar, xg_make_tool_item)
5183 (is_box_type, xg_tool_item_stale_p, xg_update_tool_bar_sizes)
5184 (update_frame_tool_bar, free_frame_tool_bar):
5185 * gtkutil.c, w32term.c, xterm.c (x_wm_set_size_hint):
5186 * nsmenu.m (ns_update_menubar):
5187 * nsmenu.m, w32menu.c, xmenu.c (set_frame_menubar):
5188 * xfns.c (Fx_show_tip) [USE_GTK]:
5189 Use bool for boolean.
5190 * gtkutil.c (xg_update_frame_menubar):
5191 * xmenu.c (update_frame_menubar):
5192 Return void, not int, since caller ignores return value.
5193 * gtkutil.c (xg_change_toolbar_position):
5194 Return void, not 1.
5195
5196 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5197
5198 * makefile.w32-in (BLOCKINPUT_H): Remove.
5199 (SYSSIGNAL_H): New macro.
5200 ($(BLD)/alloc.$(O), $(BLD)/atimer.$(O), $(BLD)/buffer.$(O))
5201 ($(BLD)/callproc.$(O), $(BLD)/data.$(O), $(BLD)/dired.$(O))
5202 ($(BLD)/dispnew.$(O), $(BLD)/editfns.$(O), $(BLD)/emacs.$(O))
5203 ($(BLD)/eval.$(O), $(BLD)/fileio.$(O), $(BLD)/floatfns.$(O))
5204 ($(BLD)/fns.$(O), $(BLD)/fontset.$(O), $(BLD)/frame.$(O))
5205 ($(BLD)/fringe.$(O), $(BLD)/image.$(O), $(BLD)/insdel.$(O))
5206 ($(BLD)/keyboard.$(O), $(BLD)/keymap.$(O), $(BLD)/lread.$(O))
5207 ($(BLD)/menu.$(O), $(BLD)/w32inevt.$(O), $(BLD)/w32proc.$(O))
5208 ($(BLD)/print.$(O), $(BLD)/process.$(O), $(BLD)/ralloc.$(O))
5209 ($(BLD)/search.$(O), $(BLD)/sound.$(O), $(BLD)/sysdep.$(O))
5210 ($(BLD)/term.$(O), $(BLD)/window.$(O), $(BLD)/xdisp.$(O))
5211 ($(BLD)/xfaces.$(O), $(BLD)/w32fns.$(O), $(BLD)/w32menu.$(O))
5212 ($(BLD)/w32term.$(O), $(BLD)/w32select.$(O), $(BLD)/w32reg.$(O))
5213 ($(BLD)/w32xfns.$(O)): Update dependencies.
5214
5215 2012-09-23 Eli Zaretskii <eliz@gnu.org>
5216
5217 * .gdbinit: Set breakpoint on terminate_due_to_signal, not on
5218 fatal_error_backtrace.
5219
5220 * w32proc.c (sys_kill): Undo last change: don't do anything when
5221 invoked to deliver SIGABRT to our own process. This is now
5222 handled by emacs_raise.
5223
5224 2012-09-23 Juanma Barranquero <lekktu@gmail.com>
5225
5226 * w32term.c (w32_read_socket): Remove leftover reference to
5227 interrupt_input_pending.
5228
5229 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5230
5231 Do not use SA_NODEFER.
5232 Problem reported by Dani Moncayo in
5233 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00557.html>.
5234 * alloc.c (die):
5235 * sysdep.c (emacs_abort): Do not reset signal handler.
5236 * emacs.c (terminate_due_to_signal): Reset signal handler here.
5237 * sysdep.c (init_signals): Do not use SA_NODEFER. It wasn't
5238 wanted even on POSIXish hosts, and it doesn't work on Windows.
5239
5240 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5241
5242 * xterm.c (x_term_init): Call fixup_locale before and after calling
5243 gtk_init (Bug#12392).
5244
5245 2012-09-23 Chong Yidong <cyd@gnu.org>
5246
5247 * w32.c (w32_delayed_load): Remove LIBRARIES argument; always use
5248 Vdynamic_library_alist.
5249
5250 * gnutls.c (init_gnutls_functions): Caller changed; remove arg.
5251 (Fgnutls_available_p): Caller changed.
5252
5253 * xml.c (init_libxml2_functions, Flibxml_parse_html_region)
5254 (Flibxml_parse_xml_region): Likewise.
5255
5256 * dispextern.h (struct image_type): Remove arg from init function.
5257
5258 * image.c (Finit_image_library, lookup_image_type)
5259 (define_image_type): Remove now-unneeded second arg.
5260 (init_xpm_functions, init_png_functions, init_jpeg_functions)
5261 (init_tiff_functions, init_gif_functions, init_svg_functions):
5262 Arglist and w32_delayed_load calling convention changed.
5263 (gs_type): Remove init_gs_functions; there is no such function.
5264 (valid_image_p, make_image): Fix caller to lookup_image_type.
5265
5266 2012-09-23 Paul Eggert <eggert@cs.ucla.edu>
5267
5268 Simplify and avoid signal-handling races (Bug#12471).
5269 * alloc.c (die):
5270 * sysdep.c (emacs_abort) [HAVE_NTGUI]:
5271 Avoid recursive loop if there's a fatal error in the function itself.
5272 * atimer.c (pending_atimers):
5273 * blockinput.h: Don't include "atimer.h"; no longer needed.
5274 (interrupt_input_pending): Remove. All uses removed.
5275 pending_signals now counts both atimers and ordinary interrupts.
5276 This is less racy than having three separate pending-signal flags.
5277 (block_input, unblock_input, totally_unblock_input, unblock_input_to)
5278 (input_blocked_p):
5279 Rename from their upper-case counterparts BLOCK_INPUT,
5280 UNBLOCK_INPUT, TOTALLY_UNBLOCK_INPUT, UNBLOCK_INPUT_TO,
5281 INPUT_BLOCKED_P, and turn into functions. All uses changed.
5282 This makes it easier to access volatile variables more accurately.
5283 (BLOCK_INPUT_RESIGNAL): Remove. All uses replaced by unblock_input ().
5284 (input_blocked_p): Prefer this to 'interrupt_input_blocked', as
5285 that's more reliable if the code is buggy and sets
5286 interrupt_input_blocked to a negative value. All uses changed.
5287 * atimer.c (deliver_alarm_signal):
5288 Remove. No need to deliver this to the parent; any thread can
5289 handle this signal now. All uses replaced by underlying handler.
5290 * atimer.c (turn_on_atimers):
5291 * dispnew.c (handle_window_change_signal):
5292 * emacs.c (handle_danger_signal):
5293 * keyboard.c (kbd_buffer_get_event):
5294 Don't reestablish signal handler; not needed with sigaction.
5295 * blockinput.h (UNBLOCK_INPUT_TO, TOTALLY_UNBLOCK_INPUT)
5296 (UNBLOCK_INPUT_TO):
5297 Rework to avoid unnecessary accesses to volatile variables.
5298 (UNBLOCK_INPUT_TO): Now a function.
5299 (totally_unblock_input, unblock_input): New decls.
5300 * data.c (handle_arith_signal, deliver_arith_signal): Move to sysdep.c
5301 (init_data): Remove. Necessary stuff now done in init_signal.
5302 * emacs.c, xdisp.c: Include "atimer.h", since we invoke atimer functions.
5303 * emacs.c (handle_fatal_signal, deliver_fatal_signal): Move to sysdep.c.
5304 (fatal_error_code): Remove; no longer needed.
5305 (terminate_due_to_signal): Rename from fatal_error_backtrace, since
5306 it doesn't always backtrace. All uses changed. No need to reset
5307 signal to default, since sigaction and/or die does that for us now.
5308 Use emacs_raise (FOO), not kill (getpid (), FOO).
5309 (main): Check more-accurately whether we're dumping.
5310 Move fatal-error setup to sysdep.c
5311 * floatfns.c: Do not include "syssignal.h"; no longer needed.
5312 * gtkutil.c (xg_get_file_name, xg_get_font):
5313 Remove no-longer-needed signal-mask manipulation.
5314 * keyboard.c, process.c (POLL_FOR_INPUT):
5315 Don't depend on USE_ASYNC_EVENTS, a symbol that is never defined.
5316 * keyboard.c (read_avail_input): Remove.
5317 All uses replaced by gobble_input.
5318 (Ftop_level): Use TOTALLY_UNBLOCK_INPUT rather than open code.
5319 (kbd_buffer_store_event_hold, gobble_input):
5320 (record_asynch_buffer_change) [USABLE_SIGIO]:
5321 (store_user_signal_events):
5322 No need to mess with signal mask.
5323 (gobble_input): If blocking input and there are terminals, simply
5324 set pending_signals to 1 and return. All hooks changed to not
5325 worry about whether input is blocked.
5326 (process_pending_signals): Clear pending_signals before processing
5327 them, in case a signal comes in while we're processing.
5328 By convention callers now test pending_signals before calling us.
5329 (UNBLOCK_INPUT_TO, unblock_input, totally_unblock_input):
5330 New functions, to support changes to blockinput.h.
5331 (handle_input_available_signal): Now extern.
5332 (reinvoke_input_signal): Remove. All uses replaced by
5333 handle_async_input.
5334 (quit_count): Now volatile, since a signal handler uses it.
5335 (handle_interrupt): Now takes bool IN_SIGNAL_HANDLER as arg.
5336 All callers changed. Block SIGINT only if not already blocked.
5337 Clear sigmask reliably, even if Fsignal returns, which it can.
5338 Omit unnecessary accesses to volatile var.
5339 (quit_throw_to_read_char): No need to restore sigmask.
5340 * keyboard.c (gobble_input, handle_user_signal):
5341 * process.c (wait_reading_process_output):
5342 Call signal-handling code rather than killing ourselves.
5343 * lisp.h: Include <float.h>, for...
5344 (IEEE_FLOATING_POINT): New macro, moved here to avoid duplication.
5345 (pending_signals): Now volatile.
5346 (syms_of_data): Now const if IEEE floating point.
5347 (handle_input_available_signal) [USABLE_SIGIO]:
5348 (terminate_due_to_signal, record_child_status_change): New decls.
5349 * process.c (create_process): Avoid disaster if memory is exhausted
5350 while we're processing a vfork, by tightening the critical section
5351 around the vfork.
5352 (send_process_frame, process_sent_to, handle_pipe_signal)
5353 (deliver_pipe_signal): Remove. No longer needed, as Emacs now
5354 ignores SIGPIPE.
5355 (send_process): No need for setjmp/longjmp any more, since the
5356 SIGPIPE stuff is now gone. Instead, report an error if errno
5357 is EPIPE.
5358 (record_child_status_change): Now extern. PID and W are now args.
5359 Return void, not bool. All callers changed.
5360 * sysdep.c (wait_debugging) [(BSD_SYSTEM || HPUX) && !defined (__GNU__)]:
5361 Remove. All uses removed. This bug should be fixed now in a
5362 different way.
5363 (wait_for_termination_1): Use waitpid rather than sigsuspend,
5364 and record the child status change directly. This avoids the
5365 need to futz with the signal mask.
5366 (process_fatal_action): Move here from emacs.c.
5367 (emacs_sigaction_flags): New function, containing
5368 much of what used to be in emacs_sigaction_init.
5369 (emacs_sigaction_init): Use it. Block nonfatal system signals that are
5370 caught by emacs, to make races less likely.
5371 (deliver_process_signal): Rename from handle_on_main_thread.
5372 All uses changed.
5373 (BACKTRACE_LIMIT_MAX): Now at top level.
5374 (thread_backtrace_buffer, threadback_backtrace_pointers):
5375 New static vars.
5376 (deliver_thread_signal, deliver_fatal_thread_signal):
5377 New functions, for more-accurate delivery of thread-specific signals.
5378 (handle_fatal_signal, deliver_fatal_signal): Move here from emacs.c.
5379 (deliver_arith_signal): Handle in this thread, not
5380 in the main thread, since it's triggered by this thread.
5381 (maybe_fatal_sig): New function.
5382 (init_signals): New arg DUMPING so that we can be more accurate
5383 about whether we're dumping. Caller changed.
5384 Treat thread-specific signals differently from process-general signals.
5385 Block all signals while handling fatal error; that's safer.
5386 xsignal from SIGFPE only on non-IEEE hosts, treating it as fatal
5387 on IEEE hosts.
5388 When batch, ignore SIGHUP, SIGINT, SIGTERM if they were already ignored.
5389 Ignore SIGPIPE unless batch.
5390 (emacs_backtrace): Output backtrace for the appropriate thread,
5391 which is not necessarily the main thread.
5392 * syssignal.h: Include <stdbool.h>.
5393 (emacs_raise): New macro.
5394 * xterm.c (x_connection_signal): Remove; no longer needed
5395 now that we use sigaction.
5396 (x_connection_closed): No need to mess with sigmask now.
5397 (x_initialize): No need to reset SIGPIPE handler here, since
5398 init_signals does this for us now.
5399
5400 2012-09-23 Jan Djärv <jan.h.d@swipnet.se>
5401
5402 * nsterm.m (ns_dumpglyphs_image): dr is a new rect to draw image into,
5403 background rect may be larger (Bug#12245).
5404
5405 2012-09-23 Chong Yidong <cyd@gnu.org>
5406
5407 * keyboard.c (timer_check): Avoid quitting during Fcopy_sequence.
5408
5409 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5410
5411 * .gdbinit: Just stop at fatal_error_backtrace.
5412 See Stefan Monnier's request in
5413 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00549.html>.
5414 Remove no-longer-used query of system type.
5415
5416 2012-09-22 Chong Yidong <cyd@gnu.org>
5417
5418 * search.c (Freplace_match): Doc fix (Bug#12325).
5419
5420 * minibuf.c (Finternal_complete_buffer): Doc fix (Bug#12391).
5421
5422 * editfns.c (Fline_beginning_position): Doc fix (Bug#12416).
5423 (Fline_end_position): Doc fix.
5424
5425 * cmds.c (Fforward_char, Fbackward_char): Doc fix (Bug#12414).
5426
5427 2012-09-22 Chong Yidong <cyd@gnu.org>
5428
5429 * dispextern.h (struct image_type): Add new slot, storing a type
5430 initialization function.
5431
5432 * image.c (define_image_type): Call the image initializer function
5433 if it is defined. Arguments and return value changed.
5434 (valid_image_p, make_image): Callers changed.
5435 (xbm_type, xpm_type, pbm_type, png_type, jpeg_type, tiff_type)
5436 (gif_type, imagemagick_type, svg_type, gs_type):
5437 Add initialization functions.
5438 (Finit_image_library): Call lookup_image_type.
5439 (CHECK_LIB_AVAILABLE): Macro deleted.
5440 (lookup_image_type): Call define_image_type here, rather than via
5441 Finit_image_library, and without using CHECK_LIB_AVAILABLE.
5442 (syms_of_image): Move define_image_type calls for xbm_type and
5443 pbm_type to lookup_image_type.
5444
5445 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5446
5447 * keyboard.c (timer_check_2): Move calculation of 'timers' and
5448 'idle_timers' from here ...
5449 (timer_check): ... to here. Use Fcopy_sequence to copy the timer
5450 lists, to avoid infloops when the timer does something stupid,
5451 like reinvoke itself with the same or smaller time-out.
5452 (Bug#12447)
5453
5454 2012-09-22 Martin Rudalics <rudalics@gmx.at>
5455
5456 * window.c (Fsplit_window_internal): Handle only Qt value of
5457 Vwindow_combination_limit separately.
5458 (Qtemp_buffer_resize): New symbol.
5459 (Vwindow_combination_limit): New default value.
5460 Rewrite doc-string.
5461
5462 2012-09-22 Eli Zaretskii <eliz@gnu.org>
5463
5464 * xdisp.c (next_overlay_string): Initialize it->end_charpos for
5465 the new overlay string. (Bug#10159)
5466
5467 2012-09-22 Paul Eggert <eggert@cs.ucla.edu>
5468
5469 * emacs.c (shut_down_emacs): Don't assume stderr is buffered,
5470 or that fprintf is async-signal-safe. POSIX doesn't require
5471 either assumption.
5472
5473 2012-09-22 Chong Yidong <cyd@gnu.org>
5474
5475 * buffer.c (Fset_buffer_modified_p): Handle indirect buffers
5476 (Bug#8207).
5477
5478 2012-09-22 Kenichi Handa <handa@gnu.org>
5479
5480 * composite.c (composition_reseat_it): Handle the case that a
5481 grapheme cluster is not covered by a single font (Bug#12352).
5482
5483 2012-09-21 Chong Yidong <cyd@gnu.org>
5484
5485 * image.c (define_image_type): Avoid adding duplicate types to
5486 image_types (Bug#12463). Suggested by Jörg Walter.
5487
5488 2012-09-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5489
5490 * unexmacosx.c: Define LC_DATA_IN_CODE if not defined.
5491 (print_load_command_name): Add case LC_DATA_IN_CODE.
5492 (dump_it) [LC_DATA_IN_CODE]: Call copy_linkedit_data.
5493
5494 2012-09-21 Glenn Morris <rgm@gnu.org>
5495
5496 * eval.c (Frun_hook_with_args_until_success)
5497 (Frun_hook_with_args_until_failure): Doc fixes. (Bug#12393)
5498
5499 2012-09-21 Andreas Schwab <schwab@linux-m68k.org>
5500
5501 * fileio.c (Ffile_selinux_context): Only call freecon when
5502 lgetfilecon succeeded.
5503 (Fset_file_selinux_context): Likewise. (Bug#12444)
5504
5505 2012-09-21 Eli Zaretskii <eliz@gnu.org>
5506
5507 * xdisp.c (try_window_reusing_current_matrix): Under bidi
5508 reordering, locate the cursor by calling set_cursor_from_row; if
5509 that fails, clear the desired glyph matrix before returning a
5510 failure indication to the caller. Fixes leaving garbled display
5511 when fast scrolling with a down-key. (Bug#12403)
5512 (compute_stop_pos_backwards): Fix a typo that caused crashes while
5513 scrolling through multibyte text.
5514
5515 2012-09-20 Stefan Monnier <monnier@iro.umontreal.ca>
5516
5517 * alloc.c (mark_object) <PVEC_WINDOW>: Mark prev/next_buffers *after*
5518 calling mark_vectorlike since that's the one that marks the window.
5519 (mark_discard_killed_buffers): Mark the final cdr.
5520 * window.h (struct window): Move prev/next_buffers to the
5521 non-standard fields.
5522 * window.c (make_window): Initialize prev/next_buffers manually.
5523
5524 2012-09-20 Paul Eggert <eggert@cs.ucla.edu>
5525
5526 Omit unused arg EXPECTED from socket hooks.
5527 * keyboard.c (gobble_input, read_avail_input, tty_read_avail_input):
5528 * nsterm.m (ns_term_init):
5529 * termhooks.h (struct terminal.read_socket_hook):
5530 * w32inevt.c (w32_console_read_socket):
5531 * w32term.c (w32_read_socket):
5532 * xterm.c (XTread_socket):
5533 Omit unused arg EXPECTED. All callers changed.
5534 (store_user_signal_events): Return void, not int, since callers no
5535 longer care about the return value. All uses changed.
5536
5537 2012-09-20 Juanma Barranquero <lekktu@gmail.com>
5538
5539 * w32gui.h (XParseGeometry): Do not declare.
5540
5541 2012-09-19 Paul Eggert <eggert@cs.ucla.edu>
5542
5543 * w32inevt.c (w32_console_read_socket): Return -1 on failure, not 0.
5544 Ignore 'expected'. See Eli Zaretskii in
5545 <http://bugs.gnu.org/12471#8> (last line).
5546
5547 * frame.c (read_integer): Remove. All uses replaced by strtol/strtoul.
5548 (XParseGeometry): Now static. Substitute extremal values for
5549 values that are out of range.
5550
5551 2012-09-19 Jan Djärv <jan.h.d@swipnet.se>
5552
5553 * w32xfns.c (read_integer, XParseGeometry): Move to frame.c.
5554
5555 * nsfns.m (XParseGeometry): Remove.
5556 (Fx_create_frame): Call x_set_offset to correctly interpret
5557 top_pos in geometry.
5558
5559 * frame.c (read_integer, XParseGeometry): Move from w32xfns.c.
5560 (Fx_parse_geometry): If there is a space in string, call
5561 Qns_parse_geometry, otherwise do as on other terms (Bug#12368).
5562
5563 2012-09-17 Eli Zaretskii <eliz@gnu.org>
5564
5565 * search.c (scan_buffer): Use character positions in calls to
5566 region_cache_forward and region_cache_backward, not byte
5567 positions. (Bug#12196)
5568
5569 * w32term.c (w32_read_socket): Set pending_signals to 1, like
5570 xterm.c does. Reported by Daniel Colascione <dancol@dancol.org>.
5571
5572 * ralloc.c (r_alloc_init) [!SYSTEM_MALLOC]: Initialize
5573 __malloc_extra_blocks to 32 instead of 64, like alloc.c did in
5574 emacs_blocked_malloc, now deleted.
5575
5576 2012-09-17 Paul Eggert <eggert@cs.ucla.edu>
5577
5578 Remove no-longer-needed Solaris 2.4 vfork bug workaround.
5579 The workaround was for improving performance on Solaris 2.4, but
5580 is getting in the way now. Emacs will still work if someone is
5581 still running Solaris 2.4 in a museum somewhere; Sun dropped
5582 support for Solaris 2.4 in 2003.
5583 * callproc.c (Fcall_process) [HAVE_WORKING_VFORK]:
5584 * process.c (create_process) [HAVE_WORKING_VFORK]:
5585 Omit now-unnecessary workaround for the Solaris 2.4 vfork bug,
5586 since Emacs no longer uses vfork on that platform.
5587
5588 2012-09-17 Glenn Morris <rgm@gnu.org>
5589
5590 * emacs.c: Use COPYRIGHT.
5591
5592 2012-09-16 Paul Eggert <eggert@cs.ucla.edu>
5593
5594 Remove configure's --without-sync-input option (Bug#12450).
5595 When auditing signal-handling in preparation for cleaning it up,
5596 I found that SYNC_INPUT has race conditions and would be a real
5597 pain to fix. Since it's an undocumented and deprecated
5598 configure-time option, now seems like a good time to remove it.
5599 Also see <http://bugs.gnu.org/11080#16>.
5600 * alloc.c (_bytes_used, __malloc_extra_blocks, _malloc_internal)
5601 (_free_internal) [!DOUG_LEA_MALLOC]: Remove decls.
5602 (alloc_mutex) [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5603 (malloc_hysteresis):
5604 (check_depth) [XMALLOC_OVERRUN_CHECK]:
5605 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT):
5606 (__malloc_hook, __realloc_hook, __free_hook, BYTES_USED)
5607 (dont_register_blocks, bytes_used_when_reconsidered)
5608 (bytes_used_when_full, emacs_blocked_free, emacs_blocked_malloc)
5609 (emacs_blocked_realloc, reset_malloc_hooks, uninterrupt_malloc):
5610 [!SYSTEM_MALLOC && !SYNC_INPUT]:
5611 Remove. All uses removed.
5612 (MALLOC_BLOCK_INPUT, MALLOC_UNBLOCK_INPUT): Use a different
5613 implementation, one that depends on whether the new macro
5614 XMALLOC_BLOCK_INPUT_CHECK is defined, not on whether SYNC_INPUT
5615 is defined.
5616 * atimer.c (run_timers, handle_alarm_signal):
5617 * keyboard.c (pending_signal, poll_for_input_1, poll_for_input)
5618 (handle_async_input, process_pending_signals)
5619 (handle_input_available_signal, init_keyboard):
5620 * nsterm.m (ns_read_socket):
5621 * process.c (wait_reading_process_output):
5622 * regex.c (immediate_quit, IMMEDIATE_QUIT_CHECK):
5623 * sysdep.c (emacs_sigaction_init) [SA_RESTART]:
5624 (emacs_write):
5625 * xterm.c (XTread_socket):
5626 Assume SYNC_INPUT.
5627 * conf_post.h (SA_RESTART) [IRIX6_5]: Do not #undef.
5628 * eval.c (handling_signal): Remove. All uses removed.
5629 * lisp.h (ELSE_PENDING_SIGNALS): Remove.
5630 All uses replaced with the SYNC_INPUT version.
5631 (reset_malloc_hooks, uninterrupt_malloc, handling_signal):
5632 Remove decls.
5633 * sysdep.c, syssignal.h (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
5634 Now static.
5635
5636 * font.c (Ffont_shape_gstring): Remove unused local.
5637
5638 2012-09-16 Glenn Morris <rgm@gnu.org>
5639
5640 * Makefile.in (clean): No longer run nextstep's clean.
5641
5642 * Makefile.in (ns_appdir, ns_appbindir, ns_appsrc): Remove variables.
5643 (ns_frag): Remove.
5644 (ns-app): Move here from ns.mk, and simplify.
5645 (clean): Simplify nextstep entry.
5646 * ns.mk: Remove file.
5647
5648 2012-09-17 Kenichi Handa <handa@gnu.org>
5649
5650 * font.c (Ffont_shape_gstring): Fix previous change; GLYPHs may
5651 not covert the last few charactes.
5652
5653 2012-09-16 Kenichi Handa <handa@gnu.org>
5654
5655 * font.c (Ffont_shape_gstring): Don't adjust grapheme cluster
5656 here, but just check the validity of glyphs in the glyph-string.
5657
5658 2012-09-16 Martin Rudalics <rudalics@gmx.at>
5659
5660 * window.c (Fwindow_parameter, Fset_window_parameter):
5661 Accept any window as argument (Bug#12452).
5662
5663 2012-09-16 Jan Djärv <jan.h.d@swipnet.se>
5664
5665 * nsfns.m (Fx_open_connection): Move initialization of ns_*_types
5666 to ns_term_init to avoid memory leak.
5667
5668 * nsterm.m (ns_update_begin): Initialize bp after lcokFocus, use
5669 explicit retain/release.
5670 (ns_term_init): Only allow one display. Initialize outerpool and
5671 ns_*_types.
5672
5673 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5674
5675 Port _setjmp fix to POSIXish hosts as well as Microsoft.
5676 * image.c (_setjmp) [!HAVE__SETJMP]: Restore definition, as
5677 it's needed on POSIXish hosts that lack _setjmp. Attempt to solve
5678 the Microsoft problem in a different way, by altering ../nt/config.nt.
5679
5680 2012-09-15 Eli Zaretskii <eliz@gnu.org>
5681
5682 * w32xfns.c:
5683 * w32uniscribe.c:
5684 * w32term.c:
5685 * w32select.c:
5686 * w32reg.c:
5687 * w32proc.c:
5688 * w32menu.c:
5689 * w32inevt.c:
5690 * w32heap.c:
5691 * w32font.c:
5692 * w32fns.c:
5693 * w32console.c:
5694 * w32.c:
5695 * w16select.c: Remove inclusion of setjmp.h, as it is now included
5696 by lisp.h. This completes removal of setjmp.h inclusion
5697 erroneously announced in the previous commit. (Bug#12446)
5698
5699 * lisp.h [!HAVE__SETJMP, !HAVE_SIGSETJMP]: Make the commentary
5700 more accurate.
5701
5702 * image.c (_setjmp) [!HAVE__SETJMP]: Define only if 'setjmp' is
5703 not defined as a macro. The latter happens on MS-Windows.
5704 (Bug#12446)
5705
5706 2012-09-15 Paul Eggert <eggert@cs.ucla.edu>
5707
5708 Port better to POSIX hosts lacking _setjmp (Bug#12446).
5709 * lisp.h: Include <setjmp.h> here, since we use its symbols here.
5710 Some instances of '#include <setjmp.h>' removed, if the
5711 only reason for the instance was because "lisp.h" was included.
5712 (sys_jmp_buf, sys_setjmp, sys_longjmp): New symbols.
5713 Unless otherwise specified, replace all uses of jmp_buf, _setjmp,
5714 and _longjmp with the new symbols. Emacs already uses _setjmp if
5715 available, so this change affects only POSIXish hosts that have
5716 sigsetjmp but not _setjmp, such as some versions of Solaris and
5717 Unixware. (Also, POSIX-2008 marks _setjmp as obsolescent.)
5718 * image.c (_setjmp, _longjmp) [HAVE_PNG && !HAVE__SETJMP]: New macros.
5719 (png_load_body) [HAVE_PNG]:
5720 (PNG_LONGJMP) [HAVE_PNG && PNG_LIBPNG_VER < 10500]:
5721 (PNG_JMPBUF) [HAVE_PNG && PNG_LIBPNG_VER >= 10500]:
5722 Use _setjmp and _longjmp rather than sys_setjmp and sys_longjmp,
5723 since PNG requires jmp_buf. This is the only exception to the
5724 general rule that we now use sys_setjmp and sys_longjmp.
5725 This exception is OK since this code does not change the signal
5726 mask or longjmp out of a signal handler.
5727
5728 2012-09-14 Paul Eggert <eggert@cs.ucla.edu>
5729
5730 * alloc.c [!SYSTEM_MALLOC && !SYNC_INPUT && HAVE_PTHREAD]:
5731 Include "syssignal.h", for 'main_thread'.
5732
5733 2012-09-14 Dmitry Antipov <dmantipov@yandex.ru>
5734
5735 Avoid out-of-range marker position (Bug#12426).
5736 * insdel.c (replace_range, replace_range_2):
5737 Adjust markers before overlays, as suggested by comments.
5738 (insert_1_both, insert_from_buffer_1, adjust_after_replace):
5739 Remove redundant check before calling offset_intervals.
5740
5741 2012-09-14 Martin Rudalics <rudalics@gmx.at>
5742
5743 * xdisp.c (Fformat_mode_line): Unconditionally save/restore
5744 current buffer (Bug#12387).
5745
5746 2012-09-14 Juanma Barranquero <lekktu@gmail.com>
5747
5748 * makefile.w32-in ($(BLD)/alloc.$(O)): Update dependencies.
5749
5750 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5751
5752 Use a more backwards-compatible timer format (Bug#12430).
5753 * keyboard.c (decode_timer): Get PSECS from the 8th (origin-0)
5754 vector element, not from the 4th, since PSECS is now at the end.
5755 (Fcurrent_idle_time): Doc fix.
5756
5757 2012-09-13 Dmitry Antipov <dmantipov@yandex.ru>
5758
5759 Function to mark objects and remove killed buffers at once.
5760 * alloc.c (discard_killed_buffers): Rename to ...
5761 (mark_discard_killed buffers) ... new name. Add marking
5762 of remaining objects. Fix comment. Adjust users.
5763 (mark_object): Do not touch frame buffer lists here.
5764 * frame.c (delete_frame): Reset frame buffer lists here.
5765
5766 2012-09-13 Paul Eggert <eggert@cs.ucla.edu>
5767
5768 Better workaround for GNOME bug when --enable-gcc-warnings.
5769 * emacsgtkfixed.c (G_STATIC_ASSERT): Remove, undoing last change.
5770 Instead, disable -Wunused-local-typedefs. See Dmitry Antipov in
5771 <http://lists.gnu.org/archive/html/emacs-devel/2012-09/msg00335.html>.
5772
5773 Simplify SIGIO usage (Bug#12408).
5774 The code that dealt with SIGIO was crufty and confusing, e.g., it
5775 played tricks like "#undef SIGIO" but these tricks were not used
5776 consistently. Simplify mostly by not #undeffing standard symbols,
5777 e.g., use "defined USABLE_SIGIO" (our symbol, which we can define
5778 or not as we please) rather than "defined SIGIO" (standard symbol
5779 that we probably shouldn't #undef).
5780 * conf_post.h [USG5_4]: Do not include <sys/wait.h> here.
5781 Modules that need it can include it.
5782 [USG5_4 && emacs]: Likewise, do not include the streams stuff here.
5783 * dispextern.h (ignore_sigio): New decl.
5784 * emacs.c (shut_down_emacs): Invoke unrequest_sigio
5785 unconditionally, since it's now a no-op if !USABLE_SIGIO.
5786 * emacs.c (shut_down_emacs):
5787 * keyboard.c (kbd_buffer_store_event_hold):
5788 Use ignore_sigio rather than invoking 'signal' directly.
5789 * keyboard.c (USABLE_FIONREAD && USG5_4): Include <sys/filio.h>,
5790 for FIONREAD.
5791 (FIONREAD, SIGIO): Do not #undef.
5792 (tty_read_avail_input): Use #error rather than a syntax error.
5793 * process.c [USG5_4]: Include <sys/stream.h> and <sys/stropts.h>,
5794 for I_PIPE, used by SETUP_SLAVE_PTY.
5795 (DATAGRAM_SOCKETS): Simplify defn, based on USABLE_FIONREAD.
5796 * sysdep.c (croak): Remove; no longer needed. This bit of
5797 temporary code, with Fred N. Fish's comment that it's temporary,
5798 has been in Emacs since at least 1992!
5799 (init_sigio, reset_sigio, request_sigio, unrequest_sigio):
5800 Arrange for them to be no-ops in all cases when ! USABLE_SIGIO.
5801 * syssignal.h (croak): Remove decl.
5802 (SIGIO, SIGPOO, SIGAIO, SIGPTY): Do not #undef; that's too fragile.
5803 * systty.h [!NO_TERMIO]: Do not include <termio.h>; no longer needed
5804 now that we're termios-only.
5805 (FIONREAD, ASYNC) [BROKEN_FIONREAD]: Do not #undef.
5806 * term.c (dissociate_if_controlling_tty): Use #error rather than
5807 a run-time error.
5808
5809 Work around GCC and GNOME bugs when --enable-gcc-warnings.
5810 * emacsgtkfixed.c (G_STATIC_ASSERT): Redefine to use 'verify',
5811 to work around GNOME bug 683906.
5812 * image.c (jpeg_load_body) [HAVE_JPEG && lint]: Pacify gcc -Wclobber.
5813 (struct my_jpeg_error_mgr) [HAVE_JPEG && lint]: New member fp.
5814 This works around GCC bug 54561.
5815
5816 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5817
5818 More fixes for 'volatile' and setjmp/longjmp.
5819 * eval.c (Fdefvar, Fcondition_case): Remove unnecessary 'volatile's.
5820 * image.c (struct png_load_context) [HAVE_PNG]: New type.
5821 (png_load_body) [HAVE_PNG]:
5822 (jpeg_load_body) [HAVE_JPEG]:
5823 New function, with most of the old parent function's body.
5824 (png_load) [HAVE_PNG]:
5825 (jpeg_load) [HAVE_JPEG]:
5826 Invoke the new function, to avoid longjmp munging our locals.
5827 (struct my_jpeg_error_mgr) [HAVE_JPEG]: New members cinfo, failure_code.
5828 (my_error_exit) [HAVE_JPEG]: Don't trust 'setjmp' to return 2 when
5829 longjmp is passed 2, as the C standard doesn't guarantee this.
5830 Instead, store the failure code into mgr->failure_code.
5831
5832 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5833
5834 * keyboard.c (read_char, requeued_events_pending_p, Finput_pending_p)
5835 (Fdiscard_input, quit_throw_to_read_char, init_keyboard)
5836 (syms_of_keyboard): Remove support for unread-command-char.
5837
5838 2012-09-12 Eli Zaretskii <eliz@gnu.org>
5839
5840 * w32proc.c (sys_kill): If PID is our process ID and the signal is
5841 SIGABRT, call emacs_abort. Avoids silently exiting upon assertion
5842 violation. (Bug#12426)
5843
5844 2012-09-12 Paul Eggert <eggert@cs.ucla.edu>
5845
5846 * image.c (jpeg_memory_src): Don't assume string len fits in unsigned.
5847
5848 2012-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
5849
5850 * eval.c: Add `inhibit-debugger'.
5851 (Qinhibit_debugger): New symbol.
5852 (call_debugger): Bind it instead of Qdebug_on_error.
5853 (maybe_call_debugger): Test Vinhibit_debugger.
5854 (syms_of_eval): Define inhibit-debugger.
5855 * xdisp.c (set_message): Don't bind Qinhibit_debug_on_message.
5856 (syms_of_xdisp): Remove inhibit-debug-on-message.
5857
5858 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5859
5860 Avoid _setjmp/_longjmp problems with local nonvolatile variables.
5861 If a nonvolatile local variable is written before a _longjmp to
5862 the frame containing the variable, and is read after the _longjmp,
5863 the value read is indeterminate. Some local variables of type
5864 'struct handler' and 'struct catchtag' are used in this way, so
5865 mark each of their slots as volatile if the slot can be set before
5866 _longjmp and read afterwards.
5867 * lisp.h (struct handler): var and chosen_clause are now volatile.
5868 (struct catchtag): val, next, and pdlcount are now volatile.
5869
5870 * bidi.c (bidi_push_it, bidi_pop_it):
5871 * fns.c (copy_hash_table):
5872 * image.c (define_image_type):
5873 * keyboard.c (kbd_buffer_store_event_hold):
5874 * process.c (Fprocess_send_eof):
5875 * xfaces.c (x_create_gc) [HAVE_NS]:
5876 * xgselect.c (xg_select):
5877 Prefer assignment to memcpy when either will do.
5878
5879 * alloc.c (discard_killed_buffers): Tune and simplify a bit.
5880 Use pointer-to-a-pointer to simplify and avoid a NILP check each
5881 time an item is removed. No need to mark this function 'inline';
5882 the compiler knows better than we do.
5883
5884 2012-09-11 Jan Djärv <jan.h.d@swipnet.se>
5885
5886 * nsterm.m (ns_judge_scroll_bars): Pass NO to updateFrameSize.
5887 (updateFrameSize:): Add delay parameter to updateFrameSize, send it
5888 to change_frame_size (Bug#12388).
5889 (windowDidResize:): Pass YES to updateFrameSize.
5890
5891 * nsterm.h: Add delay parameter to updateFrameSize.
5892
5893 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5894
5895 Discard killed buffers from deleted window and frame objects.
5896 This reduces an amount of references to killed buffers and
5897 helps GC to reclaim them faster.
5898 * alloc.c (discard_killed_buffers): New function.
5899 (mark_object): Use it for deleted windows and frames.
5900 (mark_object): If symbol's value is set up for a killed buffer
5901 or deleted frame, restore its global binding.
5902 * data.c (swap_in_global_binding): Add GC notice.
5903 (swap_in_symval_forwarding): Use convenient set_blv_where.
5904 * window.c (wset_next_buffers, wset_prev_buffers): Move ...
5905 * window.h: ... to here.
5906
5907 2012-09-11 Dmitry Antipov <dmantipov@yandex.ru>
5908
5909 Convenient macro to check whether the buffer is live.
5910 * buffer.h (BUFFER_LIVE_P): New macro.
5911 * alloc.c, buffer.c, editfns.c, insdel.c, lread.c, marker.c:
5912 * minibuf.c, print.c, process.c, window.c, xdisp.c: Use it.
5913
5914 2012-09-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
5915
5916 * xdisp.c (right_overwritten, right_overwriting): Also handle gstring
5917 composition cases (Bug#12364).
5918
5919 * xterm.c (x_draw_glyph_string): Avoid overwriting inverted left
5920 overhang of succeeding glyphs overlapping box cursor.
5921
5922 * w32term.c (x_draw_glyph_string): Likewise.
5923
5924 2012-09-11 Paul Eggert <eggert@cs.ucla.edu>
5925
5926 Simplify, document, and port floating-point (Bug#12381).
5927 The porting part of this patch fixes bugs on non-IEEE platforms
5928 with frexp, ldexp, logb.
5929 * data.c, lisp.h (Qdomain_error, Qsingularity_error, Qunderflow_error):
5930 Now static.
5931 * floatfns.c: Simplify discussion of functions that Emacs doesn't
5932 support, by removing commented-out code and briefly listing the
5933 C89 functions excluded. The commented-out stuff was confusing
5934 maintenance, e.g., we thought we needed cbrt but it was commented out.
5935 (logb): Remove decl; no longer needed.
5936 (isfinite): New macro, if not already supplied.
5937 (isnan): Don't replace any existing macro.
5938 (Ffrexp, Fldexp): Define even if !HAVE_COPYSIGN, as frexp and ldexp
5939 are present on all C89 platforms.
5940 (Ffrexp): Do not special-case zero, as frexp does the right thing
5941 for that case.
5942 (Flogb): Do not use logb, as it doesn't have the desired meaning
5943 on hosts that use non-base-2 floating point. Instead, stick with
5944 frexp, which is C89 anyway. Do not pass an infinity or a NaN to
5945 frexp, to avoid getting an unspecified result.
5946
5947 * xdisp.c (Qinhibit_debug_on_message): Now static.
5948
5949 2012-09-10 Jan Djärv <jan.h.d@swipnet.se>
5950
5951 * nsterm.m (ns_update_begin): Set clip path to whole view by using
5952 NSBezierPath (Bug#12131).
5953
5954 2012-09-10 Chong Yidong <cyd@gnu.org>
5955
5956 * fns.c (Fdelq, Fdelete): Doc fix.
5957
5958 2012-09-10 Paul Eggert <eggert@cs.ucla.edu>
5959
5960 * lisp.h (XSETINT, XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL)
5961 (XSETFLOAT, XSETMISC): Parenthesize macro bodies.
5962
5963 2012-09-09 Stefan Monnier <monnier@iro.umontreal.ca>
5964
5965 * lisp.h (make_lisp_ptr): New macro to replace XSET.
5966 (XSETCONS, XSETVECTOR, XSETSTRING, XSETSYMBOL, XSETFLOAT, XSETMISC):
5967 Use it.
5968
5969 2012-09-09 Eli Zaretskii <eliz@gnu.org>
5970
5971 * fringe.c (draw_fringe_bitmap_1): Don't reduce the width of the
5972 left fringe if the window has a left margin. This avoids leaving
5973 traces of the cursor because its leftmost pixel is not drawn over.
5974
5975 * dispnew.c (update_window_line): When the left margin area of a
5976 screen line is updated, set the redraw_fringe_bitmaps_p flag of
5977 that screen line. (Bug#12277)
5978
5979 2012-09-09 Paul Eggert <eggert@cs.ucla.edu>
5980
5981 Assume C89 or later for math functions (Bug#12381).
5982 This simplifies the code, and makes it a bit smaller and faster,
5983 and (most important) makes it easier to clean up signal handling
5984 since we can stop worring about floating-point exceptions in
5985 library code. That was a problem before C89, but the problem
5986 went away many years ago on all practical Emacs targets.
5987 * data.c, image.c, lread.c, print.c:
5988 Don't include <math.h>; no longer needed.
5989 * data.c, floatfns.c (IEEE_FLOATING_POINT): Don't worry that it
5990 might be autoconfigured, as that never happens.
5991 * data.c (fmod):
5992 * doprnt.c (DBL_MAX_10_EXP):
5993 * print.c (DBL_DIG):
5994 Remove. C89 or later always defines these.
5995 * floatfns.c (HAVE_MATHERR, FLOAT_CHECK_ERRNO, FLOAT_CHECK_DOMAIN)
5996 (in_float, float_error_arg, float_error_arg2, float_error_fn_name)
5997 (arith_error, domain_error, domain_error2):
5998 Remove all this pre-C89 cruft. Do not include <errno.h> as that's
5999 no longer needed -- we simply return what C returns. All uses removed.
6000 (IN_FLOAT, IN_FLOAT2): Remove. All uses replaced with
6001 the wrapped code.
6002 (FLOAT_TO_INT, FLOAT_TO_INT2, range_error, range_error2):
6003 Remove. All uses expanded, as these macros are no longer used
6004 more than once and are now more trouble than they're worth.
6005 (Ftan): Use tan, not sin / cos.
6006 (Flogb): Assume C89 frexp.
6007 (fmod_float): Assume C89 fmod.
6008 (matherr) [HAVE_MATHERR]: Remove; no longer needed.
6009 (init_floatfns): Remove. All uses removed.
6010
6011 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6012
6013 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Take back
6014 compositeToPoint for OSX < 10.6 (Bug#12390).
6015
6016 2012-09-08 Paul Eggert <eggert@cs.ucla.edu>
6017
6018 * floatfns.c (Ftan): Use tan (x), not (sin (x) / cos (x)).
6019 This produces more-accurate results.
6020
6021 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6022
6023 * nsterm.m (updateFrameSize): Call setFrame: on the view when size
6024 changes (Bug#12088).
6025
6026 2012-09-08 Chong Yidong <cyd@gnu.org>
6027
6028 * syntax.c (Fstring_to_syntax): Doc fix.
6029
6030 2012-09-08 Jan Djärv <jan.h.d@swipnet.se>
6031
6032 * nsterm.m (ns_clip_to_row): Remove code that deals with drawing fringe
6033 in the internal border.
6034 (x_set_window_size): Remove static variables and their usage.
6035 (ns_redraw_scroll_bars): Fix NSTRACE arg.
6036 (ns_after_update_window_line, ns_draw_fringe_bitmap):
6037 Remove fringe/internal border adjustment (Bug#11052).
6038 (ns_draw_fringe_bitmap): Make code more like other terms (xterm.c).
6039 (ns_draw_window_cursor): Remove fringe/internal border adjustment.
6040 (ns_fix_rect_ibw): Remove.
6041 (ns_get_glyph_string_clip_rect): Remove call to ns_fix_rect_ibw.
6042 (ns_dumpglyphs_box_or_relief): Ditto.
6043 (ns_maybe_dumpglyphs_background): Remove fringe/internal border
6044 adjustment.
6045 (ns_dumpglyphs_image): Ditto.
6046 (ns_dumpglyphs_stretch): Fix coding style. Remove fringe/internal
6047 border adjustment.
6048 (ns_set_vertical_scroll_bar): Remove variables barOnVeryLeft/Right and
6049 their usage. Add fringe_extended_p and its use as in other terms.
6050 (ns_judge_scroll_bars): Code style fix. Call updateFrameSize if
6051 scroll bar was removed.
6052 (updateFrameSize): New function.
6053 (windowDidResize): Move code to updateFrameSize and call it.
6054
6055 * nsterm.h (EmacsView): Add updateFrameSize.
6056
6057 2012-09-07 Chong Yidong <cyd@gnu.org>
6058
6059 * textprop.c (Fget_text_property): Minor doc fix (Bug#12323).
6060
6061 * data.c (Flocal_variable_if_set_p): Doc fix (Bug#10713).
6062
6063 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6064
6065 More signal-handler cleanup (Bug#12327).
6066 * emacs.c (main): Convert three 'signal' calls to 'sigaction' calls.
6067 Problem introduced when merging patches. Noted by Eli Zaretskii in
6068 <http://bugs.gnu.org/12327#67>.
6069 * floatfns.c: Comment fix.
6070 * lisp.h (force_auto_save_soon): Declare regardless of SIGDANGER.
6071 SIGDANGER might not be in scope so "#ifdef SIGDANGER" is not right,
6072 and anyway the declaration is harmless even if SIGDANGER is not defined.
6073 * syssignal.h (SIGIO): Also #undef if (! defined FIONREAD ||
6074 defined BROKEN_FIONREAD). systty.h formerly did this, but other
6075 source files not surprisingly expected syssignal.h to define, or
6076 not define, SIGIO, and it's cleaner to do it that way, for consistency.
6077 Include <sys/ioctl.h>, for FIONREAD.
6078 * systty.h (SIGIO): Do not #undef here; it's now syssignal.h's job.
6079 This eliminates a problem whereby other files mysteriously had
6080 to include "syssignal.h" before including "systty.h" if they
6081 wanted to use "#ifdef SIGIO".
6082
6083 2012-09-07 Eli Zaretskii <eliz@gnu.org>
6084
6085 * w32proc.c (sigaction): New function, emulates Posix 'sigaction'.
6086
6087 * w32.c (sigemptyset): Empty the set.
6088 (sigsetmask, sigmask, sigblock, sigunblock): Remove unused functions.
6089
6090 * alloc.c [ENABLE_CHECKING]: Include signal.h, since we need SIGABRT.
6091
6092 2012-09-07 Dmitry Antipov <dmantipov@yandex.ru>
6093
6094 * alloc.c (mark_buffer): Revert unsafe marking optimization.
6095 (mark_object): Likewise for frame objects.
6096
6097 2012-09-07 Paul Eggert <eggert@cs.ucla.edu>
6098
6099 * syssignal.h (handle_on_main_thread): Always declare,
6100 even if FORWARD_SIGNAL_TO_MAIN_THREAD is not defined.
6101 This ports to platforms without HAVE_PTHREAD.
6102
6103 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6104
6105 Signal-handler cleanup (Bug#12327).
6106 Emacs's signal handlers were written in the old 4.2BSD style with
6107 sigblock and sigmask and so forth, and this led to some
6108 inefficiencies and confusion. Rewrite these to use
6109 pthread_sigmask etc. without copying signal sets around. Also,
6110 get rid of the confusing macros 'SIGNAL_THREAD_CHECK' and
6111 'signal', and instead use functions that do not attempt to take
6112 over the system name space. This patch causes Emacs's text
6113 segment to shrink by 0.7% on my platform, Fedora 17 x86-64.
6114 * alloc.c, emacsgtkfixed.c, nsfns.m, widget.c, xmenu.c:
6115 Do not include <signal.h> or "syssignal.h", as these
6116 modules do not use signals.
6117 * atimer.c, callproc.c, data.c, dispnew.c, emacs.c, floatfns.c:
6118 * gtkutil.c, keyboard.c, process.c, sound.c, sysdep.c, term.c, xterm.c:
6119 Do not include <signal.h>, as "syssignal.h" does that for us now.
6120 * atimer.c (sigmask_atimers): New function.
6121 (block_atimers, unblock_atimers): New functions,
6122 replacing the old macros BLOCK_ATIMERS and UNBLOCK_ATIMERS.
6123 All uses replaced.
6124 * conf_post.h [SIGNAL_H_AHB]: Do not include <signal.h>;
6125 no longer needed here.
6126 * emacs.c (main): Inspect existing signal handler with sigaction,
6127 so that there's no need to block and unblock SIGHUP.
6128 * sysdep.c (struct save_signal): New member 'action', replacing
6129 old member 'handler'.
6130 (save_signal_handlers, restore_signal_handlers):
6131 Use sigaction instead of 'signal' to save and restore.
6132 (get_set_sighandler, set_sighandler) [!WINDOWSNT]:
6133 New function. All users of 'signal' modified to use set_sighandler
6134 if they're writeonly, and to use sys_signal if they're read+write.
6135 (emacs_sigaction_init, forwarded_signal): New functions.
6136 (sys_signal): Remove. All uses replaced by calls to sigaction
6137 and emacs_sigaction_init, or by direct calls to 'signal'.
6138 (sys_sigmask) [!__GNUC__]: Remove; no longer needed.
6139 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove;
6140 all uses replaced by pthread_sigmask etc. calls.
6141 * syssignal.h: Include <signal.h>.
6142 (emacs_sigaction_init, forwarded_signal): New decls.
6143 (SIGMASKTYPE): Remove. All uses replaced by its definiens, sigset_t.
6144 (SIGEMPTYMASK): Remove; all uses replaced by its definiens, empty_mask.
6145 (sigmask, sys_sigmask): Remove; no longer needed.
6146 (sigpause): Remove. All uses replaced by its definiens, sigsuspend.
6147 (sigblock, sigunblock, sigfree):
6148 (sigsetmask) [!defined sigsetmask]:
6149 Remove. All uses replaced by pthread_sigmask.
6150 (signal): Remove. Its remaining uses (with SIG_DFL and SIG_IGN)
6151 no longer need to be replaced, and its typical old uses
6152 are now done via emacs_sigaction_init and sigaction.
6153 (sys_sigblock, sys_sigunblock, sys_sigsetmask): Remove decls.
6154 (sys_sigdel): Remove; unused.
6155 (NSIG): Remove a FIXME; the code's fine. Remove an unnecessary ifdef.
6156
6157 2012-09-06 Eli Zaretskii <eliz@gnu.org>
6158
6159 * process.c (CAN_HANDLE_MULTIPLE_CHILDREN): Fix a typo that broke
6160 SIGCHLD handling on systems that don't have WNOHANG. (Bug#12327)
6161
6162 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6163
6164 Explicitly mark buffer_defaults and buffer_local_symbols.
6165 * alloc.c (Fgarbage_collect): Mark buffer_defaults and
6166 mark_local_symbols here.
6167 (mark_object): If GC_CHECK_MARKED_OBJECTS, simplify checking
6168 since special buffers aren't marked here any more.
6169 (allocate_buffer): Chain new buffer with all_buffers here...
6170 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer): ...and
6171 not here.
6172 (Vbuffer_defaults, Vbuffer_local_symbols): Remove.
6173 (syms_of_buffer): Remove staticpro of the above.
6174 (init_buffer_once): Set names for buffer_defaults and
6175 buffer_local_symbols.
6176
6177 2012-09-06 Paul Eggert <eggert@cs.ucla.edu>
6178
6179 Use bool for booleans in font-related modules.
6180 * font.c (font_intern_prop, font_style_to_value)
6181 (font_style_symbolic, font_parse_xlfd, font_parse_fcname)
6182 (generate_otf_features, font_check_otf_features, font_check_otf)
6183 (font_match_p, font_list_entities, font_at):
6184 * fontset.c (fontset_id_valid_p, reorder_font_vector
6185 (fontset_find_font, Fset_fontset_font)
6186 (face_suitable_for_char_p) [0]:
6187 * ftfont.c (fc_initialized, ftfont_get_open_type_spec)
6188 (ftfont_open, ftfont_text_extents, ftfont_check_otf):
6189 (m17n_flt_initialized, ftfont_shape_by_flt):
6190 * ftxfont.c (ftxfont_draw_bitmap, ftxfont_draw):
6191 * nsfont.m (nsfont_draw):
6192 * w32font.c (w32font_draw):
6193 * w32term.c (x_draw_glyphless_glyph_string_foreground):
6194 Use bool for booleans.
6195 * font.h: Adjust to above API changes.
6196 (struct font, struct font_driver, struct font_driver_list):
6197 Use bool for booleans.
6198 (struct font): Remove useless member encoding_type.
6199 All users removed.
6200 * fontset.c, xftfont.c: Omit unnecessary static decls.
6201
6202 2012-09-06 Dmitry Antipov <dmantipov@yandex.ru>
6203
6204 * alloc.c (mark_object): Revert window marking code
6205 since it's unsafe for the Fset_window_configuration.
6206
6207 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6208
6209 Fix race conditions with signal handlers and errno (Bug#12327).
6210 Be more systematic about preserving errno whenever a signal
6211 handler returns, even if it's not in the main thread. Do this by
6212 renaming signal handlers to distinguish between signal delivery
6213 and signal handling. All uses changed.
6214 * atimer.c (deliver_alarm_signal): Rename from alarm_signal_handler.
6215 * data.c (deliver_arith_signal): Rename from arith_error.
6216 * dispnew.c (deliver_window_change_signal): Rename from
6217 window_change_signal.
6218 * emacs.c (deliver_error_signal): Rename from fatal_error_signal.
6219 (deliver_danger_signal) [SIGDANGER]: Rename from memory_warning_signal.
6220 * keyboard.c (deliver_input_available_signal): Rename from
6221 input_available_signal.
6222 (deliver_user_signal): Rename from handle_user_signal.
6223 (deliver_interrupt_signal): Rename from interrupt_signal.
6224 * process.c (deliver_pipe_signal): Rename from send_process_trap.
6225 (deliver_child_signal): Rename from sigchld_handler.
6226 * atimer.c (handle_alarm_signal):
6227 * data.c (handle_arith_signal):
6228 * dispnew.c (handle_window_change_signal):
6229 * emacs.c (handle_fatal_signal, handle_danger_signal):
6230 * keyboard.c (handle_input_available_signal):
6231 * keyboard.c (handle_user_signal, handle_interrupt_signal):
6232 * process.c (handle_pipe_signal, handle_child_signal):
6233 New functions, with the actual signal-handling code taken from the
6234 original respective signal handlers, sans the sporadic attempts to
6235 preserve errno, since that's now done by handle_on_main_thread.
6236 * atimer.c (alarm_signal_handler): Remove unnecessary decl.
6237 * emacs.c, floatfns.c, lisp.h: Remove unused FLOAT_CATCH_SIGKILL cruft.
6238 * emacs.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6239 Move to sysdep.c.
6240 (main) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6241 Move initialization of main_thread to sysdep.c's init_signals.
6242 * process.c (waitpid) [!WNOHANG]: #define to wait; that's good enough for
6243 our usage, and simplifies the mainline code.
6244 (record_child_status_change): New static function, as a helper
6245 for handle_child_signal, and with most of the old child handler's
6246 contents.
6247 (CAN_HANDLE_MULTIPLE_CHILDREN): New constant.
6248 (handle_child_signal): Use the above.
6249 * sysdep.c (main_thread) [FORWARD_SIGNAL_TO_MAIN_THREAD]:
6250 Moved here from emacs.c.
6251 (init_signals) [FORWARD_SIGNAL_TO_MAIN_THREAD]: Initialize it;
6252 code moved here from emacs.c's main function.
6253 * sysdep.c, syssignal.h (handle_on_main_thread): New function,
6254 replacing the old SIGNAL_THREAD_CHECK. All uses changed.
6255 This lets callers save and restore errno properly.
6256
6257 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6258
6259 Remove redundant or unused things here and there.
6260 * lisp.h (CYCLE_CHECK, CHAR_TABLE_TRANSLATE): Remove.
6261 * conf_post.h (RE_TRANSLATE): Use char_table_translate.
6262 * editfns.c (Fcompare_buffer_substrings): Likewise.
6263 * frame.h (struct terminal, struct font_driver_list):
6264 Remove redundant declarations.
6265 * window.h (Qleft, Qright): Likewise.
6266
6267 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6268
6269 Do not mark objects from deleted buffers, windows and frames.
6270 * alloc.c (mark_buffer): Mark just the buffer if it is dead.
6271 (mark_object): Likewise for windows and frames.
6272
6273 2012-09-05 Dmitry Antipov <dmantipov@yandex.ru>
6274
6275 * alloc.c (valid_lisp_object_p): Treat killed buffers,
6276 buffer_defaults and buffer_local_symbols as valid objects.
6277 Return special value to denote them.
6278
6279 2012-09-05 Paul Eggert <eggert@cs.ucla.edu>
6280
6281 * fileio.c, filelock.c, floatfns.c, fns.c: Use bool for boolean.
6282 * fileio.c (auto_saving, auto_save_error_occurred, make_temp_name)
6283 (Fexpand_file_name, barf_or_query_if_file_exists, Fcopy_file)
6284 (file_name_absolute_p, Fsubstitute_in_file_name):
6285 (check_executable, check_writable, Ffile_accessible_directory_p)
6286 (Fset_file_selinux_context, Fdefault_file_modes)
6287 (Finsert_file_contents, choose_write_coding_system)
6288 (Fwrite_region, build_annotations, a_write, e_write)
6289 (Fdo_auto_save):
6290 * filelock.c (boot_time_initialized, get_boot_time)
6291 (get_boot_time_1, lock_file_1, within_one_second):
6292 * floatfns.c (in_float):
6293 * fns.c (concat, internal_equal, Frequire, base64_encode_1)
6294 (base64_decode_1, cmpfn_eql, cmpfn_user_defined)
6295 (sweep_weak_table, sweep_weak_hash_tables, secure_hash):
6296 * lisp.h (struct Lisp_Hash_Table.cmpfn):
6297 * window.c (compare_window_configurations):
6298 Use bool for booleans.
6299 * fileio.c (auto_saving_dir_umask, auto_saving_mode_bits)
6300 (Fdefault_file_modes): Now mode_t, not int, for modes.
6301 (Fdo_auto_save): Set a boolean to 1 rather than using ++.
6302 (internal_delete_file): Now returns void, not a (boolean) int,
6303 since nobody was looking at the return value.
6304 * lisp.h, window.h: Adjust to above API changes.
6305
6306 * xdisp.c (set_message): Simplify and reindent last change.
6307
6308 2012-09-05 Juanma Barranquero <lekktu@gmail.com>
6309
6310 * makefile.w32-in ($(BLD)/sysdep.$(O)): Update dependencies.
6311
6312 2012-09-04 Lars Ingebrigtsen <larsi@gnus.org>
6313
6314 * eval.c (call_debugger): Make the function non-static so that we
6315 can call it from set_message.
6316
6317 * xdisp.c (set_message): Implement the new variable `debug-on-message'.
6318 (syms_of_xdisp): Defvar it and `inhibit-debug-on-message'.
6319
6320 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6321
6322 Give more-useful info on a fatal error (Bug#12328).
6323 * alloc.c [ENABLE_CHECKING]: Do not include <execinfo.h>.
6324 (die) [ENABLE_CHECKING]: Call fatal_error_backtrace instead
6325 of doing the work ourselves.
6326 * emacs.c (fatal_error_signal): Let fatal_error_backtrace
6327 do most of the work.
6328 (fatal_error_backtrace): New function, taken from the guts
6329 of the old fatal_error_signal, but with a new option to output
6330 a backtrace.
6331 (shut_down_emacs) [!DOS_NT]: Use strsignal to give more-useful
6332 info about the signal than just its number.
6333 * lisp.h (fatal_error_backtrace, emacs_backtrace): New decls.
6334 * sysdep.c: Include <execinfo.h>
6335 (emacs_backtrace): New function, taken partly from the previous
6336 code of the 'die' function.
6337 (emacs_abort): Call fatal_error_backtrace rather than abort.
6338
6339 2012-09-04 Stefan Monnier <monnier@iro.umontreal.ca>
6340
6341 * lread.c (readevalloop): Call internal-macroexpand-for-load to perform
6342 eager (load-time) macro-expansion.
6343 * lisp.mk (lisp): Add macroexp.
6344
6345 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6346
6347 Simplify redefinition of 'abort' (Bug#12316).
6348 Do not try to redefine the 'abort' function. Instead, redo
6349 the code so that it calls 'emacs_abort' rather than 'abort'.
6350 This removes the need for the NO_ABORT configure-time macro
6351 and makes it easier to change the abort code to do a backtrace.
6352 * .gdbinit: Just stop at emacs_abort, not at w32_abort or abort.
6353 * emacs.c (abort) [!DOS_NT && !NO_ABORT]:
6354 Remove; sysdep.c's emacs_abort now takes its place.
6355 * lisp.h (emacs_abort): New decl. All calls from Emacs code to
6356 'abort' changed to use 'emacs_abort'.
6357 * msdos.c (dos_abort) [defined abort]: Remove; not used.
6358 (abort) [!defined abort]: Rename to ...
6359 (emacs_abort): ... new name.
6360 * sysdep.c (emacs_abort) [!HAVE_NTGUI]: New function, taking
6361 the place of the old 'abort' in emacs.c.
6362 * w32.c, w32fns.c (abort): Do not #undef.
6363 * w32.c (emacs_abort): Rename from w32_abort.
6364
6365 2012-09-04 Eli Zaretskii <eliz@gnu.org>
6366
6367 * w32uniscribe.c (uniscribe_shape): Reverse the sign of
6368 offsets[j].dv, since the y axis of the screen coordinates points
6369 down, while the y axis of the font definition coordinates points
6370 up. This fixes display of Arabic diacritics such as KASRA and
6371 KASRATAN. (Bug#11860)
6372
6373 2012-09-04 Paul Eggert <eggert@cs.ucla.edu>
6374
6375 Be more systematic about _setjmp vs setjmp.
6376 * alloc.c (test_setjmp, mark_stack):
6377 * image.c (PNG_LONGJMP) [PNG_LIBPNG_VER < 10500]:
6378 (PNG_JMPBUF) [! (PNG_LIBPNG_VER < 10500)]:
6379 (png_load, my_error_exit, jpeg_load):
6380 * process.c (send_process_trap, send_process):
6381 Uniformly prefer _setjmp and _longjmp to setjmp and longjmp.
6382 The underscored versions are up to 30x faster on some hosts.
6383 Formerly, the code used setjmp+longjmp sometimes and
6384 _setjmp+_longjmp at other times, with no particular reason to
6385 prefer setjmp+longjmp.
6386
6387 2012-09-03 Paul Eggert <eggert@cs.ucla.edu>
6388
6389 Fix minor problem found by static checking.
6390 * buffer.c (Fdelete_all_overlays): Return nil.
6391
6392 2012-09-03 Martin Rudalics <rudalics@gmx.at>
6393
6394 * buffer.c (Fdelete_all_overlays): New function.
6395
6396 2012-09-03 Chong Yidong <cyd@gnu.org>
6397
6398 * gtkutil.c: Add extern decl for Qxft.
6399
6400 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6401
6402 * emacs.c, eval.c: Use bool for boolean.
6403 * emacs.c (initialized, inhibit_window_system, running_asynch_code):
6404 (malloc_using_checking) [DOUG_LEA_MALLOC]:
6405 (display_arg) [HAVE_X_WINDOWS || HAVE_NS]:
6406 (noninteractive, no_site_lisp, fatal_error_in_progress, argmatch)
6407 (main, decode_env_path, Fdaemon_initialized):
6408 * eval.c (call_debugger, Finteractive_p, interactive_p):
6409 (unwind_to_catch, Fsignal, wants_debugger, skip_debugger)
6410 (maybe_call_debugger, Fbacktrace):
6411 * process.c (read_process_output, exec_sentinel):
6412 Use bool for booleans.
6413 * emacs.c (shut_down_emacs): Omit unused boolean argument NO_X.
6414 All callers changed.
6415 * eval.c (interactive_p): Omit always-true boolean argument
6416 EXCLUDE_SUBRS_P. All callers changed.
6417 * dispextern.h, lisp.h: Reflect above API changes.
6418 * firstfile.c (dummy): Use the address of 'main', whose signature
6419 won't change, instead of the address of 'initialize', whose
6420 signature just changed from int to bool.
6421 * lisp.h (fatal_error_in_progress): New decl of boolean, moved here ...
6422 * msdos.c (fatal_error_in_progress): ... from here.
6423 * xdisp.c (redisplaying_p): Now a boolean. Set it to 1 instead
6424 of incrementing it.
6425 (redisplay_internal, unwind_redisplay): Simply clear
6426 REDISPLAYING_P when unwinding, instead of saving its previous,
6427 always-false value and then restoring it.
6428
6429 Clean up some extern decls.
6430 Mostly, this hoists extern decls out of .c files and into .h files.
6431 That way, we're more likely to catch errors if the interfaces change.
6432 * alloc.c [USE_GTK]: Include "gtkutil.h" so that we need not
6433 declare xg_mark_data.
6434 * dispextern.h (x_frame_parm_handlers):
6435 * font.h (Qxft):
6436 * lisp.h (Qlexical_binding, Qinternal_interpreter_environment)
6437 (Qextra_light, Qlight, Qsemi_light, Qsemi_bold, Qbold, Qextra_bold)
6438 (Qultra_bold, Qoblique, Qitalic):
6439 Move extern decl here from .c file.
6440 * alloc.c (xg_mark_data) [USE_GTK]:
6441 * doc.c (Qclosure):
6442 * eval.c (Qlexical_binding):
6443 * fns.c (time) [!HAVE_UNISTD_H]:
6444 * gtkutil.c (Qxft, Qnormal, Qextra_light, Qlight, Qsemi_light)
6445 (Qsemi_bold, Qbold, Qextra_bold, Qultra_bold, Qoblique, Qitalic):
6446 * image.c (Vlibrary_cache, QCloaded_from) [HAVE_NTGUI]:
6447 * lread.c (Qinternal_interpreter_environment):
6448 * minibuf.c (Qbuffer):
6449 * process.c (QCfamily, QCfilter):
6450 * widget.c (free_frame_faces):
6451 * xfaces.c (free_frame_menubar) [USE_X_TOOLKIT]:
6452 * xfont.c (x_clear_errors):
6453 * xterm.c (x_frame_parm_handlers):
6454 Remove now-redundant extern decls.
6455 * keyboard.c, keyboard.h (ignore_mouse_drag_p) [USE_GTK || HAVE_NS]:
6456 * xfaces.c (Qultra_light, Qreverse_oblique, Qreverse_italic):
6457 Now static.
6458 * xfaces.c: Remove unnecessary static decls.
6459 * xterm.c (updating_frame): Remove decl of nonexistent object.
6460
6461 * Makefile.in (gl-stamp): Don't scan $(SOME_MACHINE_OBJECTS)
6462 when building globals.h, as the objects that are not built on
6463 this host are not needed to compile C files on this host.
6464
6465 2012-09-02 Jan Djärv <jan.h.d@swipnet.se>
6466
6467 * gtkutil.h: Remove prototype for x_wm_set_size_hint.
6468
6469 * frame.h: Add missing prototype for x_wm_set_size_hint.
6470
6471 2012-09-02 Paul Eggert <eggert@cs.ucla.edu>
6472
6473 * doc.c, editfns.c, insdel.c, intervals.c: Use bool for boolean.
6474 * doc.c (read_bytecode_char, get_doc_string, reread_doc_file)
6475 (Fdocumentation, Fdocumentation_property, Fsnarf_documentation)
6476 (Fsubstitute_command_keys):
6477 * editfns.c (region_limit, find_field, Fconstrain_to_field)
6478 (save_excursion_save, save_excursion_restore)
6479 (disassemble_lisp_time, decode_time_components, emacs_nmemftime)
6480 (format_time_string, general_insert_function)
6481 (make_buffer_string, make_buffer_string_both)
6482 (Fsubst_char_in_region, Ftranslate_region_internal, Fformat):
6483 * insdel.c (check_markers, gap_left, adjust_markers_for_insert)
6484 (copy_text, insert_1, insert_1_both, insert_from_string)
6485 (insert_from_string_before_markers, insert_from_string_1)
6486 (insert_from_buffer, insert_from_buffer_1, replace_range)
6487 (replace_range_2, del_range_1, del_range_byte, del_range_both)
6488 (del_range_2, modify_region):
6489 * intervals.c (intervals_equal, balance_possible_root_interval)
6490 (adjust_intervals_for_insertion, merge_properties_sticky)
6491 (graft_intervals_into_buffer, lookup_char_property)
6492 (adjust_for_invis_intang, set_point_both)
6493 (get_property_and_range, compare_string_intervals)
6494 (set_intervals_multibyte_1, set_intervals_multibyte):
6495 * keyboard.c (decode_timer):
6496 Use bool for boolean.
6497 * intervals.h, lisp.h, systime.h: Reflect above API changes.
6498 * editfns.c (struct info): Use 1-bit unsigned bitfields for booleans.
6499
6500 2012-09-02 Chong Yidong <cyd@gnu.org>
6501
6502 * keymap.c (push_key_description): Print M-TAB as C-M-i
6503 (Bug#11758).
6504
6505 2012-09-02 Juanma Barranquero <lekktu@gmail.com>
6506
6507 * makefile.w32-in (CCL_H, W32FONT_H): New macros.
6508 (ATIMER_H, FONT_H, $(BLD)/alloc.$(O), $(BLD)/callproc.$(O))
6509 ($(BLD)/editfns.$(O), $(BLD)/ccl.$(O), $(BLD)/chartab.$(O))
6510 ($(BLD)/coding.$(O), $(BLD)/sysdep.$(O), $(BLD)/fontset.$(O))
6511 ($(BLD)/sysdep.$(O), $(BLD)/w32fns.$(O), $(BLD)/keyboard.$(O))
6512 ($(BLD)/w32term.$(O), $(BLD)/w32menu.$(O), $(BLD)/process.$(O))
6513 ($(BLD)/w32font.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
6514
6515 2012-09-01 Eli Zaretskii <eliz@gnu.org>
6516
6517 * w32uniscribe.c (uniscribe_shape): Handle correctly the case of
6518 more than one grapheme cluster passed to the shaper: compute the
6519 offset adjustment values separately for each cluster. (Bug#11860)
6520
6521 * image.c: Restore mistakenly removed inclusion of w32.h. Without
6522 it, GCC doesn't see prototypes of w32_delayed_load, and complains
6523 about implicit conversions from integer to pointer.
6524
6525 2012-09-01 Daniel Colascione <dancol@dancol.org>
6526
6527 * w32fns.c (x_display_info_for_name): Prevent crash if w32 window
6528 system used too early.
6529
6530 2012-09-01 Paul Eggert <eggert@cs.ucla.edu>
6531
6532 Better seed support for (random).
6533 * emacs.c (main): Call init_random.
6534 * fns.c (Frandom): Set the seed from a string argument, if given.
6535 Remove long-obsolete Gentzel cruft.
6536 * lisp.h, sysdep.c (seed_random): Now takes address and size, not long.
6537 (init_random): New function.
6538
6539 2012-09-01 Daniel Colascione <dancol@dancol.org>
6540
6541 * xterm.h: Add header guards. Declare x_menubar_window_to_frame.
6542 Remove x_set_frame_alpha, x_bitmap_icon, x_make_frame_visible,
6543 x_make_frame_invisible, x_iconify_frame, x_free_frame_resources,
6544 x_wm_set_size_hint, x_query_colors, x_real_positions,
6545 x_set_menu_bar_lines, x_char_width, x_char_height, x_sync,
6546 x_set_tool_bar_lines, x_activate_menubar, and free_frame_menubar,
6547 all of which have been moved to common code.
6548
6549 * xfaces.c: Include TERM_HEADER instead of listing all possible
6550 window-system headers.
6551
6552 * w32xfns.c (x_sync): Correct definition of x_sync (a no-op here)
6553 to match header.
6554
6555 * w32term.h (FRAME_X_WINDOW): Use FRAME_W32_WINDOW instead of
6556 directly accessing frame internals.
6557
6558 * w32font.h: Include font.h. Define syms_of_w32font and
6559 globals_of_w32font.
6560
6561 * process.c: Include TERM_HEADER instead of listing all possible
6562 window-system headers.
6563
6564 * nsterm.h: Remove declarations now in frame.h.
6565 Define FRAME_X_SCREEN, FRAME_X_VISUAL.
6566
6567 * menu.c: Include TERM_HEADER instead of listing all possible
6568 window-system headers.
6569
6570 * keyboard.h: Declare ignore_mouse_drag_p whenever we have a
6571 window system.
6572
6573 * keyboard.c: Include TERM_HEADER instead of listing all possible
6574 window-system headers.
6575
6576 * image.c: Include TERM_HEADER instead of listing all possible
6577 window-system headers. Declare Vlibrary_cache when compiling for
6578 Windows.
6579
6580 * gtkutil.h (xg_list_node_): Include xterm.h to pick up needed
6581 window system declarations.
6582
6583 * frame.h: Move common functions here: set_frame_menubar,
6584 x_set_window_size, x_sync, x_get_focus_frame,
6585 x_set_mouse_position, x_set_mouse_pixel_position,
6586 x_make_frame_visible, x_make_frame_invisible, x_iconify_frame,
6587 x_char_width, x_char_height, x_pixel_width, x_pixel_height,
6588 x_set_frame_alpha, x_set_menu_bar_lines, x_set_tool_bar_lines,
6589 x_activate_menubar, x_real_positions, x_bitmap_icon,
6590 x_set_menu_bar_lines, free_frame_menubar, x_free_frame_resources,
6591 and x_query_colors.
6592
6593 * frame.c: Include TERM_HEADER instead of listing all possible
6594 window-system headers.
6595
6596 * font.c: Include TERM_HEADER instead of listing all possible
6597 window-system headers.
6598
6599 * emacs.c: Include TERM_HEADER.
6600
6601 * dispnew.c: Include TERM_HEADER instead of listing all possible
6602 window-system headers.
6603
6604 * ccl.h: Include character.h.
6605
6606 * Makefile.in: Define WINDOW_SYSTEM_OBJ to hold objects needed for
6607 the current window system; include in list of objects to link into
6608 Emacs.
6609
6610 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6611
6612 Remove mark_ttys function and fix tty_display_info initialization.
6613 * lisp.h (mark_ttys): Remove prototype.
6614 * alloc.c (Fgarbage_collect): Remove redundant (and the only) call
6615 to mark_ttys because all possible values of 'top_frame' slot are
6616 the frames which are reachable from Vframe_list.
6617 * term.c (mark_ttys): Remove.
6618 (init_tty): Safely initialize 'top_frame' slot with Qnil.
6619
6620 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6621
6622 Change struct frame bitfields from unsigned char to unsigned.
6623 * frame.h (struct frame): Change type of 'display_preempted',
6624 'visible', 'iconified', 'has_minibuffer', 'wants_modeline',
6625 'auto_raise', 'auto_lower', 'no_split', 'explicit_name',
6626 'window_sizes_changed', 'mouse_moved' and 'pointer_invisible'
6627 bitfields from unsigned char to unsigned.
6628
6629 2012-08-31 Dmitry Antipov <dmantipov@yandex.ru>
6630
6631 Remove unused member of struct x_output and struct w32_output.
6632 * xterm.h (struct x_output): Remove unused field 'needs_exposure'.
6633 * w32term.h (struct w32_output): Likewise.
6634
6635 2012-08-30 Jan Djärv <jan.h.d@swipnet.se>
6636
6637 * gtkutil.c (x_wm_set_size_hint): Use 1 col for base_width so it
6638 does not become zero (Bug#12234).
6639
6640 2012-08-30 Paul Eggert <eggert@cs.ucla.edu>
6641
6642 * dispnew.c (update_frame_1): Pacify gcc -Wstrict-overflow
6643 for GCC 4.7.1 x86-64.
6644
6645 2012-08-30 Glenn Morris <rgm@gnu.org>
6646
6647 * lread.c (init_lread): For out-of-tree builds, only add the
6648 source directory's site-lisp dir to the load-path if it exists,
6649 consistent with in-tree builds. (Bug#12302)
6650
6651 2012-08-28 Jan Djärv <jan.h.d@swipnet.se>
6652
6653 * nsmenu.m (initWithContentRect:styleMask:backing:defer:): Initialize
6654 button_values to NULL. Call setStykeMask so dialogs get a close button.
6655 (windowShouldClose:): Set window_closed.
6656 (dealloc): New member, free button_values.
6657 (process_dialog:): Make member function. Remove window argument,
6658 replace window with self. Count buttons and allocate and store values
6659 in button_values.
6660 (addButton:value:row:): value is int with the name tag. Call setTag
6661 with tag. Remove return self, declare return value as void.
6662 (addString:row:): Remove return self, declare return value as void.
6663 (addSplit): Remove return self, declare return value as void.
6664 (clicked:): Remove return self, declare return value as void.
6665 Set dialog_return to button_values[seltag]. Code formatting change.
6666 (initFromContents:isQuestion:): Adjust call to process_dialog.
6667 Code formatting change.
6668 (timeout_handler:): Set timer_fired to YES.
6669 (runDialogAt:): Set timer_fired to NO.
6670 Handle click on close button as quit.
6671
6672 * nsterm.h (EmacsDialogPanel): Make timer_fired BOOL.
6673 Add window_closed and button_values. Add void as return value for
6674 add(Button|String|Split). addButton takes int instead of Lisp_Object.
6675 Add process_dialog as new member.
6676
6677 2012-08-28 Eli Zaretskii <eliz@gnu.org>
6678
6679 * ralloc.c (free_bloc): Don't dereference a 'heap' structure if it
6680 is not one of the heaps we manage. (Bug#12242)
6681
6682 2012-08-28 Glenn Morris <rgm@gnu.org>
6683
6684 * eval.c (Fcalled_interactively_p): Doc fix. (Bug#11747)
6685
6686 2012-08-28 Martin Rudalics <rudalics@gmx.at>
6687
6688 * window.c (Fset_window_configuration): Remove handling of
6689 auto-buffer-name window parameter. Install revision of reverted
6690 fix.
6691
6692 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6693
6694 Do not allow to set major mode for a dead buffer.
6695 * buffer.c (Fset_buffer_major_mode): Signal an error
6696 if the buffer is dead.
6697 (Fother_buffer, other_buffer_safely): Remove redundant
6698 nested declaration.
6699
6700 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6701
6702 Always use set_buffer_if_live to restore original buffer at unwind.
6703 * buffer.h (record_unwind_current_buffer): New function.
6704 * bytecode.c, dispnew.c, editfns.c, fileio.c, fns.c, insdel.c:
6705 * keyboard.c, keymap.c, minibuf.c, print.c, process.c, textprop.c:
6706 * undo.c, window.c: Adjust users.
6707 * buffer.c (set_buffer_if_live): Fix comment.
6708
6709 2012-08-28 Dmitry Antipov <dmantipov@yandex.ru>
6710
6711 Fix usage of set_buffer_internal.
6712 * buffer.h (set_buffer_internal): Make it BUFFER_INLINE.
6713 * buffer.c (set_buffer_if_live): Use set_buffer_internal.
6714 * coding.c (decode_coding): Omit redundant test.
6715 * fileio.c (decide_coding_unwind): Likewise.
6716 * fns.c (secure_hash): Likewise.
6717 * insdel.c (modify_region): Likewise.
6718 * keyboard.c (command_loop_1): Likewise.
6719 * print.c (PRINTFINISH): Likewise.
6720 * xdisp.c (run_window_scroll_functions): Use set_buffer_internal.
6721
6722 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6723
6724 * dispnew.c: Use bool for boolean.
6725 (frame_garbaged, display_completed, delayed_size_change)
6726 (fonts_changed_p, add_window_display_history)
6727 (add_frame_display_history, verify_row_hash)
6728 (adjust_glyph_matrix, clear_window_matrices, glyph_row_slice_p)
6729 (row_equal_p, realloc_glyph_pool)
6730 (allocate_matrices_for_frame_redisplay)
6731 (showing_window_margins_p)
6732 (adjust_frame_glyphs_for_frame_redisplay)
6733 (build_frame_matrix_from_leaf_window, make_current)
6734 (mirrored_line_dance, mirror_line_dance, update_frame)
6735 (update_window_tree, update_single_window)
6736 (check_current_matrix_flags, update_window, update_text_area)
6737 (update_window_line, set_window_update_flags, scrolling_window)
6738 (update_frame_1, scrolling, buffer_posn_from_coords)
6739 (do_pending_window_change, change_frame_size)
6740 (change_frame_size_1, sit_for):
6741 Use bool for boolean.
6742 (clear_glyph_matrix_rows): Rename from enable_glyph_matrix_rows,
6743 and remove last int (actually boolean) argument, which was always 0.
6744 All callers changed.
6745 * dispextern.h, frame.h, lisp.h: Reflect above API changes.
6746 * dispextern.h (struct composition_it): Use bool for boolean.
6747 (struct glyph_matrix): Don't assume buffer sizes can fit in 'int'.
6748 (struct bidi_it): Use unsigned:1, not int, for boolean prev_was_pdf.
6749 * dired.c (file_name_completion):
6750 Use bool for boolean. (This was missed in an earlier change.)
6751
6752 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6753
6754 * window.c (Fset_window_configuration): Revert first part of
6755 last change.
6756
6757 2012-08-27 Jan Djärv <jan.h.d@swipnet.se>
6758
6759 * nsterm.h (NSPanel): New class variable dialog_return.
6760
6761 * nsmenu.m (initWithContentRect:styleMask:backing:defer:):
6762 Initialize dialog_return.
6763 (windowShouldClose:): Use stop instead of stopModalWithCode.
6764 (clicked:): Ditto, and also set dialog_return (Bug#12258).
6765 (timeout_handler:): Use stop instead of abortModal. Send a dummy
6766 event.
6767 (runDialogAt:): Make ret Lisp_Object. Set it from dialog_return when
6768 modal loop returns.
6769
6770 2012-08-27 Paul Eggert <eggert@cs.ucla.edu>
6771
6772 * composite.c, data.c, dbusbind.c, dired.c: Use bool for booleans.
6773 * composite.c (find_composition, composition_gstring_p)
6774 (composition_reseat_it, find_automatic_composition):
6775 * data.c (let_shadows_buffer_binding_p)
6776 (let_shadows_global_binding_p, set_internal, make_blv)
6777 (Fmake_variable_buffer_local, Fmake_local_variable)
6778 (Fmake_variable_frame_local, arithcompare, cons_to_unsigned)
6779 (cons_to_signed, arith_driver):
6780 * dbusbind.c (xd_in_read_queued_messages):
6781 * dired.c (directory_files_internal, file_name_completion):
6782 Use bool for booleans.
6783 * dired.c (file_name_completion):
6784 * process.h (fd_callback):
6785 Omit int (actually boolean) argument. It wasn't being used.
6786 All uses changed.
6787 * composite.h, lisp.h: Reflect above API changes.
6788
6789 * cmds.c, coding.c: Use bool for booleans.
6790 * cmds.c (move_point, Fself_insert_command):
6791 * coding.h (struct composition status, struct coding_system):
6792 * coding.c (detect_coding_utf_8, encode_coding_utf_8)
6793 (detect_coding_utf_16, encode_coding_utf_16, detect_coding_emacs_mule)
6794 (emacs_mule_char, decode_coding_emacs_mule)
6795 (encode_coding_emacs_mule, detect_coding_iso_2022)
6796 (decode_coding_iso_2022, encode_invocation_designation)
6797 (encode_designation_at_bol, encode_coding_iso_2022)
6798 (detect_coding_sjis, detect_coding_big5, decode_coding_sjis)
6799 (decode_coding_big5, encode_coding_sjis, encode_coding_big5)
6800 (detect_coding_ccl, encode_coding_ccl, decode_coding_raw_text)
6801 (encode_coding_raw_text, detect_coding_charset)
6802 (decode_coding_charset, encode_coding_charset, detect_eol)
6803 (detect_coding, get_translation_table, produce_chars)
6804 (consume_chars, reused_workbuf_in_use)
6805 (make_conversion_work_buffer, code_conversion_save)
6806 (decode_coding_object, encode_coding_object)
6807 (detect_coding_system, char_encodable_p)
6808 (Funencodable_char_position, code_convert_region)
6809 (code_convert_string, code_convert_string_norecord)
6810 (Fset_coding_system_priority):
6811 * fileio.c (Finsert_file_contents):
6812 Use bool for booleans.
6813 * coding.h, lisp.h: Reflect above API changes.
6814 * coding.c: Remove unnecessary static function decls.
6815 (detect_coding): Use unsigned, not signed, to copy an unsigned field.
6816 (decode_coding, encode_coding, decode_coding_gap): Return 'void',
6817 not a boolean 'int', since callers never look at the return value.
6818 (ALLOC_CONVERSION_WORK_AREA): Assume caller returns 'void', not 'int'.
6819 * coding.h (decoding_buffer_size, encoding_buffer_size)
6820 (emacs_mule_string_char): Remove unused extern decls.
6821 (struct iso_2022_spec, struct coding_system):
6822 Use 'unsigned int : 1' for boolean fields, since there's more than one.
6823 (struct emacs_mule_spec): Remove unused field 'full_support'.
6824 All initializations removed.
6825 * cmds.c (internal_self_insert): Don't assume EMACS_INT fits in 'int'.
6826
6827 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6828
6829 Fix spare memory change (Bug#12286).
6830 * alloc.c (mark_maybe_pointer): Handle MEM_TYPE_SPARE.
6831 (valid_lisp_object_p): Likewise.
6832
6833 2012-08-27 Martin Rudalics <rudalics@gmx.at>
6834
6835 * window.c (Fset_window_configuration): Record any window's old
6836 buffer if it's replaced (see Bug#8789). If the new current
6837 buffer doesn't appear in the selected window, go to its old
6838 point (Bug#12208).
6839
6840 2012-08-27 Dmitry Antipov <dmantipov@yandex.ru>
6841
6842 Special MEM_TYPE_SPARE to denote reserved memory.
6843 * alloc.c (enum mem_type): New memory type.
6844 (refill_memory_reserve): Use new type for spare memory.
6845 This prevents live_cons_p and live_string_p from incorrect
6846 detection of uninitialized objects from spare memory as live.
6847
6848 2012-08-26 Paul Eggert <eggert@cs.ucla.edu>
6849
6850 Spelling fixes.
6851 * Makefile.in (.PHONY): versioclean -> versionclean.
6852
6853 Remove unused external symbols.
6854 * data.c (Qcons, Qfloat, Qmisc, Qstring, Qvector):
6855 * window.c (Qwindow_valid_p, decode_valid_window):
6856 Now static, not extern.
6857 * data.c (Qinterval): Remove; unused.
6858 (syms_of_data): Do not define 'interval'.
6859 * lisp.h (Qinteger, Qstring, Qmisc, Qvector, Qfloat, Qcons):
6860 * window.h (decode_valid_window):
6861 Remove decls.
6862
6863 * character.c, charset.c, chartab.c: Use bool for booleans.
6864 * character.c (lisp_string_width, string_count_byte8)
6865 (string_escape_byte8):
6866 * charset.c (charset_map_loaded, load_charset_map, read_hex):
6867 (load_charset_map_from_file, map_charset_chars)
6868 (Fdefine_charset_internal, define_charset_internal)
6869 (Fdeclare_equiv_charset, find_charsets_in_text)
6870 (Ffind_charset_region, char_charset, Fiso_charset):
6871 * chartab.c (sub_char_table_ref, sub_char_table_ref_and_range)
6872 (sub_char_table_set, sub_char_table_set_range)
6873 (char_table_set_range, optimize_sub_char_table)
6874 (map_sub_char_table):
6875 Use bool for boolean.
6876 * character.c (str_to_unibyte): Omit last boolean argument; it was
6877 always 0. All callers changed.
6878 * character.h, charset.h: Adjust to match previous changes.
6879 * character.h (char_printable_p): Remove decl of nonexistent function.
6880 * charset.h (struct charset): Members code_linear_p, iso_chars_96,
6881 ascii_compatible_p, supplementary_p, compact_codes_p, unified_p
6882 are all boolean, so make them single-bit bitfields.
6883
6884 * lisp.h (ASET): Remove attempt to detect side effects.
6885 It was meant to be temporary and it often doesn't work,
6886 because when IDX has side effects the behavior of IDX==IDX
6887 is undefined. See Stefan Monnier in
6888 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00762.html>.
6889
6890 2012-08-26 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
6891
6892 * lisp.h (functionp): New function (extracted from Ffunctionp).
6893 (FUNCTIONP): Use it.
6894 * eval.c (Ffunctionp): Use it.
6895
6896 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6897
6898 * xgselect.c (xg_select): Use auto storage for the GPollFD buffer
6899 as that's faster and simpler than static storage. Don't bother
6900 with the g_main_context_query overhead if g_main_context_pending
6901 says no events are pending.
6902 (gfds, gfds_size): Remove these static vars.
6903 (xgselect_initialize): Remove; no longer needed.
6904 All uses and decls removed.
6905
6906 * emacs.c (fatal_error_signal_hook): Remove.
6907 All uses removed. This leftover from old code was always 0.
6908
6909 * casefiddle.c, casetab.c, category.c: Use bool for boolean.
6910 * casefiddle.c (casify_object, casify_region):
6911 * casetab.c (set_case_table):
6912 * category.c, category.h (word_boundary_p):
6913 * category.h (CHAR_HAS_CATEGORY):
6914 Use bool for booleans, instead of int.
6915
6916 2012-08-25 Eli Zaretskii <eliz@gnu.org>
6917
6918 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on $(GNU_LIB)/execinfo.h.
6919
6920 2012-08-25 Paul Eggert <eggert@cs.ucla.edu>
6921
6922 On assertion failure, print backtrace if available.
6923 * alloc.c [ENABLE_CHECKING]: Include <execinfo.h>.
6924 (die) [ENABLE_CHECKING]: Print a backtrace if available.
6925 * Makefile.in (LIB_EXECINFO): New macro.
6926 (LIBES): Use it.
6927
6928 * bytecode.c, callint.c, callproc.c: Use bool for boolean.
6929 * bytecode.c (exec_byte_code):
6930 * callint.c (check_mark, Fcall_interactively):
6931 * callproc.c (Fcall_process, add_env, child_setup, getenv_internal_1)
6932 (getenv_internal, sync_process_alive, call_process_exited):
6933 * lisp.h (USE_SAFE_ALLOCA):
6934 Use bool for booleans, instead of int.
6935 * lisp.h, process.h: Adjust prototypes to match above changes.
6936 * callint.c (Fcall_interactively): Don't assume the mark's
6937 offset fits in 'int'.
6938
6939 2012-08-24 Paul Eggert <eggert@cs.ucla.edu>
6940
6941 * buffer.c, buffer.h: Use bool for boolean.
6942 * buffer.c (reset_buffer_local_variables)
6943 (buffer_lisp_local_variables, Fset_buffer_modified_p)
6944 (Frestore_buffer_modified_p, Fset_buffer_multibyte):
6945 (overlays_at, overlays_in, mouse_face_overlay_overlaps)
6946 (overlay_touches_p, overlay_strings, Foverlay_put)
6947 (report_overlay_modification, call_overlay_mod_hooks):
6948 (mmap_enlarge, mmap_set_vars):
6949 * buffer.h (buffer_has_overlays, uppercasep, lowercasep):
6950 Use bool for booleans, instead of int.
6951 * buffer.c (compact_buffer, mmap_free_1): Return void, not int,
6952 since the 1-or-0 return value is always ignored anyway.
6953 (mmap_initialized_p):
6954 * buffer.h (struct buffer_text.inhibit_shrinking): Now bool, not int.
6955 * buffer.h, lisp.h: Adjust prototypes to match above changes.
6956
6957 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6958
6959 * bidi.c: Use bool for boolean.
6960 This is a bit more readable, and makes the text segment of bidi.o
6961 0.4% smaller on my platform (GCC 4.7.1 x86-64, Fedora 15).
6962 Presumably it's faster too.
6963 (bidi_initialized, bidi_ignore_explicit_marks_for_paragraph_level):
6964 Now bool.
6965 (bidi_cache_find_level_change, bidi_cache_iterator_state)
6966 (bidi_unshelve_cache, bidi_init_it, bidi_count_bytes)
6967 (bidi_char_at_pos, bidi_fetch_char, bidi_paragraph_init)
6968 (bidi_explicit_dir_char, bidi_level_of_next_char)
6969 (bidi_find_other_level_edge, bidi_move_to_visually_next):
6970 Use bool for booleans, instead of int.
6971 * dispextern.h (bidi_init_it, bidi_paragraph_init)
6972 (bidi_unshelve_cache): Adjust decls to match code.
6973
6974 2012-08-23 Martin Rudalics <rudalics@gmx.at>
6975
6976 * keyboard.c (Fposn_at_x_y): Do not allow internal window as
6977 argument.
6978
6979 2012-08-23 Paul Eggert <eggert@cs.ucla.edu>
6980
6981 * atimer.c, atimer.h (turn_on_atimers): Use bool for boolean.
6982 * atimer.h: Include <stdbool.h>.
6983
6984 2012-08-22 Dan Nicolaescu <dann@gnu.org>
6985
6986 * frame.h (FRAME_W32_P, FRAME_MSDOS_P, FRAME_NS_P): Change to
6987 compile time tests instead of run time tests on systems that do
6988 not use them.
6989 (FRAME_MAC_P): Remove leftover from deleted code.
6990 * frame.c (syms_of_frame): Remove leftover from deleted code.
6991
6992 2012-08-22 Jan Djärv <jan.h.d@swipnet.se>
6993
6994 * nsterm.m (insertText:): Don't clear modifiers if code is space.
6995
6996 2012-08-22 Paul Eggert <eggert@cs.ucla.edu>
6997
6998 * fontset.c (FONTSET_ADD): Return void, not Lisp_Object.
6999 Otherwise, the compiler complains about (A?B:C) where B is void
7000 and C is Lisp_Object. This fixes an incompatibility with Sun C 5.12.
7001 (fontset_add): Return void, for FONTSET_ADD.
7002
7003 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7004
7005 * alloc.c: Use bool for booleans.
7006 (gc_in_progress, abort_on_gc)
7007 (setjmp_tested_p) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7008 (dont_register_blocks) [GC_MALLOC_CHECK]:
7009 (suppress_checking) [ENABLE_CHECKING]: Now bool, not int.
7010 (check_string_bytes, make_specified_string, memory_full)
7011 (live_string_p, live_cons_p, live_symbol_p, live_float_p)
7012 (live_misc_p, live_vector_p, live_buffer_p, mark_maybe_object)
7013 (mark_stack, valid_pointer_p, make_pure_string)
7014 (Fgarbage_collect, survives_gc_p, gc_sweep):
7015 Use bool for booleans, instead of int.
7016 (test_setjmp) [!GC_SAVE_REGISTERS_ON_STACK && !GC_SETJMP_WORKS]:
7017 Remove unused local.
7018 * alloc.c (PURE_POINTER_P):
7019 * lisp.h (STRING_MULTIBYTE): Document that it returns a boolean.
7020 * editfns.c (Fformat):
7021 * fileio.c (Fexpand_file_name, Fsubstitute_in_file_name)
7022 (Fdo_auto_save):
7023 * fns.c (sweep_weak_table):
7024 * lisp.h (suppress_checking, push_message, survives_gc_p)
7025 (make_pure_string, gc_in_progress, abort_on_gc):
7026 * lread.c (readchar, read1):
7027 * print.c (Fprin1_to_string):
7028 * xdisp.c (push_message):
7029 Use bool for booleans affected directly or indirectly by
7030 alloc.c's changes.
7031
7032 Make recently-introduced setters macros.
7033 * fontset.c (set_fontset_id, set_fontset_name, set_fontset_ascii)
7034 (set_fontset_base, set_fontset_frame, set_fontset_nofont_face)
7035 (set_fontset_default, set_fontset_fallback): Rename from their
7036 upper-case counterparts, and make them functions rather than macros.
7037 This is more consistent with the other recently-introduced setters.
7038 These don't need to be inline, since they're local.
7039
7040 2012-08-21 Jan Djärv <jan.h.d@swipnet.se>
7041
7042 * nsterm.m (fd_handler:): Alloc and release a NSAutoreleasePool in
7043 the loop (Bug#12247).
7044
7045 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7046
7047 * lisp.h (vcopy): Use memcpy rather than our own loop.
7048 This fixes a performance regression introduced by the recent
7049 addition of vcopy. This means 'vcopy' will need to be modified
7050 for a copying collector, but that's OK. Also, tighten the
7051 checking in the assertion.
7052
7053 2012-08-21 Eli Zaretskii <eliz@gnu.org>
7054
7055 * w32uniscribe.c (uniscribe_shape): Fix producing gstring
7056 components for RTL text (Bug#11860). Adjust X-OFFSET of each
7057 non-base glyph for the width of the base character, according to
7058 what x_draw_composite_glyph_string_foreground expects.
7059 Generate WADJUST value according to composition_gstring_width's
7060 expectations, to produce correct width of the composed character.
7061 Reverse the sign of the DU offset produced by ScriptPlace.
7062
7063 2012-08-21 Paul Eggert <eggert@cs.ucla.edu>
7064
7065 * dbusbind.c (xd_remove_watch): Do not assume C99 comments.
7066
7067 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7068
7069 Avoid direct writes to contents member of struct Lisp_Vector.
7070 * lisp.h (vcopy): New function to copy data into vector.
7071 * dispnew.c (Fframe_or_buffer_changed_p): Use AREF and ASET.
7072 * fns.c (Ffillarray): Use ASET.
7073 * keyboard.c (timer_check_2): Use AREF and ASET.
7074 (append_tool_bar_item, Frecent_keys): Use vcopy.
7075 * lread.c (read_vector): Use ASET.
7076 * msdos.c (Frecent_doskeys): Use vcopy.
7077 * xface.c (Finternal_copy_lisp_face): Use vcopy.
7078 (Finternal_merge_in_global_face): Use ASET and vcopy.
7079 * xfont.c (xfont_list_pattern): Likewise.
7080
7081 2012-08-21 Martin Rudalics <rudalics@gmx.at>
7082
7083 * window.c (Fwindow_point): For the selected window always return
7084 the position of its buffer's point.
7085 (Fset_window_point): For the selected window always go in its
7086 buffer to the specified position.
7087
7088 2012-08-21 Dmitry Antipov <dmantipov@yandex.ru>
7089
7090 Setter macros for fontsets.
7091 * fontset.c (SET_FONTSET_ID, SET_FONTSET_NAME, SET_FONTSET_ASCII)
7092 (SET_FONTSET_BASE, SET_FONTSET_FRAME, SET_FONTSET_NOFONT_FACE)
7093 (SET_FONTSET_DEFAULT, SET_FONTSET_FALLBACK): New macros.
7094 Adjust users.
7095
7096 2012-08-20 Glenn Morris <rgm@gnu.org>
7097
7098 * Makefile.in (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
7099 Don't assume that `ln -f' works.
7100
7101 2012-08-20 Eli Zaretskii <eliz@gnu.org>
7102
7103 * .gdbinit: Use "set $dummy = ..." to avoid warnings from GDB 7.5
7104 and later about non-assignments with no effect. See discussion at
7105 http://sourceware.org/ml/gdb-patches/2012-08/msg00518.html for
7106 details.
7107
7108 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7109
7110 Inline setter functions for Lisp_Objects slots of struct specbinding.
7111 * eval.c (set_specpdl_symbol, set_specpdl_old_value): New functions.
7112 Adjust users.
7113
7114 2012-08-20 Martin Rudalics <rudalics@gmx.at>
7115
7116 * window.c (select_window): Always make selected window's buffer
7117 current.
7118
7119 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7120
7121 Use AREF and ASET for docstrings of category tables.
7122 * category.h (CATEGORY_DOCSTRING): Use AREF.
7123 (SET_CATEGORY_DOCSTRING): Use ASET.
7124 * category.c (Fdefine_category): Use SET_CATEGORY_DOCSTRING.
7125
7126 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7127
7128 Inline setter functions for hash table members.
7129 * lisp.h (set_hash_key, set_hash_value, set_hash_next)
7130 (set_hash_hash, set_hash_index): Rename with _slot suffix.
7131 (set_hash_key_and_value, set_hash_index, set_hash_next)
7132 (set_hash_hash): New functions.
7133 * charset.c, fns.c: Adjust users.
7134
7135 2012-08-20 Dmitry Antipov <dmantipov@yandex.ru>
7136
7137 Inline getter and setter functions for per-buffer values.
7138 * buffer.h (per_buffer_default, set_per_buffer_default)
7139 (per_buffer_value, set_per_buffer_value): New functions.
7140 (PER_BUFFER_VALUE, PER_BUFFER_DEFAULT): Remove.
7141 * buffer.c, data.c: Adjust users.
7142
7143 2012-08-20 Juanma Barranquero <lekktu@gmail.com>
7144
7145 * makefile.w32-in ($(BLD)/vm-limit.$(O)): Update dependencies.
7146
7147 2012-08-19 Paul Eggert <eggert@cs.ucla.edu>
7148
7149 Rely on <config.h> + <unistd.h> to declare 'environ',
7150 as gnulib does this if the system doesn't.
7151 * callproc.c, editfns.c, process.c (environ) [!USE_CRT_DLL]:
7152 Remove declaration. MS-Windows declares it on stdlib.h which is
7153 included by conf_post.h.
7154 * emacs.c (environ) [DOUG_LEA_MALLOC]:
7155 * vm-limit.c (environ) [ORDINARY_LINK]: Remove decl.
7156 * vm-limit.c: Include <unistd.h>, for 'environ'.
7157
7158 * unexaix.c, unexcoff.c: Include "mem-limits.h".
7159 (start_of_data): Remove decl; mem-limits.h provides it.
7160
7161 * xdisp.c (handle_invisible_prop): Make it a bit faster
7162 and avoid a gcc -Wmaybe-uninitialized diagnostic.
7163
7164 2012-08-19 Chong Yidong <cyd@gnu.org>
7165
7166 * xdisp.c (handle_invisible_prop): Fix ellipses at overlay string
7167 ends (Bug#3874).
7168
7169 2012-08-19 Andreas Schwab <schwab@linux-m68k.org>
7170
7171 * .gdbinit: Use call instead of set when calling a function in the
7172 inferior.
7173
7174 * data.c (set_internal): Don't use set_blv_found.
7175 (Fkill_local_variable): Likewise.
7176
7177 2012-08-18 Alp Aker <alp.tekin.aker@gmail.com>
7178
7179 * nsfont.m (ns_ascii_average_width): Ensure the string
7180 ascii_printable is initialized with a null-terminated character
7181 array. Otherwise, it can contain undesired extra characters.
7182
7183 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7184
7185 port new setting code to Sun C 5.8 2005/10/13
7186 * chartab.c, lisp.h (char_table_set, char_table_set_range):
7187 Return void, not Lisp_Object. Otherwise, the compiler
7188 complains about (A?B:C) where B is void and C is Lisp_Object
7189 when compiling CHAR_TABLE_SET, due to the recent change to
7190 the API of sub_char_table_set_contents.
7191
7192 2012-08-18 Chong Yidong <cyd@gnu.org>
7193
7194 * xdisp.c (handle_invisible_prop): Obey TEXT_PROP_MEANS_INVISIBLE
7195 for the string case (Bug#3874).
7196
7197 2012-08-18 Paul Eggert <eggert@cs.ucla.edu>
7198
7199 * buffer.h (BSET): Remove (Bug#12215).
7200 Replace all uses with calls to new setter functions.
7201 (bset_bidi_paragraph_direction, bset_case_canon_table)
7202 (bset_case_eqv_table, bset_directory, bset_display_count)
7203 (bset_display_time, bset_downcase_table)
7204 (bset_enable_multibyte_characters, bset_filename, bset_keymap)
7205 (bset_last_selected_window, bset_local_var_alist)
7206 (bset_mark_active, bset_point_before_scroll, bset_read_only)
7207 (bset_truncate_lines, bset_undo_list, bset_upcase_table)
7208 (bset_width_table):
7209 * buffer.c (bset_abbrev_mode, bset_abbrev_table)
7210 (bset_auto_fill_function, bset_auto_save_file_format)
7211 (bset_auto_save_file_name, bset_backed_up, bset_begv_marker)
7212 (bset_bidi_display_reordering, bset_buffer_file_coding_system)
7213 (bset_cache_long_line_scans, bset_case_fold_search)
7214 (bset_ctl_arrow, bset_cursor_in_non_selected_windows)
7215 (bset_cursor_type, bset_display_table, bset_extra_line_spacing)
7216 (bset_file_format, bset_file_truename, bset_fringe_cursor_alist)
7217 (bset_fringe_indicator_alist, bset_fringes_outside_margins)
7218 (bset_header_line_format, bset_indicate_buffer_boundaries)
7219 (bset_indicate_empty_lines, bset_invisibility_spec)
7220 (bset_left_fringe_width, bset_major_mode, bset_mark)
7221 (bset_minor_modes, bset_mode_line_format, bset_mode_name)
7222 (bset_name, bset_overwrite_mode, bset_pt_marker)
7223 (bset_right_fringe_width, bset_save_length)
7224 (bset_scroll_bar_width, bset_scroll_down_aggressively)
7225 (bset_scroll_up_aggressively, bset_selective_display)
7226 (bset_selective_display_ellipses, bset_vertical_scroll_bar_type)
7227 (bset_word_wrap, bset_zv_marker):
7228 * category.c (bset_category_table):
7229 * syntax.c (bset_syntax_table):
7230 New setter functions.
7231
7232 * process.h (PSET): Remove (Bug#12215).
7233 Replace all uses with calls to new setter functions.
7234 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7235 (PROCESS_INLINE): New macro.
7236 (pset_childp): New setter function.
7237 (pset_gnutls_cred_type) [HAVE_GNUTLS]: New setter function.
7238 * process.c (PROCESS_INLINE):
7239 Define to EXTERN_INLINE, so that the corresponding functions
7240 are compiled into code.
7241 (pset_buffer, pset_command, pset_decode_coding_system)
7242 (pset_decoding_buf, pset_encode_coding_system)
7243 (pset_encoding_buf, pset_filter, pset_log, pset_mark, pset_name)
7244 (pset_plist, pset_sentinel, pset_status, pset_tty_name)
7245 (pset_type, pset_write_queue): New setter functions.
7246
7247 * window.h (WSET): Remove (Bug#12215).
7248 Replace all uses with calls to new setter functions.
7249 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7250 (WINDOW_INLINE): New macro.
7251 (wset_buffer, wset_frame, wset_left_col, wset_next, wset_prev)
7252 (wset_redisplay_end_trigger, wset_top_line, wset_total_cols)
7253 (wset_total_lines, wset_vertical_scroll_bar)
7254 (wset_window_end_pos, wset_window_end_valid)
7255 (wset_window_end_vpos): New setter functions.
7256 * window.c (WINDOW_INLINE):
7257 Define to EXTERN_INLINE, so that the corresponding functions
7258 are compiled into code.
7259 (wset_combination_limit, wset_dedicated, wset_display_table)
7260 (wset_hchild, wset_left_fringe_width, wset_left_margin_cols)
7261 (wset_new_normal, wset_new_total, wset_next_buffers)
7262 (wset_normal_cols, wset_normal_lines, wset_parent, wset_pointm)
7263 (wset_prev_buffers, wset_right_fringe_width)
7264 (wset_right_margin_cols, wset_scroll_bar_width, wset_start)
7265 (wset_temslot, wset_vchild, wset_vertical_scroll_bar_type)
7266 (wset_window_parameters):
7267 * xdisp.c (wset_base_line_number, wset_base_line_pos)
7268 (wset_column_number_displayed, wset_region_showing):
7269 New setter functions.
7270
7271 * termhooks.h (TSET): Remove (Bug#12215).
7272 Replace all uses with calls to new setter functions.
7273 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7274 (TERMHOOKS_INLINE): New macro.
7275 (tset_charset_list, tset_selection_alist): New setter functions.
7276 * terminal.c (TERMHOOKS_INLINE):
7277 Define to EXTERN_INLINE, so that the corresponding functions
7278 are compiled into code.
7279 (tset_param_alist): New setter function.
7280
7281 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7282
7283 * keyboard.h (KSET): Remove (Bug#12215).
7284 Replace all uses with calls to new setter functions.
7285 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7286 (KEYBOARD_INLINE): New macro.
7287 (kset_default_minibuffer_frame, kset_defining_kbd_macro)
7288 (kset_input_decode_map, kset_last_command, kset_last_kbd_macro)
7289 (kset_prefix_arg, kset_system_key_alist, kset_window_system):
7290 New setter functions.
7291 * keyboard.c (KEYBOARD_INLINE):
7292 Define to EXTERN_INLINE, so that the corresponding functions
7293 are compiled into code.
7294 (kset_echo_string, kset_kbd_queue)
7295 (kset_keyboard_translate_table, kset_last_prefix_arg)
7296 (kset_last_repeatable_command, kset_local_function_key_map)
7297 (kset_overriding_terminal_local_map, kset_real_last_command)
7298 (kset_system_key_syms): New setter functions.
7299
7300 * frame.h (FSET): Remove (Bug#12215).
7301 Replace all uses with calls to new setter functions.
7302 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
7303 (FRAME_INLINE): New macro.
7304 (fset_buffer_list, fset_buried_buffer_list, fset_condemned_scroll_bars)
7305 (fset_current_tool_bar_string, fset_desired_tool_bar_string)
7306 (fset_face_alist, fset_focus_frame, fset_icon_name, fset_menu_bar_items)
7307 (fset_menu_bar_vector, fset_menu_bar_window, fset_name)
7308 (fset_param_alist, fset_root_window, fset_scroll_bars)
7309 (fset_selected_window, fset_title, fset_tool_bar_items)
7310 (fset_tool_bar_position, fset_tool_bar_window): New functions.
7311 * frame.c (FRAME_INLINE):
7312 Define to EXTERN_INLINE, so that the corresponding functions
7313 are compiled into code.
7314 (fset_buffer_predicate, fset_minibuffer_window): New setter functions.
7315
7316 A few more naming-convention fixes for getters and setters.
7317 * buffer.c (set_buffer_overlays_before): Move here from buffer.h,
7318 and rename from buffer_overlays_set_before.
7319 (set_buffer_overlays_after): Move here from buffer.h, and rename
7320 from buffer_overlays_set_after.
7321 * buffer.h (buffer_intervals): Rename from buffer_get_intervals.
7322 All uses changed.
7323 (set_buffer_intervals): Rename from buffer_set_intervals.
7324 * intervals.c (set_interval_object): Move here from intervals.h,
7325 and rename from interval_set_object.
7326 (set_interval_left): Move here from intervals.h, and rename from
7327 interval_set_left.
7328 (set_interval_right): Move here from intervals.h, and rename from
7329 interval_set_right.
7330 (copy_interval_parent): Move here from intervals.h, and rename from
7331 interval_copy_parent.
7332 * intervals.h (set_interval_parent): Rename from interval_set_parent.
7333 (set_interval_plist): Rename from interval_set_plist.
7334 Return void, not Lisp_Object, since no caller uses the result.
7335 * lisp.h (string_intervals): Rename from string_get_intervals.
7336 (set_string_intervals): Rename from string_set_intervals.
7337
7338 * lisp.h (set_char_table_extras): Rename from char_table_set_extras.
7339 (set_char_table_contents): Rename from char_table_set_contents.
7340 (set_sub_char_table_contents): Rename from sub_char_table_set_contents.
7341 All uses changed. See the end of
7342 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00549.html>.
7343
7344 * lisp.h (CSET): Remove (Bug#12215).
7345 (set_char_table_ascii, set_char_table_defalt, set_char_table_parent)
7346 (set_char_table_purpose): New functions,
7347 replacing CSET. All uses changed. For example, replace
7348 "CSET (XCHAR_TABLE (char_table), parent, parent);" with
7349 "set_char_table_parent (char_table, parent);".
7350 The old version was confusing because it used the same name
7351 'parent' for two different things.
7352
7353 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7354
7355 Functions to get and set Lisp_Object fields of buffer-local variables.
7356 * lisp.h (blv_found, set_blv_found, blv_value, set_blv_value)
7357 (set_blv_where, set_blv_defcell, set_blv_valcell): New functions.
7358 (BLV_FOUND, SET_BLV_FOUND, BLV_VALUE, SET_BLV_VALUE): Remove.
7359 * data.c, eval.c, frame.c: Adjust users.
7360
7361 2012-08-17 Chong Yidong <cyd@gnu.org>
7362
7363 * xfaces.c (merge_face_vectors): If the target font specfies a
7364 font spec, make the font's attributes take precedence over
7365 directly-specified attributes.
7366 (merge_face_ref): Recognize :font.
7367
7368 2012-08-17 Dmitry Antipov <dmantipov@yandex.ru>
7369
7370 Do not use memcpy for copying intervals.
7371 * intervals.c (reproduce_interval): New function.
7372 (reproduce_tree, reproduce_tree_obj): Use it.
7373 (reproduce_tree_obj): Remove prototype.
7374
7375 2012-08-17 Paul Eggert <eggert@cs.ucla.edu>
7376
7377 * lisp.h (duration_to_sec_usec): Remove unused decl.
7378
7379 2012-08-17 Alp Aker <alp.tekin.aker@gmail.com>
7380
7381 * nsfont.m (ns_ascii_average_width): Send initWithFormat selector
7382 to an allocated instance of NSString, not to the class itself.
7383
7384 2012-08-17 Juanma Barranquero <lekktu@gmail.com>
7385
7386 * makefile.w32-in (C_CTYPE_H): New macro.
7387 (LISP_H, $(BLD)/ccl.$(O), $(BLD)/doc.$(O), $(BLD)/w32console.$(O)):
7388 ($(BLD)/fontset.$(O), $(BLD)/frame.$(O), $(BLD)/composite.$(O)):
7389 ($(BLD)/sysdep.$(O), $(BLD)/w32uniscribe.$(O)): Update dependencies.
7390
7391 2012-08-16 Paul Eggert <eggert@cs.ucla.edu>
7392
7393 Use ASCII tests for character types.
7394 * category.c, dispnew.c, doprnt.c, editfns.c, syntax.c, term.c:
7395 * xfns.c, xterm.c:
7396 Don't include <ctype.h>; was not needed.
7397 * charset.c, doc.c, fileio.c, font.c, frame.c, gtkutil.c, image.c:
7398 * sysdep.c, xfaces.c:
7399 Include <c-ctype.h> instead of <ctype.h>.
7400 * nsterm.m: Include <c-ctype.h>.
7401 * charset.c (read_hex):
7402 * doc.c (Fsnarf_documentation):
7403 * fileio.c (IS_DRIVE) [WINDOWSNT]:
7404 (DRIVE_LETTER) [DOS_NT]:
7405 (Ffile_name_directory, Fexpand_file_name)
7406 (Fsubstitute_in_file_name):
7407 * font.c (font_parse_xlfd, font_parse_fcname):
7408 * frame.c (x_set_font_backend):
7409 * gtkutil.c (xg_get_font):
7410 * image.c (xbm_scan, xpm_scan, pbm_scan_number):
7411 * nsimage.m (hexchar):
7412 * nsterm.m (ns_xlfd_to_fontname):
7413 * sysdep.c (system_process_attributes):
7414 * xfaces.c (hash_string_case_insensitive):
7415 Use C-locale tests instead of locale-specific tests for character
7416 types, since we want the ASCII interpretation here, not the
7417 interpretation suitable for whatever happens to be the current locale.
7418
7419 2012-08-16 Martin Rudalics <rudalics@gmx.at>
7420
7421 Consistently check windows for validity/liveness
7422 (Bug#11984, Bug#12025, Bug#12026).
7423 * lisp.h (CHECK_VALID_WINDOW): New macro.
7424 * window.c (decode_window): Rename to decode_live_window.
7425 (decode_valid_window, Fwindow_valid_p): New functions.
7426 (Fwindow_frame, Fframe_root_window, Fwindow_minibuffer_p)
7427 (Fframe_first_window, Fframe_selected_window, Fwindow_parent)
7428 (Fwindow_top_child, Fwindow_left_child, Fwindow_next_sibling)
7429 (Fwindow_prev_sibling, Fwindow_combination_limit)
7430 (Fset_window_combination_limit, Fwindow_use_time)
7431 (Fwindow_total_height, Fwindow_total_width, Fwindow_new_total)
7432 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_left_column)
7433 (Fwindow_top_line, Fwindow_body_height, Fwindow_body_width)
7434 (Fwindow_hscroll, Fset_window_hscroll)
7435 (Fwindow_redisplay_end_trigger)
7436 (Fset_window_redisplay_end_trigger, Fwindow_edges)
7437 (Fwindow_pixel_edges, Fwindow_absolute_pixel_edges)
7438 (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
7439 (Fcoordinates_in_window_p, Fwindow_point, Fwindow_start)
7440 (Fwindow_end, Fset_window_point, Fset_window_start)
7441 (Fpos_visible_in_window_p, Fwindow_line_height)
7442 (Fwindow_dedicated_p, Fset_window_dedicated_p)
7443 (Fwindow_prev_buffers, Fset_window_prev_buffers)
7444 (Fwindow_next_buffers, Fwindow_parameters, Fwindow_parameter)
7445 (Fset_window_parameter, Fwindow_display_table)
7446 (Fset_window_display_table, Fdelete_other_windows_internal)
7447 (Fset_window_buffer, Fset_window_new_total)
7448 (Fset_window_new_normal, Fdelete_window_internal)
7449 (Fwindow_text_height, Fset_window_margins, Fwindow_margins)
7450 (Fset_window_fringes, Fwindow_fringes, Fset_window_scroll_bars)
7451 (Fwindow_scroll_bars): Check whether argument window is a valid or
7452 live window. Update doc-strings.
7453 (syms_of_window): New symbol Qwindow_valid_p.
7454 * keyboard.c (Fposn_at_x_y): Check whether argument
7455 frame_or_window denotes a valid window.
7456
7457 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7458
7459 Fix previous char table change.
7460 * lisp.h (CHAR_TABLE_SET): Use sub_char_table_set_contents.
7461 * chartab.c (optimize_sub_char_table): Likewise.
7462
7463 2012-08-16 Chong Yidong <cyd@gnu.org>
7464
7465 * gtkutil.c (xg_get_font): Demand an Xft font (Bug#3228).
7466
7467 * xfont.c (xfont_open):
7468 * xftfont.c (xftfont_open): Set the font's max_width field.
7469
7470 * nsfont.m (nsfont_open): Similar to the Xft backend, set
7471 min_width to space_width and average_width to the average over
7472 printable ASCII characters.
7473 (ns_char_width): Code cleanup.
7474 (ns_ascii_average_width): New utility function.
7475
7476 * font.h (struct font): Update comments.
7477
7478 2012-08-16 Dmitry Antipov <dmantipov@yandex.ru>
7479
7480 Simple interface to set Lisp_Object fields of character tables.
7481 * lisp.h (CSET): New macro.
7482 (char_table_set_extras, char_table_set_contents)
7483 (sub_char_table_set_contents): New function.
7484 * casetab.c, category.c, chartab.c, fns.c, fontset.c, search.c:
7485 * syntax.c: Adjust users.
7486
7487 2012-08-16 Stefan Monnier <monnier@iro.umontreal.ca>
7488
7489 * eval.c (eval_sub): Bind lexical-binding.
7490 * lread.c (Qlexical_binding): Make non-static.
7491
7492 2012-08-15 Jan Djärv <jan.h.d@swipnet.se>
7493
7494 * nsmenu.m (popupSession): Remove.
7495 (pop_down_menu): Remove endModalSession.
7496 (timeout_handler:): New method.
7497 (runDialogAt:): Get next timeout. Start a NSTimer with that timeout.
7498 Call runModalForWindow. Check timer_fired when it returns.
7499 If not set, cancel timer and break out of loop.
7500 Otherwise loop again, with a new timeout.
7501
7502 * nsterm.m: Include fcntl.h if present.
7503 (fd_entry, t_readfds, inNsSelect): Remove.
7504 (select_writefds, select_valid, select_timeout, selfds)
7505 (select_mutex, apploopnr): Add.
7506 (EV_TRAILER): Call kbd_buffer_store_event_hold only if q_event_ptr.
7507 Otherwise call kbd_buffer_store_event.
7508 (ns_send_appdefined): Remove release of fd_entry.
7509 (ns_read_socket): Always send appdefined. Remove inNsSelect check.
7510 Increment and decrement apploopnr.
7511 (ns_select): If no file descriptors, just do a NSTimer.
7512 Otherwise copy read/write masks and start select thread (fd_handler).
7513 Start main loop and wait for application defined event.
7514 Inform select thread to stop selecting after main loop is exited.
7515 (ns_term_init): Create selfds pipe and set non-blocking.
7516 Initialize select_mutex. Start the select thread (fd_handler).
7517 (fd_handler:): Loop forever, wait for info from the main thread
7518 to either start or stop selecting. When select returns, send
7519 and appdefined event.
7520 (sendScrollEventAtLoc:fromEvent:): Check if q_event_ptr is set.
7521 If not call kbd_buffer_store_event.
7522
7523 * nsterm.h (EmacsApp): fd_handler takes id argument.
7524 (EmacsDialogPanel): Add timer_fired and timeout_handler.
7525
7526 * gtkutil.c (xg_mark_data): Use FRAME_X_P.
7527
7528 2012-08-15 Eli Zaretskii <eliz@gnu.org>
7529
7530 * region-cache.c (move_cache_gap): Update gap_len using the actual
7531 growth of the boundaries array. Do not change cache_len.
7532 (Bug#12196)
7533
7534 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7535
7536 Generalize and cleanup font subsystem checks.
7537 * font.h (FONT_DEBUG, font_assert): Remove.
7538 * font.c, fontset.c, w32font.c, xfont.c, xftfont.c:
7539 Change font_assert to eassert. Use eassert where appropriate.
7540
7541 2012-08-15 Dmitry Antipov <dmantipov@yandex.ru>
7542
7543 * gtkutil.c (xg_get_font): Use pango_units_to_double.
7544
7545 2012-08-15 Chong Yidong <cyd@gnu.org>
7546
7547 * gtkutil.c (xg_get_font): Rename from xg_get_font_name.
7548 When using the new font chooser, use gtk_font_chooser_get_font_desc to
7549 extract the font descriptor instead of just the font name.
7550 In that case, return a font spec instead of a string.
7551 (x_last_font_name): Move to this file from xfns.c.
7552
7553 * xfns.c (Fx_select_font): The return value can also be a font
7554 spec. Move x_last_font_name management to gtkutil.c.
7555
7556 * xfaces.c: Make font weight and style symbols non-static.
7557
7558 2012-08-15 Stefan Monnier <monnier@iro.umontreal.ca>
7559
7560 * minibuf.c (read_minibuf): Ignore caller's inhibit-read-only
7561 (bug#12117).
7562
7563 2012-08-14 Stefan Monnier <monnier@iro.umontreal.ca>
7564
7565 * alloc.c (Fgarbage_collect): Use plural form consistently.
7566
7567 2012-08-14 Eli Zaretskii <eliz@gnu.org>
7568
7569 * keyboard.c (command_loop_1): Reset ignore_mouse_drag_p flag each
7570 iteration through the command loop. Fixes a problem whereby mouse
7571 movements are ignored until the first mouse click.
7572
7573 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7574
7575 Use bool, not int, for Lisp booleans.
7576 This is more natural, and on my platform (GCC 4.7.1 x86-64) it
7577 makes Emacs a bit smaller and presumably a bit faster.
7578 * lisp.h: Include <stdbool.h>.
7579 (struct Lisp_Boolfwd, defvar_bool):
7580 * lread.c (defvar_bool): Use bool, not int, for Lisp booleans.
7581 * regex.c [!emacs]: Include <stdbool.h>.
7582 (false, true): Remove; <stdbool.h> does this for us now.
7583
7584 2012-08-14 Chong Yidong <cyd@gnu.org>
7585
7586 * character.c (Fcharacterp): Doc fix (Bug#12076).
7587
7588 * data.c (Findirect_variable): Doc fix (Bug#11040).
7589
7590 * chartab.c (Fmap_char_table): Doc fix (Bug#12061).
7591
7592 * editfns.c (Fformat): Doc fix (Bug#12059).
7593 (Fsave_current_buffer): Doc fix (Bug#11542).
7594
7595 2012-08-14 Barry OReilly <gundaetiapo@gmail.com> (tiny change)
7596
7597 * keyboard.c (access_keymap_keyremap): Accept anonymous functions
7598 (bug#12022).
7599
7600 2012-08-14 Martin Rudalics <rudalics@gmx.at>
7601
7602 * frame.c (make_frame_without_minibuffer, make_minibuffer_frame)
7603 (delete_frame, Fmake_frame_invisible, Ficonify_frame):
7604 * minibuf.c (choose_minibuf_frame, read_minibuf):
7605 * w32fns.c (x_create_tip_frame):
7606 * xfns.c (x_create_tip_frame): Call set_window_buffer instead of
7607 Fset_window_buffer (Bug#11984, Bug#12025, Bug#12026).
7608
7609 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7610
7611 * intervals.c (offset_intervals): Remove obsolete comment.
7612
7613 2012-08-14 Andreas Schwab <schwab@linux-m68k.org>
7614
7615 * gtkutil.c (find_rtl_image, update_frame_tool_bar): Use NILP.
7616
7617 2012-08-14 Gergely Risko <gergely@risko.hu>
7618
7619 * coding.c (decode_coding): Record buffer modification before
7620 disabling undo_list (Bug#11773).
7621
7622 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7623
7624 Revert and cleanup some recent overlay changes.
7625 * buffer.h (enum overlay_type): Remove.
7626 (buffer_get_overlays, buffer_set_overlays): Likewise.
7627 (buffer_set_overlays_before, buffer_set_overlays_after):
7628 New function. Adjust users.
7629 (unchain_both): Add eassert.
7630
7631 2012-08-14 Dmitry Antipov <dmantipov@yandex.ru>
7632
7633 * gtkutil.c (update_frame_tool_bar): Use EQ where appropriate.
7634
7635 2012-08-14 Paul Eggert <eggert@cs.ucla.edu>
7636
7637 * gtkutil.c (xg_mark_data): Don't assume C99.
7638
7639 2012-08-13 Jan Djärv <jan.h.d@swipnet.se>
7640
7641 * gtkutil.c (xg_frame_tb_info): New struct.
7642 (TB_INFO_KEY): New define.
7643 (xg_free_frame_widgets): Free xg_frame_tb_info for frame if present.
7644 (xg_mark_data): Mark Lisp_Objects in xg_frame_tb_info.
7645 (xg_create_tool_bar): Allocate and initialize a xg_frame_tb_info
7646 if not present.
7647 (update_frame_tool_bar): Return early if data in xg_frame_tb_info
7648 is up to date. Otherwise store new data.
7649 (free_frame_tool_bar): Free xg_frame_tb_info if present.
7650
7651 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7652
7653 Use KSET for write access to Lisp_Object members of struct kboard.
7654 * keyboard.h (KSET): New macro.
7655 * callint.c, category.c, frame.c, keyboard.c, keyboard.h, macros.c:
7656 * msdos.c, nsfns.m, nsterm.m, term.c, w32fns.c, w32term.c, xfns.c:
7657 * xterm.c: Adjust users.
7658
7659 2012-08-13 Dmitry Antipov <dmantipov@yandex.ru>
7660
7661 Use BSET for write access to Lisp_Object members of struct buffer.
7662 * buffer.h (BSET): New macro.
7663 * buffer.c, casetab.c, cmds.c, coding.c, data.c, editfns.c:
7664 * fileio.c, frame.c, indent.c, insdel.c, intervals.c, keymap.c:
7665 * minibuf.c, print.c, process.c, syntax.c, undo.c, w32fns.c:
7666 * window.c, xdisp.c, xfns.c: Adjust users.
7667
7668 2012-08-11 BT Templeton <bpt@hcoop.net> (tiny change)
7669
7670 * lread.c (syms_of_lread): Initialize Vlexical_binding.
7671
7672 2012-08-11 Jan Djärv <jan.h.d@swipnet.se>
7673
7674 * nsterm.m (not_in_argv): New function.
7675 (application:openFile, application:openTempFile:):
7676 (application:openFileWithoutUI:, application:openFiles:): Open file
7677 if not_in_argv returns non-zero (bug#12171).
7678
7679 * gtkutil.c (gtk_font_chooser_dialog_new, GTK_FONT_CHOOSER)
7680 (gtk_font_chooser_set_font, gtk_font_chooser_get_font):
7681 Define for Gtk+ versions less than 3.2.
7682 (xg_get_font_name): Use those functions/macros here.
7683 Reported by Frans Oilinki <moilinki@gmail.com>.
7684
7685 2012-08-11 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
7686
7687 * unexmacosx.c (copy_data_segment): Copy initialized data in
7688 statically linked libraries from input file rather than memory.
7689
7690 * unexmacosx.c (print_load_command_name): Add cases LC_MAIN,
7691 LC_SOURCE_VERSION, and LC_DYLIB_CODE_SIGN_DRS.
7692 (dump_it) [LC_DYLIB_CODE_SIGN_DRS]: Call copy_linkedit_data.
7693
7694 2012-08-10 Glenn Morris <rgm@gnu.org>
7695
7696 * conf_post.h (IF_LINT, lint_assume): Move here from lisp.h.
7697 * lisp.h (IF_LINT, lint_assume): Move to conf_post.h.
7698
7699 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7700
7701 Fix last change to allow compilation with low optimization levels.
7702 * intervals.c (INTERVALS_INLINE): Define to EXTERN_INLINE.
7703 Reported by Jan Djärv <jan.h.d@swipnet.se>.
7704
7705 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7706
7707 Use common inline syntax in intervals.h.
7708 * intervals.h (INTERVALS_INLINE): New macro.
7709 Change all users from LISP_INLINE.
7710
7711 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7712
7713 Define Qnone once for all platforms.
7714 * frame.c (Qnone): Define here.
7715 (syms_of_frame): DEFSYM it.
7716 * lisp.h (Qnone): New declaration.
7717 * nsfns.m, nsterm.h, nsterm.m, w32fns.c, w32font.c:
7718 * xfns.c: Remove duplication. Adjust users.
7719
7720 2012-08-10 Dmitry Antipov <dmantipov@yandex.ru>
7721
7722 Remove unused macros from intervals.h.
7723 * intervals.h (MERGE_INSERTIONS, DISPLAY_INVISIBLE_GLYPH): Remove.
7724 * intervals.c: Adjust comment.
7725
7726 2012-08-10 Eli Zaretskii <eliz@gnu.org>
7727
7728 * w32fns.c <w32_unicode_gui>: New static variable.
7729 (globals_of_w32fns): Initialize it according to os_subtype.
7730 (w32_init_class, w32_msg_pump, w32_wnd_proc): Use it instead of
7731 testing os_subtype.
7732
7733 2012-08-10 Joakim Hårsman <joakim.harsman@gmail.com> (tiny change)
7734 Eli Zaretskii <eliz@gnu.org>
7735
7736 Fix bug #10299 with Unicode characters sent by customized
7737 keyboards created by MSKLC.
7738 * w32fns.c (INIT_WINDOW_CLASS): New macro.
7739 (w32_init_class): Use it to initialize the Emacs class with either
7740 ANSI or Unicode API calls.
7741 (w32_msg_pump): Call GetMessageW and DispatchMessageW on NT and
7742 later.
7743 (w32_wnd_proc): If the character code sent by WM_CHAR or
7744 WM_SYSCHAR is above 255, post a WM_UNICHAR message, not the
7745 original message. Call DefWindowProcW on NT and later.
7746
7747 2012-08-10 Glenn Morris <rgm@gnu.org>
7748
7749 * Makefile.in (config_h): Fix conf_post.h out-of-tree build location.
7750
7751 * lisp.h (DIRECTORY_SEP): Let configure set it.
7752
7753 2012-08-09 Dmitry Antipov <dmantipov@yandex.ru>
7754
7755 Use TSET for write access to Lisp_Object slots of struct terminal.
7756 * termhooks.h (TSET): New macro.
7757 * coding.c, terminal.c, xselect.c: Adjust users.
7758
7759 2012-08-08 Stefan Monnier <monnier@iro.umontreal.ca>
7760
7761 * xdisp.c (safe_eval_handler): Remove prototype. Receive args describing
7762 the failing expression, include them in the error message.
7763 * eval.c (internal_condition_case_n): Pass nargs and args to hfun.
7764 * lisp.h (internal_condition_case_n): Update declaration.
7765
7766 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7767
7768 Inline functions to examine and change buffer overlays.
7769 * buffer.c (unchain_both): New function.
7770 * buffer.h (buffer_get_overlays, buffer_set_overlays):
7771 (buffer_has_overlays): New function.
7772 (enum overlay_type): New enum.
7773 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c:
7774 * insdel.c, intervals.c, print.c, xdisp.c: Adjust users.
7775
7776 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7777
7778 Inline functions to examine and change buffer intervals.
7779 * alloc.c (mark_interval_tree): Remove.
7780 (MARK_INTERVAL_TREE): Simplify.
7781 (UNMARK_BALANCE_INTERVALS): Remove. Adjust users.
7782 * intervals.c (buffer_balance_intervals): New function.
7783 (graft_intervals_into_buffer): Adjust indentation.
7784 (set_intervals_multibyte): Simplify.
7785 * buffer.h (BUF_INTERVALS): Remove.
7786 (buffer_get_intervals, buffer_set_intervals): New function.
7787 * alloc.c, buffer.c, editfns.c, fileio.c, indent.c, insdel.c:
7788 * intervals.c, textprop.c: Adjust users.
7789
7790 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7791
7792 Inline functions to examine and change string intervals.
7793 * lisp.h (STRING_INTERVALS, STRING_SET_INTERVALS): Remove.
7794 (string_get_intervals, string_set_intervals): New function.
7795 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7796 * lread.c, print.c, textprop.c: Adjust users.
7797
7798 2012-08-08 Glenn Morris <rgm@gnu.org>
7799
7800 * lisp.mk (lisp): Remove language/persian.elc.
7801
7802 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7803
7804 Cleanup intervals.
7805 * intervals.h (NULL_INTERVAL, DEFAULT_INTERVAL): Remove.
7806 (NULL_INTERVAL_P): Likewise. Adjust users.
7807 (FRONT_STICKY_P, END_NONSTICKY_P, FRONT_NONSTICKY_P):
7808 Adjust comment. Move under #if 0.
7809 * alloc.c, buffer.c, editfns.c, fns.c, insdel.c, intervals.c:
7810 * print.c, syntax.c, textprop.c, xdisp.c: Adjust users.
7811
7812 2012-08-08 Dmitry Antipov <dmantipov@yandex.ru>
7813
7814 Check total length of intervals with eassert.
7815 * intervals.h (CHECK_TOTAL_LENGTH): Remove.
7816 * intervals.c: Change all users to eassert.
7817
7818 2012-08-07 Eli Zaretskii <eliz@gnu.org>
7819
7820 * .gdbinit (xframe, xwindow, nextcons, xcar, xcdr, xlist):
7821 Rename fields to match removal of FGET and WGET and disuse of
7822 INTERNAL_FIELD in Lisp_Cons.
7823
7824 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7825
7826 Revert and cleanup Lisp_Cons, Lisp_Misc and Lisp_Symbol things.
7827 * lisp.h (struct Lisp_Symbol): Change xname to meaningful
7828 name since all xname users are fixed long time ago. Do not
7829 use INTERNAL_FIELD.
7830 (set_symbol_name, set_symbol_function, set_symbol_plist):
7831 (set_symbol_next, set_overlay_plist): New function.
7832 (struct Lisp_Cons): Do not use INTERNAL_FIELD.
7833 (struct Lisp_Overlay): Likewise.
7834 (CVAR, MVAR, SVAR): Remove.
7835 * alloc.c, buffer.c, buffer.h, bytecode.c, cmds.c, data.c:
7836 * doc.c, eval.c, fns.c, keyboard.c, lread.c, nsselect.m:
7837 * xterm.c: Adjust users.
7838 * .gdbinit: Change to use name field of struct Lisp_Symbol
7839 where appropriate.
7840
7841 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7842
7843 Basic functions to set Lisp_Object and pointer slots of intervals.
7844 * intervals.h (interval_set_parent, interval_set_object):
7845 (interval_set_left, interval_set_right, interval_set_plist):
7846 (interval_copy_parent): New function.
7847 (SET_INTERVAL_OBJECT, SET_INTERVAL_PARENT, INTERVAL_PTR_SIZE): Remove.
7848 (RESET_INTERVAL, COPY_INTERVAL_CACHE, MERGE_INTERVAL_CACHE):
7849 Adjust indentation.
7850 (INTERVAL_SIZE): Remove. Adjust users.
7851 * alloc.c, intervals.c, lread.c, textprop.c: Use new functions.
7852
7853 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7854
7855 Drop PGET and revert read access to Lisp_Objects slots of Lisp_Process.
7856 * process.h (PGET): Remove.
7857 (struct Lisp_Process): Do not use INTERNAL_FIELD.
7858 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7859
7860 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7861
7862 Drop WGET and revert read access to Lisp_Objects slots of struct window.
7863 * window.h (WGET): Remove.
7864 (struct window): Do not use INTERNAL_FIELD.
7865 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7866 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7867 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7868 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7869 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7870 Adjust users.
7871
7872 2012-08-07 Chong Yidong <cyd@gnu.org>
7873
7874 * window.c (Fwindow_edges, Fwindow_pixel_edges)
7875 (Fwindow_absolute_pixel_edges, Fdelete_other_windows_internal)
7876 (Fdelete_window_internal): Signal an error if the window is not on
7877 a live frame (Bug#12025).
7878
7879 2012-08-07 Dmitry Antipov <dmantipov@yandex.ru>
7880
7881 Drop FGET and revert read access to Lisp_Objects slots of struct frame.
7882 * frame.h (FGET): Remove.
7883 (struct frame): Do not use INTERNAL_FIELD.
7884 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7885 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7886 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7887 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7888
7889 2012-08-06 Juanma Barranquero <lekktu@gmail.com>
7890
7891 * w32.c: Silence compiler warnings.
7892 (map_w32_filename): Remove unused variable `is_fat'.
7893 (chase_symlinks): Add parentheses around expression.
7894
7895 2012-08-06 Glenn Morris <rgm@gnu.org>
7896
7897 * sysdep.c: Respect BROKEN_GETWD.
7898
7899 * dispnew.c (GNU_LIBRARY_PENDING_OUTPUT_COUNT, PENDING_OUTPUT_COUNT):
7900 Let configure handle it.
7901 (stdio_ext.h) [DISPNEW_NEEDS_STDIO_EXT]: Include it.
7902
7903 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7904
7905 Use GCALIGNMENT where appropriate.
7906 * alloc.c (XMALLOC_HEADER_ALIGNMENT, roundup_size):
7907 (union aligned_Lisp_Symbol, union aligned_Lisp_Misc):
7908 (mark_maybe_pointer, pure_alloc): Change to use GCALIGNMENT.
7909
7910 2012-08-06 Eli Zaretskii <eliz@gnu.org>
7911
7912 * w32menu.c (set_frame_menubar, initialize_frame_menubar):
7913 Don't use FRAME_MENU_BAR_ITEMS as an lvalue.
7914
7915 2012-08-06 Stefan Monnier <monnier@iro.umontreal.ca>
7916
7917 * buffer.h (struct buffer): Revert `indirections' to a simple int;
7918 that should be sufficient for everyone.
7919
7920 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7921
7922 * keyboard.c (timer_check_2): Add break so timer_check returns next
7923 timeout.
7924
7925 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7926
7927 Fix Windows build errors introduced after converting to WGET and WSET.
7928 * w32term.c (w32_set_vertical_scroll_bar): Change to use WSET.
7929 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7930
7931 2012-08-06 Jan Djärv <jan.h.d@swipnet.se>
7932
7933 * nsterm.m (ns_frame_rehighlight): Use FSET.
7934
7935 * nsmenu.m (ns_update_menubar): Use FSET.
7936
7937 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7938
7939 Separate read and write access to Lisp_Object slots of Lisp_Process.
7940 * process.h (PGET, PSET): New macros similar to AREF and ASET.
7941 * gnutls.c, print.c, process.c, sysdep.c, w32.c, xdisp.c: Adjust users.
7942
7943 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7944
7945 Separate read and write access to Lisp_Object slots of struct window.
7946 * window.h (WGET, WSET): New macros similar to AREF and ASET.
7947 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
7948 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
7949 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, msdos.c, nsfns.m:
7950 * nsmenu.m, nsterm.m, print.c, textprop.c, w32fns.c, w32menu.c:
7951 * w32term.c, window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c:
7952 Adjust users.
7953
7954 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7955
7956 Fix Windows build errors introduced after converting to FGET and FSET.
7957 * w32term.c (x_frame_rehighlight, x_scroll_bar_create):
7958 (w32_condemn_scroll_bars, w32_redeem_scroll_bar):
7959 (w32_judge_scroll_bars): Change to use FSET.
7960 Reported by Andy Moreton <andrewjmoreton@gmail.com>.
7961
7962 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7963
7964 Fix replacement typo.
7965 * window.c (replace_window): Set root_window instead of
7966 selected_window. This fixes a total window subsystem
7967 malfunction reported by Bastien Guerry <bzg@gnu.org>.
7968
7969 2012-08-06 Glenn Morris <rgm@gnu.org>
7970
7971 * lisp.mk (lisp): Add language/persian.elc.
7972
7973 2012-08-06 Dmitry Antipov <dmantipov@yandex.ru>
7974
7975 Separate read and write access to Lisp_Object slots of struct frame.
7976 * frame.h (FGET, FSET): New macros similar to AREF and ASET.
7977 * buffer.c, data.c, dispnew.c, dosfns.c, eval.c, fontset.c, frame.c:
7978 * fringe.c, gtkutil.c, minibuf.c, msdos.c, nsfns.m, nsmenu.m, nsterm.m:
7979 * print.c, term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
7980 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Adjust users.
7981
7982 2012-08-05 Andreas Schwab <schwab@linux-m68k.org>
7983
7984 * emacs.c (decode_env_path): Only use defaulted if WINDOWSNT.
7985
7986 2012-08-05 Dmitry Antipov <dmantipov@yandex.ru>
7987
7988 Generalize common compile-time constants.
7989 * lisp.h (header_size, bool_header_size, word_size): Now here.
7990 (struct Lisp_Vector): Add comment.
7991 (struct Lisp_Bool_Vector): Move up to define handy constants.
7992 (VECSIZE, PSEUDOVECSIZE): Simplify.
7993 (SAFE_ALLOCA_LISP): Use new constant. Adjust indentation.
7994 * buffer.c, buffer.h, bytecode.c, callint.c, eval.c, fns.c:
7995 * font.c, fontset.c, keyboard.c, keymap.c, macros.c, menu.c:
7996 * msdos.c, w32menu.c, w32term.h, window.c, xdisp.c, xfaces.c:
7997 * xfont.c, xmenu.c: Use word_size where appropriate.
7998
7999 2012-08-05 Lawrence Mitchell <wence@gmx.li>
8000
8001 * search.c (Freplace_match): Treat \? in the replacement text
8002 literally (Bug#8161).
8003
8004 2012-08-05 Chong Yidong <cyd@gnu.org>
8005
8006 * term.c (Vsuspend_tty_functions, Vresume_tty_functions):
8007 * frame.c (Vdelete_frame_functions):
8008 * emacs.c (Vkill_emacs_hook): Doc fix.
8009
8010 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8011
8012 * xfns.c (x_set_menu_bar_lines): Fix compilation error in
8013 --with-x-toolkit=no builds.
8014 Reported by Carsten Mattner <carstenmattner@gmail.com>.
8015
8016 2012-08-04 Chong Yidong <cyd@gnu.org>
8017
8018 * syntax.c (Fmodify_syntax_entry): Doc fix.
8019
8020 2012-08-04 Eli Zaretskii <eliz@gnu.org>
8021
8022 Fix startup warnings about ../site-lisp on MS-Windows. (Bug#11959)
8023 * w32.c (init_environment): Change the default values of many
8024 environment variables in dflt_envvars[] to NULL, to avoid pushing
8025 them into environment when they were not already defined.
8026 Remove the code that deletes site-lisp subdirectories from the default
8027 value of EMACSLOADPATH, as it is no longer needed.
8028 (check_windows_init_file): Now external, not static.
8029 Use Vload_path as is, without adding anything, as this function is now
8030 called when Vload_path is already set up.
8031
8032 * w32.h (check_windows_init_file): Add prototype.
8033
8034 * emacs.c (init_cmdargs) [WINDOWSNT]: When running from the build
8035 directory, ignore the /*/i386/ tail in Vinvocation_directory, for
8036 compatibility with Posix platforms.
8037 (main): Move the call to check_windows_init_file to here from
8038 w32.c.
8039 (decode_env_path) [WINDOWSNT]: Expand the %emacs_dir%/ prefix, if
8040 any, in the DEFALT argument into the root of the Emacs build or
8041 installation tree, as appropriate.
8042
8043 * callproc.c (init_callproc_1): Call decode_env_path instead of
8044 doing its equivalent by hand.
8045 (init_callproc): Replace DOS_NT condition with MSDOS, thus letting
8046 the code that sets Vexec_path run on MS-Windows.
8047
8048 * lread.c (init_lread): Add comments to #ifdef's.
8049
8050 * msdos.c (dos_set_window_size, IT_update_begin)
8051 (IT_frame_up_to_date, IT_set_frame_parameters): Use FVAR and WVAR
8052 instead of direct references.
8053
8054 2012-08-04 Paul Eggert <eggert@cs.ucla.edu>
8055
8056 Export DEFAULT_REHASH_* to GDB.
8057 * lisp.h (DEFAULT_REHASH_THRESHOLD, DEFAULT_REHASH_SIZE):
8058 Now constants, not macros.
8059
8060 2012-08-03 Paul Eggert <eggert@cs.ucla.edu>
8061
8062 Remove unnecessary casts involving pointers.
8063 These casts are no longer needed now that we assume C89 or later,
8064 since they involve casting to or from void *.
8065 * alloc.c (make_pure_string, make_pure_c_string, pure_cons)
8066 (make_pure_float, make_pure_vector):
8067 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP):
8068 * macros.c (Fstart_kbd_macro):
8069 * menu.c (find_and_return_menu_selection):
8070 * minibuf.c (read_minibuf_noninteractive):
8071 * sysdep.c (closedir):
8072 * xdisp.c (x_produce_glyphs):
8073 * xfaces.c (compare_fonts_by_sort_order):
8074 * xfns.c (x_real_positions, select_visual):
8075 * xselect.c (x_stop_queuing_selection_requests)
8076 (x_get_window_property, x_get_window_property_as_lisp_data):
8077 * xterm.c (x_set_frame_alpha, x_find_modifier_meanings):
8078 Remove unnecessary pointer casts.
8079 * alloc.c (record_xmalloc): New function.
8080 * lisp.h (record_xmalloc): New decl.
8081 (SAFE_ALLOCA): Now takes just one arg -- the size -- and acts
8082 more like a function. This is because the pointer cast is not
8083 needed. All uses changed.
8084 * print.c (print_string, print_error_message): Avoid length recalc.
8085
8086 Improve fix for macroexp crash with debugging (Bug#12118).
8087 * lisp.h (ASET) [ENABLE_CHECKING]: Pay attention to
8088 ARRAY_MARK_FLAG when checking subscripts, because ASET is
8089 not supposed to be invoked from the garbage collector.
8090 See Andreas Schwab in <http://bugs.gnu.org/12118#25>.
8091 (gc_aset): New function, which is like ASET but can be
8092 used in the garbage collector.
8093 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8094 (set_hash_index): Use it instead of ASET.
8095
8096 2012-08-03 Eli Zaretskii <eliz@gnu.org>
8097
8098 Support symlinks on latest versions of MS-Windows.
8099 * w32.c: Include winioctl.h and aclapi.h.
8100 (is_symlink, chase_symlinks, enable_privilege, restore_privilege)
8101 (revert_to_self): Forward declarations of static functions.
8102 <static BOOL g_b_init_get_security_info>:
8103 <g_b_init_create_symbolic_link>: New static flags.
8104 (globals_of_w32): Initialize them to zero.
8105 (GetSecurityInfo_Proc, CreateSymbolicLink_Proc): New typedefs.
8106 (map_w32_filename): Improve commentary. Simplify switch.
8107 (SYMBOLIC_LINK_FLAG_DIRECTORY): Define if not defined in system
8108 headers (most versions of MinGW w32api don't).
8109 (get_security_info, create_symbolic_link)
8110 (get_file_security_desc_by_handle, is_symlink, chase_symlinks):
8111 New functions.
8112 (sys_access, sys_chmod): Call 'chase_symlinks' to resolve symlinks
8113 in the argument file name.
8114 (sys_access): Call unc_volume_file_attributes only if
8115 GetFileAttributes fails with network-related error codes.
8116 (sys_rename): Diagnose renaming of a symlink when the user doesn't
8117 have the required privileges.
8118 (get_file_security_desc_by_name): Rename from
8119 get_file_security_desc.
8120 (stat_worker): New function, with most of the guts of 'stat', and
8121 with addition of handling of symlinks and support for 'lstat'.
8122 If possible, get file's attributes and security information by
8123 handle, not by name. Produce S_IFLNK bit for symlinks, when
8124 called from 'lstat'.
8125 (stat, lstat): New functions, call 'stat_worker'.
8126 (symlink, readlink, careadlinkat): Rewritten to create and resolve
8127 symlinks when the underlying filesystem supports them.
8128
8129 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8130
8131 Fix macroexp crash on Windows with debugging (Bug#12118).
8132 * lisp.h (ASET) [ENABLE_CHECKING]: Ignore ARRAY_MARK_FLAG when
8133 checking subscripts; problem introduced with the recent
8134 "ASET (a, i, v)" rather than "AREF (a, i) = v" patch.
8135 (ARRAY_MARK_FLAG): Now a macro as well as a constant,
8136 since it's used in non-static inline functions now.
8137
8138 * xfaces.c (face_at_buffer_position, face_for_overlay_string):
8139 Don't assume buffer size fits in 'int'. Remove unused local.
8140
8141 Use C99-style 'extern inline' if available.
8142 * buffer.h (BUFFER_INLINE):
8143 * category.h (CATEGORY_INLINE):
8144 * character.h (CHARACTER_INLINE):
8145 * charset.h (CHARSET_INLINE):
8146 * composite.h (COMPOSITE_INLINE):
8147 * dispextern.h (DISPEXTERN_INLINE):
8148 * lisp.h (LISP_INLINE):
8149 * systime.h (SYSTIME_INLINE):
8150 New macro, replacing 'static inline' in this header.
8151 * buffer.h, category.h, character.h, charset.h, composite.h:
8152 * dispextern.h, lisp.h, systime.h:
8153 Use INLINE_HEADER_BEGIN, INLINE_HEADER_END.
8154 * alloc.c (LISP_INLINE):
8155 * buffer.c (BUFFER_INLINE):
8156 * category.c (CATEGORY_INLINE):
8157 * character.c (CHARACTER_INLINE):
8158 * charset.c (CHARSET_INLINE):
8159 * composite.c (COMPOSITE_INLINE):
8160 * dispnew.c (DISPEXTERN_INLINE):
8161 * sysdep.c (SYSTIME_INLINE):
8162 Define to EXTERN_INLINE, so that the corresponding functions
8163 are compiled into code.
8164 * conf_post.h (INLINE, EXTERN_INLINE, INLINE_HEADER_BEGIN)
8165 (INLINE_HEADER_END): New macros.
8166 * lisp.h (PSEUDOVECTOR_FLAG): Now a macro as well as a constant,
8167 since it's used in non-static inline functions now.
8168 (VALMASK) [!USE_LSB_TAG]: Likewise.
8169
8170 2012-08-02 Glenn Morris <rgm@gnu.org>
8171
8172 * s/: Remove empty directory.
8173
8174 * s/ms-w32.h: Move to ../nt/inc.
8175 * makefile.w32-in (TAGS, TAGS-gmake, MS_W32_H):
8176 Update for new ms-w32.h location.
8177
8178 2012-08-02 Paul Eggert <eggert@cs.ucla.edu>
8179
8180 Port to Solaris 8.
8181 * syswait.h (WRETCODE): Remove, consistently with ../configure.ac.
8182
8183 2012-08-02 Glenn Morris <rgm@gnu.org>
8184
8185 * nsterm.m (ns_exec_path, ns_load_path): Use SEPCHAR rather than
8186 hard-coding the path separator.
8187
8188 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8189
8190 Use "ASET (a, i, v)" rather than "AREF (a, i) = v".
8191 This how ASET and AREF are supposed to work, and makes
8192 it easier to think about future improvements. See
8193 <http://lists.gnu.org/archive/html/emacs-devel/2012-08/msg00026.html>.
8194 * charset.h (set_charset_attr): New function.
8195 All lvalue-style uses of CHARSET_DECODER etc. changed to use it.
8196 * lisp.h (ASET): Rewrite so as not to use AREF in an lvalue style.
8197 (aref_addr): New function. All uses of &AREF(...) changed.
8198 (set_hash_key, set_hash_value, set_hash_next, set_hash_hash)
8199 (set_hash_index): New functions. All lvalue-style uses of
8200 HASH_KEY etc. changed.
8201 * keyboard.c (set_prop): New function. All lvalue-style uses
8202 of PROP changed.
8203
8204 2012-08-01 Alp Aker <alp.tekin.aker@gmail.com>
8205
8206 * nsterm.m (ns_set_vertical_scroll_bar, ns_redeem_scroll_bar)
8207 (EmacsWindow-accessibilityAttributeValue, EmacsScroller-initFrame:)
8208 (EmacsScroller-dealloc): Adjust to use WVAR. (Bug#12114)
8209 * nsfns.m (ns_set_name_as_filename): Likewise.
8210 * nsmenu.m (ns_update_menubar): Likewise.
8211 * nsselect.m (symbol_to_nsstring): Adjust to use SVAR.
8212
8213 2012-08-01 Eli Zaretskii <eliz@gnu.org>
8214
8215 * .gdbinit (xcar, xcdr, xlist, xwindow, nextcons, xprintsym):
8216 Adapt to latest changes in field names of the corresponding Lisp
8217 objects.
8218
8219 * xdisp.c (try_window_id): Use WVAR in IF_DEBUG code.
8220
8221 2012-08-01 Glenn Morris <rgm@gnu.org>
8222
8223 * s/msdos.h: Remove file.
8224 * conf_post.h [MSDOS]: New section, moved from s/msdos.h.
8225 * Makefile.in (S_FILE): Remove.
8226 (config_h): Remove S_FILE.
8227
8228 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8229
8230 * s/ms-w32.h (DEVICE_SEP, IS_DIRECTORY_SEP, IS_ANY_SEP):
8231 Remove; moved to nt/config.nt.
8232
8233 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8234
8235 Use INTERNAL_FIELD for conses and overlays.
8236 * lisp.h (struct Lisp_Cons): Use INTERNAL_FIELD.
8237 Remove obsolete comment.
8238 (MVAR): New macro.
8239 (struct Lisp_Overlay): Use INTERNAL_FIELD.
8240 * alloc.c, buffer.c, buffer.h, fns.c: Adjust users.
8241
8242 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8243
8244 Use INTERNAL_FIELD for symbols.
8245 * lisp.h (SVAR): New macro. Adjust users.
8246 * alloc.c, bytecode.c, cmds.c, data.c, doc.c, eval.c:
8247 * fns.c, keyboard.c, lread.c, xterm.c: Users changed.
8248
8249 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8250
8251 Use INTERNAL_FIELD for processes.
8252 * process.h (PVAR): New macro. Adjust style.
8253 (struct Lisp_Process): Change Lisp_Object members to INTERNAL_FIELD.
8254 * print.c, process.c, sysdep.c, w32.c, xdisp.c: Users changed.
8255
8256 2012-08-01 Dmitry Antipov <dmantipov@yandex.ru>
8257
8258 Use INTERNAL_FIELD for windows.
8259 * window.h (WVAR): New macro.
8260 (struct window): Change Lisp_Object members to INTERNAL_FIELD.
8261 * alloc.c, buffer.c, composite.c, dispextern.h, dispnew.c, editfns.c:
8262 * fileio.c, font.c, fontset.c, frame.c, frame.h, fringe.c, indent.c:
8263 * insdel.c, keyboard.c, keymap.c, lisp.h, minibuf.c, nsterm.m, print.c:
8264 * textprop.c, w32fns.c, w32menu.c, w32term.c, window.c, xdisp.c:
8265 * xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8266
8267 2012-08-01 Paul Eggert <eggert@cs.ucla.edu>
8268
8269 * coding.h (CODING_ATTR_FLUSHING): Remove; unused and wouldn't work.
8270
8271 2012-08-01 Glenn Morris <rgm@gnu.org>
8272
8273 * lisp.h (IS_DIRECTORY_SEP, IS_DEVICE_SEP, IS_ANY_SEP):
8274 Move to configure.ac.
8275
8276 2012-08-01 Juanma Barranquero <lekktu@gmail.com>
8277
8278 * makefile.w32-in (CONFIG_H): Update dependencies.
8279 (CONF_POST_H): New macro.
8280
8281 * s/ms-w32.h (SEPCHAR, NULL_DEVICE): Remove; moved to nt/config.nt.
8282
8283 2012-07-31 Glenn Morris <rgm@gnu.org>
8284
8285 * Makefile.in (S_FILE): No longer set by configure.
8286
8287 * conf_post.h (config_opsysfile): Move earlier, so that WINDOWSNT
8288 is available.
8289 (alloca.h) [WINDOWSNT]: Don't include it on MS Windows.
8290
8291 * process.h (NULL_DEVICE):
8292 * emacs.c (SEPCHAR):
8293 * editfns.c (USER_FULL_NAME): Let configure set them.
8294
8295 * s/README, s/template.h: Remove files.
8296
8297 * conf_post.h [HPUX]: Undefine HAVE_RANDOM and HAVE_RINT.
8298
8299 * conf_post.h (AMPERSAND_FULL_NAME, subprocesses):
8300 Move to configure.ac.
8301
8302 2012-07-31 Eli Zaretskii <eliz@gnu.org>
8303
8304 * .gdbinit (xframe): Adapt to introduction of FVAR and the
8305 resulting renaming of 'struct frame' members.
8306
8307 * w32menu.c (w32_menu_show): Revert bogus introduction of FVAR.
8308
8309 * fontset.c (dump_fontset): Fix compilation with ENABLE_CHECKING
8310 after introduction of FVAR.
8311
8312 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8313
8314 * nsmenu.m (update_frame_tool_bar): Change key from NSObject* to id.
8315
8316 * nsterm.m (ns_draw_fringe_bitmap, ns_dumpglyphs_image): Use drawInRect
8317 instead of compositeToPoint.
8318 (applicationShouldTerminate): Pass NS String literal to NSRunAlertPanel.
8319
8320 * nsfns.m, nsmenu.m, nsterm.m: Adopt to struct frame/FVAR changes.
8321
8322 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8323
8324 Generalize INTERNAL_FIELD between buffers, keyboards and frames.
8325 * lisp.h (INTERNAL_FIELD): New macro.
8326 * buffer.h (BUFFER_INTERNAL_FIELD): Remove.
8327 (BVAR): Change to use INTERNAL_FIELD.
8328 * keyboard.h (KBOARD_INTERNAL_FIELD): Likewise.
8329 (KVAR): Change to use INTERNAL_FIELD.
8330 * frame.h (FVAR): New macro.
8331 (struct frame): Use INTERNAL_FIELD for all Lisp_Object fields.
8332 * alloc.c, buffer.c, data.c, dispnew.c, dosfns.c, eval.c, frame.c:
8333 * fringe.c, gtkutil.c, minibuf.c, nsfns.m, nsterm.m, print.c:
8334 * term.c, w32fns.c, w32menu.c, w32term.c, window.c, window.h:
8335 * xdisp.c, xfaces.c, xfns.c, xmenu.c, xterm.c: Users changed.
8336
8337 2012-07-31 Dmitry Antipov <dmantipov@yandex.ru>
8338
8339 Miscellaneous fixes for non-default X toolkits.
8340 * xfns.c (Fx_file_dialog): Change to SSDATA to avoid warnings.
8341 * xterm.c (x_frame_of_widget): Remove redundant prototype.
8342 Move under #ifdef USE_LUCID.
8343 (x_create_toolkit_scroll_bar): Adjust scroll_bar_name
8344 definition and usage to avoid warnings.
8345
8346 2012-07-31 Jan Djärv <jan.h.d@swipnet.se>
8347
8348 * nsterm.m (openFiles): Fix previous checkin.
8349
8350 2012-07-31 Paul Eggert <eggert@cs.ucla.edu>
8351
8352 * indent.c (compute_motion): Remove unused local.
8353
8354 2012-07-31 Glenn Morris <rgm@gnu.org>
8355
8356 * s/usg5-4-common.h (wait3, WRETCODE): Let configure set them.
8357
8358 * conf_post.h [USG5_4]:
8359 Move remaining contents of s/usg5-4-common.h here.
8360 * s/usg5-4-common.h: Remove file.
8361
8362 * conf_post.h [IRIX6_5]: Move remaining contents of s/irix6-5.h here.
8363 * s/irix6-5.h: Remove file.
8364
8365 * conf_post.h [DARWIN_OS]: Move remaining contents of s/darwin.h here.
8366 * s/darwin.h: Remove file.
8367
8368 * conf_post.h [HPUX]: Move random, srandom here from s/hpux10-20.h.
8369 * s/hpux10-20.h: Remove file, which is now empty.
8370
8371 2012-07-30 Glenn Morris <rgm@gnu.org>
8372
8373 * conf_post.h: New, split from configure.ac's AH_BOTTOM.
8374 * Makefile.in (config_h): Add conf_post.h.
8375 * makefile.w32-in (CONFIG_H): Add conf_post.h.
8376
8377 2012-07-30 Jan Djärv <jan.h.d@swipnet.se>
8378
8379 * nsterm.m (ns_do_open_file): New variable.
8380 (ns_term_init): Set ns_do_open_file to YES after run returns.
8381 (openFile, openTempFile, openFileWithoutUI, openFiles):
8382 Open files only if ns_do_open_file.
8383
8384 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8385
8386 * lisp.h (SWITCH_ENUM_CAST): Remove. All uses removed.
8387 This no-op macro hasn't been needed for many years.
8388 * src/regex.c (SWITCH_ENUM_CAST) [!emacs]: Likewise.
8389
8390 Export DIRECTORY_SEP, TYPEMASK, VALMASK to GDB.
8391 * alloc.c (gdb_make_enums_visible) [USE_LSB_TAG]: Add lsb_bits.
8392 * lisp.h (enum lsb_bits) [USE_LSB_TAG]: New enum, for
8393 gdb_make_enums_visible.
8394 (TYPEMASK, VALMASK) [USE_LSB_TAGS]: Now enum constants, not macros.
8395 (DIRECTORY_SEP): Now a constant, not a macro.
8396
8397 2012-07-30 Eli Zaretskii <eliz@gnu.org>
8398
8399 * w32fns.c (w32_wnd_proc): Pass w32_keyboard_codepage to
8400 w32_kbd_patch_key as the 2nd arg. (Bug#12082)
8401
8402 * w32term.c <w32_keyboard_codepage>: Renamed from
8403 keyboard_codepage and now external. All users changed.
8404
8405 * w32term.h: Add declaration of w32_keyboard_codepage.
8406
8407 * w32inevt.c (w32_kbd_patch_key): Accept an additional argument --
8408 the codepage to translate keys to Unicode. If this argument is
8409 -1, use the value returned by GetConsoleCP. All callers changed.
8410
8411 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8412
8413 Update .PHONY listings in makefiles.
8414 * Makefile.in (.PHONY): Add all, mostlyclean, clean,
8415 bootstrap-clean, distclean, maintainer-clean, versioclean,
8416 extraclean, frc.
8417
8418 * lisp.h (STRING_BYTES_BOUND): Cast entire result to ptrdiff_t.
8419 This is a bit clearer. Fix some commentary typos.
8420
8421 2012-07-30 Glenn Morris <rgm@gnu.org>
8422
8423 * s/netbsd.h: Let configure include signal.h if needed.
8424 Remove file, which is now empty.
8425
8426 * s/usg5-4-common.h (_longjmp, _setjmp, TIOCSIGSEND):
8427 Let configure set them.
8428 * s/irix6-5.h (_longjmp, _setjmp, TIOCSIGSEND):
8429 No more need to undefine.
8430
8431 2012-07-30 Andreas Schwab <schwab@linux-m68k.org>
8432
8433 * keymap.c (Fkey_description): Don't remove 0x80 bit from
8434 non-single-byte char when adding meta modifier. (Bug#12090)
8435
8436 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8437
8438 Convert safe_call to use variable number of arguments.
8439 * xdisp.c (safe_call): Convert to use varargs. Adjust users.
8440 (safe_call2): Fix comment.
8441 * lisp.h (safe_call): Adjust prototype.
8442 * coding.c (encode_coding_object): Change to use safe_call2.
8443 * xfaces.c (merge_face_heights): Change to use safe_call1.
8444
8445 2012-07-30 Glenn Morris <rgm@gnu.org>
8446
8447 * s/aix4-2.h (sigmask): No need to undefine it, since syssignal.h
8448 does that unconditionally. Remove file, which is now empty.
8449
8450 * s/freebsd.h, s/gnu-linux.h, s/sol2-6.h, s/unixware.h:
8451 Remove empty files.
8452
8453 2012-07-30 Paul Eggert <eggert@cs.ucla.edu>
8454
8455 Export to GDB most of lisp.h's remaining object-like macros.
8456 * lisp.h (min, max): Move earlier, because they're used earlier now.
8457 (INTMASK, ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK)
8458 (CHAR_TABLE_STANDARD_SLOTS, CHARTAB_SIZE_BITS_0)
8459 (CHARTAB_SIZE_BITS_1, CHARTAB_SIZE_BITS_2, CHARTAB_SIZE_BITS_3)
8460 (DEFAULT_HASH_SIZE, COMPILED_ARGLIST, COMPILED_BYTECODE)
8461 (COMPILED_CONSTANTS, COMPILED_STACK_DEPTH, COMPILED_DOC_STRING)
8462 (COMPILED_INTERACTIVE, CHAR_ALT, CHAR_SUPER, CHAR_HYPER, CHAR_SHIFT)
8463 (CHAR_CTL, CHAR_META, CHAR_MODIFIER_MASK, CHARACTERBITS)
8464 (MANY, UNEVALLED, FLOAT_TO_STRING_BUFSIZE, MAX_ALLOCA):
8465 Now constants, for GDB. They need not be macros.
8466 (MOST_POSITIVE_FIXNUM, MOST_NEGATIVE_FIXNUM, STRING_BYTES_BOUND):
8467 Now constants, for GDB, as well as macros, for static initializers.
8468 (CHAR_TABLE_STANDARD_SLOTS, CHAR_TABLE_EXTRA_SLOTS):
8469 Move to after the definition of struct Lisp_Char_Table,
8470 since the former now needs that type defined.
8471 (enum CHARTAB_SIZE_BITS, enum CHAR_TABLE_STANDARD_SLOTS)
8472 (enum DEFAULT_HASH_SIZE, enum Lisp_Compiled, enum char_bits)
8473 (enum maxargs, enum FLOAT_TO_STRING_BUFSIZE, enum MAX_ALLOCA):
8474 New enums, for gdb_make_enums_visible.
8475 (GLYPH_MODE_LINE_FACE): Remove; unused.
8476 * alloc.c (STRING_BYTES_MAX): Now a constant, not a macro.
8477 (gdb_make_enums_visible): Add enum CHARTAB_SIZE_BITS, enum
8478 CHAR_TABLE_STANDARD_SLOTS, enum char_bits, enum DEFAULT_HASH_SIZE,
8479 enum FLOAT_TO_STRING_BUFSIZE, enum Lisp_Bits, enum Lisp_Compiled,
8480 enum maxargs, enum MAX_ALLOCA.
8481 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): Remove.
8482 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Remove;
8483 no longer needed, now that they are done in lisp.h.
8484
8485 2012-07-30 Dmitry Antipov <dmantipov@yandex.ru>
8486
8487 Cleanup string bytes checking.
8488 * alloc.c (GC_STRING_BYTES, CHECK_STRING_BYTES): Remove. Convert
8489 all users to STRING_BYTES or string_bytes if GC_CHECK_STRING_BYTES.
8490 (check_string_bytes): Define to empty if not GC_CHECK_STRING_BYTES.
8491 (check_sblock, compact_small_strings): Simplify.
8492
8493 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8494
8495 * lisp.h (LISP_INT_TAG, LISP_INT1_TAG, LISP_STRING_TAG): Remove.
8496 These macros are confusing and no longer need to be defined, as
8497 the enum values now suffice. All uses replaced with definiens.
8498 (Lisp_Int1, Lisp_String): Define directly; this is clearer.
8499
8500 2012-07-29 Juanma Barranquero <lekktu@gmail.com>
8501
8502 * makefile.w32-in (LISP_H, $(BLD)/emacs.$(O), $(BLD)/w32inevt.$(O))
8503 ($(BLD)/w32console.$(O)): Update dependencies.
8504
8505 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8506
8507 Remove HIDE_LISP_IMPLEMENTATION and cleanup cons free list check.
8508 * lisp.h (HIDE_LISP_IMPLEMENTATION): Remove as useless for a long
8509 time. Adjust users.
8510 (CHECK_CONS_LIST): Remove. Convert all users to check_cons_list.
8511
8512 2012-07-29 Jan Djärv <jan.h.d@swipnet.se>
8513
8514 * lread.c (init_lread): Remove if-statement in ifdef HAVE_NS before
8515 setting sitelisp (Bug#12010).
8516
8517 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8518
8519 * w32heap.h (OS_9X): Rename from OS_WINDOWS_95.
8520
8521 * w32heap.c (cache_system_info):
8522 * w32.c (sys_rename):
8523 * w32proc.c (find_child_console, sys_kill): All users changed.
8524
8525 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8526
8527 * alloc.c (Fgarbage_collect): Indent as per usual Emacs style.
8528
8529 2012-07-29 Eli Zaretskii <eliz@gnu.org>
8530
8531 * makefile.w32-in (LISP_H): Add $(NT_INC)/stdalign.h.
8532
8533 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8534
8535 Cleanup statistics calculation in Fgarbage_collect.
8536 * alloc.c (Fgarbage_collect): Rename t1 to meaningful start.
8537 Fix zombies percentage calculation. Simplify elapsed time calculation.
8538
8539 2012-07-29 Dmitry Antipov <dmantipov@yandex.ru>
8540
8541 Generalize marker debugging code under MARKER_DEBUG and use eassert.
8542 * insdel.c (CHECK_MARKERS, check_markers_debug_flag): Remove.
8543 (gap_left, gap_right, adjust_markers_for_delete, insert_1_both)
8544 (insert_from_string_1, insert_from_gap, insert_from_buffer_1)
8545 (replace_range, replace_range_2, del_range_2): Change to eassert.
8546 * marker.c (byte_char_debug_check): Adjust style.
8547
8548 2012-07-29 Paul Eggert <eggert@cs.ucla.edu>
8549
8550 Don't use the abbreviation "win" to refer to Windows (Bug#10421).
8551 * regex.c (MAX_BUF_SIZE): Remove some incorrect and
8552 long-ago-commented-out code that talks about "WIN32".
8553 * w32heap.h (OS_WINDOWS_95): Rename from OS_WIN95.
8554 All uses changed.
8555
8556 2012-07-28 Paul Eggert <eggert@cs.ucla.edu>
8557
8558 Use Gnulib stdalign module (Bug#9772, Bug#9960).
8559 * alloc.c (XMALLOC_BASE_ALIGNMENT, GC_POINTER_ALIGNMENT, pure_alloc):
8560 Simplify by using alignof.
8561 (pure_alloc) [! USE_LSB_TAG]: Don't over-align EMACS_INT values.
8562 * lisp.h: Include <stdalign.h>.
8563 (GCALIGNMENT): New macro and constant.
8564 (DECL_ALIGN): Remove. All uses replaced by alignas (GCALIGNMENT).
8565 (USE_LSB_TAG): ifdef on alignas, not on DECL_ALIGN.
8566 (stdalign): New macro, if not already defined.
8567
8568 2012-07-28 Eli Zaretskii <eliz@gnu.org>
8569
8570 Fix non-ASCII input in non-GUI frames on MS-Windows. (Bug#12055)
8571 * w32inevt.c: Include w32inevt.h.
8572 (w32_read_console_input): New inline function, calls either
8573 ReadConsoleInputA or ReadConsoleInputW, depending on the value of
8574 w32_console_unicode_input.
8575 (fill_queue): Call w32_read_console_input instead of ReadConsoleInput.
8576 (w32_kbd_patch_key, key_event): Use the codepage returned by
8577 GetConsoleCP, rather than the ANSI codepage returned by GetLocaleInfo.
8578 (key_event): use uChar.UnicodeChar only if
8579 w32_console_unicode_input is non-zero.
8580
8581 * w32console.c: Include w32heap.h.
8582 <w32_console_unicode_input>: New global variable.
8583 (initialize_w32_display): Set w32_console_unicode_input to 1 on NT
8584 family of Windows, zero otherwise.
8585
8586 * w32inevt.h: Declare w32_console_unicode_input.
8587
8588 * xdisp.c (init_iterator): Don't reference tip_frame in a build
8589 --without-x. (Bug#11742)
8590
8591 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8592
8593 Adjust GDB to reflect pvec_type changes (Bug#12036).
8594 * .gdbinit (xvectype, xpr, xbacktrace): Adjust to reflect the
8595 2012-07-04 changes to pseudovector representation.
8596 Problem reported by Eli Zaretskii in <http://bugs.gnu.org/12036#30>.
8597
8598 2012-07-27 Michael Albinus <michael.albinus@gmx.de>
8599
8600 * dbusbind.c (XD_DBUS_VALIDATE_BUS_ADDRESS): Canonicalize session
8601 bus address.
8602 (xd_close_bus, Fdbus_init_bus): Handle reference counter properly.
8603
8604 2012-07-27 Eli Zaretskii <eliz@gnu.org>
8605
8606 * alloc.c (listn): Fix the order the arguments are consed onto the
8607 list.
8608
8609 * lisp.h (enum constype): Use CONSTYPE_HEAP and CONSTYPE_PURE for
8610 enumeration constants, as PURE and HEAP are too general, and clash
8611 with other headers and sources, such as gmalloc.c and the
8612 MS-Windows system headers. All users changed.
8613
8614 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8615
8616 Revert last save_excursion_save and save_excursion_restore changes.
8617 * alloc.c, editfns.c, marker.c, lisp.h: Revert.
8618 Lots of crashes reported by Chong Yidong <cyd@gnu.org>.
8619
8620 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8621
8622 Fix recently-introduced typos in Windows port.
8623 Reported by Martin Rudalics <rudalics@gmx.at>.
8624 * w32.c (init_environment): Replace comma with semicolon.
8625 * w32fns.c (syms_of_w32fns): Add missing parenthesis.
8626
8627 2012-07-27 Paul Eggert <eggert@cs.ucla.edu>
8628
8629 Improve GDB symbol export (Bug#12036).
8630 * .gdbinit (xgetptr, xgetint, xgettype): Set $bugfix in different
8631 arms of an 'if', not using conditional expressions; otherwise GDB
8632 complains about the types in the unevaluated arm when the argument
8633 is an integer literal.
8634 (xgetint): Simplify expression.
8635 * alloc.c (gdb_make_enums_visible): New constant. This ports to
8636 GCC 3.4.2 the export of symbols to GDB. Problem reported by Eli
8637 Zaretskii in <http://bugs.gnu.org/12036#13>.
8638 * lisp.h (PUBLISH_TO_GDB): Remove. All uses removed. No longer
8639 needed now that we have gdb_make_enums_visible.
8640 (enum CHECK_LISP_OBJECT_TYPE, enum Lisp_Bits, enum More_Lisp_Bits)
8641 (enum enum_USE_LSB_TAG):
8642 New enum types, packaging up enums that need to be exported to GDB.
8643
8644 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8645
8646 Utility function to make a list from specified amount of objects.
8647 * lisp.h (enum constype): New datatype.
8648 (listn): New prototype.
8649 * alloc.c (listn): New function.
8650 (Fmemory_use_count, syms_of_alloc): Use it.
8651 * buffer.c (syms_of_buffer): Likewise.
8652 * callint.c (syms_of_callint): Likewise.
8653 * charset.c (define_charset_internal): Likewise.
8654 * coding.c (syms_of_coding): Likewise.
8655 * keymap.c (syms_of_keymap): Likewise.
8656 * search.c (syms_of_search): Likewise.
8657 * syntax.c (syms_of_syntax): Likewise.
8658 * w32.c (init_environment): Likewise.
8659 * w32fns.c (Fw32_battery_status, syms_of_w32fns): Likewise.
8660 * xdisp.c (syms_of_xdisp): Likewise.
8661 * xfns.c (syms_of_xfns): Likewise.
8662
8663 2012-07-27 Dmitry Antipov <dmantipov@yandex.ru>
8664
8665 Fast save_excursion_save and save_excursion_restore.
8666 * lisp.h (struct Lisp_Excursion): New data type.
8667 (PVEC_EXCURSION): New pseudovector type.
8668 (XEXCURSION, XSETEXCURSION, EXCURSIONP): Convenient macros
8669 to deal with it. Adjust comments.
8670 (init_marker, attach_marker): New prototype.
8671 (unchain_marker): Adjust prototype.
8672 * marker.c (attach_marker): Change to global.
8673 (init_marker): New function.
8674 * alloc.c (Fmake_marker, build_marker): Use it.
8675 (build_marker): More easserts.
8676 (mark_object): Handle struct Lisp_Excursion.
8677 * editfns.c (save_excursion_save, save_excursion_restore):
8678 Reimplement to use struct Lisp_Excursion. Add comments.
8679
8680 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8681
8682 Fix export of symbols to GDB (Bug#12036).
8683 * alloc.c (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL)
8684 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Move these here from
8685 emacs.c, as this is a more-suitable home. Had this been done earlier
8686 the fix for 12036 would have avoided some of the problems noted in
8687 <http://bugs.gnu.org/12036#13> by Eli Zaretskii, as the scope problems
8688 would have been more obvious.
8689 * emacs.c: Do not include <verify.h>; no longer needed.
8690 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS)
8691 (gdb_GCTYPEBITS, gdb_USE_LSB_TAG)
8692 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8693 Remove; now done in lisp.h.
8694 * lisp.h (PUBLISH_TO_GDB): New macro.
8695 (GCTYPEBITS, USE_LSB_TAG, CHECK_LISP_OBJECT_TYPE, enum pvec_type)
8696 (DATA_SEG_BITS): Use it.
8697 (GCTYPEBITS, USE_LSB_TAG): Now also an enum, for GDB.
8698 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Now just an enum, for GDB.
8699 * mem-limits.h (EXCEEDS_LISP_PTR): Redo so that DATA_SEG_BITS need
8700 not be usable in #if. This simplifies things.
8701
8702 2012-07-26 Juanma Barranquero <lekktu@gmail.com>
8703
8704 * makefile.w32-in ($(BLD)/emacs.$(O)): Update dependencies.
8705
8706 2012-07-26 Paul Eggert <eggert@cs.ucla.edu>
8707
8708 Simplify export of symbols to GDB (Bug#12036).
8709 * .gdbinit (xgetptr, xgetint, xgettype): Don't use "set $bugfix =
8710 $bugfix.i", as this doesn't work (with GDB 7.4.1, anyway).
8711 (xgetptr, xgetint, xgettype, xcoding, xcharset, xprintbytestr):
8712 Adjust to changes in lisp.h and emacs.c, by using
8713 CHECK_LISP_OBJECT_TYPE rather than gdb_use_struct, VALMASK instead
8714 of $valmask, DATA_SEG_BITS instead of gdb_data_seg_bits,
8715 INTTYPEBITS instead of gdb_gctypebits - 1, USE_LSB_TAG instead of
8716 gdb_use_lsb, (1 << GCTYPEBITS) - 1 instead of $tagmask, VALBITS
8717 instead of gdb_valbits.
8718 (xvectype, xvector, xpr, xprintstr, xbacktrace): Similarly, use
8719 PSEUDOVECTOR_FLAG instead of PVEC_FLAG, and ARRAY_MARK_FLAG
8720 instead of gdb_array_mark_flag.
8721 (xboolvector): Get size from $->size, not $->header.size.
8722 Use BOOL_VECTOR_BITS_PER_CHAR rather than mystery constants.
8723 (xreload, hook-run, hookpost-run): Remove.
8724 * emacs.c: Include <verify.h>.
8725 (gdb_use_lsb, gdb_use_struct, gdb_valbits, gdb_gctypebits)
8726 (gdb_data_seg_bits, PVEC_FLAG, gdb_array_mark_flag, gdb_pvec_type):
8727 Remove.
8728 (gdb_CHECK_LISP_OBJECT_TYPE, gdb_DATA_SEG_BITS, gdb_GCTYPEBITS)
8729 (gdb_USE_LSB_TAG): New enum constants.
8730 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS, GCTYPEBITS, USE_LSB_TAG):
8731 Also define these as enum constants, so they're visible to GDB.
8732 (ARRAY_MARK_FLAG_VAL, PSEUDOVECTOR_FLAG_VAL, VALMASK_VAL): New macros.
8733 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, VALMASK): Also define these
8734 as constants, so they're visible to GDB.
8735 * lisp.h (VALBITS, INTTYPEBITS, FIXNUM_BITS, PSEUDOVECTOR_SIZE_BITS)
8736 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK, BOOL_VECTOR_BITS_PER_CHAR):
8737 Now enum constants, not macros, so they're visible to GDB.
8738 (CHECK_LISP_OBJECT_TYPE, DATA_SEG_BITS): Default to 0, as this is
8739 more convenient now. All uses changed.
8740 (VALMASK) [USE_LSB_TAG]: Also define in this case.
8741 * mem-limits.h (EXCEEDS_LISP_PTR): Adjust to DATA_SEG_BITS change.
8742
8743 2012-07-26 Dmitry Antipov <dmantipov@yandex.ru>
8744
8745 Explicitly free restriction data that are not needed anymore.
8746 * editfns.c (save_restriction_restore): Free restriction data.
8747
8748 2012-07-26 Stefan Monnier <monnier@iro.umontreal.ca>
8749
8750 * eval.c (Fautoload_do_load): Rename from do_autoload, export to Lisp,
8751 add argument, tune behavior, and adjust all callers.
8752
8753 2012-07-25 Paul Eggert <eggert@cs.ucla.edu>
8754
8755 Use typedef for EMACS_INT, EMACS_UINT.
8756 * lisp.h, s/ms-w32.h (EMACS_INT, EMACS_UINT): Use typedefs rather
8757 than macros. This simplifies debugging in the usual case, since
8758 it lets GDB show addresses as 'EMACS_INT *' rather than 'long int *'
8759 and it allows expressions involving EMACS_INT casts.
8760 * .gdbinit (xreload): Simplify by using EMACS_INT cast.
8761
8762 2012-07-25 Jan Djärv <jan.h.d@swipnet.se>
8763
8764 * nsterm.m (ns_read_socket): Return early if there is a modal
8765 window (Bug#12043).
8766
8767 2012-07-25 Martin Rudalics <rudalics@gmx.at>
8768
8769 * frame.c (Fredirect_frame_focus): In doc-string don't mention
8770 that FOCUS-FRAME can be omitted.
8771
8772 2012-07-25 Dmitry Antipov <dmantipov@yandex.ru>
8773
8774 Adjust buffer text indirection counters at the end of Fkill_buffer.
8775 * buffer.c (Fkill_buffer): Adjust indirection counters when the
8776 buffer is definitely dead. This should really fix an issue reported
8777 by Christoph Scholtes again. (Bug#12007).
8778 (init_buffer_once): Initialize indirection counters of
8779 buffer_defaults and buffer_local_symbols (for sanity and safety).
8780
8781 2012-07-24 Eli Zaretskii <eliz@gnu.org>
8782
8783 * xdisp.c (init_iterator): Don't compute dimensions of truncation
8784 and continuation glyphs on tooltip frames, leave them at zero.
8785 Avoids continued lines in tooltips. (Bug#11832)
8786
8787 2012-07-24 Dmitry Antipov <dmantipov@yandex.ru>
8788
8789 Simplify copy_overlay.
8790 * buffer.c (copy_overlay): Simplify. Use build_marker.
8791 * lisp.h (struct Lisp_Overlay): Restore comment with minor tweaks.
8792
8793 2012-07-23 Eli Zaretskii <eliz@gnu.org>
8794
8795 * print.c (print_object): Don't crash when a frame's name is nil
8796 or invalid. (Bug#12025)
8797
8798 * window.c (decode_any_window): Disable CHECK_LIVE_FRAME test, as
8799 it signals an error when a tooltip frame is being created.
8800
8801 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8802
8803 Cleanup miscellaneous objects allocation and initialization.
8804 * alloc.c (allocate_misc): Change to static. Add argument to
8805 specify the subtype. Adjust comment and users.
8806 (build_overlay): New function.
8807 * buffer.c (copy_overlays, Fmake_overlay): Use it.
8808 * lisp.h (struct Lisp_Overlay): Remove obsolete comment.
8809 (allocate_misc): Remove prototype.
8810 (build_overlay): Add prototype.
8811
8812 2012-07-23 Dmitry Antipov <dmantipov@yandex.ru>
8813
8814 Swap buffer text indirection counters in Fbuffer_swap_text.
8815 * buffer.c (Fbuffer_swap_text): Swap indirections too.
8816 This avoids crash reported by Christoph Scholtes at
8817 http://lists.gnu.org/archive/html/bug-gnu-emacs/2012-07/msg00785.html.
8818
8819 2012-07-22 Jan Djärv <jan.h.d@swipnet.se>
8820
8821 * nsmenu.m (Popdown_data): New struct.
8822 (pop_down_menu): p->pointer is Popdown_data. Release the pool and
8823 free Popdown_data.
8824 (ns_popup_dialog): Use NSAutoreleasePool and pass it to pop_down_menu.
8825 (initWithContentRect): Make imgView and contentView non-static
8826 and autorelease them. Also autorelease img and matrix (Bug#12005).
8827 (dealloc): Remove (Bug#12005).
8828
8829 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8830
8831 Adjust consing_since_gc when objects are explicitly freed.
8832 * alloc.c (GC_DEFAULT_THRESHOLD): New macro.
8833 (Fgarbage_collect): Use it. Change minimum to 1/10 of default.
8834 (free_cons, free_misc): Subtract object size from consing_since_gc.
8835
8836 2012-07-22 Dmitry Antipov <dmantipov@yandex.ru>
8837
8838 Simplify and cleanup markers positioning code.
8839 * marker.c (attach_marker): More useful eassert.
8840 (live_buffer, set_marker_internal): New function.
8841 (Fset_marker, set_marker_restricted): Use set_marker_internal.
8842 (set_marker_both, set_marker_restricted_both): Use live_buffer.
8843
8844 2012-07-22 Paul Eggert <eggert@cs.ucla.edu>
8845
8846 * buffer.h (struct buffer.indirections): Now ptrdiff_t, not int,
8847 as it's limited by the amount of memory, not by INT_MAX.
8848
8849 2012-07-21 Eli Zaretskii <eliz@gnu.org>
8850
8851 * keyboard.c (keys_of_keyboard): Bind language-change to 'ignore'
8852 in special-event-map. See the discussion at
8853 http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00417.html
8854 for the reasons.
8855
8856 * w32menu.c (add_menu_item): Cast to ULONG_PTR when assigning
8857 info.dwItemData. Fixes crashes on 64-bit Windows.
8858 Suggested by Fabrice Popineau <fabrice.popineau@supelec.fr>.
8859
8860 2012-07-21 Jan Djärv <jan.h.d@swipnet.se>
8861
8862 * nsterm.m (accessibilityAttributeValue): New function. (Bug#11134).
8863 (conversationIdentifier): Return value is NSInteger.
8864 * nsterm.m (accessibilityAttributeValue): Surround with NS_IMPL_COCOA.
8865
8866 2012-07-21 Chong Yidong <cyd@gnu.org>
8867
8868 * window.c (decode_any_window): Signal an error if the window is
8869 on a dead frame (Bug#11984).
8870
8871 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8872
8873 Add indirection counting to speed up Fkill_buffer.
8874 * buffer.h (struct buffer): New member.
8875 * buffer.c (Fget_buffer_create): Set indirection counter to 0.
8876 (Fmake_indirect_buffer): Set indirection counter to -1, increment
8877 base buffer indirection counter.
8878 (compact_buffer): If ENABLE_CHECKING, verify indirection counters.
8879 (Fkill_buffer): Adjust indirection counters as needed, don't walk
8880 through buffer list if indirection counter is 0.
8881
8882 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8883
8884 Extend the value returned by Fgarbage_collect with heap statistics.
8885 * alloc.c (Qheap): New symbol.
8886 (syms_of_alloc): DEFSYM it.
8887 (Fgarbage_collect): If DOUG_LEA_MALLOC, add mallinfo data.
8888 (Fmemory_free): Remove.
8889 (syms_of_alloc): Don't defsubr it.
8890 * buffer.c (Fcompact_buffer): Remove.
8891 (syms_of_buffer): Don't defsubr it.
8892
8893 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8894
8895 Make maybe_gc inline.
8896 Verify that inlining is always possible (GCC 4.7.1, -O3 -Winline).
8897 * lisp.h (consing_since_gc, gc_relative_threshold)
8898 (memory_full_cons_threshold): Revert declaration.
8899 (maybe_gc): Remove prototype, define as inline.
8900 * alloc.c: Remove old commented-out code.
8901 (consing_since_gc, gc_relative_threshold)
8902 (memory_full_cons_threshold): Revert to global.
8903 (maybe_gc): Remove.
8904
8905 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8906
8907 Simple wrapper for make_unibyte_string, adjust font_open_by_name.
8908 * lisp.h (build_unibyte_string): New function.
8909 * dosfns.c, fileio.c, fns.c, ftfont.c, process.c:
8910 * sysdep.c, w32fns.c, xfns.c: Use it.
8911 * font.c (font_open_by_name): Change 2nd and 3rd args to the only arg
8912 of type Lisp_Object to avoid redundant calls to make_unibyte_string.
8913 Adjust users accordingly.
8914 * font.h (font_open_by_name): Adjust prototype.
8915
8916 2012-07-20 Dmitry Antipov <dmantipov@yandex.ru>
8917
8918 Cleanup calls to Fgarbage_collect.
8919 * lisp.h (maybe_gc): New prototype.
8920 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8921 Remove declarations.
8922 * alloc.c (maybe_gc): New function.
8923 (consing_since_gc, gc_relative_threshold, memory_full_cons_threshold):
8924 Make them static.
8925 * bytecode.c (MAYBE_GC): Use maybe_gc.
8926 * eval.c (eval_sub, Ffuncall): Likewise.
8927 * keyboard.c (read_char): Likewise. Adjust call to maybe_gc
8928 to avoid dependency from auto-save feature.
8929
8930 2012-07-19 Paul Eggert <eggert@cs.ucla.edu>
8931
8932 * buffer.h (FOR_EACH_BUFFER): Rename from 'for_each_buffer'.
8933 (FOR_EACH_PER_BUFFER_OBJECT_AT): Rename from
8934 'for_each_per_buffer_object_at'.
8935 All uses changed. It's better to use upper-case for macros that
8936 cannot be implemented as functions, to give the reader a clue
8937 that they're special.
8938
8939 2012-07-19 Stefan Monnier <monnier@iro.umontreal.ca>
8940
8941 * alloc.c (Fgarbage_collect): Tweak docstring.
8942
8943 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8944
8945 Tweak the value returned from Fgarbage_collect again.
8946 * alloc.c (Fgarbage_collect): New return value, as confirmed in
8947 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00418.html.
8948 Adjust documentation.
8949 (total_vector_bytes): Rename to total_vector_slots, adjust
8950 accounting.
8951 (total_free_vector_bytes): Rename to total_free_vector_slots,
8952 adjust accounting.
8953 (Qstring_bytes, Qvector_slots): New symbols.
8954 (syms_of_alloc): DEFSYM them.
8955
8956 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8957
8958 Buffer compaction primitive which may be used from Lisp.
8959 * buffer.c (compact_buffer, Fcompact_buffer): New function.
8960 (syms_of_buffer): Register Fcompact_buffer.
8961 * alloc.c (Fgarbage_collect): Use compact_buffer.
8962 * buffer.h (compact_buffer): New prototype.
8963 (struct buffer_text): New member.
8964
8965 2012-07-19 Dmitry Antipov <dmantipov@yandex.ru>
8966
8967 New macro to iterate over all buffers, miscellaneous cleanups.
8968 * lisp.h (all_buffers): Remove declaration.
8969 * buffer.h (all_buffers): Add declaration, with comment.
8970 (for_each_buffer): New macro.
8971 * alloc.c (Fgarbage_collect, mark_object): Use it.
8972 * buffer.c (Fkill_buffer, Fbuffer_swap_text, Fset_buffer_multibyte)
8973 (init_buffer): Likewise.
8974 * data.c (Fset_default): Likewise.
8975 * coding.c (code_conversion_restore): Remove redundant check
8976 for dead buffer.
8977 * buffer.c (Fkill_buffer): Likewise. Remove obsolete comment.
8978
8979 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
8980
8981 Fix bug that created negative-length intervals.
8982 * intervals.c (merge_interval_right, merge_interval_left):
8983 Do not zero out this interval if it is absorbed by its children,
8984 as this interval's total length doesn't change in that case. See
8985 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00403.html>.
8986
8987 2012-07-18 Paul Eggert <eggert@cs.ucla.edu>
8988
8989 * alloc.c (Fmake_bool_vector): Fix off-by-8 bug
8990 when invoking (make-bool-vector N t) and N is a positive
8991 multiple of 8 -- the last 8 bits were mistakenly cleared.
8992
8993 Remove some struct layout assumptions in bool vectors.
8994 * alloc.c (bool_header_size): New constant.
8995 (header_size, word_size): Move earlier, as they're now used earlier.
8996 Use 'word_size' in a few more places, where it's appropriate.
8997 (Fmake_bool_vector, sweep_vectors): Don't assume that there is no
8998 padding before the data member of a bool vector.
8999 (sweep_vectors): Use PSEUDOVECTOR_TYPEP, in an eassert, rather
9000 than doing the check by hand with an abort ().
9001
9002 2012-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
9003
9004 * eval.c (Fdefvar): Don't check constants since we only set the var if
9005 it's not yet defined anyway (bug#11904).
9006
9007 * lisp.h (last_undo_boundary): Declare new var.
9008 * keyboard.c (command_loop_1): Set it.
9009 * cmds.c (Fself_insert_command): Use it to only remove boundaries that
9010 were auto-added by the command loop (bug#11774).
9011
9012 2012-07-18 Andreas Schwab <schwab@linux-m68k.org>
9013
9014 * w32font.c (Qsymbol): Remove local definition.
9015 (syms_of_w32font): Don't DEFSYM it.
9016
9017 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9018
9019 Fix sweep_vectors to handle large bool vectors correctly.
9020 * alloc.c (sweep_vectors): Account total_vector_bytes for
9021 bool vectors larger than VBLOCK_BYTES_MAX.
9022
9023 2012-07-18 Chong Yidong <cyd@gnu.org>
9024
9025 * frame.c (x_set_frame_parameters): Revert bogus change introduced
9026 in 2012-05-25 commit by Paul Eggert (Bug#11738).
9027
9028 2012-07-18 Dmitry Antipov <dmantipov@yandex.ru>
9029
9030 Return more descriptive data from Fgarbage_collect.
9031 Suggested by Stefan Monnier in
9032 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00369.html.
9033 * alloc.c (bounded_number): New function.
9034 (total_buffers, total_vectors): New variable.
9035 (total_string_size): Rename to total_string_bytes, adjust users.
9036 (total_vector_size): Rename to total_vector_bytes, adjust users.
9037 (sweep_vectors): Account total_vectors and total_vector_bytes.
9038 (Fgarbage_collect): New return value. Adjust documentation.
9039 (gc_sweep): Account total_buffers.
9040 (Fmemory_free, Fmemory_use_counts): Use bounded_number.
9041 (VECTOR_SIZE): Remove.
9042 * data.c (Qfloat, Qvector, Qsymbol, Qstring, Qcons): Make global.
9043 (Qinterval, Qmisc): New symbols.
9044 (syms_of_data): Initialize them.
9045 * lisp.h (Qinterval, Qsymbol, Qstring, Qmisc, Qvector, Qfloat)
9046 (Qcons, Qbuffer): New declarations.
9047
9048 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9049
9050 * alloc.c (Fmemory_free): Account for memory-free's own storage.
9051 Round up, not down. Improve doc.
9052
9053 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9054
9055 Restore old code in allocate_string_data to avoid Faset breakage.
9056 Reported by Julien Danjou <julien@danjou.info> in
9057 http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00371.html.
9058 * alloc.c (allocate_string_data): Restore old code with minor
9059 adjustments, fix comment to explain this subtle issue.
9060
9061 2012-07-17 Eli Zaretskii <eliz@gnu.org>
9062
9063 Remove FILE_SYSTEM_CASE.
9064 * s/msdos.h (FILE_SYSTEM_CASE): Don't define.
9065
9066 * fileio.c (FILE_SYSTEM_CASE): Don't define.
9067 (Ffile_name_directory, Fexpand_file_name): Don't use FILE_SYSTEM_CASE.
9068 Fixes problems on MS-DOS with Vtemp_file_name_pattern when
9069 call-process-region passes it through expand-file-name.
9070
9071 * dired.c (file_name_completion): Don't use FILE_SYSTEM_CASE.
9072
9073 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9074
9075 Fix crash when creating indirect buffer (Bug#11917)
9076 * buffer.c (buffer_lisp_local_variables): Add argument CLONE.
9077 Don't handle unbound variables specially if non-zero.
9078 (Fbuffer_local_variables): Pass zero.
9079 (clone_per_buffer_values): Pass non-zero.
9080
9081 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9082
9083 * gnutls.c (emacs_gnutls_handshake): Revert last change. Add QUIT
9084 to make the loop interruptible.
9085
9086 2012-07-17 Andreas Schwab <schwab@linux-m68k.org>
9087
9088 * gnutls.c (emacs_gnutls_handshake): Only retry if
9089 GNUTLS_E_INTERRUPTED.
9090
9091 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9092
9093 Cleanup and convert miscellaneous checks to eassert.
9094 * alloc.c (mark_interval): Fix comment, partially rephrase
9095 old comment from intervals.h (see below).
9096 * intervals.c (find_interval, adjust_intervals_for_insertion)
9097 (delete_interval, adjust_intervals_for_deletion)
9098 (graft_intervals_into_buffer, temp_set_point_both, copy_intervals):
9099 Convert to eassert.
9100 (adjust_intervals_for_insertion, make_new_interval):
9101 Remove obsolete and unused code.
9102 * intervals.h (struct interval): Remove obsolete comment.
9103 * textprotp.c (erase_properties): Remove unused code.
9104 (Fadd_text_properties, set_text_properties_1, Fremove_text_properties)
9105 (Fremove_list_of_text_properties): Convert to eassert.
9106
9107 2012-07-17 Chong Yidong <cyd@gnu.org>
9108
9109 * editfns.c (Finsert_char): Doc fix.
9110
9111 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9112
9113 Fix previous change to make Fmemory_free always accurate.
9114 * alloc.c (make_interval): Update total_free_intervals.
9115 (make_float): Likewise for total_free_floats.
9116 (free_cons, Fcons): Likewise for total_free_conses.
9117 (SETUP_ON_FREE_LIST, allocate_vector_from_block):
9118 Likewise for total_free_vector_bytes.
9119 (Fmake_symbol): Likewise for total_free_symbols.
9120 (bytes_free): Remove.
9121
9122 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9123
9124 Simple free memory accounting feature.
9125 * alloc.c (bytes_free, total_free_vector_bytes): New variable.
9126 (sweep_vectors): Accumulate size of free vectors.
9127 (Fgarbage_collect): Setup bytes_free.
9128 (Fmemory_free): New function.
9129 (syms_of_alloc): Register it.
9130
9131 2012-07-17 Dmitry Antipov <dmantipov@yandex.ru>
9132
9133 Cleanup overlays checking.
9134 * buffer.h (OVERLAY_VALID): Remove as useless synonym of OVERLAYP.
9135 * buffer.c (overlay_touches_p, recenter_overlay_lists): Change to
9136 eassert and OVERLAYP.
9137 (sort_overlays): Change to use OVERLAYP.
9138
9139 2012-07-16 René Kyllingstad <Rene@Kyllingstad.com> (tiny change)
9140
9141 * editfns.c (Finsert_char): Make it interactive, and make the
9142 second arg optional. Copy interactive spec and docstring from
9143 ucs-insert.
9144
9145 2012-07-17 Paul Eggert <eggert@cs.ucla.edu>
9146
9147 * floatfns.c (Fabs): Do not wrap fabs inside IN_FLOAT (Bug#11913).
9148 Unlike the other wrapped functions, fabs has an unspecified
9149 effect on errno.
9150
9151 2012-07-16 Jan Djärv <jan.h.d@swipnet.se>
9152
9153 * nsterm.m (keyDown): Interpret flags without left/right bits
9154 as the left key (Bug#11670).
9155
9156 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9157
9158 Remove empty and useless init functions.
9159 * lisp.h (init_character_once, init_fns, init_image)
9160 (init_filelock, init_sound): Remove prototype.
9161 * character.c (init_character_once): Remove.
9162 * filelock.c (init_filelock): Likewise.
9163 * fns.c (init_fns): Likewise.
9164 * image.c (init_image): Likewise.
9165 * sound.c (init_sound): Likewise.
9166 * emacs.c (main): Adjust accordingly.
9167
9168 2012-07-16 Dmitry Antipov <dmantipov@yandex.ru>
9169
9170 * gtkutil.h: Tiny cleanups.
9171 (use_old_gtk_file_dialog): Remove useless declaration.
9172 (xg_uses_old_file_dialog): Add suggested const attribute.
9173
9174 2012-07-15 Eli Zaretskii <eliz@gnu.org>
9175
9176 * bidi.c (MAX_STRONG_CHAR_SEARCH): New macro.
9177 (bidi_paragraph_init): Use it to limit search forward for a strong
9178 directional character in abnormally large paragraphs full of
9179 neutral or weak characters. (Bug#11943)
9180
9181 2012-07-15 Stefano Facchini <stefano.facchini@gmail.com> (tiny change)
9182
9183 * gtkutil.c (xg_create_tool_bar): Apply "primary-toolbar" style to
9184 the toolbar (Bug#9451).
9185 (xg_make_tool_item): Give the widget event box a transparent
9186 background.
9187
9188 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9189
9190 Cleanup basic allocation variables and functions.
9191 * alloc.c (ignore_warnings, init_intervals, init_float)
9192 (init_cons, init_symbol, init_marker): Remove.
9193 (interval_block_index): Initialize to INTERVAL_BLOCK_SIZE.
9194 (float_block_index): Initialize to FLOAT_BLOCK_SIZE.
9195 (cons_block_index): Initialize to CONS_BLOCK_SIZE.
9196 (symbol_block_size): Initialize to SYMBOL_BLOCK_SIZE.
9197 (marker_block_index): Initialize to MARKER_BLOCK_SIZE.
9198 (staticidx, init_alloc_once, init_strings, free_ablock):
9199 Remove redundant initialization.
9200 * fns.c (init_weak_hash_tables): Remove.
9201 * lisp.h (init_weak_hash_tables): Remove prototype.
9202
9203 2012-07-15 Dmitry Antipov <dmantipov@yandex.ru>
9204
9205 Use zero_vector where appropriate.
9206 * alloc.c (zero_vector): Define as Lisp_Object. Adjust users
9207 accordingly.
9208 * lisp.h (zero_vector): New declaration.
9209 * font.c (null_vector): Remove.
9210 (syms_of_font): Remove initialization and staticpro.
9211 (font_list_entities, font_find_for_lface): Change to use zero_vector.
9212 * keymap.c (Faccessible_keymaps): Likewise.
9213
9214 2012-07-15 Leo Liu <sdl.web@gmail.com>
9215
9216 * fringe.c: Fix typo in comments.
9217
9218 2012-07-14 Leo Liu <sdl.web@gmail.com>
9219
9220 * fringe.c: Add a new bitmap exclamation-mark.
9221
9222 2012-07-14 Eli Zaretskii <eliz@gnu.org>
9223
9224 * gmalloc.c (GMALLOC_INHIBIT_VALLOC): Don't reference.
9225
9226 * s/msdos.h (BSD_SYSTEM, DATA_START, GC_SETJMP_WORKS, HAVE_MOUSE)
9227 (HAVE_MENUS): Don't define, defined by editing config.in with
9228 msdos/sed2v2.inp.
9229 (GMALLOC_INHIBIT_VALLOC): Don't define.
9230 (MODE_LINE_BINARY_TEXT): Remove, not used anymore.
9231
9232 2012-07-14 Juanma Barranquero <lekktu@gmail.com>
9233
9234 * s/ms-w32.h (GC_SETJMP_WORKS, GC_MARK_STACK): Set in nt/config.nt.
9235
9236 2012-07-14 Glenn Morris <rgm@gnu.org>
9237
9238 * s/aix4-2.h, s/freebsd.h, s/gnu-linux.h, s/hpux10-20.h:
9239 * s/irix6-5.h, s/netbsd.h, s/sol2-6.h, s/unixware.h:
9240 Let configure set GC_SETJMP_WORKS, GC_MARK_STACK.
9241
9242 2012-07-13 Glenn Morris <rgm@gnu.org>
9243
9244 * s/gnu-linux.h (GC_MARK_SECONDARY_STACK): Let configure set it.
9245
9246 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Let configure set it.
9247 * s/irix6-5.h (SETUP_SLAVE_PTY): No more need to unset it.
9248
9249 2012-07-13 Jan Djärv <jan.h.d@swipnet.se>
9250
9251 * nsterm.m (uRect): Only define if NS_IMPL_GNUSTEP.
9252 (x_free_frame_resources): Pass x_free_frame_resources to NSTRACE.
9253 (ns_lisp_to_color, ns_string_to_lispmod, ns_term_init)
9254 (ns_term_shutdown, requestService, initFrameFromEmacs): Use SSDATA
9255 where appropriate.
9256 (ns_exec_path, ns_load_path, changeFont): Put () around assignment used
9257 as boolean expression.
9258 (x_set_window_size): Remove unused variable toolbar.
9259 (ns_get_color_default, ns_mod_to_lisp): Remove.
9260 (ns_mouse_position): Remove unused variables xchar and ychar.
9261 (ns_compute_glyph_string_overhangs): Remove unused variable face.
9262 (ns_set_vertical_scroll_bar): Remove unused variable count.
9263 (ns_delete_terminal): Remove unused variable i.
9264 (ns_term_init): Remove unused variables r, g and b.
9265 (mouseDown): Remove unused variable window.
9266 (windowDidResize): Move definition of theWindow inside NS_IMPL_GNUSTEP.
9267 (initFrameFromEmacs): Remove unused variable vbextra.
9268 (mouseEntered): Remove unused variables p and dpyinfo.
9269 (mouseExited): Remove unused variables p and r.
9270 (ns_define_frame_cursor, ns_clear_frame_area)
9271 (ns_draw_window_cursor, ns_initialize_display_info): Make static.
9272 (menuDown): Assign [sender tag] to variable and cast the variable.
9273
9274 * nsterm.h (menuDown): Add id as type to argument sender.
9275 (ns_display_info_for_name): Add Lisp_Object argument.
9276 (ns_term_init): Add Lisp_Object argument.
9277 (ns_map_event_to_object): Add void argument.
9278 (ns_string_from_pasteboard, ns_string_to_pasteboard): Add correct
9279 prototype with arguments and only declare if __OBJC__.
9280 (nxatoms_of_nsselect): Add void argument.
9281 (ns_lisp_to_cursor_type): Add Lisp_Object argument.
9282 (ns_alloc_autorelease_pool): Add void argument.
9283 (ns_release_autorelease_pool): Add void* argument.
9284 (ns_get_defaults_value): Add const char* argument.
9285
9286 * nsmenu.m (ns_update_menubar, ns_menu_show, process_dialog)
9287 (initFromContents): Use SSDATA where appropriate.
9288 (ns_update_menubar): Add braces to ambigous if-else.
9289 (initWithTitle): Put () around assignment in if statement.
9290 (ns_menu_show): Remove unused variables window and keymap.
9291 (update_frame_tool_bar): Remove unused variable selected_p.
9292 (initWithContentRect): Remove unused variable this_cmd_name.
9293
9294 * nsimage.m (ns_load_image, allocInitFromFile): Use SSDATA where
9295 appropriate.
9296 (setXBMColor): Remove unused variable len.
9297 (setPixmapData): Put () around assignment in loop statement.
9298
9299 * nsfont.m (ns_get_family, ns_lang_to_script, ns_otf_to_script)
9300 (ns_registry_to_script, ns_get_req_script, nsfont_open): Use SSDATA
9301 where appropriate.
9302 (ns_get_covering_families, ns_findfonts, nsfont_list_family): Put ()
9303 around assignment in loop statement.
9304 (nsfont_open): Remove unused variable i.
9305 (nsfont_open): Remove unused variable len.
9306 (nsfont_draw): Remove unused variable cs.
9307
9308 * nsfns.m (x_set_icon_name, ns_set_name_internal)
9309 (ns_set_name_as_filename, ns_implicitly_set_icon_type)
9310 (x_set_icon_type, ns_lisp_to_cursor_type, Fns_read_file_name)
9311 (Fns_get_resource, Fns_set_resource, Fx_open_connection)
9312 (Fns_font_name, Fns_perform_service)
9313 (Fns_convert_utf8_nfd_to_nfc, ns_do_applescript)
9314 (Fns_do_applescript, Fx_show_tip): Use SSDATA where appropriate.
9315 (ns_set_name): Remove unused variable view.
9316 (x_set_menu_bar_lines): Remove unused variable olines.
9317 (x_set_tool_bar_lines): Remove unused variable root_window.
9318 (Fns_list_colors): Put () around assignment in while statement.
9319 (Fns_perform_service): Remove unused variable len.
9320 (Fns_display_usable_bounds): Remove unused variable top.
9321 (syms_of_nsfns): Remove unused variable i.
9322
9323 * nsmenu.m (ns_update_menubar): Exchange place of argument 2 and 3 to
9324 memcpy (Bug#11907).
9325
9326 2012-07-13 Kalle Kankare <kalle.kankare@iki.fi> (tiny change)
9327
9328 * image.c (Fimagemagick_types): Initialize ex with GetExceptionInfo
9329 and free it with DestroyExceptionInfo (Bug#11558).
9330
9331 2012-07-13 Juanma Barranquero <lekktu@gmail.com>
9332
9333 * s/ms-w32.h (FIRST_PTY_LETTER, HAVE_SOCKETS): Move to nt/config.nt.
9334 (HAVE_ATTRIBUTE_ALIGNED, HAVE_C99_STRTOLD, HAVE___BUILTIN_UNWIND_INIT):
9335 Set here, not in nt/config.nt.
9336
9337 2012-07-13 Eli Zaretskii <eliz@gnu.org>
9338
9339 * xdisp.c (move_it_in_display_line_to): On GUI terminals, allow
9340 cursor overflow into the last glyph on display line when the right
9341 fringe is off. (Bug#11832)
9342
9343 2012-07-13 Paul Eggert <eggert@cs.ucla.edu>
9344
9345 * xdisp.c (produce_special_glyphs): Now static.
9346 * dispextern.h (produce_special_glyphs): Remove decl.
9347
9348 2012-07-13 Glenn Morris <rgm@gnu.org>
9349
9350 * s/bsd-common.h, s/cygwin.h: Remove empty files.
9351 * s/freebsd.h, s/netbsd.h: Do not include bsd-common.h.
9352
9353 * s/usg5-4-common.h (USG, USG5):
9354 * s/template.h (USG5, USG, HPUX, BSD4_2, BSD_SYSTEM):
9355 * s/sol2-6.h (SOLARIS2):
9356 * s/irix6-5.h (IRIX6_5):
9357 * s/hpux10-20.h (USG, USG5, HPUX):
9358 * s/gnu-linux.h (USG, GNU_LINUX):
9359 * s/freebsd.h (BSD_SYSTEM):
9360 * s/darwin.h (BSD4_2, BSD_SYSTEM, DARWIN_OS):
9361 * s/cygwin.h (CYGWIN):
9362 * s/bsd-common.h (BSD_SYSTEM, BSD4_2):
9363 * s/aix4-2.h (USG, USG5, _AIX): Move "system type" macros to configure.
9364
9365 2012-07-13 BT Templeton <bpt@hcoop.net> (tiny change)
9366
9367 * nsfont.m (ns_charset_covers): Don't abort if no bitmap (Bug#11853).
9368
9369 2012-07-13 Glenn Morris <rgm@gnu.org>
9370
9371 * s/usg5-4-common.h (NSIG_MINIMUM): Let configure set it.
9372
9373 * s/gnu-linux.h, s/irix6-5.h: Let configure set ULIMIT_BREAK_VALUE.
9374
9375 * process.c (init_process_emacs): Replace MIN_PTY_KERNEL_VERSION.
9376 * s/darwin.h (MIN_PTY_KERNEL_VERSION): Remove single-use macro.
9377
9378 2012-07-12 Glenn Morris <rgm@gnu.org>
9379
9380 * s/darwin.h (SYSTEM_PURESIZE_EXTRA): Move to configure.
9381
9382 * process.c (init_process_emacs): Rename from init_process.
9383 The old name is also the name of a Mach system call.
9384 * lisp.h, emacs.c: Update for this name change.
9385 * nsgui.h, sysselect.h, s/darwin.h: Remove workaround that is no
9386 longer needed.
9387
9388 2012-07-12 Eli Zaretskii <eliz@gnu.org>
9389
9390 * xdisp.c (insert_left_trunc_glyphs): Fix incorrect size in
9391 memmove call that removes glyphs covered by the left truncation
9392 glyph. Improve commentary.
9393 (display_line): Fix display of continuation glyphs on GUI frames
9394 when the right fringe is turned off and variable-size fonts are
9395 used in the window. Move the code that appends a stretch glyph to
9396 produce_special_glyphs, so that it could be used for truncation
9397 and continuation glyphs alike.
9398 (produce_special_glyphs) [HAVE_WINDOW_SYSTEM]: Produce a stretch
9399 glyph of a suitably computed width, to align the special glyphs at
9400 the window margin. Code moved from display_line. (Bug#11832)
9401
9402 2012-07-12 Glenn Morris <rgm@gnu.org>
9403
9404 * s/aix4-2.h, s/hpux10-20.h: Let configure set NO_EDITRES.
9405
9406 * s/gnu-linux.h, s/hpux10-20.h:
9407 Do not unconditionally define HAVE_XRMSETDATABASE.
9408
9409 * s/gnu-linux.h (UNIX98_PTYS): Let configure set it.
9410
9411 2012-07-12 Paul Eggert <eggert@cs.ucla.edu>
9412
9413 Fix typos that broke OS X build.
9414 Reported by Randal L. Schwartz in
9415 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00225.html>.
9416 * nsterm.m (ns_timeout): Add missing local decl.
9417 (ns_get_color): snprintf -> sprintf, to fix typo.
9418
9419 2012-07-12 Glenn Morris <rgm@gnu.org>
9420
9421 * src/s/aix4-2.h, src/s/cygwin.h, src/s/darwin.h:
9422 * src/s/gnu-linux.h, src/s/hpux10-20.h, src/s/irix6-5.h:
9423 * src/s/sol2-6.h, src/s/unixware.h, src/s/usg5-4-common.h:
9424 Move PTY_NAME_SPRINTF, PTY_TTY_NAME_SPRINTF to configure.
9425
9426 * s/cygwin.h, s/darwin.h, s/gnu-linux.h, s/irix6-5.h:
9427 Move PTY_OPEN to configure.
9428
9429 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9430 * s/gnu-linux.h, s/hpux10-20.h, s/irix6-5.h, s/template.h:
9431 * s/usg5-4-common.h: Move FIRST_PTY_LETTER, PTY_ITERATION to configure.
9432
9433 2012-07-12 Dmitry Antipov <dmantipov@yandex.ru>
9434
9435 Use empty_unibyte_string where applicable.
9436 * keyboard.c (parse_tool_bar_item): Use empty_unibyte_string.
9437 * lread.c (read1): Likewise.
9438 * xsettings.c (syms_of_xsettings): Likewise.
9439
9440 2012-07-12 Glenn Morris <rgm@gnu.org>
9441
9442 * s/cygwin.h (G_SLICE_ALWAYS_MALLOC):
9443 * s/freebsd.h (BROKEN_PTY_READ_AFTER_EAGAIN):
9444 * s/irix6-5.h (SETPGRP_RELEASES_CTTY, PREFER_VSUSP):
9445 * s/hpux10-20.h (RUN_TIME_REMAP):
9446 * s/bsd-common.h (TABDLY): Move to configure.
9447
9448 * s/hpux10-20.h, s/sol2-6.h: Move XOS_NEEDS_TIME_H to configure.
9449
9450 * s/bsd-common.h, s/darwin.h: Move TAB3 to configure.
9451
9452 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
9453 (BROKEN_SIGPOLL, BROKEN_GET_CURRENT_DIR_NAME): Let configure set them.
9454
9455 * s/darwin.h (NO_ABORT, NO_MATHERR): Let configure set them.
9456
9457 * s/bsd-common.h, s/cygwin.h, s/gnu-linux.h, s/irix6-5.h:
9458 * s/template.h: Move NARROWPROTO to configure.
9459
9460 2012-07-11 Glenn Morris <rgm@gnu.org>
9461
9462 * s/gnu-linux.h, s/sol2-6.h: No longer define POSIX,
9463 unused since 2011-01-17 change to systty.h.
9464
9465 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h, s/gnu-linux.h:
9466 * s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9467 Move HAVE_PTYS and HAVE_SOCKETS to configure.
9468
9469 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9470
9471 * s/sol2-6.h (HAVE_LIBKSTAT): Remove. (Bug#11914)
9472
9473 2012-07-11 Glenn Morris <rgm@gnu.org>
9474
9475 * s/darwin.h, s/gnu-linux.h, s/template.h:
9476 Move INTERRUPT_INPUT to configure.
9477
9478 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9479
9480 Minor adjustments to interning code.
9481 * lisp.h (intern, intern_c_string): Redefine as static inline
9482 wrappers for intern_1 and intern_c_string_1, respectively.
9483 (intern_1, intern_c_string_1): Rename prototypes.
9484 * lread.c (intern_1, intern_c_string_1, oblookup):
9485 Simplify Vobarray checking.
9486 * font.c (font_intern_prop): Likewise. Adjust comment.
9487 * w32font.c (intern_font_name): Likewise.
9488
9489 2012-07-11 Andreas Schwab <schwab@linux-m68k.org>
9490
9491 * gnutls.c (Fgnutls_boot): Properly parse :keylist argument.
9492
9493 * coding.c (Fdefine_coding_system_internal): Use XCAR/XCDR instead
9494 of Fcar/Fcdr if possible.
9495 * font.c (check_otf_features): Likewise.
9496 * fontset.c (Fnew_fontset): Likewise.
9497 * gnutls.c (Fgnutls_boot): Likewise.
9498 * minibuf.c (read_minibuf): Likewise.
9499 * msdos.c (IT_set_frame_parameters): Likewise.
9500 * xmenu.c (Fx_popup_dialog): Likewise.
9501 * w32menu.c (Fx_popup_dialog): Likewise.
9502
9503 2012-07-11 Glenn Morris <rgm@gnu.org>
9504
9505 * s/bsd-common.h, s/cygwin.h: No need to undefine INTERRUPT_INPUT,
9506 since nothing has defined it on these platforms.
9507
9508 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/gnu-linux.h:
9509 * s/irix6-5.h: Move SIGNALS_VIA_CHARACTERS to configure.
9510
9511 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
9512 * s/gnu-linux.h, s/hpux10-20.h, s/template.h, s/usg5-4-common.h:
9513 Move CLASH_DETECTION to configure.
9514
9515 * s/gnu.h: Remove file, which is now empty.
9516
9517 * s/gnu.h, s/gnu-linux.h:
9518 Move GNU_LIBRARY_PENDING_OUTPUT_COUNT to configure.
9519
9520 2012-07-11 John Wiegley <johnw@newartisans.com>
9521
9522 * alloc.c (mark_memory): Guard the "no_address_safety_analysis"
9523 function attribute, so we only use it if it exists in the
9524 compiler.
9525
9526 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9527
9528 Avoid call to strlen in fast_c_string_match_ignore_case.
9529 * search.c (fast_c_string_match_ignore_case): Change to use
9530 length argument. Adjust users accordingly.
9531 * lisp.h (fast_c_string_match_ignore_case): Adjust prototype.
9532
9533 2012-07-11 Paul Eggert <eggert@cs.ucla.edu>
9534
9535 Assume mkdir, rmdir.
9536 * sysdep.c (mkdir) [!HAVE_MKDIR]: Remove.
9537 * sysdep.c (rmdir) [!HAVE_RMDIR]: Remove.
9538
9539 Assume rename.
9540 * sysdep.c (rename) [!HAVE_RENAME]: Remove.
9541
9542 Assume perror.
9543 * s/hpux10-20.h (HAVE_PERROR): Remove.
9544 * sysdep.c (perror) [HPUX && !HAVE_PERROR]:
9545 Remove dummy definition, as this problem was obsolete long ago.
9546
9547 Assume strerror.
9548 * sysdep.c (strerror) [!HAVE_STRERROR && !WINDOWSNT]: Remove.
9549
9550 2012-07-11 Dmitry Antipov <dmantipov@yandex.ru>
9551
9552 Avoid calls to strlen in font processing functions.
9553 * font.c (font_parse_name, font_parse_xlfd, font_parse_fcname)
9554 (font_open_by_name): Change to use length argument.
9555 Adjust users accordingly.
9556 * font.h (font_open_by_name, font_parse_xlfd, font_unparse_xlfd):
9557 Adjust prototypes.
9558 * xfont.c (xfont_decode_coding_xlfd, font_unparse_xlfd):
9559 Change to return ptrdiff_t.
9560 (xfont_list_pattern, xfont_match): Use length returned by
9561 xfont_decode_coding_xlfd.
9562 * xfns.c (x_default_font_parameter): Omit useless xstrdup.
9563
9564 2012-07-11 Glenn Morris <rgm@gnu.org>
9565
9566 * s/darwin.h, s/freebsd.h, s/netbsd.h:
9567 Move DONT_REOPEN_PTY to configure.
9568
9569 * sound.c (DEFAULT_SOUND_DEVICE) [!WINDOWSNT]:
9570 * s/netbsd.h (DEFAULT_SOUND_DEVICE): Let configure set it.
9571
9572 2012-07-10 Paul Eggert <eggert@cs.ucla.edu>
9573
9574 Remove "#define unix" that is no longer needed (Bug#11905).
9575 * s/aix4-2.h (unix): Remove; no longer needed.
9576
9577 EMACS_TIME simplification (Bug#11875).
9578 This replaces macros (which typically do not work in GDB)
9579 with functions, typedefs and enums, making the code easier to debug.
9580 The functional style also makes code easier to read and maintain.
9581 * systime.h: Include <sys/time.h> on all hosts, not just if
9582 WINDOWSNT, since 'struct timeval' is needed in general.
9583 (EMACS_TIME): Now a typedef, not a macro.
9584 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): Now constants,
9585 not macros.
9586 (EMACS_SECS, EMACS_NSECS, EMACS_TIME_SIGN, EMACS_TIME_VALID_P)
9587 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE, EMACS_TIME_EQ)
9588 (EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE, EMACS_TIME_LT)
9589 (EMACS_TIME_LE): Now functions, not macros.
9590 (EMACS_SET_SECS, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS)
9591 (EMACS_SET_USECS, EMACS_SET_SECS_USECS): Remove these macros,
9592 which are not functions. All uses rewritten to use:
9593 (make_emacs_time): New function.
9594 (EMACS_SECS_ADDR, EMACS_SET_INVALID_TIME, EMACS_GET_TIME)
9595 (EMACS_ADD_TIME, EMACS_SUB_TIME): Remove these macros, which are
9596 not functions. All uses rewritten to use the following, respectively:
9597 (emacs_secs_addr, invalid_emacs_time, get_emacs_time)
9598 (add_emacs_time, sub_emacs_time): New functions.
9599 * atimer.c: Don't include <sys/time.h>, as "systime.h" does this.
9600 * fileio.c (Fcopy_file):
9601 * xterm.c (XTflash): Get the current time closer to when it's used.
9602 * makefile.w32-in ($(BLD)/atimer.$(O)): Update dependencies.
9603
9604 * bytecode.c (targets): Suppress -Woverride-init warnings.
9605
9606 Simplify by avoiding confusing use of strncpy etc.
9607 * doc.c (Fsnarf_documentation):
9608 * fileio.c (Ffile_name_directory, Fsubstitute_in_file_name):
9609 * frame.c (Fmake_terminal_frame):
9610 * gtkutil.c (get_utf8_string):
9611 * lread.c (openp):
9612 * nsmenu.m (ns_update_menubar):
9613 * regex.c (regerror):
9614 Prefer memcpy to strncpy and strncat when either will do.
9615 * fileio.c (Fsubstitute_in_file_name):
9616 * keyboard.c (MULTI_LETTER_MOD, parse_modifiers_uncached)
9617 (menu_separator_name_p):
9618 * nsmenu.m (ns_update_menubar):
9619 Prefer memcmp to strncmp when either will do.
9620 * nsterm.m: Include <ftoastr.h>.
9621 (ns_get_color):
9622 * s/gnu-linux.h, s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF):
9623 Prefer snprintf to strncpy.
9624 * nsterm.m (ns_term_init):
9625 * widget.c (set_frame_size) [0]: Prefer xstrdup to xmalloc + strncpy.
9626 * nsterm.m (ns_term_init):
9627 Avoid the need for strncpy, by using build_string or
9628 make_unibyte_string directly. Use dtoastr, not snprintf.
9629 * process.c (Fmake_network_process): Diagnose service names that
9630 are too long, rather than silently truncating them or creating
9631 non-null-terminated names.
9632 (Fnetwork_interface_info): Likewise, for interface names.
9633 * sysdep.c (system_process_attributes) [GNU_LINUX]:
9634 Prefer sprintf to strncat.
9635 * xdisp.c (debug_method_add) [GLYPH_DEBUG]:
9636 Prefer vsnprintf to vsprintf + strncpy.
9637
9638 2012-07-10 Glenn Morris <rgm@gnu.org>
9639
9640 * dispnew.c (PENDING_OUTPUT_COUNT) [!__GNU_LIBRARY__]:
9641 Clarify fallback case.
9642
9643 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9644
9645 Use XCAR and XCDR instead of Fcar and Fcdr where possible.
9646 * callint.c, coding.c, doc.c, editfns.c, eval.c, font.c, fontset.c,
9647 * frame.c, gnutls.c, minibuf.c, msdos.c, textprop.c, w32fns.c,
9648 * w32menu.c, window.c, xmenu.c: Change to use XCAR and XCDR
9649 where argument type is known to be a Lisp_Cons.
9650
9651 2012-07-10 Tom Tromey <tromey@redhat.com>
9652
9653 * bytecode.c (BYTE_CODE_THREADED): New macro.
9654 (BYTE_CODES): New macro. Replaces all old byte-code defines.
9655 (enum byte_code_op): New type.
9656 (CASE, NEXT, FIRST, CASE_DEFAULT, CASE_ABORT): New macros.
9657 (exec_byte_code): Use them. Use token threading when applicable.
9658
9659 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9660
9661 Optimize pure C strings initialization.
9662 * lisp.h (make_pure_string): Fix prototype.
9663 (build_pure_c_string): New function, defined as static inline. This
9664 provides a better opportunity to optimize away calls to strlen when
9665 the function is called with compile-time constant argument.
9666 * alloc.c (make_pure_c_string): Fix comment. Change to add nchars
9667 argument, adjust users accordingly. Use build_pure_c_string where
9668 appropriate.
9669 * buffer.c, coding.c, data.c, dbusbind.c, fileio.c, fontset.c, frame.c,
9670 * keyboard.c, keymap.c, lread.c, search.c, syntax.c, w32fns.c, xdisp.c,
9671 * xfaces.c, xfns.c, xterm.c: Use build_pure_c_string where appropriate.
9672
9673 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9674
9675 Avoid calls to strlen in miscellaneous functions.
9676 * buffer.c (init_buffer): Use precalculated len, adjust if needed.
9677 * font.c (Ffont_xlfd_name): Likewise. Change to call make_string.
9678 * lread.c (openp): Likewise.
9679
9680 2012-07-10 Dmitry Antipov <dmantipov@yandex.ru>
9681
9682 Avoid calls to strlen in path processing functions.
9683 * fileio.c (file_name_as_directory): Add comment. Change to add
9684 srclen argument and return the length of result. Adjust users
9685 accordingly.
9686 (directory_file_name): Fix comment. Change to add srclen argument,
9687 swap 1st and 2nd arguments to obey the common convention.
9688 Adjust users accordingly.
9689 * filelock.c (fill_in_lock_file_name): Avoid calls to strlen.
9690
9691 2012-07-10 Glenn Morris <rgm@gnu.org>
9692
9693 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/netbsd.h, s/unixware.h:
9694 Move PENDING_OUTPUT_COUNT definition to configure.
9695
9696 * s/irix6-5.h (DATA_START, DATA_SEG_BITS):
9697 * s/hpux10-20.h (DATA_SEG_BITS, DATA_START):
9698 * s/gnu.h (DATA_START): Move definitions to configure.
9699
9700 * s/irix6-5.h (SETUP_SLAVE_PTY, PTY_NAME_SPRINTF): Drop ifdef guards.
9701 We include usg5-4-common.h, which defines them both.
9702
9703 * s/gnu.h: Don't include fcntl.h (every file in Emacs that uses
9704 O_RDONLY already includes it).
9705
9706 Stop ns builds setting the EMACSLOADPATH environment variable.
9707 * nsterm.m (ns_load_path): Rename from ns_init_paths.
9708 Now it does not set EMACSLOADPATH, just returns the load-path string.
9709 * nsterm.h: Update accordingly.
9710 * lread.c [HAVE_NS]: Include nsterm.h.
9711 (init_lread) [HAVE_NS]: Use ns_load_path.
9712 * emacs.c (main) [HAVE_NS]: No longer call ns_init_paths.
9713
9714 2012-07-09 Glenn Morris <rgm@gnu.org>
9715
9716 * s/gnu.h (SIGNALS_VIA_CHARACTERS): No need to define it here,
9717 since the included bsd-common.h does so.
9718
9719 Stop ns builds setting the EMACSPATH environment variable.
9720 * nsterm.m (ns_exec_path): New function, split from ns_init_paths.
9721 (ns_init_paths): Do not set EMACSPATH.
9722 * nsterm.h (ns_exec_path): Add it.
9723 * callproc.c (init_callproc_1, init_callproc) [HAVE_NS]:
9724 Use ns_exec_path.
9725
9726 * nsterm.m, nsterm.h (ns_etc_directory): Fix type, empty return.
9727
9728 2012-07-09 Paul Eggert <eggert@cs.ucla.edu>
9729
9730 * process.c (wait_reading_process_output): 'waitchannels' was unset
9731 when read_kbd || !NILP (wait_for_cell); fix this.
9732
9733 Add GCC-style 'const' attribute to functions that can use it.
9734 * character.h (char_resolve_modifier_mask):
9735 * keyboard.h (make_ctrl_char):
9736 * lisp.h (multibyte_char_to_unibyte, multibyte_char_to_unibyte_safe)
9737 (init_character_once, next_almost_prime, init_fns, init_image)
9738 (flush_pending_output, init_sound):
9739 * mem-limits.h (start_of_data):
9740 * menu.h (finish_menu_items):
9741 Add ATTRIBUTE_CONST.
9742 * emacs.c (DEFINE_DUMMY_FUNCTION):
9743 Declare the dummy function with ATTRIBUTE_CONST.
9744 * lisp.h (Fbyteorder, Fmax_char, Fidentity):
9745 Add decls with ATTRIBUTE_CONST.
9746
9747 Minor improvements to make_formatted_string.
9748 * alloc.c (make_formatted_string): Prefer int to ptrdiff_t
9749 where int is good enough, as vsprintf returns an int.
9750 * lisp.h (make_formatted_string): Add ATTRIBUTE_FORMAT_PRINTF.
9751
9752 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9753
9754 Use make_formatted_string to avoid double length calculation.
9755 * lisp.h (make_formatted_string): New prototype.
9756 * alloc.c (make_formatted_string): New function.
9757 * buffer.c (Fgenerate_new_buffer_name): Use it.
9758 * dbusbind.c (syms_of_dbusbind): Likewise.
9759 * editfns.c (Fcurrent_time_zone): Likewise.
9760 * filelock.c (get_boot_time): Likewise.
9761 * frame.c (make_terminal_frame, set_term_frame_name)
9762 (x_report_frame_params): Likewise.
9763 * image.c (gs_load): Likewise.
9764 * minibuf.c (get_minibuffer): Likewise.
9765 * msdos.c (dos_set_window_size): Likewise.
9766 * process.c (make_process): Likewise.
9767 * xdisp.c (ensure_echo_area_buffers): Likewise.
9768 * xsettings.c (apply_xft_settings): Likewise.
9769
9770 2012-07-09 Glenn Morris <rgm@gnu.org>
9771
9772 Stop ns builds polluting the environment with EMACSDATA, EMACSDOC.
9773 * nsterm.m (ns_etc_directory): New function, split from ns_init_paths.
9774 (ns_init_paths): Do not set EMACSDATA, EMACSDOC.
9775 * nsterm.h (ns_etc_directory): Add it.
9776 * callproc.c [HAVE_NS]: Include nsterm.h.
9777 (init_callproc_1, init_callproc) [HAVE_NS]: Use ns_etc_directory.
9778
9779 2012-07-09 Dmitry Antipov <dmantipov@yandex.ru>
9780
9781 Move marker debugging code under MARKER_DEBUG.
9782 * marker.c (MARKER_DEBUG): Move marker debugging code under
9783 #ifdef MARKER_DEBUG because byte_char_debug_check is too slow
9784 for bootstrap with --enable-checking (~3x slowdown reported
9785 by Juanma Barranquero <lekktu@gmail.com>).
9786 (verify_bytepos): Move under #ifdef MARKER_DEBUG.
9787
9788 2012-07-08 Paul Eggert <eggert@cs.ucla.edu>
9789
9790 * systime.h (EMACS_SUB_TIME): Clarify behavior with unsigned time_t.
9791 See <http://bugs.gnu.org/11825#29>.
9792
9793 2012-07-08 Eli Zaretskii <eliz@gnu.org>
9794
9795 * xdisp.c (fill_glyphless_glyph_string): If the face of the glyph
9796 has no font, use the frame's font. (Bug#11813)
9797 (display_line): Add commentary about displaying truncation glyphs
9798 on GUI frames.
9799 (produce_special_glyphs): Move here from term.c.
9800
9801 * term.c (produce_special_glyphs): Move to xdisp.c.
9802
9803 * dispextern.h (produce_special_glyphs): Move prototype to xdisp.c
9804 section.
9805
9806 2012-07-07 Andreas Schwab <schwab@linux-m68k.org>
9807
9808 * xdisp.c (display_line): Avoid warning about implicit declaration
9809 of FRAME_FONT.
9810
9811 * frame.c (get_frame_param): Define only if HAVE_WINDOW_SYSTEM.
9812
9813 * lisp.h: Remove empty conditional.
9814
9815 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9816
9817 * lread.c (load_path_check): Now static.
9818
9819 Fix some minor --with-ns problems found by static checking.
9820 * frame.c (Ftool_bar_pixel_width) [!FRAME_TOOLBAR_WIDTH]:
9821 (x_set_font) [!HAVE_X_WINDOWS]:
9822 * image.c (xpm_load_image) [HAVE_NS]:
9823 (x_to_xcolors) [!HAVE_X_WINDOWS && !HAVE_NTGUI]:
9824 (x_disable_image) [!HAVE_NS && !HAVE_NTGUI]:
9825 Remove unused local.
9826 (Fx_parse_geometry) [HAVE_NS]: Don't return garbage.
9827 (xpm_load_image) [HAVE_NS && !HAVE_XPM]: Remove unused label.
9828 * image.c (x_create_bitmap_from_file) [HAVE_NS]:
9829 (xpm_load_image, xpm_load) [HAVE_NS && !HAVE_XPM]:
9830 * nsselect.m (symbol_to_nsstring, ns_string_to_pasteboard_internal):
9831 * xfaces.c (Fx_load_color_file) [!HAVE_X_WINDOWS]:
9832 Fix pointer signedness problem.
9833 * xfaces.c (FRAME_X_FONT_TABLE):
9834 * xterm.h (FRAME_X_FONT_TABLE): Remove unused, incompatible macros.
9835
9836 2012-07-07 Glenn Morris <rgm@gnu.org>
9837
9838 * lread.c (load_path_check): New function, split from init_lread.
9839 (init_lread): Reorganize. Motivation:
9840 If EMACSLOADPATH is set, check/warn about that rather than the
9841 defaults, which we are not going to use. Hence we can remove
9842 the turn_off_warning and WINDOWSNT || HAVE_NS tests.
9843 Don't warn if site-lisp directories are missing.
9844 If not installed, start from a blank load-path, since
9845 PATH_LOADSEARCH refers to the eventual installation directories.
9846
9847 2012-07-07 Eli Zaretskii <eliz@gnu.org>
9848
9849 Support truncation and continuation glyphs on GUI frames, when
9850 fringes are disabled. (Bug#11832)
9851 * xdisp.c (init_iterator): Get dimensions of truncation and
9852 continuation glyphs even if on GUI frames.
9853 Adjust it->last_visible_x on GUI frames when the left or right fringes,
9854 or both, are absent.
9855 (start_display, move_it_in_display_line_to): Handle the case of a
9856 GUI frame without a fringe to display continuation or truncation
9857 glyphs.
9858 (insert_left_trunc_glyphs): Support GUI frames: make sure
9859 truncation glyphs overwrite enough glyphs from the current line to
9860 have sufficient space in pixels.
9861 (display_line): Support truncation and continuation glyphs on GUI
9862 frames. If some spare pixels are left on the line after inserting
9863 the truncation glyphs, fill that space with a stretch glyph of a
9864 suitably computed width.
9865
9866 * term.c (produce_special_glyphs): Call PRODUCE_GLYPHS, not
9867 produce_glyphs, to support GUI sessions.
9868
9869 2012-07-07 Paul Eggert <eggert@cs.ucla.edu>
9870
9871 * sysdep.c (ULLONG_MAX): Define if not already defined (Bug#11781).
9872
9873 * sysdep.c (list_system_processes): Port to NetBSD-current (Bug#11797).
9874
9875 Do not require float-time's arg to fit in time_t (Bug#11825).
9876 This works better on hosts where time_t is unsigned, and where
9877 float-time is applied to the (negative) difference between two times.
9878 * editfns.c (decode_time_components): Last arg is now double *,
9879 not int *, and means to store all the result as a double, without
9880 worrying about whether the seconds part fits in time_t.
9881 All callers changed.
9882 (lisp_time_argument): Remove last int * arg, as it's no longer needed.
9883 All callers changed.
9884 (Ffloat_time): Do not fail merely because the specified time falls
9885 outside of time_t range.
9886
9887 2012-07-07 Glenn Morris <rgm@gnu.org>
9888
9889 * s/darwin.h (HAVE_RES_INIT, HAVE_LIBRESOLV):
9890 * s/hpux10-20.h (HAVE_RINT, HAVE_RANDOM):
9891 * s/unixware.h (HAVE_GETWD): Move undefs to configure (effectively).
9892
9893 2012-07-07 Juanma Barranquero <lekktu@gmail.com>
9894
9895 * makefile.w32-in (DISPEXTERN_H, $(BLD)/regex.$(O)):
9896 Update dependencies.
9897
9898 * s/ms-w32.h [_MSC_VER]: Remove strcasecmp, strncasecmp.
9899
9900 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9901
9902 Use c_strcasecmp for ASCII case-insensitive comparison (Bug#11786).
9903 * dispextern.h, nsfns.m, nsterm.m: Include <c-strcase.h>.
9904 * dispextern.h (xstrcasecmp): Rewrite using c_strcasecmp.
9905 * nsfns.m (x_get_string_resource): Use c_strncasecmp, not strncasecmp.
9906 * nsterm.m (ns_default): Use c_strcasecmp, not strcasecmp.
9907 * xfaces.c (xstrcasecmp) [!HAVE_STRCASECMP]: Remove.
9908
9909 * xfont.c (compare_font_names): Redo to omit the need for casts.
9910
9911 2012-07-06 Andreas Schwab <schwab@linux-m68k.org>
9912
9913 * xfns.c (Fx_change_window_property): Doc fix.
9914 * w32fns.c (Fx_change_window_property): Doc fix.
9915
9916 * w32fns.c (Fx_window_property): Accept the same arguments as the
9917 X Windows version. Doc fix.
9918 * xfns.c (Fx_window_property): Doc fix. (Bug#11870)
9919
9920 2012-07-06 Juanma Barranquero <lekktu@gmail.com>
9921 Eli Zaretskii <eliz@gnu.org>
9922
9923 * s/ms-w32.h: Settings not specific to Windows moved to nt/config.nt.
9924 Windows-specific code from nt/config.nt moved here.
9925 Obsolete settings removed.
9926
9927 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9928
9929 * process.c: Avoid unnecessary calls to gettime.
9930 (wait_reading_process_output): Don't get the time of day
9931 when gobbling data immediately and not waiting, as there's no need
9932 for it in that case. This removes a FIXME.
9933
9934 2012-07-06 Jan Djärv <jan.h.d@swipnet.se>
9935
9936 * gtkutil.c (xg_event_is_for_scrollbar): Assign gwin when HAVE_GTK3
9937 is defined (Bug#11768).
9938
9939 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9940
9941 Fix marker debugging code.
9942 * marker.c (byte_char_debug_check): Do not perform the check
9943 if buffer is not multibyte.
9944 (buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9945 Call byte_char_debug_check with correct arguments.
9946
9947 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9948
9949 Compile marker debugging code only if ENABLE_CHECKING is defined.
9950 * marker.c (byte_char_debug_check, count_markers):
9951 Use only if ENABLE_CHECKING is defined.
9952 (byte_debug_flag): Remove.
9953 (CONSIDER, buf_charpos_to_bytepos, buf_bytepos_to_charpos):
9954 Always call byte_char_debug_check if ENABLE_CHECKING is defined.
9955
9956 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9957
9958 Avoid code repetition in marker-related functions.
9959 * marker.c (attach_marker): New function.
9960 (Fset_marker, set_marker_restricted, set_marker_both)
9961 (set_marker_restricted_both): Use it.
9962 (Fset_marker, set_marker_restricted, Fbuffer_has_markers_at):
9963 Consistently rename charno to charpos.
9964 (marker_position): Add eassert.
9965 (marker_byte_position): Convert to eassert.
9966
9967 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9968
9969 Simplify list operations in unchain_overlay and unchain_marker.
9970 * buffer.c (unchain_overlay): Simplify. Add comment.
9971 * marker.c (unchain_marker): Simplify. Fix comments.
9972
9973 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9974
9975 Introduce fast path for the widely used marker operation.
9976 * alloc.c (build_marker): New function.
9977 * lisp.h (build_marker): New prototype.
9978 * buffer.c (clone_per_buffer_values, Fmake_indirect_buffer): Use it.
9979 * composite.c (autocmp_chars): Likewise.
9980 * editfns.c (buildmark): Remove.
9981 (Fpoint_marker, Fpoint_min_marker, Fpoint_max_marker)
9982 (save_restriction_save): Use build_marker.
9983 * marker.c (buf_charpos_to_bytepos, buf_bytepos_to_charpos): Likewise.
9984 * window.c (save_window_save): Likewise.
9985
9986 2012-07-06 Dmitry Antipov <dmantipov@yandex.ru>
9987
9988 Do not use Fdelete_overlay in delete_all_overlays
9989 to avoid redundant calls to unchain_overlay.
9990 * buffer.c (drop_overlay): New function.
9991 (delete_all_overlays, Fdelete_overlay): Use it.
9992 * minibuf.c (get_minibuffer): Fix comment.
9993
9994 2012-07-06 Paul Eggert <eggert@cs.ucla.edu>
9995
9996 Port to OpenBSD 5.1 amd64.
9997 * sysdep.c [BSD_SYSTEM]: Include <sys/param.h> before <sys/sysctl.h>.
9998 This is needed for OpenBSD, and should be harmless on all BSD systems.
9999 Also, include <sys/sysctl.h>, as it should be available on all
10000 BSD_SYSTEM hosts given that we're already calling sysctl in that case.
10001 (list_system_processes) [__OpenBSD__]: Use DARWIN_OS style mib, but
10002 use p_pid member, not kp_proc.pid.
10003
10004 2012-07-06 Glenn Morris <rgm@gnu.org>
10005
10006 * Makefile.in (emacs$(EXEEXT)): Don't check for load-path shadows.
10007
10008 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10009
10010 More xmalloc and related cleanup.
10011 * alloc.c, bidi.c, buffer.c, buffer.h, bytecode.c, callint.c:
10012 * callproc.c, charset.c, coding.c, composite.c, data.c, dispnew.c:
10013 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, fns.c:
10014 * font.c, fontset.c, frame.c, fringe.c, ftfont.c, ftxfont.c, gmalloc.c:
10015 * gtkutil.c, image.c, keyboard.c, keymap.c, lread.c, macros.c, menu.c:
10016 * nsfns.m, nsfont.m, nsmenu.m, nsterm.m, print.c, process.c, ralloc.c:
10017 * regex.c, region-cache.c, scroll.c, search.c, sound.c, syntax.c:
10018 * sysdep.c, term.c, termcap.c, unexmacosx.c, window.c, xdisp.c:
10019 * xfaces.c, xfns.c, xftfont.c, xgselect.c, xmenu.c, xrdb.c, xselect.c:
10020 * xterm.c:
10021 Omit needless casts involving void * pointers and allocation.
10022 Prefer "P = xmalloc (sizeof *P)" to "P = xmalloc (sizeof (TYPE_OF_P))",
10023 as the former is more robust if P's type is changed.
10024 Prefer xzalloc to xmalloc + memset 0.
10025 Simplify malloc-or-realloc to realloc.
10026 Don't worry about xmalloc returning a null pointer.
10027 Prefer xstrdup to xmalloc + strcpy.
10028 * editfns.c (Fmessage_box): Grow message_text by at least 80 when
10029 growing it.
10030 * keyboard.c (apply_modifiers_uncached): Prefer local array to
10031 alloca of a constant.
10032
10033 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10034
10035 * xdisp.c (display_line): Fix horizontal pixel coordinates when
10036 hscroll is larger than the line width. Fixes long and futile
10037 looping inside extend_face_to_end_of_line (on a TTY) producing
10038 glyphs that are not needed and thrown away.
10039
10040 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10041
10042 * marker.c (set_marker_restricted_both): Simplify by using
10043 clip_to_bounds.
10044
10045 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10046
10047 * editfns.c (region_limit): Simplify by using clip_to_bounds.
10048
10049 2012-07-05 Jan Djärv <jan.h.d@swipnet.se>
10050
10051 * gtkutil.c (gtk_scrollbar_new, gtk_box_new): Define when HAVE_GTK3 is
10052 not defined (Bug#11768).
10053 (xg_create_frame_widgets): Use gtk_plug_new_for_display (Bug#11768).
10054 (xg_create_frame_widgets, create_dialog, xg_get_file_with_chooser)
10055 (make_widget_for_menu_item, xg_make_tool_item): Use gtk_box_new
10056 followed by gtk_box_set_homogeneous (Bug#11768).
10057 (xg_update_menu_item): Use GTK_IS_BOX (Bug#11768).
10058 (update_theme_scrollbar_width, xg_create_scroll_bar):
10059 Use gtk_scrollbar_new (Bug#11768).
10060 (xg_event_is_for_scrollbar): Use Gdk Device functions for HAVE_GTK3.
10061 (is_box_type): New function (Bug#11768).
10062 (xg_tool_item_stale_p): Call is_box_type.
10063 (xg_initialize): Get settings by calling gtk_settings_get_for_screen
10064 with default display (Bug#11768).
10065
10066 2012-07-05 Eli Zaretskii <eliz@gnu.org>
10067
10068 * xdisp.c (window_hscroll_limited): New function.
10069 (pos_visible_p, init_iterator): Use it to avoid overflow of pixel
10070 coordinates when window's hscroll is set to insanely large
10071 values. (Bug#11857)
10072
10073 2012-07-05 Juanma Barranquero <lekktu@gmail.com>
10074
10075 * makefile.w32-in ($(BLD)/dired.$(O), $(BLD)/fileio.$(O)): Fix typo.
10076 ($(BLD)/terminal.$(O), $(BLD)/syntax.$(O)): Update dependencies.
10077
10078 2012-07-05 Dmitry Antipov <dmantipov@yandex.ru>
10079
10080 Cleanup xmalloc.
10081 * lisp.h (xzalloc): New prototype. Omit needless casts.
10082 * alloc.c (xzalloc): New function. Omit needless casts.
10083 * charset.c: Omit needless casts. Convert all calls to
10084 xmalloc with following memset to xzalloc.
10085 * dispnew.c: Likewise.
10086 * fringe.c: Likewise.
10087 * image.c: Likewise.
10088 * sound.c: Likewise.
10089 * term.c: Likewise.
10090 * w32fns.c: Likewise.
10091 * w32font.c: Likewise.
10092 * w32term.c: Likewise.
10093 * xfaces.c: Likewise.
10094 * xfns.c: Likewise.
10095 * xterm.c: Likewise.
10096 * atimer.c: Omit needless casts.
10097 * buffer.c: Likewise.
10098 * callproc.c: Likewise.
10099 * ccl.c: Likewise.
10100 * coding.c: Likewise.
10101 * composite.c: Likewise.
10102 * doc.c: Likewise.
10103 * doprnt.c: Likewise.
10104 * editfns.c: Likewise.
10105 * emacs.c: Likewise.
10106 * eval.c: Likewise.
10107 * filelock.c: Likewise.
10108 * fns.c: Likewise.
10109 * gtkutil.c: Likewise.
10110 * keyboard.c: Likewise.
10111 * lisp.h: Likewise.
10112 * lread.c: Likewise.
10113 * minibuf.c: Likewise.
10114 * msdos.c: Likewise.
10115 * print.c: Likewise.
10116 * process.c: Likewise.
10117 * region-cache.c: Likewise.
10118 * search.c: Likewise.
10119 * sysdep.c: Likewise.
10120 * termcap.c: Likewise.
10121 * terminal.c: Likewise.
10122 * tparam.c: Likewise.
10123 * w16select.c: Likewise.
10124 * w32.c: Likewise.
10125 * w32reg.c: Likewise.
10126 * w32select.c: Likewise.
10127 * w32uniscribe.c: Likewise.
10128 * widget.c: Likewise.
10129 * xdisp.c: Likewise.
10130 * xmenu.c: Likewise.
10131 * xrdb.c: Likewise.
10132 * xselect.c: Likewise.
10133
10134 2012-07-05 Paul Eggert <eggert@cs.ucla.edu>
10135
10136 * fileio.c (time_error_value): Check the right error number.
10137 Problem reported by Troels Nielsen in
10138 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00095.html>.
10139
10140 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10141
10142 * window.c (set_window_hscroll): Revert the 100000 hscroll limit.
10143 This should be fixed in a better way; see Eli Zaretskii in
10144 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00088.html>.
10145 (HSCROLL_MAX): Remove; this is now internal to set_window_hscroll.
10146
10147 * fileio.c (time_error_value): Rename from special_mtime.
10148 The old name's problems were noted by Eli Zaretskii in
10149 <http://lists.gnu.org/archive/html/emacs-devel/2012-07/msg00087.html>.
10150
10151 * emacs.c (gdb_pvec_type): Change it back to enum pvec_type.
10152 This variable's comment says Emacs needs at least one GDB-visible
10153 symbol of type enum pvec_type, to work around GDB problems.
10154 The symbol's value doesn't matter.
10155
10156 * alloc.c (PSEUDOVECTOR_NBYTES): Remove stray ';'
10157 that causes compilation to fail on pre-C99 compilers.
10158
10159 2012-07-04 Juanma Barranquero <lekktu@gmail.com>
10160
10161 * s/ms-w32.h (LISP_FLOAT_TYPE, HAVE_MEMCMP, HAVE_MEMCPY)
10162 (HAVE_MEMMOVE, HAVE_MEMSET): Don't set, obsolete.
10163
10164 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10165
10166 * buffer.c (init_buffer_once): Fix initialization of
10167 headers for buffer_defaults and buffer_local_symbols.
10168 Reported by Juanma Barranquero <lekktu@gmail.com>.
10169
10170 2012-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
10171
10172 Turn VECTOR_FREE_LIST_FLAG into PVEC_FREE.
10173 * lisp.h (enum pvec_type): Use fewer bits.
10174 (PSEUDOVECTOR_SIZE_BITS): New constant.
10175 (PSEUDOVECTOR_SIZE_MASK, PVEC_TYPE_MASK): Use it.
10176 (XSETPVECTYPESIZE, XSETTYPED_PSEUDOVECTOR, DEFUN): Adapt code to
10177 change in pvec_type.
10178 (PSEUDOVECTOR_TYPEP): New macro.
10179 (TYPED_PSEUDOVECTORP): Use it.
10180 * fns.c (internal_equal): Adapt code to extract pvectype.
10181 * emacs.c (gdb_pvec_type): Update type.
10182 * alloc.c (PSEUDOVECTOR_NBYTES): New macro.
10183 (VECTOR_FREE_LIST_SIZE_MASK): Remove (=> PSEUDOVECTOR_SIZE_MASK).
10184 (VECTOR_FREE_LIST_FLAG): Remove (=> PVEC_FREE).
10185 (SETUP_ON_FREE_LIST): Use XSETPVECTYPESIZE.
10186 (sweep_vectors): Use it. Use local var `total_bytes' instead of
10187 abusing vector->header.next.nbytes.
10188 (live_vector_p): Use PVEC_TYPE.
10189 (mark_object): Adapt code to extract pvectype. Use switch.
10190
10191 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10192
10193 * doprnt.c (doprnt): Don't assume string length fits in 'int'.
10194 Tighten new eassert a bit.
10195
10196 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10197
10198 Fix compilation with --enable-gcc-warnings and -O1
10199 optimization level.
10200 * doprnt.c (doprnt): Change type of tem to int, initialize
10201 to avoid compiler warning. Add eassert.
10202 * search.c (simple_search): Initialize match_byte to avoid
10203 compiler warning. Add eassert.
10204
10205 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10206
10207 Avoid weird behavior with large horizontal scrolls.
10208 Without this change, for example, large hscroll values would
10209 mess up Emacs's display on Fedora 15 x86, presumably due to
10210 overflows in int calculations in the display code.
10211 Also, if buffers had long lines, Emacs would freeze.
10212 * window.c (HSCROLL_MAX): Reduce to 100000, and make it visible to GDB.
10213 (set_window_hscroll): New function, containing the old guts of
10214 Fset_window_hscroll. Return the clipped value.
10215 (Fset_window_hscroll, Fscroll_left, Fscroll_right): Use it.
10216 This avoids the need to check against PTRDIFF_MAX.
10217
10218 * buffer.c (Fgenerate_new_buffer_name): Fix sprintf format mismatch.
10219
10220 2012-07-04 Dmitry Antipov <dmantipov@yandex.ru>
10221
10222 * buffer.c (Fgenerate_new_buffer_name): Fix type mismatch.
10223
10224 2012-07-04 Paul Eggert <eggert@cs.ucla.edu>
10225
10226 * regex.c: Suppress GCC warning on RHEL 6. (Bug#11207)
10227 Conditionalize the pragmas on GCC 4.5 or later, not GCC 4.3 or later,
10228 since GCC 4.4.6 issues a bogus warning for them.
10229
10230 Fix bugs in file timestamp newness comparisons.
10231 * fileio.c (Ffile_newer_than_file_p):
10232 * lread.c (Fload): Use full timestamp resolution of files,
10233 not just the 1-second resolution, so that files that are only
10234 slightly newer still count as newer.
10235 * fileio.c (Ffile_newer_than_file_p): Don't assume file
10236 timestamps fit in 'int'; this fixes a Y2038 bug on most hosts.
10237
10238 2012-07-03 Paul Eggert <eggert@cs.ucla.edu>
10239
10240 * fileio.c: Improve handling of file time marker. (Bug#11852)
10241 (special_mtime): New function.
10242 (Finsert_file_contents, Fverify_visited_file_modtime):
10243 Use it to set special mtime values consistently.
10244
10245 2012-07-03 Andreas Schwab <schwab@linux-m68k.org>
10246
10247 * fileio.c (Finsert_file_contents): Properly handle st_mtime
10248 marker for non-existing file. (Bug#11852)
10249
10250 2012-07-03 Glenn Morris <rgm@gnu.org>
10251
10252 * lisp.h (Fread_file_name): Restore EXFUN (it's not a normal DEFUN
10253 and did not make it into globals.h).
10254
10255 2012-07-03 Tom Tromey <tromey@redhat.com>
10256
10257 * window.c (Fset_window_margins, Fset_window_fringes)
10258 (Fset_window_scroll_bars, Fset_window_vscroll): No longer static.
10259 * textprop.c (Fprevious_property_change): No longer static.
10260 * syntax.c (Fsyntax_table_p): No longer static.
10261 * process.c (Fget_process, Fprocess_datagram_address): No longer
10262 static.
10263 * keymap.c (Flookup_key, Fcopy_keymap): No longer static.
10264 * keyboard.c (Fcommand_execute): No longer static.
10265 Remove EXFUN.
10266 * insdel.c (Fcombine_after_change_execute): No longer static.
10267 * image.c (Finit_image_library): No longer static.
10268 * fileio.c (Fmake_symbolic_link): No longer static.
10269 * eval.c (Ffetch_bytecode): No longer static.
10270 * editfns.c (Fuser_full_name): No longer static.
10271 * doc.c (Fdocumentation_property, Fsnarf_documentation):
10272 No longer static.
10273 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): No longer
10274 static.
10275 * dired.c (Ffile_attributes): No longer static.
10276 * composite.c (Fcomposition_get_gstring): No longer static.
10277 * callproc.c (Fgetenv_internal): No longer static.
10278
10279 * ccl.h: Remove EXFUNs.
10280 * buffer.h: Remove EXFUNs.
10281 * dispextern.h: Remove EXFUNs.
10282 * intervals.h: Remove EXFUNs.
10283 * fontset.h: Remove EXFUN.
10284 * font.h: Remove EXFUNs.
10285 * dosfns.c (system_process_attributes): Remove EXFUN.
10286 * keymap.h: Remove EXFUNs.
10287 * lisp.h: Remove EXFUNs.
10288 * w32term.h: Remove EXFUNs.
10289 * window.h: Remove EXFUNs.
10290 * xsettings.h: Remove EXFUN.
10291 * xterm.h: Remove EXFUN.
10292
10293 2012-07-03 Glenn Morris <rgm@gnu.org>
10294
10295 * lisp.h (Frandom): Make it visible to C.
10296 * buffer.c (Fgenerate_new_buffer_name): Speed up finding a new
10297 buffer for invisible buffers. (Bug#1229)
10298
10299 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10300
10301 Fix block vector allocation code to allow VECTOR_BLOCK_SIZE
10302 values which aren't power of 2.
10303 * alloc.c (VECTOR_FREE_LIST_SIZE_MASK): New macro.
10304 Verify its value and the value of VECTOR_BLOCK_SIZE. Adjust users
10305 accordingly.
10306
10307 2012-07-03 Stefan Monnier <monnier@iro.umontreal.ca>
10308
10309 * lisp.h (Lisp_Misc, Lisp_Fwd): Move around to group better.
10310
10311 * alloc.c (mark_object): Revert part of last patch to use `switch'.
10312
10313 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10314
10315 * alloc.c (allocate_vector_block): Remove redundant
10316 calls to mallopt if DOUG_LEA_MALLOC is defined.
10317 (allocate_vectorlike): If DOUG_LEA_MALLOC is defined,
10318 avoid calls to mallopt if zero_vector is returned.
10319
10320 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10321
10322 * alloc.c (check_string_bytes): If GC_CHECK_STRING_BYTES
10323 is enabled, avoid dereferencing NULL current_sblock if
10324 running undumped.
10325
10326 2012-07-03 Dmitry Antipov <dmantipov@yandex.ru>
10327
10328 Cleanup basic buffer management.
10329 * buffer.h (struct buffer): Change layout to use generic vector
10330 marking code. Fix some comments. Change type of 'clip_changed'
10331 to bitfield. Remove unused #ifndef old.
10332 (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER): Remove.
10333 (GET_OVERLAYS_AT): Fix indentation.
10334 (for_each_per_buffer_object_at): New macro.
10335 * buffer.c (clone_per_buffer_values, reset_buffer_local_variables)
10336 (Fbuffer_local_variables): Use it.
10337 (init_buffer_once, syms_of_buffer): Remove unused #ifndef old.
10338 * alloc.c (allocate_buffer): Adjust to match new layout of
10339 struct buffer. Fix comment.
10340 (mark_overlay): New function.
10341 (mark_buffer): Use it. Use mark_vectorlike to mark normal
10342 Lisp area of struct buffer.
10343 (mark_object): Use it. Adjust marking of misc objects
10344 and related comments.
10345
10346 2012-07-02 Paul Eggert <eggert@cs.ucla.edu>
10347
10348 * alloc.c (mark_object): Remove "#ifdef GC_CHECK_MARKED_OBJECTS"
10349 wrapper that is not needed because the wrapped code is a no-op (zero
10350 machine instructions) when GC_CHECK_MARKED_OBJECTS is not defined.
10351 This avoids a -Wunused-macros diagnostic with GCC 4.7.1 x86-64.
10352
10353 2012-07-02 Dmitry Antipov <dmantipov@yandex.ru>
10354
10355 * alloc.c (mark_buffer): Simplify. Remove prototype.
10356 (mark_object): Add comment. Reorganize marking of vector-like
10357 objects. Use CHECK_LIVE for all vector-like objects except buffers
10358 and subroutines when GC_CHECK_MARKED_OBJECTS is defined.
10359 Avoid redundant calls to mark_vectorlike for bool vectors.
10360
10361 2012-06-30 Glenn Morris <rgm@gnu.org>
10362
10363 * nsterm.m (ns_init_paths): Ignore site-lisp if --no-site-lisp.
10364
10365 * epaths.in (PATH_SITELOADSEARCH): New.
10366 * lread.c (init_lread): Use PATH_SITELOADSEARCH.
10367 This is rather than relying on --enable-locallisppath elements
10368 having "site-lisp" in their names. (Bug#10208#25, 11658)
10369
10370 2012-06-30 Eli Zaretskii <eliz@gnu.org>
10371
10372 * w32proc.c (sys_select): Accept and ignore one more argument.
10373
10374 * w32.c (emacs_gnutls_pull): Call select with one more argument.
10375
10376 * sysselect.h [DOS_NT]: Don't include sys/select.h.
10377 (pselect) [!MS_DOS]: Redirect to sys_select.
10378
10379 * sysdep.c: Don't include dos.h and dosfns.h.
10380
10381 * process.c (sys_select):
10382 * msdos.c (sys_select): Accept one more argument and ignore it.
10383
10384 * msdos.c (event_timestamp, sys_select): Use gnulib's gettime;
10385 adapt data types and code to that.
10386
10387 * dosfns.c:
10388 * msdos.c (gettime, settime): Define away the prototypes in dos.h,
10389 which clashes with the gnulib function of the same name.
10390
10391 2012-06-30 Andreas Schwab <schwab@linux-m68k.org>
10392
10393 * font.c (font_style_to_value, font_style_symbolic)
10394 (font_prop_validate_style): Add type checks for values in
10395 font_style_table.
10396
10397 * lisp.h (CHECK_RANGED_INTEGER): Make value to check the first
10398 argument.
10399 * character.c, charset.c, menu.c, process.c, window.c: Adjust all
10400 uses.
10401
10402 2012-06-29 Eli Zaretskii <eliz@gnu.org>
10403
10404 * xdisp.c (try_window_id): Undo last change.
10405
10406 * w32.c (getwd): Adjust commentary about startup_dir.
10407 (init_environment): Always call sys_access, even in non-MSVC
10408 builds. Don't chdir to the directory of the Emacs executable.
10409 This undoes code from 1997 which was justified by the need to
10410 "avoid conflicts when removing and renaming directories". But its
10411 downside was that every relative file name was being interpreted
10412 relative to the directory of the Emacs executable, which can never
10413 be TRT. In particular, it broke sys_access when called with
10414 relative file names.
10415 (sys_access): Map GetLastError to errno.
10416
10417 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10418
10419 * window.h (struct window): Change type of 'fringes_outside_margins'
10420 to bitfield. Fix comment. Adjust users accordingly.
10421 (struct window): Change type of 'window_end_bytepos' to ptrdiff_t.
10422 Adjust comment.
10423 * xdisp.c (try_window_id): Change type of 'first_vpos' and 'vpos'
10424 to ptrdiff_t.
10425
10426 2012-06-29 Andreas Schwab <schwab@linux-m68k.org>
10427
10428 * gnutls.c (emacs_gnutls_handshake):
10429 Add QUIT to make the loop interruptible.
10430
10431 2012-06-29 Glenn Morris <rgm@gnu.org>
10432
10433 * charset.c (init_charset): Make lack of etc/charsets fatal.
10434
10435 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10436
10437 * editfns.c (region_limit): Fix type mismatch.
10438
10439 2012-06-29 Dmitry Antipov <dmantipov@yandex.ru>
10440
10441 * nsfns.m: Fix GLYPH_DEBUG usage assuming that it may be
10442 undefined. Convert from xassert to eassert.
10443 * nsmenu.m: Convert from xassert to eassert.
10444 * nsterm.m: Likewise.
10445
10446 2012-06-28 Stefan Monnier <monnier@iro.umontreal.ca>
10447
10448 * editfns.c (region_limit): Clip to narrowing (bug#11770).
10449
10450 2012-06-28 Paul Eggert <eggert@cs.ucla.edu>
10451
10452 Avoid integer overflow on scroll-left and scroll-right.
10453 * window.c (HSCROLL_MAX): New macro.
10454 (Fscroll_left, Fscroll_right): Avoid undefined behavior on integer
10455 overflow when requested scroll falls outside ptrdiff_t range.
10456
10457 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10458
10459 * window.h (struct window): Change type of 'hscroll',
10460 'min_hscroll' and 'last_point' from Lisp_Object to ptrdiff_t,
10461 'last_modified' and 'last_overlay_modified' to EMACS_INT.
10462 Adjust users accordingly.
10463 * xdisp.c (try_cursor_movement): Replace type check with eassert.
10464 * window.c (Fscroll_left, Fscroll_right): Change type of 'hscroll'
10465 from EMACS_INT to ptrdiff_t.
10466 (make_window): Omit redundant initialization.
10467
10468 2012-06-28 Juanma Barranquero <lekktu@gmail.com>
10469
10470 * makefile.w32-in ($(BLD)/regex.$(O)): Update dependencies.
10471
10472 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10473
10474 * window.h (struct window): Change type of 'use_time' and
10475 'sequence_number' from Lisp_Object to int.
10476 * frame.c (make_frame): Adjust users accordingly.
10477 * print.c (print_object): Likewise.
10478 * window.c (select_window, Fwindow_use_time, make_parent_window)
10479 (make_window): Likewise.
10480
10481 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10482
10483 * dispextern.h (GLYPH_DEBUG): Now defined in config.h if
10484 enabled with --enable-checking=[all,glyphs] configure option.
10485 Fix GLYPH_DEBUG usage assuming that it may be undefined,
10486 adjust comments accordingly.
10487 * dispnew.c: Fix GLYPH_DEBUG usage assuming that it may be
10488 undefined, adjust comments accordingly.
10489 * image.c: Likewise.
10490 * scroll.c: Likewise.
10491 * w32fns.c: Likewise.
10492 * w32term.c: Likewise.
10493 * xdisp.c: Likewise.
10494 * xfaces.c: Likewise.
10495 * xfns.c: Likewise.
10496 * xterm.c: Likewise.
10497
10498 2012-06-28 Dmitry Antipov <dmantipov@yandex.ru>
10499
10500 Generalize run-time debugging checks.
10501 * dispextern.h (XASSERTS): Remove.
10502 * fontset.c (xassert): Remove.
10503 Convert from xassert to eassert.
10504 * alloc.c: Convert from xassert to eassert.
10505 * bidi.c: Likewise.
10506 * dispnew.c: Likewise.
10507 * fns.c: Likewise.
10508 * fringe.c: Likewise.
10509 * ftfont.c: Likewise.
10510 * gtkutil.c: Likewise.
10511 * image.c: Likewise.
10512 * keyboard.c: Likewise.
10513 * menu.c: Likewise.
10514 * process.c: Likewise.
10515 * scroll.c: Likewise.
10516 * sound.c: Likewise.
10517 * term.c: Likewise.
10518 * w32console.c: Likewise.
10519 * w32fns.c: Likewise.
10520 * w32term.c: Likewise.
10521 * window.c: Likewise.
10522 * xdisp.c: Likewise.
10523 * xfaces.c: Likewise.
10524 * xfns.c: Likewise.
10525 * xselect.c: Likewise.
10526 * xterm.c: Likewise.
10527
10528 2012-06-27 Stefan Monnier <monnier@iro.umontreal.ca>
10529
10530 * fns.c (maybe_resize_hash_table): Output message when growing the
10531 purify-hashtable.
10532
10533 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10534
10535 * alloc.c (allocate_string_data): Remove dead code.
10536 * xsettings.c (XSETTINGS_FONT_NAME): Move under HAVE_XFT to
10537 avoid GCC warning about unused macro.
10538
10539 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10540
10541 * alloc.c (allocate_string): Omit intervals initialization.
10542 * alloc.c (make_uninit_multibyte_string): Initialize intervals
10543 as in make_pure_string and make_pure_c_string.
10544
10545 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10546
10547 * alloc.c (allocate_string): Fix last change.
10548
10549 2012-06-27 Dmitry Antipov <dmantipov@yandex.ru>
10550
10551 * alloc.c (allocate_string): Remove two redundant calls
10552 to memset, add explicit initialization where appropriate.
10553
10554 2012-06-27 Glenn Morris <rgm@gnu.org>
10555
10556 * lisp.mk (lisp): Remove paths.elc.
10557
10558 2012-06-27 Chong Yidong <cyd@gnu.org>
10559
10560 * doc.c (Fsubstitute_command_keys): Fix punctuation.
10561
10562 2012-06-26 John Wiegley <johnw@newartisans.com>
10563
10564 * unexmacosx.c (copy_data_segment): Add two section names used
10565 on Mac OS X Lion: __mod_init_func and __mod_term_func.
10566
10567 * alloc.c (mark_memory): Do not check with -faddress-sanitizer
10568 when building with Clang.
10569
10570 2012-06-26 Stefan Monnier <monnier@iro.umontreal.ca>
10571
10572 * eval.c (Fapply): Allow calling it with a single argument.
10573
10574 2012-06-26 Eli Zaretskii <eliz@gnu.org>
10575
10576 * s/ms-w32.h (strcasecmp, strncasecmp) [_MSC_VER]: Redirect to
10577 _stricmp and _strnicmp.
10578 (HAVE_STRCASECMP, HAVE_STRNCASECMP): Define to 1.
10579
10580 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10581
10582 * alloc.c (allocate_window): Zero out non-Lisp part of newly
10583 allocated window.
10584 (allocate_process): Likewise for new process.
10585 (allocate_terminal): Change to use offsetof.
10586 (allocate_frame): Likewise.
10587 * frame.c (make_frame): Omit redundant initialization.
10588 * window.c (make_parent_window): Use memset.
10589 (make_window): Omit redundant initialization.
10590 * process.c (make_process): Omit redundant initialization.
10591 * terminal.c (create_terminal): Likewise.
10592
10593 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10594
10595 * term.c (delete_tty): Remove redundant call to memset.
10596
10597 2012-06-26 Dmitry Antipov <dmantipov@yandex.ru>
10598
10599 * alloc.c: Remove build_string.
10600 * lisp.h: Define build_string as static inline. This provides
10601 a better opportunity to optimize away calls to strlen when the
10602 function is called with compile-time constant argument.
10603 * image.c (imagemagick_error): Convert to build_string.
10604 * w32proc.c (sys_spawnve): Likewise.
10605 * xterm.c (x_term_init): Likewise.
10606
10607 2012-06-26 Paul Eggert <eggert@cs.ucla.edu>
10608
10609 Use sprintf return value instead of invoking strlen on result.
10610 In the old days this wasn't portable, since some sprintf
10611 implementations returned char *. But they died out years ago and
10612 Emacs already assumes sprintf returns int.
10613 Similarly for float_to_string.
10614 This patch speeds up (number-to-string 1000) by 3% on Fedora 15 x86-64.
10615 * ccl.c (ccl_driver):
10616 * character.c (string_escape_byte8):
10617 * data.c (Fnumber_to_string):
10618 * doprnt.c (doprnt):
10619 * print.c (print_object):
10620 * xdisp.c (message_dolog):
10621 * xfns.c (syms_of_xfns):
10622 Use sprintf or float_to_string result to avoid need to call strlen.
10623 * data.c (Fnumber_to_string):
10624 Use make_unibyte_string, since the string must be ASCII.
10625 * lisp.h, print.c (float_to_string): Now returns int length.
10626 * term.c (produce_glyphless_glyph):
10627 Use sprintf result rather than recomputing it.
10628
10629 Clean out last vestiges of the old HAVE_CONFIG_H stuff.
10630 * Makefile.in (ALL_CFLAGS):
10631 * makefile.w32-in (LOCAL_FLAGS): Remove -DHAVE_CONFIG_H.
10632 * gmalloc.c, regex.c: Include <config.h> unconditionally.
10633
10634 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10635
10636 * dispextern.h (xstrcasecmp): Define to library function
10637 strcasecmp if available.
10638 * xfaces.c: Do not use xstrcasecmp if strcasecmp is available.
10639
10640 2012-06-25 Andreas Schwab <schwab@linux-m68k.org>
10641
10642 * keyboard.c (menu_bar_items, menu_bar_item, read_key_sequence):
10643 Avoid comma operator.
10644 * menu.c (push_submenu_start, push_submenu_end)
10645 (push_left_right_boundary, push_menu_pane): Likewise.
10646 * msdos.c (dos_rawgetc): Likewise.
10647
10648 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10649
10650 * xfns.c (xic_create_fontsetname): Remove redundant calls
10651 to memset.
10652
10653 2012-06-25 Paul Eggert <eggert@cs.ucla.edu>
10654
10655 * gtkutil.c (get_utf8_string): Remove redundant assignment.
10656 sprintf already null-terminates its output.
10657
10658 * xfns.c (x_window): Remove redundant cast.
10659
10660 2012-06-25 Dmitry Antipov <dmantipov@yandex.ru>
10661
10662 * xmenu.c (xmenu_show, xdialog_show): Explicit cast from
10663 `const char *' to `char *' to avoid compiler warning.
10664
10665 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10666
10667 * xterm.c (x_term_init): Build proper-sized _XSETTINGS_Snnn string
10668 instead of truncating it to 63 (admittedly a generous limit).
10669
10670 * process.c: Fix spelling and caps in comments.
10671
10672 2012-06-24 Dan Nicolaescu <dann@ics.uci.edu>
10673
10674 * emacs.c (setpgrp): Remove definition, unused.
10675 * sysdep.c (setpgrp): Remove definition, not used in this file.
10676
10677 2012-06-24 Juanma Barranquero <lekktu@gmail.com>
10678
10679 * makefile.w32-in: Update dependencies.
10680
10681 2012-06-24 Eli Zaretskii <eliz@gnu.org>
10682
10683 * makefile.w32-in (TIMESPEC_H): Remove nt/inc/sys/time.h.
10684 (SYSTIME_H): Add nt/inc/sys/time.h.
10685
10686 * systime.h [WINDOWSNT]: Include sys/time.h.
10687
10688 * s/ms-w32.h (struct timespec): Definition moved from
10689 nt/inc/sys/time.h. Suggested by Paul Eggert <eggert@cs.ucla.edu>.
10690
10691 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10692
10693 Switch from NO_RETURN to C11's _Noreturn (Bug#11750).
10694 * buffer.h (buffer_slot_type_mismatch):
10695 * data.c (arith_error) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10696 * eval.c (unwind_to_catch):
10697 * image.c (my_png_error, my_error_exit):
10698 * keyboard.c (quit_throw_to_read_char, user_error)
10699 (Fexit_recursive_edit, Fabort_recursive_edit):
10700 * lisp.h (die, args_out_of_range, args_out_of_range_3)
10701 (wrong_type_argument, buffer_overflow, __executable_start)
10702 (memory_full, buffer_memory_full, string_overflow, Fthrow)
10703 (xsignal, xsignal0, xsignal1, xsignal2, xsignal3, signal_error)
10704 (error, verror, nsberror, report_file_error, Ftop_level, Fkill_emacs)
10705 (fatal):
10706 (child_setup) [!DOS_NT]:
10707 * lread.c (end_of_file_error, invalid_syntax):
10708 * process.c (send_process_trap) [!FORWARD_SIGNAL_TO_MAIN_THREAD]:
10709 * puresize.h (pure_write_error):
10710 * search.c (matcher_overflow):
10711 * sound.c (sound_perror, alsa_sound_perror):
10712 * sysdep.c, syssignal.h (croak):
10713 * term.c (maybe_fatal, vfatal):
10714 * textprop.c (text_read_only):
10715 * undo.c (user_error):
10716 * unexmacosx.c (unexec_error):
10717 * xterm.c (x_ins_del_lines, x_delete_glyphs):
10718 Use _Noreturn rather than NO_RETURN.
10719 No need for separate decl merely because of _Noreturn.
10720 * sound.c (sound_warning, parse_sound):
10721 Remove unnecessary forward decls.
10722
10723 2012-06-24 Paul Eggert <eggert@cs.ucla.edu>
10724
10725 Fix bug when time_t is unsigned and as wide as intmax_t (Bug#9000).
10726 * lisp.h (WAIT_READING_MAX): New macro.
10727 * dispnew.c (Fsleep_for, sit_for):
10728 * keyboard.c (kbd_buffer_get_event):
10729 * process.c (Faccept_process_output):
10730 Use it to avoid bogus compiler warnings with obsolescent GCC versions.
10731 This improves on the previous patch, which introduced a bug
10732 when time_t is unsigned and as wide as intmax_t.
10733 See <http://bugs.gnu.org/9000#51>.
10734
10735 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10736
10737 * dispnew.c (sit_for, Fsleep_for):
10738 * keyboard.c (kbd_buffer_get_event):
10739 * process.c (Faccept_process_output): Avoid compiler warnings when
10740 comparing a 32-bit time_t with a 64-bit INTMAX_MAX.
10741
10742 2012-06-23 Juanma Barranquero <lekktu@gmail.com>
10743
10744 * makefile.w32-in: Update dependencies.
10745
10746 * w32.c (ltime): Add return type and declare static.
10747 (w32_get_internal_run_time): Remove usused variable `time_100ns'.
10748
10749 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10750
10751 * sysdep.c [__FreeBSD__]: Fix more recently-introduced typos.
10752 Privately reported by Herbert J. Skuhra.
10753 (make_lisp_timeval) [__FreeBSD__]: Rename from TIMELIST.
10754 All uses changed.
10755 (system_process_attributes) [__FreeBSD__]: Invoke make_lisp_time,
10756 not make_lisp_timeval, when the argument is of type EMACS_TIME.
10757
10758 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10759
10760 * w32proc.c (Fw32_get_locale_info): Fix an off-by-one error in
10761 last argument of make_unibyte_string.
10762
10763 * keyboard.c (kbd_buffer_get_event): Include the codepage and the
10764 language ID in the event parameters.
10765
10766 * w32term.c (w32_read_socket): Put the new keyboard codepage into
10767 event.code, not the obscure "character set ID".
10768
10769 2012-06-23 Chong Yidong <cyd@gnu.org>
10770
10771 * xmenu.c (x_menu_wait_for_event): Adapt GTK3 to new xg_select.
10772
10773 2012-06-23 Eli Zaretskii <eliz@gnu.org>
10774
10775 Fix the MS-Windows build broken by 2012-06-22T21:17:42Z!eggert@cs.ucla.edu.
10776 * w32.c (fdutimens): New function.
10777
10778 * w32proc.c (sys_select): Adapt to change in the EMACS_TIME type.
10779
10780 * s/ms-w32.h (pselect): Redirect to sys_select.
10781
10782 * sysselect.h [WINDOWSNT]: Don't include sys/select.h.
10783
10784 * ralloc.c (r_alloc_inhibit_buffer_relocation): Fix stupid thinko
10785 in the logic of incrementing and decrementing the value of
10786 use_relocatable_buffers.
10787
10788 2012-06-23 Paul Eggert <eggert@cs.ucla.edu>
10789
10790 * sysdep.c [__FreeBSD__]: Fix recently-introduced typos.
10791 Privately reported by Herbert J. Skuhra.
10792 [__FreeBSD__]: Remove "*/" typo after "#include".
10793 (timeval_to_EMACS_TIME) [__FreeBSD__]: New static function.
10794 (TIMEVAL) [__FreeBSD__]: Now a static function rather than a macro.
10795 (TIMEVAL, system_process_attributes) [__FreeBSD__]:
10796 Don't assume EMACS_TIME and struct timeval are the same type.
10797
10798 2012-06-22 Paul Eggert <eggert@cs.ucla.edu>
10799
10800 Support higher-resolution time stamps (Bug#9000).
10801 The time stamps are only nanosecond-resolution at the C level,
10802 since that's the best that any real-world system supports now.
10803 But they are picosecond-resolution at the Lisp level, as that's
10804 easy, and leaves room for future OS improvements.
10805
10806 * Makefile.in (LIB_CLOCK_GETTIME): New macro.
10807 (LIBES): Use it.
10808
10809 * alloc.c (Fgarbage_collect): Port to higher-res time stamps.
10810 Don't get current time unless it's needed.
10811
10812 * atimer.c: Include <sys/time.h> unconditionally, since gnulib
10813 now provides it if it's absent.
10814 (start_atimer): Port to higher-res time stamps.
10815 Check for time stamp overflow. Don't get current time more
10816 often than is needed.
10817
10818 * buffer.h (struct buffer): Buffer modtime now has high resolution.
10819 Include systime.h, not time.h.
10820 (NONEXISTENT_MODTIME_NSECS, UNKNOWN_MODTIME_NSECS): New macros.
10821
10822 * dired.c: Include stat-time.h.
10823 (Ffile-attributes): File times now have higher resolution.
10824
10825 * dispextern.h [HAVE_WINDOW_SYSTEM]: Include systime.h.
10826 (struct image): Timestamp now has higher resolution.
10827
10828 * dispnew.c (PERIODIC_PREEMPTION_CHECKING): Remove, as Emacs always
10829 has at least microseconds now. All uses removed.
10830 (update_frame, update_single_window, update_window, update_frame_1)
10831 (Fsleep_for, sit_for): Port to higher-resolution time stamps.
10832 (duration_to_sec_usec): Remove; no longer needed.
10833
10834 * editfns.c (time_overflow): Now extern.
10835 (Fcurrent_time, Fget_internal_run_time, make_time, lisp_time_argument)
10836 (float-time, Fformat_time_string, Fcurrent_time_string)
10837 (Fcurrent_time_zone): Accept and generate higher-resolution
10838 time stamps.
10839 (make_time_tail, make_lisp_time, dissassemble_lisp_time)
10840 (decode_time_components, lisp_seconds_argument): New functions.
10841 (make_time): Now static.
10842 (lisp_time_argument): Now returns EMACS_TIME. New arg ppsec.
10843 Report an error if the time is invalid, rather than having the caller
10844 do that.
10845
10846 * fileio.c: Include <stat-time.h>
10847 (Fcopy_file): Copy higher-resolution time stamps.
10848 Prefer to set the time stamp via a file descriptor if that works.
10849 (Fset_file_times, Finsert_file_contents, Fwrite_region)
10850 (Fverify_visited_file_modtime, Fclear_visited_file_modtime)
10851 (Fvisited_file_modtime, Fset_visited_file_modtime):
10852 Support higher-resolution time stamps.
10853
10854 * fns.c (Frandom): Use nanoseconds, not microseconds, for seed.
10855
10856 * gtkutil.c (xg_maybe_add_timer): Port to higher-res time stamps.
10857
10858 * image.c (prepare_image_for_display, clear_image_cache)
10859 (lookup_image): Port to higer-resolution time stamps.
10860
10861 * keyboard.c (start_polling, bind_polling_period):
10862 Check for time stamp overflow.
10863 (read_char, kbd_buffer_get_event, timer_start_idle)
10864 (timer_stop_idle, timer_resume_idle, timer_check_2, timer_check)
10865 (Fcurrent_idle_time, init_keyboard, set_waiting_for_input):
10866 Port to higher-resolution time stamps. Do not assume time_t is signed.
10867 (decode_timer): New function. Timers are now vectors of length 9,
10868 not 8, to accommodate the picosecond component.
10869 (timer_check_2): Use it.
10870
10871 * nsterm.m (select_timeout, timeval_subtract): Remove.
10872 (ns_timeout): Use Emacs's facilities for time stamp arithmetic,
10873 as they're a bit more accurate and handle overflow better.
10874 (ns_select): Change prototype to be compatible with pselect.
10875 (ns_select, ns_term_shutdown): Port to ns-resolution time stamps.
10876 * nsterm.h (ns_select): Adjust prototype.
10877
10878 * msdos.c (EMACS_TIME_ZERO_OR_NEG_P): Remove, as it assumes
10879 us-resolution time stamps.
10880 (sys_select): Use the new EMACS_TIME_SIGN macro instead.
10881
10882 * lread.c (read_filtered_event): Port to ns-resolution time stamps.
10883
10884 * lisp.h (time_overflow): New decl.
10885 (wait_reading_process_output): First arg is now intmax_t, not int,
10886 to accommodate larger waits.
10887
10888 * process.h (struct Lisp_Process.read_output_delay):
10889 Now counts nanoseconds, not microseconds.
10890 * process.c (ADAPTIVE_READ_BUFFERING): Don't worry about
10891 EMACS_HAS_USECS.
10892 (READ_OUTPUT_DELAY_INCREMENT, Faccept_process_output)
10893 (wait_reading_process_output):
10894 Port to ns-resolution time stamps.
10895 (Faccept_process_output, wait_reading_process_output):
10896 Check for time stamp overflow. Do not assume time_t is signed.
10897 (select_wrapper): Remove; we now use pselect.
10898 (Fprocess_attributes): Now generates ns-resolution time stamps.
10899
10900 * sysdep.c: Include utimens.h. Don't include utime.h
10901 or worry about struct utimbuf; gnulib does that for us now.
10902 (gettimeofday): Remove; gnulib provides a substitute.
10903 (make_timeval): New function.
10904 (set_file_times): Now sets ns-resolution time stamps.
10905 New arg FD; all uses changed.
10906 (time_from_jiffies, ltime_from_jiffies, get_up_time)
10907 (system_process_attributes):
10908 Now returns ns-resolution time stamp. All uses changed.
10909 Check for time stamp overflow.
10910
10911 * sysselect.h: Don't depend on HAVE_SYS_SELECT_H; gnulib
10912 provides a substitute now.
10913
10914 * systime.h: Include timespec.h rather than sys/time.h and time.h,
10915 since it guarantees struct timespec.
10916 (EMACS_TIME): Now struct timespec, so that we can support
10917 ns-resolution time stamps.
10918 (EMACS_TIME_RESOLUTION, LOG10_EMACS_TIME_RESOLUTION): New macros.
10919 (EMACS_HAS_USECS): Remove; Emacs always has sub-second time stamps now.
10920 (EMACS_USECS): Remove.
10921 (EMACS_SET_USECS): The underlying time stamp now has ns resolution,
10922 so multiply the arg by 1000 before storing it.
10923 (EMACS_NSECS, EMACS_SECS_ADDR, EMACS_SET_NSECS, EMACS_SET_SECS_NSECS):
10924 New macros.
10925 (EMACS_GET_TIME, EMACS_ADD_TIME, EMACS_SUB_TIME):
10926 Port to ns-resolution time stamps.
10927 (EMACS_TIME_NEG_P): Remove; replaced by....
10928 (EMACS_TIME_SIGN): New macro.
10929 (EMACS_SET_INVALID_TIME, EMACS_TIME_VALID_P)
10930 (EMACS_TIME_FROM_DOUBLE, EMACS_TIME_TO_DOUBLE): New macros.
10931 (set_file_times, make_time, lisp_time_argument): Adjust signature.
10932 (make_timeval, make_lisp_time, decode_time_components): New decls.
10933 (EMACS_TIME_CMP): Remove; no longer used. Plus, it was buggy, in
10934 that it mishandled time_t overflow. You can't compare by subtracting!
10935 (EMACS_TIME_EQ, EMACS_TIME_NE, EMACS_TIME_GT, EMACS_TIME_GE)
10936 (EMACS_TIME_LT, EMACS_TIME_LE): Rewrite in terms of timespec_cmp.
10937
10938 * term.c: Include <sys/time.h>.
10939 (timeval_to_Time): New function, for proper overflow wraparound.
10940 (term_mouse_position, term_mouse_click): Use it.
10941
10942 * undo.c (record_first_change): Support higher-resolution time stamps
10943 in the undo buffer.
10944 (Fprimitive_undo): Use them when restoring time stamps.
10945
10946 * w32.c (ltime, U64_TO_LISP_TIME, process_times, emacs_gnutls_pull)
10947 (w32_get_internal_run_time):
10948 Port to higher-resolution Emacs time stamps.
10949 (ltime): Now accepts single 64-bit integer, as that's more convenient
10950 for callers.
10951
10952 * xdisp.c (start_hourglass): Port to ns-resolution time stamps.
10953
10954 * xgselect.c, xgselect.h (xg_select): Add sigmask argument,
10955 for compatibility with pselect. Support ns-resolution time stamps.
10956
10957 * xmenu.c (x_menu_wait_for_event): Support ns-resolution time stamps.
10958
10959 * xselect.c (wait_for_property_change, x_get_foreign_selection):
10960 Check for time stamp overflow, and support ns-resolution time stamps.
10961
10962 * xterm.c: Don't include sys/time.h; gnulib does that for us now.
10963 Don't worry about whether HAVE_TIMEVAL and HAVE_SELECT are set.
10964 (timeval_subtract): Remove; no longer needed.
10965 (XTflash, XTring_bell, x_wait_for_event):
10966 Port to ns-resolution time stamps. Don't assume time_t is signed.
10967
10968 2012-06-22 Chong Yidong <cyd@gnu.org>
10969
10970 * xdisp.c (x_consider_frame_title): Revert last change.
10971
10972 2012-06-22 Eli Zaretskii <eliz@gnu.org>
10973
10974 * alloc.c (NSTATICS): Enlarge to 0x650. Otherwise, Emacs compiled
10975 with -DENABLE_CHECKING -DXASSERTS -DGLYPH_DEBUG=1 -DBYTE_CODE_METER
10976 aborts in staticpro during startup. (Without -DBYTE_CODE_METER,
10977 staticidx goes up to 1597 out of 1600 = 0x640.)
10978
10979 2012-06-20 Paul Eggert <eggert@cs.ucla.edu>
10980
10981 * fileio.c (Fdefault_file_modes): Block input while fiddling with umask.
10982 Otherwise, the umask might be mistakenly 0 while handling input signals.
10983
10984 2012-06-19 Stefan Monnier <monnier@iro.umontreal.ca>
10985
10986 * minibuf.c (Fread_string): Bind minibuffer-completion-table.
10987
10988 2012-06-19 Dmitry Antipov <dmantipov@yandex.ru>
10989
10990 * alloc.c, bytecode.c, ccl.c, coding.c, composite.c, data.c, dosfns.c:
10991 * font.c, image.c, keyboard.c, lread.c, menu.c, minibuf.c, msdos.c:
10992 * print.c, syntax.c, window.c, xmenu.c, xselect.c: Replace direct
10993 access to `contents' member of Lisp_Vector objects with AREF and ASET
10994 where appropriate.
10995
10996 2012-06-19 Chong Yidong <cyd@gnu.org>
10997
10998 * frame.c (delete_frame): When selecting a frame on a different
10999 text terminal, do not alter the terminal's top-frame.
11000
11001 * xdisp.c (format_mode_line_unwind_data): Record the target
11002 frame's selected window and its terminal's top-frame.
11003 (unwind_format_mode_line): Restore them.
11004 (x_consider_frame_title, display_mode_line, Fformat_mode_line):
11005 Callers changed.
11006 (x_consider_frame_title): Do not condition on HAVE_WINDOW_SYSTEM,
11007 since tty frames can be explicitly named.
11008 (prepare_menu_bars): Likewise.
11009
11010 * term.c (Ftty_top_frame): New function.
11011
11012 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11013
11014 Port byte-code-meter to modern targets.
11015 * bytecode.c (METER_CODE) [BYTE_CODE_METER]: Don't assume
11016 !CHECK_LISP_OBJECT_TYPE && !USE_LSB_TAG. Problem with
11017 CHECK_LISP_OBJECT_TYPE reported by Dmitry Antipov in
11018 <http://lists.gnu.org/archive/html/emacs-devel/2012-06/msg00282.html>.
11019 (METER_1, METER_2): Simplify.
11020
11021 2012-06-18 Stefan Monnier <monnier@iro.umontreal.ca>
11022
11023 * data.c (Fdefalias): Return `symbol' (bug#11686).
11024
11025 2012-06-18 Martin Rudalics <rudalics@gmx.at>
11026
11027 * buffer.c (Fkill_buffer): Don't throw an error when the buffer
11028 gets killed during executing of this function (Bug#11665).
11029 Try to always return Qt when the buffer has been actually killed.
11030 (Vkill_buffer_query_functions): In doc-string say that functions
11031 run by this hook should not change the current buffer.
11032
11033 2012-06-18 Paul Eggert <eggert@cs.ucla.edu>
11034
11035 Fix recently-introduced process.c problems found by static checking.
11036 * process.c (write_queue_push, write_queue_pop, send_process):
11037 Use ptrdiff_t, not int or EMACS_INT, for buffer lengths and offsets.
11038 (write_queue_pop): Fix pointer signedness problem.
11039 (send_process): Remove unused local.
11040
11041 2012-06-17 Chong Yidong <cyd@gnu.org>
11042
11043 * xdisp.c (redisplay_internal): No need to redisplay terminal
11044 frames that are not on top.
11045
11046 2012-06-17 Troels Nielsen <bn.troels@gmail.com>
11047
11048 * process.c (make_process): Initialize write_queue.
11049 (write_queue_push, write_queue_pop): New functions.
11050 (send_process): Use them to maintain correct ordering of process
11051 writes (Bug#10815).
11052
11053 2012-06-17 Paul Eggert <eggert@cs.ucla.edu>
11054
11055 * lisp.h (eassert): Assume C89 or later.
11056 This removes the need for CHECK.
11057 (CHECK): Remove. Its comments about always evaluating its
11058 argument were confusing, as 'eassert' typically does not evaluate
11059 its argument.
11060
11061 * coding.c (produce_chars): Use ptrdiff_t, not int.
11062
11063 * xterm.c (x_draw_underwave): Check for integer overflow.
11064 This pacifies gcc 4.7.0 -Wunsafe-loop-optimizations on x86-64.
11065
11066 2012-06-17 Jan Djärv <jan.h.d@swipnet.se>
11067
11068 * nsterm.m (x_free_frame_resources): Move xfree so freed memory isn't
11069 referenced (Bug#11583).
11070
11071 2012-06-16 Aurelien Aptel <aurelien.aptel@gmail.com>
11072
11073 Implement wave-style variant of underlining.
11074 * dispextern.h (face_underline_type): New enum.
11075 (face): Add field for underline type.
11076 * nsterm.m (ns_draw_underwave): New function.
11077 (ns_draw_text_decoration): Use it.
11078 * w32term.c (w32_restore_glyph_string_clip, w32_draw_underwave):
11079 New functions.
11080 (x_draw_glyph_string): Use them.
11081 * xfaces.c (Qline, Qwave): New Lisp objects.
11082 (check_lface_attrs, merge_face_ref)
11083 (Finternal_set_lisp_face_attribute, realize_x_face):
11084 Handle wave-style underline face attributes.
11085 * xterm.c (x_draw_underwave): New function.
11086 (x_draw_glyph_string): Use it.
11087
11088 2012-06-16 Juanma Barranquero <lekktu@gmail.com>
11089
11090 * makefile.w32-in ($(BLD)/emacs.$(O), $(BLD)/fringe.$(O))
11091 ($(BLD)/xml.$(O), $(BLD)/intervals.$(O), $(BLD)/macros.$(O))
11092 ($(BLD)/minibuf.$(O), $(BLD)/regex.$(O), $(BLD)/region-cache.$(O))
11093 ($(BLD)/textprop.$(O), $(BLD)/undo.$(O), $(BLD)/window.$(O))
11094 ($(BLD)/w32select.$(O)): Update dependencies.
11095
11096 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11097
11098 * buffer.h (FETCH_MULTIBYTE_CHAR): Define as inline.
11099 (BUF_FETCH_MULTIBYTE_CHAR): Likewise.
11100 * character.c (_fetch_multibyte_char_p): Remove.
11101 * alloc.c: Include "character.h" before "buffer.h".
11102 * bidi.c: Likewise.
11103 * buffer.c: Likewise.
11104 * bytecode.c: Likewise.
11105 * callint.c: Likewise.
11106 * callproc.c: Likewise.
11107 * casefiddle.c: Likewise.
11108 * casetab.c: Likewise.
11109 * category.c: Likewise.
11110 * cmds.c: Likewise.
11111 * coding.c: Likewise.
11112 * composite.c: Likewise.
11113 * dired.c: Likewise.
11114 * dispnew.c: Likewise.
11115 * doc.c: Likewise.
11116 * dosfns.c: Likewise.
11117 * editfns.c: Likewise.
11118 * emacs.c: Likewise.
11119 * fileio.c: Likewise.
11120 * filelock.c: Likewise.
11121 * font.c: Likewise.
11122 * fontset.c: Likewise.
11123 * fringe.c: Likewise.
11124 * indent.c: Likewise.
11125 * insdel.c: Likewise.
11126 * intervals.c: Likewise.
11127 * keyboard.c: Likewise.
11128 * keymap.c: Likewise.
11129 * lread.c: Likewise.
11130 * macros.c: Likewise.
11131 * marker.c: Likewise.
11132 * minibuf.c: Likewise.
11133 * nsfns.m: Likewise.
11134 * nsmenu.m: Likewise.
11135 * print.c: Likewise.
11136 * process.c: Likewise.
11137 * regex.c: Likewise.
11138 * region-cache.c: Likewise.
11139 * search.c: Likewise.
11140 * syntax.c: Likewise.
11141 * term.c: Likewise.
11142 * textprop.c: Likewise.
11143 * undo.c: Likewise.
11144 * unexsol.c: Likewise.
11145 * w16select.c: Likewise.
11146 * w32fns.c: Likewise.
11147 * w32menu.c: Likewise.
11148 * window.c: Likewise.
11149 * xdisp.c: Likewise.
11150 * xfns.c: Likewise.
11151 * xmenu.c: Likewise.
11152 * xml.c: Likewise.
11153 * xselect.c: Likewise.
11154
11155 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11156
11157 * xdisp.c (set_cursor_from_row): Don't dereference glyphs_end.
11158 If all the glyphs of the glyph row came from strings, and we have no
11159 cursor positioning clues, put the cursor on the first glyph of the
11160 row.
11161 (handle_face_prop): Use chunk-relative overlay string index when
11162 indexing into it->string_overlays array. (Bug#11653)
11163 (set_cursor_from_row): Use the leftmost glyph as GLYPH_BEFORE, not
11164 the rightmost. (Bug#11720)
11165
11166 2012-06-16 Andreas Schwab <schwab@linux-m68k.org>
11167
11168 * category.h (CHAR_HAS_CATEGORY): Define as inline.
11169 (CATEGORY_MEMBER): Enforce 1/0 value.
11170 * category.c (_temp_category_set): Remove.
11171
11172 2012-06-16 Eli Zaretskii <eliz@gnu.org>
11173
11174 * window.c (Fdelete_other_windows_internal)
11175 (Fdelete_window_internal): Don't access frame's mouse highlight
11176 info of the initial frame. (Bug#11677)
11177
11178 2012-06-14 Paul Eggert <eggert@cs.ucla.edu>
11179
11180 * .gdbinit (xgetint): Fix recently-introduced paren typo.
11181 Assume USE_2_TAGS_FOR_INTS.
11182 (xreload): Adjust $tagmask width to match recent lisp.h change.
11183
11184 Simplify lisp.h in minor ways that should not affect code.
11185 * lisp.h (USE_2_TAGS_FOR_INTS): Remove, as it was always defined.
11186 (LISP_INT_TAG, case_Lisp_Int, LISP_STRING_TAG, LISP_INT_TAG_P)
11187 (LISP_INT1_TAG, enum Lisp_Type, XINT, XUINT, make_number):
11188 Simplify under the assumption that USE_2_TAGS_FOR_INTS is defined.
11189 (INTTYPEBITS): New macro, for clarity.
11190 (INTMASK, MOST_POSITIVE_FIXNUM): Use it.
11191 (LISP_INT1_TAG, LISP_STRING_TAG, LISP_INT_TAG_P):
11192 Simplify now that USE_LSB_TAG is always defined.
11193 (TYPEMASK, XINT) [USE_LSB_TAG]: Remove unnecessary cast.
11194 (make_number) [!USE_LSB_TAG]: Use INTMASK; that's simpler.
11195
11196 2012-06-13 Juanma Barranquero <lekktu@gmail.com>
11197
11198 * makefile.w32-in ($(BLD)/data.$(O)): Update dependencies.
11199
11200 2012-06-13 Glenn Morris <rgm@gnu.org>
11201
11202 * s/bsd-common.h (BSD4_3):
11203 * s/usg5-4-common.h (USG5_4): No longer define; unused.
11204
11205 2012-06-13 Andreas Schwab <schwab@linux-m68k.org>
11206
11207 * lisp.h (Lisp_Object) [CHECK_LISP_OBJECT_TYPE]: Define as struct
11208 instead of union.
11209 (XLI, XIL): Define.
11210 (XHASH, XTYPE, XINT, XUINT, make_number, XSET, XPNTR, XUNTAG):
11211 Use them.
11212 * emacs.c (gdb_use_struct): Rename from gdb_use_union.
11213 * .gdbinit: Check gdb_use_struct instead of gdb_use_union.
11214 * alloc.c (widen_to_Lisp_Object): Remove.
11215 (mark_memory): Use XIL instead of widen_to_Lisp_Object.
11216 * frame.c (delete_frame): Remove outdated comment.
11217 * w32fns.c (Fw32_register_hot_key): Use XLI instead of checking
11218 USE_LISP_UNION_TYPE.
11219 (Fw32_unregister_hot_key): Likewise.
11220 (Fw32_toggle_lock_key): Likewise.
11221 * w32menu.c (add_menu_item): Likewise.
11222 (w32_menu_display_help): Use XIL instead of checking
11223 USE_LISP_UNION_TYPE.
11224 * w32heap.c (allocate_heap): Don't check USE_LISP_UNION_TYPE.
11225 (init_heap): Likewise.
11226 * w32term.c (w32_read_socket): Update comment.
11227
11228 2012-06-13 Glenn Morris <rgm@gnu.org>
11229
11230 * s/usg5-4-common.h, src/s/unixware.h:
11231 Remove define/undef of HAVE_SYSV_SIGPAUSE (not used since 2010-05-04).
11232
11233 * s/gnu.h (POSIX_SIGNALS): Remove (not used since 2010-05-04).
11234
11235 2012-06-13 Paul Eggert <eggert@cs.ucla.edu>
11236
11237 USE_LISP_UNION_TYPE + USE_LSB_TAG cleanup (Bug#11604)
11238 * alloc.c (make_number) [!defined make_number]:
11239 Remove, as lisp.h always defines this now.
11240 (mark_maybe_pointer): Simplify since USE_LSB_TAG is always defined now.
11241 (roundup_size): Verify that it is a power of 2.
11242 * data.c (Fmake_variable_buffer_local, Fmake_local_variable):
11243 * ftfont.c (ftfont_driver): Use LISP_INITIALLY_ZERO.
11244 * lisp.h (USE_LSB_TAG): Allow the builder to compile with
11245 -DUSE_LSB_TAG=0, to override the automatically-selected default.
11246 USE_LSB_TAG now is always defined to be either 0 or 1.
11247 All uses changed.
11248 (union Lisp_Object): Don't worry about WORDS_BIGENDIAN; the
11249 code works fine either way, and efficiency is not a concern here,
11250 as the union type is for debugging, not for production.
11251 (LISP_MAKE_RVALUE, make_number) [USE_LISP_UNION_TYPE]:
11252 Use an inline function on all platforms when using the union type,
11253 since this is simpler and 'static inline' can be used portably
11254 within Emacs now.
11255 (LISP_INITIALLY_ZERO): New macro.
11256 (XFASTINT, XSETFASTINT) [USE_LISP_UNION_TYPE]: Remove.
11257 (XSET) [USE_LISP_UNION_TYPE]: Don't overparenthesize.
11258
11259 2012-06-12 Glenn Morris <rgm@gnu.org>
11260
11261 * s/gnu-kfreebsd.h, s/hpux11.h, s/openbsd.h, s/sol2-10.h: Remove files.
11262
11263 * s/gnu-linux.h (HAVE_PROCFS): Move to configure.
11264
11265 * s/hpux10-20.h, s/openbsd.h, s/usg5-4-common.h:
11266 Move BROKEN_SIGIO to configure.
11267
11268 * s/bsd-common.h, s/darwin.h, s/gnu-kfreebsd.h, s/hpux10-20.h:
11269 Move NO_TERMIO to configure.
11270
11271 2012-06-12 Chong Yidong <cyd@gnu.org>
11272
11273 * image.c (imagemagick_load_image): Use MagickFlattenImage if
11274 MagickMergeImageLayers is undefined. Use pixel pusher loop if
11275 MagickExportImagePixels is undefined.
11276
11277 2012-06-12 Paul Eggert <eggert@cs.ucla.edu>
11278
11279 * image.c (imagemagick_load_image): Remove unused label.
11280
11281 2012-06-11 Glenn Morris <rgm@gnu.org>
11282
11283 * s/aix4-2.h, s/bsd-common.h, s/cygwin.h, s/darwin.h:
11284 * s/gnu-kfreebsd.h, s/gnu-linux.h, s/gnu.h, s/hpux10-20.h:
11285 * s/irix6-5.h, s/ms-w32.h, s/msdos.h, s/template.h:
11286 * s/usg5-4-common.h: Move SYSTEM_TYPE to configure.
11287
11288 2012-06-11 Stefan Monnier <monnier@iro.umontreal.ca>
11289
11290 * alloc.c (make_byte_code): New function.
11291 (Fmake_byte_code): Use it. Don't purify here.
11292 * lread.c (read1): Use it as well to avoid extra allocation.
11293
11294 2012-06-11 Chong Yidong <cyd@gnu.org>
11295
11296 * image.c (imagemagick_load_image): Implement transparency.
11297
11298 2012-06-10 Andreas Schwab <schwab@linux-m68k.org>
11299
11300 * regex.c (at_begline_loc_p): Also recognize `(?N:' and correctly
11301 account for preceding backslashes. (Bug#11663)
11302
11303 2012-06-09 Chong Yidong <cyd@gnu.org>
11304
11305 * term.c: Support italics in capable terminals (Bug#9652).
11306 (no_color_bit): Replace unused NC_BLINK with NC_ITALIC.
11307 (turn_on_face): Output using TS_enter_italic_mode if available.
11308 Don't handle unused blinking and alt-charset cases.
11309 (turn_off_face): Handle italic case; discard unused tty_blinking_p
11310 and tty_alt_charset_p cases.
11311 (tty_capable_p, init_tty): Support italics.
11312
11313 * termchar.h (struct tty_display_info): Add field for italics.
11314 Remove unused blink field.
11315
11316 * xfaces.c (tty_supports_face_attributes_p, realize_tty_face):
11317 Handle slant.
11318
11319 * dispextern.h: Replace unused TTY_CAP_BLINK with TTY_CAP_ITALIC.
11320 (struct face): Remove unused fields tty_dim_p, tty_blinking_p, and
11321 tty_alt_charset_p. Add tty_italic_p.
11322
11323 2012-06-09 Michael Albinus <michael.albinus@gmx.de>
11324
11325 * dbusbind.c (XD_BASIC_DBUS_TYPE): Use dbus_type_is_valid and
11326 dbus_type_is_basic if available.
11327 (xd_extract_signed, xd_extract_unsigned): Rename from
11328 extract_signed and extract_unsigned, respectively. Adapt callers.
11329
11330 2012-06-09 Chong Yidong <cyd@gnu.org>
11331
11332 * xfaces.c (face_for_overlay_string): Handle face remapping (Bug#2066).
11333
11334 * fringe.c (Fset_fringe_bitmap_face): Handle the noninteractive
11335 case (Bug#9752).
11336
11337 2012-06-08 Paul Eggert <eggert@cs.ucla.edu>
11338
11339 * xdisp.c (vmessage): Treat frame message as multibyte.
11340 Without this change, (let ((§ 1)) (make-variable-buffer-local '§))
11341 would generate the diagnostic "Making \302\247 buffer-local while
11342 let-bound!".
11343
11344 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11345
11346 * dispnew.c (showing_window_margins_p): Undo last change, which
11347 was done due to an inadvertent commit.
11348 (adjust_frame_glyphs_for_frame_redisplay): Do call
11349 showing_window_margins_p.
11350
11351 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11352
11353 * eval.c (Fmake_var_non_special): New primitive.
11354 (syms_of_eval): Defsubr it.
11355 * lread.c (syms_of_lread): Mark `values' as lexically scoped.
11356
11357 2012-06-08 Juanma Barranquero <lekktu@gmail.com>
11358
11359 * dispnew.c (showing_window_margins_p): Wrap in #if 0 to prevent unused
11360 function warning (the only call is inside #if 0 since 2012-06-08T08:44:45Z!eliz@gnu.org).
11361
11362 2012-06-08 Eli Zaretskii <eliz@gnu.org>
11363
11364 * alloc.c (allocate_vectorlike): Fix last change.
11365
11366 2012-06-08 Dmitry Antipov <dmantipov@yandex.ru>
11367
11368 Block-based vector allocation of small vectors.
11369 * lisp.h (struct vectorlike_header): New field `nbytes',
11370 adjust comment accordingly.
11371 * alloc.c (enum mem_type): New type `MEM_TYPE_VECTOR_BLOCK'
11372 to denote vector blocks. Adjust users (live_vector_p,
11373 mark_maybe_pointer, valid_lisp_object_p) accordingly.
11374 (COMMON_MULTIPLE): Move outside #if USE_LSB_TAG.
11375 (VECTOR_BLOCK_SIZE, vroundup, VECTOR_BLOCK_BYTES),
11376 (VBLOCK_BYTES_MIN, VBLOCK_BYTES_MAX, VECTOR_MAX_FREE_LIST_INDEX),
11377 (VECTOR_FREE_LIST_FLAG, ADVANCE, VINDEX, SETUP_ON_FREE_LIST),
11378 (VECTOR_SIZE, VECTOR_IN_BLOCK): New macros.
11379 (roundup_size): New constant.
11380 (struct vector_block): New data type.
11381 (vector_blocks, vector_free_lists, zero_vector): New variables.
11382 (all_vectors): Rename to `large_vectors'.
11383 (allocate_vector_from_block, init_vectors, allocate_vector_from_block)
11384 (sweep_vectors): New functions.
11385 (allocate_vectorlike): Return `zero_vector' as the only vector of
11386 0 items. Allocate new vector from block if vector size is less than
11387 or equal to VBLOCK_BYTES_MAX.
11388 (Fgarbage_collect): Move all vector sweeping code to sweep_vectors.
11389 (init_alloc_once): Add call to init_vectors.
11390
11391 2012-06-08 Stefan Monnier <monnier@iro.umontreal.ca>
11392
11393 * eval.c (Fmacroexpand): Stop if the macro returns the same form.
11394
11395 2012-06-07 Paul Eggert <eggert@cs.ucla.edu>
11396
11397 * doprnt.c (doprnt): Truncate multibyte char correctly.
11398 Without this change, doprnt (buf, 2, "%s", FORMAT_END, AP)
11399 would mishandle a string argument "Xc" if X was a multibyte
11400 character of length 2: it would truncate after X's first byte
11401 rather than including all of X.
11402
11403 2012-06-06 Chong Yidong <cyd@gnu.org>
11404
11405 * buffer.c (word_wrap): Doc fix.
11406
11407 2012-06-04 Paul Eggert <eggert@cs.ucla.edu>
11408
11409 * xdisp.c (note_mode_line_or_margin_highlight): Pacify gcc -Wall.
11410
11411 2012-06-03 Glenn Morris <rgm@gnu.org>
11412
11413 * xdisp.c (tool-bar-style): Doc fix.
11414
11415 2012-06-03 Ulrich Müller <ulm@gentoo.org>
11416
11417 * Makefile.in (PAXCTL): Define.
11418 (temacs$(EXEEXT)): Disable memory randomization for the temacs
11419 binary via PaX flags if the paxctl utility is available.
11420 (emacs$(EXEEXT), bootstrap-emacs$(EXEEXT)):
11421 Restore PaX flags to their default. (Bug#11398)
11422
11423 2012-06-03 Chong Yidong <cyd@gnu.org>
11424
11425 * xdisp.c (decode_mode_spec_coding): Display a space for a unibyte
11426 buffer (Bug#11226).
11427
11428 2012-06-03 Chong Yidong <cyd@gnu.org>
11429
11430 * xdisp.c (calc_pixel_width_or_height): Use Fbuffer_local_value.
11431 (note_mode_line_or_margin_highlight): If there is no help echo,
11432 use mode-line-default-help-echo. Handle the case where the mouse
11433 position is past the end of the mode line string.
11434
11435 * buffer.c (buffer_local_value_1): New function, split from
11436 Fbuffer_local_value; can return Qunbound.
11437 (Fbuffer_local_value): Use it.
11438 (Vmode_line_format): Docstring tweaks.
11439
11440 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11441
11442 * sysdep.c (system_process_attributes): Improve comment.
11443
11444 2012-06-02 Stefan Monnier <monnier@iro.umontreal.ca>
11445
11446 * keyboard.c: Export real-this-command to Elisp.
11447 (syms_of_keyboard): Rename real_this_command to Vreal_this_command
11448 and DEFVAR it. Update all users.
11449
11450 2012-06-02 Paul Eggert <eggert@cs.ucla.edu>
11451
11452 * minibuf.c (Fassoc_string): Remove duplicate declaration.
11453
11454 * sysdep.c (system_process_attributes) [SOLARIS2 && HAVE_PROCFS]:
11455 Convert pctcpu and pctmem to Lisp float properly.
11456 Let the compiler fold better, as 100.0/0x8000 is exact.
11457
11458 2012-06-02 Andreas Schwab <schwab@linux-m68k.org>
11459
11460 * alloc.c (CONS_BLOCK_SIZE): Account for padding at the end of
11461 cons_block.
11462
11463 2012-06-01 Paul Eggert <eggert@cs.ucla.edu>
11464
11465 * xfns.c (x_set_tool_bar_lines) [USE_GTK]: Adjust to bitfield change.
11466
11467 2012-06-01 Dmitry Antipov <dmantipov@yandex.ru>
11468
11469 For a 'struct window', replace some Lisp_Object fields to
11470 bitfields where appropriate, remove unused fields.
11471 * window.h (struct window): Remove unused 'last_mark_x' and
11472 'last_mark_y' fields. Rename 'mini_p' field to 'mini',
11473 change its type from Lisp_Object to bitfield.
11474 Change type of 'force_start', 'optional_new_start',
11475 'last_had_star', 'update_mode_line' and 'start_at_line_beg'
11476 fields from Lisp_Object to bitfield. Adjust users accordingly.
11477
11478 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11479
11480 Pacify gcc -Wdouble-precision when using Xaw.
11481 * xterm.c (xaw_jump_callback, x_set_toolkit_scroll_bar_thumb)
11482 [HAVE_X_WINDOWS && USE_TOOLKIT_SCROLL_BARS && !USE_MOTIF && !USE_GTK]:
11483 Use 'float' consistently, rather than 'float' in most places
11484 and 'double' in a couple of places.
11485
11486 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11487
11488 * xdisp.c (handle_stop): Detect whether we have overlay strings
11489 loaded by testing it->current.overlay_string_index to be
11490 non-negative, instead of checking whether n_overlay_strings is
11491 positive. (Bug#11587)
11492
11493 2012-05-31 Chong Yidong <cyd@gnu.org>
11494
11495 * keymap.c (describe_map_tree): Revert 2011-07-07 change (Bug#1169).
11496
11497 * doc.c (Fsubstitute_command_keys): Doc fix.
11498
11499 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11500
11501 * search.c (search_buffer): Remove calls to
11502 r_alloc_inhibit_buffer_relocation, as it is now called by
11503 maybe_unify_char, which was the cause of relocation of buffer text
11504 in bug#11519.
11505
11506 2012-05-31 Eli Zaretskii <eliz@gnu.org>
11507
11508 * charset.c (maybe_unify_char): Inhibit relocation of buffer text
11509 for the duration of call to load_charset, to avoid problems with
11510 callers of maybe_unify_char that access buffer text through C
11511 pointers.
11512
11513 * ralloc.c (r_alloc_inhibit_buffer_relocation): Increment and
11514 decrement the inhibition flag, instead of just setting or
11515 resetting it.
11516
11517 2012-05-31 Paul Eggert <eggert@cs.ucla.edu>
11518
11519 Remove obsolete '#define static' cruft.
11520 * s/hpux10-20.h (_FILE_OFFSET_BITS): Don't #undef.
11521 This #undef was "temporary" in 2000; it is no longer needed
11522 now that '#define static' has gone away.
11523 * xfns.c, xterm.h (gray_bitmap_width, gray_bitmap_height)
11524 (gray_bitmap_bits): Remove; no longer needed.
11525 All uses replaced with definiens.
11526 * xterm.c: Include "bitmaps/gray.xbm".
11527
11528 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11529
11530 Clean up __executable_start, monstartup when --enable-profiling.
11531 The following changes affect the code only when profiling.
11532 * dispnew.c (__executable_start): Rename from safe_bcopy.
11533 Define only on platforms that need it.
11534 * emacs.c: Include <sys/gmon.h> when profiling.
11535 (_mcleanup): Remove decl, since <sys/gmon.h> does it now.
11536 (__executable_start): Remove decl, since lisp.h does it now.
11537 (safe_bcopy): Remove decl; no longer has that name.
11538 (main): Coalesce #if into single bit of code, for simplicity.
11539 Cast pointers to uintptr_t, since standard libraries want integers
11540 and not pointers.
11541 * lisp.h (__executable_start): New decl.
11542
11543 2012-05-31 Glenn Morris <rgm@gnu.org>
11544
11545 * image.c (Fimagemagick_types): Doc fix.
11546
11547 2012-05-30 Jim Meyering <meyering@redhat.com>
11548
11549 * callproc.c (Fcall_process_region): Include directory component
11550 in mkstemp error message (Bug#11586).
11551
11552 2012-05-30 Paul Eggert <eggert@cs.ucla.edu>
11553
11554 * alloc.c, lisp.h (make_pure_vector): Now static.
11555
11556 2012-05-30 Stefan Monnier <monnier@iro.umontreal.ca>
11557
11558 * eval.c (Fdefun, Fdefmacro, Vmacro_declaration_function):
11559 Move to byte-run.el.
11560 (Fautoload): Do the hash-doc more carefully.
11561 * data.c (Fdefalias): Purify definition, except for keymaps.
11562 (Qdefun): Move from eval.c.
11563 * lisp.h (Qdefun): Remove.
11564 * lread.c (read1): Tiny simplification.
11565
11566 2012-05-29 Troels Nielsen <bn.troels@gmail.com>
11567
11568 Do not create empty overlays with the evaporate property (Bug#9642).
11569 * buffer.c (Fmove_overlay): Reinstate the earlier fix for
11570 Bug#9642, but explicitly check that the buffer the overlay would
11571 be moved to is live and rearrange lines to make sure that errors
11572 will not put the overlay in an inconsistent state.
11573 (Fdelete_overlay): Cosmetics.
11574
11575 2012-05-28 Eli Zaretskii <eliz@gnu.org>
11576
11577 * w32term.c (my_bring_window_to_top): New function.
11578 (x_raise_frame): Use handle returned by DeferWindowPos, which
11579 could be different from the original one.
11580 Call my_bring_window_to_top instead of my_set_foreground_window.
11581 (Bug#11513)
11582
11583 * w32fns.c (w32_wnd_proc): Accept and process WM_EMACS_BRINGTOTOP
11584 by calling BringWindowToTop.
11585
11586 * w32term.h (WM_EMACS_BRINGTOTOP): New message.
11587 (WM_EMACS_END): Increase by one.
11588
11589 2012-05-28 Paul Eggert <eggert@cs.ucla.edu>
11590
11591 * bidi.c (bidi_mirror_char): Put eassert before conversion to int.
11592 This avoids undefined behavior that might cause the eassert
11593 to not catch an out-of-range value.
11594
11595 2012-05-28 Juanma Barranquero <lekktu@gmail.com>
11596
11597 * makefile.w32-in ($(BLD)/w32inevt.$(O), $(BLD)/w32console.$(O)):
11598 Update dependencies.
11599
11600 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11601
11602 * bidi.c (bidi_mirror_char): Fix last change.
11603
11604 2012-05-27 Andreas Schwab <schwab@linux-m68k.org>
11605
11606 * unexmacosx.c (copy_data_segment): Truncate after 16 characters
11607 when referring to sectname field in printf format.
11608
11609 2012-05-27 Paul Eggert <eggert@cs.ucla.edu>
11610
11611 * lisp.h [REL_ALLOC]: Omit duplicate prototypes.
11612 Only r_alloc_inhibit_buffer_relocation needed to be added;
11613 the others were already declared.
11614
11615 * bidi.c (bidi_mirror_char): Don't possibly truncate the integer
11616 before checking whether it's out of range. Put the check inside
11617 eassert. See
11618 <http://lists.gnu.org/archive/html/emacs-devel/2012-05/msg00485.html>.
11619
11620 2012-05-27 Ken Brown <kbrown@cornell.edu>
11621
11622 * callproc.c (Fcall_process): Restore a line that was accidentally
11623 commented out in the 2011-02-13 change (bug#11547).
11624
11625 2012-05-27 Eli Zaretskii <eliz@gnu.org>
11626
11627 * lisp.h [REL_ALLOC]: Add prototypes for external functions
11628 defined on ralloc.c.
11629
11630 * buffer.c [REL_ALLOC]: Remove prototypes of
11631 r_alloc_reset_variable, r_alloc, r_re_alloc, and r_alloc_free,
11632 they are now on lisp.h.
11633
11634 * ralloc.c (r_alloc_inhibit_buffer_relocation): New function.
11635
11636 * search.c (search_buffer): Use it to inhibit relocation of buffer
11637 text while re_search_2 is doing its job, because re_search_2 is
11638 passed C pointers to buffer text. (Bug#11519)
11639
11640 * msdos.c (internal_terminal_init) <Vwindow_system_version>:
11641 Update value to 24.
11642
11643 * xdisp.c (move_it_to): Under MOVE_TO_Y, when restoring iterator
11644 state after an additional call to move_it_in_display_line_to, keep
11645 the values of it->max_ascent and it->max_descent found for the
11646 entire line.
11647 (pos_visible_p): Revert the comparison against bottom_y to what it
11648 was in revid eliz@gnu.org-20120513182235-4p6386j761ld0nwb.
11649 (Bug#11464)
11650
11651 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11652
11653 Fix coding-related core dumps with gcc -ftrapv.
11654 The code was computing A - B, where A and B are pointers, and B is
11655 random garbage. This can lead to core dumps on platforms that
11656 have special pointer registers, and it also leads to core dumps on
11657 x86-64 when compiled with gcc -ftrapv. The fix is to compute
11658 A - B only when B is initialized properly.
11659 * coding.c (coding_set_source, coding_set_destination): Return void.
11660 (coding_change_source, coding_change_destinations): New functions,
11661 with the old behaviors of coding_set_source and coding_set_destination.
11662 All callers that need an offset changed to use these new functions.
11663
11664 2012-05-26 Glenn Morris <rgm@gnu.org>
11665
11666 * nsterm.m (ns_init_paths): Don't mess with INFOPATH. (Bug#2791)
11667
11668 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11669
11670 Extend mouse support on W32 text-mode console.
11671 * xdisp.c (draw_row_with_mouse_face):
11672 Call tty_draw_row_with_mouse_face for WINDOWSNT as well.
11673
11674 * w32console.c: Include window.h.
11675 (w32con_write_glyphs_with_face, tty_draw_row_with_mouse_face):
11676 New functions.
11677 (initialize_w32_display): Initialize mouse-highlight data.
11678
11679 * w32inevt.c: Include termchar.h and window.h.
11680 (do_mouse_event): Support mouse-autoselect-window. When the mouse
11681 moves, call note_mouse_highlight. If help_echo changed, call
11682 gen_help_event to produce help-echo message in the echo area.
11683 Call clear_mouse_face if mouse_face_hidden is set in the mouse
11684 highlight info.
11685
11686 2012-05-26 Paul Eggert <eggert@cs.ucla.edu>
11687
11688 * lread.c (read1): Simplify slightly to avoid an overflow warning
11689 with GCC 4.7.0 on x86-64.
11690
11691 2012-05-26 Eli Zaretskii <eliz@gnu.org>
11692
11693 * bidi.c (bidi_mirror_char): Revert last change: an int is
11694 definitely wide enough here.
11695
11696 2012-05-25 Paul Eggert <eggert@cs.ucla.edu>
11697
11698 Fix integer width and related bugs (Bug#9874).
11699 * alloc.c (pure_bytes_used_lisp, pure_bytes_used_non_lisp):
11700 (allocate_vectorlike, buffer_memory_full, struct sdata, SDATA_SIZE)
11701 (string_bytes, check_sblock, allocate_string_data):
11702 (compact_small_strings, Fmake_bool_vector, make_string)
11703 (make_unibyte_string, make_multibyte_string)
11704 (make_string_from_bytes, make_specified_string)
11705 (allocate_vectorlike, Fmake_vector, find_string_data_in_pure)
11706 (make_pure_string, make_pure_c_string, make_pure_vector, Fpurecopy)
11707 (mark_vectorlike):
11708 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11709 (allocate_pseudovector):
11710 Use int, not EMACS_INT, where int is wide enough.
11711 (inhibit_garbage_collection, Fgarbage_collect):
11712 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11713 * bidi.c (bidi_mirror_char): Use EMACS_INT, not int, where
11714 int might not be wide enough.
11715 (bidi_cache_search, bidi_cache_find, bidi_init_it)
11716 (bidi_count_bytes, bidi_char_at_pos, bidi_fetch_char)
11717 (bidi_at_paragraph_end, bidi_find_paragraph_start)
11718 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
11719 (bidi_level_of_next_char, bidi_move_to_visually_next):
11720 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11721 * buffer.c (copy_overlays, Fgenerate_new_buffer_name)
11722 (Fkill_buffer, Fset_buffer_major_mode)
11723 (advance_to_char_boundary, Fbuffer_swap_text)
11724 (Fset_buffer_multibyte, overlays_at, overlays_in)
11725 (overlay_touches_p, struct sortvec, record_overlay_string)
11726 (overlay_strings, recenter_overlay_lists)
11727 (adjust_overlays_for_insert, adjust_overlays_for_delete)
11728 (fix_start_end_in_overlays, fix_overlays_before, modify_overlay)
11729 (Fmove_overlay, Fnext_overlay_change, Fprevious_overlay_change)
11730 (Foverlay_recenter, last_overlay_modification_hooks_used)
11731 (report_overlay_modification, evaporate_overlays, enlarge_buffer_text):
11732 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11733 (validate_region): Omit unnecessary test for b <= e,
11734 since that's guaranteed by the previous test.
11735 (adjust_overlays_for_delete): Avoid pos + length overflow.
11736 (Fmove_overlay, Fdelete_overlay, add_overlay_mod_hooklist)
11737 (report_overlay_modification):
11738 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11739 (Foverlays_at, Fnext_overlay_change, Fprevious_overlay_change):
11740 Omit pointer cast, which isn't needed anyway, and doesn't work
11741 after the EMACS_INT -> ptrdiff_t change.
11742 (Fmove_overlay): Clip BEG and END to ptrdiff_t to avoid overflow.
11743 * buffer.h: Adjust decls to match defn changes elsewhere.
11744 (struct buffer_text, struct buffer):
11745 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11746 Use EMACS_INT, not int, where int might not be wide enough.
11747 * bytecode.c (unmark_byte_stack, exec_byte_code): Use ptrdiff_t,
11748 not int, to avoid needless 32-bit limit on 64-bit hosts.
11749 (exec_byte_code): Use tighter memory-full test, one that checks
11750 for alloca overflow. Don't compute the address of the object just
11751 before an array, as that's not portable. Use EMACS_INT, not
11752 ptrdiff_t or int, where ptrdiff_t or int might not be wide enough.
11753 * callint.c (Fcall_interactively):
11754 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11755 * callproc.c (call_process_kill, Fcall_process):
11756 Don't assume pid_t fits into an Emacs fixnum.
11757 (call_process_cleanup, Fcall_process, child_setup):
11758 Don't assume pid_t fits into int.
11759 (call_process_cleanup, Fcall_process, delete_temp_file)
11760 (Fcall_process_region):
11761 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11762 (Fcall_process): Simplify handling of volatile integers.
11763 Use int, not EMACS_INT, where int will do.
11764 * casefiddle.c (casify_object, casify_region, operate_on_word)
11765 (Fupcase_word, Fdowncase_word, Fcapitalize_word):
11766 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11767 (casify_object): Avoid integer overflow when overallocating buffer.
11768 * casetab.c (set_identity, shuffle): Prefer int to unsigned when
11769 either works. Use lint_assume to convince GCC 4.6.1 that it's OK.
11770 * category.c (Fchar_category_set): Don't assume fixnum fits in int.
11771 * category.h (CATEGORYP): Don't assume arg is nonnegative.
11772 * ccl.c (GET_CCL_INT): Remove; no longer needed, since the
11773 integers are now checked earlier. All uses replaced with XINT.
11774 (ccl_driver):
11775 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11776 For CCL_MapSingle, check that content and value are in int range.
11777 (ccl_driver, Fregister_code_conversion_map):
11778 Check that Vcode_version_map_vector is a vector.
11779 (resolve_symbol_ccl_program): Check that vector header is in range.
11780 Always copy the vector, so that we can check its contents reliably
11781 now rather than having to recheck each instruction as it's being
11782 executed. Check that vector words fit in 'int'.
11783 (ccl_get_compiled_code, Fregister_ccl_program)
11784 (Fregister_code_conversion_map): Use ptrdiff_t, not int, for
11785 program indexes, to avoid needless 32-bit limit on 64-bit hosts.
11786 (Fccl_execute, Fccl_execute_on_string): Check that initial reg
11787 contents are in range.
11788 (Fccl_execute_on_string): Check that status is in range.
11789 * ccl.h (struct ccl_program.idx): Now ptrdiff_t, not int.
11790 * character.c (char_resolve_modifier_mask, Fchar_resolve_modifiers):
11791 Accept and return EMACS_INT, not int, because callers can pass values
11792 out of 'int' range.
11793 (c_string_width, strwidth, lisp_string_width, chars_in_text)
11794 (multibyte_chars_in_text, parse_str_as_multibyte)
11795 (str_as_multibyte, count_size_as_multibyte, str_to_multibyte)
11796 (str_as_unibyte, str_to_unibyte, string_count_byte8)
11797 (string_escape_byte8, Fget_byte):
11798 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11799 (Funibyte_string): Use CHECK_RANGED_INTEGER, not CHECK_NATNUM, to
11800 avoid mishandling large integers.
11801 * character.h: Adjust decls to match defn changes elsewhere.
11802 * charset.c (load_charset_map_from_file, find_charsets_in_text)
11803 (Ffind_charset_region):
11804 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11805 (load_charset_map_from_file): Redo idx calculation to avoid overflow.
11806 (load_charset_map_from_vector, Fdefine_charset_internal):
11807 Don't assume fixnum fits in int.
11808 (load_charset_map_from_vector, Fmap_charset_chars):
11809 Remove now-unnecessary CHECK_NATNUMs.
11810 (Fdefine_charset_internal): Check ranges here, more carefully.
11811 Don't rely on undefined behavior with signed left shift overflow.
11812 Don't assume unsigned int fits into fixnum, or that fixnum fits
11813 into unsigned int. Don't require max_code to be a valid fixnum;
11814 that's not true for gb10830 4-byte on a 32-bit host. Allow
11815 invalid_code to be a cons, for the same reason. Require code_offset
11816 to be a character. Avoid int overflow if max_char is close
11817 to INT_MAX.
11818 (CODE_POINT_TO_INDEX): On 32-bit hosts, return int, not unsigned;
11819 this is intended anyway and avoids some undefined behavior.
11820 (load_charset_map): Pass unsigned, not int, as 2nd arg of
11821 INDEX_TO_CODE_POINT, as that's what it expects.
11822 (Funify_charset, encode_char): Don't stuff unsigned vals into int vars.
11823 * charset.h (DECODE_CHAR): Return int, not unsigned;
11824 this is what was intended anyway, and it avoids undefined behavior.
11825 (CHARSET_OFFSET): Remove unused macro, instead of fixing its
11826 integer-overflow issues.
11827 (ENCODE_CHAR): Return unsigned on all hosts, not just on 32-bit hosts.
11828 Formerly, it returned EMACS_INT on 64-bit hosts in the common case
11829 where the argument is EMACS_INT, and this behavior is not intended.
11830 * chartab.c (Fmake_char_table, Fset_char_table_range)
11831 (uniprop_get_decoder, uniprop_get_encoder):
11832 Don't assume fixnum fits in int.
11833 * cmds.c (move_point): New function, that does the gist of
11834 Fforward_char and Fbackward_char, but does so while checking
11835 for integer overflow more accurately.
11836 (Fforward_char, Fbackward_char): Use it.
11837 (Fforward_line, Fend_of_line, internal_self_insert)
11838 (internal_self_insert):
11839 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11840 Fix a FIXME, by checking for integer overflow when calculating
11841 target_clm and actual_clm.
11842 * coding.c (detect_coding_XXX, encode_coding_XXX, CODING_DECODE_CHAR)
11843 (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET, CODING_CHAR_CHARSET_P)
11844 (ASSURE_DESTINATION, coding_alloc_by_realloc)
11845 (coding_alloc_by_making_gap, alloc_destination)
11846 (detect_coding_utf_8, encode_coding_utf_8, decode_coding_utf_16)
11847 (encode_coding_utf_16, detect_coding_emacs_mule)
11848 (decode_coding_emacs_mule, encode_coding_emacs_mule)
11849 (detect_coding_iso_2022, decode_coding_iso_2022)
11850 (encode_invocation_designation, encode_designation_at_bol)
11851 (encode_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
11852 (decode_coding_sjis, decode_coding_big5, encode_coding_sjis)
11853 (encode_coding_big5, detect_coding_ccl, decode_coding_ccl)
11854 (encode_coding_ccl, encode_coding_raw_text)
11855 (detect_coding_charset, decode_coding_charset)
11856 (encode_coding_charset, detect_eol, decode_eol, produce_chars)
11857 (produce_composition, produce_charset, produce_annotation)
11858 (decode_coding, handle_composition_annotation)
11859 (handle_charset_annotation, consume_chars, decode_coding_gap)
11860 (decode_coding_object, encode_coding_object, detect_coding_system)
11861 (Ffind_coding_systems_region_internal, Fcheck_coding_systems_region)
11862 (code_convert_region, code_convert_string)
11863 (Fdefine_coding_system_internal)
11864 (coding_set_source, coding_set_destination):
11865 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11866 (setup_iso_safe_charsets, consume_chars, Funencodable_char_position)
11867 (Fdefine_coding_system_internal):
11868 Don't assume fixnums fit in int.
11869 (decode_coding_gap, decode_coding_object, encode_coding_object)
11870 (Fread_coding_system, Fdetect_coding_region)
11871 (Funencodable_char_position, Fcheck_coding_systems_region)
11872 (get_translation, handle_composition_annotation, consume_chars):
11873 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11874 (consume_chars): Rewrite to not calculate an address outside buffer.
11875 (Ffind_operation_coding_system): NATNUMP can eval its arg twice.
11876 Don't access memory outside of the args array.
11877 (Fdefine_coding_system_internal): Check for charset-id overflow.
11878 (ENCODE_ISO_CHARACTER): Use unsigned, not int, to store the unsigned
11879 result of ENCODE_CHAR.
11880 * coding.h: Adjust decls to match defn changes elsewhere.
11881 (struct coding_system):
11882 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11883 * composite.c (get_composition_id, find_composition)
11884 (run_composition_function, update_compositions)
11885 (compose_text, composition_gstring_put_cache)
11886 (composition_gstring_p, composition_gstring_width)
11887 (fill_gstring_header, fill_gstring_body, autocmp_chars)
11888 (composition_compute_stop_pos, composition_reseat_it)
11889 (composition_update_it, struct position_record)
11890 (find_automatic_composition, composition_adjust_point)
11891 (Fcomposition_get_gstring, Ffind_composition_internal):
11892 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11893 (update_compositions):
11894 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11895 * composite.h: Adjust decls to match defn changes elsewhere.
11896 (struct composition):
11897 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11898 * data.c (let_shadows_buffer_binding_p, let_shadows_global_binding_p):
11899 Do not attempt to compute the address of the object just before a
11900 buffer; this is not portable.
11901 (Faref, Faset):
11902 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11903 (Faset): Use int, not EMACS_INT, where int is wide enough.
11904 (Fstring_to_number): Don't assume fixnums fit in int.
11905 (Frem): Don't assume arg is nonnegative.
11906 * dbusbind.c (xd_append_arg): Check for integers out of range.
11907 (Fdbus_call_method): Don't overflow the timeout int.
11908 (extract_signed, extract_unsigned): New functions.
11909 (XD_CHECK_DBUS_SERIAL): Remove; superseded by extract_unsigned.
11910 (xd_get_connection_references): Return ptrdiff_t, not int.
11911 All uses changed.
11912 (xd_signature, xd_append_arg, xd_retrieve_arg, Fdbus_message_internal)
11913 (xd_read_message_1):
11914 Use int, not unsigned, where the dbus API uses int.
11915 (Fdbus_message_internal): Don't overflow mtype.
11916 (syms_of_dbusbind): Allocate right-sized buffer for integers.
11917 * dired.c (directory_files_internal, file_name_completion, scmp)
11918 (file_name_completion_stat):
11919 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11920 (file_name_completion): Don't overflow matchcount.
11921 (file_name_completion_stat): Use SAFE_ALLOCA, not alloca.
11922 * dispextern.h: Adjust decls to match defn changes elsewhere.
11923 (struct text_pos, struct glyph, struct bidi_saved_info)
11924 (struct bidi_string_data, struct bidi_it, struct composition_it)
11925 (struct it):
11926 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11927 (struct display_pos, struct composition_it, struct it):
11928 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11929 * dispnew.c (increment_matrix_positions)
11930 (increment_row_positions, mode_line_string)
11931 (marginal_area_string):
11932 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11933 (change_frame_size_1, Fredisplay, Fframe_or_buffer_changed_p):
11934 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11935 (duration_to_sec_usec): New function, to check for overflow better.
11936 (Fsleep_for, sit_for): Use it.
11937 * doc.c (get_doc_string, store_function_docstring):
11938 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11939 (get_doc_string, Fsnarf_documentation):
11940 Use int, not EMACS_INT, where int is wide enough.
11941 (get_doc_string):
11942 Use SAFE_ALLOCA, not alloca.
11943 Check for overflow when converting EMACS_INT to off_t.
11944 * doprnt.c (doprnt):
11945 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11946 * editfns.c (init_editfns, Fuser_uid, Fuser_real_uid):
11947 Don't assume uid_t fits into fixnum.
11948 (buildmark, Fgoto_char, overlays_around, find_field, Fdelete_field)
11949 (Ffield_string, Ffield_string_no_properties, Ffield_beginning)
11950 (Ffield_end, Fconstrain_to_field, Fline_beginning_position)
11951 (Fline_end_position, Fprevious_char, Fchar_after, Fchar_before)
11952 (general_insert_function)
11953 (Finsert_char, make_buffer_string, make_buffer_string_both)
11954 (update_buffer_properties, Fbuffer_substring)
11955 (Fbuffer_substring_no_properties, Fcompare_buffer_substrings)
11956 (Fsubst_char_in_region, check_translation)
11957 (Ftranslate_region_internal, save_restriction_restore, Fformat)
11958 (transpose_markers, Ftranspose_regions):
11959 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11960 (clip_to_bounds): Move to lisp.h as an inline function).
11961 (Fconstrain_to_field): Don't assume integers are nonnegative.
11962 (Fline_beginning_position, Fsave_excursion, Fsave_current_buffer):
11963 (Fsubst_char_in_region, Fsave_restriction):
11964 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11965 (Femacs_pid): Don't assume pid_t fits into fixnum.
11966 (lo_time): Use int, not EMACS_INT, when int suffices.
11967 (lisp_time_argument): Check for usec out of range.
11968 (Fencode_time): Don't assume fixnum fits in int.
11969 (Fuser_login_name, Fuser_full_name): Signal an error
11970 if a uid argument is out of range, rather than relying on
11971 undefined behavior.
11972 (Fformat_time_string): Remove now-unnecessary check.
11973 lisp_time_argument checks for out-of-range usec now.
11974 Use ptrdiff_t, not size_t, where ptrdiff_t will do.
11975 * emacs.c (gdb_valbits, gdb_gctypebits): Now int, not EMACS_INT.
11976 (gdb_data_seg_bits): Now uintptr_t, not EMACS_INT.
11977 (PVEC_FLAG, gdb_array_mark_flag): Now ptrdiff_t, not EMACS_INT.
11978 (init_cmdargs, Fdump_emacs):
11979 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11980 (Fkill_emacs): Don't assume fixnum fits in int; instead, take just
11981 the bottom (typically) 32 bits of the fixnum.
11982 * eval.c (specpdl_size, call_debugger):
11983 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
11984 (when_entered_debugger, Fbacktrace_debug):
11985 Don't assume fixnum can fit in int.
11986 (Fdefvaralias, Fdefvar): Do not attempt to compute the address of
11987 the object just before a buffer; this is not portable.
11988 (FletX, Flet, Funwind_protect, do_autoload, Feval, funcall_lambda)
11989 (grow_specpdl, unbind_to):
11990 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11991 (Fapply, apply_lambda): Don't assume ptrdiff_t can hold fixnum.
11992 (grow_specpdl): Simplify allocation by using xpalloc.
11993 (Fprog1, Fprog2): Don't assume list length fits in int. Simplify.
11994 * fileio.c (Ffind_file_name_handler, Fcopy_file, Frename_file)
11995 (Finsert_file_contents, Fwrite_region, Fdo_auto_save):
11996 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
11997 (Ffind_file_name_handler, non_regular_inserted, Finsert_file_contents)
11998 (a_write, e_write):
11999 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12000 (Fcopy_file, non_regular_nbytes, read_non_regular)
12001 (Finsert_file_contents):
12002 Use int, not EMACS_INT, where int is wide enough.
12003 (READ_BUF_SIZE): Verify that it fits in int.
12004 (Finsert_file_contents): Check that counts are in proper range,
12005 rather than assuming fixnums fit into ptrdiff_t etc.
12006 Don't assume fixnums fit into int.
12007 * floatfns.c (Fexpt): Avoid undefined signed * signed overflow.
12008 * fns.c (Fcompare_strings, Fstring_lessp, struct textprop_rec, concat)
12009 (string_char_byte_cache_charpos, string_char_byte_cache_bytepos)
12010 (string_char_to_byte, string_byte_to_char)
12011 (string_make_multibyte, string_to_multibyte)
12012 (string_make_unibyte, Fstring_as_unibyte, Fstring_as_multibyte)
12013 (Fstring_to_unibyte, Fsubstring, Fsubstring_no_properties)
12014 (substring_both, Fdelete, internal_equal, Ffillarray)
12015 (Fclear_string, mapcar1)
12016 (Fbase64_encode_region, Fbase64_encode_string, base64_encode_1)
12017 (Fbase64_decode_region, Fbase64_decode_string, base64_decode_1)
12018 (larger_vector, make_hash_table, maybe_resize_hash_table)
12019 (hash_lookup, hash_remove_from_table, hash_clear, sweep_weak_table)
12020 (Fmaphash, secure_hash):
12021 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12022 (concat): Check for string index and length overflow.
12023 (Fmapconcat): Don't assume fixnums fit into ptrdiff_t.
12024 (Frequire):
12025 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12026 (larger_vector): New API (vec, incr_min, size_max) replaces old
12027 one (vec, new_size, init). This catches size overflow.
12028 INIT was removed because it was always Qnil.
12029 All callers changed.
12030 (INDEX_SIZE_BOUND): New macro, which calculates more precisely
12031 the upper bound on a hash table index size.
12032 (make_hash_table, maybe_resize_hash_table): Use it.
12033 (secure_hash): Computer start_byte and end_byte only after
12034 they're known to be in ptrdiff_t range.
12035 * font.c (font_intern_prop, font_at, font_range, Ffont_shape_gstring)
12036 (Ffont_get_glyphs, Ffont_at):
12037 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12038 (font_style_to_value, font_prop_validate_style, font_expand_wildcards)
12039 (Flist_fonts, Fopen_font):
12040 Don't assume fixnum can fit in int.
12041 (check_gstring): Don't assume index can fit in int.
12042 (font_match_p): Check that fixnum is a character, not a nonnegative
12043 fixnum, since the later code needs to stuff it into an int.
12044 (font_find_for_lface): Use SAFE_ALLOCA_LISP, not alloca.
12045 (font_fill_lglyph_metrics): Use unsigned, not EMACS_INT, to avoid
12046 conversion overflow issues.
12047 (Fopen_font): Check for integer out of range.
12048 (Ffont_get_glyphs): Don't assume index can fit in int.
12049 * font.h: Adjust decls to match defn changes elsewhere.
12050 * fontset.c (reorder_font_vector): Redo score calculation to avoid
12051 integer overflow.
12052 (num_auto_fontsets, fontset_from_font): Use ptrdiff_t, not
12053 printmax_t, where ptrdiff_t is wide enough.
12054 (Finternal_char_font):
12055 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12056 * frame.c (Fset_mouse_position, Fset_mouse_pixel_position)
12057 (Fset_frame_height, Fset_frame_width, Fset_frame_size)
12058 (Fset_frame_position, x_set_frame_parameters)
12059 (x_set_line_spacing, x_set_border_width)
12060 (x_set_internal_border_width, x_set_alpha, x_figure_window_size):
12061 Check that fixnums are in proper range for system types.
12062 (frame_name_fnn_p, Fframe_parameter, Fmodify_frame_parameters):
12063 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12064 (Fmodify_frame_parameters): Don't assume fixnum fits in int.
12065 Use SAFE_ALLOCA_LISP, not alloca.
12066 * frame.h (struct frame): Use intptr_t, not EMACS_INT, where
12067 intptr_t is wide enough.
12068 * fringe.c (lookup_fringe_bitmap, get_logical_fringe_bitmap)
12069 (Fdefine_fringe_bitmap): Don't assume fixnum fits in int.
12070 (Ffringe_bitmaps_at_pos): Don't assume index fits in int.
12071 Check for fixnum out of range.
12072 * ftfont.c (ftfont_list): Don't assume index fits in int.
12073 Check that fixnums are in proper range for system types.
12074 (ftfont_shape_by_flt):
12075 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12076 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
12077 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12078 (Fgnutls_error_fatalp, Fgnutls_error_string, Fgnutls_boot):
12079 Check that fixnums are in proper range for system types.
12080 * gnutls.h: Adjust decls to match defn changes elsewhere.
12081 * gtkutil.c (xg_dialog_run):
12082 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12083 (update_frame_tool_bar):
12084 Check that fixnums are in proper range for system types.
12085 * image.c (parse_image_spec): Redo count calculation to avoid overflow.
12086 (lookup_image): Check that fixnums are in range for system types.
12087 * indent.c (last_known_column, last_known_column_point):
12088 (current_column_bol_cache):
12089 (skip_invisible, current_column, check_display_width):
12090 (check_display_width, scan_for_column, current_column_1)
12091 (Findent_to, Fcurrent_indentation, position_indentation)
12092 (indented_beyond_p, Fmove_to_column, compute_motion):
12093 (Fcompute_motion, Fvertical_motion):
12094 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12095 (last_known_column_modified): Use EMACS_INT, not int.
12096 (check_display_width):
12097 (Fcompute_motion):
12098 Check that fixnums and floats are in proper range for system types.
12099 (compute_motion): Don't assume index or fixnum fits in int.
12100 (compute_motion, Fcompute_motion):
12101 Use int, not EMACS_INT, when it is wide enough.
12102 (vmotion): Omit local var start_hpos that is always 0; that way
12103 we don't need to worry about overflow in expressions involving it.
12104 * indent.h: Adjust decls to match defn changes elsewhere.
12105 (struct position):
12106 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12107 Use int, not EMACS_INT, where int is wide enough.
12108 Remove unused members ovstring_chars_done and tab_offset;
12109 all uses removed.
12110 * insdel.c (move_gap, move_gap_both, gap_left, gap_right)
12111 (adjust_markers_for_delete, adjust_markers_for_insert, adjust_point)
12112 (adjust_markers_for_replace, make_gap_larger, make_gap_smaller)
12113 (make_gap, copy_text, insert, insert_and_inherit)
12114 (insert_before_markers, insert_before_markers_and_inherit)
12115 (insert_1, count_combining_before, count_combining_after)
12116 (insert_1_both, insert_from_string)
12117 (insert_from_string_before_markers, insert_from_string_1)
12118 (insert_from_gap, insert_from_buffer, insert_from_buffer_1)
12119 (adjust_after_replace, adjust_after_insert, replace_range)
12120 (replace_range_2, del_range, del_range_1, del_range_byte)
12121 (del_range_both, del_range_2, modify_region)
12122 (prepare_to_modify_buffer, signal_before_change)
12123 (signal_after_change, Fcombine_after_change_execute):
12124 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12125 * intervals.c (traverse_intervals, rotate_right, rotate_left)
12126 (balance_an_interval, split_interval_right, split_interval_left)
12127 (find_interval, next_interval, update_interval)
12128 (adjust_intervals_for_insertion, delete_node, delete_interval)
12129 (interval_deletion_adjustment, adjust_intervals_for_deletion)
12130 (static_offset_intervals, offset_intervals)
12131 (merge_interval_right, merge_interval_left, make_new_interval)
12132 (graft_intervals_into_buffer, temp_set_point_both)
12133 (temp_set_point, set_point, adjust_for_invis_intang)
12134 (set_point_both, move_if_not_intangible, get_property_and_range)
12135 (get_local_map, copy_intervals, copy_intervals_to_string)
12136 (compare_string_intervals, set_intervals_multibyte_1):
12137 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12138 * intervals.h: Adjust decls to match defn changes elsewhere.
12139 (struct interval):
12140 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12141 * keyboard.c (this_command_key_count, this_single_command_key_start)
12142 (before_command_key_count, before_command_echo_length, echo_now)
12143 (echo_length, recursive_edit_1, Frecursive_edit, Ftrack_mouse)
12144 (command_loop_1, safe_run_hooks, read_char, timer_check_2)
12145 (menu_item_eval_property, read_key_sequence, Fread_key_sequence)
12146 (Fread_key_sequence_vector, Fexecute_extended_command, Fsuspend_emacs):
12147 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12148 (last_non_minibuf_size, last_point_position, echo_truncate)
12149 (command_loop_1, adjust_point_for_property, read_char, gen_help_event)
12150 (make_lispy_position, make_lispy_event, parse_modifiers_uncached)
12151 (parse_modifiers, modify_event_symbol, Fexecute_extended_command)
12152 (stuff_buffered_input):
12153 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12154 (last_auto_save, command_loop_1, read_char):
12155 Use EMACS_INT, not int, to avoid integer overflow.
12156 (record_char): Avoid overflow in total_keys computation.
12157 (parse_modifiers_uncached): Redo index calculation to avoid overflow.
12158 * keyboard.h: Adjust decls to match defn changes elsewhere.
12159 * keymap.c (Fdefine_key, Fcurrent_active_maps, accessible_keymaps_1)
12160 (Fkey_description, Fdescribe_vector, Flookup_key):
12161 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12162 (click_position): New function, to check that positions are in range.
12163 (Fcurrent_active_maps):
12164 (describe_command):
12165 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12166 (Faccessible_keymaps, Fkey_description):
12167 (preferred_sequence_p):
12168 Don't assume fixnum can fit into int.
12169 (Fkey_description): Use SAFE_ALLOCA_LISP, not alloca.
12170 Check for integer overflow in size calculations.
12171 (Ftext_char_description): Use CHECK_CHARACTER, not CHECK_NUMBER, to
12172 avoid mishandling large integers.
12173 * lisp.h: Adjust decls to match defn changes elsewhere.
12174 (ARRAY_MARK_FLAG, PSEUDOVECTOR_FLAG, struct Lisp_String)
12175 (struct vectorlike_header, struct Lisp_Subr, struct Lisp_Hash_Table)
12176 (struct Lisp_Marker):
12177 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12178 (clip_to_bounds): Now an inline function, moved here from editfns.c.
12179 (GLYPH_CODE_P): Check for overflow in system types, subsuming the
12180 need for GLYPH_CODE_CHAR_VALID_P and doing proper checking ourselves.
12181 All callers changed.
12182 (GLYPH_CODE_CHAR, GLYPH_CODE_FACE):
12183 Assume the arg has valid form, since it always does.
12184 (TYPE_RANGED_INTEGERP): Avoid bug when checking against a wide
12185 unsigned integer system type.
12186 (CHECK_RANGED_INTEGER, CHECK_TYPE_RANGED_INTEGER): New macros.
12187 (struct catchtag, specpdl_size, SPECPDL_INDEX, USE_SAFE_ALLOCA):
12188 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12189 (struct catchtag): Use EMACS_INT, not int, since it may be a fixnum.
12190 (duration_to_sec_usec): New decl.
12191 * lread.c (read_from_string_index, read_from_string_index_byte)
12192 (read_from_string_limit, readchar, unreadchar, openp)
12193 (read_internal_start, read1, oblookup):
12194 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12195 (Fload, readevalloop, Feval_buffer, Feval_region):
12196 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12197 (openp): Check for out-of-range argument to 'access'.
12198 (read1): Use int, not EMACS_INT, where int is wide enough.
12199 Don't assume fixnum fits into int.
12200 Fix off-by-one error that can read outside a buffer.
12201 (read_filtered_event): Use duration_to_sec_usec
12202 to do proper overflow checking on durations.
12203 * macros.c (Fstart_kbd_macro): Use xpalloc to check for overflow
12204 in size calculation.
12205 (Fexecute_kbd_macro):
12206 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12207 * marker.c (cached_charpos, cached_bytepos, CONSIDER)
12208 (byte_char_debug_check, buf_charpos_to_bytepos, verify_bytepos)
12209 (buf_bytepos_to_charpos, Fset_marker, set_marker_restricted)
12210 (set_marker_both, set_marker_restricted_both, marker_position)
12211 (marker_byte_position, Fbuffer_has_markers_at):
12212 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12213 (Fset_marker, set_marker_restricted): Don't assume fixnum fits in int.
12214 * menu.c (ensure_menu_items): Rename from grow_menu_items.
12215 It now merely ensures that the menu is large enough, without
12216 necessarily growing it, as this avoids some integer overflow issues.
12217 All callers changed.
12218 (keymap_panes, parse_single_submenu, Fx_popup_menu):
12219 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12220 (parse_single_submenu, Fx_popup_menu): Don't assume fixnum fits in int.
12221 Use SAFE_ALLOCA_LISP, not alloca.
12222 (find_and_return_menu_selection): Avoid unnecessary casts of pointers
12223 to EMACS_INT. Check that fixnums are in proper range for system types.
12224 * minibuf.c (minibuf_prompt_width, string_to_object)
12225 (Fminibuffer_contents, Fminibuffer_contents_no_properties)
12226 (Fminibuffer_completion_contents, Ftry_completion, Fall_completions):
12227 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12228 (get_minibuffer, read_minibuf_unwind):
12229 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12230 (read_minibuf): Omit unnecessary arg BACKUP_N, which is always nil;
12231 this simplifies overflow checking. All callers changed.
12232 (read_minibuf, Fread_buffer, Ftry_completion, Fall_completions)
12233 (Ftest_completion):
12234 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12235 * nsfns.m (check_ns_display_info): Don't assume fixnum fits in long.
12236 (x_set_menu_bar_lines, x_set_tool_bar_lines, Fx_create_frame):
12237 Check that fixnums are in proper range for system types.
12238 (Fx_create_frame, Fx_show_tip):
12239 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12240 * nsfont.m (ns_findfonts, nsfont_list_family):
12241 Don't assume fixnum fits in long.
12242 * nsmenu.m (ns_update_menubar, ns_menu_show, ns_popup_dialog):
12243 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12244 (ns_update_menubar): Use intptr_t, not EMACS_INT, when intptr_t is
12245 wide enough.
12246 * nsselect.m (ns_get_local_selection, clean_local_selection_data):
12247 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12248 * print.c (print_buffer_size, print_buffer_pos, print_buffer_pos_byte)
12249 (PRINTDECLARE, PRINTPREPARE):
12250 (strout, print_string):
12251 (print, print_preprocess, print_check_string_charset_prop)
12252 (print_object):
12253 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12254 (PRINTDECLARE):
12255 (temp_output_buffer_setup, Fprin1_to_string, print_object):
12256 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12257 (PRINTPREPARE): Use int, not ptrdiff_t, where int is wide enough.
12258 (printchar, strout): Use xpalloc to catch size calculation overflow.
12259 (Fexternal_debugging_output): Don't overflow EMACS_INT->int conversion.
12260 (print_error_message): Use SAFE_ALLOCA, not alloca.
12261 (print_object): Use int, not EMACS_INT, where int is wide enough.
12262 (print_depth, new_backquote_output, print_number_index):
12263 Use ptrdiff_t, not int, where int might not be wide enough.
12264 * process.c (Fdelete_process): Don't assume pid fits into EMACS_INT.
12265 (Fset_process_window_size, Fformat_network_address)
12266 (get_lisp_to_sockaddr_size, set_socket_option, Fmake_network_process)
12267 (sigchld_handler):
12268 Check that fixnums are in proper range for system types.
12269 (Fsignal_process): Simplify by avoiding a goto.
12270 Check for process-ids out of pid_t range rather than relying on
12271 undefined behavior.
12272 (process_tick, update_tick): Use EMACS_INT, not int.
12273 (Fformat_network_address, read_process_output, send_process)
12274 (Fprocess_send_region, status_notify):
12275 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12276 (Fformat_network_address, Fmake_serial_process, Fmake_network_process)
12277 (wait_reading_process_output, read_process_output, exec_sentinel):
12278 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12279 (conv_lisp_to_sockaddr): Don't assume fixnums fit into int.
12280 (Faccept_process_output): Use duration_to_sec_usec to do proper
12281 overflow checking on durations.
12282 (emacs_get_tty_pgrp, Fprocess_running_child_p, process_send_signal):
12283 Don't assume pid_t fits in int.
12284 * process.h (struct Lisp_Process): Members tick and update_tick
12285 are now of type EMACS_INT, not int.
12286 * puresize.h (PURESIZE_RATIO): Shrink this to 8/6 on 32-bit hosts
12287 configured --with-wide-int.
12288 * scroll.c (calculate_scrolling, calculate_direct_scrolling)
12289 (line_ins_del): Use int, not EMACS_INT, where int is wide enough.
12290 * search.c (looking_at_1, string_match_1):
12291 (fast_string_match, fast_c_string_match_ignore_case)
12292 (fast_string_match_ignore_case, fast_looking_at, scan_buffer)
12293 (scan_newline, find_before_next_newline, search_command)
12294 (trivial_regexp_p, search_buffer, simple_search, boyer_moore)
12295 (set_search_regs, wordify):
12296 (Freplace_match):
12297 (Fmatch_data):
12298 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12299 (string_match_1, search_buffer, set_search_regs):
12300 (Fmatch_data):
12301 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12302 (wordify): Check for overflow in size calculation.
12303 (Freplace_match): Avoid potential buffer overflow in search_regs.start.
12304 (Fset_match_data): Don't assume fixnum fits in ptrdiff_t.
12305 Check that fixnums are in proper range for system types.
12306 * sound.c (struct sound_device)
12307 (wav_play, au_play, vox_write, alsa_period_size, alsa_write):
12308 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12309 (Fplay_sound_internal):
12310 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12311 * syntax.c (struct lisp_parse_state, find_start_modiff)
12312 (Finternal_describe_syntax_value, scan_lists, scan_sexps_forward):
12313 (Fparse_partial_sexp):
12314 Don't assume fixnums can fit in int.
12315 (struct lisp_parse_state, find_start_pos, find_start_value)
12316 (find_start_value_byte, find_start_begv)
12317 (update_syntax_table, char_quoted, dec_bytepos)
12318 (find_defun_start, prev_char_comend_first, back_comment):
12319 (scan_words, skip_chars, skip_syntaxes, forw_comment, Fforward_comment)
12320 (scan_lists, Fbackward_prefix_chars, scan_sexps_forward):
12321 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12322 (Finternal_describe_syntax_value): Check that match_lisp is a
12323 character, not an integer, since the code stuffs it into int.
12324 (scan_words, scan_sexps_forward):
12325 Check that fixnums are in proper range for system types.
12326 (Fforward_word):
12327 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12328 (scan_sexps_forward):
12329 Use CHARACTERP, not INTEGERP, since the value must fit into int.
12330 (Fparse_partial_sexp): Fix doc; element 8 is not ignored.
12331 * syntax.h: Adjust decls to match defn changes elsewhere.
12332 (struct gl_state_s):
12333 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12334 (SETUP_SYNTAX_TABLE_FOR_OBJECT): Use PTRDIFF_MAX, not
12335 MOST_POSITIVE_FIXNUM.
12336 * sysdep.c (wait_for_termination_1, wait_for_termination)
12337 (interruptible_wait_for_termination, mkdir):
12338 Don't assume pid_t fits in int; on 64-bit AIX pid_t is 64-bit.
12339 (emacs_read, emacs_write):
12340 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12341 (system_process_attributes): Don't assume uid_t, gid_t, EMACS_INT,
12342 and double all fit in int.
12343 * term.c (set_tty_color_mode):
12344 Check that fixnums are in proper range for system types.
12345 * termhooks.h (struct input_event):
12346 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12347 * textprop.c (validate_interval_range, interval_of)
12348 (Fadd_text_properties, set_text_properties_1)
12349 (Fremove_text_properties, Fremove_list_of_text_properties)
12350 (Ftext_property_any, Ftext_property_not_all)
12351 (copy_text_properties, text_property_list, extend_property_ranges)
12352 (verify_interval_modification):
12353 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12354 (Fnext_single_char_property_change)
12355 (Fprevious_single_char_property_change):
12356 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12357 (copy_text_properties):
12358 Check for integer overflow in index calculation.
12359 * undo.c (last_boundary_position, record_point, record_insert)
12360 (record_delete, record_marker_adjustment, record_change)
12361 (record_property_change):
12362 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12363 (truncate_undo_list, Fprimitive_undo): Don't assume fixnum fits in int.
12364 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12365 * w32fns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12366 (Fx_hide_tip, Fx_file_dialog):
12367 * w32menu.c (set_frame_menubar):
12368 Use ptrdiff_t, not int, for consistency with rest of code.
12369 * window.c (window_scroll_preserve_hpos, window_scroll_preserve_vpos)
12370 (select_window, Fdelete_other_windows_internal)
12371 (window_scroll_pixel_based, window_scroll_line_based)
12372 (Frecenter, Fset_window_configuration):
12373 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12374 (Fset_window_hscroll, run_window_configuration_change_hook)
12375 (set_window_buffer, temp_output_buffer_show, scroll_command)
12376 (Fscroll_other_window, Frecenter):
12377 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12378 (Fwindow_line_height, window_scroll, Fscroll_left, Fscroll_right):
12379 Don't assume fixnum fits in int.
12380 (Fset_window_scroll_bars):
12381 Check that fixnums are in proper range for system types.
12382 * xdisp.c (help_echo_pos, pos_visible_p, string_pos_nchars_ahead)
12383 (string_pos, c_string_pos, number_of_chars, init_iterator)
12384 (in_ellipses_for_invisible_text_p, init_from_display_pos)
12385 (compute_stop_pos, next_overlay_change, compute_display_string_pos)
12386 (compute_display_string_end, handle_face_prop)
12387 (face_before_or_after_it_pos, handle_invisible_prop)
12388 (handle_display_prop, handle_display_spec, handle_single_display_spec)
12389 (display_prop_intangible_p, string_buffer_position_lim)
12390 (string_buffer_position, handle_composition_prop, load_overlay_strings)
12391 (get_overlay_strings_1, get_overlay_strings)
12392 (iterate_out_of_display_property, forward_to_next_line_start)
12393 (back_to_previous_visible_line_start, reseat, reseat_to_string)
12394 (get_next_display_element, set_iterator_to_next)
12395 (get_visually_first_element, compute_stop_pos_backwards)
12396 (handle_stop_backwards, next_element_from_buffer)
12397 (move_it_in_display_line_to, move_it_in_display_line)
12398 (move_it_to, move_it_vertically_backward, move_it_by_lines)
12399 (add_to_log, message_dolog, message_log_check_duplicate)
12400 (message2, message2_nolog, message3, message3_nolog
12401 (with_echo_area_buffer, display_echo_area_1, resize_mini_window_1)
12402 (current_message_1, truncate_echo_area, truncate_message_1)
12403 (set_message, set_message_1, store_mode_line_noprop)
12404 (hscroll_window_tree, debug_delta, debug_delta_bytes, debug_end_vpos)
12405 (text_outside_line_unchanged_p, check_point_in_composition)
12406 (reconsider_clip_changes)
12407 (redisplay_internal, set_cursor_from_row, try_scrolling)
12408 (try_cursor_movement, set_vertical_scroll_bar, redisplay_window)
12409 (redisplay_window, find_last_unchanged_at_beg_row)
12410 (find_first_unchanged_at_end_row, row_containing_pos, try_window_id)
12411 (trailing_whitespace_p, find_row_edges, display_line)
12412 (RECORD_MAX_MIN_POS, Fcurrent_bidi_paragraph_direction)
12413 (display_mode_element, store_mode_line_string)
12414 (pint2str, pint2hrstr, decode_mode_spec)
12415 (display_count_lines, display_string, draw_glyphs)
12416 (x_produce_glyphs, x_insert_glyphs)
12417 (rows_from_pos_range, mouse_face_from_buffer_pos)
12418 (fast_find_string_pos, mouse_face_from_string_pos)
12419 (note_mode_line_or_margin_highlight, note_mouse_highlight):
12420 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12421 (safe_call, init_from_display_pos, handle_fontified_prop)
12422 (handle_single_display_spec, load_overlay_strings)
12423 (with_echo_area_buffer, setup_echo_area_for_printing)
12424 (display_echo_area, echo_area_display)
12425 (x_consider_frame_title, prepare_menu_bars, update_menu_bar)
12426 (update_tool_bar, hscroll_window_tree, redisplay_internal)
12427 (redisplay_window, dump_glyph_row, display_mode_line)
12428 (Fformat_mode_line, decode_mode_spec, on_hot_spot_p):
12429 (handle_display_spec, display_prop_string_p):
12430 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12431 (handle_single_display_spec, build_desired_tool_bar_string)
12432 (redisplay_tool_bar, scroll_window_tree, Fdump_glyph_matrix)
12433 (get_specified_cursor_type):
12434 Check that fixnums are in proper range for system types.
12435 (struct overlay_entry, resize_mini_window, Fdump_glyph_row)
12436 (Flookup_image_map):
12437 Don't assume fixnums fit in int.
12438 (compare_overlay_entries):
12439 Avoid mishandling comparisons due to subtraction overflow.
12440 (load_overlay_strings): Use SAFE_NALLOCA, not alloca.
12441 (last_escape_glyph_face_id, last_glyphless_glyph_face_id):
12442 (handle_tool_bar_click):
12443 Use int, not unsigned, since we prefer signed and the signedness
12444 doesn't matter here.
12445 (get_next_display_element, next_element_from_display_vector):
12446 Use int, not EMACS_INT, when int is wide enough.
12447 (start_hourglass): Use duration_to_sec_usec to do proper
12448 overflow checking on durations.
12449 * xfaces.c (Fbitmap_spec_p):
12450 Check that fixnums are in proper range for system types.
12451 (compare_fonts_by_sort_order):
12452 Avoid mishandling comparisons due to subtraction overflow.
12453 (Fx_family_fonts, realize_basic_faces):
12454 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12455 (Fx_family_fonts):
12456 Don't assume fixnum fits in int.
12457 Use SAFE_ALLOCA_LISP, not alloca.
12458 (merge_face_heights): Remove unnecessary cast to EMACS_INT.
12459 (Finternal_make_lisp_face): Don't allocate more than MAX_FACE_ID.
12460 (face_at_buffer_position, face_for_overlay_string)
12461 (face_at_string_position):
12462 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12463 (merge_faces): Use int, not EMACS_INT, where int is wide enough.
12464 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines, x_icon_verify)
12465 (Fx_show_tip):
12466 Check that fixnums are in proper range for system types.
12467 (Fx_create_frame, x_create_tip_frame, Fx_show_tip)
12468 (Fx_hide_tip, Fx_file_dialog, Fx_select_font):
12469 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12470 (Fx_change_window_property): Don't assume fixnums fit in int.
12471 * xfont.c (xfont_chars_supported):
12472 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12473 * xmenu.c (Fx_popup_dialog, set_frame_menubar)
12474 (create_and_show_popup_menu, create_and_show_dialog, xmenu_show):
12475 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12476 * xml.c (parse_region):
12477 * xrdb.c (magic_file_p):
12478 Use ptrdiff_t, not EMACS_INT, where ptrdiff_t is wide enough.
12479 * xselect.c (TRACE1): Don't assume pid_t promotes to int.
12480 (x_get_local_selection, x_reply_selection_request)
12481 (x_handle_selection_request, wait_for_property_change):
12482 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12483 (selection_data_to_lisp_data): Use short, not EMACS_INT, where
12484 short is wide enough.
12485 (x_send_client_event): Don't assume fixnum fits in int.
12486 * xterm.c (x_x_to_emacs_modifiers):
12487 Don't assume EMACS_INT overflows nicely into int.
12488 (x_emacs_to_x_modifiers): Use EMACS_INT, not int, because values
12489 may come from Lisp.
12490 (handle_one_xevent): NATNUMP can eval its arg twice.
12491 (x_connection_closed):
12492 Use ptrdiff_t, not int, to avoid needless 32-bit limit on 64-bit hosts.
12493 * xterm.h: Adjust decls to match defn changes elsewhere.
12494 (struct scroll_bar): Use struct vectorlike_header
12495 rather than rolling our own approximation.
12496 (SCROLL_BAR_VEC_SIZE): Remove; not used.
12497
12498 2012-05-25 Glenn Morris <rgm@gnu.org>
12499
12500 * lisp.mk (lisp): Update for more files being compiled now.
12501
12502 2012-05-25 Stefan Monnier <monnier@iro.umontreal.ca>
12503
12504 * lread.c: Remove `read_pure' which makes no difference.
12505 (read_pure): Remove var.
12506 (unreadpure): Remove function.
12507 (readevalloop): Don't call read_list with -1 flag.
12508 (read1, read_vector): Don't test read_pure any more.
12509 (read_list): Simplify.
12510
12511 * fileio.c, character.h: Minor style tweaks.
12512
12513 2012-05-24 Dmitry Antipov <dmantipov@yandex.ru>
12514
12515 * window.h (clip_changed): Remove useless declaration.
12516
12517 2012-05-22 Juanma Barranquero <lekktu@gmail.com>
12518
12519 * makefile.w32-in: Follow-up to 2012-05-22T16:20:27Z!eggert@cs.ucla.edu.
12520 (TAGS, TAGS-gmake, CONFIG_H): Remove further references to m/intel386.h.
12521
12522 2012-05-22 Paul Eggert <eggert@cs.ucla.edu>
12523
12524 Remove src/m/*.
12525 This directory predates autoconf and is no longer needed nowadays.
12526 Move its few remaining bits of functionality to where they're needed.
12527 * m/README, m/alpha.h, m/amdx86-64.h, m/ia64.h, m/ibmrs6000.h:
12528 * m/ibms390x.h, m/intel386.h, m/m68k.h, m/macppc.h, m/sparc.h:
12529 * m/template.h: Remove.
12530 * Makefile.in (M_FILE): Remove. All uses removed.
12531 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS):
12532 * lisp.h (USE_LSB_TAG):
12533 * mem-limits.h (EXCEEDS_LISP_PTR):
12534 Use VAL_MAX, not VALBITS, in #if.
12535 * lisp.h (EMACS_INT_MAX): New macro, useful in #if.
12536 (EMACS_UINT): Define unconditionally now.
12537 (BITS_PER_CHAR, BITS_PER_SHORT, BITS_PER_INT, BITS_PER_LONG)
12538 (BITS_PER_EMACS_INT): New constants, replacing
12539 what used to be in config.h, but not useful in #if.
12540 (GCTYPEBITS, VALBITS): Define unconditionally, since m/* files don't
12541 define them any more.
12542 (VAL_MAX): New macro.
12543 (VALMASK): Use it.
12544 * puresize.h (PURESIZE_RATIO): Use EMACS_INT_MAX, not
12545 BITS_PER_EMACS_INT, in #if.
12546 * s/aix4-2.h (BROKEN_FIONREAD, BROKEN_SIGAIO, BROKEN_SIGPTY)
12547 (BROKEN_SIGPOLL): Move here from m/ibmrs6000.h, which was removed.
12548 * s/gnu-linux.h (ULIMIT_BREAK_VALUE) [__i386__]:
12549 * s/ms-w32.h (DATA_START):
12550 Move here from removed file m/intel386.h.
12551 * s/gnu.h (NLIST_STRUCT): Remove undef; 'configure' does this.
12552 * s/irix6-5.h (_LP64): Remove; lisp.h no longer needs this.
12553
12554 2012-05-21 Paul Eggert <eggert@cs.ucla.edu>
12555
12556 Assume C89 or later.
12557 * alloc.c, buffer.c, lisp.h: Replace POINTER_TYPE with void.
12558 * alloc.c (overrun_check_malloc, overrun_check_realloc, xmalloc)
12559 (xrealloc):
12560 * buffer.c (mmap_free_1, mmap_enlarge): Omit needless casts.
12561 * editfns.c, fns.c, gmalloc.c, insdel.c, sysdep.c, termcap.c (NULL):
12562 * textprop.c, tparam.c (NULL): Remove.
12563 * ralloc.c, vm-limit.c (POINTER): Assume void * works.
12564 * regex.c (SIGN_EXTEND_CHAR): Assume signed char works.
12565 * regex.h (_RE_ARGS): Remove. All uses rewritten to use prototypes.
12566 * unexelf.c (ElfBitsW): Assume c89 preprocessor or better.
12567 * xterm.c (input_signal_count): Assume volatile works.
12568
12569 2012-05-21 Ken Brown <kbrown@cornell.edu>
12570
12571 * xgselect.c (xg_select): Fix first argument in call to 'select'
12572 (bug#11508).
12573
12574 2012-05-20 Ken Brown <kbrown@cornell.edu>
12575
12576 * gmalloc.c (_free_internal_nolock, _realloc_internal_nolock)
12577 [CYGWIN]: Cast ptr to (char *) before comparing to _heapbase.
12578
12579 2012-05-19 Ken Brown <kbrown@cornell.edu>
12580
12581 * xfns.c (x_in_use): Remove `static' qualifier.
12582 * xterm.h (x_in_use): Declare.
12583 * xgselect.c: Include xterm.h.
12584 (xg_select): Test `x_in_use' instead of `inhibit_window_system'
12585 and `display_arg' (bug#9754).
12586
12587 2012-05-19 Paul Eggert <eggert@cs.ucla.edu>
12588
12589 * s/ms-w32.h (HAVE_GETDOMAINNAME): Remove; not needed.
12590
12591 * m/vax.h: Remove; no longer needed since HAVE_FTIME is being removed.
12592 * s/ms-w32.h (HAVE_FTIME): Remove; not needed.
12593
12594 2012-05-18 Eli Zaretskii <eliz@gnu.org>
12595
12596 Fix compilation with -DGLYPH_DEBUG=1 on MS-Windows.
12597
12598 * w32term.c [GLYPH_DEBUG]: Add prototype for x_check_font.
12599 (x_check_font) [GLYPH_DEBUG]: New function, copied from xterm.c.
12600
12601 * w32fns.c (unwind_create_frame) [GLYPH_DEBUG]: Fix broken
12602 reference to image_cache->refcount.
12603 (x_create_tip_frame): Fix broken use of FRAME_IMAGE_CACHE.
12604
12605 2012-05-17 Juri Linkov <juri@jurta.org>
12606
12607 * search.c (Fword_search_regexp, Fword_search_backward)
12608 (Fword_search_forward, Fword_search_backward_lax)
12609 (Fword_search_forward_lax): Move functions to isearch.el
12610 (bug#10145, bug#11381).
12611
12612 2012-05-16 Paul Eggert <eggert@cs.ucla.edu>
12613
12614 * xgselect.c (xg_select): Just invoke 'select' if -nw (Bug#9754).
12615
12616 2012-05-15 Stefan Monnier <monnier@iro.umontreal.ca>
12617
12618 * lread.c (init_obarray): Declare Qt and Qnil as special.
12619
12620 2012-05-14 Glenn Morris <rgm@gnu.org>
12621
12622 * nsterm.m (ns_init_paths): Fix typo ("libexec" not "lib-exec").
12623 Put "libexec" before "bin", for the sake of init_callproc_1.
12624
12625 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12626
12627 * keyboard.c (kbd_buffer_get_event) [!HAVE_DBUS]: Omit unused local.
12628
12629 * unexaix.c: Port to more-recent AIX compilers.
12630 (report_error, report_error_1, make_hdr, copy_sym)
12631 (mark_x, adjust_lnnoptrs, unrelocate_symbols):
12632 Make arguments const char *, not char *, to avoid violations of C
12633 standard and to fix some AIX warnings reported by Gilles Pion.
12634
12635 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12636
12637 * xdisp.c (handle_stop): Don't call get_overlay_strings_1 if we
12638 already have overlays loaded.
12639 (handle_single_display_spec): Before returning without displaying
12640 fringe bitmap, synchronize the bidi iterator with the main display
12641 iterator, by calling iterate_out_of_display_property.
12642 (iterate_out_of_display_property): Detect buffer iteration by
12643 testing that it->string is a Lisp string.
12644 (get_next_display_element): When the current object is exhausted,
12645 and there's something on it->stack, call set_iterator_to_next to
12646 proceed with what's on the stack, instead of returning zero.
12647 (set_iterator_to_next): If called at the end of a Lisp string,
12648 proceed to consider_string_end without incrementing string
12649 position. Don't increment display vector index past the end of
12650 the display vector. (Bug#11417)
12651 (pos_visible_p): Don't report a position visible when move_it_to
12652 stopped at the last line of window, which happens to be scanned
12653 backwards by the bidi iteration. (Bug#11464)
12654
12655 2012-05-14 Eli Zaretskii <eliz@gnu.org>
12656
12657 * xdisp.c (handle_single_display_spec): Return 1 for left-margin
12658 and right-margin display specs even if the spec is invalid or we
12659 are on a TTY, and thus unable to display on the fringes.
12660 That's because the text with the property will not be displayed anyway,
12661 so we need to signal to the caller that this is a "replacing"
12662 display spec. This fixes display when the spec is invalid or we
12663 are on a TTY.
12664
12665 2012-05-14 Paul Eggert <eggert@cs.ucla.edu>
12666
12667 * unexaix.c (make_hdr): Fix typo in prototype.
12668 This bug broke the build on AIX. Problem reported by Gilles Pion.
12669
12670 2012-05-14 Michael Albinus <michael.albinus@gmx.de>
12671
12672 * keyboard.c (kbd_buffer_get_event): Read special events also in
12673 batch mode. (Bug#11415)
12674
12675 2012-05-12 Glenn Morris <rgm@gnu.org>
12676
12677 * ns.mk: Update for ns_appbindir no longer having trailing "/".
12678
12679 2012-05-12 Eli Zaretskii <eliz@gnu.org>
12680
12681 * lisp.mk (lisp): Add newcomment.elc.
12682
12683 2012-05-12 Glenn Morris <rgm@gnu.org>
12684
12685 * Makefile.in (MKDIR_P): New, set by configure.
12686 * ns.mk (${ns_appdir}, ${ns_appbindir}Emacs): Use $MKDIR_P.
12687
12688 2012-05-11 Paul Eggert <eggert@cs.ucla.edu>
12689
12690 Remove unused function hourglass_started.
12691 * dispextern.h (hourglass_started):
12692 * w32fns.c (hourglass_started):
12693 * xdisp.c (hourglass_started): Remove.
12694
12695 2012-05-10 Juanma Barranquero <lekktu@gmail.com>
12696
12697 * makefile.w32-in ($(BLD)/gmalloc.$(O), $(BLD)/w32menu.$(O)):
12698 Update dependencies.
12699
12700 2012-05-10 Paul Eggert <eggert@cs.ucla.edu>
12701
12702 * xgselect.c (xg_select): Put maxfds+1 into a var.
12703 This is slightly clearer, and pacifies Ubuntu 12.04 gcc.
12704
12705 * sound.c (DEFAULT_ALSA_SOUND_DEVICE): Define only if HAVE_ALSA.
12706
12707 2012-05-10 Dave Abrahams <dave@boostpro.com>
12708
12709 * filelock.c (syms_of_filelock): New boolean create-lockfiles.
12710 (lock_file): If create_lockfiles is 0, do nothing. (Bug#11227)
12711
12712 2012-05-09 Michael Albinus <michael.albinus@gmx.de>
12713
12714 * dbusbind.c (xd_registered_buses): New internal Lisp object.
12715 Rename all occurrences of Vdbus_registered_buses to xd_registered_buses.
12716 (syms_of_dbusbind): Remove declaration of Vdbus_registered_buses.
12717 Initialize xd_registered_buses.
12718
12719 2012-05-09 Paul Eggert <eggert@cs.ucla.edu>
12720
12721 Untag more efficiently if USE_LSB_TAG.
12722 This is based on a proposal by YAMAMOTO Mitsuharu in
12723 <http://lists.gnu.org/archive/html/emacs-devel/2008-01/msg01876.html>.
12724 For an admittedly artificial (nth 8000 longlist) benchmark on
12725 Fedora 15 x86-64, this yields a 25% CPU speedup. Also, it shrinks
12726 Emacs's overall text size by 1%.
12727 * lisp.h (XUNTAG): New macro.
12728 (XCONS, XVECTOR, XSTRING, XSYMBOL, XFLOAT, XMISC, XPROCESS, XWINDOW)
12729 (XTERMINAL, XSUBR, XBUFFER, XCHAR_TABLE, XSUB_CHAR_TABLE, XBOOL_VECTOR)
12730 (XSETTYPED_PSEUDOVECTOR, XHASH_TABLE, TYPED_PSEUDOVECTORP): Use it.
12731 * eval.c (Fautoload):
12732 * font.h (XFONT_SPEC, XFONT_ENTITY, XFONT_OBJECT):
12733 * frame.h (XFRAME): Use XUNTAG.
12734
12735 Port recent dbusbind.c changes to 32-bit --with-wide-int.
12736 * dbusbind.c (xd_append_arg, xd_retrieve_arg, Fdbus_message_internal):
12737 Remove unportable assumptions about print widths of types like
12738 dbus_uint32_t.
12739 (xd_get_connection_address, Fdbus_init_bus): Cast Emacs integer to
12740 intptr_t when converting between pointer and integer, to avoid GCC
12741 warnings about wrong width.
12742
12743 2012-05-09 Eli Zaretskii <eliz@gnu.org>
12744
12745 * w32proc.c (new_child): Force Windows to reserve only 64KB of
12746 stack for each reader_thread, instead of defaulting to 8MB
12747 determined by the linker. This avoids failures in creating
12748 subprocesses on Windows 7, see the discussion in this thread:
12749 http://lists.gnu.org/archive/html/emacs-devel/2012-03/msg00119.html.
12750
12751 2012-05-07 Jérémy Compostella <jeremy.compostella@gmail.com>
12752
12753 Fix up display of the *Minibuf-0* buffer in the mini window.
12754 * keyboard.c (read_char): Don't clear the echo area if there's no
12755 message to clear.
12756 * xdisp.c (redisplay_internal): Redisplay the mini window (with the
12757 contents of *Minibuf-0*) if there's no message displayed in its stead.
12758
12759 2012-05-07 Michael Albinus <michael.albinus@gmx.de>
12760
12761 * dbusbind.c (XD_DEBUG_MESSAGE): Don't print message twice in
12762 batch mode.
12763
12764 2012-05-06 Chong Yidong <cyd@gnu.org>
12765
12766 * lisp.mk (lisp): Update.
12767
12768 2012-05-05 Jim Meyering <meyering@redhat.com>
12769
12770 * w32font.c (fill_in_logfont): NUL-terminate a string (Bug#11372).
12771
12772 2012-05-04 Stefan Monnier <monnier@iro.umontreal.ca>
12773
12774 * data.c (PUT_ERROR): New macro.
12775 (syms_of_data): Use it. Add new error type `user-error'.
12776 * undo.c (user_error): New function.
12777 (Fprimitive_undo): Use it.
12778 * print.c (print_error_message): Adjust print style for `user-error'.
12779 * keyboard.c (user_error): New function.
12780 (Fexit_recursive_edit, Fabort_recursive_edit): Use it.
12781
12782 2012-05-03 Paul Eggert <eggert@cs.ucla.edu>
12783
12784 Do not limit current-time-string to years 1000..9999.
12785 * editfns.c (TM_YEAR_IN_ASCTIME_RANGE): Remove.
12786 (Fcurrent_time_string): Support any year that is supported by the
12787 underlying localtime representation. Don't use asctime, as it
12788 has undefined behavior for years outside the range -999..9999.
12789
12790 2012-05-02 Paul Eggert <eggert@cs.ucla.edu>
12791
12792 Fix race conditions involving setenv, gmtime, localtime, asctime.
12793 Without this fix, interrupts could mess up code that uses these
12794 nonreentrant functions, since setting TZ invalidates existing
12795 tm_zone or tzname values, and since most of these functions return
12796 pointers to static storage.
12797 * editfns.c (format_time_string, Fdecode_time, Fencode_time)
12798 (Fcurrent_time_string, Fcurrent_time_zone, Fset_time_zone_rule):
12799 Grow the critical sections to include not just invoking
12800 localtime/gmtime, but also accessing these functions' results
12801 including their tm_zone values if any, and any related TZ setting.
12802 (format_time_string): Last arg is now struct tm *, not struct tm **,
12803 so that the struct tm is saved in the critical section.
12804 All callers changed. Simplify allocation of initial buffer, partly
12805 motivated by the fact that memory allocation needs to be outside
12806 the critical section.
12807
12808 2012-05-02 Dmitry Antipov <dmantipov@yandex.ru>
12809
12810 * intervals.c (adjust_intervals_for_insertion): Initialize `newi'
12811 with RESET_INTERVAL.
12812
12813 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
12814 Remove duplicated buffer name initialization.
12815
12816 2012-05-02 Jim Meyering <jim@meyering.net>
12817
12818 * xterm.c (x_term_init): Use memcpy instead of strncpy (Bug#11373).
12819
12820 * xfns.c (x_window): Use xstrdup (Bug#11375).
12821
12822 2012-05-02 Eli Zaretskii <eliz@gnu.org>
12823
12824 * xdisp.c (pos_visible_p): If already at a newline from the
12825 display string before the 'while' loop, don't walk back the glyphs
12826 from it3.glyph_row. Solves assertion violation when the display
12827 string begins with a newline (egg.el). (Bug#11367)
12828
12829 2012-05-01 Stefan Monnier <monnier@iro.umontreal.ca>
12830
12831 * keyboard.c (Fexecute_extended_command, Vsuggest_key_bindings):
12832 Move to simple.el.
12833
12834 2012-05-01 Glenn Morris <rgm@gnu.org>
12835
12836 * syssignal.h: Remove reference to BROKEN_SIGINFO (last used in
12837 s/ptx4.h), BROKEN_SIGTSTP (last used in m/ustation.h, m/dpx2.h),
12838 and BROKEN_SIGURG (was in s/gnu-linux.h prior to 2008-02-10).
12839 All were removed before 23.1.
12840
12841 * dispnew.c: Remove HAVE_LIBNCURSES test;
12842 it is always true on relevant platforms.
12843
12844 * Makefile.in (LD_SWITCH_X_SITE_RPATH):
12845 Rename from LD_SWITCH_X_SITE_AUX_RPATH.
12846
12847 * Makefile.in (LD_SWITCH_X_SITE_AUX): Remove; no longer used.
12848
12849 2012-04-30 Andreas Schwab <schwab@linux-m68k.org>
12850
12851 * .gdbinit (xpr): Remove checks for no longer existing misc types.
12852 (xintfwd, xboolfwd, xobjfwd, xbufobjfwd, xkbobjfwd, xbuflocal):
12853 Remove.
12854
12855 2012-04-28 Paul Eggert <eggert@cs.ucla.edu>
12856
12857 Do not avoid creating empty evaporating overlays (Bug#9642).
12858 * buffer.c (Fmove_overlay): Revert the change of 2012-04-23.
12859 That is, do not delete an evaporating overlay if it becomes
12860 empty after its bounds are adjusted to fit within its buffer.
12861 This fix caused other problems, and I'm reverting it until we get
12862 to the bottom of them.
12863
12864 2012-04-27 Chong Yidong <cyd@gnu.org>
12865
12866 * xselect.c (x_convert_selection): Initialize a pointer (Bug#11315).
12867
12868 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12869
12870 * xdisp.c (pos_visible_p): If the window start position is beyond
12871 ZV, start the display from buffer beginning. Prevents assertion
12872 violation in init_iterator when the minibuffer window is scrolled
12873 via the scroll bar.
12874
12875 * window.c (window_scroll_pixel_based): Likewise.
12876
12877 2012-04-27 Chong Yidong <cyd@gnu.org>
12878
12879 * keymap.c (where_is_internal): Doc fix (Bug#10872).
12880
12881 2012-04-27 Glenn Morris <rgm@gnu.org>
12882
12883 * fileio.c (Fcopy_file, Fset_file_selinux_context):
12884 Ignore ENOTSUP failures from setfilecon functions. (Bug#11245)
12885
12886 2012-04-27 Eli Zaretskii <eliz@gnu.org>
12887
12888 * dispnew.c (swap_glyph_pointers, copy_row_except_pointers):
12889 Don't overrun array limits of glyph row's used[] array. (Bug#11288)
12890
12891 2012-04-26 Eli Zaretskii <eliz@gnu.org>
12892
12893 * xdisp.c (IT_DISPLAYING_WHITESPACE): In addition to the loaded
12894 display element, check also the underlying string or buffer
12895 character. (Bug#11341)
12896
12897 * w32menu.c: Include w32heap.h.
12898 (add_menu_item): If the call to AppendMenuW (via
12899 unicode_append_menu) fails, disable Unicode menus only if we are
12900 running on Windows 9X/Me.
12901
12902 2012-04-24 Andreas Schwab <schwab@linux-m68k.org>
12903
12904 * .gdbinit (xpr): Handle USE_2_TAGS_FOR_INTS.
12905 (xgetint): Add missing shift for LSB tags.
12906
12907 2012-04-24 Martin Rudalics <rudalics@gmx.at>
12908
12909 * keyboard.c (read_char): Don't wipe echo area for select window
12910 events: These might get delayed via `mouse-autoselect-window'
12911 (Bug#11304).
12912
12913 2012-04-24 Juanma Barranquero <lekktu@gmail.com>
12914
12915 * gnutls.c (init_gnutls_functions): Protect against (unlikely)
12916 manipulation of :loaded-from data.
12917
12918 2012-04-23 Juanma Barranquero <lekktu@gmail.com>
12919
12920 * gnutls.c (init_gnutls_functions): The value of :loaded-from is
12921 now a cons (bug#11311).
12922
12923 2012-04-23 Paul Eggert <eggert@cs.ucla.edu>
12924
12925 Do not create empty overlays with the evaporate property (Bug#9642).
12926 * buffer.c (Fmove_overlay): Delete an evaporating overlay
12927 if it becomes empty after its bounds are adjusted to fit within
12928 its buffer. Without this fix, in a nonempty buffer (let ((o
12929 (make-overlay 1 2))) (overlay-put o 'evaporate t) (move-overlay o 0 1))
12930 yields an empty overlay that has the evaporate property, which is
12931 not supposed to happen.
12932
12933 Fix minor GTK3 problems found by static checking.
12934 * emacsgtkfixed.c (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12935 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12936 (struct _EmacsFixedClass, emacs_fixed_get_type):
12937 Move decls here from emacsgtkfixed.h, since they needn't be public.
12938 (emacs_fixed_get_type): Now static.
12939 (emacs_fixed_class_init): Omit unused local.
12940 (emacs_fixed_child_type): Remove; unused.
12941 * emacsgtkfixed.h (EMACS_TYPE_FIXED, EMACS_FIXED, EmacsFixed)
12942 (EmacsFixedPrivate, EmacsFixedClass, struct _EmacsFixed)
12943 (struct _EmacsFixedClass): Move to emacsgtkfixed.c.
12944 (EMACS_FIXED_CLASS, EMACS_IS_FIXED, EMACS_IS_FIXED_CLASS)
12945 (EMACS_FIXED_GET_CLASS): Remove; unused.
12946 * gtkutil.c (xg_create_frame_widgets) [!HAVE_GTK3]: Omit unused local.
12947
12948 * keyboard.c (handle_async_input): Define only if SYNC_INPUT || SIGIO.
12949 Problem reported by Juanma Barranquero for Windows -Wunused-function.
12950
12951 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
12952
12953 Modernize and clean up gmalloc.c to assume C89 (Bug#9119).
12954 * gmalloc.c (_MALLOC_INTERNAL, _MALLOC_H, _PP, __ptr_t)
12955 (__malloc_size_t, __malloc_ptrdiff_t):
12956 Remove. All uses removed, replaced by the definiens if needed,
12957 since we can assume C89 or better now.
12958 Include <stdint.h>, for PTRDIFF_MAX, uintptr_t.
12959 (protect_malloc_state, align, get_contiguous_space)
12960 (malloc_atfork_handler_prepare, malloc_atfork_handler_parent)
12961 (malloc_atfork_handler_child, malloc_enable_thread)
12962 (malloc_initialize_1, __malloc_initialize, morecore_nolock)
12963 (_malloc_internal_nolock, _malloc_internal, malloc, _malloc)
12964 (_free, _realloc, _free_internal_nolock, _free_internal, free, cfree)
12965 (special_realloc, _realloc_internal_nolock, _realloc_internal)
12966 (realloc, calloc, __default_morecore, memalign, valloc, checkhdr)
12967 (freehook, mallochook, reallochook, mabort, mcheck, mprobe):
12968 Define using prototypes, not old style.
12969 (align, _malloc_internal_nolock, _free_internal_nolock, memalign):
12970 Don't assume ptrdiff_t and uintptr_t are no wider than unsigned long.
12971 (align): Don't assume that signed integer overflow wraps around.
12972 Omit unused local var.
12973 (malloc_initialize_1, morecore_nolock, _malloc_internal_nolock)
12974 (_free_internal_nolock, memalign, mallochook, reallochook):
12975 Omit no-longer-needed casts.
12976 (valloc): Use getpagesize, not __getpagesize.
12977 (MAGICWORD, MAGICFREE): Now randomish size_t values, not 32-bit.
12978 (struct hdr): The 'magic' member is now size_t, not unsigned long.
12979
12980 * dbusbind.c (XD_DBUS_VALIDATE_OBJECT): Define only if needed.
12981
12982 2012-04-22 Michael Albinus <michael.albinus@gmx.de>
12983
12984 Move functions from C to Lisp. Make non-blocking method calls
12985 the default. Implement further D-Bus standard interfaces.
12986
12987 * dbusbind.c (DBUS_NUM_MESSAGE_TYPES): Declare.
12988 (QCdbus_request_name_allow_replacement)
12989 (QCdbus_request_name_replace_existing)
12990 (QCdbus_request_name_do_not_queue)
12991 (QCdbus_request_name_reply_primary_owner)
12992 (QCdbus_request_name_reply_in_queue)
12993 (QCdbus_request_name_reply_exists)
12994 (QCdbus_request_name_reply_already_owner): Move to dbus.el.
12995 (QCdbus_registered_serial, QCdbus_registered_method)
12996 (QCdbus_registered_signal): New Lisp objects.
12997 (XD_DEBUG_MESSAGE): Use sizeof.
12998 (XD_MESSAGE_TYPE_TO_STRING, XD_OBJECT_TO_STRING)
12999 (XD_DBUS_VALIDATE_BUS_ADDRESS, XD_DBUS_VALIDATE_OBJECT)
13000 (XD_DBUS_VALIDATE_BUS_NAME, XD_DBUS_VALIDATE_PATH)
13001 (XD_DBUS_VALIDATE_INTERFACE, XD_DBUS_VALIDATE_MEMBER): New macros.
13002 (XD_CHECK_DBUS_SERIAL): Rename from CHECK_DBUS_SERIAL_GET_SERIAL.
13003 (xd_signature, xd_append_arg): Allow float for integer types.
13004 (xd_get_connection_references): New function.
13005 (xd_get_connection_address): Rename from xd_initialize.
13006 Return cached address.
13007 (xd_remove_watch): Do not unset $DBUS_SESSION_BUS_ADDRESS.
13008 (xd_close_bus): Rename from Fdbus_close_bus. Not needed on Lisp
13009 level.
13010 (Fdbus_init_bus): New optional arg PRIVATE. Cache address.
13011 Return number of refcounts.
13012 (Fdbus_get_unique_name): Make stronger parameter check.
13013 (Fdbus_message_internal): New defun.
13014 (Fdbus_call_method, Fdbus_call_method_asynchronously)
13015 (Fdbus_method_return_internal, Fdbus_method_error_internal)
13016 (Fdbus_send_signal, Fdbus_register_service)
13017 (Fdbus_register_signal, Fdbus_register_method): Move to dbus.el.
13018 (xd_read_message_1): Obey new structure of Vdbus_registered_objects.
13019 (xd_read_queued_messages): Obey new structure of Vdbus_registered_buses.
13020 (Vdbus_compiled_version, Vdbus_runtime_version)
13021 (Vdbus_message_type_invalid, Vdbus_message_type_method_call)
13022 (Vdbus_message_type_method_return, Vdbus_message_type_error)
13023 (Vdbus_message_type_signal): New defvars.
13024 (Vdbus_registered_buses, Vdbus_registered_objects_table):
13025 Adapt docstring.
13026
13027 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13028
13029 Fix GC_MALLOC_CHECK debugging output on 64-bit hosts.
13030 * alloc.c (emacs_blocked_malloc) [GC_MALLOC_CHECK]:
13031 Do not assume ptrdiff_t is the same width as 'int'.
13032
13033 * alloc.c: Handle unusual debugging option combinations.
13034 (GC_CHECK_MARKED_OBJECTS): Undef if ! GC_MARK_STACK,
13035 since the two debugging options are incompatible.
13036 (GC_MALLOC_CHECK): Similarly, undef if GC_CHECK_MARKED_OBJECTS
13037 is defined.
13038 (mem_init, mem_insert, mem_insert_fixup):
13039 Define if GC_MARK_STACK || GC_MALLOC_CHECK.
13040 (NEED_MEM_INSERT): Remove; no longer needed.
13041
13042 2012-04-22 Leo Liu <sdl.web@gmail.com>
13043
13044 * sysdep.c (list_system_processes): Support Darwin (Bug#5725).
13045
13046 2012-04-22 Paul Eggert <eggert@cs.ucla.edu>
13047
13048 * sysdep.c [__FreeBSD__]: Minor cleanups.
13049 (list_system_processes, system_process_attributes) [__FreeBSD__]:
13050 Use Emacs indenting style more consistently. Avoid some casts.
13051 Use 'double' consistently rather than mixing 'float' and 'double'.
13052
13053 2012-04-21 Eduard Wiebe <usenet@pusto.de>
13054
13055 * sysdep.c (list_system_processes, system_process_attributes):
13056 Add implementation for FreeBSD (Bug#5243).
13057
13058 2012-04-21 Andreas Schwab <schwab@linux-m68k.org>
13059
13060 * lisp.mk (lisp): Update.
13061
13062 2012-04-20 Paul Eggert <eggert@cs.ucla.edu>
13063
13064 * keyboard.c (process_pending_signals): Define only if SYNC_INPUT.
13065 It is never used otherwise.
13066
13067 2012-04-20 Stefan Monnier <monnier@iro.umontreal.ca>
13068
13069 * print.c (print_preprocess): Only check print_depth if print-circle
13070 is nil.
13071 (print_object): Check for cycles even when print-circle is nil and
13072 print-gensym is t, but only check print_depth if print-circle is nil.
13073
13074 2012-04-20 Chong Yidong <cyd@gnu.org>
13075
13076 * process.c (wait_reading_process_output): If EIO occurs on a pty,
13077 set the status to "failed" and ensure that sentinel is run.
13078
13079 2012-04-20 Glenn Morris <rgm@gnu.org>
13080
13081 * process.c (Fset_process_inherit_coding_system_flag)
13082 (Fset_process_query_on_exit_flag): Doc fix (mention return value).
13083 (Fmake_network_process, Fmake_serial_process): Doc fix.
13084
13085 2012-04-20 Eli Zaretskii <eliz@gnu.org>
13086
13087 * xdisp.c (string_buffer_position_lim): Limit starting position to
13088 BEGV.
13089 (set_cursor_from_row): If called for a mode-line or header-line
13090 row, return zero immediately.
13091 (try_cursor_movement): If inside continuation line, don't back up
13092 farther than the first row after the header line, if any.
13093 Don't consider the header-line row as "partially visible", even if
13094 MATRIX_ROW_PARTIALLY_VISIBLE_P returns non-zero. (Bug#11261)
13095
13096 2012-04-20 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13097
13098 * lread.c (lisp_file_lexically_bound_p): Fix hang at ";-*-\n"
13099 (bug#11238).
13100
13101 2012-04-20 Teodor Zlatanov <tzz@lifelogs.com>
13102 2012-04-18 Paul Eggert <eggert@cs.ucla.edu>
13103
13104 configure: new option --enable-gcc-warnings (Bug#11207)
13105 * Makefile.in (C_WARNINGS_SWITCH): Remove.
13106 (WARN_CFLAGS, WERROR_CFLAGS): New macros.
13107 (ALL_CFLAGS): Use new macros rather than old.
13108 * process.c: Ignore -Wstrict-overflow to work around GCC bug 52904.
13109 * regex.c: Ignore -Wstrict-overflow. If !emacs, also ignore
13110 -Wunused-but-set-variable, -Wunused-function, -Wunused-macros,
13111 -Wunused-result, -Wunused-variable. This should go away once
13112 the Emacs and Gnulib regex code is merged.
13113 (xmalloc, xrealloc): Now static.
13114
13115 2012-04-17 Paul Eggert <eggert@cs.ucla.edu>
13116
13117 * dired.c (Fsystem_groups): Remove unused local.
13118
13119 2012-04-17 Glenn Morris <rgm@gnu.org>
13120
13121 * dired.c (Fsystem_users): Doc fix.
13122
13123 2012-04-17 Dmitry Antipov <dmantipov@yandex.ru>
13124
13125 * dired.c (Fsystem_users, Fsystem_groups): New functions. (Bug#7900)
13126 (syms_of_dired): Add them.
13127
13128 2012-04-16 Paul Eggert <eggert@cs.ucla.edu>
13129
13130 Fix minor alloc.c problems found by static checking.
13131 * alloc.c (_malloc_internal, _free_internal) [!DOUG_LEA_MALLOC]:
13132 New extern decls, to avoid calling undeclared functions.
13133 (dont_register_blocks): Define if ((!SYSTEM_MALLOC && !SYNC_INPUT)
13134 && GC_MALLOC_CHECK), not if ((GC_MARK_STACK || defined
13135 GC_MALLOC_CHECK) && GC_MALLOC_CHECK), to match when it's used.
13136 (NEED_MEM_INSERT): New macro.
13137 (mem_insert, mem_insert_fixup) [!NEED_MEM_INSERT]: Remove; unused.
13138 Remove one incorrect comment and fix another.
13139
13140 Fix minor ralloc.c problems found by static checking.
13141 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13142 * ralloc.c (ALIGNED, ROUND_TO_PAGE, HEAP_PTR_SIZE)
13143 (r_alloc_size_in_use, r_alloc_freeze, r_alloc_thaw): Remove; unused.
13144 (r_alloc_sbrk): Now static.
13145
13146 Improve ralloc.c interface checking.
13147 See http://lists.gnu.org/archive/html/emacs-devel/2011-12/msg00720.html
13148 * buffer.c (ralloc_reset_variable, r_alloc, r_re_alloc)
13149 (r_alloc_free) [REL_ALLOC]: Move decls from here ...
13150 * lisp.h (r_alloc, r_alloc_free, r_re_alloc, r_alloc_reset_variable)
13151 [REL_ALLOC]: ... to here, to check interface.
13152 * m/ia64.h (r_alloc, r_alloc_free) [REL_ALLOC && !_MALLOC_INTERNAL]:
13153 Remove decls. This fixes an "It stinks!".
13154
13155 * alloc.c (which_symbols): Fix alignment issue / type clash.
13156
13157 2012-04-15 Andreas Schwab <schwab@linux-m68k.org>
13158
13159 * lisp.h (struct Lisp_Symbol): Remove explicit padding.
13160 (struct Lisp_Misc_Any): Likewise.
13161 (struct Lisp_Free): Likewise.
13162 * alloc.c (union aligned_Lisp_Symbol): Define.
13163 (SYMBOL_BLOCK_SIZE, struct symbol_block): Use union
13164 aligned_Lisp_Symbol instead of struct Lisp_Symbol.
13165 (union aligned_Lisp_Misc): Define.
13166 (MARKER_BLOCK_SIZE, struct marker_block): Use union
13167 aligned_Lisp_Misc instead of union Lisp_Misc.
13168 (Fmake_symbol, allocate_misc, gc_sweep): Adjust.
13169
13170 2012-04-14 Paul Eggert <eggert@cs.ucla.edu>
13171
13172 Make GC_MAKE_GCPROS_NOOPS the default (Bug#9926).
13173 * lisp.h (GC_MARK_STACK): Default to GC_MAKE_GCPROS_NOOPS.
13174 * s/cygwin.h, s/darwin.h, s/freebsd.h, s/gnu.h, s/irix6-5.h, s/msdos.h:
13175 * s/netbsd.h, s/sol2-6.h:
13176 Remove definition of GC_MARK_STACK, since the default now works.
13177 * s/aix4-2.h, s/hpux10-20.h, s/unixware.h:
13178 Define GC_MARK_STACK to GC_USE_GCPROS_AS_BEFORE, since that's
13179 no longer the default.
13180 * s/gnu-linux.h (GC_MARK_STACK): Adjust to change in default.
13181
13182 2012-04-14 Atsuo Ohki <ohki@gssm.otsuka.tsukuba.ac.jp> (tiny change)
13183
13184 * lread.c (lisp_file_lexically_bound_p):
13185 Fix hang at ";-*-\n" (bug#11238).
13186
13187 2012-04-14 Eli Zaretskii <eliz@gnu.org>
13188
13189 * xdisp.c (find_last_unchanged_at_beg_row): Don't consider a row
13190 "unchanged" if its end.pos is beyond ZV. (Bug#11199)
13191
13192 2012-04-14 Jan Djärv <jan.h.d@swipnet.se>
13193
13194 * nsterm.m (constrainFrameRect): Always constrain when there is only
13195 one screen (Bug#10962).
13196
13197 2012-04-13 Ken Brown <kbrown@cornell.edu>
13198
13199 * s/cygwin.h (PTY_OPEN): Don't try to close a bogus file descriptor.
13200
13201 2012-04-13 Reuben Thomas <rrt@sc3d.org>
13202
13203 * indent.c (Fmove_to_column): Change interactive spec (Bug#739).
13204
13205 2012-04-11 Daniel Colascione <dancol@dancol.org>
13206
13207 * s/cygwin.h: The vfork the #define in cygwin.h was protecting
13208 against is gone. It's better to use vfork now so that when Cygwin
13209 gains a new, working vfork, we use it automatically (bug#10398).
13210
13211 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13212
13213 * window.c (save_window_save): Obey window-point-insertion-type.
13214
13215 2012-04-11 Glenn Morris <rgm@gnu.org>
13216
13217 * Makefile.in (GNUSTEP_CFLAGS): Rename from C_SWITCH_X_SYSTEM.
13218
13219 2012-04-11 Stefan Monnier <monnier@iro.umontreal.ca>
13220
13221 * alloc.c (lisp_align_malloc): Remove unneeded prototype.
13222
13223 2012-04-10 Jason S. Cornez <jcornez@ravenpack.com> (tiny change)
13224
13225 * keyboard.c: Override inhibit-quit after the third C-g (bug#6585).
13226 (force_quit_count): New var.
13227 (handle_interrupt): Use it.
13228
13229 2012-04-10 Juanma Barranquero <lekktu@gmail.com>
13230
13231 * w32.c (w32_delayed_load): Record the full path of the library
13232 being loaded (bug#10424).
13233
13234 2012-04-09 Glenn Morris <rgm@gnu.org>
13235
13236 * doc.c (Fsnarf_documentation): Check variables, functions are bound,
13237 not just in the obarray, before snarfing them. (Bug#11036)
13238
13239 * Makefile.in ($(leimdir)/leim-list.el):
13240 Pass EMACS rather than BUILT_EMACS.
13241
13242 2012-04-09 Teodor Zlatanov <tzz@lifelogs.com>
13243
13244 * process.c (make_process):
13245 * process.h: Add integer `gnutls_handshakes_tried' member to
13246 process struct.
13247
13248 * gnutls.h: Add `GNUTLS_EMACS_HANDSHAKES_LIMIT' upper limit.
13249 Add convenience `GNUTLS_LOG2i' macro.
13250
13251 * gnutls.c (gnutls_log_function2i): Convenience log function.
13252 (emacs_gnutls_read): Use new log functions,
13253 `gnutls_handshakes_tried' process member, and
13254 `GNUTLS_EMACS_HANDSHAKES_LIMIT' to limit the number of handshake
13255 attempts per process (connection).
13256
13257 2012-04-09 Chong Yidong <cyd@gnu.org>
13258
13259 * eval.c (Fuser_variable_p, user_variable_p_eh)
13260 (lisp_indirect_variable): Functions deleted.
13261 (Fdefvar): Caller changed.
13262
13263 * callint.c (Finteractive, Fcall_interactively):
13264 * minibuf.c (Fread_variable): Callers changed.
13265
13266 2012-04-09 Eli Zaretskii <eliz@gnu.org>
13267
13268 * xdisp.c (set_cursor_from_row): If the display string appears in
13269 the buffer at position that is closer to point than the position
13270 after the display string, display the cursor on the first glyph of
13271 the display string. Fixes cursor display when a 'display' text
13272 property immediately follows invisible text. (Bug#11094)
13273
13274 2012-04-09 Paul Eggert <eggert@cs.ucla.edu>
13275
13276 composite.c: use 'double' consistently
13277 * composite.c (get_composition_id): Use 'double' consistently
13278 instead of converting 'float' to 'double' and vice versa; this is
13279 easier to understand and avoids a GCC warning.
13280
13281 2012-04-09 Glenn Morris <rgm@gnu.org>
13282
13283 * Makefile.in: Generate leim-list with bootstrap-emacs, in
13284 preparation for dumping it with emacs. (Bug#4789)
13285 (leimdir): New variable.
13286 ($(leimdir)/leim-list.el): New rule.
13287 (emacs$(EXEEXT)): Depend on leim-list.el.
13288
13289 * buffer.c (Qucs_set_table_for_input): Remove. (Bug#9821)
13290 (Fget_buffer_create): Don't call Qucs_set_table_for_input.
13291 (init_buffer_once, syms_of_buffer): Remove Qucs_set_table_for_input.
13292
13293 2012-04-08 Andreas Schwab <schwab@linux-m68k.org>
13294
13295 * lisp.h (struct Lisp_Symbol): Add explicit padding to ensure
13296 proper alignment.
13297
13298 2012-04-07 Juanma Barranquero <lekktu@gmail.com>
13299
13300 * xml.c (init_libxml2_functions) [WINDOWSNT]:
13301 Remove unused local variable.
13302
13303 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13304
13305 Avoid unnecessary pointer scanning in garbage collection (Bug#10780).
13306 * alloc.c (POINTERS_MIGHT_HIDE_IN_OBJECTS): New macro.
13307 (mark_memory): Mark Lisp_Objects only if pointers might hide in
13308 objects, as mark_maybe_pointer will catch them otherwise.
13309 (GC_LISP_OBJECT_ALIGNMENT): Remove; no longer needed.
13310 * s/gnu-linux.h (GC_LISP_OBJECT_ALIGNMENT) [__mc68000__]: Likewise.
13311
13312 2012-04-07 Paul Eggert <eggert@cs.ucla.edu>
13313
13314 Fix typo that broke non-Windows builds.
13315 * xml.c (libxml2_loaded_p) [!!WINDOWSNT]: 'inine' -> 'inline'.
13316
13317 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13318
13319 Support building on MS-Windows with libxml2.
13320
13321 * makefile.w32-in (OBJ2): Add xml.$(O).
13322 (GLOBAL_SOURCES): Add xml.c.
13323 ($(BLD)/xml.$(O)): New dependency list.
13324
13325 * xml.c (DEF_XML2_FN, LOAD_XML2_FN) [WINDOWSNT]: New macros.
13326 (fn_htmlReadMemory, fn_xmlReadMemory, fn_xmlDocGetRootElement)
13327 (fn_xmlFreeDoc, fn_xmlCleanupParser, fn_xmlCheckVersion)
13328 [!WINDOWSNT]: New macros.
13329 (init_libxml2_functions, libxml2_loaded_p): New functions.
13330 (parse_region): Call fn_xmlCheckVersion instead of using the macro
13331 LIBXML_TEST_VERSION. Call libxml2 functions via the fn_* macros.
13332 (xml_cleanup_parser): New function, export for fn_xmlCleanupParser.
13333 Calls xmlCleanupParser only if libxml2 was loaded (or statically
13334 linked in).
13335 (Flibxml_parse_html_region, Flibxml_parse_xml_region):
13336 Call init_libxml2_functions before calling libxml2 functions.
13337 (syms_of_xml) <Qlibxml2_dll>: DEFSYM it.
13338
13339 * emacs.c: Don't include libxml/parser.h.
13340 (shut_down_emacs): Call xml_cleanup_parser, instead of calling
13341 xmlCleanupParser directly.
13342
13343 * lisp.h [HAVE_LIBXML2]: Add prototype for xml_cleanup_parser.
13344
13345 2012-04-07 Eli Zaretskii <eliz@gnu.org>
13346
13347 * indent.c (Fvertical_motion): If there is a display string at
13348 point, use it.vpos to compute how many lines to backtrack after
13349 move_it_to point. (Bug#11133)
13350
13351 2012-04-06 Eli Zaretskii <eliz@gnu.org>
13352
13353 * buffer.h (FETCH_CHAR, FETCH_MULTIBYTE_CHAR):
13354 * character.h (STRING_CHAR, STRING_CHAR_AND_LENGTH): Add comments
13355 about subtle differences between FETCH_CHAR* and STRING_CHAR*
13356 macros related to unification of CJK characters. For the details,
13357 see the discussion following the message here:
13358 http://debbugs.gnu.org/cgi/bugreport.cgi?bug=11073#14.
13359
13360 2012-04-04 Chong Yidong <cyd@gnu.org>
13361
13362 * keyboard.c (Vdelayed_warnings_list): Doc fix.
13363
13364 2012-04-01 Eli Zaretskii <eliz@gnu.org>
13365
13366 * w32menu.c (simple_dialog_show, add_menu_item): Use SAFE_ALLOCA
13367 instead of alloca. (Bug#11138)
13368
13369 2012-04-01 Andreas Schwab <schwab@linux-m68k.org>
13370
13371 * w32menu.c (is_simple_dialog): Properly check lisp types.
13372 (Bug#11141)
13373
13374 2012-03-31 Eli Zaretskii <eliz@gnu.org>
13375
13376 * xdisp.c (move_it_by_lines): When DVPOS is positive, and the
13377 position we get to after a call to move_it_to fails the
13378 IS_POS_VALID_AFTER_MOVE_P test, move to the next buffer position
13379 only if we wind up in a string from display property. (Bug#11063)
13380
13381 * window.c (Fdelete_other_windows_internal): Invalidate the row
13382 and column information about mouse highlight, so that redisplay
13383 restores it after reallocating the glyph matrices. (Bug#7464)
13384
13385 * xdisp.c (set_cursor_from_row): If `cursor' property on a display
13386 string comes from a `display' text property, use the buffer
13387 position of that property as if we actually saw that position in
13388 the row's glyphs.
13389 (move_it_by_lines): Remove the assertion that
13390 "it->current_x == 0 && it->hpos == 0" which can be legitimately
13391 violated when there's a before-string at the beginning of a line.
13392 (Bug#11063)
13393
13394 2012-03-30 Eli Zaretskii <eliz@gnu.org>
13395
13396 * xdisp.c (append_space_for_newline): If the default face was
13397 remapped, use the remapped face for the appended newline.
13398 (extend_face_to_end_of_line): Use the remapped default face for
13399 extending the face to the end of the line.
13400 (display_line): Call extend_face_to_end_of_line when the default
13401 face was remapped. (Bug#11068)
13402
13403 2012-03-29 Eli Zaretskii <eliz@gnu.org>
13404
13405 * s/ms-w32.h: Discourage from defining HAVE_GETCWD.
13406
13407 2012-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
13408
13409 * keyboard.c (safe_run_hooks_error): Don't unquote strings.
13410
13411 2012-03-27 Glenn Morris <rgm@gnu.org>
13412
13413 * search.c (Fword_search_backward_lax, Fword_search_forward_lax):
13414 Doc fixes.
13415
13416 2012-03-26 Kenichi Handa <handa@m17n.org>
13417
13418 * dispextern.h (struct glyph): Fix previous change. Change the
13419 bit length of glyphless.ch to 25 (Bug#11082).
13420
13421 2012-03-26 Chong Yidong <cyd@gnu.org>
13422
13423 * keyboard.c (Vselection_inhibit_update_commands): New variable.
13424 (command_loop_1): Use it; inhibit selection update for
13425 handle-select-window too (Bug#8996).
13426
13427 2012-03-25 Fabrice Popineau <fabrice.popineau@supelec.fr>
13428
13429 * w32heap.c (_heap_init, _heap_term): Remove dead MSVC-specific code.
13430
13431 2012-03-25 Kenichi Handa <handa@m17n.org>
13432
13433 * dispextern.h (struct glyph): Change the bit length of
13434 glyphless.ch to 22 to make the member glyphless fit in 32 bits.
13435
13436 2012-03-24 Eli Zaretskii <eliz@gnu.org>
13437
13438 * s/ms-w32.h (tzname): Include time.h before redirecting to
13439 _tzname. Fixes the MSVC build. (Bug#9960)
13440
13441 2012-03-24 Andreas Schwab <schwab@linux-m68k.org>
13442
13443 * xdisp.c (produce_glyphless_glyph): Limit length of acronym to 6
13444 characters.
13445
13446 * xterm.c (XTread_socket): Only modify handling_signal if
13447 !SYNC_INPUT. (Bug#11080)
13448
13449 2012-03-23 Eli Zaretskii <eliz@gnu.org>
13450
13451 * bidi.c (bidi_fetch_char): Use STRING_CHAR_AND_LENGTH instead of
13452 FETCH_MULTIBYTE_CHAR followed by CHAR_BYTES. Prevents crashes
13453 when fetching a multibyte character consumes more bytes than
13454 CHAR_BYTES returns, due to unification of CJK characters in
13455 string_char. (Bug#11073)
13456
13457 2012-03-23 Troels Nielsen <bn.troels@gmail.com> (tiny change)
13458
13459 * process.c (wait_reading_process_output): Handle pty disconnect
13460 by refraining from sending oneself a SIGCHLD (bug#10933).
13461
13462 2012-03-22 Chong Yidong <cyd@gnu.org>
13463
13464 * dispextern.h (struct it): New member string_from_prefix_prop_p.
13465
13466 * xdisp.c (push_prefix_prop): Rename from push_display_prop.
13467 Mark string as coming from a prefix property.
13468 (handle_face_prop): Use default face for prefix strings (Bug#4281).
13469 (pop_it, reseat_1): Save and restore string_from_prefix_prop_p.
13470
13471 2012-03-21 Chong Yidong <cyd@gnu.org>
13472
13473 * xfaces.c (Vface_remapping_alist): Doc fix.
13474
13475 2012-03-20 Eli Zaretskii <eliz@gnu.org>
13476
13477 * w32proc.c (Fw32_set_console_codepage)
13478 (Fw32_set_console_output_codepage, Fw32_get_codepage_charset):
13479 Doc fixes.
13480
13481 2012-03-20 Chong Yidong <cyd@gnu.org>
13482
13483 * dispnew.c (Fredisplay, Vredisplay_preemption_period): Update doc
13484 to reflect default non-nil value of redisplay-dont-pause.
13485
13486 2012-03-19 Kenichi Handa <handa@m17n.org>
13487
13488 * ftfont.c (ftfont_drive_otf): Mask bits of character code to make
13489 it fit in a valid range (Bug#11003).
13490
13491 2012-03-18 Eli Zaretskii <eliz@gnu.org>
13492
13493 * xdisp.c (cursor_row_p): Even if the glyph row ends in a string
13494 that is not from display property, accept the row as a "cursor
13495 row" if one of the string's character has a non-nil `cursor'
13496 property. Fixes cursor positioning when there are newlines in
13497 overlay strings, e.g. in icomplete.el. (Bug#11035)
13498
13499 2012-03-12 Paul Eggert <eggert@cs.ucla.edu>
13500
13501 * buffer.c (compare_overlays): Don't assume args differ (Bug#6830).
13502
13503 2012-03-12 Chong Yidong <cyd@gnu.org>
13504
13505 * eval.c (inhibit_lisp_code): Rename from
13506 inhibit_window_configuration_change_hook; move from window.c.
13507
13508 * xfns.c (unwind_create_frame_1, Fx_create_frame):
13509 * window.c (run_window_configuration_change_hook)
13510 (syms_of_window): Callers changed.
13511
13512 2012-03-11 Chong Yidong <cyd@gnu.org>
13513
13514 * keymap.c (Fkey_description): Doc fix (Bug#9700).
13515
13516 * editfns.c (Fconstrain_to_field): Doc fix (Bug#9452).
13517
13518 2012-03-10 Chong Yidong <cyd@gnu.org>
13519
13520 * frame.c (other_visible_frames): Don't assume the selected frame
13521 is visible (Bug#10955).
13522
13523 2012-03-09 Stefan Monnier <monnier@iro.umontreal.ca>
13524
13525 * buffer.c (compare_overlays): Avoid qsort's instability (bug#6830).
13526
13527 2012-03-08 Jan Djärv <jan.h.d@swipnet.se>
13528
13529 * gtkutil.c (x_wm_set_size_hint): Use one row in call to
13530 FRAME_TEXT_LINES_TO_PIXEL_HEIGHT so base_height is greater than
13531 zero (Bug#10954).
13532
13533 2012-03-03 Glenn Morris <rgm@gnu.org>
13534
13535 * alloc.c (Fgarbage_collect, misc-objects-consed): Doc fixes.
13536
13537 2012-03-02 Eli Zaretskii <eliz@gnu.org>
13538
13539 * xdisp.c (try_window_reusing_current_matrix): Don't move cursor
13540 position past the first glyph_row that ends at ZV. (Bug#10902)
13541 (redisplay_window, next_element_from_string): Fix typos in
13542 comments.
13543 (redisplay_window): Pass to move_it_vertically the margin in
13544 pixels, not in screen lines.
13545
13546 2012-03-02 Glenn Morris <rgm@gnu.org>
13547
13548 * buffer.c (buffer-list-update-hook): Doc fix.
13549
13550 2012-02-29 Eli Zaretskii <eliz@gnu.org>
13551
13552 * xdisp.c (get_overlay_strings_1): Under bidi redisplay, call
13553 push_it before setting up the iterator for the first overlay
13554 string, even if we have an empty string loaded.
13555 (next_overlay_string): If there's an empty string on the iterator
13556 stack, pop the stack. (Bug#10903)
13557
13558 2012-02-25 Paul Eggert <eggert@cs.ucla.edu>
13559
13560 Generalize fix for crash due to non-contiguous EMACS_INT (Bug#10780).
13561 Suggested by Stefan Monnier in
13562 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00692.html>.
13563 * alloc.c (widen_to_Lisp_Object): New static function.
13564 (mark_memory): Also mark Lisp_Objects by fetching pointer words
13565 and widening them to Lisp_Objects. This would work even if
13566 USE_LSB_TAG is defined and wide integers are used, which might
13567 happen in a future version of Emacs.
13568
13569 2012-02-25 Chong Yidong <cyd@gnu.org>
13570
13571 * fileio.c (Ffile_selinux_context, Fset_file_selinux_context):
13572 Doc fix.
13573
13574 * xselect.c (Fx_selection_exists_p): Doc fix.
13575 (x_clipboard_manager_save_all): Print an informative message
13576 before saving to clipboard manager.
13577
13578 2012-02-24 Chong Yidong <cyd@gnu.org>
13579
13580 * keyboard.c (process_special_events): Handle all X selection
13581 requests in kbd_buffer, not just the next one (Bug#8869).
13582
13583 2012-02-23 Chong Yidong <cyd@gnu.org>
13584
13585 * xfns.c (Fx_create_frame): Avoid window-configuration-change-hook
13586 call when setting menu-bar-lines and tool-bar-lines parameters.
13587 (unwind_create_frame_1): New helper function.
13588
13589 * window.c (inhibit_window_configuration_change_hook): New var.
13590 (run_window_configuration_change_hook): Obey it.
13591 (syms_of_window): Initialize it.
13592
13593 2012-02-22 Chong Yidong <cyd@gnu.org>
13594
13595 * xterm.c (x_draw_image_relief): Add missing type check for
13596 Vtool_bar_button_margin (Bug#10743).
13597
13598 2012-02-21 Chong Yidong <cyd@gnu.org>
13599
13600 * fileio.c (Vfile_name_handler_alist): Doc fix.
13601
13602 * buffer.c (Fget_file_buffer): Protect against invalid file
13603 handler return value.
13604
13605 2012-02-20 Paul Eggert <eggert@cs.ucla.edu>
13606
13607 * .gdbinit (xreload): Don't assume EMACS_INT fits in 'long'
13608 when computing $valmask.
13609
13610 Fix crash due to non-contiguous EMACS_INT (Bug#10780).
13611 * lisp.h (VALBITS): Move definition up, so that USE_LSB_TAG can use it.
13612 (USE_LSB_TAG): Do not define if UINTPTR_MAX >> VALBITS == 0.
13613 It's useless in that case, and it can cause problems on hosts
13614 that allocate halves of EMACS_INT values separately.
13615 Reported by Dan Horák. Diagnosed by Andreas Schwab in
13616 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=10780#30>.
13617 * mem-limits.h (EXCEEDS_LISP_PTR): Define to 0 on hosts where
13618 UINTPTR_MAX >> VALBITS == 0. This is required by the above change;
13619 it avoids undefined behavior on hosts where shifting right by more
13620 than the word width has undefined behavior.
13621
13622 2012-02-19 Chong Yidong <cyd@gnu.org>
13623
13624 * fileio.c (Ffile_name_directory, Ffile_name_nondirectory)
13625 (Funhandled_file_name_directory, Ffile_name_as_directory)
13626 (Fdirectory_file_name, Fexpand_file_name)
13627 (Fsubstitute_in_file_name): Protect against invalid file handler
13628 return values (Bug#10845).
13629
13630 2012-02-18 Eli Zaretskii <eliz@gnu.org>
13631
13632 * .gdbinit (pitx): Fix incorrect references to fields of the
13633 iterator stack.
13634
13635 2012-02-17 Chong Yidong <cyd@gnu.org>
13636
13637 * syntax.c (Fscan_lists): Doc fix (Bug#10833).
13638
13639 2012-02-15 Paul Eggert <eggert@cs.ucla.edu>
13640
13641 * image.c (MAX_IMAGE_SIZE): Increase from 6.0 to 10.0; see
13642 <http://lists.gnu.org/archive/html/emacs-devel/2012-02/msg00540.html>.
13643
13644 2012-02-15 Chong Yidong <cyd@gnu.org>
13645
13646 * eval.c (Fdefvar, Fdefconst): Doc fix; note that the variable is
13647 marked as special. Also, starting docstrings with * is obsolete.
13648
13649 2012-02-13 Andreas Schwab <schwab@linux-m68k.org>
13650
13651 * gnutls.c (emacs_gnutls_write): Fix last change.
13652
13653 2012-02-13 Lars Ingebrigtsen <larsi@gnus.org>
13654
13655 * gnutls.c (emacs_gnutls_write): Set errno appropriately for
13656 send_process.
13657
13658 2012-02-13 Stefan Monnier <monnier@iro.umontreal.ca>
13659
13660 * keymap.c (Fsingle_key_description): Handle char ranges.
13661
13662 2012-02-12 Chong Yidong <cyd@gnu.org>
13663
13664 * xdisp.c (handle_stop): Avoid assigning -1 to it->face_id here,
13665 as that creates a dangerous corner case.
13666
13667 * window.c (Fdelete_window_internal): Invalidate the mouse
13668 highlight (Bug#9904).
13669
13670 2012-02-12 Glenn Morris <rgm@gnu.org>
13671
13672 * xselect.c (Fx_own_selection_internal)
13673 (Fx_get_selection_internal, Fx_disown_selection_internal)
13674 (Fx_selection_owner_p, Fx_selection_exists_p): Doc fixes.
13675 * nsselect.m (Fx_own_selection_internal)
13676 (Fx_disown_selection_internal, Fx_selection_exists_p)
13677 (Fx_selection_owner_p, Fx_get_selection_internal):
13678 Sync docs and argument specs with the xselect.c versions.
13679
13680 2012-02-11 Lars Ingebrigtsen <larsi@gnus.org>
13681
13682 * gnutls.c (emacs_gnutls_write): Don't infloop if sendto fails.
13683
13684 2012-02-11 Eli Zaretskii <eliz@gnu.org>
13685
13686 * w32select.c (Fx_selection_exists_p): Sync doc string and
13687 argument list with xselect.c. (Bug#10783)
13688
13689 * w16select.c (Fx_selection_exists_p): Sync doc string and
13690 argument list with xselect.c. (Bug#10783)
13691
13692 2012-02-10 Glenn Morris <rgm@gnu.org>
13693
13694 * fns.c (Fsecure_hash): Doc fix.
13695
13696 2012-02-09 Kenichi Handa <handa@m17n.org>
13697
13698 * coding.c (produce_chars): Fix updating of src_end (Bug#10701).
13699
13700 2012-02-07 Chong Yidong <cyd@gnu.org>
13701
13702 * buffer.c (Fbuffer_local_variables)
13703 (buffer_lisp_local_variables): Handle unbound vars correctly;
13704 don't let Qunbound leak into Lisp.
13705
13706 2012-02-07 Glenn Morris <rgm@gnu.org>
13707
13708 * image.c (Fimagemagick_types): Doc fix.
13709
13710 * image.c (imagemagick-render-type): Change it from a lisp object
13711 to an integer. Move the doc here from the lisp manual.
13712 Treat all values not equal to 0 the same.
13713
13714 2012-02-06 Chong Yidong <cyd@gnu.org>
13715
13716 * doc.c (store_function_docstring): Avoid applying docstring of
13717 alias to base function (Bug#2603).
13718
13719 2012-02-04 Andreas Schwab <schwab@linux-m68k.org>
13720
13721 * .gdbinit (pp1, pv1): Remove redundant defines.
13722 (pr): Use pp.
13723
13724 2012-02-04 Chong Yidong <cyd@gnu.org>
13725
13726 * nsterm.m: Declare a global (Bug#10694).
13727
13728 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13729
13730 * w32.c (get_emacs_configuration_options):
13731 Include --enable-checking, if specified, in the return value.
13732
13733 2012-02-04 Martin Rudalics <rudalics@gmx.at>
13734
13735 * dispnew.c (change_frame_size_1): Calculate new_frame_total_cols
13736 after rounding frame sizes. (Bug#9723)
13737
13738 2012-02-04 Eli Zaretskii <eliz@gnu.org>
13739
13740 * keyboard.c (adjust_point_for_property): Don't position point
13741 before BEGV. (Bug#10696)
13742
13743 2012-02-03 Paul Eggert <eggert@cs.ucla.edu>
13744
13745 Handle overflow when computing char display width (Bug#9496).
13746 * character.c (char_width): Return EMACS_INT, not int.
13747 (char_width, c_string_width): Check for overflow when
13748 computing the width; this is possible now that individual
13749 characters can have unbounded width. Problem introduced
13750 by merge from Emacs 23 on 2012-01-19.
13751
13752 2012-02-02 Michael Albinus <michael.albinus@gmx.de>
13753
13754 * dbusbind.c (Fdbus_register_method): Mention the return value
13755 :ignore in the docstring.
13756
13757 2012-02-02 Glenn Morris <rgm@gnu.org>
13758
13759 * callproc.c (Fcall_process, Fcall_process_region): Doc fix.
13760
13761 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13762 Unconditionally set to t. (Bug#10673)
13763 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13764 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13765 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Doc fix.
13766
13767 2012-02-02 Kenichi Handa <handa@m17n.org>
13768
13769 (x_produce_glyphs): Cancel previous change. If cmp->glyph_len is
13770 0, do not call append_composite_glyph.
13771
13772 2012-02-02 Kenichi Handa <handa@m17n.org>
13773
13774 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING): Initialize first_s to
13775 NULL (Bug#6988).
13776 (x_produce_glyphs): If the component of a composition is a null
13777 string, set it->pixel_width to 1 to avoid zero-width glyph.
13778
13779 2012-02-01 Eli Zaretskii <eliz@gnu.org>
13780
13781 * ralloc.c (resize_bloc, r_alloc_sbrk): Don't call memmove if its
13782 first 2 arguments are identical. This makes inserting large
13783 output from a subprocess an order of magnitude faster on
13784 MS-Windows, where all sbrk'ed memory is always contiguous.
13785
13786 2012-01-31 Glenn Morris <rgm@gnu.org>
13787
13788 * nsterm.m (syms_of_nsterm) <x-toolkit-scroll-bars>:
13789 * w32term.c (syms_of_w32term) <x-toolkit-scroll-bars>:
13790 * xterm.c (syms_of_xterm) <x-toolkit-scroll-bars>: Sync docs.
13791
13792 2012-01-29 Glenn Morris <rgm@gnu.org>
13793
13794 * gnutls.c (syms_of_gnutls): More doc (from etc/NEWS).
13795
13796 2012-01-28 Samuel Thibault <sthibault@debian.org> (tiny change)
13797
13798 * s/gnu.h: Define POSIX_SIGNALS (Bug#10552).
13799
13800 2012-01-28 Chong Yidong <cyd@gnu.org>
13801
13802 * minibuf.c (syms_of_minibuf): Doc fix (Bug#10550).
13803
13804 2012-01-26 Chong Yidong <cyd@gnu.org>
13805
13806 * keyboard.c (Vecho_keystrokes): Document zero value (Bug#10503).
13807
13808 * search.c (Fsearch_forward, Fsearch_backward): Document negative
13809 repeat counts (Bug#10507).
13810
13811 2012-01-26 Glenn Morris <rgm@gnu.org>
13812
13813 * lread.c (syms_of_lread): Doc fix.
13814
13815 2012-01-25 HIROSHI OOTA <nil@mad.dog.cx> (tiny change)
13816
13817 * coding.c (encode_designation_at_bol): Change return value to
13818 EMACS_INT.
13819
13820 2012-01-25 Chong Yidong <cyd@gnu.org>
13821
13822 * eval.c (Fuser_variable_p): Doc fix; mention custom-variable-p.
13823
13824 2012-01-21 Chong Yidong <cyd@gnu.org>
13825
13826 * floatfns.c (Fcopysign): Make the second argument non-optional,
13827 since nil is not allowed anyway.
13828
13829 2012-01-21 Andreas Schwab <schwab@linux-m68k.org>
13830
13831 * process.c (read_process_output): Use p instead of XPROCESS (proc).
13832 (send_process): Likewise.
13833
13834 2012-01-19 Martin Rudalics <rudalics@gmx.at>
13835
13836 * window.c (save_window_save, Fcurrent_window_configuration)
13837 (Vwindow_persistent_parameters): Do not use Qstate.
13838 Rewrite doc-strings.
13839
13840 2012-01-19 Kenichi Handa <handa@m17n.org>
13841
13842 * character.c (char_width): New function.
13843 (Fchar_width, c_string_width, lisp_string_width):
13844 Use char_width (Bug#9496).
13845
13846 2012-01-16 Martin Rudalics <rudalics@gmx.at>
13847
13848 * window.c (Vwindow_persistent_parameters): New variable.
13849 (Fset_window_configuration, save_window_save): Handle persistent
13850 window parameters.
13851
13852 2012-01-14 Eli Zaretskii <eliz@gnu.org>
13853
13854 * w32fns.c (signal_user_input): Don't do a QUIT, to avoid
13855 thrashing the stack of the thread. (Bug#9087)
13856
13857 2012-01-12 Paul Eggert <eggert@cs.ucla.edu>
13858
13859 * xdisp.c (rows_from_pos_range): Add parens as per gcc -Wparentheses.
13860
13861 2012-01-11 Eli Zaretskii <eliz@gnu.org>
13862
13863 * xdisp.c (rows_from_pos_range): Handle the case where the
13864 highlight ends on a newline. (Bug#10464)
13865 (mouse_face_from_buffer_pos): Fix off-by-one error in calculating
13866 he end column for display of highlight that ends on a newline
13867 before a R2L line.
13868
13869 2012-01-11 Glenn Morris <rgm@gnu.org>
13870
13871 * lread.c (init_lread): If no-site-lisp, remove site-lisp dirs
13872 from load-path also when installation-directory is nil. (Bug#10208)
13873
13874 2012-01-10 Glenn Morris <rgm@gnu.org>
13875
13876 * emacs.c (syms_of_emacs) <installation-directory>: Doc fix.
13877
13878 * epaths.in (PATH_LOADSEARCH, PATH_EXEC, PATH_DATA, PATH_DOC):
13879 Update template values to be closer to their typical values these days.
13880
13881 2012-01-09 Eli Zaretskii <eliz@gnu.org>
13882
13883 * xdisp.c (rows_from_pos_range): Accept additional argument
13884 DISP_STRING, and accept any glyph in a row whose object is that
13885 string as eligible for mouse highlight. Fixes mouse highlight of
13886 display strings from overlays. (Bug#10464)
13887
13888 2012-01-07 Paul Eggert <eggert@cs.ucla.edu>
13889
13890 emacs: fix an auto-save permissions race condition (Bug#10400)
13891 * fileio.c (auto_saving_dir_umask): New static var.
13892 (Fmake_directory_internal): Use it.
13893 (do_auto_save_make_dir): Set it, instead of invoking chmod after
13894 creating the directory. The old code temporarily assigns
13895 too-generous permissions to the directory.
13896 (do_auto_save_eh): Clear it.
13897 (Fdo_auto_save): Catch all errors, not just file errors, so
13898 that the var is always cleared.
13899
13900 2012-01-07 Eli Zaretskii <eliz@gnu.org>
13901
13902 * search.c (scan_buffer): Pass character positions to
13903 know_region_cache, not byte positions. (Bug#6540)
13904
13905 2012-01-07 LynX <_LynX@bk.ru> (tiny change)
13906
13907 * w32.c (sys_rename): Report EXDEV when rename of a directory
13908 fails because the target is on another logical disk. (Bug#10284)
13909
13910 2012-01-07 David Benjamin <davidben@mit.edu> (tiny change)
13911
13912 * xterm.c (x_embed_request_focus): New function.
13913
13914 * xterm.h: Add prototype.
13915
13916 * xfns.c (Fx_focus_frame): Use it for embedded frames (Bug#9977).
13917
13918 2012-01-05 Glenn Morris <rgm@gnu.org>
13919
13920 * emacs.c (emacs_copyright): Update short copyright year to 2012.
13921
13922 2012-01-01 Eli Zaretskii <eliz@gnu.org>
13923
13924 * gnutls.c (init_gnutls_functions): Load gnutls_check_version.
13925 Load gnutls_transport_set_lowat only if GnuTLS version is below
13926 2.11.1.
13927 (emacs_gnutls_handshake): Call gnutls_transport_set_lowat only for
13928 GnuTLS versions below 2.11.1.
13929
13930 2011-12-31 Antoine Levitt <antoine.levitt@gmail.com>
13931
13932 * xdisp.c (syms_of_xdisp) <window-scroll-functions>: Add warning
13933 to the doc string advising against its use for altering the way
13934 windows are scrolled.
13935
13936 2011-12-28 Kenichi Handa <handa@m17n.org>
13937
13938 * coding.c (Fdefine_coding_system_internal): Make an utf-8 base
13939 coding-system ASCII compatible only when it does not produce BOM
13940 on encoding (Bug#10383).
13941
13942 2011-12-26 Jan Djärv <jan.h.d@swipnet.se>
13943
13944 * xmenu.c (x_menu_wait_for_event): Use xg_select for Gtk3 so menus
13945 can scroll.
13946 (create_and_show_popup_menu): Always use menu_position_func for
13947 Gtk3 (Bug#10361).
13948
13949 2011-12-24 Andreas Schwab <schwab@linux-m68k.org>
13950
13951 * callint.c (Fcall_interactively): Don't truncate prompt string.
13952
13953 2011-12-23 Eli Zaretskii <eliz@gnu.org>
13954
13955 * xdisp.c (handle_invisible_prop): Handle correctly an invisible
13956 property that ends at ZV, so that the bidi iteration could be
13957 resumed from there (after widening). (Bug#10360)
13958
13959 2011-12-22 Jan Djärv <jan.h.d@swipnet.se>
13960
13961 * nsfont.m (ns_spec_to_descriptor): Do not autorelease fdesc.
13962
13963 2011-12-21 Jan Djärv <jan.h.d@swipnet.se>
13964
13965 * nsterm.m (x_free_frame_resources):
13966 Release f->output_data.ns->miniimage.
13967 (ns_index_color): Fix indentation. Do not retain
13968 color_table->colors[i].
13969
13970 * nsmenu.m (ns_update_menubar): Call free_menubar_widget_value_tree
13971 before returning.
13972
13973 * nsfns.m (x_set_background_color): Assign return value from
13974 ns_index_color to face-background instead of NSColor*.
13975 (ns_implicitly_set_icon_type): Fix indentation.
13976 Change assignment in for loop to comparison.
13977
13978 * emacs.c (ns_pool): New variable.
13979 (main): Assign ns_pool.
13980 (Fkill_emacs): Call ns_release_autorelease_pool.
13981
13982 * nsfont.m (ns_spec_to_descriptor): Fix indentation,
13983 autorelease fdesc, release fdAttrs and tdict.
13984 (ns_get_covering_families): Release charset.
13985 (ns_findfonts): Release NSFontDescriptor created with new.
13986 (ns_uni_to_glyphs): Fix indentation.
13987 (setString): Release attrStr before assigning new value.
13988
13989 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
13990
13991 * nsmenu.m (NSMenuDidBeginTrackingNotification): Declare if OSX < 10.5
13992 and NS_IMPL_COCOA.
13993 (trackingNotification): Surround with ifdef NS_IMPL_COCOA.
13994 (syms_of_nsmenu): Set trackingMenu to 1 if not NS_IMPL_COCOA.
13995
13996 2011-12-18 David Reitter <reitter@cmu.edu>
13997
13998 * nsterm.m (ns_term_init): Subscribe for notifications
13999 NSMenuDidBeginTrackingNotification and NSMenuDidEndTrackingNotification
14000 to method trackingNotification in EmacsMenu.
14001
14002 * nsmenu.m (trackingMenu): New variable.
14003 (trackingNotification): New method (from Aquamacs).
14004 (menuNeedsUpdate): Expand comment and return if trackingMenu is 0,
14005 from Aquamacs (Bug#7030).
14006
14007 2011-12-18 Jan Djärv <jan.h.d@swipnet.se>
14008
14009 * nsselect.m (CUT_BUFFER_SUPPORT): Remove define.
14010 (symbol_to_nsstring): Fix indentation.
14011 (ns_symbol_to_pb): New function.
14012 (Fns_get_selection_internal): Rename from Fns_get_cut_buffer_internal.
14013 (Fns_rotate_cut_buffers_internal): Remove.
14014 (Fns_store_selection_internal): Rename from
14015 Fns_store_cut_buffer_internal.
14016 (ns_get_foreign_selection, Fx_own_selection_internal)
14017 (Fx_disown_selection_internal, Fx_selection_exists_p)
14018 (Fns_get_selection_internal, Fns_store_selection_internal):
14019 Use ns_symbol_to_pb and check if return value is nil.
14020 (syms_of_nsselect): Remove ifdef CUT_BUFFER_SUPPORT. Remove defsubr
14021 Sns_rotate_cut_buffers_internal. Sns_get_cut_buffer_internal
14022 renamed to Sns_get_selection_internal, Sns_store_cut_buffer_internal
14023 renamed to Sns_store_selection_internal.
14024 (ns_handle_selection_request): Move code to Fx_own_selection_internal
14025 and remove this function.
14026 (ns_handle_selection_clear): Remove, never used.
14027 (Fx_own_selection_internal): Move code from ns_handle_selection_request
14028 here.
14029
14030 2011-12-17 Ken Brown <kbrown@cornell.edu>
14031
14032 * fileio.c (check_writable) [CYGWIN]: Return non-zero if UID or
14033 GID is unknown (Bug#10257).
14034
14035 2011-12-17 Paul Eggert <eggert@cs.ucla.edu>
14036
14037 * s/gnu-linux.h: Fix mark_memory typo (Bug#10286).
14038 (GC_MARK_SECONDARY_STACK): Omit removed 3rd arg to mark_memory,
14039 which caused a build failure on GNU/Linux IA-64. This problem was
14040 introduced by my 2011-10-07 patch.
14041
14042 2011-12-15 Juri Linkov <juri@jurta.org>
14043
14044 * image.c (imagemagick_error): New function. (Bug#10112)
14045 (imagemagick_load_image): Comment out `MagickSetResolution' call.
14046 Use `imagemagick_error' where ImageMagick functions return
14047 `MagickFalse'.
14048 (Fimagemagick_types): Add `Fnreverse' to return the list in the
14049 proper order.
14050
14051 2011-12-15 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14052
14053 * xftfont.c (xftfont_draw): Use the font metrics of s->font to
14054 fill background (Bug#8992).
14055
14056 2011-12-13 Martin Rudalics <rudalics@gmx.at>
14057
14058 * window.c (Vwindow_combination_resize)
14059 (Vwindow_combination_limit): Use t instead of non-nil in
14060 doc-strings.
14061 (Vrecenter_redisplay): Add first sentence of doc-string on
14062 separate line.
14063 (Frecenter): Fix doc-string typo.
14064
14065 2011-12-11 Kenichi Handa <handa@m17n.org>
14066
14067 * coding.c (Funencodable_char_position): Pay attention to the
14068 buffer text relocation (Bug#9389).
14069
14070 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14071
14072 * xterm.c (x_term_init): Move call to gdk_window_add_filter before
14073 gtk_init (Bug#10100).
14074
14075 2011-12-10 Eli Zaretskii <eliz@gnu.org>
14076
14077 * xdisp.c (RECORD_MAX_MIN_POS): Use IT->cmp_it.charpos only if
14078 IT->string is nil. (Bug#10263)
14079
14080 2011-12-10 Jan Djärv <jan.h.d@swipnet.se>
14081
14082 * nsterm.h (x_free_frame_resources): Declare.
14083
14084 * nsfns.m (ns_get_defaults_value): New function (Bug#10103).
14085 (Fns_get_resource, x_get_string_resource): Call ns_get_defaults_value.
14086
14087 * nsterm.h (ns_get_defaults_value): Declare.
14088
14089 * nsterm.m (ns_default): Call ns_get_defaults_value.
14090
14091 2011-12-09 Eli Zaretskii <eliz@gnu.org>
14092
14093 * xdisp.c (try_scrolling): Don't set scroll_down_p if dy is zero.
14094 (Bug#10170)
14095
14096 2011-12-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14097
14098 * unexelf.c (unexec) [NS_IMPL_GNUSTEP]: Take account of the case
14099 that where the value of an _OBJC_* symbol points to is in the .bss
14100 section (Bug#10240).
14101
14102 2011-12-08 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14103
14104 * coding.c (encode_coding_ccl): Check (charbuf < charbuf_end)
14105 after the loop to call ccl_driver at least once (Bug#8619).
14106
14107 2011-12-08 Kenichi Handa <handa@m17n.org>
14108
14109 * ftfont.c (get_adstyle_property): Fix previous change
14110 (Bug#10233).
14111
14112 2011-12-07 Juanma Barranquero <lekktu@gmail.com>
14113
14114 * w32.c (init_environment): If no_site_lisp, remove site-lisp
14115 dirs from the default value of EMACSLOADPATH (bug#10208).
14116
14117 2011-12-07 Glenn Morris <rgm@gnu.org>
14118
14119 * lread.c (init_lread): If no_site_lisp, exclude site-lisp/ in
14120 installation and source directories as well. (Bug#10208)
14121
14122 2011-12-06 Chong Yidong <cyd@gnu.org>
14123
14124 * minibuf.c (Fread_from_minibuffer): Doc fix (Bug#10228).
14125
14126 2011-12-06 Glenn Morris <rgm@gnu.org>
14127
14128 * process.c (start_process_unwind): Treat any pid <= 0, except -2,
14129 as an error, not just -1. (Bug#10217)
14130
14131 2011-12-05 Chong Yidong <cyd@gnu.org>
14132
14133 * keyboard.c (process_special_events): New function.
14134 (swallow_events, Finput_pending_p): Use it (Bug#10195).
14135
14136 2011-12-05 Paul Eggert <eggert@cs.ucla.edu>
14137
14138 * coding.c (encode_designation_at_bol): Don't use uninitialized
14139 local variable (Bug#9318).
14140
14141 2011-12-05 Kenichi Handa <handa@m17n.org>
14142
14143 * ftfont.c (get_adstyle_property): If the font is not BDF nor PCF,
14144 return Qnil (Bug#8046, Bug#10193).
14145
14146 2011-12-05 Kenichi Handa <handa@m17n.org>
14147
14148 * coding.c (encode_designation_at_bol): New args charbuf_end and
14149 dst. Return the number of produced bytes. Callers changed.
14150 (coding_set_source): Return how many bytes coding->source was
14151 relocated.
14152 (coding_set_destination): Return how many bytes
14153 coding->destination was relocated.
14154 (CODING_DECODE_CHAR, CODING_ENCODE_CHAR, CODING_CHAR_CHARSET)
14155 (CODING_CHAR_CHARSET_P): Adjust for the avove changes.
14156
14157 2011-12-05 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
14158
14159 * coding.c (CODING_CHAR_CHARSET_P): New macro.
14160 (encode_coding_emacs_mule, encode_coding_iso_2022): Use the above
14161 macro (Bug#9318).
14162
14163 2011-12-05 Andreas Schwab <schwab@linux-m68k.org>
14164
14165 The following changes are to fix Bug#9318.
14166
14167 * coding.c (CODING_ENCODE_CHAR, CODING_CHAR_CHARSET): New macros.
14168 (encode_coding_emacs_mule, ENCODE_ISO_CHARACTER)
14169 (encode_coding_iso_2022, encode_coding_sjis)
14170 (encode_coding_big5, encode_coding_charset): Use the above macros.
14171
14172 2011-12-05 Juanma Barranquero <lekktu@gmail.com>
14173
14174 * lisp.h (process_quit_flag): Fix external declaration.
14175
14176 2011-12-04 Stefan Monnier <monnier@iro.umontreal.ca>
14177
14178 Don't macro-inline non-performance-critical code.
14179 * eval.c (process_quit_flag): New function.
14180 * lisp.h (QUIT): Use it.
14181
14182 2011-12-04 Jan Djärv <jan.h.d@swipnet.se>
14183
14184 * nsfns.m (get_geometry_from_preferences): New function.
14185 (Fx_create_frame): Call get_geometry_from_preferences (Bug#10103).
14186
14187 2011-12-04 Andreas Schwab <schwab@linux-m68k.org>
14188
14189 * emacs.c (Qkill_emacs): Define.
14190 (syms_of_emacs): Initialize it.
14191 * keyboard.c (interrupt_signal): Don't call Fkill_emacs here, set
14192 Qquit_flag to `kill-emacs' instead.
14193 (quit_throw_to_read_char): Add parameter `from_signal'.
14194 All callers changed. Call Fkill_emacs if requested and safe.
14195 * lisp.h (QUIT): Call Fkill_emacs if requested.
14196
14197 2011-12-03 Jan Djärv <jan.h.d@swipnet.se>
14198
14199 * widget.c (update_wm_hints): Return if wmshell is null.
14200 (widget_update_wm_size_hints): New function.
14201
14202 * widget.h (widget_update_wm_size_hints): Declare.
14203
14204 * xterm.c (x_wm_set_size_hint): If USE_X_TOOLKIT, call
14205 widget_update_wm_size_hints (Bug#10104).
14206
14207 2011-12-03 Eli Zaretskii <eliz@gnu.org>
14208
14209 * xdisp.c (handle_invisible_prop): If the invisible text ends just
14210 before a newline, prepare the bidi iterator for consuming the
14211 newline, and keep the current paragraph direction. (Bug#10183)
14212 (redisplay_window): Don't let `margin' become negative. (Bug#10192)
14213
14214 2011-12-02 Juri Linkov <juri@jurta.org>
14215
14216 * search.c (Fword_search_regexp): New Lisp function created from
14217 `wordify'. Change type of arg `lax' from `int' to `Lisp_Object'.
14218 (Fword_search_backward, Fword_search_forward)
14219 (Fword_search_backward_lax, Fword_search_forward_lax):
14220 Use `Fword_search_regexp' instead of `wordify'. Doc fix.
14221 (syms_of_search): Define `Sword_search_regexp'. (Bug#10145)
14222
14223 2011-12-01 Stefan Monnier <monnier@iro.umontreal.ca>
14224
14225 * fileio.c (Finsert_file_contents): Move after-change-function call
14226 to before the "handled:" label, since all "goto handled" appear in
14227 cases where the *-change-functions have already been properly called
14228 (bug#10117).
14229
14230 2011-12-01 Andreas Schwab <schwab@linux-m68k.org>
14231
14232 * keyboard.c (interrupt_signal): Don't call kill-emacs when
14233 waiting for input. (Bug#10169)
14234
14235 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14236
14237 * dispnew.c (adjust_glyph_matrix): Remove the assertion that
14238 verifies glyph row's hash code--we have just reallocated the
14239 glyphs, so their contents can be complete garbage. (Bug#10164)
14240
14241 2011-11-30 Juanma Barranquero <lekktu@gmail.com>
14242
14243 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Add missing check.
14244
14245 2011-11-30 Eli Zaretskii <eliz@gnu.org>
14246
14247 * dispnew.c (adjust_glyph_matrix) [XASSERTS]: Ensure ROW's
14248 attributes are tested _before_ calling verify_row_hash, to protect
14249 against GCC re-ordering of the tests. (Bug#10164)
14250
14251 2011-11-29 Jan Djärv <jan.h.d@swipnet.se>
14252
14253 * xterm.h (struct x_output): net_wm_state_hidden_seen is new.
14254
14255 * xterm.c (handle_one_xevent): Only set async_visible and friends
14256 if net_wm_state_hidden_seen is non-zero (Bug#10002)
14257 (get_current_wm_state): Set net_wm_state_hidden_seen to 1 if
14258 _NET_WM_STATE_HIDDEN is in NET_WM_STATE.
14259
14260 2011-11-28 Paul Eggert <eggert@cs.ucla.edu>
14261
14262 Remove GCPRO-related macros that exist only to avoid shadowing locals.
14263 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR)
14264 (GCPRO6_VAR, UNGCPRO_VAR): Remove. See
14265 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14266 All uses changed to use GCPRO1 etc.
14267 (GCPRO1, GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6, UNGCPRO):
14268 Revert to old implementation (i.e., before 2011-03-11).
14269
14270 2011-11-28 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14271
14272 * dispnew.c (scrolling_window): Truncate overlaps in copy destination
14273 of scroll runs so as to avoid assigning disabled bogus rows and
14274 unnecessary graphics copy operations.
14275
14276 2011-11-27 Eli Zaretskii <eliz@gnu.org>
14277
14278 * s/ms-w32.h (utimbuf) [_MSC_VER]: Don't define.
14279 (snprintf) [_MSC_VER]: Redirect to _snprintf.
14280 (strtoll) [_MSC_VER]: Redirect to _strtoi64.
14281 (malloc, free, realloc, calloc): Redirect to e_* only when
14282 compiling Emacs.
14283
14284 * lisp.h (GCTYPEBITS): Move before first use.
14285 (ALIGN_GCTYPEBITS) [_MSC_VER]: Define.
14286 (DECL_ALIGN) [_MSC_VER]: Use it, as MSVC doesn't like bit ops in
14287 this macro definition.
14288
14289 * s/ms-w32.h (tzname): Redirect to _tzname for all values of
14290 _MSC_VER.
14291
14292 2011-11-27 Jan Djärv <jan.h.d@swipnet.se>
14293
14294 * gtkutil.c (xg_create_frame_widgets):
14295 Call gtk_window_set_has_resize_grip (FALSE) if that function is
14296 present with Gtk+ 2.0.
14297
14298 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14299
14300 * fileio.c (Finsert_file_contents): Undo previous change; see
14301 <http://lists.gnu.org/archive/html/emacs-diffs/2011-11/msg00265.html>.
14302
14303 2011-11-26 Paul Eggert <eggert@cs.ucla.edu>
14304
14305 Rename locals to avoid shadowing.
14306 * fileio.c (Finsert_file_contents):
14307 Rename inner 'gcpro1' to 'inner_gcpro1' to avoid shadowing.
14308 * process.c (wait_reading_process_output):
14309 Rename inner 'proc' to 'p' to avoid shadowing.
14310 Indent for consistency with usual Emacs style.
14311
14312 2011-11-25 Eli Zaretskii <eliz@gnu.org>
14313
14314 * xdisp.c (redisplay_window): If cursor row is not fully visible
14315 after recentering, and scroll-conservatively is set to a large
14316 number, scroll window by a few more lines to make the cursor fully
14317 visible and out of scroll-margin. (Bug#10105)
14318 (start_display): Don't move to the next line if the display should
14319 start at a newline that is part of a display vector or an overlay
14320 string. (Bug#10119)
14321
14322 2011-11-24 Juri Linkov <juri@jurta.org>
14323
14324 * image.c (imagemagick_load_image): Move `MagickSetResolution' down
14325 after the `MagickPingImage' call. (Bug#10112)
14326
14327 2011-11-23 Chong Yidong <cyd@gnu.org>
14328
14329 * window.c (Fcoordinates_in_window_p): Accept only live windows.
14330
14331 2011-11-23 Martin Rudalics <rudalics@gmx.at>
14332
14333 * buffer.c (Fkill_buffer): Run replace_buffer_in_windows before
14334 making another buffer current. (Bug#10114)
14335
14336 2011-11-23 Glenn Morris <rgm@gnu.org>
14337
14338 * font.c (font_find_for_lface) [HAVE_NS]: Ignore case. (Bug#2526)
14339
14340 2011-11-23 Chong Yidong <cyd@gnu.org>
14341
14342 * xdisp.c (compute_stop_pos): Check validity of end_charpos before
14343 using it (Bug#5984).
14344
14345 2011-11-22 Eli Zaretskii <eliz@gnu.org>
14346
14347 * dispnew.c (adjust_glyph_matrix): Don't verify hash code of mode-
14348 and header-lines, as they don't have one computed for them.
14349 (Bug#10098)
14350
14351 * .gdbinit (prow): Make displayed values more self-explaining.
14352 Add row's hash code.
14353
14354 2011-11-21 Lars Magne Ingebrigtsen <larsi@gnus.org>
14355
14356 * process.c (wait_reading_process_output): Fix asynchrounous
14357 GnuTLS socket handling on some versions of the GnuTLS library.
14358 (wait_reading_process_output): Add comment and URL.
14359
14360 2011-11-21 Jan Djärv <jan.h.d@swipnet.se>
14361
14362 * xterm.c (x_clear_frame): Reinstate the XClearWindow call.
14363
14364 2011-11-21 Chong Yidong <cyd@gnu.org>
14365
14366 * window.c (Fnext_window, Fprevious_window): Doc fix.
14367
14368 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14369
14370 * window.c (get_phys_cursor_glyph): Fix Lisp_Object/int mixup.
14371
14372 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14373
14374 * nsfont.m (syms_of_nsfont) <ns-reg-to-script>: Fix typo.
14375
14376 2011-11-20 Martin Rudalics <rudalics@gmx.at>
14377
14378 * window.c (Fset_window_combination_limit): Rename argument
14379 STATUS to LIMIT.
14380 (Vwindow_combination_limit): Remove "status" from doc-string.
14381
14382 2011-11-20 Andreas Schwab <schwab@linux-m68k.org>
14383
14384 * m/ibms390.h: Remove.
14385 * m/ibms390x.h: Don't include "ibms390.h".
14386
14387 2011-11-20 Stefan Monnier <monnier@iro.umontreal.ca>
14388
14389 * fileio.c (Finsert_file_contents): Add missing gcpro1 variable.
14390 Suggested by Dmitry Antipov <dmantipov@yandex.ru>.
14391
14392 2011-11-20 Juanma Barranquero <lekktu@gmail.com>
14393
14394 * casetab.c (Fset_case_table):
14395 * charset.c (Fcharset_after): Fix typos.
14396
14397 2011-11-20 Paul Eggert <eggert@cs.ucla.edu>
14398
14399 Standardize on VIRT_ADDR_VARIES behavior (Bug#10042).
14400 Otherwise, valgrind does not work on some platforms.
14401 Problem reported by Andreas Schwab in
14402 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00081.html>.
14403 * puresize.h (pure, PURE_P): Always behave as if VIRT_ADDR_VARIES
14404 is set, removing the need for VIRT_ADDRESS_VARIES.
14405 (PURE_P): Use a more-efficient implementation that needs just one
14406 comparison, not two: on x86-64 with GCC 4.6.2, this cut down the
14407 number of instructions from 6 (xorl, cmpq, jge, xorl, cmpq, setge)
14408 to 4 (xorl, subq, cmpq, setbe).
14409 * alloc.c (pure): Always extern now, since that's the
14410 VIRT_ADDR_VARIES behavior.
14411 (PURE_POINTER_P): Use a single comparison, not two, for
14412 consistency with the new puresize.h.
14413 * lisp.h (PNTR_COMPARISON_TYPE): Remove; no longer needed.
14414 * m/ibms390.h, m/intel386.h, m/template.h, s/cygwin.h, s/hpux10-20.h:
14415 Remove VIRT_ADDR_VARIES no longer needed.
14416
14417 2011-11-19 Eli Zaretskii <eliz@gnu.org>
14418
14419 * xdisp.c (x_write_glyphs, draw_phys_cursor_glyph)
14420 (erase_phys_cursor, update_window_cursor, show_mouse_face)
14421 (cursor_in_mouse_face_p): If the cursor position is out of bounds,
14422 behave as if the cursor position were at the window margin.
14423
14424 * window.c (get_phys_cursor_glyph): If the window is hscrolled,
14425 and the cursor position is out of bounds, behave as if the cursor
14426 position were at the window margin. (Bug#10075)
14427
14428 2011-11-18 Chong Yidong <cyd@gnu.org>
14429
14430 * window.c (Fwindow_combination_limit): Make first argument
14431 non-optional, since it is meaningless for live windows like the
14432 selected window.
14433
14434 2011-11-18 Dmitry Antipov <dmantipov@yandex.ru>
14435
14436 * keymap.c (Fwhere_is_internal): Add missing RETURN_UNGCPROs.
14437
14438 2011-11-18 Stefan Monnier <monnier@iro.umontreal.ca>
14439
14440 * intervals.c: Fix grafting over the whole buffer (bug#10071).
14441 (graft_intervals_into_buffer): Simplify.
14442
14443 2011-11-18 Eli Zaretskii <eliz@gnu.org>
14444
14445 * dispnew.c (swap_glyph_pointers): Swap the used[] arrays and the
14446 hash values of the two rows.
14447 (copy_row_except_pointers): Preserve the used[] arrays and the
14448 hash values of the two rows. (Bug#10035)
14449 (add_row_entry): Add xassert to verify that ROW's hash code is valid.
14450
14451 * xdisp.c (row_hash): New function, body extracted from
14452 compute_line_metrics.
14453 (compute_line_metrics): Call row_hash, instead of computing the
14454 hash code inline.
14455
14456 * dispnew.c (verify_row_hash): Call row_hash for computing the
14457 hash code of a row, instead of duplicating code from xdisp.c.
14458
14459 * dispextern.h (row_hash): Add prototype.
14460
14461 2011-11-18 Tassilo Horn <tassilo@member.fsf.org>
14462
14463 * frame.c (delete_frame): Don't delete the terminal when the last
14464 X frame is closed if emacs is built with GTK toolkit.
14465
14466 2011-11-17 Juanma Barranquero <lekktu@gmail.com>
14467
14468 * window.c (syms_of_window) <window-combination-resize>: Fix typo.
14469
14470 2011-11-17 Martin Rudalics <rudalics@gmx.at>
14471
14472 * window.c (Vwindow_splits): Rename to
14473 Vwindow_combination_resize. Suggested by Juri Linkov.
14474 (Fsplit_window_internal): Use Vwindow_combination_resize instead
14475 of Vwindow_splits.
14476
14477 2011-11-16 Juanma Barranquero <lekktu@gmail.com>
14478
14479 * nsfns.m (Fns_font_name):
14480 * window.c (syms_of_window) <window-combination-limit>: Fix typos.
14481
14482 2011-11-16 Martin Rudalics <rudalics@gmx.at>
14483
14484 * window.h (window): Rename slot "nest" to "combination_limit".
14485 * window.c (Fwindow_nest): Rename to Fwindow_combination_limit.
14486 (Fset_window_nest): Rename to Fset_window_combination_limit.
14487 (Vwindow_nest): Rename to Vwindow_combination_limit.
14488 (recombine_windows, make_parent_window, make_window)
14489 (Fsplit_window_internal, saved_window)
14490 (Fset_window_configuration, save_window_save): Rename all
14491 occurrences of window_nest to window_combination_limit.
14492
14493 2011-11-15 Juanma Barranquero <lekktu@gmail.com>
14494
14495 * image.c (imagemagick_load_image): Fix typo.
14496
14497 2011-11-14 Eli Zaretskii <eliz@gnu.org>
14498
14499 * xdisp.c (display_line): Move the call to
14500 highlight_trailing_whitespace before the call to
14501 compute_line_metrics, since the latter needs to see the final
14502 faces of all the glyphs to compute ROW's hash value.
14503 Fixes assertion violations in row_equal_p. (Bug#10035)
14504
14505 2011-11-14 Juanma Barranquero <lekktu@gmail.com>
14506
14507 * w32proc.c (reader_thread): Don't check pending input if cp->fd < 0,
14508 just return (bug#10044).
14509
14510 2011-11-12 Eli Zaretskii <eliz@gnu.org>
14511
14512 * makefile.w32-in (HEAPSIZE): New variable, allows to build temacs
14513 with user-defined heap size. Bump the default size of the temacs
14514 heap to 27MB, to avoid memory warning when running temacs.
14515 ($(TEMACS)): Use HEAPSIZE instead of a hardcoded value.
14516
14517 * dispnew.c (scrolling_window): Fix incorrect indices in accessing
14518 current_matrix and desired_matrix. (Bug#9990)
14519 (verify_row_hash) [XASSERTS]: New function.
14520 (adjust_glyph_matrix, row_equal_p): Use it in xassert to verify
14521 that the hash value of glyph rows is correct.
14522
14523 2011-11-12 Martin Rudalics <rudalics@gmx.at>
14524
14525 * window.h (window): Remove splits slot.
14526 * window.c (Fwindow_splits, Fset_window_splits): Remove.
14527 (Fdelete_other_windows_internal, make_parent_window)
14528 (make_window, Fsplit_window_internal, Fdelete_window_internal)
14529 (Fset_window_configuration, save_window_save): Don't deal with
14530 split status of windows.
14531 (saved_window): Remove splits slot.
14532 (Vwindow_splits): Rewrite doc-string.
14533
14534 2011-11-11 Jan Djärv <jan.h.d@swipnet.se>
14535
14536 * xfns.c (unwind_create_frame):
14537 * nsfns.m (unwind_create_frame):
14538 * w32fns.c (unwind_create_frame): Use Fmemq to check if frame is in
14539 Vframe_list (Bug#9999).
14540
14541 2011-11-11 Dmitry Antipov <dmantipov@yandex.ru>
14542
14543 * xdisp.c (syms_of_xdisp): Remove duplicated definition of Qtext.
14544
14545 2011-11-11 Kenichi Handa <handa@m17n.org>
14546
14547 * callproc.c (Fcall_process): Set the member dst_multibyte of
14548 process_coding.
14549
14550 2011-11-11 Johan Bockgård <bojohan@gnu.org>
14551
14552 * xdisp.c (fill_composite_glyph_string): Always set s->face, to
14553 avoid a crash (bug#9496).
14554
14555 2011-11-09 Chong Yidong <cyd@gnu.org>
14556
14557 * window.c (Fwindow_inside_edges, Fwindow_inside_pixel_edges)
14558 (Fwindow_inside_absolute_pixel_edges): Only allow live windows.
14559
14560 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14561
14562 * s/gnu.h (GC_MARK_STACK): Define to GC_MAKE_GCPROS_NOOPS (Bug#9926).
14563
14564 2011-11-08 Paul Eggert <eggert@cs.ucla.edu>
14565
14566 Avoid some portability problems by eschewing 'extern inline' functions.
14567 The trivial performance wins aren't worth the portability hassles; see
14568 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>
14569 et seq.
14570 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14571 (window_box_width, window_box_left, window_box_left_offset)
14572 (window_box_right, window_box_right_offset): Undo previous change,
14573 by removing the "extern"s.
14574 * intervals.c (adjust_intervals_for_insertion)
14575 (adjust_intervals_for_deletion): Undo previous change,
14576 making these static again.
14577 (offset_intervals, temp_set_point_both, temp_set_point)
14578 (copy_intervals_to_string): No longer inline.
14579 * xdisp.c (window_text_bottom_y, window_box_width)
14580 (window_box_height, window_box_left_offset)
14581 (window_box_right_offset, window_box_left, window_box_right)
14582 (window_box): No longer inline.
14583
14584 2011-11-08 Chong Yidong <cyd@gnu.org>
14585
14586 * window.c (Fwindow_left_column, Fwindow_top_line): Doc fix.
14587 (Fwindow_body_height, Fwindow_body_width): Move from Lisp.
14588 Signal an error if not a live window.
14589 (Fwindow_total_width, Fwindow_total_height): Move from Lisp.
14590 (Fwindow_total_size, Fwindow_body_size): Move to Lisp.
14591
14592 2011-11-07 Juanma Barranquero <lekktu@gmail.com>
14593
14594 * lisp.h (syms_of_abbrev): Remove declaration.
14595 Reported by CHENG Gao <chenggao@royau.me>.
14596
14597 2011-11-07 Eli Zaretskii <eliz@gnu.org>
14598
14599 * w32.c (check_windows_init_file): Don't look for term/w32-win.el
14600 if Vpurify_flag is non-nil. Fixes a crash when running w32 build
14601 of temacs in GUI mode.
14602
14603 2011-11-07 Martin Rudalics <rudalics@gmx.at>
14604
14605 * window.h: Declare delete_all_child_windows instead of
14606 delete_all_subwindows.
14607 * window.c (Fwindow_nest, Fset_window_nest)
14608 (Fset_window_new_total, Fset_window_new_normal)
14609 (Fwindow_resize_apply): Don't use term subwindow in doc-strings.
14610 (delete_all_subwindows): Rename to delete_all_child_windows.
14611 (Fdelete_other_windows_internal, Fset_window_configuration):
14612 Call delete_all_child_windows instead of delete_all_subwindows.
14613 * frame.c (delete_frame): Call delete_all_child_windows instead
14614 of delete_all_subwindows.
14615
14616 2011-11-07 Paul Eggert <eggert@cs.ucla.edu>
14617
14618 * alloc.c (DEADP): New macro, for porting to GNU/Hurd (Bug#9926).
14619 This is also needed for porting to any host where GC_MARK_STACK is
14620 not GC_MAKE_GCPROS_NOOPS.
14621 (which_symbols): Use it.
14622
14623 2011-11-07 Kenichi Handa <handa@m17n.org>
14624
14625 * coding.c (coding_set_destination): Check coding->src_pos only
14626 when coding->src_object is a buffer (bug#9910).
14627
14628 * process.c (send_process): Set the member src_multibyte of coding
14629 to 0 (bug#9911) when sending a unibyte text.
14630
14631 * callproc.c (Fcall_process): Set the member src_multibyte of
14632 process_coding to 0 (bug#9912).
14633
14634 2011-11-06 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
14635
14636 * xmenu.c (cleanup_widget_value_tree): New function.
14637 (xmenu_show, xdialog_show): Use it in record_unwind_protect instead of
14638 calling free_menubar_widget_value_tree directly (Bug#9830).
14639
14640 2011-11-06 Paul Eggert <eggert@cs.ucla.edu>
14641
14642 Fix some portability problems with 'inline'.
14643 * dispextern.h (window_box, window_box_height, window_text_bottom_y)
14644 (window_box_width, window_box_left, window_box_left_offset)
14645 (window_box_right, window_box_right_offset): Declare extern.
14646 Otherwise, these inline functions do not conform to C99 and
14647 are miscompiled by Microsoft compilers. Reported by Eli Zaretskii in
14648 <http://lists.gnu.org/archive/html/emacs-devel/2011-11/msg00084.html>.
14649 * intervals.c (adjust_intervals_for_insertion)
14650 (adjust_intervals_for_deletion): Now extern, because otherwise the
14651 extern inline functions 'offset_intervals' couldn't refer to it.
14652 (static_offset_intervals): Remove.
14653 (offset_intervals): Rewrite using the old contents of
14654 static_offset_intervals. The old version didn't conform to C99
14655 because an extern inline function contained a reference to an
14656 identifier with static linkage.
14657
14658 2011-11-06 Andreas Schwab <schwab@linux-m68k.org>
14659
14660 * keyboard.c (interrupt_signal): Don't call kill-emacs while in
14661 GC.
14662
14663 2011-11-06 Eli Zaretskii <eliz@gnu.org>
14664
14665 * xdisp.c (init_iterator, reseat_to_string): Don't set the
14666 iterator's bidi_p flag if Vpurify_flag is non-nil. (Bug#9963)
14667 (Fcurrent_bidi_paragraph_direction): If Vpurify_flag is non-nil,
14668 return Qleft_to_right.
14669
14670 2011-11-06 Chong Yidong <cyd@gnu.org>
14671
14672 * window.c (Fwindow_live_p, Fwindow_frame, Fframe_root_window)
14673 (Fminibuffer_window, Fwindow_buffer, Fwindow_splits)
14674 (Fset_window_splits, Fwindow_nest, Fset_window_nest)
14675 (Fwindow_use_time, Fwindow_total_size, Fwindow_normal_size)
14676 (Fwindow_new_normal, Fwindow_left_column, Fwindow_top_line)
14677 (Fwindow_margins, Fwindow_fringes, Fwindow_scroll_bars)
14678 (Fwindow_vscroll): Doc fix.
14679 (Fwindow_top_child, Fwindow_left_child): Eliminate a nil default
14680 argument, since it makes no sense to pass a live window and for
14681 consistency with window-child.
14682
14683 2011-11-05 Christoph Scholtes <cschol2112@googlemail.com>
14684
14685 * makefile.w32-in ($(TEMACS), (gl-stamp)): Use $(THISDIR) to
14686 support MSVC.
14687
14688 2011-11-05 Jason Rumney <jasonr@gnu.org>
14689
14690 * w32font.c (font_matches_spec): Filter out non-Japanese kana fonts.
14691 (add_font_entity_to_list): Filter out non-Japanese Shift-JIS
14692 fonts (Bug#6029).
14693 (add_font_entity_to_list): Fix logic errors in mixed boolean and
14694 bitwise arithmetic preventing use of unicode-sip and non-truetype
14695 opentype fonts.
14696
14697 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14698
14699 * s/ms-w32.h (fstat, stat, utime): Move redirections to
14700 "emacs"-only part.
14701
14702 * w32fns.c (x_create_tip_frame, Fx_create_frame): Rearrange
14703 initialization code to keep similarity to xfns.c after changes
14704 from 2011-11-05.
14705
14706 2011-11-05 Jan Djärv <jan.h.d@swipnet.se>
14707
14708 * nsfns.m: Declare image_cache_refcount if GLYPH_DEBUG.
14709 (unwind_create_frame): New function (Bug#9943).
14710 (Fx_create_frame): Restructure code to be more similar to the one in
14711 xfns.c. Call record_unwind_protect with unwind_create_frame (Bug#9943).
14712 Initialize image_cache_refcount if GLYPH_DEBUG (Bug#9943).
14713 Move terminal->reference_count++ just before making the frame official
14714 (Bug#9943).
14715
14716 * nsterm.m (x_free_frame_resources): New function.
14717 (x_destroy_window): Move code to x_free_frame_resources.
14718
14719 * xfns.c (unwind_create_frame): Fix comment.
14720 (Fx_create_frame, x_create_tip_frame):
14721 Move terminal->reference_count++ just before making the frame
14722 official. Move initialization of image_cache_refcount and
14723 dpyinfo_refcount before calling init_frame_faces (Bug#9943).
14724
14725 2011-11-05 Eli Zaretskii <eliz@gnu.org>
14726
14727 Support MSVC build with newer versions of Visual Studio.
14728 * makefile.w32-in (TAGS-gmake): Don't use $(patsubst ...), as
14729 Nmake barfs on that. Use $(OBJ*_c) variables instead, defined on
14730 nt/gmake.defs.
14731
14732 * lisp.h (ENUM_BF): New macro, for enumerated types in bitfields,
14733 which are not supported by MSVC.
14734 (Lisp_Symbol, Lisp_Misc_Any, Lisp_Marker, Lisp_Misc_Overlay)
14735 (Lisp_Save_Value, Lisp_Free): Use ENUM_BF for enumerated types in
14736 bitfields.
14737 (Lisp_Object) [USE_LISP_UNION_TYPE]: Use ENUM_BF for enumerated
14738 types in bitfields.
14739 (DEFUN) [_MSC_VER]: Define in a different way for MSVC.
14740
14741 * w32fns.c [_MSC_VER]: DECLARE_HANDLE for any MSVC version.
14742
14743 2011-11-05 Fabrice Popineau <fabrice.popineau@supelec.fr> (tiny change)
14744
14745 Support MSVC build with newer versions of Visual Studio.
14746 * w32.c: Don't include w32api.h for MSVC.
14747 (init_environment) [_MSC_VER]: Call sys_access, not _access.
14748
14749 * s/ms-w32.h <sigset_t, ssize_t> [_MSC_VER]: Typedefs for MSVC.
14750 [_MSC_VER]: Include sys/timeb.h, sys/stat.h, and signal.h.
14751 (fstat, stat, utime) [_MSC_VER]: Redirect to their sys_* cousins.
14752 (malloc, free, realloc, calloc) [_MSC_VER]: Always redirect to the
14753 e_* cousins.
14754 (alloca) [_MSC_VER]: Define to _alloca.
14755
14756 * lisp.h (DECL_ALIGN) [_MSC_VER]: Define for MSVC.
14757
14758 * regex.c <re_char> [_MSC_VER]: A separate definition for MSVC.
14759
14760 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14761
14762 * xdisp.c (note_mouse_highlight): If either of
14763 previous/next-single-property-change returns nil, treat that as
14764 the beginning or the end of the buffer. (Bug#9955)
14765
14766 2011-11-04 Jan Djärv <jan.h.d@swipnet.se>
14767
14768 * gtkutil.c (xg_make_tool_item): Add callbacks if one of wimage or
14769 label is not null (Bug#9951).
14770 (xg_tool_item_stale_p): Handle the fact that wimage and/or wlbl
14771 may be NULL.
14772
14773 2011-11-04 Eli Zaretskii <eliz@gnu.org>
14774
14775 * window.c (Fwindow_body_size): Mention in the doc string that the
14776 return value is in frame's canonical units. (Bug#9949)
14777
14778 2011-11-03 Eli Zaretskii <eliz@gnu.org>
14779
14780 * xdisp.c (note_mouse_highlight): Initialize `area'. (Bug#9947)
14781
14782 * w32fns.c (unwind_create_frame): If needed, free the glyph
14783 matrices of the partially constructed frame. (Bug#9943)
14784 * xfns.c (unwind_create_frame): Likewise.
14785
14786 2011-11-01 Eli Zaretskii <eliz@gnu.org>
14787
14788 * xdisp.c (mouse_face_from_buffer_pos): Fix a typo in a comment.
14789 Don't stop backward scan on the continuation glyph, even though
14790 its CHARPOS is positive.
14791 (mouse_face_from_buffer_pos, note_mouse_highlight):
14792 Rename cover_string to disp_string.
14793
14794 2011-11-01 Martin Rudalics <rudalics@gmx.at>
14795
14796 * window.c (temp_output_buffer_show): Don't use
14797 Vtemp_buffer_show_specifiers.
14798 (Vtemp_buffer_show_specifiers): Remove unused variable.
14799
14800 2011-10-30 Eli Zaretskii <eliz@gnu.org>
14801
14802 * xdisp.c (try_cursor_movement): Make sure ROW isn't decremented
14803 past the beginning of the current glyph matrix.
14804
14805 2011-10-30 Adam Sjøgren <asjo@koldfront.dk> (tiny change)
14806
14807 * xterm.c: Include X11/Xproto.h if HAVE_GTK3.
14808 (x_error_handler): Ignore BadMatch for X_SetInputFocus for
14809 HAVE_GTK3 (Bug#9869).
14810
14811 * gtkutil.c (xg_win_to_widget, xg_event_is_for_menubar): Initialize
14812 type to GDK_NOTHING so valgrind does not complain (Bug#9901).
14813
14814 * xterm.h (x_display_info): Add Xatom_net_wm_state_hidden (Bug#9893).
14815
14816 * xterm.c: Declare x_handle_net_wm_state to return int.
14817 (handle_one_xevent): Check if we are iconified but don't have
14818 _NET_WM_STATE_HIDDEN. If do, treat as deiconify (Bug#9893).
14819 (get_current_wm_state): Return non-zero if not hidden,
14820 check for _NET_WM_STATE_HIDDEN (Bug#9893).
14821 (do_ewmh_fullscreen): Ignore return value from get_current_wm_state.
14822 (x_handle_net_wm_state): Return what get_current_wm_state returns.
14823 (x_term_init): Initialize dpyinfo->Xatom_net_wm_state_hidden.
14824
14825 2011-10-29 Paul Eggert <eggert@cs.ucla.edu>
14826
14827 * alloc.c (which_symbols): Declare EXTERNALLY_VISIBLE,
14828 so that this new function doesn't get optimized away by a
14829 whole-program optimizer. Make the 2nd arg EMACS_INT, not int.
14830
14831 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14832
14833 * frame.h (MOUSE_HL_INFO): Remove excess parens.
14834
14835 2011-10-29 Eli Zaretskii <eliz@gnu.org>
14836
14837 Fix the `xbytecode' command.
14838 * .gdbinit (xprintbytestr): New command.
14839 (xwhichsymbols): Rename from `which'; all callers changed.
14840 (xbytecode): Print the byte-code string as well.
14841
14842 2011-10-29 Kim Storm <storm@cua.dk>
14843
14844 * alloc.c (which_symbols): New function.
14845
14846 2011-10-29 Andreas Schwab <schwab@linux-m68k.org>
14847
14848 * minibuf.c (read_minibuf_noninteractive): Allow reading empty
14849 line. (Bug#9903)
14850
14851 2011-10-29 Glenn Morris <rgm@gnu.org>
14852
14853 * process.c (wait_reading_process_output): Revert 2009-08-30 change.
14854 Not clear what it was for, and it causes various bugs. (Bug#9839)
14855
14856 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14857
14858 * xdisp.c (note_mouse_highlight): Initialize `part', to avoid a
14859 possible random value that matches one of those tested as
14860 condition to clear the mouse face.
14861
14862 2011-10-28 Chong Yidong <cyd@gnu.org>
14863
14864 * xdisp.c (note_mouse_highlight): Fix use of uninitialized var.
14865
14866 2011-10-28 Dan Nicolaescu <dann@ics.uci.edu>
14867
14868 * window.c (make_window): Initialize phys_cursor_on_p.
14869
14870 2011-10-28 Stefan Monnier <monnier@iro.umontreal.ca>
14871
14872 * lisp.h (struct Lisp_Symbol): Update comments.
14873
14874 2011-10-28 Juanma Barranquero <lekktu@gmail.com>
14875
14876 * w32font.c (w32_load_unicows_or_gdi32): Add missing return.
14877
14878 2011-10-28 Eli Zaretskii <eliz@gnu.org>
14879
14880 Fix Emacs on Windows 9X (bug#8562). Thanks to oslsachem
14881 <oslsachem@gmail.com> for helping to debug this.
14882
14883 * w32font.c (g_b_init_is_w9x, g_b_init_get_outline_metrics_w)
14884 (g_b_init_get_text_metrics_w, g_b_init_get_glyph_outline_w)
14885 (g_b_init_get_glyph_outline_w): New static variables.
14886 (GetOutlineTextMetricsW_Proc, GetTextMetricsW_Proc)
14887 (GetGlyphOutlineW_Proc): New typedefs.
14888 (w32_load_unicows_or_gdi32, get_outline_metrics_w)
14889 (get_text_metrics_w, get_glyph_outline_w, globals_of_w32font):
14890 New functions.
14891 (w32font_open_internal, compute_metrics):
14892 Call get_outline_metrics_w, get_text_metrics_w, and get_glyph_outline_w
14893 instead of calling the "wide" APIs directly.
14894
14895 * emacs.c (main) [HAVE_NTGUI]: Call globals_of_w32font.
14896
14897 * w32.h (syms_of_w32font): Add prototype.
14898
14899 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14900
14901 * window.c (Fframe_root_window, Fframe_first_window, Fwindow_end)
14902 (Fframe_selected_window, Ftemp_output_buffer_show, Fnext_window)
14903 (Fdelete_window_internal, Fwindow_parameters): Fix typos in docstrings.
14904 (Fmove_to_window_line): Doc fix.
14905
14906 2011-10-27 Chong Yidong <cyd@gnu.org>
14907
14908 * process.c (make_process): Set gnutls_state to NULL.
14909
14910 * gnutls.c (emacs_gnutls_deinit): Deinit the gnutls_state if it is
14911 non-NULL, regardless of GNUTLS_INITSTAGE.
14912 (Fgnutls_boot): Cleanups. Call emacs_gnutls_deinit if we signal
14913 an error. Set process slots as soon as we allocate them.
14914
14915 * gnutls.h (GNUTLS_LOG, GNUTLS_LOG2): Fix macros.
14916
14917 2011-10-27 Chong Yidong <cyd@gnu.org>
14918
14919 * gnutls.c (emacs_gnutls_deinit): New function.
14920 Deallocate credentials structures as well as calling gnutls_deinit.
14921 (Fgnutls_deinit, Fgnutls_boot): Use it.
14922
14923 * process.c (make_process): Initialize GnuTLS credentials to NULL.
14924 (deactivate_process): Call emacs_gnutls_deinit.
14925
14926 2011-10-27 Juanma Barranquero <lekktu@gmail.com>
14927
14928 * image.c (x_create_x_image_and_pixmap):
14929 * w32.c (sys_rename, w32_delayed_load):
14930 * w32font.c (fill_in_logfont):
14931 * w32reg.c (x_get_string_resource): Silence compiler warnings.
14932
14933 2011-10-26 Juanma Barranquero <lekktu@gmail.com>
14934
14935 * w32fns.c (w32_default_color_map): New function,
14936 extracted from Fw32_default_color_map.
14937 (Fw32_default_color_map, Fx_open_connection): Use it. (Bug#9785)
14938
14939 2011-10-25 Paul Eggert <eggert@cs.ucla.edu>
14940
14941 * dispextern.h (Fcontrolling_tty_p): New decl (Bug#6649 part 2).
14942
14943 2011-10-25 Stefan Monnier <monnier@iro.umontreal.ca>
14944
14945 * keyboard.c (test_undefined): New function (bug#9751).
14946 (read_key_sequence): Use it to detect when a key is bound to `undefined'.
14947
14948 2011-10-25 Enami Tsugutomo <tsugutomo.enami@jp.sony.com>
14949
14950 * sysdep.c (init_sys_modes): Fix the check for the controlling
14951 terminal (Bug#6649).
14952
14953 2011-10-20 Eli Zaretskii <eliz@gnu.org>
14954
14955 * dispextern.h (struct bidi_it): New member next_en_type.
14956
14957 * bidi.c (bidi_line_init): Initialize the next_en_type member.
14958 (bidi_resolve_explicit_1): When next_en_pos is valid for the
14959 current character, check also for next_en_type being WEAK_EN.
14960 (bidi_resolve_weak): Don't enter the expensive loop if the current
14961 position is before next_en_pos. Record the bidi type of the first
14962 non-ET, non-BN character we find, in addition to its position.
14963 (bidi_level_of_next_char): Invalidate next_en_type when
14964 next_en_pos is over-stepped.
14965
14966 2011-10-20 Paul Eggert <eggert@cs.ucla.edu>
14967
14968 Time zone name fixes for non-ASCII locales (Bug#641, Bug#9794)
14969 * editfns.c: Rewrite current-time-zone so that it invokes
14970 the equivalent of (format-time-string "%Z") to get the time zone name.
14971 This fixes a bug when the time zone name contains characters that
14972 need converting from the system time locale to Emacs internal format.
14973 This fixes a shortcoming that I introduced in my 1999-10-19 patch:
14974 that patch fixed format-time-string to do the conversion, but
14975 I forgot to fix current-time-zone.
14976 (format_time_string): New function, containing most of
14977 what Fformat_time_string used to contain.
14978 (Fformat_time_string): Rewrite in terms of format_time_string.
14979 This doesn't change this function's behavior.
14980 (current-time-zone): Rewrite to use format_time_string.
14981 This fixes the bug reported by Michael Schierl in
14982 <http://lists.gnu.org/archive/html/emacs-devel/2007-06/msg00334.html>.
14983 Jason Rumney's 2007-06-07 change worked around this bug, but
14984 didn't fix it.
14985 * systime.h (tzname, timezone): Remove no-longer-used declarations.
14986
14987 2011-10-19 Eli Zaretskii <eliz@gnu.org>
14988
14989 * xdisp.c (start_display): If the character at POS is displayed
14990 via a display vector, reset IT->current.dpvec_index to zero.
14991 (try_window_reusing_current_matrix): If a line ends in a display
14992 vector or the next line starts in a display vector, continue
14993 redrawing the window even though the character position of
14994 start_row was reached.
14995 (Bug#9771, part 2)
14996
14997 2011-10-18 Chong Yidong <cyd@gnu.org>
14998
14999 * xdisp.c (get_next_display_element): Handle U+2010 and U+2011
15000 with nobreak-char-display too.
15001
15002 2011-10-18 Eli Zaretskii <eliz@gnu.org>
15003
15004 Fix part 3 of bug#9771.
15005 * bidi.c (bidi_line_init): Initialize next_en_pos to zero, not -1.
15006 (bidi_resolve_neutral): Don't enter the expensive loop looking for
15007 non-neutral characters if the current character is a paragraph
15008 separator (a.k.a. Newline). This avoids running the same
15009 expensive loop twice, once when we consume the preceding newline
15010 and the other time when the line actually needs to be displayed.
15011 Avoid the loop when we see neutrals on the base embedding level
15012 following a character whose directionality is the same as the
15013 paragraph's. This avoids running the expensive loop when a line
15014 ends in a long sequence of neutrals, like control characters.
15015 Add assertion against STRONG_AL type. Slightly rearrange code
15016 that determines the type of a neutral given the first non-neutral
15017 that follows it.
15018 (bidi_level_of_next_char): Set next_en_pos to zero when
15019 invalidating its info.
15020
15021 2011-10-17 Eli Zaretskii <eliz@gnu.org>
15022
15023 * xdisp.c (push_display_prop): Determine whether to record string
15024 or buffer position by IT->string, not by IT->method. Allow
15025 GET_FROM_DISPLAY_VECTOR as IT->method on entry. (Bug#9771, part 4)
15026 (move_it_vertically_backward): Don't look for character position
15027 immediately after the newline when in a continuation line.
15028 (Bug#9771, part 1)
15029
15030 2011-10-15 Martin Rudalics <rudalics@gmx.at>
15031
15032 * window.c (coordinates_in_window): Rewrite and delabelize
15033 vertical border check. (Bug#5357) (Bug#9618)
15034
15035 2011-10-14 Stefan Monnier <monnier@iro.umontreal.ca>
15036
15037 * xterm.c (frame_highlight, frame_unhighlight): Ignore unexplained
15038 errors in XSetWindowBorder (bug#9310).
15039
15040 2011-10-13 Dmitry Antipov <dmantipov@yandex.ru>
15041
15042 * editfns.c (Fset_time_zone_rule): Replace free with xfree to
15043 avoid crash when xmalloc overrun checking is enabled.
15044
15045 2011-10-13 Eli Zaretskii <eliz@gnu.org>
15046
15047 * xdisp.c (Fcurrent_bidi_paragraph_direction): Initialize
15048 itb.paragraph_dir to NEUTRAL_DIR. Fixes an occasional incorrect
15049 cursor motion with <left> and <right> arrow keys.
15050
15051 * bidi.c (bidi_init_it): Don't initialize paragraph_dir here, as
15052 some callers set that themselves.
15053
15054 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15055
15056 * xdisp.c (find_row_edges): Handle the case where ROW comes from a
15057 display string and the previous row comes from the same string and
15058 is empty. (Bug#9739) (Bug#9738)
15059
15060 2011-10-12 Stefan Monnier <monnier@iro.umontreal.ca>
15061
15062 * doc.c (get_doc_string): Encode file name (bug#9735).
15063
15064 2011-10-12 Eli Zaretskii <eliz@gnu.org>
15065
15066 * bidi.c (bidi_level_of_next_char):
15067 * xdisp.c (get_visually_first_element): Remove old incorrect
15068 comments regarding the Unicode Line Separator character.
15069
15070 * bidi.c (bidi_init_it): Initialize paragraph_dir to NEUTRAL_DIR.
15071
15072 2011-10-12 Dmitry Antipov <dmantipov@yandex.ru>
15073
15074 * alloc.c (Fgc_status): Do not access beyond zombies array
15075 boundary if nzombies > MAX_ZOMBIES.
15076 * alloc.c (dump_zombies): Add missing format specifier.
15077
15078 2011-10-12 Paul Eggert <eggert@cs.ucla.edu>
15079
15080 * xdisp.c (set_cursor_from_row): Simplify conditionals,
15081 to pacify GCC 4.6.1 x86-64 with -O2 -Wstrict-overflow.
15082
15083 * lread.c (read_escape): Allow hex escapes as large as ?\xfffffff.
15084 Some packages use them to denote characters with modifiers.
15085
15086 2011-10-11 Andreas Schwab <schwab@linux-m68k.org>
15087
15088 * lisp.h (GCPRO1_VAR, GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR)
15089 (GCPRO5_VAR, GCPRO6_VAR, UNGCPRO_VAR): Add whitespace to avoid
15090 matching a pp-number. Rename parameter var to var1.
15091
15092 2011-10-11 Stefan Monnier <monnier@iro.umontreal.ca>
15093
15094 * minibuf.c (Finternal_complete_buffer): Fix last change (bug#9709).
15095
15096 2011-10-08 Glenn Morris <rgm@gnu.org>
15097
15098 * callint.c (Fcall_interactively): Give a more explicit error for the
15099 'c' case with a non-character input. (Bug#8479)
15100
15101 2011-10-08 Eli Zaretskii <eliz@gnu.org>
15102
15103 * xdisp.c (hscroll_window_tree): Support hscroll in right-to-left
15104 lines.
15105 (set_cursor_from_row): Fix cursor positioning in mixed L2R+R2L
15106 lines that are hscrolled on the left.
15107
15108 * dispnew.c (buffer_posn_from_coords): Account for a possible
15109 presence of header-line. (Bug#4426)
15110
15111 2011-10-07 Stefan Monnier <monnier@iro.umontreal.ca>
15112
15113 * buffer.c (syms_of_buffer) <enable-multibyte-characters>:
15114 Don't advertise functionality which we discourage or doesn't work.
15115
15116 2011-10-07 Paul Eggert <eggert@cs.ucla.edu>
15117
15118 * alloc.c (GC_LISP_OBJECT_ALIGNMENT): Use offsetof, not __alignof__
15119 or sizeof. __alignof__ gives the wrong answer on Fedora x86-64
15120 with GCC 4.6.1 when configured with CC='gcc -m32' --with-wide-int;
15121 this makes Emacs dump core during garbage collection on rare
15122 occasions. sizeof is obviously inferior to offsetof here, so
15123 stick with offsetof.
15124 (GC_POINTER_ALIGNMENT): New macro.
15125 (mark_memory): Omit 3rd (offset) arg; caller changed.
15126 Don't assume EMACS_INT alignment is the same as pointer alignment.
15127
15128 2011-10-03 Stefan Monnier <monnier@iro.umontreal.ca>
15129
15130 * keyboard.c (read_key_sequence_remapped): New var.
15131 (read_key_sequence): Compute remapping in the right buffer.
15132 (command_loop_1): Use read_key_sequence's remapping directly.
15133
15134 2011-10-02 Stefan Monnier <monnier@iro.umontreal.ca>
15135
15136 * dired.c (file_name_completion): Don't expand file name.
15137 (Ffile_name_completion, Ffile_name_all_completions): Expand file name
15138 before checking file name handler.
15139
15140 * minibuf.c (Finternal_complete_buffer): Only show internal buffers if
15141 they've been requested explicitly (bug#9591).
15142
15143 2011-10-01 Andreas Schwab <schwab@linux-m68k.org>
15144
15145 * keymap.c (Fsingle_key_description): Use make_specified_string
15146 instead of build_string to build string from push_key_description.
15147 (Bug#5193)
15148
15149 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15150
15151 * buffer.h (struct buffer): Use time_t, not int, for a time stamp.
15152 This fixes a Y2038 bug on 64-bit hosts.
15153 * buffer.c (reset_buffer):
15154 * fileio.c (Fdo_auto_save, Fset_buffer_auto_saved)
15155 (Fclear_buffer_auto_save_failure):
15156 Use 0, not -1, to represent an unset failure time, since time_t
15157 might not be signed.
15158
15159 Remove dependency on glibc malloc internals.
15160 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15161 Move back here from lisp.h, but with their new implementations.
15162 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15163 (XMALLOC_OVERRUN_SIZE_SIZE): Move these new lisp.h macros here.
15164 * charset.c (charset_table_init): New static var.
15165 (syms_of_charset): Use it instead of xmalloc. This removes a
15166 dependency on glibc malloc internals. See Eli Zaretskii's comment in
15167 <http://lists.gnu.org/archive/html/emacs-devel/2011-09/msg00815.html>.
15168 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15169 Move back to alloc.c.
15170 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15171 (XMALLOC_OVERRUN_SIZE_SIZE): Move to alloc.c.
15172
15173 2011-09-30 Jan Djärv <jan.h.d@swipnet.se>
15174
15175 * nsterm.m (windowDidResize): Call x_set_window_size only when
15176 ns_in_resize is true. Otherwise set pixelwidth/height and
15177 call change_frame_size (Bug#9628).
15178
15179 2011-09-30 Paul Eggert <eggert@cs.ucla.edu>
15180
15181 Port --enable-checking=all to Fedora 14 x86-64.
15182 * charset.c (syms_of_charset): Also account for glibc malloc's
15183 internal overhead when calculating the initial malloc maximum.
15184
15185 Port --enable-checking=all to Fedora 14 x86.
15186 * alloc.c (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15187 Move to lisp.h.
15188 (xmalloc_put_size, xmalloc_get_size, overrun_check_malloc)
15189 (overrun_check_realloc, overrun_check_free):
15190 Use XMALLOC_OVERRUN_SIZE_SIZE, not sizeof (size_t).
15191 That way, xmalloc returns a properly-aligned pointer even if
15192 XMALLOC_OVERRUN_CHECK is defined. The old debugging code happened
15193 to align OK on typical 64-bit hosts, but not on Fedora 14 x86.
15194 * charset.c (syms_of_charset): Take XMALLOC_OVERRUN_CHECK_OVERHEAD
15195 into account when calculating the initial malloc maximum.
15196 * lisp.h (XMALLOC_OVERRUN_CHECK_OVERHEAD, XMALLOC_OVERRUN_CHECK_SIZE):
15197 Move here from alloc.c, so that charset.c can use it too.
15198 Properly align; the old code wasn't right for common 32-bit hosts
15199 when configured with --enable-checking=all.
15200 (XMALLOC_BASE_ALIGNMENT, COMMON_MULTIPLE, XMALLOC_HEADER_ALIGNMENT)
15201 (XMALLOC_OVERRUN_SIZE_SIZE): New macros.
15202
15203 2011-09-29 Eli Zaretskii <eliz@gnu.org>
15204
15205 * sysdep.c (snprintf) [!EOVERFLOW]: If EOVERFLOW is not defined,
15206 use EDOM.
15207
15208 2011-09-28 Eli Zaretskii <eliz@gnu.org>
15209
15210 * xdisp.c (compute_display_string_end): If there's no display
15211 string at CHARPOS, return -1.
15212
15213 * bidi.c (bidi_fetch_char): When compute_display_string_end
15214 returns a negative value, treat the character as a normal
15215 character not covered by a display string. (Bug#9624)
15216
15217 2011-09-28 Juanma Barranquero <lekktu@gmail.com>
15218
15219 * lread.c (Fread_from_string): Fix typo in docstring.
15220
15221 2011-09-27 Eli Zaretskii <eliz@gnu.org>
15222
15223 * xdisp.c (handle_invisible_prop): If invisible text ends on a
15224 newline, reseat the iterator instead of bidi-iterating there one
15225 character at a time. (Bug#9610)
15226 (BUFFER_POS_REACHED_P, move_it_in_display_line_to): Bail when past
15227 TO_CHARPOS if the bidi iterator is at base embedding level.
15228
15229 2011-09-27 Andreas Schwab <schwab@linux-m68k.org>
15230
15231 * lread.c (readevalloop): Use correct code for NBSP.
15232 (read1): Likewise. (Bug#9608)
15233
15234 2011-09-25 Michael Albinus <michael.albinus@gmx.de>
15235
15236 * dbusbind.c (Fdbus_register_signal): When service is not
15237 registered, use nil in Vdbus_registered_objects_table. (Bug#9581)
15238
15239 2011-09-25 Glenn Morris <rgm@gnu.org>
15240
15241 * buffer.c (truncate-lines): Doc fix.
15242
15243 2011-09-24 Chong Yidong <cyd@stupidchicken.com>
15244
15245 * window.c (Fwindow_prev_buffers, Fset_window_prev_buffers)
15246 (Fset_window_next_buffers): Doc fix.
15247
15248 2011-09-24 Glenn Morris <rgm@gnu.org>
15249
15250 * minibuf.c (read_minibuf): Disable line truncation. (Bug#5715)
15251
15252 2011-09-24 Paul Eggert <eggert@cs.ucla.edu>
15253
15254 Fix minor problems found by static checking.
15255 * xdisp.c (string_from_display_spec): Don't assume vecsize fits in int.
15256 * indent.c (Fvertical_motion): Fix == vs = typo.
15257
15258 2011-09-24 Eli Zaretskii <eliz@gnu.org>
15259
15260 * dispnew.c (syms_of_display) <redisplay-dont-pause>:
15261 Default value is now t. Doc fix.
15262
15263 * indent.c (Fvertical_motion): Compute and apply the overshoot
15264 logic when moving up, not only when moving down. Fix the
15265 confusing name and values of the it_overshoot_expected variable;
15266 logic changes accordingly. (Bug#9254) (Bug#9549)
15267
15268 * xdisp.c (pos_visible_p): Produce correct pixel coordinates when
15269 CHARPOS is covered by a display string which includes newlines.
15270 (move_it_vertically_backward): Avoid inflooping when START_CHARPOS
15271 is covered by a display string with embedded newlines.
15272
15273 2011-09-24 Michael Albinus <michael.albinus@gmx.de>
15274
15275 * dbusbind.c (Fdbus_register_signal): Add match rule to
15276 Vdbus_registered_objects_table. (Bug#9581)
15277 (Fdbus_register_method, Vdbus_registered_objects_table):
15278 Fix docstring.
15279
15280 2011-09-24 Jim Meyering <meyering@redhat.com>
15281
15282 do not ignore write error for any output size
15283 The previous change was incomplete.
15284 While it makes emacs --batch detect the vast majority of stdout
15285 write failures, errors were still ignored whenever the output size is
15286 k * (BUFSIZ+1) - 4. E.g., on a system with BUFSIZ of 4096,
15287 $ emacs --batch --eval '(print (format "%4093d" 0))' > /dev/full \
15288 && echo FAIL: ignored write error
15289 FAIL: ignored write error
15290 $ emacs --batch --eval '(print (format "%20481d" 0))' > /dev/full \
15291 && echo FAIL: ignored write error
15292 FAIL: ignored write error
15293 * emacs.c (Fkill_emacs): Also test ferror. (Bug#9574)
15294
15295 2011-09-23 Andreas Schwab <schwab@linux-m68k.org>
15296
15297 * emacs.c (Fkill_emacs): In noninteractive mode exit
15298 non-successfully if a write error occurred on stdout. (Bug#9574)
15299
15300 2011-09-21 Eli Zaretskii <eliz@gnu.org>
15301
15302 * xdisp.c (pop_it): Allow it->object that is a cons cell to pass
15303 the xassert test.
15304
15305 * dispextern.h (struct it): Update the comment documenting what
15306 can it->OBJECT be.
15307
15308 2011-09-20 Eli Zaretskii <eliz@gnu.org>
15309
15310 * xdisp.c (set_cursor_from_row): If the row ends in a newline from
15311 a display string, extend search for cursor position to end of row.
15312 (find_row_edges): If the row ends in a newline from a display
15313 string, increment its MATRIX_ROW_END_CHARPOS by one. (Bug#9549)
15314 Handle the case of a display string with multiple newlines.
15315 (Fcurrent_bidi_paragraph_direction): Fix search for previous
15316 non-empty line. Fixes confusing cursor motion with arrow keys at
15317 the beginning of a line that starts with whitespace.
15318
15319 2011-09-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
15320
15321 * lread.c (Fread_from_string): Document what FINAL-STRING-INDEX is
15322 (bug#9493).
15323
15324 2011-09-18 Chong Yidong <cyd@stupidchicken.com>
15325
15326 * xfns.c (Fx_create_frame): Handle the bitmapIcon resource as
15327 boolean (Bug#9154).
15328
15329 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15330
15331 * xdisp.c (display_line): Record maximum and minimum buffer
15332 positions even if no glyphs were produced (e.g., by a zero-width
15333 stretch). Fixes bug#9530 on a TTY. Under word-wrap, don't record
15334 buffer positions that will be removed from the glyph row because
15335 they don't fit.
15336 (produce_stretch_glyph): Fix a bug in :align-to on a TTY when the
15337 column is beyond frame width: don't subtract 1 "pixel" when
15338 computing width of the stretch.
15339 (reseat_at_next_visible_line_start): Undo the change made on
15340 2011-09-17 that saved paragraph information and restored it after
15341 the call to `reseat'. (Bug#9545)
15342
15343 2011-09-18 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
15344
15345 * xdisp.c (expose_window): Save original value of phys_cursor_on_p
15346 and turn window cursor on if cleared (Bug#9415).
15347
15348 2011-09-18 Andreas Schwab <schwab@linux-m68k.org>
15349
15350 * search.c (boyer_moore): Take unibyte characters from pattern
15351 literally. (Bug#9458)
15352
15353 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15354
15355 * xdisp.c (reseat_at_next_visible_line_start): Fix last change.
15356
15357 2011-09-18 Paul Eggert <eggert@cs.ucla.edu>
15358
15359 Fix minor problem found by static checking.
15360 * xdisp.c (reseat_at_next_visible_line_start): Mark locals as
15361 initialized, to pacify gcc -Wuninitialized.
15362
15363 * fileio.c: Report proper errno when syscall falls.
15364 (Finsert_file_contents): Save and restore errno,
15365 so that report_file_error outputs the correct diagnostic.
15366 (Fwrite_region) [CLASH_DETECTION]: Likewise.
15367
15368 2011-09-18 Eli Zaretskii <eliz@gnu.org>
15369
15370 * .gdbinit (pgx): Fix references to fields of `struct glyph'.
15371
15372 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15373
15374 * xdisp.c (produce_stretch_glyph): Another fix for changes made on
15375 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9530)
15376
15377 2011-09-17 Eli Zaretskii <eliz@gnu.org>
15378
15379 * xdisp.c (reseat_at_next_visible_line_start): Keep information
15380 about the current paragraph and restore it after the call to reseat.
15381
15382 * bidi.c (MAX_PARAGRAPH_SEARCH): New macro.
15383 (bidi_find_paragraph_start): Search back for paragraph beginning
15384 at most MAX_PARAGRAPH_SEARCH lines; if not found, return BEGV_BYTE.
15385 (bidi_move_to_visually_next): Only trigger paragraph-related
15386 computations when the last character is a newline or at EOB, not
15387 just any NEUTRAL_B. (Bug#9470)
15388
15389 * xdisp.c (set_cursor_from_row): Don't invoke special treatment of
15390 truncated lines if point is covered by a display string. (Bug#9524)
15391
15392 2011-09-16 Paul Eggert <eggert@cs.ucla.edu>
15393
15394 * xselect.c: Relax test for outgoing X longs (Bug#9498).
15395 (cons_to_x_long): New function.
15396 (lisp_data_to_selection_data): Use it. Correct the test for
15397 short-versus-long data; it was negated. Break out of vector
15398 loop, for efficiency, when a long datum is discovered.
15399
15400 2011-09-16 Stefan Monnier <monnier@iro.umontreal.ca>
15401
15402 * eval.c (Fquote): Document its non-consing behavior (bug#9482).
15403
15404 2011-09-16 Eli Zaretskii <eliz@gnu.org>
15405
15406 * image.c (tiff_handler): Work around a bug in MinGW GCC 3.x (see
15407 GCC PR/17406) by declaring this function with external scope.
15408
15409 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15410
15411 * editfns.c (Fformat): Fix bug in text-property fix (Bug#9514).
15412 Don't mishandle (length (format "%%")) and (format "%4000s%%" "").
15413
15414 2011-09-15 Andreas Schwab <schwab@linux-m68k.org>
15415
15416 * editfns.c (Fformat): Correctly handle text properties on "%%".
15417
15418 2011-09-15 Eli Zaretskii <eliz@gnu.org>
15419
15420 * xterm.c (x_draw_composite_glyph_string_foreground):
15421 * w32term.c (x_draw_composite_glyph_string_foreground):
15422 * term.c (encode_terminal_code):
15423 * composite.c (composition_update_it, get_composition_id):
15424 * xdisp.c (get_next_display_element)
15425 (fill_composite_glyph_string): Add comments about special meaning
15426 of TAB characters in a composition.
15427
15428 2011-09-15 Paul Eggert <eggert@cs.ucla.edu>
15429
15430 * editfns.c (Fformat): Fix off-by-1 bug for "%%b" (Bug#9514).
15431 This occurs when processing a multibyte format.
15432 Problem reported by Wolfgang Jenker.
15433
15434 2011-09-15 Johan Bockgård <bojohan@gnu.org>
15435
15436 * xdisp.c (try_cursor_movement): Only check for exact match if
15437 cursor hpos found by set_cursor_from_row is valid. (Bug#9495)
15438
15439 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15440
15441 Remove unused external symbols.
15442 * dispextern.h (calc_pixel_width_or_height): Remove decl.
15443 * xdisp.c (calc_pixel_width_or_height): Now static.
15444 * doprnt.c (exprintf) [! (HAVE_X_WINDOWS && USE_X_TOOLKIT)]: Remove.
15445 * indent.c (check_display_width):
15446 * w32term.c: Fix comment to match code.
15447 * xterm.c, xterm.h (x_catching_errors): Remove.
15448
15449 2011-09-14 Paul Eggert <eggert@cs.ucla.edu>
15450
15451 * xselect.c: Use signed conversions more consistently (Bug#9498).
15452 (selection_data_to_lisp_data): Assume incoming selection data are
15453 signed integers, not unsigned. This is to be consistent with
15454 outgoing selection data, which was modified to use signed integers
15455 in as part of the fix to Bug#9196 in response to Jan D.'s comment
15456 in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9196#32> that X11
15457 expects long, not unsigned long.
15458
15459 2011-09-14 Eli Zaretskii <eliz@gnu.org>
15460
15461 * xdisp.c (try_window_reusing_current_matrix): Fix incorrect
15462 computation of loop end. Reported by Johan Bockgård
15463 <bojohan@gnu.org>.
15464
15465 2011-09-13 Chong Yidong <cyd@stupidchicken.com>
15466
15467 * frame.c (Fother_visible_frames_p): Function deleted.
15468
15469 2011-09-12 Eli Zaretskii <eliz@gnu.org>
15470
15471 * indent.c (compute_motion): Process display vector front to back
15472 rather than the other way around. (Bug#2496)
15473
15474 2011-09-12 Stefan Monnier <monnier@iro.umontreal.ca>
15475
15476 * fileio.c (Finsert_file_contents): Don't assume beg_offset is 0.
15477
15478 2011-09-11 Chong Yidong <cyd@stupidchicken.com>
15479
15480 * minibuf.c (Fread_from_minibuffer): Doc fix.
15481
15482 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15483
15484 * xdisp.c (produce_stretch_glyph): Fix a typo made in changes from
15485 2011-08-30T17:32:44Z!eliz@gnu.org. (Bug#9475)
15486
15487 2011-09-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
15488
15489 * fileio.c (Fvisited_file_modtime): Document `(-1 65535)' as a
15490 value for non-existent files.
15491
15492 2011-09-11 Eli Zaretskii <eliz@gnu.org>
15493
15494 * fileio.c (Finsert_file_contents): If the file cannot be opened,
15495 set its "size" to -1. This will set the modtime_size field of
15496 the corresponding buffer to -1, which is what
15497 verify-visited-file-modtime expects for files that do not exist.
15498 (Bug#9139)
15499
15500 2011-09-11 Paul Eggert <eggert@cs.ucla.edu>
15501
15502 * keymap.h (KEY_DESCRIPTION_SIZE, push_key_description): Move decls
15503 here ...
15504 * lisp.h: ... from here. push_key_description is no longer
15505 defined in keyboard.c, so its declaration should not be in
15506 lisp.h's "Defined in keyboard.c" section, and KEY_DESCRIPTION_SIZE
15507 logically belongs with push_key_description.
15508
15509 2011-09-10 Paul Eggert <eggert@cs.ucla.edu>
15510
15511 * buffer.h: Include <sys/types.h> instead of <time.h>.
15512 Otherwise, off_t wasn't defined on FreeBSD 9.0-BETA2 i386.
15513 Problem reported by Herbert J. Skuhra.
15514
15515 2011-09-10 Lars Magne Ingebrigtsen <larsi@gnus.org>
15516
15517 * xml.c (parse_region): Make the parsing work for
15518 non-comment-starting XML files again (bug#9144).
15519
15520 2011-09-10 Andreas Schwab <schwab@linux-m68k.org>
15521
15522 * image.c (gif_load): Fix calculation of bottom and right corner.
15523 (Bug#9468)
15524
15525 2011-09-10 Eli Zaretskii <eliz@gnu.org>
15526
15527 * xdisp.c (MAX_DISP_SCAN): Decrease to 250. Prevents sluggish
15528 redisplay in small windows.
15529
15530 2011-09-09 Eli Zaretskii <eliz@gnu.org>
15531
15532 * frame.c (x_report_frame_params): Cast to avoid compiler warnings.
15533
15534 2011-09-08 Martin Rudalics <rudalics@gmx.at>
15535
15536 * window.c (Fset_window_prev_buffers, Fset_window_next_buffers):
15537 Operate on live windows only.
15538
15539 2011-09-08 Juanma Barranquero <lekktu@gmail.com>
15540
15541 * emacs.c (my_heap_start): #ifdef to avoid warnings when unused.
15542
15543 2011-09-07 Eli Zaretskii <eliz@gnu.org>
15544
15545 * xdisp.c (move_it_in_display_line_to): Call RESTORE_IT on ppos_it
15546 only under bidi iteration.
15547
15548 2011-09-07 Jan Djärv <jan.h.d@swipnet.se>
15549
15550 * gtkutil.c (xg_make_tool_item): Insert comment about eventbox.
15551
15552 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15553
15554 isnan: Fix porting problem to Solaris 10 with bundled gcc.
15555 Without this fix, the command to link temacs failed due to an
15556 undefined symbol __builtin_isnan. This is because
15557 /usr/include/iso/math_c99.h #defines isnan(x) to
15558 __builtin_isnan(x), but the bundled gcc, which identifies itself
15559 as gcc 3.4.3 (csl-sol210-3_4-branch+sol_rpath), does not have
15560 a __builtin_isnan.
15561 * floatfns.c (isnan): #undef, and then #define to a clone of
15562 what's in data.c.
15563 (Fisnan): Always define, since it's always available now.
15564 (syms_of_floatfns): Always define isnan at the Lisp level.
15565
15566 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15567
15568 * Makefile.in (gl-stamp): move-if-change now in build-aux (Bug#9169).
15569
15570 2011-09-06 Paul Eggert <eggert@cs.ucla.edu>
15571
15572 * fileio.c: Fix bugs with large file offsets (Bug#9428).
15573 The previous code assumed that file offsets (off_t values) fit in
15574 EMACS_INT variables, which is not true on typical 32-bit hosts.
15575 The code messed up by falsely reporting buffer overflow in cases
15576 such as (insert-file-contents "big" nil 1 2) into an empty buffer
15577 when "big" contains more than 2**29 bytes, even though this
15578 inserts just one byte and does not overflow the buffer.
15579 (Finsert_file_contents): Store file offsets as off_t
15580 values, not as EMACS_INT values. Check for overflow when
15581 converting between EMACS_INT and off_t. When checking for
15582 buffer overflow or for overlap, take the offsets into account.
15583 Don't use EMACS_INT for small values where int suffices.
15584 When checking for overlap, fix a typo: ZV was used where
15585 ZV_BYTE was intended.
15586 (Fwrite_region): Don't assume off_t fits into 'long'.
15587 * buffer.h (struct buffer.modtime_size): Now off_t, not EMACS_INT.
15588
15589 2011-09-05 Michael Albinus <michael.albinus@gmx.de>
15590
15591 * dbusbind.c (xd_signature_cat): Rename from signature_cat.
15592
15593 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15594
15595 sprintf-related integer and memory overflow issues (Bug#9412).
15596
15597 * doprnt.c (doprnt): Support printing ptrdiff_t and intmax_t values.
15598 (esprintf, exprintf, evxprintf): New functions.
15599 * keyboard.c (command_loop_level): Now EMACS_INT, not int.
15600 (cmd_error): Kbd macro iterations count is now EMACS_INT, not int.
15601 (modify_event_symbol): Do not assume that the length of
15602 name_alist_or_stem is safe to alloca and fits in int.
15603 (Fexecute_extended_command): Likewise for function name and binding.
15604 (Frecursion_depth): Wrap around reliably on integer overflow.
15605 * keymap.c (push_key_description): First arg is now EMACS_INT, not int,
15606 since some callers pass EMACS_INT values.
15607 (Fsingle_key_description): Don't crash if symbol name contains more
15608 than MAX_ALLOCA bytes.
15609 * minibuf.c (minibuf_level): Now EMACS_INT, not int.
15610 (get_minibuffer): Arg is now EMACS_INT, not int.
15611 * lisp.h (get_minibuffer, push_key_description): Reflect API changes.
15612 (esprintf, exprintf, evxprintf): New decls.
15613 * window.h (command_loop_level, minibuf_level): Reflect API changes.
15614
15615 * dbusbind.c (signature_cat): New function.
15616 (xd_signature, Fdbus_register_signal):
15617 Do not overrun buffer; instead, report string overflow.
15618
15619 * dispnew.c (add_window_display_history): Don't overrun buffer.
15620 Truncate instead; this is OK since it's just a log.
15621
15622 * editfns.c (Fcurrent_time_zone): Don't overrun buffer
15623 even if the time zone offset is outlandishly large.
15624 Don't mishandle offset == INT_MIN.
15625
15626 * emacs.c (main) [NS_IMPL_COCOA]: Don't overrun buffer
15627 when creating daemon; the previous buffer-overflow check was incorrect.
15628
15629 * eval.c (verror): Simplify by rewriting in terms of evxprintf,
15630 which has the guts of the old verror function.
15631
15632 * filelock.c (lock_file_1, lock_file): Don't blindly alloca long name;
15633 use SAFE_ALLOCA instead. Use esprintf to avoid int-overflow issues.
15634
15635 * font.c: Include <float.h>, for DBL_MAX_10_EXP.
15636 (font_unparse_xlfd): Don't blindly alloca long strings.
15637 Don't assume XINT result fits in int, or that XFLOAT_DATA * 10
15638 fits in int, when using sprintf. Use single snprintf to count
15639 length of string rather than counting it via multiple sprintfs;
15640 that's simpler and more reliable.
15641 (font_unparse_fcname): Use it to avoid sprintf buffer overrun.
15642 (generate_otf_features) [0 && HAVE_LIBOTF]: Use esprintf, not
15643 sprintf, in case result does not fit in int.
15644
15645 * fontset.c (num_auto_fontsets): Now printmax_t, not int.
15646 (fontset_from_font): Print it.
15647
15648 * frame.c (tty_frame_count): Now printmax_t, not int.
15649 (make_terminal_frame, set_term_frame_name): Print it.
15650 (x_report_frame_params): In X, window IDs are unsigned long,
15651 not signed long, so print them as unsigned.
15652 (validate_x_resource_name): Check for implausibly long names,
15653 and don't assume name length fits in 'int'.
15654 (x_get_resource_string): Don't blindly alloca invocation name;
15655 use SAFE_ALLOCA. Use esprintf, not sprintf, in case result does
15656 not fit in int.
15657
15658 * gtkutil.c: Include <float.h>, for DBL_MAX_10_EXP.
15659 (xg_check_special_colors, xg_set_geometry):
15660 Make sprintf buffers a bit bigger, to avoid potential buffer overrun.
15661
15662 * lread.c (dir_warning): Don't blindly alloca buffer; use SAFE_ALLOCA.
15663 Use esprintf, not sprintf, in case result does not fit in int.
15664
15665 * macros.c (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15666 (Fend_kbd_macro): Don't mishandle MOST_NEGATIVE_FIXNUM by treating
15667 it as a large positive number.
15668 (Fexecute_kbd_macro): Don't assume repeat count fits in int.
15669 * macros.h (executing_kbd_macro_iterations): Now EMACS_INT, not int.
15670
15671 * nsterm.m ((NSSize)windowWillResize): Use esprintf, not sprintf,
15672 in case result does not fit in int.
15673
15674 * print.c (float_to_string): Detect width overflow more reliably.
15675 (print_object): Make sprintf buffer a bit bigger, to avoid potential
15676 buffer overrun. Don't assume list length fits in 'int'. Treat
15677 print length of 0 as 0, not as infinity; to be consistent with other
15678 uses of print length in this function. Don't overflow print length
15679 index. Don't assume hash table size fits in 'long', or that
15680 vectorlike size fits in 'unsigned long'.
15681
15682 * process.c (make_process): Use printmax_t, not int, to format
15683 process-name gensyms.
15684
15685 * sysdep.c (snprintf) [! HAVE_SNPRINTF]: New function.
15686
15687 * term.c (produce_glyphless_glyph): Make sprintf buffer a bit bigger
15688 to avoid potential buffer overrun.
15689
15690 * xfaces.c (x_update_menu_appearance): Don't overrun buffer
15691 if X resource line is longer than 512 bytes.
15692
15693 * xfns.c (x_window): Make sprintf buffer a bit bigger
15694 to avoid potential buffer overrun.
15695
15696 * xterm.c (x_io_error_quitter): Don't overrun sprintf buffer.
15697
15698 * xterm.h (x_check_errors): Add ATTRIBUTE_FORMAT_PRINTF.
15699
15700 2011-09-04 Paul Eggert <eggert@cs.ucla.edu>
15701
15702 Integer overflow fixes for scrolling, etc.
15703 Without these, Emacs silently mishandles large integers sometimes.
15704 For example, "C-u 4294967297 M-x recenter" was treated as if
15705 it were "C-u 1 M-x recenter" on a typical 64-bit host.
15706
15707 * xdisp.c (try_window_id): Check Emacs fixnum range before
15708 converting to 'int'.
15709
15710 * window.c (window_scroll_line_based, Frecenter):
15711 Check that an Emacs fixnum is in range before assigning it to 'int'.
15712 (Frecenter, Fmove_to_window_line): Use EMACS_INT, not int, for
15713 values converted from Emacs fixnums.
15714 (Frecenter): Don't wrap around a line count if it is out of 'int'
15715 range; instead, treat it as an extreme value.
15716 (Fset_window_configuration, compare_window_configurations):
15717 Use ptrdiff_t, not int, for index that might exceed 2 GiB.
15718
15719 * search.c (Freplace_match): Use ptrdiff_t, not int, for indexes
15720 that can exceed INT_MAX. Check that EMACS_INT value is in range
15721 before assigning it to the (possibly-narrower) index.
15722 (match_limit): Don't assume that a fixnum can fit in 'int'.
15723
15724 * print.c (print_object): Use ptrdiff_t, not int, for index that can
15725 exceed INT_MAX.
15726
15727 * indent.c (position_indentation): Now takes ptrdiff_t, not int.
15728 (Fvertical_motion): Don't wrap around LINES values that don't fit
15729 in 'int'. Instead, treat them as extreme values. This is good
15730 enough for windows, which can't have more than INT_MAX lines anyway.
15731
15732 2011-09-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
15733
15734 * Require libxml/parser.h to avoid compilation warning.
15735
15736 * emacs.c (shut_down_emacs): Call xmlCleanupParser on shutdown.
15737
15738 * xml.c (parse_region): Don't call xmlCleanupParser after parsing,
15739 since this reportedly can destroy thread storage.
15740
15741 2011-08-30 Chong Yidong <cyd@stupidchicken.com>
15742
15743 * syntax.c (find_defun_start): Update all cache variables if
15744 exiting early (Bug#9401).
15745
15746 2011-08-30 Eli Zaretskii <eliz@gnu.org>
15747
15748 * image.c (x_bitmap_pixmap): Cast to int to avoid compiler warnings.
15749
15750 * xdisp.c (produce_stretch_glyph): No longer static, compiled also
15751 when HAVE_WINDOW_SYSTEM is not defined. Support both GUI and TTY
15752 frames. Call tty_append_glyph in the TTY case. (Bug#9402)
15753
15754 * term.c (tty_append_glyph): New function.
15755 (produce_stretch_glyph): Static function and its prototype deleted.
15756
15757 * dispextern.h (produce_stretch_glyph, tty_append_glyph):
15758 Add prototypes.
15759
15760 2011-08-29 Paul Eggert <eggert@cs.ucla.edu>
15761
15762 * image.c (parse_image_spec): Check for nonnegative, not for positive,
15763 when checking :margin (Bug#9390).
15764 (IMAGE_NON_NEGATIVE_INTEGER_VALUE_OR_PAIR):
15765 Rename from IMAGE_POSITIVE_INTEGER_VALUE_OR_PAIR,
15766 so that the name doesn't mislead. All uses changed.
15767
15768 2011-08-28 Johan Bockgård <bojohan@gnu.org>
15769
15770 * term.c (init_tty) [HAVE_GPM]: Move mouse settings after
15771 set_tty_hooks.
15772
15773 2011-08-27 Eli Zaretskii <eliz@gnu.org>
15774
15775 * xdisp.c (move_it_to): Don't bail out early when reaching
15776 position beyond to_charpos, if we are scanning backwards.
15777 (move_it_vertically_backward): When DY == 0, make sure we get to
15778 the first character in the line after the newline.
15779
15780 2011-08-27 Paul Eggert <eggert@cs.ucla.edu>
15781
15782 * ccl.c: Improve and simplify overflow checking (Bug#9196).
15783 (ccl_driver): Do not generate an out-of-range pointer.
15784 (Fccl_execute_on_string): Remove unnecessary check for
15785 integer overflow, noted by Stefan Monnier in
15786 <http://lists.gnu.org/archive/html/emacs-devel/2011-08/msg00979.html>.
15787 Remove a FIXME that didn't need fixing.
15788 Simplify the newly-introduced buffer reallocation code.
15789
15790 2011-08-27 Juanma Barranquero <lekktu@gmail.com>
15791
15792 * makefile.w32-in ($(BLD)/alloc.$(O)): Depend on lib/verify.h.
15793
15794 2011-08-26 Paul Eggert <eggert@cs.ucla.edu>
15795
15796 Integer and memory overflow issues (Bug#9196).
15797
15798 * doc.c (get_doc_string): Rework so that
15799 get_doc_string_buffer_size is the actual buffer size, rather than
15800 being 1 less than the actual buffer size; this makes xpalloc more
15801 convenient.
15802
15803 * image.c (x_allocate_bitmap_record, cache_image):
15804 * xselect.c (Fx_register_dnd_atom):
15805 Simplify previous changes by using xpalloc.
15806
15807 * buffer.c (overlay_str_len): Now ptrdiff_t, not EMACS_INT,
15808 since either will do and ptrdiff_t is convenient with xpalloc.
15809
15810 * charset.c (charset_table_size)
15811 (struct charset_sort_data.priority): Now ptrdiff_t.
15812 (charset_compare): Don't overflow if priorities differ greatly.
15813 (Fsort_charsets): Don't assume list length fits in int.
15814 Check for size-calculation overflow when allocating sort data.
15815 (syms_of_charset): Allocate an initial charset table that is
15816 just under 64 KiB, to avoid problems with glibc malloc and mmap.
15817
15818 * cmds.c (internal_self_insert): Check for size-calculation overflow.
15819
15820 * composite.h (struct composition.glyph_len): Now int, not unsigned.
15821 The actual value is always <= INT_MAX, and leaving it unsigned made
15822 overflow checking harder.
15823
15824 * dispextern.h (struct glyph_matrix.rows_allocated)
15825 (struct face_cache.size): Now ptrdiff_t, for convenience in use
15826 with xpalloc. The values are still always <= INT_MAX.
15827
15828 * indent.c (compute_motion): Adjust to region_cache_forward sig change.
15829
15830 * lisp.h (xnmalloc, xnrealloc, xpalloc): New decls.
15831 (SAFE_NALLOCA): New macro.
15832
15833 * region-cache.c (struct boundary.pos, find_cache_boundary)
15834 (move_cache_gap, insert_cache_boundary, delete_cache_boundaries)
15835 (set_cache_region, invalidate_region_cache)
15836 (revalidate_region_cache, know_region_cache, region_cache_forward)
15837 (region_cache_backward, pp_cache):
15838 Use ptrdiff_t, not EMACS_INT, since either will do. This is needed
15839 so that ptrdiff_t * can be passed to xpalloc.
15840 (struct region_cache): Similarly, for gap_start, gap_len, cache_len,
15841 beg_unchanged, end_unchanged, buffer_beg, buffer_end members.
15842 (pp_cache): Don't assume cache_len fits in int.
15843 * region-cache.h: Adjust extern decls to match.
15844
15845 * search.c (scan_buffer, Freplace_match): Use ptrdiff_t, not
15846 EMACS_INT, since either will do, for xpalloc.
15847
15848 * alloc.c: Include verify.h, and check that int fits in ptrdiff_t.
15849 (xnmalloc, xnrealloc, xpalloc): New functions.
15850
15851 * bidi.c (bidi_shelve_header_size): New constant.
15852 (bidi_cache_ensure_space, bidi_shelve_cache): Use it.
15853 (bidi_cache_ensure_space): Avoid integer overflow when allocating.
15854
15855 * bidi.c (bidi_cache_shrink):
15856 * buffer.c (overlays_at, overlays_in, record_overlay_string)
15857 (overlay_strings):
15858 Don't update size of array until after memory allocation succeeds,
15859 because xmalloc/xrealloc may not return.
15860 (struct sortstrlist.bytes): Now ptrdiff_t, as EMACS_INT doesn't help
15861 now that we have proper integer overflow checking.
15862 (record_overlay_string, overlay_strings): Catch overflows when
15863 calculating size of overlay_str_buf.
15864
15865 * callproc.c (Fcall_process): Check for size overflow when
15866 calculating size of args2.
15867 (child_setup): Avoid overflow by using size_t rather than ptrdiff_t.
15868 Normally we prefer signed values, but sticking with ptrdiff_t would
15869 require adding more-complicated checks.
15870
15871 * ccl.c (Fccl_execute_on_string): Check for memory overflow.
15872 Use ptrdiff_t rather than EMACS_INT where ptrdiff_t will do.
15873 Redo buffer-overflow calculations to avoid integer overflow.
15874 Add a FIXME comment where memory seems to be over-allocated.
15875
15876 * character.c (Fstring): Check for size-calculation overflow.
15877
15878 * coding.c (produce_chars): Redo buffer-overflow calculations to avoid
15879 unnecessary integer overflow. Check for size overflow.
15880 (encode_coding_object): Don't update size until xmalloc succeeds.
15881
15882 * composite.c (get_composition_id): Check for overflow in glyph
15883 length calculations.
15884
15885 Integer and memory overflow fixes for display code.
15886 * dispextern.h (struct glyph_pool.nglyphs): Now ptrdiff_t, not int.
15887 * dispnew.c (adjust_glyph_matrix, realloc_glyph_pool)
15888 (scrolling_window): Check for overflow in size calculations.
15889 (line_draw_cost, realloc_glyph_pool, add_row_entry):
15890 Don't assume glyph table len fits in int.
15891 (struct row_entry.bucket, row_entry_pool_size, row_entry_idx)
15892 (row_table_size): Now ptrdiff_t, not int.
15893 (scrolling_window): Avoid overflow in size calculations.
15894 Don't update size until allocation succeeds.
15895 * fns.c (concat): Check for overflow in size calculations.
15896 (next_almost_prime): Verify NEXT_ALMOST_PRIME_LIMIT.
15897 * lisp.h (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
15898 (NEXT_ALMOST_PRIME_LIMIT): New constant.
15899
15900 * doc.c (get_doc_string_buffer_size): Now ptrdiff_t, not int.
15901 (get_doc_string): Check for size calculation overflow.
15902 Don't update size until allocation succeeds.
15903 (get_doc_string, Fsubstitute_command_keys): Use ptrdiff_t, not
15904 EMACS_INT, where ptrdiff_t will do.
15905 (Fsubstitute_command_keys): Check for string overflow.
15906
15907 * editfns.c (set_time_zone_rule): Don't assume environment length
15908 fits in int.
15909 (message_length): Now ptrdiff_t, not int.
15910 (Fmessage_box): Don't update size until allocation succeeds.
15911 Don't assume message length fits in int.
15912 (Fformat): Use ptrdiff_t, not EMACS_INT, where ptrdiff_t will do.
15913
15914 * emacs.c (main): Do not reallocate argv, since there is a null at
15915 the end that can be overwritten, and this way there's no need to
15916 worry about size-calculation overflow.
15917 (sort_args): Check for size-calculation overflow.
15918
15919 * eval.c (init_eval_once, grow_specpdl): Don't update size until
15920 alloc succeeds.
15921 (call_debugger, grow_specpdl): Redo calculations to avoid overflow.
15922
15923 * frame.c (set_menu_bar_lines, x_set_frame_parameters)
15924 (x_set_scroll_bar_width, x_figure_window_size):
15925 Check for integer overflow.
15926 (x_set_alpha): Do not assume XINT fits in int.
15927
15928 * frame.h (struct frame): Use int, not EMACS_INT, where int works.
15929 This is for the members text_lines, text_cols, total_lines, total_cols,
15930 where the system imposes an 'int' limit.
15931
15932 * fringe.c (Fdefine_fringe_bitmap):
15933 Don't update size until alloc works.
15934
15935 * ftfont.c (ftfont_get_open_type_spec, setup_otf_gstring)
15936 (ftfont_shape_by_flt): Check for integer overflow in size calculations.
15937
15938 * gtkutil.c (get_utf8_string, xg_store_widget_in_map):
15939 Check for size-calculation overflow.
15940 (get_utf8_string): Use ptrdiff_t, not size_t, where either will
15941 do, as we prefer signed integers.
15942 (id_to_widget.max_size, id_to_widget.used)
15943 (xg_store_widget_in_map, xg_remove_widget_from_map)
15944 (xg_get_widget_from_map, xg_get_scroll_id_for_window)
15945 (xg_remove_scroll_bar, xg_update_scrollbar_pos):
15946 Use and return ptrdiff_t, not int.
15947 (xg_gtk_scroll_destroy): Don't assume ptrdiff_t fits in int.
15948 * gtkutil.h: Change prototypes to match the above.
15949
15950 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): Remove; these
15951 are duplicate now that they've been promoted to lisp.h.
15952 (x_allocate_bitmap_record, x_alloc_image_color)
15953 (make_image_cache, cache_image, xpm_load):
15954 Don't update size until alloc is done.
15955 (xpm_load, lookup_rgb_color, lookup_pixel_color, x_to_xcolors)
15956 (x_detect_edges):
15957 Check for size calculation overflow.
15958 (ct_colors_allocated_max): New constant.
15959 (x_to_xcolors, x_detect_edges): Reorder multiplicands to avoid
15960 overflow.
15961
15962 * keyboard.c (read_char, menu_bar_items, tool_bar_items)
15963 (read_char_x_menu_prompt, read_char_minibuf_menu_width)
15964 (read_char_minibuf_menu_prompt, follow_key, read_key_sequence):
15965 Use ptrdiff_t, not int, to count maps.
15966 (read_char_minibuf_menu_prompt): Check for overflow in size
15967 calculations. Don't update size until allocation succeeds.
15968 Redo calculations to avoid overflow.
15969 * keyboard.h: Change prototypes to match the above.
15970
15971 * keymap.c (cmm_size, current_minor_maps): Use ptrdiff_t, not int,
15972 to count maps.
15973 (current_minor_maps): Check for size calculation overflow.
15974 * keymap.h: Change prototypes to match the above.
15975
15976 * lread.c (read1, init_obarray): Don't update size until alloc done.
15977
15978 * macros.c (Fstart_kbd_macro): Don't update size until alloc done.
15979 (store_kbd_macro_char): Reorder multiplicands to avoid overflow.
15980
15981 * nsterm.h (struct ns_color_table.size, struct ns_color_table.avail):
15982 Now ptrdiff_t, not int.
15983 * nsterm.m (ns_index_color): Use ptrdiff_t, not int, for table indexes.
15984 (ns_draw_fringe_bitmap): Rewrite to avoid overflow.
15985
15986 * process.c (Fnetwork_interface_list): Check for overflow
15987 in size calculation.
15988
15989 * region-cache.c (move_cache_gap): Check for size calculation overflow.
15990
15991 * scroll.c (do_line_insertion_deletion_costs): Check for size calc
15992 overflow. Don't bother calling xmalloc when xrealloc will do.
15993
15994 * search.c (Freplace_match): Check for size calculation overflow.
15995 (Fset_match_data): Don't assume list lengths fit in 'int'.
15996
15997 * sysdep.c (system_process_attributes): Use ptrdiff_t, not int,
15998 for command line length. Do not attempt to address one before the
15999 beginning of an array, as that's not portable.
16000
16001 * term.c (max_frame_lines): Remove; unused.
16002 (encode_terminal_src_size, encode_terminal_dst_size): Now ptrdiff_t,
16003 not int.
16004 (encode_terminal_code, calculate_costs): Check for size
16005 calculation overflow.
16006 (encode_terminal_code): Use ptrdiff_t, not int, to record glyph
16007 table lengths and related sizes. Don't update size until alloc
16008 done. Redo calculations to avoid overflow.
16009 (calculate_costs): Don't bother calling xmalloc when xrealloc will do.
16010
16011 * termcap.c (tgetent): Use ptrdiff_t, not int, to record results of
16012 subtracting pointers.
16013 (gobble_line): Check for overflow more carefully. Don't update size
16014 until alloc done.
16015
16016 * tparam.c (tparam1): Use ptrdiff_t, not int, for sizes.
16017 Don't update size until alloc done.
16018 Redo size calculations to avoid overflow.
16019 Check for size calculation overflow.
16020 (main) [DEBUG]: Fix typo in invoking tparam1.
16021
16022 * xdisp.c (store_mode_line_noprop_char, x_consider_frame_title):
16023 Use ptrdiff_t, not int, for sizes.
16024 (store_mode_line_noprop_char): Don't update size until alloc done.
16025
16026 * xfaces.c (lface_id_to_name_size, Finternal_make_lisp_face):
16027 Use ptrdiff_t, not int, for sizes.
16028 (Finternal_make_lisp_face, cache_face):
16029 Check for size calculation overflow.
16030 (cache_face): Treat size calculation overflows as if they were
16031 memory exhaustion (the usual treatment), rather than aborting.
16032
16033 * xfns.c (x_encode_text, x_set_name_internal)
16034 (Fx_change_window_property): Use ptrdiff_t, not int, to count
16035 sizes, since they can exceed INT_MAX in size. Check for size
16036 calculation overflow.
16037
16038 * xgselect.c (gfds_size): Now ptrdiff_t, for convenience with xpalloc.
16039 (xg_select): Check for size calculation overflow.
16040 Don't update size until alloc done.
16041
16042 * xrdb.c (get_environ_db): Don't assume path length fits in int,
16043 as sprintf is limited to int lengths.
16044
16045 * xselect.c (X_LONG_SIZE, X_SHRT_MAX, X_SHRT_MIN, X_LONG_MAX)
16046 (X_LONG_MIN): New macros.
16047 Use them to make the following changes clearer.
16048 (MAX_SELECTION_QUANTUM): Make the other bounds on this value clearer.
16049 This change doesn't affect the value now, but it may help remind
16050 future maintainers not to raise the value too much later.
16051 (SELECTION_QUANTUM): Remove, replacing with ...
16052 (selection_quantum): ... new function, which avoids overflow.
16053 All uses changed.
16054 (struct selection_data.size): Now ptrdiff_t, not int, to avoid
16055 assumption that selection length fits in 'int'.
16056 (x_reply_selection_request, x_handle_selection_request)
16057 (x_get_window_property, receive_incremental_selection)
16058 (x_get_window_property_as_lisp_data, selection_data_to_lisp_data)
16059 (lisp_data_to_selection_data, clean_local_selection_data):
16060 Use ptrdiff_t, not int, to record length of selection.
16061 (x_reply_selection_request, x_get_window_property)
16062 (receive_incremental_selection, x_property_data_to_lisp):
16063 Redo calculations to avoid overflow.
16064 (x_reply_selection_request): When sending hint, ceiling it at
16065 X_LONG_MAX rather than relying on wraparound overflow to send
16066 something.
16067 (x_get_window_property, receive_incremental_selection)
16068 (lisp_data_to_selection_data, x_property_data_to_lisp):
16069 Check for size-calculation overflow.
16070 (x_get_window_property, receive_incremental_selection)
16071 (lisp_data_to_selection_data, Fx_register_dnd_atom):
16072 Don't store size until memory allocation succeeds.
16073 (x_get_window_property): Plug memory leak on memory exhaustion.
16074 Don't double-block input; malloc is safe here. Don't assume 2**34
16075 - 4 fits in unsigned long. Add an xassert to check
16076 XGetWindowProperty overflow. Be more careful about overflow
16077 calculations, and distinguish size from memory overflow better.
16078 (receive_incremental_selection): When tracing, don't assume
16079 unsigned int is less than INT_MAX.
16080 (x_selection_data_to_lisp_data): Remove unnecessary (and in theory
16081 harmful) conversions of unsigned short to int.
16082 (lisp_data_to_selection_data): Don't assume that integers
16083 in the range -65535 through -1 fit in an X unsigned short.
16084 Don't assume that ULONG_MAX == X_ULONG_MAX. Don't store into
16085 result parameters unless successful. Rely on cons_to_unsigned
16086 to report problems with elements; the old code wasn't right anyway.
16087 (x_check_property_data): Check for int overflow; we cannot use
16088 a wider type due to X limits.
16089 (x_handle_dnd_message): Use unsigned int, to avoid int overflow.
16090
16091 * xsmfns.c (smc_save_yourself_CB): Check for size calc overflow.
16092
16093 * xterm.c (x_color_cells, x_send_scrollbar_event, handle_one_xevent)
16094 (x_term_init): Check for size calculation overflow.
16095 (x_color_cells): Don't store size until memory allocation succeeds.
16096 (handle_one_xevent): Use ptrdiff_t, not int, for byte counts.
16097 Don't assume alloca size is less than MAX_ALLOCA.
16098 (x_term_init): Don't assume length fits in int (sprintf is limited
16099 to int size).
16100
16101 Use ptrdiff_t for composition IDs.
16102 * character.c (lisp_string_width):
16103 * composite.c (composition_table_size, n_compositions)
16104 (get_composition_id, composition_gstring_from_id):
16105 * dispextern.h (struct glyph_string.cmp_id, struct composition_it.id):
16106 * xdisp.c (BUILD_COMPOSITE_GLYPH_STRING):
16107 * window.c (Frecenter):
16108 Use ptrdiff_t, not int, for composition IDs.
16109 * composite.c (get_composition_id): Check for integer overflow.
16110 * composite.h: Adjust prototypes to match the above changes.
16111
16112 Use ptrdiff_t for hash table indexes.
16113 * category.c (hash_get_category_set):
16114 * ccl.c (ccl_driver):
16115 * charset.h (struct charset.hash_index, CHECK_CHARSET_GET_ID):
16116 * coding.c (coding_system_charset_list, detect_coding_system):
16117 * coding.h (struct coding_system.id):
16118 * composite.c (get_composition_id, gstring_lookup_cache):
16119 * fns.c (hash_lookup, hash_put, Fgethash, Fputhash):
16120 * image.c (xpm_get_color_table_h):
16121 * lisp.h (hash_lookup, hash_put):
16122 * minibuf.c (Ftest_completion):
16123 Use ptrdiff_t for hash table indexes, not int (which is too
16124 narrow, on 64-bit hosts) or EMACS_INT (which is too wide, on
16125 32-bit --with-wide-int hosts).
16126
16127 * charset.c (Fdefine_charset_internal): Check for integer overflow.
16128 Add a FIXME comment about memory leaks.
16129 (syms_of_charset): Don't assume xmalloc returns.
16130
16131 Don't assume that stated character widths fit in int.
16132 * character.c (Fchar_width, c_string_width, lisp_string_width):
16133 * character.h (CHAR_WIDTH):
16134 * indent.c (MULTIBYTE_BYTES_WIDTH):
16135 Use sanitize_char_width to avoid undefined and/or bad behavior
16136 with outlandish widths.
16137 * character.h (sanitize_tab_width): Rename from sanitize_width,
16138 now that we have two such functions. All uses changed.
16139 (sanitize_char_width): New inline function.
16140
16141 Don't assume that tab-width fits in int.
16142 * character.h (sanitize_width): New inline function.
16143 (SANE_TAB_WIDTH): New macro.
16144 (ASCII_CHAR_WIDTH): Use it.
16145 * indent.c (sane_tab_width): Remove. All uses replaced by
16146 SANE_TAB_WIDTH (current_buffer).
16147 * xdisp.c (init_iterator): Use SANE_TAB_WIDTH.
16148
16149 * fileio.c: Integer overflow issues with file modes.
16150 (Fset_file_modes, auto_save_1): Don't assume EMACS_INT fits in int.
16151
16152 * charset.c (read_hex): New arg OVERFLOW. All uses changed.
16153 Remove unreachable code.
16154 (read_hex, load_charset_map_from_file): Check for integer overflow.
16155
16156 * xterm.c: Don't go over XClientMessageEvent limit.
16157 (scroll_bar_windows_size): Now ptrdiff_t, as we prefer signed.
16158 (x_send_scroll_bar_event): Likewise. Check that the size does not
16159 exceed limits imposed by XClientMessageEvent, as well as the usual
16160 ptrdiff_t and size_t limits.
16161
16162 * keyboard.c: Overflow, signedness and related fixes.
16163 (make_lispy_movement): Use same integer type in forward decl
16164 that is used in the definition.
16165 (read_key_sequence, keyremap_step):
16166 Change bufsize argument back to int, undoing my 2011-03-30 change.
16167 We prefer signed types, and int is wide enough here.
16168 (parse_tool_bar_item): Don't assume tool_bar_max_label_size is less
16169 than TYPE_MAXIMUM (EMACS_INT) / 2. Don't let the label size grow
16170 larger than STRING_BYTES_BOUND. Use ptrdiff_t for Emacs string
16171 length, not size_t. Use ptrdiff_t for index, not int.
16172 (keyremap_step, read_key_sequence): Redo bufsize check to avoid
16173 possibility of integer overflow.
16174
16175 Overflow, signedness and related fixes for images.
16176
16177 * dispextern.h (struct it.stack[0].u.image.image_id)
16178 (struct_it.image_id, struct image.id, struct image_cache.size)
16179 (struct image_cache.used, struct image_cache.ref_count):
16180 * gtkutil.c (update_frame_tool_bar):
16181 * image.c (x_reference_bitmap, Fimage_size, Fimage_mask_p)
16182 (Fimage_metadata, free_image_cache, clear_image_cache, lookup_image)
16183 (cache_image, mark_image_cache, x_kill_gs_process, Flookup_image):
16184 * nsmenu.m (update_frame_tool_bar):
16185 * xdisp.c (calc_pixel_width_or_height):
16186 * xfns.c (image_cache_refcount):
16187 Image IDs are now ptrdiff_t, not int, to avoid arbitrary limits
16188 on typical 64-bit hosts.
16189
16190 * image.c (RANGED_INTEGERP, TYPE_RANGED_INTEGERP): New macros.
16191 (x_bitmap_pixmap, x_create_x_image_and_pixmap):
16192 Omit unnecessary casts to int.
16193 (parse_image_spec): Check that integers fall into 'int' range
16194 when the callers expect that.
16195 (image_ascent): Redo ascent calculation to avoid int overflow.
16196 (clear_image_cache): Avoid overflow when sqrt (INT_MAX) < nimages.
16197 (lookup_image): Remove unnecessary tests.
16198 (xbm_image_p): Locals are now of int, not EMACS_INT,
16199 since parse_image_check makes sure they fit into int.
16200 (png_load, gif_load, svg_load_image):
16201 Prefer int to unsigned where either will do.
16202 (tiff_handler): New function, combining the cores of the
16203 old tiff_error_handler and tiff_warning_handler.
16204 This function is rewritten to use vsnprintf and thereby avoid
16205 stack buffer overflows. It uses only the features of vsnprintf
16206 that are common to both POSIX and native Microsoft.
16207 (tiff_error_handler, tiff_warning_handler): Use it.
16208 (tiff_load, gif_load, imagemagick_load_image):
16209 Don't assume :index value fits in 'int'.
16210 (gif_load): Omit unnecessary cast to double, and avoid double-rounding.
16211 (imagemagick_load_image): Check that crop parameters fit into
16212 the integer types that MagickCropImage accepts. Don't assume
16213 Vimagemagick_render_type has a nonnegative value. Don't assume
16214 size_t fits in 'long'.
16215 (gs_load): Use printmax_t to print the widest integers possible.
16216 Check for integer overflow when computing image height and width.
16217
16218 2011-08-26 Eli Zaretskii <eliz@gnu.org>
16219
16220 * xdisp.c (redisplay_window): Don't force window start if point
16221 will be invisible in the resulting window. (Bug#9324)
16222
16223 2011-08-25 Eli Zaretskii <eliz@gnu.org>
16224
16225 * xdisp.c (compute_display_string_pos): Return 2 in DISP_PROP when
16226 the display spec is of the form `(space ...)'.
16227 (handle_display_spec): Return the value returned by
16228 handle_single_display_spec, not just 1 or zero.
16229 (handle_single_display_spec): If the display spec is of the form
16230 `(space ...)', and specifies display in the text area, return 2
16231 rather than 1.
16232 (try_cursor_movement): Check for the need to scroll more
16233 accurately, and prefer exact match for point under bidi.
16234 Don't advance `row' beyond the last row of the window.
16235
16236 * dispextern.h (struct bidi_it): Rename the disp_prop_p member
16237 into disp_prop; all users changed.
16238
16239 * bidi.c (bidi_fetch_char): If compute_display_string_pos returns
16240 DISP_PROP = 2, substitute the u+2029 PARAGRAPH SEPARATOR character
16241 for the text covered by the display property.
16242
16243 2011-08-25 Chong Yidong <cyd@stupidchicken.com>
16244
16245 * buffer.c (Fbury_buffer_internal): Rename from Funrecord_buffer.
16246 Change return value to nil.
16247 (Frecord_buffer): Delete unused function.
16248
16249 2011-08-24 Eli Zaretskii <eliz@gnu.org>
16250
16251 * xdisp.c (Fcurrent_bidi_paragraph_direction): For unibyte
16252 buffers, return left-to-right.
16253 (set_cursor_from_row): Consider candidate row a win if its glyph
16254 represents a newline and point is on that newline. Fixes cursor
16255 positioning on the newline at EOL of R2L text within L2R
16256 paragraph, and vice versa.
16257 (try_cursor_movement): Check continued rows, in addition to
16258 continuation rows. Fixes unwarranted scroll when point enters a
16259 continued line of R2L text within an L2R paragraph, or vice versa.
16260 (cursor_row_p): Consider the case of point being equal to
16261 MATRIX_ROW_END_CHARPOS. Prevents cursor being stuck when moving
16262 from the end of a short line to the beginning of a continued line
16263 of R2L text within L2R paragraph.
16264 (RECORD_MAX_MIN_POS): For max_pos, use IT_CHARPOS even for
16265 composed characters.
16266
16267 * bidi.c (bidi_check_type): Use xassert.
16268 (bidi_cache_iterator_state): Update the disp_pos and disp_prop_p
16269 members.
16270
16271 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16272
16273 * bidi.c (bidi_get_type): Abort if we get zero as the bidi type of
16274 a character.
16275
16276 2011-08-23 Chong Yidong <cyd@stupidchicken.com>
16277
16278 * nsfont.m (ns_otf_to_script): Fix typo.
16279
16280 2011-08-22 Kenichi Handa <handa@m17n.org>
16281
16282 * chartab.c (Fset_char_table_extra_slot): Do not inhibit setting a
16283 extra slot even if the purpose is char-code-property-table.
16284
16285 2011-08-23 Eli Zaretskii <eliz@gnu.org>
16286
16287 * xdisp.c (redisplay_window): When computing centering_position,
16288 account for the height of the header line. (Bug#8874)
16289
16290 * dispnew.c (buffer_posn_from_coords): Use buf_charpos_to_bytepos
16291 instead of CHAR_TO_BYTE. Fixes a crash when a completion
16292 candidate is selected by the mouse, and that candidate has a
16293 composed character under the mouse.
16294
16295 * xdisp.c (x_produce_glyphs): Set it->nglyphs to 1. Fixes pixel
16296 coordinates reported by pos-visible-in-window-p for a composed
16297 character in column zero.
16298
16299 2011-08-23 Stefan Monnier <monnier@iro.umontreal.ca>
16300
16301 * cmds.c (Fself_insert_command): Mention post-self-insert-hook.
16302
16303 2011-08-22 Eli Zaretskii <eliz@gnu.org>
16304
16305 * xdisp.c (BUFFER_POS_REACHED_P): If this is a composition,
16306 consider it a hit if to_charpos is anywhere in the range of the
16307 composed buffer positions.
16308
16309 2011-08-22 Chong Yidong <cyd@stupidchicken.com>
16310
16311 * image.c (gif_load): Don't assume that each subimage has the same
16312 dimensions as the base image. Handle disposal method that is
16313 "undefined" by the gif spec (Bug#9335).
16314
16315 2011-08-20 Chong Yidong <cyd@stupidchicken.com>
16316
16317 * eval.c (Fsignal): Handle `debug' symbol in error handler (Bug#9329).
16318 (Fcondition_case): Document `debug' symbol in error handler.
16319
16320 2011-08-19 Eli Zaretskii <eliz@gnu.org>
16321
16322 * xfaces.c (face_at_buffer_position): Avoid repeated evaluation of
16323 face ID by FACE_FROM_ID, and avoid a crash when mouse is moved
16324 from an Org mode buffer to a Speedbar frame.
16325
16326 * xdisp.c (RECORD_MAX_MIN_POS): If the display element comes from
16327 a composition, take its buffer position from IT->cmp_it.charpos.
16328 Fixes cursor positioning at the beginning of a line that begins
16329 with a composed character.
16330
16331 2011-08-18 Eli Zaretskii <eliz@gnu.org>
16332
16333 * bidi.c (bidi_get_type): If bidi_type_table reports zero as the
16334 character bidirectional type, use STRONG_L instead. Fixes crashes
16335 in a buffer produced by `describe-categories'.
16336
16337 * dispextern.h (struct bidi_it): Move disp_pos and disp_prop_p
16338 members before the level stack, so they would be saved and
16339 restored when copying iterator state. Fixes incorrect reordering
16340 around TABs covered by display properties.
16341
16342 2011-08-18 Andreas Schwab <schwab@linux-m68k.org>
16343
16344 * process.c (Fnetwork_interface_list): Correctly determine buffer size.
16345
16346 2011-08-17 Chong Yidong <cyd@stupidchicken.com>
16347
16348 * eval.c (internal_condition_case, internal_condition_case_1)
16349 (internal_condition_case_2, internal_condition_case_n):
16350 Remove unnecessary aborts (Bug#9081).
16351
16352 2011-08-17 Eli Zaretskii <eliz@gnu.org>
16353
16354 * lread.c (Fload) [DOS_NT]: If `openp' returns -2, but the file
16355 has no `load' handler, try opening the file locally. (Bug#9311)
16356
16357 2011-08-16 Ken Brown <kbrown@cornell.edu>
16358
16359 * gmalloc.c: Expand comment.
16360
16361 2011-08-16 Eli Zaretskii <eliz@gnu.org>
16362
16363 * xdisp.c (set_cursor_from_row): Don't accept a previous candidate
16364 if it fails the cursor_row_p test. Fixes cursor positioning at ZV.
16365
16366 2011-08-16 Ken Brown <kbrown@cornell.edu>
16367
16368 Fix memory allocation problems in Cygwin build (Bug#9273).
16369
16370 * unexcw.c ( __malloc_initialized): Declare external variable.
16371 (fixup_executable): Force the dumped emacs to reinitialize malloc.
16372
16373 * gmalloc.c [CYGWIN] (bss_sbrk_heapbase, bss_sbrk_heapinfo):
16374 New variables.
16375 (malloc_initialize_1) [CYGWIN]: Prepare for reinitializing the
16376 dumped emacs.
16377 (_free_internal_nolock) [CYGWIN]: Ignore requests to free storage
16378 in the static heap.
16379 [CYGWIN] (special_realloc): New function.
16380 (_realloc_internal_nolock) [CYGWIN]: Use the new function on
16381 requests to realloc storage in the static heap.
16382
16383 2011-08-15 Paul Eggert <eggert@cs.ucla.edu>
16384
16385 * bidi.c (bidi_initialize): Remove unused local.
16386
16387 2011-08-15 Eli Zaretskii <eliz@gnu.org>
16388
16389 * bidimirror.h:
16390 * biditype.h: Remove file.
16391 * makefile.w32-in ($(BLD)/bidi.$(O)):
16392 * deps.mk (bidi.o): Remove biditype.h and bidimirror.h.
16393
16394 * dispextern.h: Fix a typo in the comment to bidi_type_t.
16395
16396 * chartab.c: Improve commentary for the uniprop_table API.
16397
16398 * bidi.c (bidi_paragraph_init): Support zero value of
16399 bidi_ignore_explicit_marks_for_paragraph_level.
16400 (bidi_initialize): Use uniprop_table instead of including
16401 biditype.h and bidimirror.h.
16402
16403 * xdisp.c (move_it_in_display_line_to): Don't reset pixel
16404 coordinates of the iterator when restoring from ppos_it.
16405 (Bug#9296)
16406
16407 2011-08-14 Kenichi Handa <handa@m17n.org>
16408
16409 * process.c (create_process): Call setup_process_coding_systems
16410 after the pid of the process is set to -1 (Bug#8162).
16411
16412 2011-08-14 Eli Zaretskii <eliz@gnu.org>
16413
16414 * xdisp.c (move_it_in_display_line_to): Don't invoke
16415 IT_RESET_X_ASCENT_DESCENT when iterator position was restored from
16416 ppos_it. Fixes vertical cursor motion when line beginning is
16417 covered by an image. (Bug#9296)
16418
16419 2011-08-14 Jan Djärv <jan.h.d@swipnet.se>
16420
16421 * nsterm.h (ns_run_ascript): Declare.
16422 (NSAPP_DATA2_RUNASSCRIPT): Define.
16423
16424 * nsfns.m (as_script, as_result, as_status): New static variables.
16425 (ns_run_ascript): New function.
16426 (Fns_do_applescript): Set variables as_*. Make an NSApplicationDefined
16427 event with data2 set to NSAPP_DATA2_RUNASSCRIPT, post it and then start
16428 the event loop. Get status from as_status (Bug#7276).
16429
16430 * nsterm.m (sendEvent): If event is NSApplicationDefined and
16431 data2 is NSAPP_DATA2_RUNASSCRIPT, call ns_run_ascript and then exit
16432 the event loop (Bug#7276).
16433
16434 2011-08-14 Andreas Schwab <schwab@linux-m68k.org>
16435
16436 * gnutls.c (QCgnutls_bootprop_priority)
16437 (QCgnutls_bootprop_trustfiles, QCgnutls_bootprop_keylist)
16438 (QCgnutls_bootprop_crlfiles, QCgnutls_bootprop_callbacks)
16439 (QCgnutls_bootprop_loglevel, QCgnutls_bootprop_hostname)
16440 (QCgnutls_bootprop_min_prime_bits, QCgnutls_bootprop_verify_flags)
16441 (QCgnutls_bootprop_verify_hostname_error)
16442 (QCgnutls_bootprop_callbacks_verify): Rename from
16443 Qgnutls_bootprop_..., all uses changed.
16444
16445 * xfaces.c (QCignore_defface): Rename from Qignore_defface, all
16446 uses changed.
16447
16448 2011-08-14 Paul Eggert <eggert@cs.ucla.edu>
16449
16450 * xfaces.c (Qframe_set_background_mode): Now static.
16451 * dispextern.h (Qframe_set_background_mode): Remove decl.
16452
16453 * process.c (Fnetwork_interface_info): Declare local only if needed.
16454
16455 2011-08-13 Jan Djärv <jan.h.d@swipnet.se>
16456
16457 * process.c: Include ifaddrs.h and net/if_dl.h if available (Bug#8477).
16458 (Fnetwork_interface_list): Allocate in increments of bytes instead
16459 of sizeof (struct ifreq). Iterate over ifconf.ifc_req by counting
16460 bytes (Bug#8477). Count bytes correctly when ifr_addr is a struct
16461 sockaddr.
16462 (struct ifflag_def): notrailers is smart on OSX.
16463 (Fnetwork_interface_info): Handle case when ifr_flags is negative.
16464 Get hardware address with getifaddrs if available.
16465
16466 2011-08-12 Eli Zaretskii <eliz@gnu.org>
16467
16468 * xdisp.c (iterate_out_of_display_property): xassert that
16469 IT->position is set to within IT->object's boundaries. Break from
16470 the loop as soon as EOB is reached; avoids infloops in redisplay
16471 when IT->position is set up wrongly due to some bug.
16472 Set IT->current to match the bidi iterator unconditionally.
16473 (push_display_prop): Allow GET_FROM_STRING as IT->method on
16474 entry. Force push_it to save on the stack the current
16475 buffer/string position, to be restored by pop_it. Fix flags in
16476 the iterator structure wrt the object coming from a display
16477 property, as `line-prefix' and `wrap-prefix' are not ``replacing''
16478 properties. (Bug#9284)
16479
16480 2011-08-09 Andreas Schwab <schwab@linux-m68k.org>
16481
16482 * fontset.c (fontset_get_font_group): Add proper type checks.
16483 (Bug#9172)
16484
16485 2011-08-09 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
16486
16487 * unexmacosx.c (print_load_command_name): Add cases LC_FUNCTION_STARTS
16488 and LC_VERSION_MIN_MACOSX.
16489 (copy_linkedit_data) [LC_FUNCTION_STARTS]: New function.
16490 (dump_it) [LC_FUNCTION_STARTS]: Use it.
16491
16492 2011-08-08 Eli Zaretskii <eliz@gnu.org>
16493
16494 * xdisp.c (forward_to_next_line_start): Allow to use the
16495 no-display-properties-and-no-overlays under bidi display.
16496 Set disp_pos in the bidi iterator to avoid searches for display
16497 properties and overlays.
16498
16499 2011-08-08 Chong Yidong <cyd@stupidchicken.com>
16500
16501 * editfns.c (Fset_time_zone_rule): Document relationship with the
16502 setenv function.
16503
16504 * ftfont.c (ftfont_pattern_entity): Copy the extras argument to
16505 the font entity extracted from the cache (Bug#8109).
16506
16507 2011-08-07 Chong Yidong <cyd@stupidchicken.com>
16508
16509 * composite.c (autocmp_chars): Don't reset point. That is done by
16510 restore_point_unwind (Bug#5984).
16511
16512 2011-08-07 Juri Linkov <juri@jurta.org>
16513
16514 * editfns.c (Fformat_time_string): Doc fix, add tag `usage:'
16515 to show the arg `TIME' instead of `TIMEVAL'.
16516
16517 2011-08-06 Eli Zaretskii <eliz@gnu.org>
16518
16519 * xdisp.c (set_cursor_from_row): Fix cursor positioning when a
16520 display property strides EOL and includes a newline, as in
16521 longlines-mode. (Bug#9254)
16522 (move_it_in_display_line_to): Fix vertical-motion in a buffer with
16523 word-wrap under bidirectional display. (Bug#9224)
16524
16525 * bidi.c (bidi_unshelve_cache): Don't reset the cache if JUST_FREE
16526 is non-zero, even if the data buffer is NULL. Fixes a crash in
16527 vertical-motion with longlines-mode. (Bug#9254)
16528
16529 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16530
16531 * bidi.c <bidi_cache_total_alloc>: Now static.
16532 (bidi_initialize): Initialize bidi_cache_total_alloc.
16533
16534 * xdisp.c (display_line): Release buffer allocated for shelved bidi
16535 cache. (Bug#9221)
16536
16537 * bidi.c (bidi_shelve_cache, bidi_unshelve_cache): Track total
16538 amount allocated this far in `bidi_cache_total_alloc'.
16539 (bidi_unshelve_cache): Accept an additional argument JUST_FREE; if
16540 non-zero, only free the data buffer without restoring the cache
16541 contents. All callers changed.
16542
16543 * dispextern.h (bidi_unshelve_cache): Update prototype.
16544
16545 * xdisp.c (SAVE_IT, pos_visible_p, move_it_in_display_line_to)
16546 (move_it_in_display_line, move_it_to)
16547 (move_it_vertically_backward, move_it_by_lines): Replace the call
16548 to xfree to an equivalent call to bidi_unshelve_cache.
16549 (move_it_in_display_line_to): Fix logic of returning
16550 MOVE_POS_MATCH_OR_ZV in the bidi case. (Bug#9224)
16551
16552 2011-08-05 Eli Zaretskii <eliz@gnu.org>
16553
16554 * xdisp.c (set_cursor_from_row): Prefer the candidate glyph that
16555 came from a string character with a `cursor' property. (Bug#9229)
16556
16557 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16558
16559 * Makefile.in (LIB_PTHREAD): New variable.
16560 (LIBES): Add LIB_PTHREAD (Bug#9216).
16561
16562 * alloc.c, emacs.c, gmalloc.c, gtkutil.c, keyboard.c, syssignal.h:
16563 Rename HAVE_GTK_AND_PTHREAD to HAVE_PTHREAD (Bug#9216).
16564
16565 2011-08-04 Andreas Schwab <schwab@linux-m68k.org>
16566
16567 * regex.c (re_iswctype): Remove some redundant boolean conversions.
16568
16569 2011-08-04 Jan Djärv <jan.h.d@swipnet.se>
16570
16571 * xterm.c (x_find_topmost_parent): New function.
16572 (x_set_frame_alpha): Find topmost parent window with
16573 x_find_topmost_parent and set the property there also (bug#9181).
16574 (handle_one_xevent): Call x_set_frame_alpha on ReparentNotify.
16575
16576 2011-08-04 Paul Eggert <eggert@cs.ucla.edu>
16577
16578 * callproc.c (Fcall_process): Avoid vfork clobbering
16579 the local vars buffer, coding_systems, current_dir.
16580
16581 2011-08-03 Stefan Monnier <monnier@iro.umontreal.ca>
16582
16583 * keymap.c (Fmake_composed_keymap): Move to subr.el.
16584
16585 2011-08-03 Paul Eggert <eggert@cs.ucla.edu>
16586
16587 * fontset.c (dump_fontset) [FONTSET_DEBUG]: Declare EXTERNALLY_VISIBLE
16588 so that it is not optimized away.
16589
16590 * xdisp.c (compute_display_string_pos): Remove unused local.
16591
16592 2011-08-02 Eli Zaretskii <eliz@gnu.org>
16593
16594 Fix slow cursor motion and scrolling in large buffers with
16595 selective display, like Org Mode buffers. (Bug#9218)
16596
16597 * dispextern.h (struct bidi_it): New member disp_prop_p.
16598
16599 * xdisp.c: Remove one-slot cache of display string positions.
16600 (compute_display_string_pos): Accept an additional argument
16601 DISP_PROP_P; callers changed. Scan at most 5K characters forward
16602 for a display string or property. If found, set DISP_PROP_P
16603 non-zero.
16604
16605 * bidi.c (bidi_fetch_char): Accept an additional argument
16606 DISP_PROP_P, and pass it to compute_display_string_pos.
16607 Only handle text covered by a display string if DISP_PROP_P is returned
16608 non-zero. All callers of bidi_fetch_char changed.
16609
16610 2011-08-02 Stefan Monnier <monnier@iro.umontreal.ca>
16611
16612 * keymap.c (Fdefine_key): Fix Lisp_Object/int mixup; apply some CSE.
16613
16614 2010-12-03 Don March <don@ohspite.net>
16615
16616 * keymap.c (Fdefine_key): Fix non-prefix key error message when
16617 last character M-[char] is translated to ESC [char] (bug#7541).
16618
16619 2011-08-02 Kenichi Handa <handa@m17n.org>
16620
16621 * lisp.h (uniprop_table): Extern it.
16622
16623 * chartab.c (uniprop_table): Make it non-static.
16624
16625 2011-08-01 Eli Zaretskii <eliz@gnu.org>
16626
16627 * xdisp.c (forward_to_next_line_start): Accept additional argument
16628 BIDI_IT_PREV, and store into it the state of the bidi iterator had
16629 on the newline.
16630 (reseat_at_next_visible_line_start): Use the bidi iterator state
16631 returned by forward_to_next_line_start to restore the state of
16632 it->bidi_it after backing up to previous newline. (Bug#9212)
16633
16634 2011-07-30 Andreas Schwab <schwab@linux-m68k.org>
16635
16636 * regex.c (re_comp): Protoize.
16637 (re_exec): Fix return type.
16638 (regexec): Fix type of `ret'. (Bug#9203)
16639
16640 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16641
16642 * image.c (check_image_size): Use 1024x1024 if unknown frame (Bug#9189).
16643 This is needed if max-image-size is a floating-point number.
16644
16645 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16646
16647 * print.c (print_object): Print empty symbol as ##.
16648
16649 * lread.c (read1): Read ## as empty symbol.
16650
16651 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16652
16653 * nsfns.m (x_set_foreground_color): Set f->foreground_pixel when
16654 setting frame foreground color (Bug#9175).
16655 (x_set_background_color): Likewise.
16656
16657 * nsmenu.m (-setText): Size tooltip dimensions precisely to
16658 contents (Bug#9176).
16659 (EmacsTooltip -init): Remove bezels and add shadows to
16660 tooltip windows.
16661
16662 * nsterm.m (ns_dumpglyphs_stretch): Avoid overwriting left fringe
16663 or scroll bar (Bug#8470).
16664
16665 * nsfont.m (nsfont_open): Remove assignment to voffset and
16666 unnecessary vars hshink, expand, hd, full_height, min_height.
16667 (nsfont_draw): Use s->ybase as baseline for glyph drawing (Bug#8913).
16668
16669 * nsterm.h (nsfont_info): Remove voffset field.
16670
16671 2011-07-28 Alp Aker <alp.tekin.aker@gmail.com>
16672
16673 Implement strike-through and overline on NextStep (Bug#8863).
16674
16675 * nsfont.m (nsfont_open): Use underline position provided by font,
16676 instead of hard-coded value of 2.
16677 (nsfont_draw): Call ns_draw_text_decoration instead.
16678
16679 * nsterm.h: Add declaration for ns_draw_text_decoration.
16680
16681 * nsterm.m (ns_draw_text_decoration): New function for drawing
16682 underline, overline, and strike-through.
16683 (ns_dumpglyphs_image, ns_dumpglyphs_stretch): Add call to
16684 ns_draw_text_decoration. Change treatment of cursor drawing to
16685 accommodate underlining, etc.
16686
16687 2011-07-28 Eli Zaretskii <eliz@gnu.org>
16688
16689 * buffer.c (init_buffer_once): Set bidi-display-reordering to t by
16690 default.
16691
16692 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16693
16694 * alloc.c (memory_full) [!SYNC_INPUT]: Fix signal-related race.
16695 Without this fix, if a signal arrives just after memory fills up,
16696 'malloc' might be invoked reentrantly.
16697
16698 * image.c (x_check_image_size) [!HAVE_X_WINDOWS]: Return 1.
16699 In other words, assume that every image size is allowed, on non-X
16700 hosts. This assumption is probably wrong, but it lets Emacs compile.
16701
16702 2011-07-28 Andreas Schwab <schwab@linux-m68k.org>
16703
16704 * regex.c (re_iswctype): Convert return values to boolean.
16705
16706 2011-07-28 Eli Zaretskii <eliz@fencepost.gnu.org>
16707
16708 * xdisp.c (compute_display_string_pos): Don't use cached display
16709 string position if the buffer had its restriction changed.
16710 (Bug#9184)
16711
16712 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16713
16714 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
16715
16716 2011-07-28 Paul Eggert <eggert@cs.ucla.edu>
16717
16718 Integer signedness and overflow and related fixes. (Bug#9079)
16719
16720 * bidi.c: Integer size and overflow fixes.
16721 (bidi_cache_size, bidi_cache_idx, bidi_cache_last_idx)
16722 (bidi_cache_start, bidi_cache_fetch_state, bidi_cache_search)
16723 (bidi_cache_find_level_change, bidi_cache_ensure_space)
16724 (bidi_cache_iterator_state, bidi_cache_find, bidi_cache_start_stack)
16725 (bidi_find_other_level_edge):
16726 Use ptrdiff_t instead of EMACS_INT where either will do.
16727 This works better on 32-bit hosts configured --with-wide-int.
16728 (bidi_cache_ensure_space): Check for size-calculation overflow.
16729 Use % rather than repeated addition, for better worst-case speed.
16730 Don't set bidi_cache_size until after xrealloc returns, because it
16731 might not return.
16732 (bidi_dump_cached_states): Use ptrdiff_t, not int, to avoid overflow.
16733 (bidi_cache_ensure_space): Also check that the bidi cache size
16734 does not exceed that of the largest Lisp string or buffer. See Eli
16735 Zaretskii in <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#29>.
16736
16737 * alloc.c (__malloc_size_t): Remove.
16738 All uses replaced by size_t. See Andreas Schwab's note
16739 <http://debbugs.gnu.org/cgi/bugreport.cgi?bug=9079#8>.
16740
16741 * image.c: Improve checking for integer overflow.
16742 (check_image_size): Assume that f is nonnull, since
16743 it is always nonnull in practice. This is one less thing to
16744 worry about when checking for integer overflow later.
16745 (x_check_image_size): New function, which checks for integer
16746 overflow issues inside X.
16747 (x_create_x_image_and_pixmap, xbm_read_bitmap_data): Use it.
16748 This removes the need for a memory_full check.
16749 (xbm_image_p): Rewrite to avoid integer multiplication overflow.
16750 (Create_Pixmap_From_Bitmap_Data, xbm_load): Use x_check_image_size.
16751 (xbm_read_bitmap_data): Change locals back to 'int', since
16752 their values must fit in 'int'.
16753 (xpm_load_image, png_load, tiff_load):
16754 Invoke x_create_x_image_and_pixmap earlier,
16755 to avoid much needless work if the image is too large.
16756 (tiff_load): Treat overly large images as if
16757 x_create_x_image_and_pixmap failed, not as malloc failures.
16758 (gs_load): Use x_check_image_size.
16759
16760 * gtkutil.c: Omit integer casts.
16761 (xg_get_pixbuf_from_pixmap): Remove unnecessary cast.
16762 (xg_set_toolkit_scroll_bar_thumb): Rewrite to avoid need for cast.
16763
16764 * image.c (png_load): Don't assume height * row_bytes fits in 'int'.
16765
16766 * xfaces.c (Fbitmap_spec_p): Fix integer overflow bug.
16767 Without this fix, (bitmap-spec-p '(34359738368 1 "x"))
16768 would wrongly return t on a 64-bit host.
16769
16770 * dispnew.c (init_display): Use *_RANGE_OVERFLOW macros.
16771 The plain *_OVERFLOW macros run afoul of GCC bug 49705
16772 <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=49705>
16773 and therefore cause GCC to emit a bogus diagnostic in some cases.
16774
16775 * image.c: Integer signedness and overflow and related fixes.
16776 This is not an exhaustive set of fixes, but it's time to
16777 record what I've got.
16778 (lookup_pixel_color, check_image_size): Remove redundant decls.
16779 (check_image_size): Don't assume that arbitrary EMACS_INT values
16780 fit in 'int', or that arbitrary 'double' values fit in 'int'.
16781 (x_alloc_image_color, x_create_x_image_and_pixmap, png_load)
16782 (tiff_load, imagemagick_load_image):
16783 Check for overflow in size calculations.
16784 (x_create_x_image_and_pixmap): Remove unnecessary test for
16785 xmalloc returning NULL; that can't happen.
16786 (xbm_read_bitmap_data): Don't assume sizes fit into 'int'.
16787 (xpm_color_bucket): Use better integer hashing function.
16788 (xpm_cache_color): Don't possibly over-allocate memory.
16789 (struct png_memory_storage, tiff_memory_source, tiff_seek_in_memory)
16790 (gif_memory_source):
16791 Use ptrdiff_t, not int or size_t, to record sizes.
16792 (png_load): Don't assume values greater than 2**31 fit in 'int'.
16793 (our_stdio_fill_input_buffer): Prefer ptrdiff_t to size_t when
16794 either works, as we prefer signed integers.
16795 (tiff_read_from_memory, tiff_write_from_memory):
16796 Return tsize_t, not size_t, since that's what the TIFF API wants.
16797 (tiff_read_from_memory): Don't fail simply because the read would
16798 go past EOF; instead, return a short read.
16799 (tiff_load): Omit no-longer-needed casts.
16800 (Fimagemagick_types): Don't assume size fits into 'int'.
16801
16802 Improve hashing quality when configured --with-wide-int.
16803 * fns.c (hash_string): New function, taken from sxhash_string.
16804 Do not discard information about ASCII character case; this
16805 discarding is no longer needed.
16806 (sxhash-string): Use it. Change sig to match it. Caller changed.
16807 * lisp.h: Declare it.
16808 * lread.c (hash_string): Remove, since we now use fns.c's version.
16809 The fns.c version returns a wider integer if --with-wide-int is
16810 specified, so this should help the quality of the hashing a bit.
16811
16812 * emacs.c: Integer overflow minor fix.
16813 (heap_bss_diff): Now uprintmax_t, not unsigned long. All used changed.
16814 Define only if GNU_LINUX.
16815 (main, Fdump_emacs): Set and use heap_bss_diff only if GNU_LINUX.
16816
16817 * dispnew.c: Integer signedness and overflow fixes.
16818 Remove unnecessary forward decls, that were a maintenance hassle.
16819 (history_tick): Now uprintmax_t, so it's more likely to avoid overflow.
16820 All uses changed.
16821 (adjust_glyph_matrix, realloc_glyph_pool, adjust_frame_message_buffer)
16822 (scrolling_window): Use ptrdiff_t, not int, for byte count.
16823 (prepare_desired_row, line_draw_cost):
16824 Use int, not unsigned, where either works.
16825 (save_current_matrix, restore_current_matrix):
16826 Use ptrdiff_t, not size_t, where either works.
16827 (init_display): Check for overflow more accurately, and without
16828 relying on undefined behavior.
16829
16830 * editfns.c (pWIDE, pWIDElen, signed_wide, unsigned_wide):
16831 Remove, replacing with the new symbols in lisp.h. All uses changed.
16832 * fileio.c (make_temp_name):
16833 * filelock.c (lock_file_1, lock_file):
16834 * xdisp.c (message_dolog):
16835 Don't assume PRIdMAX etc. works; this isn't portable to pre-C99 hosts.
16836 Use pMd etc. instead.
16837 * lisp.h (printmax_t, uprintmax_t, pMd, pMu): New types and macros,
16838 replacing the pWIDE etc. symbols removed from editfns.c.
16839
16840 * keyboard.h (num_input_events): Now uintmax_t.
16841 This is (very slightly) less likely to mess up due to wraparound.
16842 All uses changed.
16843
16844 * buffer.c: Integer signedness fixes.
16845 (alloc_buffer_text, enlarge_buffer_text):
16846 Use ptrdiff_t rather than size_t when either will do, as we prefer
16847 signed integers.
16848
16849 * alloc.c: Integer signedness and overflow fixes.
16850 Do not impose an arbitrary 32-bit limit on malloc sizes when debugging.
16851 (__malloc_size_t): Default to size_t, not to int.
16852 (pure_size, pure_bytes_used_before_overflow, stack_copy_size)
16853 (Fgarbage_collect, mark_object_loop_halt, mark_object):
16854 Prefer ptrdiff_t to size_t when either would do, as we prefer
16855 signed integers.
16856 (XMALLOC_OVERRUN_CHECK_OVERHEAD): New macro.
16857 (xmalloc_overrun_check_header, xmalloc_overrun_check_trailer):
16858 Now const. Initialize with values that are in range even if char
16859 is signed.
16860 (XMALLOC_PUT_SIZE, XMALLOC_GET_SIZE): Remove, replacing with ...
16861 (xmalloc_put_size, xmalloc_get_size): New functions. All uses changed.
16862 These functions do the right thing with sizes > 2**32.
16863 (check_depth): Now ptrdiff_t, not int.
16864 (overrun_check_malloc, overrun_check_realloc, overrun_check_free):
16865 Adjust to new way of storing sizes. Check for size overflow bugs
16866 in rest of code.
16867 (STRING_BYTES_MAX): Adjust to new overheads. The old code was
16868 slightly wrong anyway, as it missed one instance of
16869 XMALLOC_OVERRUN_CHECK_OVERHEAD.
16870 (refill_memory_reserve): Omit needless cast to size_t.
16871 (mark_object_loop_halt): Mark as externally visible.
16872
16873 * xselect.c: Integer signedness and overflow fixes.
16874 (Fx_register_dnd_atom, x_handle_dnd_message):
16875 Use ptrdiff_t, not size_t, since we prefer signed.
16876 (Fx_register_dnd_atom): Check for ptrdiff_t (and size_t) overflow.
16877 * xterm.h (struct x_display_info): Use ptrdiff_t, not size_t, for
16878 x_dnd_atoms_size and x_dnd_atoms_length.
16879
16880 * doprnt.c: Prefer signed to unsigned when either works.
16881 * eval.c (verror):
16882 * doprnt.c (doprnt):
16883 * lisp.h (doprnt):
16884 * xdisp.c (vmessage):
16885 Use ptrdiff_t, not size_t, when using or implementing doprnt,
16886 since the sizes cannot exceed ptrdiff_t bounds anyway, and we
16887 prefer signed arithmetic to avoid comparison confusion.
16888 * doprnt.c (doprnt): Avoid a "+ 1" that can't overflow,
16889 but is a bit tricky.
16890
16891 Assume freestanding C89 headers, string.h, stdlib.h.
16892 * data.c, doprnt.c, floatfns.c, print.c:
16893 Include float.h unconditionally.
16894 * gmalloc.c: Assume C89-at-least behavior for preprocessor,
16895 limits.h, stddef.h, string.h. Use memset instead of 'flood'.
16896 * regex.c: Likewise for stddef.h, string.h.
16897 (ISASCII): Remove; can assume it returns 1 now. All uses removed.
16898 * s/aix4-2.h (HAVE_STRING_H): Remove obsolete undef.
16899 * s/ms-w32.h (HAVE_LIMITS_H, HAVE_STRING_H, HAVE_STDLIB_H)
16900 (STDC_HEADERS): Remove obsolete defines.
16901 * sysdep.c: Include limits.h unconditionally.
16902
16903 Assume support for memcmp, memcpy, memmove, memset.
16904 * lisp.h, sysdep.c (memcmp, memcpy, memmove, memset):
16905 * regex.c (memcmp, memcpy):
16906 Remove; we assume C89 now.
16907
16908 * gmalloc.c (memcpy, memset, memmove): Remove; we assume C89 now.
16909 (__malloc_safe_bcopy): Remove; no longer needed.
16910
16911 * lisp.h (struct vectorlike_header, struct Lisp_Subr): Signed sizes.
16912 Use EMACS_INT, not EMACS_UINT, for sizes. The code works equally
16913 well either way, and we prefer signed to unsigned.
16914
16915 2011-07-27 Lars Magne Ingebrigtsen <larsi@gnus.org>
16916
16917 * gnutls.c (emacs_gnutls_read): Don't message anything if the peer
16918 closes the connection while we're reading (bug#9182).
16919
16920 2011-07-25 Jan Djärv <jan.h.d@swipnet.se>
16921
16922 * nsmenu.m (ns_popup_dialog): Add an "ok" button if no buttons
16923 are specified (Bug#9168).
16924
16925 2011-07-25 Paul Eggert <eggert@cs.ucla.edu>
16926
16927 * bidi.c (bidi_dump_cached_states): Fix printf format mismatch.
16928 Found by GCC static checking and --with-wide-int on a 32-bit host.
16929
16930 2011-07-25 Eli Zaretskii <eliz@gnu.org>
16931
16932 * xdisp.c (compute_display_string_pos): Fix logic of caching
16933 previous display string position. Initialize cached_prev_pos to
16934 -1. Fixes slow-down at the beginning of a buffer.
16935
16936 2011-07-24 Eli Zaretskii <eliz@gnu.org>
16937
16938 * xfaces.c (check_lface_attrs) [HAVE_WINDOW_SYSTEM]: Allow `nil'
16939 for attrs[LFACE_FONTSET_INDEX].
16940
16941 2011-07-23 Paul Eggert <eggert@cs.ucla.edu>
16942
16943 * xml.c (parse_region): Remove unused local
16944 that was recently introduced.
16945
16946 2011-07-23 Eli Zaretskii <eliz@gnu.org>
16947
16948 * xfns.c (unwind_create_frame) [GLYPH_DEBUG]: Adapt to changes in
16949 2008-02-22T17:42:09Z!monnier@iro.umontreal.ca.
16950
16951 * xdisp.c (move_it_in_display_line_to): Record the best matching
16952 position for TO_CHARPOS while scanning the line, and restore it on
16953 exit if none of the characters scanned was an exact match.
16954 Fixes vertical-motion and pos-visible-in-window-p under bidi redisplay
16955 when exact match is impossible due to invisible text, and the
16956 lines are truncated.
16957
16958 2011-07-23 Jan Djärv <jan.h.d@swipnet.se>
16959
16960 * nsterm.m (initFrameFromEmacs): Set NSTitledWindowMask in styleMask
16961 for OSX >= 10.7.
16962
16963 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16964
16965 Fix a significant slow-down of cursor motion with C-n, C-p,
16966 C-f/C-b, and C-v/M-v that couldn't keep up with keyboard
16967 auto-repeat under bidi redisplay in fontified buffers.
16968 * xdisp.c (compute_stop_pos_backwards): New function.
16969 (next_element_from_buffer): Call compute_stop_pos_backwards to
16970 find a suitable prev_stop when we find ourselves before
16971 base_level_stop.
16972 (reseat): Don't look for prev_stop, as that could mean a very long
16973 run.
16974 <cached_disp_pos, cached_disp_buffer, cached_disp_modiff>
16975 <cached_disp_overlay_modiff>: Cache for last found display string
16976 position.
16977 (compute_display_string_pos): Return the cached position if asked
16978 about the same buffer in the same area of character positions, and
16979 the buffer wasn't changed since the time the display string
16980 position was cached.
16981
16982 2011-07-22 Eli Zaretskii <eliz@gnu.org>
16983
16984 * xdisp.c (rows_from_pos_range): Don't ignore glyphs whose object
16985 is an integer, which is important for empty lines. (Bug#9149)
16986
16987 2011-07-22 Chong Yidong <cyd@stupidchicken.com>
16988
16989 * frame.c (Fmodify_frame_parameters): In tty case, update the
16990 default face if necessary (Bug#4238).
16991
16992 2011-07-21 Chong Yidong <cyd@stupidchicken.com>
16993
16994 * editfns.c (Fstring_to_char): No need to explain what a character
16995 is in the docstring (Bug#6576).
16996
16997 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
16998
16999 * xml.c (parse_region): Make sure we always return a tree.
17000
17001 2011-07-20 HAMANO Kiyoto <khiker.mail@gmail.com>
17002
17003 * xml.c (parse_region): If a document contains only comments,
17004 return that, too.
17005
17006 2011-07-20 Lars Magne Ingebrigtsen <larsi@gnus.org>
17007
17008 * xml.c (make_dom): Return comments, too.
17009
17010 2011-07-19 Paul Eggert <eggert@cs.ucla.edu>
17011
17012 Port to OpenBSD.
17013 See http://lists.gnu.org/archive/html/emacs-devel/2011-07/msg00688.html
17014 and the surrounding thread.
17015 * minibuf.c (read_minibuf_noninteractive): Rewrite to use getchar
17016 rather than fgets, and retry after EINTR. Otherwise, 'emacs
17017 --batch -f byte-compile-file' fails on OpenBSD if an inactivity
17018 timer goes off.
17019 * s/openbsd.h (BROKEN_SIGIO): Define.
17020 * unexelf.c (unexec) [__OpenBSD__]:
17021 Don't update the .mdebug section of the Alpha COFF symbol table.
17022
17023 2011-07-19 Lars Magne Ingebrigtsen <larsi@gnus.org>
17024
17025 * lread.c (syms_of_lread): Clarify when `lexical-binding' is used
17026 (bug#8460).
17027
17028 2011-07-18 Paul Eggert <eggert@cs.ucla.edu>
17029
17030 * fileio.c (Fcopy_file) [!MSDOS]: Tighten created file's mask.
17031 This fixes some race conditions on the permissions of any newly
17032 created file.
17033
17034 * alloc.c (valid_pointer_p): Use pipe, not open.
17035 This fixes some permissions issues when debugging.
17036
17037 * fileio.c (Fcopy_file): Adjust mode if fchown fails. (Bug#9002)
17038 If fchown fails to set both uid and gid, try to set just gid,
17039 as that is sometimes allowed. Adjust the file's mode to eliminate
17040 setuid or setgid bits that are inappropriate if fchown fails.
17041
17042 2011-07-18 Stefan Monnier <monnier@iro.umontreal.ca>
17043
17044 * xdisp.c (next_element_from_string, next_element_from_buffer): Use EQ
17045 to compare Lisp_Objects.
17046 * gnutls.c (syms_of_gnutls): Rename Vgnutls_log_level to
17047 global_gnutls_log_level, don't mistake it for a Lisp_Object.
17048 (init_gnutls_functions, emacs_gnutls_handle_error): Fix up uses.
17049
17050 2011-07-17 Andreas Schwab <schwab@linux-m68k.org>
17051
17052 * lread.c (read_integer): Unread even EOF character.
17053 (read1): Likewise. Properly record start position of symbol.
17054
17055 * lread.c (read1): Read `#:' as empty uninterned symbol if no
17056 symbol character follows.
17057
17058 2011-07-17 Paul Eggert <eggert@cs.ucla.edu>
17059
17060 * fileio.c (Fcopy_file): Pacify gcc re fchown. (Bug#9002)
17061 This works around a problem with the previous change to Fcopy_file.
17062 Recent glibc declares fchown with __attribute__((warn_unused_result)),
17063 and without this change, GCC might complain about discarding
17064 fchown's return value.
17065
17066 2011-07-16 Juanma Barranquero <lekktu@gmail.com>
17067
17068 * makefile.w32-in (GLOBAL_SOURCES): Add gnutls.c (followup to bug#9059).
17069
17070 2011-07-16 Paul Eggert <eggert@cs.ucla.edu>
17071
17072 * fileio.c (Fcopy_file): Don't diagnose fchown failures. (Bug#9002)
17073
17074 2011-07-16 Lars Magne Ingebrigtsen <larsi@gnus.org>
17075
17076 * gnutls.c (syms_of_gnutls): Define `gnutls-log-level' here, since
17077 it's used from the C level.
17078
17079 * process.c: Use the same condition for POLL_FOR_INPUT in both
17080 keyboard.c and process.c (bug#1858).
17081
17082 2011-07-09 Lawrence Mitchell <wence@gmx.li>
17083
17084 * gnutls.c (Qgnutls_bootprop_min_prime_bits): New variable.
17085 (Fgnutls_boot): Use it.
17086
17087 2011-07-15 Andreas Schwab <schwab@linux-m68k.org>
17088
17089 * doc.c (Fsubstitute_command_keys): Revert last change.
17090
17091 2011-07-15 Lars Magne Ingebrigtsen <larsi@gnus.org>
17092
17093 * doc.c (Fsubstitute_command_keys): Clarify that \= really only
17094 quotes the next character, and doesn't affect other longer
17095 sequences (bug#8935).
17096
17097 * lread.c (syms_of_lread): Clarify that is isn't only
17098 `eval-buffer' and `eval-defun' that's affected by
17099 `lexical-binding' (bug#8460).
17100
17101 2011-07-15 Eli Zaretskii <eliz@gnu.org>
17102
17103 * xdisp.c (move_it_in_display_line_to): Fix vertical motion with
17104 bidi redisplay when a line includes both an image and is truncated.
17105
17106 2011-07-14 Paul Eggert <eggert@cs.ucla.edu>
17107
17108 Fix minor problems found by static checking.
17109 * bidi.c (bidi_cache_size): Now EMACS_INT, not size_t.
17110 (elsz): Now a signed constant, not a size_t var. We prefer signed
17111 types to unsigned, to avoid integer comparison confusion. Without
17112 this change, GCC 4.6.1 with -Wunsafe-loop-optimizations complains
17113 "cannot optimize loop, the loop counter may overflow", a symptom
17114 of the confusion.
17115 * indent.c (Fvertical_motion): Mark locals as initialized.
17116 * xdisp.c (reseat_to_string): Fix pointer signedness issue.
17117
17118 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17119
17120 * search.c (Fre_search_backward): Mention `case-fold-search' in
17121 all the re_search_* functions (bug#8138).
17122
17123 * keyboard.c (Fopen_dribble_file): Document when the file is
17124 closed (bug#8056).
17125
17126 2011-07-14 Eli Zaretskii <eliz@gnu.org>
17127
17128 * bidi.c (bidi_dump_cached_states): Fix format of displaying
17129 bidi_cache_idx.
17130
17131 Support bidi reordering of display and overlay strings.
17132 * xdisp.c (compute_display_string_pos)
17133 (compute_display_string_end): Accept additional argument STRING.
17134 (init_iterator, reseat_1): Initialize bidi_it->string.s to NULL.
17135 (reseat_to_string): Initialize bidi_it->string.s and
17136 bidi_it->string.schars.
17137 (Fcurrent_bidi_paragraph_direction): Initialize itb.string.s to
17138 NULL (avoids a crash in bidi_paragraph_init).
17139 Initialize itb.string.lstring.
17140 (init_iterator): Call bidi_init_it only of a valid
17141 buffer position was specified. Initialize paragraph_embedding to
17142 L2R.
17143 (reseat_to_string): Initialize the bidi iterator.
17144 (display_string): If we need to ignore text properties of
17145 LISP_STRING, set IT->stop_charpos to IT->end_charpos. (The
17146 original value of -1 will not work with bidi.)
17147 (compute_display_string_pos): First arg is now struct
17148 `text_pos *'; all callers changed. Support display properties on
17149 Lisp strings.
17150 (compute_display_string_end): Support display properties on Lisp
17151 strings.
17152 (init_iterator, reseat_1, reseat_to_string): Initialize the
17153 string.bufpos member to 0 (zero, for compatibility with IT_CHARPOS
17154 when iterating on a string not from display properties).
17155 (compute_display_string_pos, compute_display_string_end):
17156 Fix calculation of the object to scan. Fixes an error when using
17157 arrow keys.
17158 (next_element_from_buffer): Don't abort when IT_CHARPOS is before
17159 base_level_stop; instead, set base_level_stop to BEGV.
17160 Fixes crashes in vertical-motion.
17161 (next_element_from_buffer): Improve commentary for when
17162 the iterator is before prev_stop.
17163 (init_iterator): Initialize bidi_p from the default value of
17164 bidi-display-reordering, not from buffer-local value. Use the
17165 buffer-local value only if initializing for buffer iteration.
17166 (handle_invisible_prop): Support invisible properties on strings
17167 that are being bidi-reordered.
17168 (set_iterator_to_next): Support bidi reordering of C strings and
17169 Lisp strings.
17170 (next_element_from_string): Support bidi reordering of Lisp
17171 strings.
17172 (handle_stop_backwards): Support Lisp strings as well.
17173 (display_string): Support display of R2L glyph rows.
17174 Use IT_STRING_CHARPOS when displaying from a Lisp string.
17175 (init_iterator): Don't initialize it->bidi_p for strings
17176 here.
17177 (reseat_to_string): Initialize it->bidi_p for strings here.
17178 (next_element_from_string, next_element_from_c_string)
17179 (next_element_from_buffer): Add xassert's for correspondence
17180 between IT's object being iterated and it->bidi_it.string
17181 structure.
17182 (face_before_or_after_it_pos): Support bidi iteration.
17183 (next_element_from_c_string): Handle the case of the first string
17184 character that is not the first one in the visual order.
17185 (get_visually_first_element): New function, refactored from common
17186 parts of next_element_from_buffer, next_element_from_string, and
17187 next_element_from_c_string.
17188 (tool_bar_lines_needed, redisplay_tool_bar)
17189 (display_menu_bar): Force left-to-right direction. Add a FIXME
17190 comment for making that be controlled by a user option.
17191 (push_it, pop_it): Save and restore the state of the
17192 bidi iterator. Save and restore the bidi_p flag.
17193 (pop_it): Iterate out of display property for string iteration as
17194 well.
17195 (iterate_out_of_display_property): Support iteration over strings.
17196 (handle_single_display_spec): Set up it->bidi_it for iteration
17197 over a display string, and call bidi_init_it.
17198 (handle_single_display_spec, next_overlay_string)
17199 (get_overlay_strings_1, push_display_prop): Set up the bidi
17200 iterator for displaying display or overlay strings.
17201 (forward_to_next_line_start): Don't use the shortcut if
17202 bidi-iterating.
17203 (back_to_previous_visible_line_start): If handle_display_prop
17204 pushed the iterator stack, restore the internal state of the bidi
17205 iterator by calling bidi_pop_it same number of times.
17206 (reseat_at_next_visible_line_start): If ON_NEWLINE_P is non-zero,
17207 and we are bidi-iterating, don't decrement the iterator position;
17208 instead, set the first_elt flag in the bidi iterator, to produce
17209 the same effect.
17210 (reseat_1): Remove redundant setting of string_from_display_prop_p.
17211 (push_display_prop): xassert that we are iterating a buffer.
17212 (push_it, pop_it): Save and restore paragraph_embedding member.
17213 (handle_single_display_spec, next_overlay_string)
17214 (get_overlay_strings_1, reseat_1, reseat_to_string)
17215 (push_display_prop): Set up the `unibyte' member of bidi_it.string
17216 correctly. Don't assume unibyte strings are not bidi-reordered.
17217 (compute_display_string_pos)
17218 (compute_display_string_end): Fix handling the case of C string.
17219 (push_it, pop_it): Save and restore from_disp_prop_p.
17220 (handle_single_display_spec, push_display_prop): Set the
17221 from_disp_prop_p flag.
17222 (get_overlay_strings_1): Reset the from_disp_prop_p flag.
17223 (pop_it): Call iterate_out_of_display_property only if we are
17224 popping after iteration over a string that came from a display
17225 property. Fix a typo in popping stretch info. Add an assertion
17226 for verifying that the iterator position is in sync with the bidi
17227 iterator.
17228 (handle_single_display_spec, get_overlay_strings_1)
17229 (push_display_prop): Fix initialization of paragraph direction for
17230 string when that of the parent object is not yet determined.
17231 (reseat_1): Call bidi_init_it to resync the bidi
17232 iterator with IT's position. (Bug#7616)
17233 (find_row_edges): If ROW->start.pos gives position
17234 smaller than min_pos, use it as ROW->minpos. (Bug#7616)
17235 (handle_stop, back_to_previous_visible_line_start, reseat_1):
17236 Reset the from_disp_prop_p flag.
17237 (SAVE_IT, RESTORE_IT): New macros.
17238 (pos_visible_p, face_before_or_after_it_pos)
17239 (back_to_previous_visible_line_start)
17240 (move_it_in_display_line_to, move_it_in_display_line)
17241 (move_it_to, move_it_vertically_backward, move_it_by_lines)
17242 (try_scrolling, redisplay_window, display_line): Use them when
17243 saving a temporary copy of the iterator and restoring it back.
17244 (back_to_previous_visible_line_start, reseat_1)
17245 (init_iterator): Empty the bidi cache "stack".
17246 (move_it_in_display_line_to): If iterator ended up at
17247 EOL, but we never saw any buffer positions smaller than
17248 to_charpos, return MOVE_POS_MATCH_OR_ZV. Fixes vertical cursor
17249 motion in bidi-reordered lines.
17250 (move_it_in_display_line_to): Record prev_method and prev_pos
17251 immediately before the call to set_iterator_to_next. Fixes cursor
17252 motion in bidi-reordered lines with stretch glyphs and strings
17253 displayed in margins. (Bug#8133) (Bug#8867)
17254 Return MOVE_POS_MATCH_OR_ZV only if iterator position is past
17255 TO_CHARPOS.
17256 (pos_visible_p): Support positions in bidi-reordered lines.
17257 Save and restore bidi cache.
17258
17259 * bidi.c (bidi_level_of_next_char): clen should be EMACS_NT, not int.
17260 (bidi_paragraph_info): Delete unused struct.
17261 (bidi_cache_idx, bidi_cache_last_idx): Declare EMACS_INT.
17262 (bidi_cache_start): New variable.
17263 (bidi_cache_reset): Reset bidi_cache_idx to bidi_cache_start, not
17264 to zero.
17265 (bidi_cache_fetch_state, bidi_cache_search)
17266 (bidi_cache_find_level_change, bidi_cache_iterator_state)
17267 (bidi_cache_find, bidi_peek_at_next_level)
17268 (bidi_level_of_next_char, bidi_find_other_level_edge)
17269 (bidi_move_to_visually_next): Compare cache index with
17270 bidi_cache_start rather than with zero.
17271 (bidi_fetch_char): Accept new argument STRING; all callers
17272 changed. Support iteration over a string. Support strings with
17273 display properties. Support unibyte strings. Fix the type of
17274 `len' according to what STRING_CHAR_AND_LENGTH expects.
17275 (bidi_paragraph_init, bidi_resolve_explicit_1)
17276 (bidi_resolve_explicit, bidi_resolve_weak)
17277 (bidi_level_of_next_char, bidi_move_to_visually_next):
17278 Support iteration over a string.
17279 (bidi_set_sor_type, bidi_resolve_explicit_1)
17280 (bidi_resolve_explicit, bidi_type_of_next_char): ignore_bn_limit
17281 can now be zero (for strings); special values 0 and -1 were
17282 changed to -1 and -2, respectively.
17283 (bidi_char_at_pos): New function.
17284 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak):
17285 Call it instead of FETCH_MULTIBYTE_CHAR.
17286 (bidi_move_to_visually_next): Abort if charpos or bytepos were not
17287 initialized to valid values.
17288 (bidi_init_it): Don't initialize charpos and bytepos with invalid
17289 values.
17290 (bidi_level_of_next_char): Allow the sentinel "position" to pass
17291 the test for valid cached positions. Fix the logic for looking up
17292 the sentinel state in the cache. GCPRO the Lisp string we are
17293 iterating.
17294 (bidi_push_it, bidi_pop_it): New functions.
17295 (bidi_initialize): Initialize the bidi cache start stack pointer.
17296 (bidi_cache_ensure_space): New function, refactored from part of
17297 bidi_cache_iterator_state. Don't assume the required size is just
17298 one BIDI_CACHE_CHUNK away.
17299 (bidi_cache_start_stack, bidi_push_it): Use IT_STACK_SIZE.
17300 (bidi_count_bytes, bidi_char_at_pos): New functions.
17301 (bidi_cache_search): Don't assume bidi_cache_last_idx is
17302 always valid if bidi_cache_idx is valid.
17303 (bidi_cache_find_level_change): xassert that bidi_cache_last_idx
17304 is valid if it's going to be used.
17305 (bidi_shelve_cache, bidi_unshelve_cache): New functions.
17306 (bidi_cache_fetch_state, bidi_cache_search)
17307 (bidi_cache_find_level_change, bidi_cache_ensure_space)
17308 (bidi_cache_iterator_state, bidi_cache_find)
17309 (bidi_find_other_level_edge, bidi_cache_start_stack):
17310 All variables related to cache indices are now EMACS_INT.
17311
17312 * dispextern.h (struct bidi_string_data): New structure.
17313 (struct bidi_it): New member `string'. Make flag members be 1-bit
17314 fields, and put them last in the struct.
17315 (compute_display_string_pos, compute_display_string_end):
17316 Update prototypes.
17317 (bidi_push_it, bidi_pop_it): Add prototypes.
17318 (struct iterator_stack_entry): New members bidi_p,
17319 paragraph_embedding, and from_disp_prop_p.
17320 (struct it): Member bidi_p is now a bit field 1 bit wide.
17321 (bidi_shelve_cache, bidi_unshelve_cache):
17322 Declare prototypes.
17323
17324 * .gdbinit (xvectype, xvector, xcompiled, xchartable, xboolvector)
17325 (xpr, xfont, xbacktrace): Use "header.size" when accessing vectors
17326 and vector-like objects.
17327
17328 * dispnew.c (buffer_posn_from_coords): Save and restore the bidi
17329 cache around display iteration.
17330
17331 * window.c (Fwindow_end, window_scroll_pixel_based)
17332 (displayed_window_lines, Frecenter): Save and restore the bidi
17333 cache around display iteration.
17334
17335 2011-07-14 Lars Magne Ingebrigtsen <larsi@gnus.org>
17336
17337 * editfns.c (Fdelete_region): Clarify the use of the named
17338 parameters (bug#6788).
17339
17340 2011-07-14 Martin Rudalics <rudalics@gmx.at>
17341
17342 * indent.c (Fvertical_motion): Set and restore w->pointm when
17343 saving and restoring the window's buffer (Bug#9006).
17344
17345 2011-07-13 Lars Magne Ingebrigtsen <larsi@gnus.org>
17346
17347 * editfns.c (Fstring_to_char): Clarify just what is returned
17348 (bug#6576). Text by Eli Zaretskii.
17349
17350 2011-07-13 Juanma Barranquero <lekktu@gmail.com>
17351
17352 * gnutls.c (init_gnutls_functions): Honor gnutls_log_level (bug#9059).
17353
17354 2011-07-13 Eli Zaretskii <eliz@gnu.org>
17355
17356 * buffer.c (mmap_find): Fix a typo.
17357
17358 2011-07-13 Johan Bockgård <bojohan@gnu.org>
17359
17360 Fix execution of x selection hooks.
17361 * xselect.c (Qx_lost_selection_functions)
17362 (Qx_sent_selection_functions): New vars.
17363 (syms_of_xselect): DEFSYM them.
17364 (x_handle_selection_request): Pass Qx_sent_selection_functions
17365 rather than Vx_sent_selection_functions to Frun_hook_with_args.
17366 (x_handle_selection_clear,x_clear_frame_selections):
17367 Pass Qx_lost_selection_functions rather than
17368 Vx_lost_selection_functions to Frun_hook_with_args.
17369
17370 2011-07-13 Paul Eggert <eggert@cs.ucla.edu>
17371
17372 * buffer.c (Fget_buffer_create): Initialize inhibit_shrinking.
17373 The old code sometimes used this field without initializing it.
17374
17375 * alloc.c (gc_sweep): Don't read past end of array.
17376 In theory, the old code could also have corrupted Emacs internals,
17377 though it'd be very unlikely.
17378
17379 2011-07-12 Andreas Schwab <schwab@linux-m68k.org>
17380
17381 * character.c (Fcharacterp): Don't advertise optional ignored
17382 argument. (Bug#4026)
17383
17384 2011-07-12 Lars Magne Ingebrigtsen <larsi@gnus.org>
17385
17386 * keymap.c (syms_of_keymap): Clarify that "modifier" is "modifier
17387 key" (bug#4257).
17388
17389 * window.c (Fset_window_start): Doc fix (bug#4199).
17390 (Fset_window_hscroll): Ditto.
17391
17392 2011-07-12 Paul Eggert <eggert@cs.ucla.edu>
17393
17394 Fix minor new problems caught by GCC 4.6.1.
17395 * term.c (init_tty): Remove unused local.
17396 * xsettings.c (store_monospaced_changed): Define this function only
17397 if (defined HAVE_GSETTINGS || defined HAVE_GCONF), as it's
17398 not used otherwise.
17399
17400 2011-07-12 Chong Yidong <cyd@stupidchicken.com>
17401
17402 * xdisp.c (Vresize_mini_windows): Minor doc fix (Bug#3300).
17403
17404 2011-07-11 Lars Magne Ingebrigtsen <larsi@gnus.org>
17405
17406 * xdisp.c (syms_of_xdisp): Make it explicit that the mini-windows
17407 are the mini-buffer and the echo area (bug#3320).
17408
17409 * term.c (init_tty): Remove support for supdup, c10 and perq
17410 terminals, which are no longer supported (bug#1482).
17411
17412 2011-07-10 Johan Bockgård <bojohan@gnu.org>
17413
17414 * xdisp.c (Ftool_bar_lines_needed): Fix WINDOWP check.
17415
17416 2011-07-10 Jan Djärv <jan.h.d@swipnet.se>
17417
17418 * xmenu.c (menu_highlight_callback): Only pass frame to show_help_event
17419 for non-popups (Bug#3642).
17420
17421 2011-07-10 Andreas Schwab <schwab@linux-m68k.org>
17422
17423 * alloc.c (reset_malloc_hooks): Protoize.
17424 * buffer.c (mmap_init, mmap_find, mmap_free_1, mmap_enlarge)
17425 (mmap_set_vars, mmap_alloc, mmap_free, mmap_realloc): Likewise.
17426 * cm.c (losecursor): Likewise.
17427 * data.c (fmod): Likewise.
17428 * dispnew.c (swap_glyphs_in_rows): Likewise.
17429 * emacs.c (memory_warning_signal): Likewise.
17430 * floatfns.c (float_error): Likewise.
17431 * font.c (check_gstring, check_otf_features, otf_tag_symbol)
17432 (otf_open, font_otf_capability, generate_otf_features)
17433 (font_otf_DeviceTable, font_otf_ValueRecord, font_otf_Anchor):
17434 Likewise.
17435 * image.c (pbm_read_file): Likewise.
17436 * indent.c (string_display_width): Likewise.
17437 * intervals.c (check_for_interval, search_for_interval)
17438 (inc_interval_count, count_intervals, root_interval)
17439 (adjust_intervals_for_insertion, make_new_interval): Likewise.
17440 * lread.c (defalias): Likewise.
17441 * ralloc.c (r_alloc_check): Likewise.
17442 * regex.c (set_image_of_range_1, set_image_of_range)
17443 (regex_grow_registers): Likewise.
17444 * sysdep.c (strerror): Likewise.
17445 * termcap.c (valid_filename_p, tprint, main): Likewise.
17446 * tparam.c (main): Likewise.
17447 * unexhp9k800.c (run_time_remap, save_data_space)
17448 (update_file_ptrs, read_header, write_header, calculate_checksum)
17449 (copy_file, copy_rest, display_header): Likewise.
17450 * widget.c (mark_shell_size_user_specified, create_frame_gcs):
17451 Likewise.
17452 * xdisp.c (check_it): Likewise.
17453 * xfaces.c (register_color, unregister_color, unregister_colors):
17454 Likewise.
17455 * xfns.c (print_fontset_result): Likewise.
17456 * xrdb.c (member, fatal, main): Likewise.
17457
17458 2011-07-10 Paul Eggert <eggert@cs.ucla.edu>
17459
17460 Fix minor problems found by static checking (Bug#9031).
17461 * chartab.c (char_table_set_range, map_sub_char_table):
17462 Remove unused locals.
17463 (uniprop_table): Now static.
17464 * composite.c (_work_char): Remove unused static var.
17465
17466 2011-07-09 Juanma Barranquero <lekktu@gmail.com>
17467
17468 * chartab.c (uniprop_table_uncompress): Remove unused local variable.
17469
17470 2011-07-09 Jan Djärv <jan.h.d@swipnet.se>
17471
17472 * gtkutil.c (qttip_cb): Remove code without function.
17473
17474 2011-07-09 Eli Zaretskii <eliz@gnu.org>
17475
17476 * w32.c (pthread_sigmask): New stub.
17477
17478 2011-07-08 Paul Eggert <eggert@cs.ucla.edu>
17479
17480 Use pthread_sigmask, not sigprocmask (Bug#9010).
17481 sigprocmask is portable only for single-threaded applications, and
17482 Emacs can be multi-threaded when it uses GTK.
17483 * Makefile.in (LIB_PTHREAD_SIGMASK): New macro.
17484 (LIBES): Use it.
17485 * callproc.c (Fcall_process):
17486 * process.c (create_process):
17487 * sysdep.c (sys_sigblock, sys_sigunblock, sys_sigsetmask):
17488 Use pthread_sigmask, not sigprocmask.
17489
17490 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17491
17492 * gtkutil.c (qttip_cb): Set line wrap to FALSE for tooltip widget.
17493 (xg_prepare_tooltip): Revert text in x->ttip_lbl, margins was
17494 wrong (Bug#8591).
17495
17496 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17497
17498 * gtkutil.c (xg_prepare_tooltip): Fix indentation and comment.
17499 Put text in x->ttip_lbl instead of gtk_tooltip_set_text (Bug#8591).
17500 (xg_hide_tooltip): Fix comment.
17501
17502 * nsterm.m (initFrameFromEmacs): Don't use ns_return_types
17503 in registerServicesMenuSendTypes.
17504 (validRequestorForSendType): Don't check ns_return_types.
17505
17506 * nsfns.m (Fx_open_connection): Put NSStringPboardType into
17507 ns_return_type.
17508
17509 2011-07-08 Jason Rumney <jasonr@gnu.org>
17510
17511 * w32term.c (x_make_frame_visible): Use SH_SHOWNORMAL rather than
17512 SH_SHOW for hidden windows (Bug#5482).
17513
17514 * w32fns.c (w32_wnd_proc) [WM_TIMER, WM_SET_CURSOR]: Avoid using
17515 frame struct members of non-existent frames (Bug#6284).
17516
17517 2011-07-08 Jan Djärv <jan.h.d@swipnet.se>
17518
17519 * nsterm.m (keyDown): Call to wantsToDelayTextChangeNotifications and
17520 variable firstTime not needed on OSX >= 10.6.
17521 (setPosition): setFloatValue:knobProportion: is deprecated on OSX
17522 >= 10.5. Use setKnobProportion, setDoubleValue.
17523
17524 * nsterm.h (MAC_OS_X_VERSION_10_3, MAC_OS_X_VERSION_10_4)
17525 (MAC_OS_X_VERSION_10_5): Define if not defined.
17526 (EmacsView, EmacsTooltip): Implements NSWindowDelegate on OSX >= 10.6.
17527 (EmacsMenu): Implements NSMenuDelegate on OSX >= 10.6.
17528 (EmacsToolbar): Implements NSToolbarDelegate on OSX >= 10.6.
17529
17530 * nsselect.m (ns_string_from_pasteboard): Don't use deprecated methods
17531 cString and lossyCString on OSX >= 10.4.
17532
17533 * nsmenu.m (fillWithWidgetValue): Don't use deprecated method
17534 sizeToFit on OSX >= 10.2.
17535
17536 * nsimage.m (allocInitFromFile): Don't use deprecated method
17537 bestRepresentationForDevice on OSX >= 10.6.
17538
17539 * nsfns.m (check_ns_display_info): Cast to long and use %ld in error
17540 to avoid warning.
17541
17542 * emacs.c: Declare unexec_init_emacs_zone.
17543
17544 * nsgui.h: Fix compiler warning about gnulib redefining verify.
17545
17546 * nsselect.m (ns_get_local_selection): Change to extern (Bug#8842).
17547
17548 * nsmenu.m (ns_update_menubar): Remove useless setDelegate call
17549 on svcsMenu (Bug#8842).
17550
17551 * nsfns.m (Fx_open_connection): Remove NSStringPboardType from
17552 ns_return_types.
17553 (Fns_list_services): Just return Qnil on 10.6, code not working there.
17554
17555 * nsterm.m (QUTF8_STRING): Declare.
17556 (initFrameFromEmacs): Call registerServicesMenuSendTypes.
17557 (validRequestorForSendType): Return type is (id).
17558 Change indexOfObjectIdenticalTo to indexOfObject.
17559 Check if we have local selection before returning self (Bug#8842).
17560 (writeSelectionToPasteboard): Put local selection into paste board
17561 if we have a local selection (Bug#8842).
17562 (syms_of_nsterm): DEFSYM QUTF8_STRING.
17563
17564 * nsterm.h (MAC_OS_X_VERSION_10_6): Define here instead of nsterm.m.
17565 (ns_get_local_selection): Declare.
17566
17567 2011-07-07 Lars Magne Ingebrigtsen <larsi@gnus.org>
17568
17569 * keymap.c (describe_map_tree): Don't insert a double newline at
17570 the end of the buffer (bug#1169) and return whether we inserted
17571 something.
17572
17573 * callint.c (Fcall_interactively): Change "reading args" to
17574 "providing args" to try to clarify what it does (bug#1010).
17575
17576 2011-07-07 Kenichi Handa <handa@m17n.org>
17577
17578 * composite.c (composition_compute_stop_pos): Ignore a static
17579 composition starting before CHARPOS (Bug#8915).
17580
17581 * xdisp.c (handle_composition_prop): Likewise.
17582
17583 2011-07-07 Eli Zaretskii <eliz@gnu.org>
17584
17585 * term.c (produce_glyphs) <xassert>: Allow IT_GLYPHLESS in it->what.
17586 (Bug#9015)
17587
17588 2011-07-07 Kenichi Handa <handa@m17n.org>
17589
17590 * character.h (unicode_category_t): New enum type.
17591
17592 * chartab.c (uniprop_decoder_t, uniprop_encoder_t): New types.
17593 (Qchar_code_property_table): New variable.
17594 (UNIPROP_TABLE_P, UNIPROP_GET_DECODER)
17595 (UNIPROP_COMPRESSED_FORM_P): New macros.
17596 (char_table_ascii): Uncompress the compressed values.
17597 (sub_char_table_ref): New arg is_uniprop. Callers changed.
17598 Uncompress the compressed values.
17599 (sub_char_table_ref_and_range): Likewise.
17600 (char_table_ref_and_range): Uncompress the compressed values.
17601 (sub_char_table_set): New arg is_uniprop. Callers changed.
17602 Uncompress the compressed values.
17603 (sub_char_table_set_range): Args changed. Callers changed.
17604 (char_table_set_range): Adjuted for the above change.
17605 (map_sub_char_table): Delete args default_val and parent. Add arg
17606 top. Give decoded values to a Lisp function.
17607 (map_char_table): Adjust for the above change. Give decoded
17608 values to a Lisp function. Gcpro more variables.
17609 (uniprop_table_uncompress)
17610 (uniprop_decode_value_run_length): New functions.
17611 (uniprop_decoder, uniprop_decoder_count): New variables.
17612 (uniprop_get_decoder, uniprop_encode_value_character)
17613 (uniprop_encode_value_run_length, uniprop_encode_value_numeric):
17614 New functions.
17615 (uniprop_encoder, uniprop_encoder_count): New variables.
17616 (uniprop_get_encoder, uniprop_table)
17617 (Funicode_property_table_internal, Fget_unicode_property_internal)
17618 (Fput_unicode_property_internal): New functions.
17619 (syms_of_chartab): DEFSYM Qchar_code_property_table, defsubr
17620 Sunicode_property_table_internal, Sget_unicode_property_internal,
17621 and Sput_unicode_property_internal. Defvar_lisp
17622 char-code-property-alist.
17623
17624 * composite.c (CHAR_COMPOSABLE_P): Adjust for the change of
17625 Vunicode_category_table.
17626
17627 * font.c (font_range): Adjust for the change of
17628 Vunicode_category_table.
17629
17630 2011-07-07 Dan Nicolaescu <dann@ics.uci.edu>
17631
17632 * m/iris4d.h: Remove file, move contents ...
17633 * s/irix6-5.h: ... here.
17634
17635 2011-07-06 Paul Eggert <eggert@cs.ucla.edu>
17636
17637 Remove unportable assumption about struct layout (Bug#8884).
17638 * alloc.c (mark_buffer):
17639 * buffer.c (reset_buffer_local_variables, Fbuffer_local_variables)
17640 (clone_per_buffer_values): Don't assume that
17641 sizeof (struct buffer) is a multiple of sizeof (Lisp_Object).
17642 This isn't true in general, and it's particularly not true
17643 if Emacs is configured with --with-wide-int.
17644 * buffer.h (FIRST_FIELD_PER_BUFFER, LAST_FIELD_PER_BUFFER):
17645 New macros, used in the buffer.c change.
17646
17647 2011-07-05 Jan Djärv <jan.h.d@swipnet.se>
17648
17649 * xsettings.c: Use both GConf and GSettings if both are available.
17650 (store_config_changed_event): Add comment.
17651 (dpyinfo_valid, store_font_name_changed, map_tool_bar_style)
17652 (store_tool_bar_style_changed): New functions.
17653 (store_monospaced_changed): Add comment. Call dpyinfo_valid.
17654 (struct xsettings): Move font inside HAVE_XFT.
17655 (GSETTINGS_TOOL_BAR_STYLE, GSETTINGS_FONT_NAME): New defines.
17656 (GSETTINGS_MONO_FONT): Rename from SYSTEM_MONO_FONT.
17657 Move inside HAVE_XFT.
17658 (something_changed_gsettingsCB): Rename from something_changedCB.
17659 Check for changes in GSETTINGS_TOOL_BAR_STYLE and GSETTINGS_FONT_NAME
17660 also.
17661 (GCONF_TOOL_BAR_STYLE, GCONF_FONT_NAME): New defines.
17662 (GCONF_MONO_FONT): Rename from SYSTEM_MONO_FONT. Move inside HAVE_XFT.
17663 (something_changed_gconfCB): Rename from something_changedCB.
17664 Check for changes in GCONF_TOOL_BAR_STYLE and GCONF_FONT_NAME also.
17665 (parse_settings): Move check for font inside HAVE_XFT.
17666 (read_settings, apply_xft_settings): Add comment.
17667 (read_and_apply_settings): Add comment. Call map_tool_bar_style and
17668 store_tool_bar_style_changed. Move check for font inside HAVE_XFT and
17669 call store_font_name_changed.
17670 (xft_settings_event): Add comment.
17671 (init_gsettings): Add comment. Get values for GSETTINGS_TOOL_BAR_STYLE
17672 and GSETTINGS_FONT_NAME. Move check for fonts within HAVE_XFT.
17673 (init_gconf): Add comment. Get values for GCONF_TOOL_BAR_STYLE
17674 and GCONF_FONT_NAME. Move check for fonts within HAVE_XFT.
17675 (xsettings_initialize): Call init_gsettings last.
17676 (xsettings_get_system_font, xsettings_get_system_normal_font):
17677 Add comment.
17678
17679 2011-07-05 Paul Eggert <eggert@cs.ucla.edu>
17680
17681 Random fixes. E.g., (random) never returned negative values.
17682 * fns.c (Frandom): Use GET_EMACS_TIME for random seed, and add the
17683 subseconds part to the entropy, as that's a bit more random.
17684 Prefer signed to unsigned, since the signedness doesn't matter and
17685 in general we prefer signed. When given a limit, use a
17686 denominator equal to INTMASK + 1, not to VALMASK + 1, because the
17687 latter isn't right if USE_2_TAGS_FOR_INTS.
17688 * sysdep.c (get_random): Return a value in the range 0..INTMASK,
17689 not 0..VALMASK. Don't discard "excess" bits that random () returns.
17690
17691 2011-07-04 Stefan Monnier <monnier@iro.umontreal.ca>
17692
17693 * textprop.c (text_property_stickiness):
17694 Obey Vtext_property_default_nonsticky.
17695 (syms_of_textprop): Add `display' to Vtext_property_default_nonsticky.
17696 * w32fns.c (syms_of_w32fns):
17697 * xfns.c (syms_of_xfns): Don't Add `display' since it's there by default.
17698
17699 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17700
17701 * fileio.c (barf_or_query_if_file_exists): Use S_ISDIR.
17702 This is more efficient than Ffile_directory_p and avoids a minor race.
17703
17704 2011-07-04 Lars Magne Ingebrigtsen <larsi@gnus.org>
17705
17706 * buffer.c (Foverlay_put): Say what the return value is
17707 (bug#7835).
17708
17709 * fileio.c (barf_or_query_if_file_exists): Check first if the file
17710 is a directory before asking whether to use the file name
17711 (bug#7564).
17712 (barf_or_query_if_file_exists): Make the "File is a directory"
17713 error be more correct.
17714
17715 * fns.c (Frequire): Remove the mention of the .gz files, since
17716 that's installation-specific, but keep the mention of
17717 `get-load-suffixes'.
17718
17719 2011-07-04 Paul Eggert <eggert@cs.ucla.edu>
17720
17721 * editfns.c (Fformat_time_string): Don't assume strlen fits in int.
17722 Report string overflow if the output is too long.
17723
17724 2011-07-04 Juanma Barranquero <lekktu@gmail.com>
17725
17726 * gnutls.c (Fgnutls_boot): Don't mention :verify-error.
17727 (syms_of_gnutls): Remove duplicate DEFSYM for
17728 Qgnutls_bootprop_verify_hostname_error, an error for
17729 Qgnutls_bootprop_verify_error (which is no longer used).
17730
17731 * eval.c (find_handler_clause): Remove parameters `sig' and `data',
17732 unused since 2011-01-26T20:02:07Z!monnier@iro.umontreal.ca. All callers changed.
17733 Also (re)move comments that are misplaced or no longer relevant.
17734
17735 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17736
17737 * callint.c (Finteractive): Clarify the meaning of "@" (bug#8813).
17738
17739 2011-07-03 Chong Yidong <cyd@stupidchicken.com>
17740
17741 * xfaces.c (Finternal_merge_in_global_face): Modify the foreground
17742 and background color parameters if they have been changed.
17743
17744 2011-07-03 Lars Magne Ingebrigtsen <larsi@gnus.org>
17745
17746 * editfns.c (Fformat): Clarify the - and 0 flags (bug#6659).
17747
17748 2011-07-03 Paul Eggert <eggert@cs.ucla.edu>
17749
17750 * xsettings.c (SYSTEM_FONT): Define only when used.
17751 No need to define when HAVE_GSETTINGS || !HAVE_XFT.
17752
17753 * keymap.c (access_keymap_1): Now static.
17754
17755 2011-07-02 Chong Yidong <cyd@stupidchicken.com>
17756
17757 * keyboard.c (command_loop_1): If a down-mouse event is unbound,
17758 leave any prefix arg for the up event (Bug#1586).
17759
17760 2011-07-02 Lars Magne Ingebrigtsen <larsi@gnus.org>
17761
17762 * lread.c (syms_of_lread): Mention single symbols defined by
17763 `defvar' or `defconst' (bug#7154).
17764
17765 * fns.c (Frequire): Mention .el.gz files (bug#7314).
17766 (Frequire): Mention get-load-suffixes.
17767
17768 2011-07-02 Martin Rudalics <rudalics@gmx.at>
17769
17770 * window.h (window): Remove clone_number slot.
17771 * window.c (Fwindow_clone_number, Fset_window_clone_number):
17772 Remove.
17773 (make_parent_window, make_window, saved_window)
17774 (Fset_window_configuration, save_window_save): Don't deal with
17775 clone numbers.
17776 * buffer.c (Qclone_number): Remove declaration.
17777 (sort_overlays, overlay_strings): Don't deal with clone numbers.
17778
17779 2011-07-02 Stefan Monnier <monnier@iro.umontreal.ca>
17780
17781 Add multiple inheritance to keymaps.
17782 * keymap.c (Fmake_composed_keymap): New function.
17783 (Fset_keymap_parent): Simplify.
17784 (fix_submap_inheritance): Remove.
17785 (access_keymap_1): New function extracted from access_keymap to handle
17786 embedded parents and handle lists of maps.
17787 (access_keymap): Use it.
17788 (Fkeymap_prompt, map_keymap_internal, map_keymap, store_in_keymap)
17789 (Fcopy_keymap): Handle embedded parents.
17790 (Fcommand_remapping, define_as_prefix): Simplify.
17791 (Fkey_binding): Simplify.
17792 (syms_of_keymap): Move minibuffer-local-completion-map,
17793 minibuffer-local-filename-completion-map,
17794 minibuffer-local-must-match-map, and
17795 minibuffer-local-filename-must-match-map to Elisp.
17796 (syms_of_keymap): Defsubr make-composed-keymap.
17797 * keyboard.c (menu_bar_items): Use map_keymap_canonical.
17798 (parse_menu_item): Trivial simplification.
17799
17800 2011-07-01 Glenn Morris <rgm@gnu.org>
17801
17802 * Makefile.in (SETTINGS_LIBS): Fix typo.
17803
17804 2011-07-01 Kazuhiro Ito <kzhr@d1.dion.ne.jp> (tiny change)
17805
17806 * coding.c (Fencode_coding_string): Record the last coding system
17807 used, as the function doc string says (bug#8738).
17808
17809 2011-07-01 Jan Djärv <jan.h.d@swipnet.se>
17810
17811 * xsettings.c (store_monospaced_changed): Take new font as arg and
17812 check for change against current_mono_font.
17813 (EMACS_TYPE_SETTINGS): Remove this and related defines.
17814 (emacs_settings_constructor, emacs_settings_get_property)
17815 (emacs_settings_set_property, emacs_settings_class_init)
17816 (emacs_settings_init, gsettings_obj): Remove.
17817 (something_changedCB): New function for HAVE_GSETTINGS.
17818 (something_changedCB): HAVE_GCONF: Call store_monospaced_changed
17819 with value as argument.
17820 (init_gsettings): Check that GSETTINGS_SCHEMA exists before calling
17821 g_settings_new (Bug#8967). Do not create gsettings_obj.
17822 Remove calls to g_settings_bind. Connect something_changedCB to
17823 "changed".
17824
17825 * xgselect.c: Add defined (HAVE_GSETTINGS).
17826 (xgselect_initialize): Ditto.
17827
17828 * process.c: Add defined (HAVE_GSETTINGS) for xgselect.h
17829 (wait_reading_process_output): Add defined (HAVE_GSETTINGS) for
17830 xg_select.
17831
17832 2011-07-01 Paul Eggert <eggert@cs.ucla.edu>
17833
17834 * eval.c (struct backtrace): Simplify and port the data structure.
17835 Do not assume that "int nargs : BITS_PER_INT - 2;" produces a
17836 signed bit field, as this assumption is not portable and it makes
17837 Emacs crash when compiled with Sun C 5.8 on sparc. Do not use
17838 "char debug_on_exit : 1" as this is not portable either; instead,
17839 use the portable "unsigned int debug_on_exit : 1". Remove unused
17840 member evalargs. Remove obsolete comments about cc bombing out.
17841
17842 2011-06-30 Jan Djärv <jan.h.d@swipnet.se>
17843
17844 * xsettings.c: Include glib-object.h, gio/gio.h if HAVE_GSETTINGS.
17845 Let HAVE_GSETTINGS override HAVE_GCONF.
17846 (store_monospaced_changed): New function.
17847 (EMACS_SETTINGS): A new type derived from GObject to handle
17848 GSettings notifications.
17849 (emacs_settings_constructor, emacs_settings_get_property)
17850 (emacs_settings_set_property, emacs_settings_class_init):
17851 New functions.
17852 (gsettings_client, gsettings_obj): New variables.
17853 (GSETTINGS_SCHEMA): New define.
17854 (something_changedCB): Call store_monospaced_changed.
17855 (init_gsettings): New function.
17856 (xsettings_initialize): Call init_gsettings.
17857 (syms_of_xsettings): Initialize gsettings_client, gsettings_obj
17858 to NULL.
17859
17860 * Makefile.in (SETTINGS_CFLAGS, SETTINGS_LIBS): Rename from
17861 GCONF_CFLAGS/LIBS.
17862
17863 2011-06-29 Martin Rudalics <rudalics@gmx.at>
17864
17865 * window.c (resize_root_window, grow_mini_window)
17866 (shrink_mini_window): Rename Qresize_root_window to
17867 Qwindow_resize_root_window and Qresize_root_window_vertically to
17868 Qwindow_resize_root_window_vertically.
17869
17870 2011-06-28 Paul Eggert <eggert@cs.ucla.edu>
17871
17872 * gnutls.c (Qgnutls_bootprop_verify_error): Remove unused var.
17873
17874 2011-06-27 Juanma Barranquero <lekktu@gmail.com>
17875
17876 * makefile.w32-in: Redesign dependencies so they reflect more
17877 clearly which files are directly included by each source file,
17878 and not through other includes.
17879
17880 2011-06-27 Martin Rudalics <rudalics@gmx.at>
17881
17882 * buffer.c (Qclone_number): Declare static and DEFSYM it.
17883 (sort_overlays, overlay_strings): When an overlay's clone number
17884 matches the window's clone number process the overlay even if
17885 the overlay's window property doesn't match the current window.
17886
17887 * window.c (Fwindow_vchild): Rename to Fwindow_top_child.
17888 (Fwindow_hchild): Rename to Fwindow_left_child.
17889 (Fwindow_next): Rename to Fwindow_next_sibling.
17890 (Fwindow_prev): Rename to Fwindow_prev_sibling.
17891 (resize_window_check): Rename to window_resize_check.
17892 (resize_window_apply): Rename to window_resize_apply.
17893 (Fresize_window_apply): Rename to Fwindow_resize_apply.
17894 (Fdelete_other_windows_internal, resize_frame_windows)
17895 (Fsplit_window_internal, Fdelete_window_internal)
17896 (grow_mini_window, shrink_mini_window)
17897 (Fresize_mini_window_internal): Fix callers accordingly.
17898
17899 2011-06-26 Jan Djärv <jan.h.d@swipnet.se>
17900
17901 * emacsgtkfixed.h: State that this is only used with Gtk+3.
17902 (emacs_fixed_set_min_size): Remove.
17903 (emacs_fixed_new): Take frame as argument.
17904
17905 * emacsgtkfixed.c: State that this is only used with Gtk+3.
17906 (_EmacsFixedPrivate): Remove minwidth/height.
17907 Add struct frame *f.
17908 (emacs_fixed_init): Initialize priv->f.
17909 (get_parent_class, emacs_fixed_set_min_size): Remove.
17910 (emacs_fixed_new): Set priv->f to argument.
17911 (emacs_fixed_get_preferred_width)
17912 (emacs_fixed_get_preferred_height): Use min_width/height from
17913 frames size_hint to set minimum and natural (Bug#8919).
17914 (XSetWMSizeHints, XSetWMNormalHints): Override these functions
17915 and use min_width/height from frames size_hint to set
17916 min_width/height (Bug#8919).
17917
17918 * gtkutil.c (xg_create_frame_widgets): Pass f to emacs_fixed_new.
17919 (x_wm_set_size_hint): Remove call to emacs_fixed_set_min_size.
17920 Fix indentation.
17921
17922 2011-06-26 Eli Zaretskii <eliz@gnu.org>
17923
17924 * bidi.c (bidi_paragraph_init): Test for ZV_BYTE before calling
17925 bidi_at_paragraph_end, since fast_looking_at doesn't like to be
17926 called at ZV.
17927
17928 2011-06-26 Chong Yidong <cyd@stupidchicken.com>
17929
17930 * process.c (wait_reading_process_output): Bypass select if
17931 waiting for a cell while ignoring keyboard input, and input is
17932 pending. Suggested by Jan Djärv (Bug#8869).
17933
17934 2011-06-25 Paul Eggert <eggert@cs.ucla.edu>
17935
17936 Use gnulib's dup2 module instead of rolling our own.
17937 * sysdep.c (dup2) [!HAVE_DUP2]: Remove; gnulib now does this.
17938
17939 2011-06-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
17940
17941 * dispnew.c (scrolling_window): Before scrolling, turn off a
17942 mouse-highlight in the window being scrolled.
17943
17944 2011-06-24 Juanma Barranquero <lekktu@gmail.com>
17945
17946 Move DEFSYM to lisp.h and use everywhere.
17947
17948 * character.h (DEFSYM): Move declaration...
17949 * lisp.h (DEFSYM): ...here.
17950
17951 * gnutls.c:
17952 * minibuf.c:
17953 * w32menu.c:
17954 * w32proc.c:
17955 * w32select.c: Don't include character.h.
17956
17957 * alloc.c (syms_of_alloc):
17958 * buffer.c (syms_of_buffer):
17959 * bytecode.c (syms_of_bytecode):
17960 * callint.c (syms_of_callint):
17961 * casefiddle.c (syms_of_casefiddle):
17962 * casetab.c (init_casetab_once):
17963 * category.c (init_category_once, syms_of_category):
17964 * ccl.c (syms_of_ccl):
17965 * cmds.c (syms_of_cmds):
17966 * composite.c (syms_of_composite):
17967 * dbusbind.c (syms_of_dbusbind):
17968 * dired.c (syms_of_dired):
17969 * dispnew.c (syms_of_display):
17970 * doc.c (syms_of_doc):
17971 * editfns.c (syms_of_editfns):
17972 * emacs.c (syms_of_emacs):
17973 * eval.c (syms_of_eval):
17974 * fileio.c (syms_of_fileio):
17975 * fns.c (syms_of_fns):
17976 * frame.c (syms_of_frame):
17977 * fringe.c (syms_of_fringe):
17978 * insdel.c (syms_of_insdel):
17979 * keymap.c (syms_of_keymap):
17980 * lread.c (init_obarray, syms_of_lread):
17981 * macros.c (syms_of_macros):
17982 * msdos.c (syms_of_msdos):
17983 * print.c (syms_of_print):
17984 * process.c (syms_of_process):
17985 * search.c (syms_of_search):
17986 * sound.c (syms_of_sound):
17987 * syntax.c (init_syntax_once, syms_of_syntax):
17988 * terminal.c (syms_of_terminal):
17989 * textprop.c (syms_of_textprop):
17990 * undo.c (syms_of_undo):
17991 * w32.c (globals_of_w32):
17992 * window.c (syms_of_window):
17993 * xdisp.c (syms_of_xdisp):
17994 * xfaces.c (syms_of_xfaces):
17995 * xfns.c (syms_of_xfns):
17996 * xmenu.c (syms_of_xmenu):
17997 * xsettings.c (syms_of_xsettings):
17998 * xterm.c (syms_of_xterm): Use DEFSYM.
17999
18000 2011-06-24 Teodor Zlatanov <tzz@lifelogs.com>
18001
18002 * gnutls.c (syms_of_gnutls): Use the DEFSYM macro from character.h.
18003
18004 2011-06-23 Paul Eggert <eggert@cs.ucla.edu>
18005
18006 Integer and buffer overflow fixes (Bug#8873).
18007
18008 * print.c (printchar, strout): Check for string overflow.
18009 (PRINTPREPARE, printchar, strout):
18010 Don't set size unless allocation succeeds.
18011
18012 * minibuf.c (read_minibuf_noninteractive): Use ptrdiff_t, not int,
18013 for sizes. Check for string overflow more accurately.
18014 Simplify newline removal at end; this suppresses a GCC 4.6.0 warning.
18015
18016 * macros.c: Integer and buffer overflow fixes.
18017 * keyboard.h (struct keyboard.kbd_macro_bufsize):
18018 * macros.c (Fstart_kbd_macro, store_kbd_macro_char):
18019 Use ptrdiff_t, not int, for sizes.
18020 Don't increment bufsize until after realloc succeeds.
18021 Check for size-calculation overflow.
18022 (Fstart_kbd_macro): Use EMACS_INT, not int, for XINT result.
18023
18024 * lisp.h (DEFVAR_KBOARD): Use offsetof instead of char * finagling.
18025
18026 * lread.c: Integer overflow fixes.
18027 (read_integer): Radix is now EMACS_INT, not int,
18028 to improve quality of diagnostics for out-of-range radices.
18029 Calculate buffer size correctly for out-of-range radices.
18030 (read1): Check for integer overflow in radices, and in
18031 read-circle numbers.
18032 (read_escape): Avoid int overflow.
18033 (Fload, openp, read_buffer_size, read1)
18034 (substitute_object_recurse, read_vector, read_list, map_obarray):
18035 Use ptrdiff_t, not int, for sizes.
18036 (read1): Use EMACS_INT, not int, for sizes.
18037 Check for size overflow.
18038
18039 * image.c (cache_image): Check for size arithmetic overflow.
18040
18041 * lread.c: Integer overflow issues.
18042 (saved_doc_string_size, saved_doc_string_length)
18043 (prev_saved_doc_string_size, prev_saved_doc_string_length):
18044 Now ptrdiff_t, not int.
18045 (read1): Don't assume doc string length fits in int. Check for
18046 out-of-range doc string lengths.
18047 (read_list): Don't assume file position fits in int.
18048 (read_escape): Check for hex character overflow.
18049
18050 2011-06-22 Leo Liu <sdl.web@gmail.com>
18051
18052 * minibuf.c (Fcompleting_read_default, Vcompleting_read_function):
18053 Move to minibuffer.el.
18054
18055 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18056
18057 Fixes for GLYPH_DEBUG found by GCC 4.6.0 static checking.
18058 The following patches are for when GLYPH_DEBUG && !XASSERT.
18059 * dispextern.h (trace_redisplay_p, dump_glyph_string):
18060 * dispnew.c (flush_stdout):
18061 * xdisp.c (dump_glyph_row, dump_glyph_matrix, dump_glyph):
18062 Mark as externally visible.
18063 * dispnew.c (check_window_matrix_pointers): Now static.
18064 * dispnew.c (window_to_frame_vpos):
18065 * xfns.c (unwind_create_frame):
18066 * xterm.c (x_check_font): Remove unused local.
18067 * scroll.c (CHECK_BOUNDS):
18068 * xfaces.c (cache_fache): Rename local to avoid shadowing.
18069 * xfns.c, w32fns.c (image_cache_refcount, dpyinfo_refcount): Now static.
18070 * xdisp.c (check_window_end): Now a no-op if !XASSERTS.
18071 (debug_first_unchanged_at_end_vpos, debug_last_unchanged_at_beg_vpos)
18072 (debug_dvpos, debug_dy, debug_delta, debug_delta_bytes, debug_end_vpos):
18073 Now static.
18074 (debug_method_add): Use va_list and vsprintf rather than relying
18075 on undefined behavior with wrong number of arguments.
18076 (dump_glyph, dump_glyph_row, Fdump_glyph_matrix):
18077 Don't assume ptrdiff_t and EMACS_INT are the same width as int.
18078 In this code, it's OK to assume C99 behavior for ptrdiff_t formats
18079 since we're not interested in debugging glyphs with old libraries.
18080 * xfaces.c (cache_face): Move debugging code earlier; this pacifies
18081 GCC 4.6.0's static checking.
18082
18083 2011-06-22 Paul Eggert <eggert@cs.ucla.edu>
18084
18085 Integer overflow and signedness fixes (Bug#8873).
18086 A few related buffer overrun fixes, too.
18087
18088 * font.c (font_score): Use EMACS_INT, not int, to store XINT value.
18089
18090 * dispextern.h (struct face.stipple):
18091 * image.c (x_bitmap_height, x_bitmap_width, x_bitmap_pixmap)
18092 (x_bitmap_mask, x_allocate_bitmap_record)
18093 (x_create_bitmap_from_data, x_create_bitmap_from_file)
18094 (x_destroy_bitmap, x_destroy_all_bitmaps, x_create_bitmap_mask)
18095 (x_create_bitmap_from_xpm_data):
18096 * nsterm.h (struct ns_display_info.bitmaps_size, .bitmaps_last):
18097 * w32term.h (struct w32_display_info.icon_bitmap_id, .bitmaps_size)
18098 (.bitmaps_last):
18099 * xfaces.c (load_pixmap):
18100 * xterm.c (x_bitmap_icon, x_wm_set_icon_pixmap):
18101 * xterm.h (struct x_display_info.icon_bitmap_id, .bitmaps_size)
18102 (.bitmaps_last, struct x_output.icon_bitmap):
18103 Use ptrdiff_t, not int, for bitmap indexes.
18104 (x_allocate_bitmap_record): Check for size overflow.
18105 * dispextern.h, lisp.h: Adjust to API changes elsewhere.
18106
18107 Use ptrdiff_t, not int, for overlay counts.
18108 * buffer.h (overlays_at, sort_overlays, GET_OVERLAYS_AT):
18109 * editfns.c (overlays_around, get_pos_property):
18110 * textprop.c (get_char_property_and_overlay):
18111 * xdisp.c (next_overlay_change, note_mouse_highlight):
18112 * xfaces.c (face_at_buffer_position):
18113 * buffer.c (OVERLAY_COUNT_MAX): New macro.
18114 (overlays_at, overlays_in, sort_overlays, Foverlays_at)
18115 (Fnext_overlay_change, Fprevious_overlay_change)
18116 (mouse_face_overlay_overlaps, Foverlays_in):
18117 Use ptrdiff_t, not int, for sizes.
18118 (overlays_at, overlays_in): Check for size-calculation overflow.
18119
18120 * xterm.c (xim_initialize, same_x_server): Strlen may not fit in int.
18121
18122 * xsmfns.c (smc_save_yourself_CB, x_session_initialize): Avoid strlen.
18123 (x_session_initialize): Do not assume string length fits in int.
18124
18125 * xsettings.c (apply_xft_settings): Fix potential buffer overrun.
18126 This is unlikely, but can occur if DPI is outlandish.
18127
18128 * xsettings.c (Ffont_get_system_normal_font, Ffont_get_system_font):
18129 * xselect.c (Fx_get_atom_name): Avoid need for strlen.
18130
18131 * xrdb.c: Don't assume strlen fits in int; avoid some strlens.
18132 * xrdb.c (magic_file_p, search_magic_path):
18133 Omit last arg SUFFIX; it was always 0. All callers changed.
18134 (magic_file_p): Use ptrdiff_t, not int. Check for size overflow.
18135
18136 * xfont.c (xfont_match): Avoid need for strlen.
18137
18138 * xfns.c: Don't assume strlen fits in int.
18139 (xic_create_fontsetname, x_window): Use ptrdiff_t, not int.
18140
18141 * xdisp.c (message_log_check_duplicate): Return intmax_t,
18142 not unsigned long, as we prefer signed integers. All callers changed.
18143 Detect integer overflow in repeat count.
18144 (message_dolog): Don't assume print length fits in 39 bytes.
18145 (display_mode_element): Don't assume strlen fits in int.
18146
18147 * termcap.c: Don't assume sizes fit in int and never overflow.
18148 (struct termcap_buffer, tgetent): Use ptrdiff_t, not int, for sizes.
18149 (gobble_line): Check for size-calculation overflow.
18150
18151 * minibuf.c (Fread_buffer):
18152 * lread.c (intern, intern_c_string):
18153 * image.c (xpm_scan) [HAVE_NS && !HAVE_XPM]:
18154 Don't assume string length fits in int.
18155
18156 * keyboard.c (parse_tool_bar_item):
18157 * gtkutil.c (style_changed_cb): Avoid need for strlen.
18158
18159 * font.c: Don't assume string length fits in int.
18160 (font_parse_xlfd, font_parse_fcname, font_unparse_fcname):
18161 Use ptrdiff_t, not int.
18162 (font_intern_prop): Don't assume string length fits in int.
18163 Don't assume integer property fits in fixnum.
18164 * font.h (font_intern_prop): 2nd arg is now ptrdiff_t, not int.
18165
18166 * filelock.c: Fix some buffer overrun and integer overflow issues.
18167 (get_boot_time): Don't assume gzip command string fits in 100 bytes.
18168 Reformulate so as not to need the command string.
18169 Invoke gzip -cd rather than gunzip, as it's more portable.
18170 (lock_info_type, lock_file_1, lock_file):
18171 Don't assume pid_t and time_t fit in unsigned long.
18172 (LOCK_PID_MAX): Remove; we now use more-reliable bounds.
18173 (current_lock_owner): Prefer signed type for sizes.
18174 Use memcpy, not strncpy, where memcpy is what is really wanted.
18175 Don't assume (via atoi) that time_t and pid_t fit in int.
18176 Check for time_t and/or pid_t out of range, e.g., via a network share.
18177 Don't alloca where an auto var works fine.
18178
18179 * fileio.c: Fix some integer overflow issues.
18180 (file_name_as_directory, Fexpand_file_name, Fsubstitute_in_file_name):
18181 Don't assume string length fits in int.
18182 (directory_file_name): Don't assume string length fits in long.
18183 (make_temp_name): Don't assume pid fits in int, or that its print
18184 length is less than 20.
18185
18186 * data.c (Fsubr_name): Rewrite to avoid a strlen call.
18187
18188 * coding.c (make_subsidiaries): Don't assume string length fits in int.
18189
18190 * callproc.c (child_setup): Rewrite to avoid two strlen calls.
18191
18192 * process.c (Fformat_network_address): Use EMACS_INT, not EMACS_UINT.
18193 We prefer signed integers, even for size calculations.
18194
18195 * emacs.c: Don't assume string length fits in 'int'.
18196 (DEFINE_DUMMY_FUNCTION, sort_args): Use ptrdiff_t, not int.
18197 (main): Don't invoke strlen when not needed.
18198
18199 * dbusbind.c (XD_ERROR): Don't arbitrarily truncate string.
18200 (XD_DEBUG_MESSAGE): Don't waste a byte.
18201
18202 * callproc.c (getenv_internal_1, getenv_internal)
18203 (Fgetenv_internal):
18204 * buffer.c (init_buffer): Don't assume string length fits in 'int'.
18205
18206 * lread.c (invalid_syntax): Omit length argument.
18207 All uses changed. This doesn't fix a bug, but it simplifies the
18208 code away from its former Hollerith-constant appearance, and it's
18209 one less 'int' to worry about when looking at integer-overflow issues.
18210 (string_to_number): Simplify 2011-04-26 change by invoking xsignal1.
18211
18212 * lisp.h (DEFUN): Remove bogus use of sizeof (struct Lisp_Subr).
18213 This didn't break anything, but it didn't help either.
18214 It's confusing to put a bogus integer in a place where the actual
18215 value does not matter.
18216 (LIST_END_P): Remove unused macro and its bogus comment.
18217 (make_fixnum_or_float): Remove unnecessary cast to EMACS_INT.
18218
18219 * lisp.h (union Lisp_Object.i): EMACS_INT, not EMACS_UINT.
18220 This is for consistency with the ordinary, non-USE_LISP_UNION_TYPE,
18221 implementation.
18222 (struct Lisp_Bool_Vector.size): EMACS_INT, not EMACS_UINT.
18223 We prefer signed types, and the value cannot exceed the EMACS_INT
18224 range anyway (because otherwise the length would not be representable).
18225 (XSET) [USE_LISP_UNION_TYPE]: Use uintptr_t and intptr_t,
18226 not EMACS_UINT and EMACS_INT, when converting pointer to integer.
18227 This avoids a GCC warning when WIDE_EMACS_INT.
18228
18229 * indent.c (sane_tab_width): New function.
18230 (current_column, scan_for_column, Findent_to, position_indentation)
18231 (compute_motion): Use it. This is just for clarity.
18232 (Fcompute_motion): Don't assume hscroll and tab offset fit in int.
18233
18234 * image.c (xbm_image_p): Don't assume stated width, height fit in int.
18235
18236 * lisp.h (lint_assume): New macro.
18237 * composite.c (composition_gstring_put_cache):
18238 * ftfont.c (ftfont_shape_by_flt): Use it to pacify GCC 4.6.0.
18239
18240 * editfns.c, insdel.c:
18241 Omit unnecessary forward decls, to simplify future changes.
18242
18243 * ftfont.c (ftfont_shape_by_flt): Use signed integers for lengths.
18244
18245 * font.c (Ffont_shape_gstring): Don't assume glyph len fits in 'int'.
18246
18247 * fns.c (Ffillarray): Don't assume bool vector size fits in 'int'.
18248 Use much-faster test for byte-length change.
18249 Don't assume string byte-length fits in 'int'.
18250 Check that character arg fits in 'int'.
18251 (mapcar1): Declare byte as byte, for clarity.
18252
18253 * alloc.c (Fmake_bool_vector): Avoid unnecessary multiplication.
18254
18255 * fns.c (concat): Catch string overflow earlier.
18256 Do not rely on integer wraparound.
18257
18258 * dispextern.h (struct it.overlay_strings_charpos)
18259 (struct it.selective): Now EMACS_INT, not int.
18260 * xdisp.c (forward_to_next_line_start)
18261 (back_to_previous_visible_line_start)
18262 (reseat_at_next_visible_line_start, next_element_from_buffer):
18263 Don't arbitrarily truncate the value of 'selective' to int.
18264
18265 * xdisp.c (init_iterator): Use XINT, not XFASTINT; it might be < 0.
18266
18267 * composite.c: Don't truncate sizes to 'int'.
18268 (composition_gstring_p, composition_reseat_it)
18269 (composition_adjust_point): Use EMACS_INT, not int.
18270 (get_composition_id, composition_gstring_put_cache): Use EMACS_INT,
18271 not EMACS_UINT, for indexes.
18272
18273 * category.h (CATEGORY_SET_P): Remove unnecessary cast to EMACS_INT.
18274
18275 * buffer.c: Include <verify.h>.
18276 (struct sortvec.priority, struct sortstr.priority):
18277 Now EMACS_INT, not int.
18278 (compare_overlays, cmp_for_strings): Avoid subtraction overflow.
18279 (struct sortstr.size, record_overlay_string)
18280 (struct sortstrlist.size, struct sortlist.used):
18281 Don't truncate size to int.
18282 (record_overlay_string): Check for size-calculation overflow.
18283 (init_buffer_once): Check at compile-time, not run-time.
18284
18285 2011-06-22 Jim Meyering <meyering@redhat.com>
18286
18287 Don't leak an XBM-image-sized buffer
18288 * image.c (xbm_load): Free the image buffer after using it.
18289
18290 2011-06-21 Paul Eggert <eggert@cs.ucla.edu>
18291
18292 Port to Sun C.
18293 * composite.c (find_automatic_composition): Omit needless 'return 0;'
18294 that Sun C diagnosed.
18295 * fns.c (secure_hash): Fix pointer signedness issue.
18296 * intervals.c (static_offset_intervals): New function.
18297 (offset_intervals): Use it.
18298
18299 2011-06-21 Leo Liu <sdl.web@gmail.com>
18300
18301 * deps.mk (fns.o):
18302 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha256.h and
18303 sha512.h.
18304
18305 * fns.c (secure_hash): Rename from crypto_hash_function and change
18306 the first arg to accept symbols.
18307 (Fsecure_hash): New primitive.
18308 (syms_of_fns): New symbols.
18309
18310 2011-06-20 Deniz Dogan <deniz@dogan.se>
18311
18312 * process.c (Fset_process_buffer): Clarify return value in
18313 docstring.
18314
18315 2011-06-18 Chong Yidong <cyd@stupidchicken.com>
18316
18317 * dispnew.c (add_window_display_history): Use BVAR.
18318
18319 * xdisp.c (debug_method_add): Use BVAR.
18320 (check_window_end, dump_glyph_matrix, dump_glyph)
18321 (dump_glyph_row, dump_glyph_string): Convert arglist to ANSI C.
18322
18323 * xfaces.c (check_lface_attrs, check_lface, dump_realized_face):
18324 Likewise.
18325
18326 * xfns.c (Fx_create_frame, x_create_tip_frame): Delay image cache
18327 check till after the cache is created in init_frame_faces.
18328
18329 2011-06-17 Stefan Monnier <monnier@iro.umontreal.ca>
18330
18331 * fns.c (Fsafe_length): Yet another int/Lisp_Object mixup.
18332
18333 2011-06-16 Paul Eggert <eggert@cs.ucla.edu>
18334
18335 * lisp.h: Include <limits.h>, for INT_MAX, LONG_MAX, LLONG_MAX.
18336 Without this, prin1 mishandles Lisp_Misc_Save_Value printing on
18337 hosts with pre-C99 libraries, because pD is wrongly defined to "t".
18338
18339 Improve buffer-overflow checking (Bug#8873).
18340 * fileio.c (Finsert_file_contents):
18341 * insdel.c (insert_from_buffer_1, replace_range, replace_range_2):
18342 Remove the old (too-loose) buffer overflow checks.
18343 They weren't needed, since make_gap checks for buffer overflow.
18344 * insdel.c (make_gap_larger): Catch buffer overflows that were missed.
18345 The old code merely checked for Emacs fixnum overflow, and relied
18346 on undefined (wraparound) behavior. The new code avoids undefined
18347 behavior, and also checks for ptrdiff_t and/or size_t overflow.
18348
18349 * editfns.c (Finsert_char): Don't dump core with very negative counts.
18350 Tune. Don't use wider integers than needed. Don't use alloca.
18351 Use a bigger 'string' buffer. Rewrite to avoid 'n > 0' test.
18352
18353 * insdel.c (replace_range): Fix buf overflow when insbytes < outgoing.
18354
18355 * insdel.c, lisp.h (buffer_overflow): New function.
18356 (insert_from_buffer_1, replace_range, replace_range_2):
18357 * insdel.c (make_gap_larger):
18358 * editfns.c (Finsert_char):
18359 * fileio.c (Finsert_file_contents): Use it, to normalize wording.
18360
18361 * buffer.h (BUF_BYTES_MAX): Cast to ptrdiff_t so that it's signed.
18362
18363 2011-06-15 Paul Eggert <eggert@cs.ucla.edu>
18364
18365 Integer overflow and signedness fixes (Bug#8873, Bug#8828).
18366
18367 * ccl.c (ASCENDING_ORDER): New macro, to work around GCC bug 43772.
18368 (GET_CCL_RANGE, IN_INT_RANGE): Use it.
18369
18370 * fileio.c: Don't assume EMACS_INT fits in off_t.
18371 (emacs_lseek): New static function.
18372 (Finsert_file_contents, Fwrite_region): Use it.
18373 Use SEEK_SET, SEEK_CUR, SEEK_END as appropriate.
18374
18375 * fns.c (Fload_average): Don't assume 100 * load average fits in int.
18376
18377 * fns.c: Don't overflow int when computing a list length.
18378 * fns.c (QUIT_COUNT_HEURISTIC): New constant.
18379 (Flength, Fsafe_length): Use EMACS_INT, not int, to avoid unwanted
18380 truncation on 64-bit hosts. Check for QUIT every
18381 QUIT_COUNT_HEURISTIC entries rather than every other entry; that's
18382 faster and is responsive enough.
18383 (Flength): Report an error instead of overflowing an integer.
18384 (Fsafe_length): Return a float if the value is not representable
18385 as a fixnum. This shouldn't happen except in contrived situations.
18386 (Fnthcdr, Fsort): Don't assume list length fits in int.
18387 (Fcopy_sequence): Don't assume vector length fits in int.
18388
18389 * alloc.c: Check that resized vectors' lengths fit in fixnums.
18390 (header_size, word_size): New constants.
18391 (allocate_vectorlike): Don't check size overflow here.
18392 (allocate_vector): Check it here instead, since this is the only
18393 caller of allocate_vectorlike that could cause overflow.
18394 Check that the new vector's length is representable as a fixnum.
18395
18396 * fns.c (next_almost_prime): Don't return a multiple of 3 or 5.
18397 The previous code was bogus. For example, next_almost_prime (32)
18398 returned 39, which is undesirable as it is a multiple of 3; and
18399 next_almost_prime (24) returned 25, which is a multiple of 5 so
18400 why was the code bothering to check for multiples of 7?
18401
18402 * bytecode.c (exec_byte_code): Use ptrdiff_t, not int, for vector length.
18403
18404 * eval.c, doprnt.c (SIZE_MAX): Remove; inttypes.h defines this now.
18405
18406 Variadic C functions now count arguments with ptrdiff_t.
18407 This partly undoes my 2011-03-30 change, which replaced int with size_t.
18408 Back then I didn't know that the Emacs coding style prefers signed int.
18409 Also, in the meantime I found a few more instances where arguments
18410 were being counted with int, which may truncate counts on 64-bit
18411 machines, or EMACS_INT, which may be unnecessarily wide.
18412 * lisp.h (struct Lisp_Subr.function.aMANY)
18413 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call):
18414 Arg counts are now ptrdiff_t, not size_t.
18415 All variadic functions and their callers changed accordingly.
18416 (struct gcpro.nvars): Now size_t, not size_t. All uses changed.
18417 * bytecode.c (exec_byte_code): Check maxdepth for overflow,
18418 to avoid potential buffer overrun. Don't assume arg counts fit in 'int'.
18419 * callint.c (Fcall_interactively): Check arg count for overflow,
18420 to avoid potential buffer overrun. Use signed char, not 'int',
18421 for 'varies' array, so that we needn't bother to check its size
18422 calculation for overflow.
18423 * editfns.c (Fformat): Use ptrdiff_t, not EMACS_INT, to count args.
18424 * eval.c (apply_lambda):
18425 * fns.c (Fmapconcat): Use XFASTINT, not XINT, to get args length.
18426 (struct textprop_rec.argnum): Now ptrdiff_t, not int. All uses changed.
18427 (mapconcat): Use ptrdiff_t, not int and EMACS_INT, to count args.
18428
18429 * callint.c (Fcall_interactively): Don't use index var as event count.
18430
18431 * vm-limit.c (check_memory_limits): Fix incorrect extern function decls.
18432 * mem-limits.h (SIZE): Remove; no longer used.
18433
18434 * xterm.c (x_alloc_nearest_color_1): Prefer int to long when int works.
18435
18436 Remove unnecessary casts.
18437 * xterm.c (x_term_init):
18438 * xfns.c (x_set_border_pixel):
18439 * widget.c (create_frame_gcs): Remove casts to unsigned long etc.
18440 These aren't needed now that we assume ANSI C.
18441
18442 * sound.c (Fplay_sound_internal): Remove cast to unsigned long.
18443 It's more likely to cause problems (due to unsigned overflow)
18444 than to cure them.
18445
18446 * dired.c (Ffile_attributes): Don't use 32-bit hack on 64-bit hosts.
18447
18448 * unexelf.c (unexec): Don't assume BSS addr fits in unsigned.
18449
18450 * xterm.c (handle_one_xevent): Omit unnecessary casts to unsigned.
18451
18452 * keyboard.c (modify_event_symbol): Don't limit alist len to UINT_MAX.
18453
18454 * lisp.h (CHAR_TABLE_SET): Omit now-redundant test.
18455
18456 * lread.c (Fload): Don't compare a possibly-garbage time_t value.
18457
18458 GLYPH_CODE_FACE returns EMACS_INT, not int.
18459 * dispextern.h (merge_faces):
18460 * xfaces.c (merge_faces):
18461 * xdisp.c (get_next_display_element, next_element_from_display_vector):
18462 Don't assume EMACS_INT fits in int.
18463
18464 * character.h (CHAR_VALID_P): Remove unused parameter.
18465 * fontset.c, lisp.h, xdisp.c: All uses changed.
18466
18467 * editfns.c (Ftranslate_region_internal): Omit redundant test.
18468
18469 * fns.c (concat): Minor tuning based on overflow analysis.
18470 This doesn't fix any bugs. Use int to hold character, instead
18471 of constantly refetching from Emacs object. Use XFASTINT, not
18472 XINT, for value known to be a character. Don't bother comparing
18473 a single byte to 0400, as it's always less.
18474
18475 * floatfns.c (Fexpt):
18476 * fileio.c (make_temp_name): Omit unnecessary cast to unsigned.
18477
18478 * editfns.c (Ftranslate_region_internal): Use int, not EMACS_INT
18479 for characters.
18480
18481 * doc.c (get_doc_string): Omit (unsigned)c that mishandled negatives.
18482
18483 * data.c (Faset): If ARRAY is a string, check that NEWELT is a char.
18484 Without this fix, on a 64-bit host (aset S 0 4294967386) would
18485 incorrectly succeed when S was a string, because 4294967386 was
18486 truncated before it was used.
18487
18488 * chartab.c (Fchar_table_range): Use CHARACTERP to check range.
18489 Otherwise, an out-of-range integer could cause undefined behavior
18490 on a 64-bit host.
18491
18492 * composite.c: Use int, not EMACS_INT, for characters.
18493 (fill_gstring_body, composition_compute_stop_pos): Use int, not
18494 EMACS_INT, for values that are known to be in character range.
18495 This doesn't fix any bugs but is the usual style inside Emacs and
18496 may generate better code on 32-bit machines.
18497
18498 Make sure a 64-bit char is never passed to ENCODE_CHAR.
18499 This is for reasons similar to the recent CHAR_STRING fix.
18500 * charset.c (Fencode_char): Check that character arg is actually
18501 a character. Pass an int to ENCODE_CHAR.
18502 * charset.h (ENCODE_CHAR): Verify that the character argument is no
18503 wider than 'int', as a compile-time check to prevent future regressions
18504 in this area.
18505
18506 * character.c (char_string): Remove unnecessary casts.
18507
18508 Make sure a 64-bit char is never passed to CHAR_STRING.
18509 Otherwise, CHAR_STRING would do the wrong thing on a 64-bit platform,
18510 by silently ignoring the top 32 bits, allowing some values
18511 that were far too large to be valid characters.
18512 * character.h: Include <verify.h>.
18513 (CHAR_STRING, CHAR_STRING_ADVANCE): Verify that the character
18514 arguments are no wider than unsigned, as a compile-time check
18515 to prevent future regressions in this area.
18516 * data.c (Faset):
18517 * editfns.c (Fchar_to_string, general_insert_function, Finsert_char)
18518 (Fsubst_char_in_region):
18519 * fns.c (concat):
18520 * xdisp.c (decode_mode_spec_coding):
18521 Adjust to CHAR_STRING's new requirement.
18522 * editfns.c (Finsert_char, Fsubst_char_in_region):
18523 * fns.c (concat): Check that character args are actually
18524 characters. Without this test, these functions did the wrong
18525 thing with wildly out-of-range values on 64-bit hosts.
18526
18527 Remove incorrect casts to 'unsigned' that lose info on 64-bit hosts.
18528 These casts should not be needed on 32-bit hosts, either.
18529 * keyboard.c (read_char):
18530 * lread.c (Fload): Remove casts to unsigned.
18531
18532 * lisp.h (UNSIGNED_CMP): New macro.
18533 This fixes comparison bugs on 64-bit hosts.
18534 (ASCII_CHAR_P): Use it.
18535 * casefiddle.c (casify_object):
18536 * character.h (ASCII_BYTE_P, CHAR_VALID_P)
18537 (SINGLE_BYTE_CHAR_P, CHAR_STRING):
18538 * composite.h (COMPOSITION_ENCODE_RULE_VALID):
18539 * dispextern.h (FACE_FROM_ID):
18540 * keyboard.c (read_char): Use UNSIGNED_CMP.
18541
18542 * xmenu.c (dialog_selection_callback) [!USE_GTK]: Cast to intptr_t,
18543 not to EMACS_INT, to avoid GCC warning.
18544
18545 * xfns.c (x_set_scroll_bar_default_width): Remove unused 'int' locals.
18546
18547 * buffer.h (PTR_BYTE_POS, BUF_PTR_BYTE_POS): Remove harmful cast.
18548 The cast incorrectly truncated 64-bit byte offsets to 32 bits, and
18549 isn't needed on 32-bit machines.
18550
18551 * buffer.c (Fgenerate_new_buffer_name):
18552 Use EMACS_INT for count, not int.
18553 (advance_to_char_boundary): Return EMACS_INT, not int.
18554
18555 * data.c (Qcompiled_function): Now static.
18556
18557 * window.c (window_body_lines): Now static.
18558
18559 * image.c (gif_load): Rename local to avoid shadowing.
18560
18561 * lisp.h (SAFE_ALLOCA_LISP): Check for integer overflow.
18562 (struct Lisp_Save_Value): Use ptrdiff_t, not int, for 'integer' member.
18563 * alloc.c (make_save_value): Integer argument is now of type
18564 ptrdiff_t, not int.
18565 (mark_object): Use ptrdiff_t, not int.
18566 * lisp.h (pD): New macro.
18567 * print.c (print_object): Use it.
18568
18569 * alloc.c: Use EMACS_INT, not int, to count objects.
18570 (total_conses, total_markers, total_symbols, total_vector_size)
18571 (total_free_conses, total_free_markers, total_free_symbols)
18572 (total_free_floats, total_floats, total_free_intervals)
18573 (total_intervals, total_strings, total_free_strings):
18574 Now EMACS_INT, not int. All uses changed.
18575 (Fgarbage_collect): Compute overall total using a double, so that
18576 integer overflow is less likely to be a problem. Check for overflow
18577 when converting back to an integer.
18578 (n_interval_blocks, n_string_blocks, n_float_blocks, n_cons_blocks)
18579 (n_vectors, n_symbol_blocks, n_marker_blocks): Remove.
18580 These were 'int' variables that could overflow on 64-bit hosts;
18581 they were never used, so remove them instead of repairing them.
18582 (nzombies, ngcs, max_live, max_zombies): Now EMACS_INT, not 'int'.
18583 (inhibit_garbage_collection): Set gc_cons_threshold to max value.
18584 Previously, this ceilinged at INT_MAX, but that doesn't work on
18585 64-bit machines.
18586 (allocate_pseudovector): Don't use EMACS_INT when int would do.
18587
18588 * alloc.c (Fmake_bool_vector): Don't assume vector size fits in int.
18589 (allocate_vectorlike): Check for ptrdiff_t overflow.
18590 (mark_vectorlike, mark_char_table, mark_object): Avoid EMACS_UINT
18591 when a (possibly-narrower) signed value would do just as well.
18592 We prefer using signed arithmetic, to avoid comparison confusion.
18593
18594 * alloc.c: Catch some string size overflows that we were missing.
18595 (XMALLOC_OVERRUN_CHECK_SIZE) [!XMALLOC_OVERRUN_CHECK]: Define to 0,
18596 for convenience in STRING_BYTES_MAX.
18597 (STRING_BYTES_MAX): New macro, superseding the old one in lisp.h.
18598 The definition here is exact; the one in lisp.h was approximate.
18599 (allocate_string_data): Check for string overflow. This catches
18600 some instances we weren't catching before. Also, it catches
18601 size_t overflow on (unusual) hosts where SIZE_MAX <= min
18602 (PTRDIFF_MAX, MOST_POSITIVE_FIXNUM), e.g., when size_t is 32 bits
18603 and ptrdiff_t and EMACS_INT are both 64 bits.
18604
18605 * character.c, coding.c, doprnt.c, editfns.c, eval.c:
18606 All uses of STRING_BYTES_MAX replaced by STRING_BYTES_BOUND.
18607 * lisp.h (STRING_BYTES_BOUND): Rename from STRING_BYTES_MAX.
18608
18609 * character.c (string_escape_byte8): Fix nbytes/nchars typo.
18610
18611 * alloc.c (Fmake_string): Check for out-of-range init.
18612
18613 2011-06-15 Stefan Monnier <monnier@iro.umontreal.ca>
18614
18615 * eval.c (Fdefvaralias): Also mark the target as variable-special-p.
18616
18617 2011-06-14 Jan Djärv <jan.h.d@swipnet.se>
18618
18619 * xfns.c (x_set_scroll_bar_default_width): Remove argument to
18620 xg_get_default_scrollbar_width.
18621
18622 * gtkutil.c: Include emacsgtkfixed.h if HAVE_GTK3.
18623 (int_gtk_range_get_value): Move to the scroll bar part of the file.
18624 (style_changed_cb): Call update_theme_scrollbar_width and call
18625 x_set_scroll_bar_default_width and xg_frame_set_char_size for
18626 all frames (Bug#8505).
18627 (xg_create_frame_widgets): Call emacs_fixed_new if HAVE_GTK3 (Bug#8505).
18628 Call gtk_window_set_resizable if HAVE_GTK3.
18629 (x_wm_set_size_hint): Call emacs_fixed_set_min_size with min width
18630 and height if HAVE_GTK3 (Bug#8505).
18631 (scroll_bar_width_for_theme): New variable.
18632 (update_theme_scrollbar_width): New function.
18633 (xg_get_default_scrollbar_width): Move code to
18634 update_theme_scrollbar_width, just return scroll_bar_width_for_theme.
18635 (xg_initialize): Call update_theme_scrollbar_width.
18636
18637 * gtkutil.h (xg_get_default_scrollbar_width): Remove argument.
18638
18639 * emacsgtkfixed.c, emacsgtkfixed.h: New files.
18640
18641 2011-06-12 Martin Rudalics <rudalics@gmx.at>
18642
18643 * frame.c (make_frame): Call other_buffer_safely instead of
18644 other_buffer.
18645
18646 * window.c (temp_output_buffer_show): Call display_buffer with
18647 second argument Vtemp_buffer_show_specifiers and reset latter
18648 immediately after the call.
18649 (Vtemp_buffer_show_specifiers): New variable.
18650 (auto_window_vscroll_p, next_screen_context_lines)
18651 (Vscroll_preserve_screen_position): Remove leading asterisks from
18652 doc-strings.
18653
18654 2011-06-12 Paul Eggert <eggert@cs.ucla.edu>
18655
18656 Fix minor problems found by GCC 4.6.0 static checking.
18657 * buffer.c (Qclone_number): Remove for now, as it's unused.
18658 (record_buffer, Funrecord_buffer): Rename local to avoid shadowing.
18659 (record_buffer): Remove unused local.
18660 * frame.c (other_visible_frames, frame_buffer_list): Now static.
18661 (set_frame_buffer_list): Remove; unused.
18662 * frame.h (other_visible_frames): Remove decl.
18663 * keyboard.h (menu_items_inuse): Declare only if USE_GTK || USE_MOTIF.
18664 * lisp.h (frame_buffer_list, set_frame_buffer_list): Remove decls.
18665 (add_gpm_wait_descriptor, delete_gpm_wait_descriptor): Declare only
18666 if HAVE_GPM.
18667 * menu.c (menu_items_inuse): Now static unless USE_GTK || USE_MOTIF.
18668 * process.c (add_gpm_wait_descriptor, delete_gpm_wait_descriptor):
18669 Define only if HAVE_GPM.
18670 * widget.c (EmacsFrameResize, emacsFrameClassRec): Now static.
18671 (update_hints_inhibit): Remove; never set. All uses removed.
18672 * widgetprv.h (emacsFrameClassRec): Remove decl.
18673 * window.c (delete_deletable_window): Now returns void, since it
18674 wasn't returning anything.
18675 (compare_window_configurations): Remove unused locals.
18676 * xfns.c (x_set_scroll_bar_default_width): Remove unused locals.
18677 * xmenu.c (x_menu_set_in_use): Define only if USE_GTK || USE_MOTIF.
18678 (dialog_selection_callback) [!USE_GTK]: Prefer intptr_t for integers
18679 the same widths as pointers. This follows up on the 2011-05-06 patch.
18680 * xterm.c (x_alloc_lighter_color_for_widget): Define only if USE_LUCID.
18681 * xterm.h: Likewise.
18682 (x_menu_set_in_use): Declare only if USE_GTK || USE_MOTIF.
18683
18684 2011-06-12 Juanma Barranquero <lekktu@gmail.com>
18685
18686 * makefile.w32-in: Update dependencies.
18687 (LISP_H): Add lib/intprops.h.
18688
18689 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18690
18691 * image.c (gif_load): Add animation frame delay to the metadata.
18692 (syms_of_image): Use DEFSYM. New symbol `delay'.
18693
18694 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18695
18696 * window.c (delete_deletable_window): Re-add.
18697 (Fset_window_configuration): Rewrite to handle dead buffers and
18698 consequently deletable windows.
18699 (window_tree, Fwindow_tree): Remove. Supply functionality in
18700 window.el.
18701 (compare_window_configurations): Simplify code.
18702
18703 2011-06-11 Andreas Schwab <schwab@linux-m68k.org>
18704
18705 * image.c (imagemagick_load_image): Fix type mismatch.
18706 (Fimagemagick_types): Likewise.
18707
18708 * window.h (replace_buffer_in_windows): Declare.
18709
18710 2011-06-11 Martin Rudalics <rudalics@gmx.at>
18711
18712 * buffer.c: New Lisp objects Qbuffer_list_update_hook and
18713 Qclone_number. Remove external declaration of Qdelete_window.
18714 (Fbuffer_list): Rewrite doc-string. Minor restructuring of
18715 code.
18716 (Fget_buffer_create, Fmake_indirect_buffer, Frename_buffer):
18717 Run Qbuffer_list_update_hook if allowed.
18718 (Fother_buffer): Rewrite doc-string. Major rewrite for new
18719 buffer list implementation.
18720 (other_buffer_safely): New function.
18721 (Fkill_buffer): Replace call to replace_buffer_in_all_windows by
18722 calls to replace_buffer_in_windows and
18723 replace_buffer_in_windows_safely. Run Qbuffer_list_update_hook
18724 if allowed.
18725 (record_buffer): Inhibit quitting and rewrite using quittable
18726 functions. Run Qbuffer_list_update_hook if allowed.
18727 (Frecord_buffer, Funrecord_buffer): New functions.
18728 (switch_to_buffer_1, Fswitch_to_buffer): Remove.
18729 Move switch-to-buffer to window.el.
18730 (bury-buffer): Move to window.el.
18731 (Vbuffer_list_update_hook): New variable.
18732
18733 * lisp.h (other_buffer_safely): Add prototype in buffer.c
18734 section.
18735
18736 * window.h (resize_frame_windows): Move up in code.
18737 (Fwindow_frame): Remove EXFUN.
18738 (replace_buffer_in_all_windows): Remove prototype.
18739 (replace_buffer_in_windows_safely): Add prototype.
18740
18741 * window.c: Declare Qdelete_window static again. Move down
18742 declaration of select_count.
18743 (Fnext_window, Fprevious_window): Rewrite doc-strings.
18744 (Fother_window): Move to window.el.
18745 (window_loop): Remove DELETE_BUFFER_WINDOWS and UNSHOW_BUFFER
18746 cases. Add REPLACE_BUFFER_IN_WINDOWS_SAFELY case.
18747 (Fdelete_windows_on, Freplace_buffer_in_windows): Move to
18748 window.el.
18749 (replace_buffer_in_windows): Implement by calling
18750 Qreplace_buffer_in_windows.
18751 (replace_buffer_in_all_windows): Remove with some functionality
18752 moved into replace_buffer_in_windows_safely.
18753 (replace_buffer_in_windows_safely): New function.
18754 (select_window_norecord, select_frame_norecord): Move in front
18755 of run_window_configuration_change_hook. Remove now obsolete
18756 declarations.
18757 (Fset_window_buffer): Rewrite doc-string.
18758 Call Qrecord_window_buffer.
18759 (keys_of_window): Move binding for other-window to window.el.
18760
18761 2011-06-11 Chong Yidong <cyd@stupidchicken.com>
18762
18763 * dispextern.h (struct image): Replace data member, whose int_val
18764 and ptr_val fields were not used by anything, with a single
18765 lisp_val object.
18766
18767 * image.c (Fimage_metadata, make_image, mark_image, tiff_load)
18768 (gif_clear_image, gif_load, imagemagick_load_image)
18769 (gs_clear_image, gs_load): Callers changed.
18770
18771 2011-06-10 Paul Eggert <eggert@cs.ucla.edu>
18772
18773 * buffer.h: Include <time.h>, for time_t.
18774 Needed to build on FreeBSD 8.2. Problem reported by Herbert J. Skuhra.
18775
18776 Fix minor problems found by static checking.
18777
18778 * image.c (PixelGetMagickColor): Declare if ImageMagick headers don't.
18779
18780 Make identifiers static if they are not used in other modules.
18781 * data.c (Qcompiled_function, Qframe, Qvector):
18782 * image.c (QimageMagick, Qsvg):
18783 * minibuf.c (Qmetadata):
18784 * window.c (resize_window_check, resize_root_window): Now static.
18785 * window.h (resize_window_check, resize_root_window): Remove decls.
18786
18787 * window.c (window_deletion_count, delete_deletable_window):
18788 Remove; unused.
18789 (window_body_lines): Now static.
18790 (Fdelete_other_windows_internal): Mark vars as initialized.
18791 Make sure 'resize_failed' is initialized.
18792 (run_window_configuration_change_hook): Rename local to avoid shadowing.
18793 (resize_window_apply): Remove unused local.
18794 * window.h (delete_deletable_window): Remove decl.
18795
18796 * image.c (gif_load, svg_load_image): Rename locals to avoid shadowing.
18797 (imagemagick_load_image): Fix pointer signedness problem by changing
18798 last arg from unsigned char * to char *. All uses changed.
18799 Also, fix a local for similar reasons.
18800 Remove unused locals. Remove locals to avoid shadowing.
18801 (fn_rsvg_handle_free): Remove; unused.
18802 (svg_load, svg_load_image): Fix pointer signedness problem.
18803 (imagemagick_load_image): Don't use garbage pointer image_wand.
18804
18805 * ftfont.c (ftfont_get_metrics, ftfont_drive_otf): Remove unused locals.
18806
18807 2011-06-10 Chong Yidong <cyd@stupidchicken.com>
18808
18809 * image.c (gif_load): Fix omitted cast error introduced by
18810 2011-06-06 change.
18811
18812 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18813
18814 * window.h (resize_proportionally, orig_total_lines)
18815 (orig_top_line): Remove from window structure.
18816 (set_window_height, set_window_width, change_window_heights)
18817 (Fdelete_window): Remove prototypes.
18818 (resize_frame_windows): Remove duplicate declaration.
18819
18820 2011-06-10 Eli Zaretskii <eliz@gnu.org>
18821
18822 * window.h (resize_frame_windows, resize_window_check)
18823 (delete_deletable_window, resize_root_window)
18824 (resize_frame_windows): Declare prototypes.
18825
18826 * window.c (resize_window_apply): Make definition be "static" to
18827 match the prototype.
18828
18829 2011-06-10 Martin Rudalics <rudalics@gmx.at>
18830
18831 * window.c: Remove declarations of Qwindow_size_fixed,
18832 window_min_size_1, window_min_size_2, window_min_size,
18833 size_window, window_fixed_size_p, enlarge_window, delete_window.
18834 Remove static from declaration of Qdelete_window, it's
18835 temporarily needed by Fbury_buffer.
18836 (replace_window): Don't assign orig_top_line and
18837 orig_total_lines.
18838 (Fdelete_window, delete_window): Remove. Window deletion is
18839 handled by window.el.
18840 (window_loop): Remove DELETE_OTHER_WINDOWS case.
18841 Replace Fdelete_window calls with calls to Qdelete_window.
18842 (Fdelete_other_windows): Remove. Deleting other windows is
18843 handled by window.el.
18844 (window_fixed_size_p): Remove. Fixed-sizeness of windows is
18845 handled in window.el.
18846 (window_min_size_2, window_min_size_1, window_min_size): Remove.
18847 Window minimum sizes are handled in window.el.
18848 (shrink_windows, size_window, set_window_height)
18849 (set_window_width, change_window_heights, window_height)
18850 (window_width, CURBEG, CURSIZE, enlarge_window)
18851 (adjust_window_trailing_edge, Fadjust_window_trailing_edge)
18852 (Fenlarge_window, Fshrink_window): Remove. Window resizing is
18853 handled in window.el.
18854 (make_dummy_parent): Rename to make_parent_window and give it a
18855 second argument horflag.
18856 (make_window): Don't set resize_proportionally any more.
18857 (Fsplit_window): Remove. Windows are split in window.el.
18858 (save_restore_action, save_restore_orig_size)
18859 (shrink_window_lowest_first, save_restore_orig_size): Remove.
18860 Resize mini windows in window.el.
18861 (grow_mini_window, shrink_mini_window): Implement by calling
18862 Qresize_root_window_vertically, resize_window_check and
18863 resize_window_apply.
18864 (saved_window, Fset_window_configuration, save_window_save):
18865 Do not handle orig_top_line, orig_total_lines, and
18866 resize_proportionally.
18867 (window_min_height, window_min_width): Move to window.el.
18868 (keys_of_window): Move bindings for delete-other-windows,
18869 split-window, delete-window and enlarge-window to window.el.
18870
18871 * buffer.c: Temporarily extern Qdelete_window.
18872 (Fbury_buffer): Temporarily call Qdelete_window instead of
18873 Fdelete_window (Fbury_buffer will move to window.el soon).
18874
18875 * frame.c (set_menu_bar_lines_1): Remove code handling
18876 orig_top_line and orig_total_lines.
18877
18878 * dispnew.c (adjust_frame_glyphs_initially): Don't use
18879 set_window_height but set heights directly.
18880 (change_frame_size_1): Use resize_frame_windows.
18881
18882 * xdisp.c (init_xdisp): Don't use set_window_height but set
18883 heights directly.
18884
18885 * xfns.c (x_set_menu_bar_lines, x_set_tool_bar_lines):
18886 Use resize_frame_windows instead of change_window_heights and run
18887 run_window_configuration_change_hook.
18888
18889 * w32fns.c (x_set_tool_bar_lines): Use resize_frame_windows
18890 instead of change_window_heights and run
18891 run_window_configuration_change_hook.
18892
18893 2011-06-09 Martin Rudalics <rudalics@gmx.at>
18894
18895 * window.c (replace_window): Rename second argument REPLACEMENT to
18896 NEW. New third argument SETFLAG. Rewrite.
18897 (delete_window, make_dummy_parent): Call replace_window with
18898 third argument 1.
18899 (window_list_1): Move down in code.
18900 (run_window_configuration_change_hook): Move set_buffer part
18901 before select_frame_norecord part in order to unwind correctly.
18902 Rename count1 to count.
18903 (recombine_windows, delete_deletable_window, resize_root_window)
18904 (Fdelete_other_windows_internal)
18905 (Frun_window_configuration_change_hook, make_parent_window)
18906 (resize_window_check, resize_window_apply, Fresize_window_apply)
18907 (resize_frame_windows, Fsplit_window_internal)
18908 (Fdelete_window_internal, Fresize_mini_window_internal):
18909 New functions.
18910 (syms_of_window): New variables Vwindow_splits and Vwindow_nest.
18911
18912 2011-06-08 Martin Rudalics <rudalics@gmx.at>
18913
18914 * window.h (window): Add some new members to window structure -
18915 normal_lines, normal_cols, new_total, new_normal, clone_number,
18916 splits, nest, prev_buffers, next_buffers.
18917 (WINDOW_TOTAL_SIZE): Move here from window.c.
18918 (MIN_SAFE_WINDOW_WIDTH, MIN_SAFE_WINDOW_HEIGHT): Define here.
18919
18920 * window.c (Fwindow_height, Fwindow_width, Fwindow_full_width_p):
18921 Remove.
18922 (make_dummy_parent): Set new members of windows structure.
18923 (make_window): Move down in code. Handle new members of window
18924 structure.
18925 (Fwindow_clone_number, Fwindow_splits, Fset_window_splits)
18926 (Fwindow_nest, Fset_window_nest, Fwindow_new_total)
18927 (Fwindow_normal_size, Fwindow_new_normal, Fwindow_prev_buffers)
18928 (Fset_window_prev_buffers, Fwindow_next_buffers)
18929 (Fset_window_next_buffers, Fset_window_clone_number):
18930 New functions.
18931 (Fwindow_hscroll, Fwindow_at, Fwindow_point, Fwindow_start)
18932 (Fwindow_end, Fwindow_line_height, Fset_window_dedicated_p):
18933 Doc-string fixes.
18934 (Fwindow_parameters, Fwindow_parameter, Fset_window_parameter):
18935 Argument WINDOW can be now internal window too.
18936 (Fwindow_use_time): Move up in code.
18937 (Fget_buffer_window): Rename argument FRAME to ALL-FRAMES.
18938 Rewrite doc-string.
18939 (Fset_window_configuration, saved_window)
18940 (Fcurrent_window_configuration, save_window_save): Handle new
18941 members of window structure.
18942 (WINDOW_TOTAL_SIZE, MIN_SAFE_WINDOW_WIDTH)
18943 (MIN_SAFE_WINDOW_HEIGHT): Move to window.h.
18944 (syms_of_window): New Lisp objects Qrecord_window_buffer,
18945 Qwindow_deletable_p, Qdelete_window, Qreplace_buffer_in_windows,
18946 Qget_mru_window, Qresize_root_window,
18947 Qresize_root_window_vertically, Qsafe, Qabove, Qbelow,
18948 Qauto_buffer_name; staticpro them.
18949
18950 2011-06-07 Martin Rudalics <rudalics@gmx.at>
18951
18952 * window.c (Fwindow_total_size, Fwindow_left_column)
18953 (Fwindow_top_line, window_body_lines, Fwindow_body_size)
18954 (Fwindow_list_1): New functions.
18955 (window_box_text_cols): Replace with window_body_cols.
18956 (Fwindow_width, Fscroll_left, Fscroll_right):
18957 Use window_body_cols instead of window_box_text_cols.
18958 (delete_window, Fset_window_configuration):
18959 Call delete_all_subwindows with window as argument.
18960 (delete_all_subwindows): Take a window as argument and not a
18961 structure. Rewrite.
18962 (window_loop): Remove handling of GET_LRU_WINDOW and
18963 GET_LARGEST_WINDOW.
18964 (Fget_lru_window, Fget_largest_window): Move to window.el.
18965
18966 * window.h: Extern window_body_cols instead of
18967 window_box_text_cols. delete_all_subwindows now takes a
18968 Lisp_Object as argument.
18969
18970 * indent.c (compute_motion, Fcompute_motion):
18971 Use window_body_cols instead of window_box_text_cols.
18972
18973 * frame.c (delete_frame): Call delete_all_subwindows with root
18974 window as argument.
18975
18976 2011-06-07 Daniel Colascione <dan.colascione@gmail.com>
18977
18978 * fns.c (Fputhash): Document return value.
18979
18980 2011-06-06 Chong Yidong <cyd@stupidchicken.com>
18981
18982 * image.c (gif_load): Implement gif89a spec "no disposal" method.
18983
18984 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
18985
18986 Cons<->int and similar integer overflow fixes (Bug#8794).
18987
18988 Check for overflow when converting integer to cons and back.
18989 * charset.c (Fdefine_charset_internal, Fdecode_char):
18990 Use cons_to_unsigned to catch overflow.
18991 (Fencode_char): Use INTEGER_TO_CONS.
18992 * composite.h (LGLYPH_CODE): Use cons_to_unsigned.
18993 (LGLYPH_SET_CODE): Use INTEGER_TO_CONS.
18994 * data.c (long_to_cons, cons_to_long): Remove.
18995 (cons_to_unsigned, cons_to_signed): New functions.
18996 These signal an error for invalid or out-of-range values.
18997 * dired.c (Ffile_attributes): Use INTEGER_TO_CONS.
18998 * fileio.c (Fset_visited_file_modtime): Use CONS_TO_INTEGER.
18999 * font.c (Ffont_variation_glyphs):
19000 * fontset.c (Finternal_char_font): Use INTEGER_TO_CONS.
19001 * lisp.h: Include <intprops.h>.
19002 (INTEGER_TO_CONS, CONS_TO_INTEGER): New macros.
19003 (cons_to_signed, cons_to_unsigned): New decls.
19004 (long_to_cons, cons_to_long): Remove decls.
19005 * undo.c (record_first_change): Use INTEGER_TO_CONS.
19006 (Fprimitive_undo): Use CONS_TO_INTEGER.
19007 * xfns.c (Fx_window_property): Likewise.
19008 * xselect.c: Include <limits.h>.
19009 (x_own_selection, selection_data_to_lisp_data):
19010 Use INTEGER_TO_CONS.
19011 (x_handle_selection_request, x_handle_selection_clear)
19012 (x_get_foreign_selection, Fx_disown_selection_internal)
19013 (Fx_get_atom_name, x_send_client_event): Use CONS_TO_INTEGER.
19014 (lisp_data_to_selection_data): Use cons_to_unsigned.
19015 (x_fill_property_data): Use cons_to_signed.
19016 Report values out of range.
19017
19018 Check for buffer and string overflow more precisely.
19019 * buffer.h (BUF_BYTES_MAX): New macro.
19020 * lisp.h (STRING_BYTES_MAX): New macro.
19021 * alloc.c (Fmake_string):
19022 * character.c (string_escape_byte8):
19023 * coding.c (coding_alloc_by_realloc):
19024 * doprnt.c (doprnt):
19025 * editfns.c (Fformat):
19026 * eval.c (verror):
19027 Use STRING_BYTES_MAX, not MOST_POSITIVE_FIXNUM,
19028 since they may not be the same number.
19029 * editfns.c (Finsert_char):
19030 * fileio.c (Finsert_file_contents):
19031 Likewise for BUF_BYTES_MAX.
19032
19033 * image.c: Use ptrdiff_t, not int, for sizes.
19034 (slurp_file): Switch from int to ptrdiff_t.
19035 All uses changed.
19036 (slurp_file): Check that file size fits in both size_t (for
19037 malloc) and ptrdiff_t (for sanity and safety).
19038
19039 * fileio.c (Fverify_visited_file_modtime): Avoid time overflow
19040 if b->modtime has its maximal value.
19041
19042 * dired.c (Ffile_attributes): Don't assume EMACS_INT has >32 bits.
19043
19044 Don't assume time_t can fit into int.
19045 * buffer.h (struct buffer.modtime): Now time_t, not int.
19046 * fileio.c (Fvisited_file_modtime): No need for time_t cast now.
19047 * undo.c (Fprimitive_undo): Use time_t, not int, for time_t value.
19048
19049 Minor fixes for signed vs unsigned integers.
19050 * character.h (MAYBE_UNIFY_CHAR):
19051 * charset.c (maybe_unify_char):
19052 * keyboard.c (read_char, reorder_modifiers):
19053 XINT -> XFASTINT, since the integer must be nonnegative.
19054 * ftfont.c (ftfont_spec_pattern):
19055 * keymap.c (access_keymap, silly_event_symbol_error):
19056 XUINT -> XFASTINT, since the integer must be nonnegative.
19057 (Fsingle_key_description, preferred_sequence_p): XUINT -> XINT,
19058 since it makes no difference and we prefer signed.
19059 * keyboard.c (record_char): Use XUINT when all the neighbors do.
19060 (access_keymap): NATNUMP -> INTEGERP, since the integer must be
19061 nonnegative.
19062
19063 2011-06-06 Stefan Monnier <monnier@iro.umontreal.ca>
19064
19065 * window.h (Fwindow_frame): Declare.
19066
19067 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19068
19069 * alloc.c: Simplify handling of large-request failures (Bug#8800).
19070 (SPARE_MEMORY): Always define.
19071 (LARGE_REQUEST): Remove.
19072 (memory_full): Use SPARE_MEMORY rather than LARGE_REQUEST.
19073
19074 2011-06-06 Martin Rudalics <rudalics@gmx.at>
19075
19076 * lisp.h: Move EXFUNS for Fframe_root_window,
19077 Fframe_first_window and Fset_frame_selected_window to window.h.
19078
19079 * window.h: Move EXFUNS for Fframe_root_window,
19080 Fframe_first_window and Fset_frame_selected_window here from
19081 lisp.h.
19082
19083 * frame.c (Fwindow_frame, Fframe_first_window)
19084 (Fframe_root_window, Fframe_selected_window)
19085 (Fset_frame_selected_window): Move to window.c.
19086 (Factive_minibuffer_window): Move to minibuf.c.
19087 (Fother_visible_frames_p): New function.
19088
19089 * minibuf.c (Factive_minibuffer_window): Move here from frame.c.
19090
19091 * window.c (decode_window, decode_any_window): Move up in code.
19092 (Fwindowp, Fwindow_live_p): Rewrite doc-strings.
19093 (inhibit_frame_unsplittable): Remove unused variable.
19094 (Fwindow_buffer): Move up and rewrite doc-string.
19095 (Fwindow_parent, Fwindow_vchild, Fwindow_hchild, Fwindow_next)
19096 (Fwindow_prev): New functions.
19097 (Fwindow_frame): Move here from frame.c. Accept any window as
19098 argument.
19099 (Fframe_root_window, Fframe_first_window)
19100 (Fframe_selected_window): Move here from frame.c. Accept frame
19101 or arbitrary window as argument. Update doc-strings.
19102 (Fminibuffer_window): Move up in code.
19103 (Fwindow_minibuffer_p): Move up in code and simplify.
19104 (Fset_frame_selected_window): Move here from frame.c.
19105 Marginal rewrite.
19106 (Fselected_window, select_window, Fselect_window): Move up in
19107 code. Minor doc-string fixes.
19108
19109 2011-06-06 Paul Eggert <eggert@cs.ucla.edu>
19110
19111 * alloc.c (memory_full) [SYSTEM_MALLOC]: Port to MacOS (Bug#8800).
19112 Do not assume that spare memory exists; that assumption is valid
19113 only if SYSTEM_MALLOC.
19114 (LARGE_REQUEST): New macro, so that the issue of large requests
19115 is separated from the issue of spare memory.
19116
19117 2011-06-05 Andreas Schwab <schwab@linux-m68k.org>
19118
19119 * editfns.c (Fformat): Correctly handle zero flag with hexadecimal
19120 format. (Bug#8806)
19121
19122 * gtkutil.c (xg_get_default_scrollbar_width): Avoid warning.
19123
19124 * xfns.c (x_set_scroll_bar_default_width): Move declarations
19125 before statements.
19126
19127 2011-06-05 Jan Djärv <jan.h.d@swipnet.se>
19128
19129 * gtkutil.c (xg_get_default_scrollbar_width): New function.
19130
19131 * gtkutil.h: Declare xg_get_default_scrollbar_width.
19132
19133 * xfns.c (x_set_scroll_bar_default_width): If USE_GTK, get
19134 min width by calling x_set_scroll_bar_default_width (Bug#8505).
19135
19136 2011-06-05 Juanma Barranquero <lekktu@gmail.com>
19137
19138 * xdisp.c (single_display_spec_intangible_p): Remove declaration.
19139
19140 2011-06-04 Chong Yidong <cyd@stupidchicken.com>
19141
19142 * xselect.c (x_clipboard_manager_save): Remove redundant arg.
19143 (x_clipboard_manager_save): Add return value.
19144 (x_clipboard_manager_error_1, x_clipboard_manager_error_2):
19145 New error handlers.
19146 (x_clipboard_manager_save_frame, x_clipboard_manager_save_all):
19147 Obey Vx_select_enable_clipboard_manager. Catch errors in
19148 x_clipboard_manager_save (Bug#8779).
19149 (Vx_select_enable_clipboard_manager): New variable.
19150 (x_get_foreign_selection): Reduce scope of x_catch_errors (Bug#8790).
19151
19152 2011-06-04 Dan Nicolaescu <dann@ics.uci.edu>
19153
19154 * emacs.c (main): Warn when starting a GTK emacs in daemon mode.
19155
19156 2011-06-04 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19157
19158 * fringe.c (update_window_fringes): Don't update overlay arrow bitmap
19159 in the current matrix if keep_current_p is non-zero.
19160
19161 2011-06-04 Eli Zaretskii <eliz@gnu.org>
19162
19163 * bidi.c (bidi_level_of_next_char): Fix last change.
19164
19165 2011-06-03 Eli Zaretskii <eliz@gnu.org>
19166
19167 Support bidi reordering of text covered by display properties.
19168
19169 * bidi.c (bidi_copy_it): Use offsetof instead of emulating it.
19170 (bidi_fetch_char, bidi_fetch_char_advance): New functions.
19171 (bidi_cache_search, bidi_cache_iterator_state)
19172 (bidi_paragraph_init, bidi_resolve_explicit, bidi_resolve_weak)
19173 (bidi_level_of_next_char, bidi_move_to_visually_next):
19174 Support character positions inside a run of characters covered by a
19175 display string.
19176 (bidi_paragraph_init, bidi_resolve_explicit_1)
19177 (bidi_level_of_next_char): Call bidi_fetch_char and
19178 bidi_fetch_char_advance instead of FETCH_CHAR and
19179 FETCH_CHAR_ADVANCE.
19180 (bidi_init_it): Initialize new members.
19181 (LRE_CHAR, RLE_CHAR, PDF_CHAR, LRO_CHAR, RLO_CHAR): Remove macro
19182 definitions.
19183 (bidi_explicit_dir_char): Lookup character type in bidi_type_table,
19184 instead of using explicit *_CHAR codes.
19185 (bidi_resolve_explicit, bidi_resolve_weak):
19186 Use FETCH_MULTIBYTE_CHAR instead of FETCH_CHAR, as reordering of
19187 bidirectional text is supported only in multibyte buffers.
19188 (bidi_init_it): Accept additional argument FRAME_WINDOW_P and use
19189 it to initialize the frame_window_p member of struct bidi_it.
19190 (bidi_cache_iterator_state, bidi_resolve_explicit_1)
19191 (bidi_resolve_explicit, bidi_resolve_weak)
19192 (bidi_level_of_next_char, bidi_move_to_visually_next): Abort if
19193 bidi_it->nchars is non-positive.
19194 (bidi_level_of_next_char): Don't try to lookup the cache for the
19195 next/previous character if nothing is cached there yet, or if we
19196 were just reseat()'ed to a new position.
19197
19198 * xdisp.c (set_cursor_from_row): Set start and stop points
19199 according to the row's direction when priming the loop that looks
19200 for the glyph on which to display cursor.
19201 (single_display_spec_intangible_p): Function deleted.
19202 (display_prop_intangible_p): Reimplement to call
19203 handle_display_spec instead of single_display_spec_intangible_p.
19204 Accept 3 additional arguments needed by handle_display_spec.
19205 This fixes incorrect cursor motion across display property with complex
19206 values: lists, `(when COND...)' forms, etc.
19207 (single_display_spec_string_p): Support property values that are
19208 lists with the argument STRING its top-level element.
19209 (display_prop_string_p): Fix the condition for processing a
19210 property that is a list to be consistent with handle_display_spec.
19211 (handle_display_spec): New function, refactored from the
19212 last portion of handle_display_prop.
19213 (compute_display_string_pos): Accept additional argument
19214 FRAME_WINDOW_P. Call handle_display_spec to determine whether the
19215 value of a `display' property is a "replacing spec".
19216 (handle_single_display_spec): Accept 2 additional arguments BUFPOS
19217 and FRAME_WINDOW_P. If IT is NULL, don't set up the iterator from
19218 the display property, but just return a value indicating whether
19219 the display property will replace the characters it covers.
19220 (Fcurrent_bidi_paragraph_direction): Initialize the nchars and
19221 frame_window_p members of struct bidi_it.
19222 (compute_display_string_pos, compute_display_string_end):
19223 New functions.
19224 (push_it): Accept second argument POSITION, where pop_it should
19225 jump to continue iteration.
19226 (reseat_1): Initialize bidi_it.disp_pos.
19227
19228 * keyboard.c (adjust_point_for_property): Adjust the call to
19229 display_prop_intangible_p to its new signature.
19230
19231 * dispextern.h (struct bidi_it): New member frame_window_p.
19232 (bidi_init_it): Update prototypes.
19233 (display_prop_intangible_p): Update prototype.
19234 (compute_display_string_pos, compute_display_string_end):
19235 Declare prototypes.
19236 (struct bidi_it): New members nchars and disp_pos. ch_len is now
19237 EMACS_INT.
19238
19239 2011-06-02 Paul Eggert <eggert@cs.ucla.edu>
19240
19241 Malloc failure behavior now depends on size of allocation.
19242 * alloc.c (buffer_memory_full, memory_full): New arg NBYTES.
19243 * lisp.h: Change signatures accordingly.
19244 * alloc.c, buffer.c, editfns.c, menu.c, minibuf.c, xterm.c:
19245 All callers changed. (Bug#8762)
19246
19247 * gnutls.c: Use Emacs's memory allocators.
19248 Without this change, the gnutls library would invoke malloc etc.
19249 directly, which causes problems on non-SYNC_INPUT hosts, and which
19250 runs afoul of improving memory_full behavior. (Bug#8761)
19251 (fn_gnutls_global_set_mem_functions): New macro or function pointer.
19252 (emacs_gnutls_global_init): Use it to specify xmalloc, xrealloc,
19253 xfree instead of the default malloc, realloc, free.
19254 (Fgnutls_boot): No need to check for memory allocation failure,
19255 since xmalloc does that for us.
19256
19257 Remove arbitrary limit of 2**31 entries in hash tables. (Bug#8771)
19258 * category.c (hash_get_category_set):
19259 * ccl.c (ccl_driver):
19260 * charset.c (Fdefine_charset_internal):
19261 * charset.h (struct charset.hash_index):
19262 * composite.c (get_composition_id, gstring_lookup_cache)
19263 (composition_gstring_put_cache):
19264 * composite.h (struct composition.hash_index):
19265 * dispextern.h (struct image.hash):
19266 * fns.c (next_almost_prime, larger_vector, cmpfn_eql)
19267 (cmpfn_equal, cmpfn_user_defined, hashfn_eq, hashfn_eql)
19268 (hashfn_equal, hashfn_user_defined, make_hash_table)
19269 (maybe_resize_hash_table, hash_lookup, hash_put)
19270 (hash_remove_from_table, hash_clear, sweep_weak_table, SXHASH_COMBINE)
19271 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector)
19272 (Fsxhash, Fgethash, Fputhash, Fmaphash):
19273 * image.c (make_image, search_image_cache, lookup_image)
19274 (xpm_put_color_table_h):
19275 * lisp.h (struct Lisp_Hash_Table):
19276 * minibuf.c (Ftry_completion, Fall_completions, Ftest_completion):
19277 * print.c (print): Use 'EMACS_UINT' and 'EMACS_INT'
19278 for hashes and hash indexes, instead of 'unsigned' and 'int'.
19279 * alloc.c (allocate_vectorlike):
19280 Check for overflow in vector size calculations.
19281 * ccl.c (ccl_driver):
19282 Check for overflow when converting EMACS_INT to int.
19283 * fns.c, image.c: Remove unnecessary static decls that would otherwise
19284 need to be updated by these changes.
19285 * fns.c (make_hash_table, maybe_resize_hash_table):
19286 Check for integer overflow with large hash tables.
19287 (make_hash_table, maybe_resize_hash_table, Fmake_hash_table):
19288 Prefer the faster XFLOAT_DATA to XFLOATINT where either will do.
19289 (SXHASH_REDUCE): New macro.
19290 (sxhash_string, sxhash_list, sxhash_vector, sxhash_bool_vector):
19291 Use it instead of discarding useful hash info with large hash values.
19292 (sxhash_float): New function.
19293 (sxhash): Use it. No more need for "& INTMASK" due to above changes.
19294 * lisp.h (FIXNUM_BITS): New macro, useful for SXHASH_REDUCE etc.
19295 (MOST_NEGATIVE_FIXNUM, MOST_POSITIVE_FIXNUM, INTMASK):
19296 Rewrite to use FIXNUM_BITS, as this simplifies things.
19297 (next_almost_prime, larger_vector, sxhash, hash_lookup, hash_put):
19298 Adjust signatures to match updated version of code.
19299 (consing_since_gc): Now EMACS_INT, since a single hash table can
19300 use more than INT_MAX bytes.
19301
19302 2011-06-01 Dan Nicolaescu <dann@ics.uci.edu>
19303
19304 Make it possible to build with GCC-4.6+ -O2 -flto.
19305
19306 * emacs.c (__malloc_initialize_hook): Mark as EXTERNALLY_VISIBLE.
19307
19308 2011-06-01 Stefan Monnier <monnier@iro.umontreal.ca>
19309
19310 * minibuf.c (get_minibuffer, read_minibuf_unwind):
19311 Call minibuffer-inactive-mode.
19312
19313 2011-05-31 Juanma Barranquero <lekktu@gmail.com>
19314
19315 * makefile.w32-in ($(BLD)/data.$(O), $(BLD)/editfns.$(O)):
19316 Update dependencies.
19317
19318 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19319
19320 * data.c (init_data): Remove code for UTS, this system is not
19321 supported anymore.
19322
19323 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19324
19325 Don't force ./temacs to start in terminal mode.
19326
19327 * frame.c (make_initial_frame): Initialize faces in all cases, not
19328 only when CANNOT_DUMP is defined.
19329 * dispnew.c (init_display): Remove CANNOT_DUMP condition.
19330
19331 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19332
19333 * dispnew.c (add_window_display_history): Use const for the string
19334 pointer. Remove declaration, not needed.
19335
19336 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19337
19338 Use 'inline', not 'INLINE'.
19339 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00914.html>
19340 * alloc.c, fontset.c (INLINE): Remove.
19341 * alloc.c, bidi.c, charset.c, coding.c, dispnew.c, fns.c, image.c:
19342 * intervals.c, keyboard.c, process.c, syntax.c, textprop.c, w32term.c:
19343 * xdisp.c, xfaces.c, xterm.c: Replace all uses of INLINE with inline.
19344 * gmalloc.c (register_heapinfo): Use inline unconditionally.
19345 * lisp.h (LISP_MAKE_RVALUE): Use inline, not __inline__.
19346
19347 2011-05-31 Dan Nicolaescu <dann@ics.uci.edu>
19348
19349 Make it possible to run ./temacs.
19350
19351 * callproc.c (set_initial_environment): Remove CANNOT_DUMP code,
19352 syms_of_callproc does the same thing. Remove test for
19353 "initialized", do it in the caller.
19354 * emacs.c (main): Avoid calling set_initial_environment when dumping.
19355
19356 2011-05-31 Stefan Monnier <monnier@iro.umontreal.ca>
19357
19358 * minibuf.c (Finternal_complete_buffer): Return `category' metadata.
19359 (read_minibuf): Use get_minibuffer.
19360 (syms_of_minibuf): Use DEFSYM.
19361 (Qmetadata): New var.
19362 * data.c (Qbuffer): Don't make it static.
19363 (syms_of_data): Use DEFSYM.
19364
19365 2011-05-31 Paul Eggert <eggert@cs.ucla.edu>
19366
19367 * ccl.c (CCL_CODE_RANGE): Allow negative numbers. (Bug#8751)
19368 (CCL_CODE_MIN): New macro.
19369
19370 2011-05-30 Paul Eggert <eggert@cs.ucla.edu>
19371
19372 * alloc.c (lisp_align_malloc): Omit unnecessary val==NULL tests.
19373
19374 * eval.c (Qdebug): Now static.
19375 * lisp.h (Qdebug): Remove decl. This reverts a part of the
19376 2011-04-26T11:26:05Z!dan.colascione@gmail.com that inadvertently undid part of
19377 2011-04-14T06:48:41Z!eggert@cs.ucla.edu.
19378
19379 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19380
19381 * image.c: Various fixes to ImageMagick code comments.
19382 (Fimagemagick_types): Doc fix.
19383
19384 2011-05-29 Paul Eggert <eggert@cs.ucla.edu>
19385
19386 Minor fixes prompted by GCC 4.6.0 warnings.
19387
19388 * xselect.c (converted_selections, conversion_fail_tag): Now static.
19389
19390 * emacs.c [HAVE_X_WINDOWS]: Include "xterm.h".
19391 (x_clipboard_manager_save_all): Move extern decl to ...
19392 * xterm.h: ... here, so that it can be checked for consistency.
19393
19394 2011-05-29 Chong Yidong <cyd@stupidchicken.com>
19395
19396 * xselect.c (x_clipboard_manager_save_frame)
19397 (x_clipboard_manager_save_all): New functions.
19398 (Fx_clipboard_manager_save): Lisp function deleted.
19399
19400 * emacs.c (Fkill_emacs): Call x_clipboard_manager_save_all.
19401 * frame.c (delete_frame): Call x_clipboard_manager_save_frame.
19402
19403 * xterm.h: Update prototype.
19404
19405 2011-05-28 William Xu <william.xwl@gmail.com>
19406
19407 * nsterm.m (ns_term_shutdown): Synchronize user defaults before
19408 exiting (Bug#8239).
19409
19410 2011-05-28 Jim Meyering <meyering@redhat.com>
19411
19412 Avoid a sign-extension bug in crypto_hash_function.
19413 * fns.c (to_uchar): Define.
19414 (crypto_hash_function): Use it to convert some newly-signed
19415 variables to unsigned, to avoid sign-extension bugs. For example,
19416 without this change, (md5 "truc") would evaluate to
19417 45723a2aff78ff4fff7fff1114760e62 rather than the expected
19418 45723a2af3788c4ff17f8d1114760e62. Reported by Antoine Levitt in
19419 https://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00883.html.
19420
19421 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19422
19423 Integer overflow fixes.
19424
19425 * dbusbind.c: Serial number integer overflow fixes.
19426 (CHECK_DBUS_SERIAL_GET_SERIAL): New macro.
19427 (Fdbus_call_method_asynchronously, xd_read_message_1): Use a float
19428 to hold a serial number that is too large for a fixnum.
19429 (Fdbus_method_return_internal, Fdbus_method_error_internal):
19430 Check for serial numbers out of range. Decode any serial number
19431 that was so large that it became a float. (Bug#8722)
19432
19433 * dbusbind.c: Use XFASTINT rather than XUINT, and check for nonneg.
19434 (Fdbus_call_method, Fdbus_call_method_asynchronously):
19435 Use XFASTINT rather than XUINT when numbers are nonnegative.
19436 (xd_append_arg, Fdbus_method_return_internal):
19437 (Fdbus_method_error_internal): Likewise. Also, for unsigned
19438 arguments, check that Lisp number is nonnegative, rather than
19439 silently wrapping negative numbers around. (Bug#8722)
19440 (xd_read_message_1): Don't assume dbus_uint32_t can fit in int.
19441 (Bug#8722)
19442
19443 * data.c (arith_driver, Flsh): Avoid unnecessary casts to EMACS_UINT.
19444
19445 * ccl.c (ccl_driver): Redo slightly to avoid the need for 'unsigned'.
19446
19447 ccl: Add integer overflow checks.
19448 * ccl.c (CCL_CODE_MAX, GET_CCL_RANGE, GET_CCL_CODE, GET_CCL_INT):
19449 (IN_INT_RANGE): New macros.
19450 (ccl_driver): Use them to check for integer overflow when
19451 decoding a CCL program. Many of the new checks are whether XINT (x)
19452 fits in int; it doesn't always, on 64-bit hosts. The new version
19453 doesn't catch all possible integer overflows, but it's an
19454 improvement. (Bug#8719)
19455
19456 * alloc.c (make_event_array): Use XINT, not XUINT.
19457 There's no need for unsigned here.
19458
19459 * mem-limits.h (EXCEEDS_LISP_PTR) [!USE_LSB_TAG]: EMACS_UINT -> uintptr_t
19460 This follows up to the 2011-05-06 change that substituted uintptr_t
19461 for EMACS_INT. This case wasn't caught back then.
19462
19463 Rework Fformat to avoid integer overflow issues.
19464 * editfns.c: Include <float.h> unconditionally, as it's everywhere
19465 now (part of C89). Include <verify.h>.
19466 (MAX_10_EXP, CONVERTED_BYTE_SIZE): Remove; no longer needed.
19467 (pWIDE, pWIDElen, signed_wide, unsigned_wide): New defns.
19468 (Fformat): Avoid the prepass trying to compute sizes; it was only
19469 approximate and thus did not catch overflow reliably. Instead, walk
19470 through the format just once, formatting and computing sizes as we go,
19471 checking for integer overflow at every step, and allocating a larger
19472 buffer as needed. Keep track separately whether the format is
19473 multibyte. Keep only the most-recently calculated precision, rather
19474 than them all. Record whether each argument has been converted to
19475 string. Use EMACS_INT, not int, for byte and char and arg counts.
19476 Support field widths and precisions larger than INT_MAX. Avoid
19477 sprintf's undefined behavior with conversion specifications such as %#d
19478 and %.0c. Fix bug with strchr succeeding on '\0' when looking for
19479 flags. Fix bug with (format "%c" 256.0). Avoid integer overflow when
19480 formatting out-of-range floating point numbers with int
19481 formats. (Bug#8668)
19482
19483 * lisp.h (FIXNUM_OVERFLOW_P): Work even if arg is a NaN.
19484
19485 * data.c: Avoid integer truncation in expressions involving floats.
19486 * data.c: Include <intprops.h>.
19487 (arith_driver): When there's an integer overflow in an expression
19488 involving floating point, convert the integers to floating point
19489 so that the resulting value does not suffer from catastrophic
19490 integer truncation. For example, on a 64-bit host (* 4
19491 most-negative-fixnum 0.5) should yield about -4.6e+18, not zero.
19492 Do not rely on undefined behavior after integer overflow.
19493
19494 merge count_size_as_multibyte, parse_str_to_multibyte
19495 * character.c, character.h (count_size_as_multibyte):
19496 Rename from parse_str_to_multibyte; all uses changed.
19497 Check for integer overflow.
19498 * insdel.c, lisp.h (count_size_as_multibyte): Remove,
19499 since it's now a duplicate of the other. This is more of
19500 a character than a buffer op, so better that it's in character.c.
19501 * fns.c, print.c: Adjust to above changes.
19502
19503 2011-05-27 Stefan Monnier <monnier@iro.umontreal.ca>
19504
19505 * xselect.c (x_convert_selection): Yet another int/Lisp_Object mixup.
19506
19507 2011-05-27 Paul Eggert <eggert@cs.ucla.edu>
19508
19509 * xselect.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19510 (x_handle_selection_request, frame_for_x_selection): Remove unused vars.
19511 (x_clipboard_manager_save): Now static.
19512 (Fx_clipboard_manager_save): Rename local to avoid shadowing.
19513
19514 * fns.c: Fix minor problems prompted by GCC 4.6.0 warnings.
19515 (crypto_hash_function): Now static.
19516 Fix pointer signedness problems. Avoid unnecessary initializations.
19517
19518 2011-05-27 Chong Yidong <cyd@stupidchicken.com>
19519
19520 * termhooks.h (Vselection_alist): Make it terminal-local.
19521
19522 * terminal.c (create_terminal): Initialize it.
19523
19524 * xselect.c: Support for clipboard managers.
19525 (Vselection_alist): Move to termhooks.h as terminal-local var.
19526 (LOCAL_SELECTION): New macro.
19527 (x_atom_to_symbol): Handle x_display_info_for_display fail case.
19528 (symbol_to_x_atom): Remove gratuitous arg.
19529 (x_handle_selection_request, lisp_data_to_selection_data)
19530 (x_get_foreign_selection, Fx_register_dnd_atom): Callers changed.
19531 (x_own_selection, x_get_local_selection, x_convert_selection):
19532 New arg, specifying work frame. Use terminal-local Vselection_alist.
19533 (some_frame_on_display): Delete unused function.
19534 (Fx_own_selection_internal, Fx_get_selection_internal)
19535 (Fx_disown_selection_internal, Fx_selection_owner_p)
19536 (Fx_selection_exists_p): New optional frame arg.
19537 (frame_for_x_selection, Fx_clipboard_manager_save): New functions.
19538 (x_handle_selection_clear): Don't treat other terminals with the
19539 same keyboard specially. Use the terminal-local Vselection_alist.
19540 (x_clear_frame_selections): Use Frun_hook_with_args.
19541
19542 * xterm.c (x_term_init): Intern ATOM and CLIPBOARD_MANAGER atoms.
19543
19544 * xterm.h: Add support for those atoms.
19545
19546 2011-05-26 Chong Yidong <cyd@stupidchicken.com>
19547
19548 * xselect.c: ICCCM-compliant handling of MULTIPLE targets.
19549 (converted_selections, conversion_fail_tag): New global variables.
19550 (x_selection_request_lisp_error): Free the above.
19551 (x_get_local_selection): Remove unnecessary code.
19552 (x_reply_selection_request): Args changed; handle arbitrary array
19553 of converted selections stored in converted_selections.
19554 Separate the XChangeProperty and SelectionNotify steps.
19555 (x_handle_selection_request): Rewrite to handle MULTIPLE target.
19556 (x_convert_selection): New function.
19557 (x_handle_selection_event): Simplify.
19558 (x_get_foreign_selection): Don't ignore incoming requests while
19559 waiting for an answer; this will fail when we implement
19560 SAVE_TARGETS, and seems unnecessary anyway.
19561 (selection_data_to_lisp_data): Recognize ATOM_PAIR type.
19562 (Vx_sent_selection_functions): Doc fix.
19563
19564 2011-05-26 Leo Liu <sdl.web@gmail.com>
19565
19566 * editfns.c (Ftranspose_regions): Allow empty regions. (Bug#8699)
19567
19568 2011-05-25 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19569
19570 * dispextern.h (struct glyph_row): New member fringe_bitmap_periodic_p.
19571
19572 * dispnew.c (shift_glyph_matrix, scrolling_window): Mark scrolled row
19573 for fringe update if it has periodic bitmap.
19574 (row_equal_p): Also compare left_fringe_offset, right_fringe_offset,
19575 and fringe_bitmap_periodic_p.
19576
19577 * fringe.c (get_fringe_bitmap_data): New function.
19578 (draw_fringe_bitmap_1, update_window_fringes): Use it.
19579 (update_window_fringes): Record periodicity of fringe bitmap in glyph
19580 row. Mark glyph row for fringe update if periodicity changed.
19581
19582 * xdisp.c (try_window_reusing_current_matrix): Don't mark scrolled row
19583 for fringe update unless it has periodic bitmap.
19584
19585 2011-05-25 Kenichi Handa <handa@m17n.org>
19586
19587 * xdisp.c (get_next_display_element): Set correct it->face_id for
19588 a static composition.
19589
19590 2011-05-24 Leo Liu <sdl.web@gmail.com>
19591
19592 * deps.mk (fns.o):
19593 * makefile.w32-in ($(BLD)/fns.$(O)): Include sha1.h.
19594
19595 * fns.c (crypto_hash_function, Fsha1): New function.
19596 (Fmd5): Use crypto_hash_function.
19597 (syms_of_fns): Add Ssha1.
19598
19599 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19600
19601 * gnutls.c: Remove unused macros.
19602 (fn_gnutls_transport_set_lowat, fn_gnutls_transport_set_pull_function):
19603 (fn_gnutls_transport_set_push_function) [!WINDOWSNT]:
19604 Remove macros that are defined and never used.
19605 Caught by gcc -Wunused-macros (GCC 4.6.0, Fedora 14).
19606
19607 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19608
19609 * xselect.c (syms_of_xselect): Remove unused symbol SAVE_TARGETS.
19610 (Fx_get_selection_internal): Minor cleanup.
19611 (Fx_own_selection_internal): Rename arguments for consistency with
19612 select.el.
19613
19614 2011-05-22 Paul Eggert <eggert@cs.ucla.edu>
19615
19616 * xselect.c (QSAVE_TARGETS): New static var, to fix build failure.
19617
19618 2011-05-22 Chong Yidong <cyd@stupidchicken.com>
19619
19620 * xselect.c (syms_of_xselect): Include character.h; use DEFSYM.
19621
19622 2011-05-21 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19623
19624 * dispnew.c (scrolling_window): Don't exclude the case that the
19625 last enabled row in the desired matrix touches the bottom boundary.
19626
19627 2011-05-21 Glenn Morris <rgm@gnu.org>
19628
19629 * Makefile.in ($(etc)/DOC): Make second command line even shorter.
19630 (SOME_MACHINE_OBJECTS): Replace FONT_OBJ by its maximal expansion,
19631 and add some more files.
19632
19633 2011-05-20 Eli Zaretskii <eliz@gnu.org>
19634
19635 * callproc.c (Fcall_process) [MSDOS]: Fix arguments to
19636 report_file_error introduced by the change from 2011-05-07.
19637
19638 2011-05-20 Paul Eggert <eggert@cs.ucla.edu>
19639
19640 * systime.h (Time): Define only if emacs is defined.
19641 This is to allow ../lib-src/profile.c to be compiled on FreeBSD,
19642 where the include path doesn't have X11/X.h by default. See
19643 <http://lists.gnu.org/archive/html/emacs-devel/2011-05/msg00561.html>.
19644
19645 2011-05-20 Kenichi Handa <handa@m17n.org>
19646
19647 * composite.c (find_automatic_composition): Fix previous change.
19648
19649 2011-05-20 Glenn Morris <rgm@gnu.org>
19650
19651 * lisp.mk: New file, split from Makefile.in.
19652 * Makefile.in (lisp): Move to separate file, inserted by @lisp_frag@.
19653 (shortlisp): Remove.
19654 ($(etc)/DOC): Edit lisp.mk rather than using $shortlisp.
19655
19656 2011-05-19 Glenn Morris <rgm@gnu.org>
19657
19658 * Makefile.in (MSDOS_SUPPORT_REAL, MSDOS_SUPPORT, NS_SUPPORT)
19659 (REAL_MOUSE_SUPPORT, GPM_MOUSE_SUPPORT, MOUSE_SUPPORT, TOOLTIP_SUPPORT)
19660 (BASE_WINDOW_SUPPORT, X_WINDOW_SUPPORT, WINDOW_SUPPORT): Remove.
19661 (lisp): Set the order to that of loadup.el.
19662 (shortlisp): Make it a copy of $lisp.
19663 (SOME_MACHINE_LISP): Remove.
19664 ($(etc)/DOC): Depend just on $lisp, not $SOME_MACHINE_LISP too.
19665 Use just $shortlisp, not $SOME_MACHINE_LISP too.
19666
19667 2011-05-18 Kenichi Handa <handa@m17n.org>
19668
19669 * composite.c (CHAR_COMPOSABLE_P): Add more check for efficiency.
19670 (BACKWARD_CHAR): Wrap the arg STOP by parenthesis.
19671 (find_automatic_composition): Mostly rewrite for efficiency.
19672
19673 2011-05-18 Juanma Barranquero <lekktu@gmail.com>
19674
19675 * makefile.w32-in: Update dependencies.
19676
19677 2011-05-18 Christoph Scholtes <cschol2112@googlemail.com>
19678
19679 * menu.c: Include limits.h (fixes the MS-Windows build broken by
19680 2011-06-18T18:49:19Z!cyd@stupidchicken.com).
19681
19682 2011-05-18 Paul Eggert <eggert@cs.ucla.edu>
19683
19684 Fix some integer overflow issues, such as string length overflow.
19685
19686 * insdel.c (count_size_as_multibyte): Check for string overflow.
19687
19688 * character.c (lisp_string_width): Check for string overflow.
19689 Use EMACS_INT, not int, for string indexes and lengths; in
19690 particular, 2nd arg is now EMACS_INT, not int. Do not crash if
19691 the resulting string length overflows an EMACS_INT; instead,
19692 report a string overflow if no precision given. When checking for
19693 precision exhaustion, use a check that cannot possibly have
19694 integer overflow. (Bug#8675)
19695 * character.h (lisp_string_width): Adjust to new signature.
19696
19697 * alloc.c (string_overflow): New function.
19698 (Fmake_string): Use it. This doesn't change behavior, but saves
19699 a few bytes and will simplify future changes.
19700 * character.c (string_escape_byte8): Likewise.
19701 * lisp.h (string_overflow): New decl.
19702
19703 Fixups, following up to the user-interface timestamp change.
19704 * nsterm.m (last_mouse_movement_time, ns_mouse_position): Use Time
19705 for UI timestamps, instead of unsigned long.
19706 * msdos.c (mouse_get_pos): Likewise.
19707 * w32inevt.c (movement_time, w32_console_mouse_position): Likewise.
19708 * w32gui.h (Time): Define by including "systime.h" rather than by
19709 declaring it ourselves. (Bug#8664)
19710
19711 * dispextern.h (struct image): Don't assume time_t <= unsigned long.
19712 * image.c (clear_image_cache): Likewise.
19713
19714 * term.c (term_mouse_position): Don't assume time_t wraparound.
19715
19716 Be more systematic about user-interface timestamps.
19717 Before, the code sometimes used 'Time', sometimes 'unsigned long',
19718 and sometimes 'EMACS_UINT', to represent these timestamps.
19719 This change causes it to use 'Time' uniformly, as that's what X uses.
19720 This makes the code easier to follow, and makes it easier to catch
19721 integer overflow bugs such as Bug#8664.
19722 * frame.c (Fmouse_position, Fmouse_pixel_position):
19723 Use Time, not unsigned long, for user-interface timestamps.
19724 * keyboard.c (last_event_timestamp, kbd_buffer_get_event): Likewise.
19725 (button_down_time, make_lispy_position, make_lispy_movement): Likewise.
19726 * keyboard.h (last_event_timestamp): Likewise.
19727 * menu.c (Fx_popup_menu) [!HAVE_X_WINDOWS]: Likewise.
19728 * menu.h (xmenu_show): Likewise.
19729 * term.c (term_mouse_position): Likewise.
19730 * termhooks.h (struct input_event.timestamp): Likewise.
19731 (struct terminal.mouse_position_hook): Likewise.
19732 * xmenu.c (create_and_show_popup_menu, xmenu_show): Likewise.
19733 * xterm.c (XTmouse_position, x_scroll_bar_report_motion): Likewise.
19734 * systime.h (Time): New decl. Pull it in from <X11/X.h> if
19735 HAVE_X_WINDOWS, otherwise define it as unsigned long, which is
19736 what it was before.
19737 * menu.h, termhooks.h: Include "systime.h", for Time.
19738
19739 * keyboard.c (make_lispy_event): Fix problem in integer overflow.
19740 Don't assume that the difference between two unsigned long values
19741 can fit into an integer. At this point, we know button_down_time
19742 <= event->timestamp, so the difference must be nonnegative, so
19743 there's no need to cast the result if double-click-time is
19744 nonnegative, as it should be; check that it's nonnegative, just in
19745 case. This bug is triggered when events are more than 2**31 ms
19746 apart (about 25 days). (Bug#8664)
19747
19748 * xselect.c (last_event_timestamp): Remove duplicate decl.
19749 (x_own_selection): Remove needless cast to unsigned long.
19750
19751 * xmenu.c (set_frame_menubar): Use int, not EMACS_UINT, for indexes
19752 that always fit in int. Use a sentinel instead of a counter, to
19753 avoid a temp and to allay GCC's concerns about possible int overflow.
19754 * frame.h (struct frame): Use int for menu_bar_items_used
19755 instead of EMACS_INT, since it always fits in int.
19756
19757 * menu.c (grow_menu_items): Check for int overflow.
19758
19759 * xmenu.c (set_frame_menubar): Don't mishandle vectors with no nils.
19760
19761 * xterm.c: Use EMACS_INT for Emacs modifiers, and int for X modifiers.
19762 Before, the code was not consistent. These values cannot exceed
19763 2**31 - 1 so there's no need to make them unsigned.
19764 (x_x_to_emacs_modifiers): Accept int and return EMACS_INT.
19765 (x_emacs_to_x_modifiers): Accept EMACS_INT and return int.
19766 (x_x_to_emacs_modifiers, x_emacs_to_x_modifiers): Reject non-integers
19767 as modifiers.
19768 * xterm.h (x_x_to_emacs_modifiers): Adjust to signature change.
19769
19770 * lisp.h (XINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_INT.
19771 (XUINT) [USE_LISP_UNION_TYPE]: Cast to EMACS_UINT.
19772 Otherwise, GCC 4.6.0 warns about printf (pI, XINT (...)),
19773 presumably because the widths might not match.
19774
19775 * window.c (size_window): Avoid needless test at loop start.
19776
19777 2011-05-18 Courtney Bane <emacs-bugs-7626@cbane.org> (tiny change)
19778
19779 * term.c (Fresume_tty): Restore hooks before reinitializing (bug#8687).
19780
19781 2011-05-12 Drew Adams <drew.adams@oracle.com>
19782
19783 * textprop.c (Fprevious_single_char_property_change): Doc fix (bug#8655).
19784
19785 2011-05-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
19786
19787 * w32term.c (w32_draw_fringe_bitmap): Rename local vars `left' and
19788 `width' to `bar_area_x' and `bar_area_width', respectively.
19789 (x_scroll_run): Take account of fringe background extension.
19790
19791 * xterm.c (x_draw_fringe_bitmap) [USE_TOOLKIT_SCROLL_BARS]:
19792 Rename local vars `left' and `width' to `bar_area_x' and
19793 `bar_area_width', respectively.
19794 (x_scroll_run) [USE_TOOLKIT_SCROLL_BARS]: Take account of fringe
19795 background extension.
19796
19797 2011-05-10 Jim Meyering <meyering@redhat.com>
19798
19799 * xdisp.c (x_intersect_rectangles): Fix typo "the the -> the".
19800
19801 2011-05-10 Juanma Barranquero <lekktu@gmail.com>
19802
19803 * image.c (Finit_image_library): Return t for built-in image types,
19804 like pbm and xbm. (Bug#8640)
19805
19806 2011-05-09 Andreas Schwab <schwab@linux-m68k.org>
19807
19808 * w32menu.c (set_frame_menubar): Fix submenu allocation.
19809
19810 2011-05-07 Eli Zaretskii <eliz@gnu.org>
19811
19812 * w32console.c (Fset_screen_color): Doc fix.
19813 (Fget_screen_color): New function.
19814 (syms_of_ntterm): Defsubr it.
19815
19816 * callproc.c (call_process_cleanup) [MSDOS]: Don't close and
19817 unlink the temporary file if Fcall_process didn't create it in the
19818 first place.
19819 (Fcall_process) [MSDOS]: Don't create tempfile if stdout of the
19820 child process will be redirected to a file specified with `:file'.
19821 Don't try to re-open tempfile in that case, and set fd[0] to -1 as
19822 cue to call_process_cleanup not to close that handle.
19823
19824 2011-05-07 Ben Key <bkey76@gmail.com>
19825
19826 * makefile.w32-in: The bootstrap-temacs rule now makes use of
19827 one of two shell specific rules, either bootstrap-temacs-CMD or
19828 bootstrap-temacs-SH. The bootstrap-temacs-SH rule is identical
19829 to the previous implementation of the bootstrap-temacs rule.
19830 The bootstrap-temacs-CMD rule is similar to the previous
19831 implementation of the bootstrap-temacs rule except that it
19832 makes use of the ESC_CFLAGS variable instead of the CFLAGS
19833 variable.
19834
19835 These changes, along with some changes to nt/configure.bat,
19836 nt/gmake.defs, and nt/nmake.defs, are required to extend my
19837 earlier fix to add support for --cflags and --ldflags options
19838 that include quotes so that it works whether make uses cmd or
19839 sh as the shell.
19840
19841 2011-05-06 Michael Albinus <michael.albinus@gmx.de>
19842
19843 * dbusbind.c (QCdbus_type_unix_fd): Declare static.
19844 (xd_remove_watch): Don't check QCdbus_type_unix_fd for SYMBOLP, it
19845 is a constant.
19846 (Fdbus_init_bus, xd_read_queued_messages): Bus can be a symbol or
19847 a string. Handle both cases.
19848 (Fdbus_call_method_asynchronously, Fdbus_register_signal)
19849 (Fdbus_register_method): Use Qinvalid_function.
19850
19851 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19852
19853 * makefile.w32-in: Update dependencies.
19854 (LISP_H): Add inttypes.h and stdin.h.
19855 (PROCESS_H): Add unistd.h.
19856
19857 2011-05-06 Eli Zaretskii <eliz@gnu.org>
19858
19859 * lread.c: Include limits.h (fixes the MS-Windows build broken by
19860 2011-05-06T07:13:19Z!eggert@cs.ucla.edu).
19861
19862 2011-05-06 Paul Eggert <eggert@cs.ucla.edu>
19863
19864 * image.c (Finit_image_library) [!HAVE_NTGUI]: Omit unused local.
19865
19866 * term.c (vfatal): Remove stray call to va_end.
19867 It's not needed and the C Standard doesn't allow it here anyway.
19868
19869 Use C99's va_copy to avoid undefined behavior on x86-64 GNU/Linux.
19870 * eval.c (verror): doprnt a copy of ap, not the original. (Bug#8545)
19871
19872 * eval.c (verror): OK to create a string of up to MOST_POSITIVE_FIXNUM
19873 bytes.
19874
19875 * term.c: Don't include <stdarg.h>, as <lisp.h> does that.
19876
19877 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork clobbering.
19878
19879 * process.c (Fformat_network_address): Fix typo: args2 -> *args2.
19880
19881 * xmenu.c (set_frame_menubar): Fix typo: int * -> int (3 times).
19882
19883 * coding.c (detect_coding_charset): Fix typo: * 2 -> *4 (Bug#8601).
19884
19885 * charset.h (struct charset.code_space): Now has 15 elements, not 16.
19886 * charset.c (Fdefine_charset_internal): Don't initialize
19887 charset.code_space[15]. The value was garbage, on hosts with
19888 32-bit int (Bug#8600).
19889
19890 * lread.c (read_integer): Be more consistent with string-to-number.
19891 Use string_to_number to do the actual conversion; this avoids
19892 rounding errors and fixes some other screwups. Without this fix,
19893 for example, #x1fffffffffffffff was misread as -2305843009213693952.
19894 (digit_to_number): Move earlier, for benefit of read_integer.
19895 Return -1 if the digit is out of range for the base, -2 if it is
19896 not a digit in any supported base. (Bug#8602)
19897
19898 * doprnt.c (doprnt): Support arbitrary pI values, such as "I64".
19899
19900 * dispnew.c (scrolling_window): Return 1 if we scrolled,
19901 to match comment at start of function. This also removes a
19902 GCC warning about overflow in a 32+64-bit port.
19903
19904 * lisp.h (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Simplify.
19905
19906 * dbusbind.c: Do not use XPNTR on a value that may be an integer.
19907 Reported by Stefan Monnier in
19908 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00919.html>.
19909 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19910 Use SYMBOLP-guarded XSYMBOL, not XPNTR.
19911
19912 * lisp.h (EMACS_INTPTR): Remove. All uses changed to intptr_t.
19913 (EMACS_UINTPTR): Likewise, with uintptr_t.
19914
19915 * lisp.h: Prefer 64-bit EMACS_INT if available.
19916 (EMACS_INT, EMACS_UINT, BITS_PER_EMACS_INT, pI): Define to 64-bit
19917 on 32-bit hosts that have 64-bit int, so that they can access
19918 large files.
19919 However, temporarily disable this change unless the temporary
19920 symbol WIDE_EMACS_INT is defined.
19921
19922 * lread.c, process.c: Do not include <inttypes.h>; lisp.h does it now.
19923
19924 Prefer intptr_t/uintptr_t for integers the same widths as pointers.
19925 This removes an assumption that EMACS_INT and long are the same
19926 width as pointers. The assumption is true for Emacs porting targets
19927 now, but we want to make other targets possible.
19928 * lisp.h: Include <inttypes.h>, for INTPTR_MAX, UINTPTR_MAX.
19929 (EMACS_INTPTR, EMACS_UINTPTR): New macros.
19930 In the rest of the code, change types of integers that hold casted
19931 pointers to EMACS_INTPTR and EMACS_UINTPTR, systematically
19932 replacing EMACS_INT, long, EMACS_UINT, and unsigned long.
19933 (XTYPE): Don't cast arg to EMACS_UINT; normally is not needed.
19934 (XSET): Cast type of XTYPE arg to EMACS_INTPTR; it is needed here.
19935 No need to cast type when ORing.
19936 (XPNTR): Return a value of type EMACS_INTPTR or EMACS_UINTPTR.
19937 * alloc.c (lisp_align_malloc): Remove a no-longer-needed cast.
19938 * doc.c (store_function_docstring): Use EMACS_INTPTR, so as not to
19939 assume EMACS_INT is the same width as char *.
19940 * gtkutil.c (xg_gtk_scroll_destroy, xg_tool_bar_button_cb):
19941 (xg_tool_bar_callback, xg_tool_bar_help_callback, xg_make_tool_item):
19942 Remove no-longer-needed casts.
19943 (xg_create_scroll_bar, xg_tool_bar_button_cb, xg_tool_bar_callback):
19944 (xg_tool_bar_help_callback, xg_make_tool_item):
19945 Use EMACS_INTPTR to hold an integer
19946 that will be cast to void *; this can avoid a GCC warning
19947 if EMACS_INT is not the same width as void *.
19948 * menu.c (find_and_call_menu_selection): Remove no-longer-needed cast.
19949 * xdisp.c (display_echo_area_1, resize_mini_window_1):
19950 (current_message_1, set_message_1):
19951 Use a local to convert to proper width without a cast.
19952 * xmenu.c (dialog_selection_callback): Likewise.
19953
19954 * sysdep.c (get_random): Don't assume EMACS_INT is no wider than long.
19955 Also, don't assume VALBITS / RAND_BITS is less than 5,
19956 and don't rely on undefined behavior when shifting a 1 left into
19957 the sign bit.
19958 * lisp.h (get_random): Change signature to match.
19959
19960 * lread.c (hash_string): Use size_t, not int, for hash computation.
19961 Normally we prefer signed values; but hashing is special, because
19962 it's better to use unsigned division on hash table sizes so that
19963 the remainder is nonnegative. Also, size_t is the natural width
19964 for hashing into memory. The previous code used 'int', which doesn't
19965 retain enough info to hash well into very large tables.
19966 (oblookup, oblookup_last_bucket_number, Funintern): Likewise.
19967
19968 * dbusbind.c: Don't possibly lose pointer info when converting.
19969 (xd_remove_watch, Fdbus_init_bus, xd_read_queued_messages):
19970 Use XPNTR rather than XHASH, so that the high-order bits of
19971 the pointer aren't lost when converting through void *.
19972
19973 * eval.c (Fautoload): Don't double-shift a pointer.
19974
19975 * fns.c (Frandom): Let EMACS_UINT be wider than unsigned long.
19976
19977 2011-05-06 Juanma Barranquero <lekktu@gmail.com>
19978
19979 * gnutls.c (DEF_GNUTLS_FN):
19980 * image.c (DEF_IMGLIB_FN): Make function pointers static.
19981
19982 2011-05-05 Andreas Schwab <schwab@linux-m68k.org>
19983
19984 * lread.c (lisp_file_lexically_bound_p): Stop scanning at end
19985 marker. (Bug#8610)
19986
19987 2011-05-05 Eli Zaretskii <eliz@gnu.org>
19988
19989 * w32heap.c (allocate_heap) [USE_LISP_UNION_TYPE || USE_LSB_TAG]:
19990 New version that can reserve upto 2GB of heap space.
19991
19992 2011-05-05 Chong Yidong <cyd@stupidchicken.com>
19993
19994 * nsfns.m (Fns_read_file_name): Doc fix (Bug#8534).
19995
19996 2011-05-05 Teodor Zlatanov <tzz@lifelogs.com>
19997
19998 * gnutls.c (fn_gnutls_certificate_set_x509_key_file): Add alias to
19999 `gnutls_certificate_set_x509_key_file'.
20000
20001 2011-05-05 Juanma Barranquero <lekktu@gmail.com>
20002
20003 * makefile.w32-in ($(BLD)/image.$(O), $(BLD)/process.$(O)):
20004 Update dependencies.
20005
20006 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20007
20008 * gnutls.h (emacs_gnutls_write, emacs_gnutls_read):
20009 * gnutls.c (emacs_gnutls_write, emacs_gnutls_read):
20010 Remove unused parameter `fildes'.
20011 * process.c (read_process_output, send_process): Don't pass it.
20012
20013 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20014
20015 Fix previous change: the library cache is defined in w32.c.
20016 * image.c (CACHE_IMAGE_TYPE) [!HAVE_NTGUI]: Define to noop.
20017 (Finit_image_library): Wrap Vlibrary_cache on "#ifdef HAVE_NTGUI".
20018
20019 2011-05-04 Juanma Barranquero <lekktu@gmail.com>
20020
20021 Implement dynamic loading of GnuTLS on Windows.
20022
20023 * gnutls.h (GNUTLS_EMACS_ERROR_NOT_LOADED): New macro.
20024 (emacs_gnutls_write, emacs_gnutls_read): Mark as extern.
20025 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20026 Declare.
20027
20028 * gnutls.c (Qgnutls_dll): Define.
20029 (DEF_GNUTLS_FN, LOAD_GNUTLS_FN): New macros.
20030 (gnutls_*): Declare function pointers.
20031 (init_gnutls_functions): New function to initialize function pointers.
20032 (emacs_gnutls_handshake, Fgnutls_error_string, Fgnutls_deinit)
20033 (emacs_gnutls_global_init, Fgnutls_bye): Use function pointers.
20034 (emacs_gnutls_record_check_pending, emacs_gnutls_transport_set_errno):
20035 Wrappers for gnutls_record_check_pending and gnutls_transport_set_errno.
20036 (emacs_gnutls_write, emacs_gnutls_read)
20037 (emacs_gnutls_handle_error, Fgnutls_error_fatalp)
20038 (Fgnutls_available_p): New function.
20039 (Fgnutls_boot): Call Fgnutls_available_p. Use function pointers.
20040 (syms_of_gnutls) <Qgnutls_dll>: Initialize and staticpro it.
20041 (syms_of_gnutls) <Sgnutls_available_p>: defsubr it.
20042
20043 * image.c: Include w32.h.
20044 (Vimage_type_cache): Delete.
20045 (syms_of_image) <Vimage_type_cache>: Don't initialize and staticpro it.
20046 (CACHE_IMAGE_TYPE, Finit_image_library): Use Vlibrary_cache instead.
20047 (w32_delayed_load): Move to w32.c.
20048
20049 * w32.h (VlibraryCache, QCloaded_from, w32_delayed_load): Declare.
20050
20051 * w32.c (QCloaded_from, Vlibrary_cache): Define.
20052 (w32_delayed_load): Move from image.c. When loading a library, record
20053 its filename in the :loaded-from property of the library id.
20054 (globals_of_w32) <QCloaded_from, Vlibrary_cache>:
20055 Initialize and staticpro them.
20056 (emacs_gnutls_pull, emacs_gnutls_push): Call emacs_gnutls_* functions.
20057
20058 * process.c: Include lisp.h before w32.h, not after.
20059 (wait_reading_process_output): Call emacs_gnutls_record_check_pending
20060 instead of gnutls_record_check_pending.
20061
20062 * callproc.c, emacs.c: Include lisp.h before w32.h, not after.
20063
20064 2011-05-04 Teodor Zlatanov <tzz@lifelogs.com>
20065
20066 * gnutls.c (Fgnutls_boot): Support :keylist and :crlfiles options
20067 instead of :keyfiles. Give GnuTLS the keylist and the CRL lists
20068 as passed in.
20069
20070 2011-05-03 Jan Djärv <jan.h.d@swipnet.se>
20071
20072 * xterm.c (x_set_frame_alpha): Do not set property on anything
20073 else than FRAME_X_OUTER_WINDOW (Bug#8608).
20074
20075 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20076
20077 * sysdep.c (get_tty_size) [WINDOWSNT]: Implement. (Bug#8596)
20078
20079 2011-05-02 Juanma Barranquero <lekktu@gmail.com>
20080
20081 * gnutls.c (Qgnutls_log_level, Qgnutls_code, Qgnutls_anon)
20082 (Qgnutls_x509pki, Qgnutls_e_interrupted, Qgnutls_e_again)
20083 (Qgnutls_e_invalid_session, Qgnutls_e_not_ready_for_handshake)
20084 (gnutls_global_initialized, Qgnutls_bootprop_priority)
20085 (Qgnutls_bootprop_trustfiles, Qgnutls_bootprop_keyfiles)
20086 (Qgnutls_bootprop_callbacks, Qgnutls_bootprop_loglevel)
20087 (Qgnutls_bootprop_hostname, Qgnutls_bootprop_verify_flags)
20088 (Qgnutls_bootprop_verify_error, Qgnutls_bootprop_verify_hostname_error)
20089 (Qgnutls_bootprop_callbacks_verify): Make static.
20090
20091 2011-05-01 Andreas Schwab <schwab@linux-m68k.org>
20092
20093 * callproc.c: Indentation fixup.
20094
20095 * sysdep.c (wait_for_termination_1): Make static.
20096 (wait_for_termination, interruptible_wait_for_termination):
20097 Move after wait_for_termination_1.
20098
20099 2011-05-01 Lars Magne Ingebrigtsen <larsi@gnus.org>
20100
20101 * sysdep.c (interruptible_wait_for_termination): New function
20102 which is like wait_for_termination, but allows keyboard
20103 interruptions.
20104
20105 * callproc.c (Fcall_process): Add (:file "file") as an option for
20106 the STDOUT buffer.
20107 (Fcall_process_region): Ditto.
20108
20109 2011-04-30 Eli Zaretskii <eliz@gnu.org>
20110
20111 * dosfns.c (Fint86, Fdos_memget, Fdos_memput): Use `ASIZE (FOO)'
20112 rather than `XVECTOR (FOO)->size'.
20113
20114 * process.c: Remove HAVE_INTTYPES_H condition from inclusion of
20115 inttypes.h, as a gnulib replacement is used if it not available in
20116 system headers.
20117
20118 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20119
20120 Lift the MOST_POSITIVE_FIXNUM/4 limitation on visited files.
20121 * fileio.c (Finsert_file_contents): Don't limit file size to 1/4
20122 of MOST_POSITIVE_FIXNUM. (Bug#8528)
20123
20124 * coding.c (coding_alloc_by_realloc): Error out if destination
20125 will grow beyond MOST_POSITIVE_FIXNUM.
20126 (decode_coding_emacs_mule): Abort if there isn't enough place in
20127 charbuf for the composition carryover bytes. Reserve an extra
20128 space for up to 2 characters produced in a loop.
20129 (decode_coding_iso_2022): Abort if there isn't enough place in
20130 charbuf for the composition carryover bytes.
20131
20132 2011-04-21 Eli Zaretskii <eliz@gnu.org>
20133
20134 * doprnt.c (doprnt) [!HAVE_LONG_LONG_INT]: Error out instead of
20135 aborting when %lld or %lll format is passed.
20136 [!HAVE_UNSIGNED_LONG_LONG_INT]: Error out instead of aborting when
20137 %llo or %llx format is passed. (Bug#8545)
20138
20139 * window.c (window_scroll_line_based): Use a marker instead of
20140 simple variables to record original value of point. (Bug#7952)
20141
20142 * doprnt.c (doprnt): Fix the case where a multibyte sequence
20143 produced by %s or %c overflows available buffer space. (Bug#8545)
20144
20145 2011-04-28 Paul Eggert <eggert@cs.ucla.edu>
20146
20147 * doprnt.c (doprnt): Omit useless test; int overflow check (Bug#8545).
20148 (SIZE_MAX): Move defn after all includes, as they might #define it.
20149
20150 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20151
20152 * w32.c (init_environment): Warn about defaulting HOME to C:\.
20153
20154 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20155
20156 * keyboard.c (Qdelayed_warnings_hook): Define.
20157 (command_loop_1): Run `delayed-warnings-hook'
20158 if Vdelayed_warnings_list is non-nil.
20159 (syms_of_keyboard) <delayed-warnings-hook>: DEFSYM it.
20160 (syms_of_keyboard) <delayed-warnings-list>: DEFVAR_LISP it.
20161
20162 2011-04-28 Eli Zaretskii <eliz@gnu.org>
20163
20164 * doprnt.c (doprnt): Don't return value smaller than the buffer
20165 size if the message was truncated. (Bug#8545).
20166
20167 2011-04-28 Juanma Barranquero <lekktu@gmail.com>
20168
20169 * w32fns.c (Fx_change_window_property, Fx_delete_window_property)
20170 (Fx_window_property): #if-0 the whole functions, not just the bodies.
20171
20172 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20173
20174 * doprnt.c (doprnt): Support "ll" length modifier, for long long.
20175
20176 2011-04-27 Juanma Barranquero <lekktu@gmail.com>
20177
20178 * makefile.w32-in: Update dependencies.
20179
20180 2011-04-27 Eli Zaretskii <eliz@gnu.org>
20181
20182 Improve `doprnt' and its usage. (Bug#8545)
20183 * doprnt.c (doprnt): Make sure `format' is never accessed beyond
20184 `format_end'. Remove support for %l as a conversion specifier.
20185 Don't use xrealloc. Improve diagnostics when the %l size modifier
20186 is used. Update the commentary.
20187
20188 * eval.c (verror): Simplify calculation of size_t.
20189
20190 * coding.c (Ffind_operation_coding_system): Fix diagnostic error
20191 messages.
20192
20193 2011-04-27 Yoshiaki Kasahara <kasahara@nc.kyushu-u.ac.jp> (tiny change)
20194
20195 * buffer.c (init_buffer) [USE_MMAP_FOR_BUFFERS]: Adjust to aliasing
20196 change.
20197
20198 2011-04-27 Paul Eggert <eggert@cs.ucla.edu>
20199
20200 * nsmenu.m: Replace all uses of XVECTOR with ASIZE and AREF.
20201 This makes this file independent of the recent pseudovector change.
20202
20203 2011-04-26 Paul Eggert <eggert@cs.ucla.edu>
20204
20205 * keyboard.c (handle_user_signal): Fix pointer signedness problem.
20206
20207 * gnutls.c (emacs_gnutls_handle_error): Remove unused local.
20208 (Fgnutls_boot): gnutls_certificate_verify_peers2 wants unsigned *.
20209 Remove unused local.
20210 (emacs_gnutls_write): Don't use uninitialized rtnval if nbyte <= 0.
20211
20212 * lisp.h: Fix a problem with aliasing and vector headers. (Bug#8546)
20213 GCC 4.6.0 optimizes based on type-based alias analysis.
20214 For example, if b is of type struct buffer * and v of type struct
20215 Lisp_Vector *, then gcc -O2 was incorrectly assuming that &b->size
20216 != &v->size, and therefore "v->size = 1; b->size = 2; return
20217 v->size;" must therefore return 1. This assumption is incorrect
20218 for Emacs, since it type-puns struct Lisp_Vector * with many other
20219 types. To fix this problem, this patch adds a new type struct
20220 vectorlike_header that documents the constraints on layout of vectors
20221 and pseudovectors, and helps optimizing compilers not get fooled
20222 by Emacs's type punning. It also adds the macros XSETTYPED_PVECTYPE
20223 XSETTYPED_PSEUDOVECTOR, TYPED_PSEUDOVECTORP, for similar reasons.
20224 * lisp.h (XSETTYPED_PVECTYPE): New macro, specifying the name of
20225 the size member.
20226 (XSETPVECTYPE): Rewrite in terms of new macro.
20227 (XSETPVECTYPESIZE): New macro, specifying both type and size.
20228 This is a bit clearer, and further avoids the possibility of
20229 undesirable aliasing.
20230 (XSETTYPED_PSEUDOVECTOR): New macro, specifying the size.
20231 (XSETPSEUDOVECTOR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR.
20232 (XSETSUBR): Rewrite in terms of XSETTYPED_PSEUDOVECTOR and XSIZE,
20233 since Lisp_Subr is a special case (no "next" field).
20234 (ASIZE): Now uses header.size rather than size.
20235 All previous uses of XVECTOR (foo)->size replaced to use this macro,
20236 to avoid the hassle of writing XVECTOR (foo)->header.size.
20237 (struct vectorlike_header): New type.
20238 (TYPED_PSEUDOVECTORP): New macro, also specifying the C type of the
20239 object, to help avoid aliasing.
20240 (PSEUDOVECTORP): Rewrite in terms of TYPED_PSEUDOVECTORP.
20241 (SUBRP): Likewise, since Lisp_Subr is a special case.
20242 * lisp.h (struct Lisp_Vector, struct Lisp_Char_Table):
20243 (struct Lisp_Sub_Char_Table, struct Lisp_Bool_Vector):
20244 (struct Lisp_Hash_Table): Combine first two members into a single
20245 struct vectorlike_header member. All uses of "size" and "next" members
20246 changed to be "header.size" and "header.next".
20247 * buffer.h (struct buffer): Likewise.
20248 * font.h (struct font_spec, struct font_entity, struct font): Likewise.
20249 * frame.h (struct frame): Likewise.
20250 * process.h (struct Lisp_Process): Likewise.
20251 * termhooks.h (struct terminal): Likewise.
20252 * window.c (struct save_window_data, struct saved_window): Likewise.
20253 * window.h (struct window): Likewise.
20254 * alloc.c (allocate_buffer, Fmake_bool_vector, allocate_pseudovector):
20255 Use XSETPVECTYPESIZE, not XSETPVECTYPE, to avoid aliasing problems.
20256 * buffer.c (init_buffer_once): Likewise.
20257 * lread.c (defsubr): Use XSETTYPED_PVECTYPE, since Lisp_Subr is a
20258 special case.
20259 * process.c (Fformat_network_address): Use local var for size,
20260 for brevity.
20261
20262 * bytecode.c (exec_byte_code): Don't use XVECTOR before CHECK_VECTOR.
20263
20264 Make the Lisp reader and string-to-float more consistent (Bug#8525)
20265 * data.c (atof): Remove decl; no longer used or needed.
20266 (digit_to_number): Move to lread.c.
20267 (Fstring_to_number): Use new string_to_number function, to be
20268 consistent with how the Lisp reader treats infinities and NaNs.
20269 Do not assume that floating-point numbers represent EMACS_INT
20270 without losing information; this is not true on most 64-bit hosts.
20271 Avoid double-rounding errors, by insisting on integers when
20272 parsing non-base-10 numbers, as the documentation specifies.
20273 * lisp.h (string_to_number): New decl, replacing ...
20274 (isfloat_string): Remove.
20275 * lread.c: Include <inttypes.h>, for uintmax_t and strtoumax.
20276 (read1): Do not accept +. and -. as integers; this
20277 appears to have been a coding error. Similarly, do not accept
20278 strings like +-1e0 as floating point numbers. Do not report
20279 overflow for integer overflows unless the base is not 10 which
20280 means we have no simple and reliable way to continue.
20281 Break out the floating-point parsing into a new
20282 function string_to_number, so that Fstring_to_number parses
20283 floating point numbers consistently with the Lisp reader.
20284 (digit_to_number): Move here from data.c. Make it static inline.
20285 (E_CHAR, EXP_INT): Remove, replacing with ...
20286 (E_EXP): New macro, to solve the "1.0e+" problem mentioned below.
20287 (string_to_number): New function, replacing isfloat_string.
20288 This function checks for valid syntax and produces the resulting
20289 Lisp float number too. Rework it so that string-to-number
20290 no longer mishandles examples like "1.0e+". Use strtoumax,
20291 so that overflow for non-base-10 numbers is reported only when
20292 there's no portable and simple way to convert to floating point.
20293
20294 * textprop.c (set_text_properties_1): Rewrite for clarity,
20295 and to avoid GCC warning about integer overflow.
20296
20297 * intervals.h (struct interval): Use EMACS_INT for members
20298 where EMACS_UINT might cause problems. See
20299 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html>.
20300 (CHECK_TOTAL_LENGTH): Remove cast to EMACS_INT; no longer needed.
20301 * intervals.c (interval_deletion_adjustment): Now returns EMACS_INT.
20302 All uses changed.
20303 (offset_intervals): Tell GCC not to worry about length overflow
20304 when negating a negative length.
20305
20306 * alloc.c (overrun_check_malloc, overrun_check_realloc): Now static.
20307 (overrun_check_free): Likewise.
20308
20309 * alloc.c (SDATA_SIZE) [!GC_CHECK_STRING_BYTES]: Avoid runtime check
20310 in the common case where SDATA_DATA_OFFSET is a multiple of Emacs
20311 word size.
20312
20313 * gnutls.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20314 (gnutls_make_error): Rename local to avoid shadowing.
20315 (gnutls_emacs_global_deinit): ifdef out; not used.
20316 (Fgnutls_boot): Use const for pointer to readonly storage.
20317 Comment out unused local. Fix pointer signedness problems.
20318
20319 * lread.c (openp): Don't stuff size_t into an 'int'.
20320 Use <= on length, not < on length + 1, to avoid GCC 4.6.0 warning
20321 about possible signed overflow.
20322
20323 * gtkutil.c: Fix problems found by GCC 4.6.0 on Ubuntu 10.10.
20324 (GDK_KEY_g): Don't define if already defined.
20325 (xg_prepare_tooltip): Avoid pointer signedness problem.
20326 (xg_set_toolkit_scroll_bar_thumb): Redo to avoid two casts.
20327
20328 * process.c (Fnetwork_interface_info): Avoid left-shift undefined
20329 behavior with 1 << 31. GCC 4.6.0 warns about this on 32-bit hosts.
20330
20331 * xfns.c (Fx_window_property): Simplify a bit,
20332 to make a bit faster and to avoid GCC 4.6.0 warning.
20333 * xselect.c (x_get_window_property, x_handle_dnd_message): Likewise.
20334
20335 * fns.c (internal_equal): Don't assume size_t fits in int.
20336
20337 * alloc.c (compact_small_strings): Tighten assertion a little.
20338
20339 Replace pEd with more-general pI, and fix some printf arg casts.
20340 * lisp.h (pI): New macro, generalizing old pEd macro to other
20341 conversion specifiers. For example, use "...%"pI"d..." rather
20342 than "...%"pEd"...".
20343 (pEd): Remove. All uses replaced with similar uses of pI.
20344 * m/amdx86-64.h, m/ia64.h, m/ibms390x.h: Likewise.
20345 * alloc.c (check_pure_size): Don't overflow by converting size to int.
20346 * bidi.c (bidi_dump_cached_states): Use pI to avoid cast.
20347 * data.c (Fnumber_to_string): Use pI instead of if-then-else-abort.
20348 * dbusbind.c (xd_append_arg): Use pI to avoid cast.
20349 (Fdbus_method_return_internal, Fdbus_method_error_internal): Likewise.
20350 * font.c (font_unparse_xlfd): Avoid potential buffer overrun on
20351 64-bit hosts.
20352 (font_unparse_xlfd, font_unparse_fcname): Use pI to avoid casts.
20353 * keyboard.c (record_char, modify_event_symbol): Use pI to avoid casts.
20354 * print.c (safe_debug_print, print_object): Likewise.
20355 (print_object): Don't overflow by converting EMACS_INT or EMACS_UINT
20356 to int.
20357 Use pI instead of if-then-else-abort. Use %p to avoid casts,
20358 avoiding the 0 flag, which is not portable.
20359 * process.c (Fmake_network_process): Use pI to avoid cast.
20360 * region-cache.c (pp_cache): Likewise.
20361 * xdisp.c (decode_mode_spec): Likewise.
20362 * xrdb.c (x_load_resources) [USE_MOTIF]: Use pI to avoid undefined
20363 behavior on 64-bit hosts with printf arg.
20364 * xselect.c (x_queue_event): Use %p to avoid casts, avoiding 0 flag.
20365 (x_stop_queuing_selection_requests): Likewise.
20366 (x_get_window_property): Don't truncate byte count to an 'int'
20367 when tracing.
20368
20369 * frame.c (frame_name_fnn_p): Get rid of strtol, which isn't right
20370 here, since it parses constructs like leading '-' and spaces,
20371 which are not wanted; and it overflows with large numbers.
20372 Instead, simply match F[0-9]+, which is what is wanted anyway.
20373
20374 * alloc.c: Remove unportable assumptions about struct layout.
20375 (SDATA_SELECTOR, SDATA_DATA_OFFSET): New macros.
20376 (SDATA_OF_STRING, SDATA_SIZE, allocate_string_data):
20377 (allocate_vectorlike, make_pure_vector): Use the new macros,
20378 plus offsetof, to remove unportable assumptions about struct layout.
20379 These assumptions hold on all porting targets that I know of, but
20380 they are not guaranteed, they're easy to remove, and removing them
20381 makes further changes easier.
20382
20383 * alloc.c (BLOCK BYTES): Fix typo by changing "ablock" to "ablocks".
20384 This doesn't fix a bug but makes the code clearer.
20385 (string_overrun_cookie): Now const. Use initializers that
20386 don't formally overflow signed char, to avoid warnings.
20387 (allocate_string_data) [GC_CHECK_STRING_OVERRUN]: Fix typo that
20388 can cause Emacs to crash when string overrun checking is enabled.
20389 (allocate_buffer): Don't assume sizeof (struct buffer) is a
20390 multiple of sizeof (EMACS_INT); it need not be, if
20391 alignof(EMACS_INT) < sizeof (EMACS_INT).
20392 (check_sblock, check_string_bytes, check_string_free_list): Protoize.
20393
20394 2011-04-26 Juanma Barranquero <lekktu@gmail.com>
20395
20396 * keyboard.c (QCrtl): Rename from Qrtl. All uses changed.
20397
20398 2011-04-26 Teodor Zlatanov <tzz@lifelogs.com>
20399
20400 * gnutls.c (emacs_gnutls_handshake): Return an error if we're not
20401 supposed to be handshaking. (Bug#8556)
20402 Reported by Paul Eggert <eggert@cs.ucla.edu>.
20403
20404 2011-04-26 Daniel Colascione <dan.colascione@gmail.com>
20405
20406 * lisp.h (Qdebug): List symbol.
20407 * eval.c (Qdebug): Restore global linkage.
20408 * keyboard.c (debug-on-event): New variable.
20409 (handle_user_signal): Break into debugger when debug-on-event
20410 matches the current signal symbol.
20411
20412 2011-04-25 Dan Nicolaescu <dann@ics.uci.edu>
20413
20414 * alloc.c (check_sblock, check_string_bytes)
20415 (check_string_free_list): Convert to standard C.
20416
20417 2011-04-25 Teodor Zlatanov <tzz@lifelogs.com>
20418
20419 * w32.c (emacs_gnutls_push): Fix typo.
20420
20421 2011-04-25 Eli Zaretskii <eliz@gnu.org>
20422
20423 * gnutls.c (emacs_gnutls_handshake): Avoid compiler warnings about
20424 "cast to pointer from integer of different size".
20425
20426 Improve doprnt and its use in verror. (Bug#8545)
20427 * doprnt.c (doprnt): Document the set of format control sequences
20428 supported by the function. Use SAFE_ALLOCA instead of always
20429 using `alloca'.
20430
20431 * eval.c (verror): Don't limit the buffer size at size_max-1, that
20432 is one byte too soon. Don't use xrealloc; instead xfree and
20433 xmalloc anew.
20434
20435 2011-04-24 Teodor Zlatanov <tzz@lifelogs.com>
20436
20437 * gnutls.h: Add GNUTLS_STAGE_CALLBACKS enum to denote we're in the
20438 callbacks stage.
20439
20440 * gnutls.c: Renamed global_initialized to
20441 gnutls_global_initialized. Added internals for the
20442 :verify-hostname-error, :verify-error, and :verify-flags
20443 parameters of `gnutls-boot' and documented those parameters in the
20444 docstring. Start callback support.
20445 (emacs_gnutls_handshake): Add Woe32 support. Retry handshake
20446 unless a fatal error occurred. Call gnutls_alert_send_appropriate
20447 on error. Return error code.
20448 (emacs_gnutls_write): Call emacs_gnutls_handle_error.
20449 (emacs_gnutls_read): Likewise.
20450 (Fgnutls_boot): Return handshake error code.
20451 (emacs_gnutls_handle_error): New function.
20452 (wsaerror_to_errno): Likewise.
20453
20454 * w32.h (emacs_gnutls_pull): Add prototype.
20455 (emacs_gnutls_push): Likewise.
20456
20457 * w32.c (emacs_gnutls_pull): New function for GnuTLS on Woe32.
20458 (emacs_gnutls_push): Likewise.
20459
20460 2011-04-24 Claudio Bley <claudio.bley@gmail.com> (tiny change)
20461
20462 * process.c (wait_reading_process_output): Check if GnuTLS
20463 buffered some data internally if no FDs are set for TLS
20464 connections.
20465
20466 * makefile.w32-in (OBJ2): Add gnutls.$(O).
20467 (LIBS): Link to USER_LIBS.
20468 ($(BLD)/gnutls.$(0)): New target.
20469
20470 2011-04-24 Eli Zaretskii <eliz@gnu.org>
20471
20472 * xdisp.c (handle_single_display_spec): Rename the
20473 display_replaced_before_p argument into display_replaced_p, to
20474 make it consistent with the commentary. Fix typos in the
20475 commentary.
20476
20477 * textprop.c (syms_of_textprop): Remove dead code.
20478 (copy_text_properties): Delete obsolete commentary about an
20479 interface that was deleted long ago. Fix typos in the description
20480 of arguments.
20481
20482 * msdos.c (XMenuActivate, XMenuAddSelection): Adjust argument list
20483 to changes in oldXMenu/XMenu.h from 2011-04-16.
20484 <menu_help_message, prev_menu_help_message>: Constify.
20485 (IT_menu_make_room): menu->help_text is now `const char **';
20486 adjust.
20487
20488 * msdos.h (XMenuActivate, XMenuAddSelection): Adjust prototypes
20489 to changes in oldXMenu/XMenu.h from 2011-04-16.
20490 (struct XMenu): Declare `help_text' `const char **'.
20491
20492 * xfaces.c <Qunspecified>: Make extern again.
20493
20494 * syntax.c: Include sys/types.h before including regex.h, as
20495 required by POSIX.
20496
20497 * doc.c (get_doc_string): Improve the format passed to `error'.
20498
20499 * doprnt.c (doprnt): Improve commentary.
20500
20501 * term.c (init_tty) [MSDOS]: Fix 1st argument to maybe_fatal.
20502
20503 * Makefile.in (TAGS): Depend on $(M_FILE) and $(S_FILE), and scan
20504 them with etags.
20505
20506 * makefile.w32-in (globals.h): Add a dummy recipe, to make any
20507 changes in globals.h immediately force recompilation.
20508 (TAGS): Depend on $(CURDIR)/m/intel386.h and
20509 $(CURDIR)/s/ms-w32.h.
20510 (TAGS-gmake): Scan $(CURDIR)/m/intel386.h and $(CURDIR)/s/ms-w32.h.
20511
20512 * character.c (Fchar_direction): Function deleted.
20513 (syms_of_character): Don't defsubr it.
20514 <char-direction-table>: Deleted.
20515
20516 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20517
20518 Fix doprnt so it could be used again safely in `verror'. (Bug#8435)
20519 * doprnt.c: Include limits.h.
20520 (SIZE_MAX): New macro.
20521 (doprnt): Return a size_t value. 2nd arg is now size_t.
20522 Many local variables are now size_t instead of int or unsigned.
20523 Improve overflow protection. Support `l' modifier for integer
20524 conversions. Support %l conversion. Don't assume an EMACS_INT
20525 argument for integer conversions and for %c.
20526
20527 * lisp.h (doprnt): Restore prototype.
20528
20529 * makefile.w32-in ($(BLD)/callint.$(O)): Depend on
20530 $(SRC)/character.h.
20531
20532 * Makefile.in (base_obj): Add back doprnt.o.
20533
20534 * deps.mk (doprnt.o): Add back prerequisites.
20535 (callint.o): Depend on character.h.
20536
20537 * eval.c (internal_lisp_condition_case): Include the handler
20538 representation in the error message.
20539 (verror): Call doprnt instead of vsnprintf. Fix an off-by-one bug
20540 when breaking from the loop.
20541
20542 * xdisp.c (vmessage): Call doprnt instead of vsnprintf.
20543
20544 * callint.c (Fcall_interactively): When displaying error message
20545 about invalid control letter, pass the character's codepoint, not
20546 a pointer to its multibyte form. Improve display of the character
20547 in octal and display also its hex code.
20548
20549 * character.c (char_string): Use %x to display the (unsigned)
20550 codepoint of an invalid character, to avoid displaying a bogus
20551 negative value.
20552
20553 * font.c (check_otf_features): Pass SDATA of SYMBOL_NAME to
20554 `error', not SYMBOL_NAME itself.
20555
20556 * coding.c (Fencode_sjis_char, Fencode_big5_char): Use %c for
20557 character arguments to `error'.
20558
20559 * charset.c (check_iso_charset_parameter): Fix incorrect argument
20560 to `error' in error message about FINAL_CHAR argument. Make sure
20561 FINAL_CHAR is a character, and use %c when it is passed as
20562 argument to `error'.
20563
20564 2011-04-23 Eli Zaretskii <eliz@gnu.org>
20565
20566 * s/ms-w32.h (localtime): Redirect to sys_localtime.
20567
20568 * w32.c: Include <time.h>.
20569 (sys_localtime): New function.
20570
20571 2011-04-23 Chong Yidong <cyd@stupidchicken.com>
20572
20573 * xdisp.c (init_xdisp): Initialize echo_area_window (Bug#6451).
20574
20575 * buffer.c (syms_of_buffer): Doc fix (Bug#6902).
20576
20577 2011-04-23 Samuel Thibault <sthibault@debian.org> (tiny change)
20578
20579 * sysdep.c (wait_for_termination): On GNU Hurd, kill returns -1 on
20580 zombies (Bug#8467).
20581
20582 2011-04-19 Eli Zaretskii <eliz@gnu.org>
20583
20584 * syntax.h (SETUP_SYNTAX_TABLE_FOR_OBJECT): Fix setting of
20585 gl_state.e_property when gl_state.object is Qt.
20586
20587 * insdel.c (make_gap_larger): Remove limitation of buffer size
20588 to <= INT_MAX.
20589
20590 2011-04-18 Chong Yidong <cyd@stupidchicken.com>
20591
20592 * xdisp.c (lookup_glyphless_char_display)
20593 (produce_glyphless_glyph): Handle cons cell entry in
20594 glyphless-char-display.
20595 (Vglyphless_char_display): Document it.
20596
20597 * term.c (produce_glyphless_glyph): Handle cons cell entry in
20598 glyphless-char-display.
20599
20600 2011-04-17 Chong Yidong <cyd@stupidchicken.com>
20601
20602 * xdisp.c (get_next_display_element): Remove unnecessary ifdefs.
20603
20604 * termhooks.h (FRAME_WINDOW_P): Remove duplicated definitions.
20605
20606 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): Add missing
20607 definition for no-X builds.
20608
20609 2011-04-16 Paul Eggert <eggert@cs.ucla.edu>
20610
20611 Static checks with GCC 4.6.0 and non-default toolkits.
20612
20613 * s/sol2-6.h, s/unixware.h (PTY_TTY_NAME_SPRINTF): Protoize decl.
20614
20615 * process.c (keyboard_bit_set): Define only if SIGIO.
20616 (send_process_trap): Mark it with NO_RETURN if it doesn't return.
20617 (send_process): Repair possible setjmp clobbering.
20618
20619 * s/usg5-4-common.h (SETUP_SLAVE_PTY): Don't pass extra arg to 'fatal'.
20620
20621 * eval.c: Include <stdio.h>, for vsnprintf on non-GNU/Linux hosts.
20622
20623 * data.c (arith_error): Mark with NO_RETURN if it doesn't return.
20624
20625 * alloc.c (bytes_used_when_full, SPARE_MEMORY, BYTES_USED):
20626 Define only if needed.
20627
20628 * sysdep.c (_FILE_OFFSET_BITS): Make this hack even uglier
20629 by pacifying GCC about it. Maybe it's time to retire it?
20630 * xfaces.c (USG, __TIMEVAL__): Likewise.
20631
20632 * dispextern.h (struct redisplay_interface): Rename param
20633 to avoid shadowing.
20634 * termhooks.h (struct terminal): Likewise.
20635 * xterm.c (xembed_send_message): Likewise.
20636
20637 * insdel.c (make_gap_smaller): Define only if
20638 USE_MMAP_FOR_BUFFERS || REL_ALLOC || DOUG_LEA_MALLOC.
20639
20640 * keyboard.c (read_char): Make a var volatile so longjmp won't clobber
20641 it.
20642
20643 * emacs.c (MAX_HEAP_BSS_DIFF, my_edata): Move to where they're used,
20644 so that we aren't warned about unused symbols.
20645
20646 * xfns.c (Fx_file_dialog): Rename local to avoid shadowing.
20647
20648 * xdisp.c (x_produce_glyphs): Mark var as initialized (Bug#8512).
20649
20650 * xfns.c (x_real_positions): Mark locals as initialized.
20651
20652 * xmenu.c (xmenu_show): Don't use uninitialized vars.
20653
20654 * xterm.c: Fix problems found by static analysis with other toolkits.
20655 (toolkit_scroll_bar_interaction): Define and use only if USE_X_TOOLKIT.
20656 (x_dispatch_event): Declare static if USE_GTK, and
20657 define if USE_GTK || USE_X_TOOLKIT.
20658 (SET_SAVED_BUTTON_EVENT): Define only if USE_X_TOOLKIT || USE_GTK.
20659 * xterm.h (x_dispatch_event): Extern only if USE_X_TOOLKIT.
20660 * xterm.c, xterm.h (x_mouse_leave): Bring this function back, but only
20661 if defined HAVE_MENUS && !defined USE_X_TOOLKIT && !defined USE_GTK.
20662
20663 * xmenu.c (menu_help_callback): Pointer type fixes.
20664 Use const pointers when pointing at readonly data. Avoid pointer
20665 signedness clashes.
20666 (FALSE): Remove unused macro.
20667 (update_frame_menubar): Remove unused decl.
20668
20669 * xfns.c (Fx_hide_tip): Move locals to avoid shadowing.
20670
20671 * menu.c (push_submenu_start, push_submenu_end): Do not define unless
20672 USE_X_TOOLKIT || USE_GTK || HAVE_NS || defined HAVE_NTGUI.
20673 (single_menu_item): Rename local to avoid shadowing.
20674
20675 * keyboard.c (make_lispy_event): Remove unused local var.
20676
20677 * frame.c, frame.h (x_get_resource_string): Bring this back, but
20678 only if HAVE_X_WINDOWS && !USE_X_TOOLKIT.
20679
20680 * bitmaps: Change bitmaps from unsigned char back to the X11
20681 compatible char. Avoid the old compiler warnings about
20682 out-of-range initializers by using, for example, '\xab' rather
20683 than 0xab.
20684
20685 * xgselect.c (xgselect_initialize): Check vs interface
20686 even if ! (defined (USE_GTK) || defined (HAVE_GCONF)).
20687
20688 * xmenu.c (xmenu_show): Rename parm to avoid shadowing.
20689
20690 * xterm.c (x_create_toolkit_scroll_bar): Use const * for pointers
20691 to read-only memory.
20692
20693 * fns.c (vector): Remove; this old hack is no longer needed.
20694
20695 * xsmfns.c (create_client_leader_window): Rename shadowing arg.
20696 Remove unused var.
20697 (gdk_x11_set_sm_client_id) [!USE_GTK]: Don't define.
20698
20699 * xrdb.c (x_load_resources): Omit unused local.
20700
20701 * xfns.c (free_frame_menubar, atof): Remove duplicate decls.
20702 (x_window): Rename locals to avoid shadowing.
20703 (USG): Use the kludged USG macro, to pacify gcc.
20704
20705 * xterm.c (x_alloc_nearest_color_for_widget): Remove; unused.
20706 (x_term_init): Remove local to avoid shadowing.
20707
20708 * xfns.c, xterm.c (_XEditResCheckMessages): Protoize decl.
20709
20710 * xdisp.c, dispextern.h (set_vertical_scroll_bar): Now extern if
20711 USE_TOOLKIT_SCROLL_BARS && !USE_GTK, as xterm.c needs it then.
20712
20713 2011-04-16 Eli Zaretskii <eliz@gnu.org>
20714
20715 * gnutls.c (Fgnutls_boot): Don't pass Lisp_Object to `error'.
20716
20717 Fix regex.c, syntax.c and friends for buffers > 2GB.
20718 * syntax.h (struct gl_state_s): Declare character position members
20719 EMACS_INT.
20720
20721 * syntax.c (update_syntax_table): Declare 2nd argument EMACS_INT.
20722
20723 * textprop.c (verify_interval_modification, interval_of):
20724 Declare arguments EMACS_INT.
20725
20726 * intervals.c (adjust_intervals_for_insertion): Declare arguments
20727 EMACS_INT.
20728
20729 * intervals.h (CHECK_TOTAL_LENGTH): Cast to EMACS_INT, not `int'.
20730
20731 * indent.c (Fvertical_motion): Local variable it_start is now
20732 EMACS_INT.
20733
20734 * regex.c (re_match, re_match_2, re_match_2_internal)
20735 (bcmp_translate, regcomp, regexec, print_double_string)
20736 (group_in_compile_stack, re_search, re_search_2, regex_compile)
20737 (re_compile_pattern, re_exec): Declare arguments and local
20738 variables `size_t' and `ssize_t' and return values `regoff_t', as
20739 appropriate.
20740 (POP_FAILURE_REG_OR_COUNT) <pfreg>: Declare `long'.
20741 (CHECK_INFINITE_LOOP) <failure>: Declare `ssize_t'.
20742 <compile_stack_type>: `size' and `avail' are now `size_t'.
20743
20744 * regex.h <regoff_t>: Use ssize_t, not int.
20745 (re_search, re_search_2, re_match, re_match_2): Arguments that
20746 specify buffer/string position and length are now ssize_t and
20747 size_t. Return type is regoff_t.
20748
20749 2011-04-16 Ben Key <bkey76@gmail.com>
20750
20751 * nsfont.m: Fixed bugs in ns_get_family and
20752 ns_descriptor_to_entity that were caused by using free to
20753 deallocate memory blocks that were allocated by xmalloc (via
20754 xstrdup). This caused Emacs to crash when compiled with
20755 XMALLOC_OVERRUN_CHECK defined (when Emacs was configured with
20756 --enable-checking=xmallocoverrun). xfree is now used to
20757 deallocate these memory blocks.
20758
20759 2011-04-15 Paul Eggert <eggert@cs.ucla.edu>
20760
20761 * sysdep.c (emacs_read): Remove unnecessary check vs MAX_RW_COUNT.
20762
20763 emacs_write: Accept and return EMACS_INT for sizes.
20764 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00514.html
20765 et seq.
20766 * gnutls.c, gnutls.h (emacs_gnutls_read, emacs_gnutls_write):
20767 Accept and return EMACS_INT.
20768 (emacs_gnutls_write): Return the number of bytes written on
20769 partial writes.
20770 * sysdep.c, lisp.h (emacs_read, emacs_write): Likewise.
20771 (emacs_read, emacs_write): Remove check for negative size, as the
20772 Emacs source code has been audited now.
20773 * sysdep.c (MAX_RW_COUNT): New macro, to work around kernel bugs.
20774 (emacs_read, emacs_write): Use it.
20775 * process.c (send_process): Adjust to the new signatures of
20776 emacs_write and emacs_gnutls_write. Do not attempt to store
20777 a byte offset into an 'int'; it might overflow.
20778 See http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00483.html
20779
20780 * sound.c: Don't assume sizes fit in 'int'.
20781 (struct sound_device.period_size, alsa_period_size):
20782 Return EMACS_INT, not int.
20783 (struct sound_device.write, vox_write, alsa_write):
20784 Accept EMACS_INT, not int.
20785 (wav_play, au_play): Use EMACS_INT to store sizes and to
20786 record read return values.
20787
20788 2011-04-15 Ben Key <bkey76@gmail.com>
20789
20790 * keyboard.c (Qundefined): Don't declare static since it is used
20791 in nsfns.m.
20792 * xfaces.c (Qbold, Qexpanded, Qitalic, Qcondensed): Don't declare
20793 static since they are used in nsfont.m.
20794
20795 2011-04-15 Stefan Monnier <monnier@iro.umontreal.ca>
20796
20797 * process.c (Qprocessp): Don't declare static.
20798 * lisp.h (Qprocessp): Declare again.
20799
20800 2011-04-15 Juanma Barranquero <lekktu@gmail.com>
20801
20802 * font.c (Qopentype): Don't make static (used from w32uniscribe.c).
20803
20804 2011-04-14 Paul Eggert <eggert@cs.ucla.edu>
20805
20806 Improve C-level modularity by making more things 'static'.
20807
20808 Don't publish debugger-only interfaces to other modules.
20809 * lisp.h (safe_debug_print, debug_output_compilation_hack):
20810 (verify_bytepos, count_markers): Move decls to the only modules
20811 that need them.
20812 * region-cache.h (pp_cache): Likewise.
20813 * window.h (check_all_windows): Likewise.
20814 * marker.c, print.c, region-cache.c, window.c: Decls moved here.
20815
20816 * sysdep.c (croak): Now static, if
20817 defined TIOCNOTTY || defined USG5 || defined CYGWIN.
20818 * syssignal.h (croak): Declare only if not static.
20819
20820 * alloc.c (refill_memory_reserve): Now static if
20821 !defined REL_ALLOC || defined SYSTEM_MALLOC.
20822 * lisp.h (refill_memory_reserve): Declare only if not static.
20823
20824 * xsettings.c, xsettings.h (xsettings_get_system_normal_font):
20825 Define only if USE_LUCID.
20826
20827 * xrdb.c (x_customization_string, x_rm_string): Now static.
20828
20829 * xmenu.c (x_menu_wait_for_event): Export only if USE_MOTIF.
20830 * xterm.h (x_menu_wait_for_event): Declare only if USE_MOTIF.
20831
20832 * xdisp.c (draw_row_with_mouse_face): Now static.
20833 * dispextern.h (draw_row_with_mouse_fave): Remove decl.
20834
20835 * window.h (check_all_windows): Mark externally visible.
20836
20837 * window.c (window_deletion_count): Now static.
20838
20839 * undo.c: Make symbols static if they're not exported.
20840 (last_undo_buffer, last_boundary_position, pending_boundary):
20841 Now static.
20842
20843 * textprop.c (interval_insert_behind_hooks): Now static.
20844 (interval_insert_in_front_hooks): Likewise.
20845
20846 * term.c: Make symbols static if they're not exported.
20847 (tty_turn_off_highlight, get_tty_terminal, max_frame_cols):
20848 (max_frame_lines, tty_set_terminal_modes):
20849 (tty_reset_terminal_modes, tty_turn_off_highlight):
20850 (get_tty_terminal): Now static.
20851 (term_mouse_moveto): Do not define if HAVE_WINDOW_SYSTEM.
20852 * termhooks.h (term_mouse_moveto): Do not declare if
20853 HAVE_WINDOW_SYSTEM.
20854 * dispextern.h (tty_set_terminal_modes, tty_reset_terminal_modes):
20855 (tty_turn_off_highlight, get_tty_terminal): Remove decls.
20856
20857 * sysdep.c: Make symbols static if they're not exported.
20858 (emacs_get_tty, emacs_set_tty, old_fcntl_flags, old_fcntl_owner):
20859 Now static.
20860 (sigprocmask_set, full_mask): Remove; unused.
20861 (wait_debugging): Mark as visible.
20862 * syssignal.h (SIGFULLMASK, full_mask): Remove decls.
20863 * systty.h (emacs_get_tty, emacs_set_tty): Remove decls.
20864
20865 * syntax.c (syntax_temp): Define only if !__GNUC__.
20866
20867 * sound.c (current_sound_device, current_sound): Now static.
20868
20869 * search.c (searchbufs, searchbuf_head): Now static.
20870
20871 * scroll.c (scroll_cost): Remove; unused.
20872 * dispextern.h (scroll_cost): Remove decl.
20873
20874 * region-cache.h (pp_cache): Mark as externally visible.
20875
20876 * process.c: Make symbols static if they're not exported.
20877 (process_tick, update_tick, create_process, chan_process):
20878 (Vprocess_alist, proc_buffered_char, datagram_access):
20879 (fd_callback_data, send_process_frame, process_sent_to): Now static.
20880 (deactivate_process): Mark defn as static, as well as decl.
20881 * lisp.h (create_process): Remove decl.
20882 * process.h (chan_process, Vprocess_alist): Remove decls.
20883
20884 * print.c: Make symbols static if they're not exported.
20885 (print_depth, new_backquote_output, being_printed, print_buffer):
20886 (print_buffer_size, print_buffer_pos, print_buffer_pos_byte):
20887 (print_interval, print_number_index, initial_stderr_stream):
20888 Now static.
20889 * lisp.h (Fprinc): Remove decl.
20890 (debug_output_compilation_hack): Mark as externally visible.
20891
20892 * sysdep.c (croak): Move decl from here to syssignal.h.
20893 * syssignal.h (croak): Put it here, so the API can be checked when
20894 'croak' is called from dissociate_if_controlling_tty.
20895
20896 * minibuf.c: Make symbols static if they're not exported.
20897 (minibuf_save_list, choose_minibuf_frame): Now static.
20898 * lisp.h (choose_minibuf_frame): Remove decl.
20899
20900 * lisp.h (verify_bytepos, count_markers): Mark as externally visible.
20901
20902 * lread.c: Make symbols static if they're not exported.
20903 (read_objects, initial_obarray, oblookup_last_bucket_number):
20904 Now static.
20905 (make_symbol): Remove; unused.
20906 * lisp.h (initial_obarray, make_symbol): Remove decls.
20907
20908 * keyboard.c: Make symbols static if they're not exported.
20909 (single_kboard, recent_keys_index, total_keys, recent_keys):
20910 (this_command_key_count_reset, raw_keybuf, raw_keybuf_count):
20911 (this_single_command_key_start, echoing, last_auto_save):
20912 (read_key_sequence_cmd, dribble, recursive_edit_unwind):
20913 (command_loop, echo_now, keyboard_init_hook, help_char_p):
20914 (quit_throw_to_read_char, command_loop_2, top_level_1, poll_timer):
20915 (Vlispy_mouse_stem, double_click_count):
20916 Now static.
20917 (force_auto_save_soon): Define only if SIGDANGER.
20918 (ignore_mouse_drag_p): Now static if
20919 !defined HAVE_WINDOW_SYSTEM || defined USE_GTK || defined HAVE_NS.
20920 (print_help): Remove; unused.
20921 (stop_character, last_timer_event): Mark as externally visible.
20922 * keyboard.h (ignore_mouse_drag_p): Declare only if
20923 defined HAVE_WINDOW_SYSTEM && !defined USE_GTK && !defined HAVE_NS.
20924 (echo_now, help_char_p, quit_throw_to_read_char): Remove decls.
20925 * lisp.h (echoing): Remove decl.
20926 (force_auto_save_soon): Declare only if SIGDANGER.
20927 * xdisp.c (redisplay_window): Simplify code, to make it more
20928 obvious that ignore_mouse_drag_p is not accessed if !defined
20929 USE_GTK && !defined HAVE_NS.
20930
20931 * intervals.c: Make symbols static if they're not exported.
20932 (merge_properties_sticky, merge_interval_right, delete_interval):
20933 Now static.
20934 * intervals.h (merge_interval_right, delete_interval): Remove decls.
20935
20936 * insdel.c: Make symbols static if they're not exported.
20937 However, leave prepare_to_modify_buffer alone. It's never
20938 called from outside this function, but that appears to be a bug.
20939 (combine_after_change_list, combine_after_change_buffer):
20940 (adjust_after_replace, signal_before_change): Now static.
20941 (adjust_after_replace_noundo): Remove; unused.
20942 * lisp.h (adjust_after_replace, adjust_after_replace_noundo):
20943 (signal_before_change): Remove decls.
20944
20945 * indent.c (val_compute_motion, val_vmotion): Now static.
20946
20947 * image.c: Make symbols static if they're not exported.
20948 * dispextern.h (x_create_bitmap_from_xpm_data): Do not declare
20949 if USE_GTK.
20950 * image.c (x_create_bitmap_from_xpm_data): Do not define if USE_GTK.
20951 (xpm_color_cache, ct_table, ct_colors_allocated): Now static.
20952
20953 * fringe.c (standard_bitmaps): Now static.
20954 (max_used_fringe_bitmap): Now static, unless HAVE_NS.
20955
20956 * frame.c: Make symbols static if they're not exported.
20957 (x_report_frame_params, make_terminal_frame): Now static.
20958 (get_frame_param): Now static, unless HAVE_NS.
20959 (x_fullscreen_adjust): Define if WINDOWSNT, not if HAVE_WINDOW_SYSTEM.
20960 (x_get_resource_string): Remove; not used.
20961 * frame.h (make_terminal_frame, x_report_frame_params):
20962 (x_get_resource_string); Remove decls.
20963 (x_fullscreen_adjust): Declare only if WINDOWSNT.
20964 * lisp.h (get_frame_param): Declare only if HAVE_NS.
20965
20966 * font.c, fontset.c: Make symbols static if they're not exported.
20967 * dispextern.h (FACE_SUITABLE_FOR_ASCII_CHAR_P): New macro.
20968 (FACE_SUITABLE_FOR_CHAR_P): Use it.
20969 * font.c (font_close_object): Now static.
20970 * font.h (font_close_object): Remove.
20971 * fontset.c (FONTSET_OBJLIST): Remove.
20972 (free_realized_fontset) #if-0 the body, which does nothing.
20973 (face_suitable_for_char_p): #if-0, as it's never called.
20974 * fontset.h (face_suitable_for_char_p): Remove decl.
20975 * xfaces.c (face_at_string_position):
20976 Use FACE_SUITABLE_FOR_ASCII_CHAR_P, not FACE_SUITABLE_FOR_CHAR_P,
20977 since 0 is always ASCII.
20978
20979 * fns.c (weak_hash_tables): Now static.
20980
20981 * fileio.c: Make symbols static if they're not exported.
20982 (auto_saving, auto_save_mode_bits, auto_save_error_occurred):
20983 (Vwrite_region_annotation_buffers): Now static.
20984
20985 * eval.c: Make symbols static if they're not exported.
20986 (backtrace_list, lisp_eval_depth, when_entered_debugger): Now static.
20987 * lisp.h (backtrace_list): Remove decl.
20988
20989 * emacs.c: Make symbols static if they're not exported.
20990 (malloc_state_ptr, malloc_using_checking, syms_of_emacs):
20991 (fatal_error_code, fatal_error_signal_hook, standard_args):
20992 Now static.
20993 (fatal_error_signal): Now static, unless FLOAT_CATCH_SIGKILL.
20994 (DEFINE_DUMMY_FUNCTION): Mark function as externally visible.
20995 (__CTOR_LIST__, __DTOR_LIST__): Now externally visible.
20996 * lisp.h (fatal_error_signal_hook): Remove decl.
20997 (fatal_error_signal): Declare only if FLOAT_CATCH_SIGKILL.
20998
20999 * editfns.c: Move a (normally-unused) function to its only use.
21000 * editfns.c, lisp.h (get_operating_system_release): Remove.
21001 * process.c (init_process) [DARWIN_OS]: Do it inline, as it is not
21002 worth the hassle of breaking this out.
21003
21004 * xterm.c: Make symbols static if they're not exported.
21005 (x_raise_frame, x_lower_frame, x_wm_set_window_state):
21006 (x_wm_set_icon_pixmap, x_initialize, XTread_socket_fake_io_error):
21007 (x_destroy_window, x_delete_display):
21008 Now static.
21009 (x_dispatch_event): Now static if ! (USE_MOTIF || USE_X_TOOLKIT).
21010 (x_mouse_leave): Remove; unused.
21011 * xterm.h (x_display_info_for_name, x_raise_frame, x_lower_frame):
21012 (x_destroy_window, x_wm_set_window_state, x_wm_set_icon_pixmap):
21013 (x_delete_display, x_initialize, x_set_border_pixel, x_screen_planes):
21014 Remove decls.
21015 (x_mouse_leave): Declare only if WINDOWSNT.
21016 (x_dispatch_event): Declare only if USE_MOTIF or USE_X_TOOLKIT.
21017 (xic_create_fontsetname): Declare only if HAVE_X_WINDOWS &&
21018 USE_X_TOOLKIT.
21019
21020 * ftxfont.c: Make symbols static if they're not exported.
21021 (ftxfont_driver): Export only if !defined HAVE_XFT && def8ined
21022 HAVE_FREETYPE.
21023 * font.h (ftxfont_driver): Likewise.
21024
21025 * xfns.c: Make symbols static if they're not exported.
21026 (x_last_font_name, x_display_info_for_name):
21027 (x_set_foreground_color, x_set_background_color, x_set_mouse_color):
21028 (x_set_cursor_color, x_set_border_pixel, x_set_border_color):
21029 (x_set_cursor_type, x_set_icon_type, x_set_icon_name):
21030 (x_set_scroll_bar_foreground, x_set_scroll_bar_background):
21031 (x_explicitly_set_name, x_set_title, xic_defaut_fontset, tip_timer):
21032 (last_show_tip_args): Now static.
21033 (xic_defaut_fontset, xic_create_fontsetname): Define only if
21034 defined HAVE_X_WINDOWS && defined USE_X_TOOLKIT
21035 (x_screen_planes): Remove; unused.
21036 * dispextern.h (x_screen_planes): Remove decl.
21037
21038 * dispnew.c: Make symbols static if they're not exported.
21039 * dispextern.h (redraw_garbaged_frames, scrolling):
21040 (increment_row_positions): Remove.
21041 * dispnew.c (new_glyph_matrix, increment_row_positions, scrolling):
21042 (delayed_size_change, glyph_matrix_count, glyph_pool_count):
21043 Now static.
21044 (redraw_garbaged_frames): Remove; unused.
21045
21046 * xfaces.c: Make symbols static if they're not exported.
21047 * dispextern.h (ascii_face_of_lisp_face, free_realized_face):
21048 Remove decls.
21049 * xterm.h (defined_color): Remove decls.
21050 (x_free_dpy_colors): Declare only if USE_X_TOOLKIT.
21051 * xfaces.c (tty_suppress_bold_inverse_default_colors_p):
21052 (menu_face_changed_default, defined_color, free_realized_face):
21053 (x_free_dpy_colors): Define only if USE_X_TOOLKIT.
21054 (ascii_face_of_lisp_face): Remove; unused.
21055
21056 * xdisp.c: Make symbols static if they're not exported.
21057 * dispextern.h (scratch_glyph_row, window_box_edges):
21058 (glyph_to_pixel_coords, set_cursor_from_row):
21059 (get_next_display_element, set_iterator_to_next):
21060 (highlight_trailing_whitespace, frame_to_window_pixel_xy):
21061 (show_mouse_face): Remove decls
21062 * frame.h (message_buf_print): Likewise.
21063 * lisp.h (pop_message, set_message, check_point_in_composition):
21064 Likewise.
21065 * xterm.h (set_vertical_scroll_bar): Likewise.
21066 * xdisp.c (list_of_error, Vmessage_stack, line_number_displayed):
21067 (message_buf_print, scratch_glyph_row, displayed_buffer):
21068 (set_iterator_to_next, pop_message, set_message, set_cursor_from_row):
21069 (get_next_display_element, show_mouse_face, window_box_edges):
21070 (frame_to_window_pixel_xy, check_point_in_composition):
21071 (set_vertical_scroll_bar, highlight_trailing_whitespace): Now static.
21072 (glyph_to_pixel_coords): Remove; unused.
21073
21074 * dired.c (file_name_completion): Now static.
21075
21076 * dbusbind.c (xd_in_read_queued_messages): Now static.
21077
21078 * lisp.h (circular_list_error, FOREACH): Remove; unused.
21079 * data.c (circular_list_error): Remove.
21080
21081 * commands.h (last_point_position, last_point_position_buffer):
21082 (last_point_position_window): Remove decls.
21083 * keyboard.c: Make these variables static.
21084
21085 * coding.h (coding, code_convert_region, encode_coding_gap):
21086 Remove decls.
21087 * coding.c (Vsjis_coding_system, Vbig5_coding_system):
21088 (iso_code_class, detect_coding, code_convert_region): Now static.
21089 (encode_coding_gap): Remove; unused.
21090
21091 * chartab.c (chartab_chars, chartab_bits): Now static.
21092
21093 * charset.h (charset_iso_8859_1): Remove decl.
21094 * charset.c (charset_iso_8859_1, charset_emacs, map_charset_for_dump):
21095 Now static.
21096
21097 * ccl.h (check_ccl_update, Vccl_program_table): Remove decls.
21098 * ccl.c (Vccl_program_table): Now static.
21099 (check_ccl_update): Remove; unused.
21100
21101 * category.c (SET_CATEGORY_SET, set_category_set): Move here.
21102 * category.h: ... from here.
21103 * category.c (check_category_table, set_category_set): Now static.
21104
21105 * casetab.c (Vascii_upcase_table, Vascii_eqv_table): Now static.
21106 * lisp.h: Remove these decls.
21107
21108 * buffer.c (buffer_count): Remove unused var.
21109
21110 * bidi.c (bidi_dump_cached_states): Mark as externally visible,
21111 so that it's not optimized away.
21112 (bidi_ignore_explicit_marks_for_paragraph_level): Likewise.
21113 * dispextern.h (bidi_dump_cached_states): Remove, since it's
21114 exported only to the debugger.
21115
21116 * atimer.c (alarm_signal_handler, run_all_atimers): Now static.
21117 * atimer.h (run_all_atimers): Remove; not exported.
21118
21119 font.c: Make copy_font_spec and merge_font_spec ordinary C functions.
21120 * font.c (copy_font_spec): Rename from Fcopy_font_spec, since it
21121 was inaccessible from Lisp.
21122 (merge_font_spec): Likewise, renaming from Fmerge_font_spec.
21123 * font.c, font.h, fontset.c, xfaces.c, xfont.c: Change all uses.
21124
21125 alloc.c: Import and export fewer symbols, and remove unused items.
21126 * lisp.h (suppress_checking, die): Declare only if ENABLE_CHECKING
21127 is defined.
21128 (suppress_checking): Add EXTERNALLY_VISIBLE attribute, so that
21129 it's not optimized away by whole-program optimization.
21130 (message_enable_multibyte, free_misc): Remove.
21131 (catchlist, handlerlist, mark_backtrace):
21132 Declare only if BYTE_MARK_STACK.
21133 (mark_byte_stack): Likewise, fixing a ifdef-vs-if typo.
21134 * alloc.c (pure): Export only if VIRT_ADDR_VARIES is defined.
21135 (message_enable_multibyte): Remove decl.
21136 (free_misc, interval_free_list, float_block, float_block_index):
21137 (n_float_blocks, float_free_list, cons_block, cons_block_index):
21138 (cons_free_list, last_marked_index):
21139 Now static.
21140 (suppress_checking, die): Define only if ENABLE_CHECKING is defined.
21141 * eval.c (catchlist, handlerlist): Export only if BYTE_MARK_STACK.
21142 (mark_backtrace): Define only if BYTE_MARK_STACK.
21143 * xdisp.c (message_enable_multibyte): Now static.
21144
21145 Declare Lisp_Object Q* variables to be 'static' if not exported.
21146 This makes it easier for human readers (and static analyzers)
21147 to see whether these variables are used from other modules.
21148 * alloc.c, buffer.c, bytecode.c, callint.c, casetab.c, category.c:
21149 * ccl.c, character.c, charset.c, cmds.c, coding.c, composite.c:
21150 * data.c, dbusbind.c, dired.c, editfns.c, eval.c, fileio.c, fns.c:
21151 * font.c, frame.c, fringe.c, ftfont.c, image.c, keyboard.c, keymap.c:
21152 * lread.c, macros.c, minibuf.c, print.c, process.c, search.c:
21153 * sound.c, syntax.c, textprop.c, window.c, xdisp.c, xfaces.c, xfns.c:
21154 * xmenu.c, xselect.c:
21155 Declare Q* vars static if they are not used in other modules.
21156 * ccl.h, character.h, charset.h, coding.h, composite.h, font.h:
21157 * frame.h, intervals.h, keyboard.h, lisp.h, process.h, syntax.h:
21158 Remove decls of unexported vars.
21159 * keyboard.h (EVENT_HEAD_UNMODIFIED): Remove now-unused macro.
21160
21161 * lisp.h (DEFINE_FUNC): Make sname 'static'.
21162
21163 Make Emacs functions such as Fatom 'static' by default.
21164 This makes it easier for human readers (and static analyzers)
21165 to see whether these functions can be called from other modules.
21166 DEFUN now defines a static function. To make the function external
21167 so that it can be used in other C modules, use the new macro DEFUE.
21168 * lisp.h (Funibyte_char_to_multibyte, Fsyntax_table_p):
21169 (Finit_image_library):
21170 (Feval_region, Fbacktrace, Ffetch_bytecode, Fswitch_to_buffer):
21171 (Ffile_executable_p, Fmake_symbolic_link, Fcommand_execute):
21172 (Fget_process, Fdocumentation_property, Fbyte_code, Ffile_attributes):
21173 Remove decls, since these functions are now static.
21174 (Funintern, Fget_internal_run_time): New decls, since these functions
21175 were already external.
21176
21177 * alloc.c, buffer.c, callint.c, callproc.c, casefiddle.c, casetab.c:
21178 * ccl.c, character.c, chartab.c, cmds.c, coding.c, data.c, dispnew.c:
21179 * doc.c, editfns.c, emacs.c, eval.c, fileio.c, filelock.c, floatfns.c:
21180 * fns.c, font.c, fontset.c, frame.c, image.c, indent.c:
21181 * keyboard.c, keymap.c, lread.c:
21182 * macros.c, marker.c, menu.c, minibuf.c, print.c, process.c, search.c:
21183 * syntax.c, term.c, terminal.c, textprop.c, undo.c:
21184 * window.c, xdisp.c, xfaces.c, xfns.c, xmenu.c, xsettings.c:
21185 Mark functions with DEFUE instead of DEFUN,
21186 if they are used in other modules.
21187 * buffer.c (Fset_buffer_major_mode, Fdelete_overlay): New forward
21188 decls for now-static functions.
21189 * buffer.h (Fdelete_overlay): Remove decl.
21190 * callproc.c (Fgetenv_internal): Mark as internal.
21191 * composite.c (Fremove_list_of_text_properties): Remove decl.
21192 (Fcomposition_get_gstring): New forward static decl.
21193 * composite.h (Fcomposite_get_gstring): Remove decl.
21194 * dired.c (Ffile_attributes): New forward static decl.
21195 * doc.c (Fdocumntation_property): New forward static decl.
21196 * eval.c (Ffetch_bytecode): New forward static decl.
21197 (Funintern): Remove extern decl; now in .h file where it belongs.
21198 * fileio.c (Fmake_symbolic_link): New forward static decl.
21199 * image.c (Finit_image_library): New forward static decl.
21200 * insdel.c (Fcombine_after_change_execute): Make forward decl static.
21201 * intervals.h (Fprevious_property_change):
21202 (Fremove_list_of_text_properties): Remove decls.
21203 * keyboard.c (Fthis_command_keys): Remove decl.
21204 (Fcommand_execute): New forward static decl.
21205 * keymap.c (Flookup_key): New forward static decl.
21206 (Fcopy_keymap): Now static.
21207 * keymap.h (Flookup_key): Remove decl.
21208 * process.c (Fget_process): New forward static decl.
21209 (Fprocess_datagram_address): Mark as internal.
21210 * syntax.c (Fsyntax_table_p): New forward static decl.
21211 (skip_chars): Remove duplicate decl.
21212 * textprop.c (Fprevious_property_change): New forward static decl.
21213 * window.c (Fset_window_fringes, Fset_window_scroll_bars):
21214 Now internal.
21215 (Fset_window_margins, Fset_window_vscroll): New forward static decls.
21216 * window.h (Fset_window_vscroll, Fset_window_margins): Remove decls.
21217
21218 * editfns.c (Fformat): Remove unreachable code.
21219
21220 2011-04-14 Andreas Schwab <schwab@linux-m68k.org>
21221
21222 * fileio.c (Finsert_file_contents): Fix typo in 2005-05-13
21223 change. (Bug#8496)
21224
21225 2011-04-13 Eli Zaretskii <eliz@gnu.org>
21226
21227 * xdisp.c (handle_invisible_prop): Don't call bidi_paragraph_init
21228 when at ZV. (Bug#8487)
21229
21230 2011-04-12 Andreas Schwab <schwab@linux-m68k.org>
21231
21232 * charset.c (Fclear_charset_maps): Use xfree instead of free.
21233 (Bug#8437)
21234 * keyboard.c (parse_tool_bar_item): Likewise.
21235 * sound.c (sound_cleanup, alsa_close): Likewise.
21236 * termcap.c (tgetent): Likewise.
21237 * xfns.c (x_default_font_parameter): Likewise.
21238 * xsettings.c (read_and_apply_settings): Likewise.
21239
21240 * alloc.c (overrun_check_malloc, overrun_check_realloc)
21241 (overrun_check_free): Protoize.
21242
21243 2011-04-12 Paul Eggert <eggert@cs.ucla.edu>
21244
21245 * sysdep.c (emacs_read, emacs_write): Check for negative sizes
21246 since callers should never pass a negative size.
21247 Change the signature to match that of plain 'read' and 'write'; see
21248 <http://lists.gnu.org/archive/html/emacs-devel/2011-04/msg00397.html>.
21249 * lisp.h: Update prototypes of emacs_write and emacs_read.
21250
21251 2011-04-11 Eli Zaretskii <eliz@gnu.org>
21252
21253 * xdisp.c (redisplay_window): Don't try to determine the character
21254 position of the scroll margin if the window start point w->startp
21255 is outside the buffer's accessible region. (Bug#8468)
21256
21257 2011-04-10 Eli Zaretskii <eliz@gnu.org>
21258
21259 Fix write-region and its subroutines for buffers > 2GB.
21260 * fileio.c (a_write, e_write): Modify declaration of arguments and
21261 local variables to support buffers larger than 2GB.
21262 (Fcopy_file): Use EMACS_INT for return value of emacs_read.
21263
21264 * sysdep.c (emacs_write, emacs_read): Use ssize_t for last
21265 argument, local variables, and return value.
21266
21267 * lisp.h: Update prototypes of emacs_write and emacs_read.
21268
21269 * sound.c (vox_write): Use ssize_t for return value of emacs_write.
21270
21271 2011-04-10 Paul Eggert <eggert@cs.ucla.edu>
21272
21273 * xdisp.c (vmessage): Use memchr, not strnlen, which some hosts lack.
21274
21275 Fix more problems found by GCC 4.6.0's static checks.
21276
21277 * xdisp.c (vmessage): Use a better test for character truncation.
21278
21279 * charset.c (load_charset_map): <, not <=, for optimization,
21280 and to avoid potential problems with integer overflow.
21281 * chartab.c (sub_char_table_set_range, char_table_set_range): Likewise.
21282 * casetab.c (set_identity, shuffle): Likewise.
21283 * editfns.c (Fformat): Likewise.
21284 * syntax.c (skip_chars): Likewise.
21285
21286 * xmenu.c (set_frame_menubar): Allocate smaller local vectors.
21287 This also lets GCC 4.6.0 generate slightly better loop code.
21288
21289 * callint.c (Fcall_interactively): <, not <=, for optimization.
21290 (Fcall_interactively): Count the number of arguments produced,
21291 not the number of arguments given. This is simpler and lets GCC
21292 4.6.0 generate slightly better code.
21293
21294 * ftfont.c: Distingish more carefully between FcChar8 and char.
21295 The previous code passed unsigned char * to a functions like
21296 strlen and xstrcasecmp that expect char *, which does not
21297 conform to the C standard.
21298 (get_adstyle_property, ftfont_pattern_entity): Use FcChar8 for
21299 arguments to FcPatternGetString, and explicitly cast FcChar8 * to
21300 char * when the C standard requires it.
21301
21302 * keyboard.c (read_char): Remove unused var.
21303
21304 * eval.c: Port to Windows vsnprintf (Bug#8435).
21305 Include <limits.h>.
21306 (SIZE_MAX): Define if the headers do not.
21307 (verror): Do not give up if vsnprintf returns a negative count.
21308 Instead, grow the buffer. This ports to Windows vsnprintf, which
21309 does not conform to C99. Problem reported by Eli Zaretskii.
21310 Also, simplify the allocation scheme, by avoiding the need for
21311 calling realloc, and removing the ALLOCATED variable.
21312
21313 * eval.c (verror): Initial buffer size is 4000 (not 200) bytes.
21314
21315 Remove invocations of doprnt, as Emacs now uses vsnprintf.
21316 But keep the doprint source code for now, as we might revamp it
21317 and use it again (Bug#8435).
21318 * lisp.h (doprnt): Remove.
21319 * Makefile.in (base_obj): Remove doprnt.o.
21320 * deps.mk (doprnt.o): Remove.
21321
21322 error: Print 32- and 64-bit integers portably (Bug#8435).
21323 Without this change, on typical 64-bit hosts error ("...%d...", N)
21324 was used to print both 32- and 64-bit integers N, which relied on
21325 undefined behavior.
21326 * lisp.h, m/amdx86-64.h, m/ia64.h, m/ibms390x.h (pEd): New macro.
21327 * lisp.h (error, verror): Mark as printf-like functions.
21328 * eval.c (verror): Use vsnprintf, not doprnt, to do the real work.
21329 Report overflow in size calculations when allocating printf buffer.
21330 Do not truncate output string at its first null byte.
21331 * xdisp.c (vmessage): Use vsnprintf, not doprnt, to do the real work.
21332 Truncate the output at a character boundary, since vsnprintf does not
21333 do that.
21334 * charset.c (check_iso_charset_parameter): Convert internal
21335 character to string before calling 'error', since %c now has the
21336 printf meaning.
21337 * coding.c (Fdecode_sjis_char, Fdecode_big5_char): Avoid int
21338 overflow when computing char to be passed to 'error'. Do not
21339 pass Lisp_Object to 'error'; pass the integer instead.
21340 * nsfns.m (Fns_do_applescript): Use int, not long, since it's
21341 formatted with plain %d.
21342
21343 * eval.c (internal_lisp_condition_case): Don't pass spurious arg.
21344
21345 * keyboard.c (access_keymap_keyremap): Print func name, not garbage.
21346
21347 * coding.c (Fdecode_sjis_char): Don't assume CODE fits in int.
21348
21349 * xterm.c (x_catch_errors): Remove duplicate declaration.
21350
21351 * term.c (maybe_fatal): Mark its 3rd arg as a printf format, too.
21352
21353 * xdisp.c, lisp.h (message_nolog): Remove; unused.
21354
21355 2011-04-10 Jim Meyering <meyering@redhat.com>
21356
21357 use ssize_t and size_t for read- and write-like emacs_gnutls_* functions
21358 * gnutls.c (emacs_gnutls_read): Adjust signature to be more read-like:
21359 return ssize_t not "int", and use size_t as the buffer length.
21360 (emacs_gnutls_write): Likewise, and make the buffer pointer "const".
21361 * gnutls.h: Update declarations.
21362 * process.c (read_process_output): Use ssize_t, to match.
21363 (send_process): Likewise.
21364
21365 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21366
21367 * image.c (Fimagemagick_types): Doc fix, and comment cleanup.
21368
21369 2011-04-09 Chong Yidong <cyd@stupidchicken.com>
21370
21371 * ftfont.c (get_adstyle_property, ftfont_pattern_entity):
21372 Use unsigned char, to match FcChar8 type definition.
21373
21374 * xterm.c (handle_one_xevent):
21375 * xmenu.c (create_and_show_popup_menu):
21376 * xselect.c (x_decline_selection_request)
21377 (x_reply_selection_request): Avoid type-punned deref of X events.
21378
21379 2011-04-09 Eli Zaretskii <eliz@gnu.org>
21380
21381 Fix some uses of `int' instead of EMACS_INT.
21382 * search.c (string_match_1, fast_string_match)
21383 (fast_c_string_match_ignore_case, fast_string_match_ignore_case)
21384 (scan_buffer, find_next_newline_no_quit)
21385 (find_before_next_newline, search_command, Freplace_match)
21386 (Fmatch_data): Make some `int' variables be EMACS_INT.
21387
21388 * xdisp.c (display_count_lines): 3rd argument and return value now
21389 EMACS_INT. All callers changed.
21390 (pint2hrstr): Last argument is now EMACS_INT.
21391
21392 * coding.c (detect_coding_utf_8, detect_coding_emacs_mule)
21393 (detect_coding_iso_2022, detect_coding_sjis, detect_coding_big5)
21394 (detect_coding_ccl, detect_coding_charset, decode_coding_utf_8)
21395 (decode_coding_utf_16, decode_coding_emacs_mule)
21396 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5)
21397 (decode_coding_ccl, decode_coding_charset)
21398 <consumed_chars, consumed_chars_base>: Declare EMACS_INT.
21399 (decode_coding_iso_2022, decode_coding_emacs_mule)
21400 (decode_coding_sjis, decode_coding_big5, decode_coding_charset)
21401 <char_offset, last_offset>: Declare EMACS_INT.
21402 (encode_coding_utf_8, encode_coding_utf_16)
21403 (encode_coding_emacs_mule, encode_invocation_designation)
21404 (encode_designation_at_bol, encode_coding_iso_2022)
21405 (encode_coding_sjis, encode_coding_big5, encode_coding_ccl)
21406 (encode_coding_raw_text, encode_coding_charset) <produced_chars>:
21407 Declare EMACS_INT.
21408 (ASSURE_DESTINATION): Declare more_bytes EMACS_INT.
21409 (encode_invocation_designation): Last argument P_NCHARS is now
21410 EMACS_INT.
21411 (decode_eol): Declare pos_byte, pos, and pos_end EMACS_INT.
21412 (produce_chars): from_nchars and to_nchars are now EMACS_INT.
21413
21414 * coding.h (struct coding_system) <head_ascii>: Declare EMACS_INT.
21415 All users changed.
21416
21417 * ccl.c (Fccl_execute_on_string): Declare some variables
21418 EMACS_INT.
21419
21420 2011-04-08 Samuel Thibault <sthibault@debian.org> (tiny change)
21421
21422 * term.c (init_tty): Fix incorrect ifdef placement (Bug#8450).
21423
21424 2011-03-19 Christoph Scholtes <cschol2112@googlemail.com>
21425
21426 * process.c (Fformat_network_address): Doc fix.
21427
21428 2011-04-08 T.V. Raman <tv.raman.tv@gmail.com> (tiny change)
21429
21430 * xml.c (parse_region): Avoid creating spurious whitespace nodes.
21431
21432 2011-04-08 Chong Yidong <cyd@stupidchicken.com>
21433
21434 * keyboard.c (read_char): Call Lisp function help-form-show,
21435 instead of using internal_with_output_to_temp_buffer.
21436 (Qhelp_form_show): New var.
21437 (syms_of_keyboard): Use DEFSYM macro.
21438
21439 * print.c (internal_with_output_to_temp_buffer): Function deleted.
21440
21441 * lisp.h (internal_with_output_to_temp_buffer): Remove prototype.
21442
21443 2011-04-06 Chong Yidong <cyd@stupidchicken.com>
21444
21445 * process.c (Flist_processes): Remove to Lisp.
21446 (list_processes_1): Delete.
21447
21448 2011-04-06 Eli Zaretskii <eliz@gnu.org>
21449
21450 * msdos.c (careadlinkat, careadlinkatcwd): MS-DOS replacements.
21451
21452 * w32.c (careadlinkat, careadlinkatcwd): New always-fail stubs.
21453
21454 2011-04-06 Paul Eggert <eggert@cs.ucla.edu>
21455
21456 Fix more problems found by GCC 4.6.0's static checks.
21457
21458 * xmenu.c (Fx_popup_dialog): Don't assume string is free of formats.
21459
21460 * menu.c (Fx_popup_menu): Don't assume error_name lacks printf formats.
21461
21462 * lisp.h (message, message_nolog, fatal): Mark as printf-like.
21463
21464 * xdisp.c (vmessage): Mark as a printf-like function.
21465
21466 * term.c (vfatal, maybe_fatal): Mark as printf-like functions.
21467
21468 * sound.c (sound_warning): Don't crash if arg contains a printf format.
21469
21470 * image.c (tiff_error_handler, tiff_warning_handler): Mark as
21471 printf-like functions.
21472 (tiff_load): Add casts to remove these marks before passing them
21473 to system-supplied API.
21474
21475 * eval.c (Fsignal): Remove excess argument to 'fatal'.
21476
21477 * coding.c (EMIT_ONE_BYTE, EMIT_TWO_BYTES): Use unsigned, not int.
21478 This avoids several warnings with gcc -Wstrict-overflow.
21479 (DECODE_COMPOSITION_RULE): If the rule is invalid, goto invalid_code
21480 directly, rather than having caller test rule sign. This avoids
21481 some unnecessary tests.
21482 * composite.h (COMPOSITION_ENCODE_RULE_VALID): New macro.
21483 (COMPOSITION_ENCODE_RULE): Arguments now must be valid. This
21484 affects only one use, in DECODE_COMPOSITION_RULE, which is changed.
21485
21486 * xfont.c (xfont_text_extents): Remove var that was set but not used.
21487 (xfont_open): Avoid unnecessary tests.
21488
21489 * composite.c (composition_gstring_put_cache): Use unsigned integer.
21490
21491 * composite.h, composite.c (composition_gstring_put_cache):
21492 Use EMACS_INT, not int, for length.
21493
21494 * composite.h (COMPOSITION_DECODE_REFS): New macro,
21495 breaking out part of COMPOSITION_DECODE_RULE.
21496 (COMPOSITION_DECODE_RULE): Use it.
21497 * composite.c (get_composition_id): Remove unused local vars,
21498 by using the new macro.
21499
21500 * textprop.c (set_text_properties_1): Change while to do-while,
21501 since the condition is always true at first.
21502
21503 * intervals.c (graft_intervals_into_buffer): Mark var as used.
21504 (interval_deletion_adjustment): Return unsigned value.
21505 All uses changed.
21506
21507 * process.c (list_processes_1, create_pty, read_process_output):
21508 (exec_sentinel): Remove vars that were set but not used.
21509 (create_pty): Remove unnecessary "volatile"s.
21510 (Fnetwork_interface_info): Avoid possibility of int overflow.
21511 (read_process_output): Do adaptive read buffering even if carryover.
21512 (read_process_output): Simplify nbytes computation if buffered.
21513
21514 * bytecode.c (exec_byte_code): Rename local to avoid shadowing.
21515
21516 * syntax.c (scan_words): Remove var that was set but not used.
21517 (update_syntax_table): Use unsigned instead of int.
21518
21519 * lread.c (lisp_file_lexically_bound_p): Use ints rather than endptrs.
21520 (lisp_file_lexically_bound_p, read1): Use unsigned instead of int.
21521 (safe_to_load_p): Make the end-of-loop test the inverse of the in-loop.
21522
21523 * print.c (print_error_message): Avoid int overflow.
21524
21525 * font.c (font_list_entities): Redo for clarity,
21526 so that reader need not know FONT_DPI_INDEX + 1 == FONT_SPACING_INDEX.
21527
21528 * font.c (font_find_for_lface, Ffont_get_glyphs): Remove unused vars.
21529 (font_score): Avoid potential overflow in diff calculation.
21530
21531 * fns.c (substring_both): Remove var that is set but not used.
21532 (sxhash): Redo loop for clarity and to avoid wraparound warning.
21533
21534 * eval.c (funcall_lambda): Rename local to avoid shadowing.
21535
21536 * alloc.c (mark_object_loop_halt, mark_object): Use size_t, not int.
21537 Otherwise, GCC 4.6.0 optimizes the loop check away since the check
21538 can always succeed if overflow has undefined behavior.
21539
21540 * search.c (boyer_moore, wordify): Remove vars set but not used.
21541 (wordify): Omit three unnecessary tests.
21542
21543 * indent.c (MULTIBYTE_BYTES_WIDTH): Don't compute wide_column.
21544 All callers changed. This avoids the need for an unused var.
21545
21546 * casefiddle.c (casify_region): Remove var that is set but not used.
21547
21548 * dired.c (file_name_completion): Remove var that is set but not used.
21549
21550 * fileio.c (Finsert_file_contents): Make EOF condition clearer.
21551
21552 * fileio.c (Finsert_file_contents): Avoid signed integer overflow.
21553 (Finsert_file_contents): Remove unnecessary code checking fd.
21554
21555 * minibuf.c (read_minibuf_noninteractive): Use size_t for sizes.
21556 Check for integer overflow on size calculations.
21557
21558 * buffer.c (Fprevious_overlay_change): Remove var that is set
21559 but not used.
21560
21561 * keyboard.c (menu_bar_items, read_char_minibuf_menu_prompt):
21562 Remove vars that are set but not used.
21563 (timer_check_2): Don't assume timer-list and idle-timer-list are lists.
21564 (timer_check_2): Mark vars as initialized.
21565
21566 * gtkutil.c (xg_get_file_with_chooser): Mark var as initialized.
21567
21568 * image.c (lookup_image): Remove var that is set but not used.
21569 (xbm_load): Use parse_p, for gcc -Werror=unused-but-set-variable.
21570
21571 * fontset.c (Finternal_char_font, Ffontset_info): Remove vars
21572 that are set but not used.
21573
21574 * xfns.c (make_invisible_cursor): Don't return garbage
21575 if XCreateBitmapFromData fails (Bug#8410).
21576
21577 * xselect.c (x_get_local_selection, x_handle_property_notify):
21578 Remove vars that are set but not used.
21579
21580 * xfns.c (x_create_tip_frame): Remove var that is set but not used.
21581 (make_invisible_cursor): Initialize a possibly-uninitialized variable.
21582
21583 * xterm.c (x_scroll_bar_to_input_event) [!USE_GTK]:
21584 Remove var that is set but not used.
21585 (scroll_bar_windows_size): Now size_t, not int.
21586 (x_send_scroll_bar_event): Use size_t, not int, for sizes.
21587 Check for overflow.
21588
21589 * xfaces.c (realize_named_face): Remove vars that are set but not used.
21590 (map_tty_color) [!defined MSDOS]: Likewise.
21591
21592 * term.c (tty_write_glyphs): Use size_t; this avoids overflow warning.
21593
21594 * coding.c: Remove vars that are set but not used.
21595 (DECODE_COMPOSITION_RULE): Remove 2nd arg, which is unused.
21596 All callers changed.
21597 (decode_coding_utf_8, decode_coding_utf_16 decode_coding_emacs_mule):
21598 (decode_coding_iso_2022, encode_coding_sjis, encode_coding_big5):
21599 (decode_coding_charset): Remove vars that are set but not used.
21600
21601 * bytecode.c (Fbyte_code) [!defined BYTE_CODE_SAFE]: Remove var
21602 that is set but not used.
21603
21604 * print.c (print_object): Remove var that is set but not used.
21605
21606 Replace 2 copies of readlink code with 1 gnulib version (Bug#8401).
21607 The gnulib version avoids calling malloc in the usual case,
21608 and on 64-bit hosts doesn't have some arbitrary 32-bit limits.
21609 * fileio.c (Ffile_symlink_p): Use emacs_readlink.
21610 * filelock.c (current_lock_owner): Likewise.
21611 * lisp.h (READLINK_BUFSIZE, emacs_readlink): New function.
21612 * sysdep.c: Include allocator.h, careadlinkat.h.
21613 (emacs_no_realloc_allocator): New static constant.
21614 (emacs_readlink): New function.
21615 * deps.mk (sysdep.o): Depend on ../lib/allocator.h and on
21616 ../lib/careadlinkat.h.
21617
21618 2011-04-04 Stefan Monnier <monnier@iro.umontreal.ca>
21619
21620 * keyboard.c (safe_run_hook_funcall): Fix last change (don't stop at the
21621 first non-nil return value).
21622
21623 2011-04-03 Jan Djärv <jan.h.d@swipnet.se>
21624
21625 * nsterm.m (ns_update_auto_hide_menu_bar): Define MAC_OS_X_VERSION_10_6
21626 if not defined (Bug#8403).
21627
21628 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21629
21630 * xdisp.c (display_count_lines): Remove parameter `start',
21631 unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21632 (get_char_face_and_encoding): Remove parameter `multibyte_p',
21633 unused since 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21634 (fill_stretch_glyph_string): Remove parameters `row' and `area',
21635 unused at least since Kim's GUI unification at 2003-03-16T20:45:46Z!storm@cua.dk
21636 and thereabouts. All callers changed.
21637 (get_per_char_metric): Remove parameter `f', unused since
21638 2008-05-14T01:40:23Z!handa@m17n.org. All callers changed.
21639
21640 2011-04-02 Jim Meyering <meyering@redhat.com>
21641
21642 do not dereference NULL upon failed strdup
21643 * nsfont.m (ns_descriptor_to_entity): Use xstrdup, not strdup.
21644 (ns_get_family): Likewise.
21645
21646 2011-04-02 Juanma Barranquero <lekktu@gmail.com>
21647
21648 * eval.c (unwind_to_catch) [DEBUG_GCPRO]: Remove redundant assignment.
21649
21650 2011-04-02 Jan Djärv <jan.h.d@swipnet.se>
21651
21652 * nsterm.m (ns_update_auto_hide_menu_bar): Only for OSX 10.6 or
21653 later (Bug#8403).
21654
21655 2011-04-01 Stefan Monnier <monnier@iro.umontreal.ca>
21656
21657 Add lexical binding.
21658
21659 * window.c (Ftemp_output_buffer_show): New fun.
21660 (Fsave_window_excursion):
21661 * print.c (Fwith_output_to_temp_buffer): Move to subr.el.
21662
21663 * lread.c (lisp_file_lexically_bound_p): New function.
21664 (Fload): Bind Qlexical_binding.
21665 (readevalloop): Remove `evalfun' arg.
21666 Bind Qinternal_interpreter_environment.
21667 (Feval_buffer): Bind Qlexical_binding.
21668 (defvar_int, defvar_bool, defvar_lisp_nopro, defvar_kboard):
21669 Mark as dynamic.
21670 (syms_of_lread): Declare `lexical-binding'.
21671
21672 * lisp.h (struct Lisp_Symbol): New field `declared_special'.
21673
21674 * keyboard.c (eval_dyn): New fun.
21675 (menu_item_eval_property): Use it.
21676
21677 * image.c (parse_image_spec): Use Ffunctionp.
21678
21679 * fns.c (concat, mapcar1): Accept byte-code-functions.
21680
21681 * eval.c (Fsetq): Handle lexical vars.
21682 (Fdefun, Fdefmacro, Ffunction): Make closures when needed.
21683 (Fdefconst, Fdefvaralias, Fdefvar): Mark as dynamic.
21684 (FletX, Flet): Obey lexical binding.
21685 (Fcommandp): Handle closures.
21686 (Feval): New `lexical' arg.
21687 (eval_sub): New function extracted from Feval. Use it almost
21688 everywhere where Feval was used. Look up vars in lexical env.
21689 Handle closures.
21690 (Ffunctionp): Move from subr.el.
21691 (Ffuncall): Handle closures.
21692 (apply_lambda): Remove `eval_flags'.
21693 (funcall_lambda): Handle closures and new byte-code-functions.
21694 (Fspecial_variable_p): New function.
21695 (syms_of_eval): Initialize the Vinternal_interpreter_environment var,
21696 but without exporting it to Lisp.
21697
21698 * doc.c (Fdocumentation, store_function_docstring):
21699 * data.c (Finteractive_form): Handle closures.
21700
21701 * callint.c (Fcall_interactively): Preserve lexical-binding mode for
21702 interactive spec.
21703
21704 * bytecode.c (Bstack_ref, Bstack_set, Bstack_set2, BdiscardN):
21705 New byte-codes.
21706 (exec_byte_code): New function extracted from Fbyte_code to handle new
21707 calling convention for byte-code-functions. Add new byte-codes.
21708
21709 * buffer.c (defvar_per_buffer): Set new `declared_special' field.
21710
21711 * alloc.c (Fmake_symbol): Init new `declared_special' field.
21712
21713 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21714
21715 * xdisp.c (redisplay_internal): Fix prototype.
21716
21717 2011-03-31 Eli Zaretskii <eliz@gnu.org>
21718
21719 * xdisp.c (SCROLL_LIMIT): New macro.
21720 (try_scrolling): Use it when setting scroll_limit.
21721 Limit scrolling to 100 screen lines.
21722 (redisplay_window): Even when falling back on "recentering",
21723 position point in the window according to scroll-conservatively,
21724 scroll-margin, and scroll-*-aggressively variables. (Bug#6671)
21725
21726 (try_scrolling): When point is above the window, allow searching
21727 as far as scroll_max, or one screenful, to compute vertical
21728 distance from PT to the scroll margin position. This prevents
21729 try_scrolling from unnecessarily failing when
21730 scroll-conservatively is set to a value slightly larger than the
21731 window height. Clean up the case of PT below the margin at bottom
21732 of window: scroll_max can no longer be INT_MAX. When aggressive
21733 scrolling is in use, don't let point enter the opposite scroll
21734 margin as result of the scroll.
21735 (syms_of_xdisp) <scroll-conservatively>: Document the
21736 threshold of 100 lines for never-recentering scrolling.
21737
21738 2011-03-31 Juanma Barranquero <lekktu@gmail.com>
21739
21740 * dispextern.h (move_it_by_lines):
21741 * xdisp.c (move_it_by_lines): Remove parameter `need_y_p', unused
21742 since 2000-12-29T14:24:09Z!gerd@gnu.org. All callers changed.
21743 (message_log_check_duplicate): Remove parameters `prev_bol' and
21744 `this_bol', unused since 1998-01-01T02:27:27Z!rms@gnu.org. All callers changed.
21745 (redisplay_internal): Remove parameter `preserve_echo_area',
21746 unused since 1999-07-21T21:43:52Z!gerd@gnu.org. All callers changed.
21747
21748 * indent.c (Fvertical_motion):
21749 * window.c (window_scroll_pixel_based, Frecenter):
21750 Don't pass `need_y_p' to `move_it_by_lines'.
21751
21752 2011-03-30 Stefan Monnier <monnier@iro.umontreal.ca>
21753
21754 * eval.c (struct backtrace): Don't cheat with negative numbers, but do
21755 steal a few bits to be more compact.
21756 (interactive_p, Fbacktrace, Fbacktrace_frame, mark_backtrace):
21757 Remove unneeded casts.
21758
21759 * bytecode.c (Fbyte_code): CAR and CDR can GC.
21760
21761 2011-03-30 Zachary Kanfer <zkanfer@gmail.com> (tiny change)
21762
21763 * keyboard.c (Fexecute_extended_command): Do log the "suggest key
21764 binding" message (bug#7967).
21765
21766 2011-03-30 Paul Eggert <eggert@cs.ucla.edu>
21767
21768 Fix more problems found by GCC 4.6.0's static checks.
21769
21770 * unexelf.c (unexec) [! (defined _SYSTYPE_SYSV || defined __sgi)]:
21771 Remove unused local var.
21772
21773 * editfns.c (Fmessage_box): Remove unused local var.
21774
21775 * xdisp.c (try_window_reusing_current_matrix, x_produce_glyphs):
21776 (note_mode_line_or_margin_highlight, note_mouse_highlight):
21777 Omit unused local vars.
21778 * window.c (shrink_windows): Omit unused local var.
21779 * menu.c (digest_single_submenu): Omit unused local var.
21780 * dispnew.c (update_window) [PERIODIC_PREEMPTION_CHECKING]:
21781 Omit unused local var.
21782
21783 * keyboard.c (parse_modifiers_uncached, parse_modifiers):
21784 Don't assume string length fits in int.
21785 (keyremap_step, read_key_sequence): Use size_t for sizes.
21786 (read_key_sequence): Don't check last_real_key_start redundantly.
21787
21788 * callproc.c (Fcall_process, Fcall_process_region): Use SAFE_ALLOCA
21789 instead of alloca (Bug#8344).
21790
21791 * eval.c (Fbacktrace): Don't assume nargs fits in int.
21792 (Fbacktrace_frame): Don't assume nframes fits in int.
21793
21794 * syntax.c (scan_sexps_forward): Avoid pointer wraparound.
21795
21796 * xterm.c (x_make_frame_visible, same_x_server): Redo to avoid overflow
21797 concerns.
21798
21799 * term.c (produce_glyphless_glyph): Remove unnecessary test.
21800
21801 * cm.c (calccost): Turn while-do into do-while, for clarity.
21802
21803 * keyboard.c (syms_of_keyboard): Use the same style as later
21804 in this function when indexing through an array. This also
21805 works around GCC bug 48267.
21806
21807 * image.c (tiff_load): Fix off-by-one image count (Bug#8336).
21808
21809 * xselect.c (x_check_property_data): Return correct size (Bug#8335).
21810
21811 * chartab.c (sub_char_table_ref_and_range): Redo for slight
21812 efficiency gain, and to bypass a gcc -Wstrict-overflow warning.
21813
21814 * keyboard.c, keyboard.h (num_input_events): Now size_t.
21815 This avoids undefined behavior on integer overflow, and is a bit
21816 more convenient anyway since it is compared to a size_t variable.
21817
21818 Variadic C functions now count arguments with size_t, not int.
21819 This avoids an unnecessary limitation on 64-bit machines, which
21820 caused (substring ...) to crash on large vectors (Bug#8344).
21821 * lisp.h (struct Lisp_Subr.function.aMANY): Now takes size_t, not int.
21822 (DEFUN_ARGS_MANY, internal_condition_case_n, safe_call): Likewise.
21823 All variadic functions and their callers changed accordingly.
21824 (struct gcpro.nvars): Now size_t, not int. All uses changed.
21825 * data.c (arith_driver, float_arith_driver): Likewise.
21826 * editfns.c (general_insert_function): Likewise.
21827 * eval.c (struct backtrace.nargs, interactive_p)
21828 (internal_condition_case_n, run_hook_with_args, apply_lambda)
21829 (funcall_lambda, mark_backtrace): Likewise.
21830 * fns.c (concat): Likewise.
21831 * frame.c (x_set_frame_parameters): Likewise.
21832 * fns.c (get_key_arg): Now accepts and returns size_t, and returns
21833 0 if not found, not -1. All callers changed.
21834
21835 * alloc.c (garbage_collect): Don't assume stack size fits in int.
21836 (stack_copy_size): Now size_t, not int.
21837 (stack_copy, stack_copy_size): Define only if MAX_SAVE_STACK > 0.
21838
21839 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21840
21841 * coding.c (encode_designation_at_bol): Remove parameter `charbuf_end',
21842 unused since 2002-03-01T01:17:24Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21843 All callers changed.
21844
21845 * lisp.h (multibyte_char_to_unibyte):
21846 * character.c (multibyte_char_to_unibyte): Remove parameter `rev_tbl',
21847 unused since 2002-03-01T01:16:34Z!handa@m17n.org and 2008-02-01T16:01:31Z!miles@gnu.org.
21848 * character.h (CHAR_TO_BYTE8):
21849 * cmds.c (internal_self_insert):
21850 * editfns.c (general_insert_function):
21851 * keymap.c (push_key_description):
21852 * search.c (Freplace_match):
21853 * xdisp.c (message_dolog, set_message_1): All callers changed.
21854
21855 2011-03-28 Stefan Monnier <monnier@iro.umontreal.ca>
21856
21857 * keyboard.c (safe_run_hook_funcall): New function.
21858 (safe_run_hooks_1, safe_run_hooks_error, safe_run_hooks): On error,
21859 don't set the hook to nil, but remove the offending function instead.
21860 (Qcommand_hook_internal): Remove, unused.
21861 (syms_of_keyboard): Don't initialize Qcommand_hook_internal nor define
21862 Vcommand_hook_internal.
21863
21864 * eval.c (enum run_hooks_condition): Remove.
21865 (funcall_nil, funcall_not): New functions.
21866 (run_hook_with_args): Call each function through a `funcall' argument.
21867 Remove `cond' argument, now redundant.
21868 (Frun_hooks, Frun_hook_with_args, Frun_hook_with_args_until_success)
21869 (Frun_hook_with_args_until_failure): Adjust accordingly.
21870 (run_hook_wrapped_funcall, Frun_hook_wrapped): New functions.
21871
21872 2011-03-28 Juanma Barranquero <lekktu@gmail.com>
21873
21874 * dispextern.h (string_buffer_position): Remove declaration.
21875
21876 * print.c (strout): Remove parameter `multibyte', unused since
21877 1999-08-21T19:30:21Z!gerd@gnu.org. All callers changed.
21878
21879 * search.c (boyer_moore): Remove parameters `len', `pos' and `lim',
21880 never used since function introduction in 1998-02-08T21:33:56Z!rms@gnu.org.
21881 All callers changed.
21882
21883 * w32.c (_wsa_errlist): Use braces for struct initializers.
21884
21885 * xdisp.c (string_buffer_position_lim): Remove parameter `w',
21886 never used since function introduction in 2001-03-09T18:41:50Z!gerd@gnu.org.
21887 All callers changed.
21888 (string_buffer_position): Likewise. Also, make static (it's never
21889 used outside xdisp.c).
21890 (cursor_row_p): Remove parameter `w', unused since
21891 2000-10-17T16:08:57Z!gerd@gnu.org. All callers changed.
21892 (decode_mode_spec): Remove parameter `precision', introduced during
21893 Gerd Moellmann's rewrite at 1999-07-21T21:43:52Z!gerd@gnu.org, but never used.
21894 All callers changed.
21895
21896 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21897
21898 * nsterm.m (syms_of_nsterm): Use doc: for ns-auto-hide-menu-bar.
21899
21900 2011-03-27 Anders Lindgren <andlind@gmail.com>
21901
21902 * nsterm.m (ns_menu_bar_is_hidden): New variable.
21903 (ns_constrain_all_frames, ns_menu_bar_should_be_hidden)
21904 (ns_update_auto_hide_menu_bar): New functions.
21905 (ns_update_begin): Call ns_update_auto_hide_menu_bar.
21906 (applicationDidBecomeActive): Call ns_update_auto_hide_menu_bar and
21907 ns_constrain_all_frames.
21908 (constrainFrameRect): Return at once if ns_menu_bar_should_be_hidden.
21909 (syms_of_nsterm): DEFVAR ns-auto-hide-menu-bar, init to Qnil.
21910
21911 2011-03-27 Jan Djärv <jan.h.d@swipnet.se>
21912
21913 * nsmenu.m (runDialogAt): Remove argument to timer_check.
21914
21915 2011-03-27 Glenn Morris <rgm@gnu.org>
21916
21917 * syssignal.h: Replace RETSIGTYPE with void.
21918 * atimer.c, data.c, dispnew.c, emacs.c, floatfns.c, keyboard.c:
21919 * keyboard.h, lisp.h, process.c, sysdep.c, xterm.c:
21920 Replace SIGTYPE with void everywhere.
21921 * s/usg5-4-common.h (SIGTYPE): Remove definition.
21922 * s/template.h (SIGTYPE): Remove commented out definition.
21923
21924 2011-03-26 Eli Zaretskii <eliz@gnu.org>
21925
21926 * xdisp.c (redisplay_window): Don't check buffer's clip_changed
21927 flag as a prerequisite for invoking try_scrolling. (Bug#6671)
21928
21929 2011-03-26 Juanma Barranquero <lekktu@gmail.com>
21930
21931 * w32.c (read_unc_volume): Use parameter `henum', instead of
21932 global variable `wget_enum_handle'.
21933
21934 * keymap.c (describe_vector): Remove parameters `indices' and
21935 `char_table_depth', unused since 2002-03-01T01:43:26Z!handa@m17n.org.
21936 (describe_map, Fdescribe_vector): Adjust calls to `describe_vector'.
21937
21938 * keyboard.h (timer_check, show_help_echo): Remove unused parameters.
21939
21940 * keyboard.c (timer_check): Remove parameter `do_it_now',
21941 unused since 1996-04-12T06:01:29Z!rms@gnu.org.
21942 (show_help_echo): Remove parameter `ok_to_overwrite_keystroke_echo',
21943 unused since 2008-04-19T19:30:53Z!monnier@iro.umontreal.ca.
21944
21945 * keyboard.c (read_char):
21946 * w32menu.c (w32_menu_display_help):
21947 * xmenu.c (show_help_event, menu_help_callback):
21948 Adjust calls to `show_help_echo'.
21949
21950 * gtkutil.c (xg_maybe_add_timer):
21951 * keyboard.c (readable_events):
21952 * process.c (wait_reading_process_output):
21953 * xmenu.c (x_menu_wait_for_event): Adjust calls to `timer_check'.
21954
21955 * insdel.c (adjust_markers_gap_motion):
21956 Remove; no-op since 1998-01-02T21:29:48Z!rms@gnu.org.
21957 (gap_left, gap_right): Don't call it.
21958
21959 2011-03-25 Chong Yidong <cyd@stupidchicken.com>
21960
21961 * xdisp.c (handle_fontified_prop): Discard changes to clip_changed
21962 incurred during fontification.
21963
21964 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21965
21966 * buffer.c (defvar_per_buffer): Remove unused parameter `doc'.
21967 (DEFVAR_PER_BUFFER): Don't pass it.
21968
21969 * dispnew.c (row_equal_p, add_row_entry): Remove unused parameter `w'.
21970 (scrolling_window): Don't pass it.
21971
21972 2011-03-25 Juanma Barranquero <lekktu@gmail.com>
21973
21974 * dispextern.h (glyph_matric): Use #if GLYPH_DEBUG, not #ifdef.
21975
21976 * fileio.c (check_executable) [DOS_NT]: Remove unused variables `len'
21977 and `suffix'.
21978 (Fset_file_selinux_context) [HAVE_LIBSELINUX]: Move here declaration
21979 of variables specific to SELinux and computation of `encoded_absname'.
21980
21981 * image.c (XPutPixel): Remove unused variable `height'.
21982
21983 * keyboard.c (make_lispy_event): Remove unused variable `hpos'.
21984
21985 * unexw32.c (get_section_info): Remove unused variable `section'.
21986
21987 * w32.c (stat): Remove unused variables `drive_root' and `devtype'.
21988 (system_process_attributes): Remove unused variable `sess'.
21989 (sys_read): Remove unused variable `err'.
21990
21991 * w32fns.c (top): Wrap variables with #if GLYPH_DEBUG, not #ifdef.
21992 (w32_wnd_proc): Remove unused variable `isdead'.
21993 (unwind_create_frame): Use #if GLYPH_DEBUG, not #ifdef.
21994 (Fx_server_max_request_size): Remove unused variable `dpyinfo'.
21995 (x_create_tip_frame): Remove unused variable `tem'.
21996
21997 * w32inevt.c (w32_console_read_socket):
21998 Remove unused variable `no_events'.
21999
22000 * w32term.c (x_draw_composite_glyph_string_foreground):
22001 Remove unused variable `width'.
22002
22003 2011-03-24 Juanma Barranquero <lekktu@gmail.com>
22004
22005 * w32term.c (x_set_glyph_string_clipping):
22006 Don't pass uninitialized region to CombineRgn.
22007
22008 2011-03-23 Juanma Barranquero <lekktu@gmail.com>
22009
22010 * w32fns.c (x_set_menu_bar_lines): Remove unused variable `olines'.
22011 (w32_wnd_proc): Pass NULL to Windows API, not uninitialized buffer.
22012 (Fx_close_connection): Remove unused variable `i'.
22013
22014 * w32font.c (w32font_draw): Return number of glyphs.
22015 (w32font_open_internal): Remove unused variable `i'.
22016 (w32font_driver): Add missing initializer.
22017
22018 * w32menu.c (utf8to16): Remove unused variable `utf16'.
22019 (fill_in_menu): Remove unused variable `items_added'.
22020
22021 * w32term.c (last_mouse_press_frame): Remove static global variable.
22022 (w32_clip_to_row): Remove unused variable `f'.
22023 (x_delete_terminal): Remove unused variable `i'.
22024
22025 * w32uniscribe.c (uniscribe_shape): Remove unused variable `nclusters'.
22026 (NOTHING): Remove unused static global variable.
22027 (uniscribe_check_otf): Remove unused variable `table'.
22028 (uniscribe_font_driver): Add missing initializers.
22029
22030 2011-03-23 Julien Danjou <julien@danjou.info>
22031
22032 * term.c (Fsuspend_tty, Fresume_tty):
22033 * minibuf.c (read_minibuf, run_exit_minibuf_hook):
22034 * window.c (temp_output_buffer_show):
22035 * insdel.c (signal_before_change):
22036 * frame.c (Fhandle_switch_frame):
22037 * fileio.c (Fdo_auto_save):
22038 * emacs.c (Fkill_emacs):
22039 * editfns.c (save_excursion_restore):
22040 * cmds.c (internal_self_insert):
22041 * callint.c (Fcall_interactively):
22042 * buffer.c (Fkill_all_local_variables):
22043 * keyboard.c (Fcommand_execute, Fsuspend_emacs, safe_run_hooks_1):
22044 Use Frun_hooks.
22045 (command_loop_1): Use Frun_hooks. Call safe_run_hooks
22046 unconditionally since it does the check itself.
22047
22048 2011-03-23 Paul Eggert <eggert@cs.ucla.edu>
22049
22050 Fix more problems found by GCC 4.5.2's static checks.
22051
22052 * coding.c (encode_coding_raw_text): Avoid unnecessary test
22053 the first time through the loop, since we know p0 < p1 then.
22054 This also avoids a gcc -Wstrict-overflow warning.
22055
22056 * lisp.h (SAFE_ALLOCA, SAFE_ALLOCA_LISP): Avoid 'int' overflow
22057 leading to a memory leak, possible in functions like
22058 load_charset_map_from_file that can allocate an unbounded number
22059 of objects (Bug#8318).
22060
22061 * xmenu.c (set_frame_menubar): Use EMACS_UINT, not int, for indexes
22062 that could (at least in theory) be that large.
22063
22064 * xdisp.c (message_log_check_duplicate): Return unsigned long, not int.
22065 This is less likely to overflow, and avoids undefined behavior if
22066 overflow does occur. All callers changed. Use strtoul to scan
22067 for the unsigned long integer.
22068 (pint2hrstr): Simplify and tune code slightly.
22069 This also avoids a (bogus) GCC warning with gcc -Wstrict-overflow.
22070
22071 * scroll.c (do_scrolling): Work around GCC bug 48228.
22072 See <http://gcc.gnu.org/bugzilla/show_bug.cgi?id=48228>.
22073
22074 * frame.c (Fmodify_frame_parameters): Simplify loop counter.
22075 This also avoids a warning with gcc -Wstrict-overflow.
22076 (validate_x_resource_name): Simplify count usage.
22077 This also avoids a warning with gcc -Wstrict-overflow.
22078
22079 * fileio.c (Fcopy_file): Report error if fchown or fchmod
22080 fail (Bug#8306).
22081
22082 * emacs.c (Fdaemon_initialized): Do not ignore I/O errors (Bug#8303).
22083
22084 * process.c (Fmake_network_process): Use socklen_t, not int,
22085 where POSIX says socklen_t is required in portable programs.
22086 This fixes a porting bug on hosts like 64-bit HP-UX, where
22087 socklen_t is wider than int (Bug#8277).
22088 (Fmake_network_process, server_accept_connection):
22089 (wait_reading_process_output, read_process_output):
22090 Likewise.
22091
22092 * process.c: Rename or move locals to avoid shadowing.
22093 (list_processes_1, Fmake_network_process):
22094 (read_process_output_error_handler, exec_sentinel_error_handler):
22095 Rename or move locals.
22096 (Fmake_network_process): Define label "retry_connect" only if needed.
22097 (Fnetwork_interface_info): Fix pointer signedness.
22098 (process_send_signal): Add cast to avoid pointer signedness problem.
22099 (FIRST_PROC_DESC, IF_NON_BLOCKING_CONNECT): Remove unused macros.
22100 (create_process): Use 'volatile' to avoid vfork clobbering (Bug#8298).
22101
22102 Make tparam.h and terminfo.c consistent.
22103 * cm.c (tputs, tgoto, BC, UP): Remove extern decls.
22104 Include tparam.h instead, since it declares them.
22105 * cm.h (PC): Remove extern decl; tparam.h now does this.
22106 * deps.mk (cm.o, terminfo.o): Depend on tparam.h.
22107 * terminfo.c: Include tparam.h, to check interfaces.
22108 (tparm): Make 1st arg a const pointer in decl. Put it at top level.
22109 (tparam): Adjust signature to match interface in tparam.h;
22110 this removes some undefined behavior. Check that outstring and len
22111 are zero, which they always are with Emacs.
22112 * tparam.h (PC, BC, UP): New extern decls.
22113
22114 * xftfont.c (xftfont_shape): Now static, and defined only if needed.
22115 (xftfont_open): Rename locals to avoid shadowing.
22116
22117 * ftfont.c (ftfont_resolve_generic_family): Fix pointer signedness.
22118 (ftfont_otf_capability, ftfont_shape): Omit decls if not needed.
22119 (OTF_TAG_SYM): Omit macro if not needed.
22120 (ftfont_list): Remove unused local.
22121 (get_adstyle_property, ftfont_pattern_entity):
22122 (ftfont_lookup_cache, ftfont_open, ftfont_anchor_point):
22123 Rename locals to avoid shadowing.
22124
22125 * xfont.c (xfont_list_family): Mark var as initialized.
22126
22127 * xml.c (make_dom): Now static.
22128
22129 * composite.c (composition_compute_stop_pos): Rename local to
22130 avoid shadowing.
22131 (composition_reseat_it): Remove unused locals.
22132 (find_automatic_composition, composition_adjust_point): Likewise.
22133 (composition_update_it): Mark var as initialized.
22134 (find_automatic_composition): Mark vars as initialized,
22135 with a FIXME (Bug#8290).
22136
22137 character.h: Rename locals to avoid shadowing.
22138 * character.h (PREV_CHAR_BOUNDARY, FETCH_STRING_CHAR_ADVANCE):
22139 (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE, FETCH_CHAR_ADVANCE):
22140 (FETCH_CHAR_ADVANCE_NO_CHECK, INC_POS, DEC_POS, BUF_INC_POS):
22141 (BUF_DEC_POS): Be more systematic about renaming local temporaries
22142 to avoid shadowing.
22143
22144 * textprop.c (property_change_between_p): Remove; unused.
22145
22146 * intervals.c (interval_start_pos): Now static.
22147
22148 * intervals.h (CHECK_TOTAL_LENGTH): Avoid empty "else".
22149
22150 * atimer.c (start_atimer, append_atimer_lists, set_alarm):
22151 Rename locals to avoid shadowing.
22152
22153 * sound.c (wav_play, au_play, Fplay_sound_internal):
22154 Fix pointer signedness.
22155 (alsa_choose_format): Remove unused local var.
22156 (wav_play): Initialize a variable to 0, to prevent undefined
22157 behavior (Bug#8278).
22158
22159 * region-cache.c (insert_cache_boundary): Redo var to avoid shadowing.
22160
22161 * region-cache.h (pp_cache): New decl, for gcc -Wmissing-prototypes.
22162
22163 * callproc.c (Fcall_process): Use 'volatile' to avoid vfork
22164 clobbering (Bug#8298).
22165 * sysdep.c (sys_subshell): Likewise.
22166 Previously, the sys_subshell 'volatile' was incorrectly IF_LINTted out.
22167
22168 * lisp.h (child_setup): Now NO_RETURN unless DOS_NT.
22169 This should get cleaned up, so that child_setup has the
22170 same signature on all platforms.
22171
22172 * callproc.c (call_process_cleanup): Now static.
22173 (relocate_fd): Rename locals to avoid shadowing.
22174
22175 2011-03-22 Chong Yidong <cyd@stupidchicken.com>
22176
22177 * xterm.c (x_clear_frame): Remove XClearWindow call. This appears
22178 not to be necessary, and produces flickering.
22179
22180 2011-03-20 Glenn Morris <rgm@gnu.org>
22181
22182 * config.in: Remove file.
22183
22184 2011-03-20 Juanma Barranquero <lekktu@gmail.com>
22185
22186 * minibuf.c (Vcompleting_read_function): Don't declare, global variables
22187 are now in src/globals.h.
22188 (syms_of_minibuf): Remove spurious & from previous change.
22189
22190 2011-03-20 Leo Liu <sdl.web@gmail.com>
22191
22192 * minibuf.c (completing-read-function): New variable.
22193 (completing-read-default): Rename from completing-read.
22194 (completing-read): Call completing-read-function.
22195
22196 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22197
22198 * xfaces.c (Fx_load_color_file):
22199 Read color file from absolute filename (bug#8250).
22200
22201 2011-03-19 Juanma Barranquero <lekktu@gmail.com>
22202
22203 * makefile.w32-in: Update dependencies.
22204
22205 2011-03-17 Eli Zaretskii <eliz@gnu.org>
22206
22207 * makefile.w32-in ($(BLD)/unexw32.$(O)): Depend on $(SRC)/unexec.h.
22208
22209 2011-03-17 Paul Eggert <eggert@cs.ucla.edu>
22210
22211 Fix more problems found by GCC 4.5.2's static checks.
22212
22213 * process.c (make_serial_process_unwind, send_process_trap):
22214 (sigchld_handler): Now static.
22215
22216 * process.c (allocate_pty): Let PTY_ITERATION declare iteration vars.
22217 That way, the code declares only the vars that it needs.
22218 * s/aix4-2.h (PTY_ITERATION): Declare iteration vars.
22219 * s/cygwin.h (PTY_ITERATION): Likewise.
22220 * s/darwin.h (PTY_ITERATION): Likewise.
22221 * s/gnu-linux.h (PTY_ITERATION): Likewise.
22222
22223 * s/irix6-5.h (PTY_OPEN): Declare stb, to loosen coupling.
22224 * process.c (allocate_pty): Don't declare stb unless it's needed.
22225
22226 * bytecode.c (MAYBE_GC): Rewrite so as not to use empty "else".
22227 (CONSTANTLIM): Remove; unused.
22228 (METER_CODE, Bscan_buffer, Bread_char, Bset_mark):
22229 Define only if needed.
22230
22231 * unexelf.c (unexec): Name an expression,
22232 to avoid gcc -Wbad-function-cast warning.
22233 Use a different way to cause a compilation error if anyone uses
22234 n rather than nn, a way that does not involve shadowing.
22235 (ELF_BSS_SECTION_NAME, OLD_PROGRAM_H): Remove; unused.
22236
22237 * deps.mk (unexalpha.o): Remove; unused.
22238
22239 New file unexec.h, the (simple) interface for unexec (Bug#8267).
22240 * unexec.h: New file.
22241 * deps.mk (emacs.o, unexaix.o, unexcw.o, unexcoff.o, unexelf.o):
22242 (unexhp9k800.o, unexmacosx.o, unexsol.o, unexw32.o):
22243 Depend on unexec.h.
22244 * emacs.c [!defined CANNOT_DUMP]: Include unexec.h.
22245 * unexaix.c, unexcoff.c, unexcw.c, unexelf.c, unexhp9k800.c:
22246 * unexmacosx.c, unexsol.c, unexw32.c: Include unexec.h.
22247 Change as necessary to match prototype in unexec.h.
22248
22249 * syntax.c (Fforward_comment, scan_lists): Rename locals to avoid
22250 shadowing.
22251 (back_comment, skip_chars): Mark vars as initialized.
22252
22253 * character.h (FETCH_STRING_CHAR_ADVANCE_NO_CHECK, BUF_INC_POS):
22254 Rename locals to avoid shadowing.
22255
22256 * lread.c (read1): Rewrite so as not to use empty "else".
22257 (Fload, readevalloop, read1): Rename locals to avoid shadowing.
22258
22259 * print.c (Fredirect_debugging_output): Fix pointer signedess.
22260
22261 * lisp.h (debug_output_compilation_hack): Add decl here, to avoid
22262 warning when compiling print.c.
22263
22264 * font.c (font_unparse_fcname): Abort in an "impossible" situation
22265 instead of using an uninitialized var.
22266 (font_sort_entities): Mark var as initialized.
22267
22268 * character.h (FETCH_CHAR_ADVANCE): Rename locals to avoid shadowing.
22269
22270 * font.c (font_unparse_xlfd): Don't mix pointers to variables with
22271 pointers to constants.
22272 (font_parse_fcname): Remove unused vars.
22273 (font_delete_unmatched): Now static.
22274 (font_get_spec): Remove; unused.
22275 (font_style_to_value, font_prop_validate_style, font_unparse_fcname):
22276 (font_update_drivers, Ffont_get_glyphs, font_add_log):
22277 Rename or move locals to avoid shadowing.
22278
22279 * fns.c (require_nesting_list, require_unwind): Now static.
22280 (Ffillarray): Rename locals to avoid shadowing.
22281
22282 * floatfns.c (domain_error2): Define only if needed.
22283 (Ffrexp, Fldexp): Rename locals to avoid shadowing.
22284
22285 * alloc.c (mark_backtrace): Move decl from here ...
22286 * lisp.h: ... to here, so that it can be checked.
22287
22288 * eval.c (call_debugger, do_debug_on_call, grow_specpdl): Now static.
22289 (Fdefvar): Rewrite so as not to use empty "else".
22290 (lisp_indirect_variable): Name an expression,
22291 to avoid gcc -Wbad-function-cast warning.
22292 (Fdefvar): Rename locals to avoid shadowing.
22293
22294 * callint.c (quotify_arg, quotify_args): Now static.
22295 (Fcall_interactively): Rename locals to avoid shadowing.
22296 Use const pointer when appropriate.
22297
22298 * lisp.h (get_system_name, get_operating_system_release):
22299 Move decls here, to check interfaces.
22300 * process.c (get_operating_system_release): Move decl to lisp.h.
22301 * xrdb.c (get_system_name): Likewise.
22302 * editfns.c (init_editfns, Fuser_login_name, Fuser_uid):
22303 (Fuser_real_uid, Fuser_full_name): Remove unnecessary casts,
22304 some of which prompt warnings from gcc -Wbad-function-cast.
22305 (Fformat_time_string, Fencode_time, Finsert_char):
22306 (Ftranslate_region_internal, Fformat):
22307 Rename or remove local vars to avoid shadowing.
22308 (Ftranslate_region_internal): Mark var as initialized.
22309
22310 * doc.c (Fdocumentation, Fsnarf_documentation): Move locals to
22311 avoid shadowing.
22312
22313 * lisp.h (eassert): Check that the argument compiles, even if
22314 ENABLE_CHECKING is not defined.
22315
22316 * data.c (Findirect_variable): Name an expression, to avoid
22317 gcc -Wbad-function-cast warning.
22318 (default_value, arithcompare, arith_driver, arith_error): Now static.
22319 (store_symval_forwarding): Rename local to avoid shadowing.
22320 (Fmake_variable_buffer_local, Fmake_local_variable):
22321 Mark variables as initialized.
22322 (do_blv_forwarding, do_symval_forwarding): Remove; unused.
22323
22324 * alloc.c (check_cons_list): Do not define unless GC_CHECK_CONS_LIST.
22325 (Fmake_vector, Fvector, Fmake_byte_code, Fgarbage_collect):
22326 Rename locals to avoid shadowing.
22327 (mark_stack): Move local variables into the #ifdef region where
22328 they're used.
22329 (BLOCK_INPUT_ALLOC, UNBLOCK_INPUT_ALLOC): Define only if
22330 ! defined SYSTEM_MALLOC && ! defined SYNC_INPUT, as they are not
22331 needed otherwise.
22332 (CHECK_ALLOCATED): Define only if GC_CHECK_MARKED_OBJECTS.
22333 (GC_STRING_CHARS): Remove; not used.
22334 (Fmemory_limit): Cast sbrk's returned value to char *.
22335
22336 * lisp.h (check_cons_list): Declare if GC_CHECK_CONS_LIST; this
22337 avoids undefined behavior in theory.
22338
22339 * regex.c (IF_LINT): Add defn, for benefit of ../lib-src.
22340
22341 Use functions, not macros, for up- and down-casing (Bug#8254).
22342 * buffer.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22343 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Remove. All callers changed
22344 to use the following functions instead of these macros.
22345 (downcase): Adjust to lack of DOWNCASE_TABLE. Return int, not
22346 EMACS_INT, since callers assume the returned value fits in int.
22347 (upcase1): Likewise, for UPCASE_TABLE.
22348 (uppercasep, lowercasep, upcase): New static inline functions.
22349 * editfns.c (Fchar_equal): Remove no-longer-needed workaround for
22350 the race-condition problem in the old DOWNCASE.
22351
22352 * regex.c (CHARSET_LOOKUP_RANGE_TABLE_RAW, POP_FAILURE_REG_OR_COUNT):
22353 Rename locals to avoid shadowing.
22354 (regex_compile, re_match_2_internal): Move locals to avoid shadowing.
22355 (regex_compile, re_search_2, re_match_2_internal):
22356 Remove unused local vars.
22357 (FREE_VAR): Rewrite so as not to use empty "else",
22358 which gcc can warn about.
22359 (regex_compile, re_match_2_internal): Mark locals as initialized.
22360 (RETALLOC_IF): Define only if needed.
22361 (WORDCHAR_P): Likewise. This one is never needed, but is used
22362 only in a comment talking about a compiler bug, so put inside
22363 the #if 0 of that comment.
22364 (CHARSET_LOOKUP_BITMAP, FAIL_STACK_FULL, RESET_FAIL_STACK):
22365 (PUSH_FAILURE_ELT, BUF_PUSH_3, STOP_ADDR_VSTRING):
22366 Remove; unused.
22367
22368 * search.c (boyer_moore): Rename locals to avoid shadowing.
22369 * character.h (FETCH_STRING_CHAR_AS_MULTIBYTE_ADVANCE):
22370 (PREV_CHAR_BOUNDARY): Likewise.
22371
22372 * search.c (simple_search): Remove unused var.
22373
22374 * dired.c (compile_pattern): Move decl from here ...
22375 * lisp.h: ... to here, so that it can be checked.
22376 (struct re_registers): New forward decl.
22377
22378 * character.h (INC_POS, DEC_POS): Rename locals to avoid shadowing.
22379
22380 * indent.c (MULTIBYTE_BYTES_WIDTH): New args bytes, width.
22381 All uses changed.
22382 (MULTIBYTE_BYTES_WIDTH, scan_for_column, compute_motion):
22383 Rename locals to avoid shadowing.
22384 (Fvertical_motion): Mark locals as initialized.
22385
22386 * casefiddle.c (casify_object, casify_region): Now static.
22387 (casify_region): Mark local as initialized.
22388
22389 * cmds.c (internal_self_insert): Rename local to avoid shadowing.
22390
22391 * lisp.h (GCPRO2_VAR, GCPRO3_VAR, GCPRO4_VAR, GCPRO5_VAR, GCPRO6_VAR):
22392 New macros, so that the caller can use some names other than
22393 gcpro1, gcpro2, etc.
22394 (GCPRO2, GCPRO3, GCPRO4, GCPRO5, GCPRO6): Reimplement in terms
22395 of the new macros.
22396 (GCPRO1_VAR, UNGCPRO_VAR): Change the meaning of the second
22397 argument, for consistency with GCPRO2_VAR, etc: it is now the
22398 prefix of the variable, not the variable itself. All uses
22399 changed.
22400 * dired.c (directory_files_internal, file_name_completion):
22401 Rename locals to avoid shadowing.
22402
22403 Fix a race condition diagnosed by gcc -Wsequence-point (Bug#8254).
22404 An expression of the form (DOWNCASE (x) == DOWNCASE (y)), found in
22405 dired.c's scmp function, had undefined behavior.
22406 * lisp.h (DOWNCASE_TABLE, UPCASE_TABLE, DOWNCASE, UPPERCASEP):
22407 (NOCASEP, LOWERCASEP, UPCASE, UPCASE1): Move from here ...
22408 * buffer.h: ... to here, because these macros use current_buffer,
22409 and the new implementation with inline functions needs to have
22410 current_buffer in scope now, rather than later when the macros
22411 are used.
22412 (downcase, upcase1): New static inline functions.
22413 (DOWNCASE, UPCASE1): Reimplement using these functions.
22414 This avoids undefined behavior in expressions like
22415 DOWNCASE (x) == DOWNCASE (y), which previously suffered
22416 from race conditions in accessing the global variables
22417 case_temp1 and case_temp2.
22418 * casetab.c (case_temp1, case_temp2): Remove; no longer needed.
22419 * lisp.h (case_temp1, case_temp2): Remove their decls.
22420 * character.h (ASCII_CHAR_P): Move from here ...
22421 * lisp.h: ... to here, so that the inline functions mentioned
22422 above can use them.
22423
22424 * dired.c (directory_files_internal_unwind): Now static.
22425
22426 * fileio.c (file_name_as_directory, directory_file_name):
22427 (barf_or_query_if_file_exists, auto_save_error, auto_save_1):
22428 Now static.
22429 (file_name_as_directory): Use const pointers when appropriate.
22430 (Fexpand_file_name): Likewise. In particular, newdir might
22431 point at constant storage, so make it a const pointer.
22432 (Fmake_directory_internal, Fread_file_name): Remove unused vars.
22433 (Ffile_selinux_context, Fset_file_selinux_context): Fix pointer
22434 signedness issues.
22435 (Fset_file_times, Finsert_file_contents, auto_save_error):
22436 Rename locals to avoid shadowing.
22437
22438 * minibuf.c (choose_minibuf_frame_1): Now static.
22439 (Ftry_completion, Fall_completions): Rename or remove locals
22440 to avoid shadowing.
22441
22442 * marker.c (bytepos_to_charpos): Remove; unused.
22443
22444 * lisp.h (verify_bytepos, count_markers): New decls,
22445 so that gcc does not warn that these functions aren't declared.
22446
22447 * insdel.c (check_markers, make_gap_larger, make_gap_smaller):
22448 (reset_var_on_error, Fcombine_after_change_execute_1): Now static.
22449 (CHECK_MARKERS): Redo to avoid gcc -Wempty-body diagnostic.
22450 (copy_text): Remove unused local var.
22451
22452 * filelock.c (within_one_second): Now static.
22453 (lock_file_1): Rename local to avoid shadowing.
22454
22455 * buffer.c (fix_overlays_before): Mark locals as initialized.
22456 (fix_start_end_in_overlays): Likewise. This function should be
22457 simplified by using pointers-to-pointers, but that's a different
22458 matter.
22459 (switch_to_buffer_1): Now static.
22460 (Fkill_buffer, record_buffer, Fbury_buffer, Fset_buffer_multibyte):
22461 (report_overlay_modification): Rename locals to avoid shadowing.
22462
22463 * sysdep.c (system_process_attributes): Rename vars to avoid shadowing.
22464 Fix pointer signedness issue.
22465 (sys_subshell): Mark local as volatile if checking for lint,
22466 to suppress a gcc -Wclobbered warning that does not seem to be right.
22467 (MAXPATHLEN): Define only if needed.
22468
22469 * process.c (serial_open, serial_configure): Move decls from here ...
22470 * systty.h: ... to here, so that they can be checked.
22471
22472 * fns.c (get_random, seed_random): Move extern decls from here ...
22473 * lisp.h: ... to here, so that they can be checked.
22474
22475 * sysdep.c (reset_io): Now static.
22476 (wait_for_termination_signal): Remove; unused.
22477
22478 * keymap.c (keymap_parent, keymap_memberp, map_keymap_internal):
22479 (copy_keymap_item, append_key, push_text_char_description):
22480 Now static.
22481 (Fwhere_is_internal): Don't test CONSP (sequences) unnecessarily.
22482 (DENSE_TABLE_SIZE): Remove; unused.
22483 (get_keymap, access_keymap, Fdefine_key, Fwhere_is_internal):
22484 (describe_map_tree):
22485 Rename locals to avoid shadowing.
22486
22487 * keyboard.c: Declare functions static if they are not used elsewhere.
22488 (echo_char, echo_dash, cmd_error, top_level_2):
22489 (poll_for_input, handle_async_input): Now static.
22490 (read_char, kbd_buffer_get_event, make_lispy_position):
22491 (make_lispy_event, make_lispy_movement, apply_modifiers):
22492 (decode_keyboard_code, tty_read_avail_input, menu_bar_items):
22493 (parse_tool_bar_item, read_key_sequence, Fread_key_sequence):
22494 (Fread_key_sequence_vector): Rename locals to avoid shadowing.
22495 (read_key_sequence, read_char): Mark locals as initialized.
22496 (Fexit_recursive_edit, Fabort_recursive_edit): Mark with NO_RETURN.
22497
22498 * keyboard.h (make_ctrl_char): New decl.
22499 (mark_kboards): Move decl here ...
22500 * alloc.c (mark_kboards): ... from here.
22501
22502 * lisp.h (force_auto_save_soon): New decl.
22503
22504 * emacs.c (init_cmdargs): Rename local to avoid shadowing.
22505 (DEFINE_DUMMY_FUNCTION): New macro.
22506 (__do_global_ctors, __do_global_ctors_aux, __do_global_dtors, __main):
22507 Use it.
22508 (main): Add casts to avoid warnings
22509 if GCC considers string literals to be constants.
22510
22511 * lisp.h (fatal_error_signal): Add decl, since it's exported.
22512
22513 * dbusbind.c: Pointer signedness fixes.
22514 (xd_signature, xd_append_arg, xd_initialize):
22515 (Fdbus_call_method, Fdbus_call_method_asynchronously):
22516 (Fdbus_method_return_internal, Fdbus_method_error_internal):
22517 (Fdbus_send_signal, xd_read_message_1, Fdbus_register_service):
22518 (Fdbus_register_signal): Use SSDATA when the context wants char *.
22519
22520 * dbusbind.c (Fdbus_init_bus): Add cast to avoid warning
22521 if GCC considers string literals to be constants.
22522 (Fdbus_register_service, Fdbus_register_method): Remove unused vars.
22523
22524 2011-03-16 Stefan Monnier <monnier@iro.umontreal.ca>
22525
22526 * print.c (PRINT_CIRCLE_CANDIDATE_P): New macro.
22527 (print_preprocess, print_object): New macro to fix last change.
22528
22529 * print.c (print_preprocess): Don't forget font objects.
22530
22531 2011-03-16 Juanma Barranquero <lekktu@gmail.com>
22532
22533 * emacs.c (USAGE3): Doc fixes.
22534
22535 2011-03-15 Andreas Schwab <schwab@linux-m68k.org>
22536
22537 * coding.c (detect_coding_iso_2022): Reorganize code to clarify
22538 structure.
22539
22540 2011-03-14 Juanma Barranquero <lekktu@gmail.com>
22541
22542 * lisp.h (VWindow_system, Qfile_name_history):
22543 * keyboard.h (lispy_function_keys) [WINDOWSNT]:
22544 * w32term.h (w32_system_caret_hwnd, w32_system_caret_height)
22545 (w32_system_caret_x, w32_system_caret_y): Declare extern.
22546
22547 * w32select.c: Don't #include "keyboard.h".
22548 (run_protected): Add extern declaration for waiting_for_input.
22549
22550 * w32.c (Qlocal, noninteractive1, inhibit_window_system):
22551 * w32console.c (detect_input_pending, read_input_pending)
22552 (encode_terminal_code):
22553 * w32fns.c (quit_char, lispy_function_keys, Qtooltip)
22554 (w32_system_caret_hwnd, w32_system_caret_height, w32_system_caret_x)
22555 (w32_system_caret_y, Qfile_name_history):
22556 * w32font.c (w32font_driver, QCantialias, QCotf, QClang):
22557 * w32inevt.c (reinvoke_input_signal, lispy_function_keys):
22558 * w32menu.c (Qmenu_bar, QCtoggle, QCradio, Qoverriding_local_map)
22559 (Qoverriding_terminal_local_map, Qmenu_bar_update_hook):
22560 * w32proc.c (Qlocal, report_file_error):
22561 * w32term.c (Vwindow_system, updating_frame):
22562 * w32uniscribe.c (initialized, uniscribe_font_driver):
22563 Remove unneeded extern declarations.
22564
22565 2011-03-14 Chong Yidong <cyd@stupidchicken.com>
22566
22567 * buffer.c (Fmake_indirect_buffer): Fix incorrect assertions.
22568
22569 2011-03-13 Chong Yidong <cyd@stupidchicken.com>
22570
22571 * buffer.h (BUF_BEGV, BUF_BEGV_BYTE, BUF_ZV, BUF_ZV_BYTE, BUF_PT)
22572 (BUF_PT_BYTE): Rewrite to handle indirect buffers (Bug#8219).
22573 These macros can no longer be used for assignment.
22574
22575 * buffer.c (Fget_buffer_create, Fmake_indirect_buffer):
22576 Assign struct members directly, instead of using BUF_BEGV etc.
22577 (record_buffer_markers, fetch_buffer_markers): New functions for
22578 recording and fetching special buffer markers.
22579 (set_buffer_internal_1, set_buffer_temp): Use them.
22580
22581 * lread.c (unreadchar): Use SET_BUF_PT_BOTH.
22582
22583 * insdel.c (adjust_point): Use SET_BUF_PT_BOTH.
22584
22585 * intervals.c (temp_set_point_both): Use SET_BUF_PT_BOTH.
22586 (get_local_map): Use SET_BUF_BEGV_BOTH and SET_BUF_ZV_BOTH.
22587
22588 * xdisp.c (hscroll_window_tree):
22589 (reconsider_clip_changes): Use PT instead of BUF_PT.
22590
22591 2011-03-13 Eli Zaretskii <eliz@gnu.org>
22592
22593 * makefile.w32-in ($(BLD)/editfns.$(O)): Depend on
22594 $(EMACS_ROOT)/lib/intprops.h.
22595
22596 2011-03-13 Paul Eggert <eggert@cs.ucla.edu>
22597
22598 Fix more problems found by GCC 4.5.2's static checks.
22599
22600 * gtkutil.c (xg_get_pixbuf_from_pixmap): Add cast from char *
22601 to unsigned char * to avoid compiler diagnostic.
22602 (xg_free_frame_widgets): Make it clear that a local variable is
22603 needed only if USE_GTK_TOOLTIP.
22604 (gdk_window_get_screen): Make it clear that this macro is needed
22605 only if USE_GTK_TOOLTIP.
22606 (int_gtk_range_get_value): New function, which avoids a diagnostic
22607 from gcc -Wbad-function-cast.
22608 (xg_set_toolkit_scroll_bar_thumb): Use it.
22609 (xg_tool_bar_callback, xg_tool_item_stale_p): Rewrite to avoid
22610 diagnostic from gcc -Wbad-function-cast.
22611 (get_utf8_string, xg_get_file_with_chooser):
22612 Rename locals to avoid shadowing.
22613 (create_dialog): Move locals to avoid shadowing.
22614
22615 * xgselect.c (xg_select): Remove unused var.
22616
22617 * image.c (four_corners_best): Mark locals as initialized.
22618 (gif_load): Initialize transparent_p to zero (Bug#8238).
22619 Mark another local as initialized.
22620 (my_png_error, my_error_exit): Mark with NO_RETURN.
22621
22622 * image.c (clear_image_cache): Now static.
22623 (DIM, HAVE_STDLIB_H_1): Remove unused macros.
22624 (xpm_load): Redo to avoid "discards qualifiers" gcc warning.
22625 (x_edge_detection): Remove unnecessary cast that
22626 gcc -Wbad-function-cast diagnoses.
22627 (gif_load): Fix pointer signedness.
22628 (clear_image_cache, xbm_read_bitmap_data, x_detect_edges):
22629 (jpeg_load, gif_load): Rename locals to avoid shadowing.
22630
22631 2011-03-12 Paul Eggert <eggert@cs.ucla.edu>
22632
22633 Improve quality of tests for time stamp overflow.
22634 For example, without this patch (encode-time 0 0 0 1 1
22635 1152921504606846976) returns the obviously-bogus value (-948597
22636 62170) on my RHEL 5.5 x86-64 host. With the patch, it correctly
22637 reports time overflow. See
22638 <http://lists.gnu.org/archive/html/emacs-devel/2011-03/msg00470.html>.
22639 * deps.mk (editfns.o): Depend on ../lib/intprops.h.
22640 * editfns.c: Include limits.h and intprops.h.
22641 (TIME_T_MIN, TIME_T_MAX): New macros.
22642 (time_overflow): Move earlier, to before first use.
22643 (hi_time, lo_time): New functions, for an accurate test for
22644 out-of-range times.
22645 (Fcurrent_time, Fget_internal_run_time, make_time): Use them.
22646 (Fget_internal_run_time): Don't assume time_t fits in int.
22647 (make_time): Use list2 instead of Fcons twice.
22648 (Fdecode_time): More accurate test for out-of-range times.
22649 (check_tm_member): New function.
22650 (Fencode_time): Use it, to test for out-of-range times.
22651 (lisp_time_argument): Don't rely on undefined left-shift and
22652 right-shift behavior when checking for time stamp overflow.
22653
22654 * editfns.c (time_overflow): New function, refactoring common code.
22655 (Fformat_time_string, Fdecode_time, Fencode_time):
22656 (Fcurrent_time_string): Use it.
22657
22658 Move 'make_time' to be next to its inverse 'lisp_time_argument'.
22659 * dired.c (make_time): Move to ...
22660 * editfns.c (make_time): ... here.
22661 * systime.h: Note the move.
22662
22663 2011-03-12 YAMAMOTO Mitsuharu <mituharu@math.s.chiba-u.ac.jp>
22664
22665 * fringe.c (update_window_fringes): Remove unused variables.
22666
22667 * unexmacosx.c (copy_data_segment): Also copy __got section.
22668 (Bug#8223)
22669
22670 2011-03-12 Eli Zaretskii <eliz@gnu.org>
22671
22672 * termcap.c [MSDOS]: Include "msdos.h".
22673 (find_capability, tgetnum, tgetflag, tgetstr, tputs, tgetent):
22674 Constify `char *' arguments and their references according to
22675 prototypes in tparam.h.
22676
22677 * deps.mk (termcap.o): Depend on tparam.h and msdos.h.
22678
22679 * msdos.c (XMenuAddPane): 3rd argument is `const char *' now.
22680 Adapt all references accordingly.
22681
22682 * msdos.h (XMenuAddPane): 3rd argument is `const char *' now.
22683
22684 2011-03-11 Tom Tromey <tromey@redhat.com>
22685
22686 * buffer.c (syms_of_buffer): Remove obsolete comment.
22687
22688 2011-03-11 Eli Zaretskii <eliz@gnu.org>
22689
22690 * termhooks.h (encode_terminal_code): Declare prototype.
22691
22692 * msdos.c (encode_terminal_code): Don't declare prototype.
22693
22694 * term.c (encode_terminal_code): Now external again, used by
22695 w32console.c and msdos.c.
22696
22697 * makefile.w32-in ($(BLD)/term.$(O), ($(BLD)/tparam.$(O)):
22698 Depend on $(SRC)/tparam.h, see 2011-03-11T07:24:21Z!eggert@cs.ucla.edu.
22699
22700 2011-03-11 Paul Eggert <eggert@cs.ucla.edu>
22701
22702 Fix some minor problems found by GCC 4.5.2's static checks.
22703
22704 * fringe.c (update_window_fringes): Mark locals as initialized
22705 (Bug#8227).
22706 (destroy_fringe_bitmap, init_fringe_bitmap): Now static.
22707
22708 * alloc.c (mark_fringe_data): Move decl from here ...
22709 * lisp.h (mark_fringe_data) [HAVE_WINDOW_SYSTEM]: ... to here,
22710 to check its interface.
22711 (init_fringe_once): Do not declare unless HAVE_WINDOW_SYSTEM.
22712
22713 * fontset.c (free_realized_fontset): Now static.
22714 (Fset_fontset_font): Rename local to avoid shadowing.
22715 (fontset_font): Mark local as initialized.
22716 (FONTSET_SPEC, FONTSET_REPERTORY, RFONT_DEF_REPERTORY): Remove; unused.
22717
22718 * xrdb.c: Include "xterm.h", to check x_load_resources's interface.
22719
22720 * xselect.c (x_disown_buffer_selections): Remove; not used.
22721 (TRACE3) [!defined TRACE_SELECTION]: Remove; not used.
22722 (x_own_selection, Fx_disown_selection_internal): Rename locals
22723 to avoid shadowing.
22724 (x_handle_dnd_message): Remove local to avoid shadowing.
22725
22726 * lisp.h (GCPRO1_VAR, UNGCPRO_VAR): New macros,
22727 so that the caller can use some name other than gcpro1.
22728 (GCPRO1, UNGCPRO): Reimplement in terms of the new macros.
22729 * xfns.c (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22730 (Fx_backspace_delete_keys_p):
22731 Use them to avoid shadowing, and rename vars to avoid shadowing.
22732 (x_decode_color, x_set_name, x_window): Now static.
22733 (Fx_create_frame): Add braces to silence GCC warning.
22734 (Fx_file_dialog, Fx_select_font): Fix pointer signedness.
22735 (x_real_positions, xg_set_icon_from_xpm_data, x_create_tip_frame):
22736 Remove unused locals.
22737 (Fx_create_frame, x_create_tip_frame, Fx_show_tip):
22738 (Fx_backspace_delete_keys_p): Rename locals to avoid shadowing.
22739 Some of these renamings use the new GCPRO1_VAR and UNGCPRO_VAR
22740 macros.
22741
22742 * xterm.h (x_mouse_leave): New decl.
22743
22744 * xterm.c (x_copy_dpy_color, x_focus_on_frame, x_unfocus_frame):
22745 Remove unused functions.
22746 (x_shift_glyphs_for_insert, XTflash, XTring_bell):
22747 (x_calc_absolute_position): Now static.
22748 (XTread_socket): Don't define label "out" unless it's used.
22749 Don't declare local "event" unless it's used.
22750 (x_iconify_frame, x_free_frame_resources): Don't declare locals
22751 unless they are used.
22752 (XEMBED_VERSION, xembed_set_info): Don't define unless needed.
22753 (x_fatal_error_signal): Remove; not used.
22754 (x_draw_image_foreground, redo_mouse_highlight, XTmouse_position):
22755 (x_scroll_bar_report_motion, handle_one_xevent, x_draw_bar_cursor):
22756 (x_error_catcher, x_connection_closed, x_error_handler):
22757 (x_error_quitter, xembed_send_message, x_iconify_frame):
22758 (my_log_handler): Rename locals to avoid shadowing.
22759 (x_delete_glyphs, x_ins_del_lines): Mark with NO_RETURN.
22760 (x_connection_closed): Tell GCC not to suggest NO_RETURN.
22761
22762 * xfaces.c (clear_face_cache, Fx_list_fonts, Fface_font):
22763 Rename or move locals to avoid shadowing.
22764 (tty_defined_color, merge_face_heights): Now static.
22765 (free_realized_faces_for_fontset): Remove; not used.
22766 (Fx_list_fonts): Mark variable that gcc -Wuninitialized
22767 does not deduce is never used uninitialized.
22768 (STRDUPA, LSTRDUPA, FONT_POINT_SIZE_QUANTUM): Remove; not used.
22769 (LFACEP): Define only if XASSERTS, as it's not needed otherwise.
22770
22771 * terminal.c (store_terminal_param): Now static.
22772
22773 * xmenu.c (menu_highlight_callback): Now static.
22774 (set_frame_menubar): Remove unused local.
22775 (xmenu_show): Rename parameter to avoid shadowing.
22776 (xmenu_show, xdialog_show, xmenu_show): Make local pointers "const"
22777 since they might point to immutable storage.
22778 (next_menubar_widget_id): Declare only if USE_X_TOOLKIT,
22779 since it's unused otherwise.
22780
22781 * xdisp.c (produce_glyphless_glyph): Initialize lower_xoff.
22782 Add a FIXME, since the code still doesn't look right. (Bug#8215)
22783 (Fcurrent_bidi_paragraph_direction): Simplify slightly; this
22784 avoids a gcc -Wuninitialized diagnostic.
22785 (display_line, BUILD_COMPOSITE_GLYPH_STRING, draw_glyphs):
22786 (note_mouse_highlight): Mark variables that gcc -Wuninitialized
22787 does not deduce are never used uninitialized.
22788
22789 * lisp.h (IF_LINT): New macro, copied from ../lib-src/emacsclient.c.
22790
22791 * xdisp.c (redisplay_window): Rename local to avoid shadowing.
22792 * window.c (window_loop, size_window):
22793 (run_window_configuration_change_hook, enlarge_window): Likewise.
22794
22795 * window.c (display_buffer): Now static.
22796 (size_window): Mark variables that gcc -Wuninitialized
22797 does not deduce are never used uninitialized.
22798 * window.h (check_all_windows): New decl, to forestall
22799 gcc -Wmissing-prototypes diagnostic.
22800 * dispextern.h (bidi_dump_cached_states): Likewise.
22801
22802 * charset.h (CHECK_CHARSET_GET_CHARSET): Rename locals to avoid
22803 shadowing.
22804 * charset.c (map_charset_for_dump, Fchar_charset): Likewise.
22805 Include <limits.h>.
22806 (Fsort_charsets): Redo min/max calculation to shorten the code a bit
22807 and to avoid gcc -Wuninitialized warning.
22808 (load_charset_map): Mark variables that gcc -Wuninitialized
22809 does not deduce are never used uninitialized.
22810 (load_charset): Abort instead of using uninitialized var (Bug#8229).
22811
22812 * coding.c (coding_set_source, coding_set_destination):
22813 Use "else { /* comment */ }" rather than "else /* comment */;"
22814 for clarity, and to avoid gcc -Wempty-body warning.
22815 (Fdefine_coding_system_internal): Don't redeclare 'i' inside
22816 a block, when the outer 'i' will do.
22817 (decode_coding_utf_8, decode_coding_utf_16, detect_coding_emacs_mule):
22818 (emacs_mule_char, decode_coding_emacs_mule, detect_coding_iso_2022):
22819 (decode_coding_iso_2022, decode_coding_sjis, decode_coding_big5):
22820 (decode_coding_raw_text, decode_coding_charset, get_translation_table):
22821 (Fdecode_sjis_char, Fdefine_coding_system_internal):
22822 Rename locals to avoid shadowing.
22823 * character.h (FETCH_STRING_CHAR_ADVANCE): Likewise.
22824 * coding.c (emacs_mule_char, encode_invocation_designation):
22825 Now static, since they're not used elsewhere.
22826 (decode_coding_iso_2022): Add "default: abort ();" as a safety check.
22827 (decode_coding_object, encode_coding_object, detect_coding_system):
22828 (decode_coding_emacs_mule): Mark variables that gcc
22829 -Wuninitialized does not deduce are never used uninitialized.
22830 (detect_coding_iso_2022): Initialize a local variable that might
22831 be used uninitialized. Leave a FIXME because it's not clear that
22832 this initialization is needed. (Bug#8211)
22833 (ISO_CODE_LF, ISO_CODE_CR, CODING_ISO_FLAG_EUC_TW_SHIFT):
22834 (ONE_MORE_BYTE_NO_CHECK, UTF_BOM, UTF_16_INVALID_P):
22835 (SHIFT_OUT_OK, ENCODE_CONTROL_SEQUENCE_INTRODUCER):
22836 (ENCODE_DIRECTION_R2L, ENCODE_DIRECTION_L2R):
22837 Remove unused macros.
22838
22839 * category.c (hash_get_category_set): Remove unused local var.
22840 (copy_category_table): Now static, since it's not used elsewhere.
22841 * character.c (string_count_byte8): Likewise.
22842
22843 * ccl.c (CCL_WRITE_STRING, CCL_ENCODE_CHAR, Fccl_execute_on_string):
22844 (Fregister_code_conversion_map): Rename locals to avoid shadowing.
22845
22846 * chartab.c (copy_sub_char_table): Now static, since it's not used
22847 elsewhere.
22848 (sub_char_table_ref_and_range, char_table_ref_and_range):
22849 Rename locals to avoid shadowing.
22850 (ASET_RANGE, GET_SUB_CHAR_TABLE): Remove unused macros.
22851
22852 * bidi.c (bidi_check_type): Now static, since it's not used elsewhere.
22853 (BIDI_BOB): Remove unused macro.
22854
22855 * cm.c (cmgoto): Mark variables that gcc -Wuninitialized does not
22856 deduce are never used uninitialized.
22857 * term.c (encode_terminal_code): Likewise.
22858
22859 * term.c (encode_terminal_code): Now static. Remove unused local.
22860
22861 * tparam.h: New file.
22862 * term.c, tparam.h: Include it.
22863 * deps.mk (term.o, tparam.o): Depend on tparam.h.
22864 * term.c (tputs, tgetent, tgetflag, tgetnum, tparam, tgetstr):
22865 Move these decls to tparam.h, and make them agree with what
22866 is actually in tparam.c. The previous trick of using incompatible
22867 decls in different modules does not conform to the C standard.
22868 All callers of tparam changed to use tparam's actual API.
22869 * tparam.c (tparam1, tparam, tgoto):
22870 Use const pointers where appropriate.
22871
22872 * cm.c (calccost, cmgoto): Use const pointers where appropriate.
22873 * cm.h (struct cm): Likewise.
22874 * dispextern.h (do_line_insertion_deletion_costs): Likewise.
22875 * scroll.c (ins_del_costs, do_line_insertion_deletion_costs): Likewise.
22876 * term.c (tty_ins_del_lines, calculate_costs, struct fkey_table):
22877 (term_get_fkeys_1, append_glyphless_glyph, produce_glyphless_glyph):
22878 (turn_on_face, init_tty): Likewise.
22879 * termchar.h (struct tty_display_info): Likewise.
22880
22881 * term.c (term_mouse_position): Rename local to avoid shadowing.
22882
22883 * alloc.c (mark_ttys): Move decl from here ...
22884 * lisp.h (mark_ttys): ... to here, so that it's checked against defn.
22885
22886 2011-03-11 Andreas Schwab <schwab@linux-m68k.org>
22887
22888 * .gdbinit (pwinx, xbuffer): Fix access to buffer name.
22889
22890 2011-03-09 Juanma Barranquero <lekktu@gmail.com>
22891
22892 * search.c (compile_pattern_1): Remove argument regp, unused since
22893 revid:rms@gnu.org-19941211082627-3x1g1wyqkjmwloig.
22894 (compile_pattern): Don't pass it.
22895
22896 2011-03-08 Jan Djärv <jan.h.d@swipnet.se>
22897
22898 * xterm.h (DEFAULT_GDK_DISPLAY): New define.
22899 (GDK_WINDOW_XID, gtk_widget_get_preferred_size): New defines
22900 for ! HAVE_GTK3.
22901 (GTK_WIDGET_TO_X_WIN): Use GDK_WINDOW_XID.
22902
22903 * xmenu.c (menu_position_func): Call gtk_widget_get_preferred_size.
22904
22905 * gtkutil.c: Include gtkx.h if HAVE_GTK3. If ! HAVE_GTK3, define
22906 gdk_window_get_screen, gdk_window_get_geometry,
22907 gdk_x11_window_lookup_for_display and GDK_KEY_g.
22908 (xg_set_screen): Use DEFAULT_GDK_DISPLAY.
22909 (xg_get_pixbuf_from_pixmap): New function.
22910 (xg_get_pixbuf_from_pix_and_mask): Change parameters from GdkPixmap
22911 to Pixmap, take frame as parameter, remove GdkColormap parameter.
22912 Call xg_get_pixbuf_from_pixmap instead of
22913 gdk_pixbuf_get_from_drawable.
22914 (xg_get_image_for_pixmap): Do not make GdkPixmaps, call
22915 xg_get_pixbuf_from_pix_and_mask with Pixmap parameters instead.
22916 (xg_check_special_colors): Use GtkStyleContext and its functions
22917 for HAVE_GTK3.
22918 (xg_prepare_tooltip, xg_hide_tooltip): Call gdk_window_get_screen.
22919 (xg_prepare_tooltip, create_dialog, menubar_map_cb)
22920 (xg_update_frame_menubar, xg_tool_bar_detach_callback)
22921 (xg_tool_bar_attach_callback, xg_update_tool_bar_sizes):
22922 Call gtk_widget_get_preferred_size.
22923 (xg_frame_resized): gdk_window_get_geometry only takes 5
22924 parameters.
22925 (xg_win_to_widget, xg_event_is_for_menubar):
22926 Call gdk_x11_window_lookup_for_display.
22927 (xg_set_widget_bg): New function.
22928 (delete_cb): New function.
22929 (xg_create_frame_widgets): Connect delete-event to delete_cb.
22930 Call xg_set_widget_bg. Only set background pixmap for ! HAVE_GTK3
22931 (xg_set_background_color): Call xg_set_widget_bg.
22932 (xg_set_frame_icon): Call xg_get_pixbuf_from_pix_and_mask.
22933 (xg_create_scroll_bar): vadj is a GtkAdjustment for HAVE_GTK3.
22934 Only call gtk_range_set_update_policy if ! HAVE_GTK3.
22935 (xg_make_tool_item): Only connect xg_tool_bar_item_expose_callback
22936 if ! HAVE_GTK3.
22937 (update_frame_tool_bar): Call gtk_widget_hide.
22938 (xg_initialize): Use GDK_KEY_g.
22939
22940 * xsmfns.c (gdk_set_sm_client_id): Define to gdk_set_sm_client_id
22941 if ! HAVE_GTK3
22942 (x_session_initialize): Call gdk_x11_set_sm_client_id.
22943
22944 * xterm.c (XFillRectangle): Use cairo routines for HAVE_GTK3.
22945 (x_term_init): Disable Xinput(2) with GDK_CORE_DEVICE_EVENTS.
22946 Load ~/emacs.d/gtkrc only for ! HAVE_GTK3.
22947
22948 2011-03-08 Juanma Barranquero <lekktu@gmail.com>
22949
22950 * w32xfns.c (select_palette): Check success of RealizePalette against
22951 GDI_ERROR, not zero.
22952
22953 See ChangeLog.11 for earlier changes.
22954
22955 ;; Local Variables:
22956 ;; coding: utf-8
22957 ;; End:
22958
22959 Copyright (C) 2011-2013 Free Software Foundation, Inc.
22960
22961 This file is part of GNU Emacs.
22962
22963 GNU Emacs is free software: you can redistribute it and/or modify
22964 it under the terms of the GNU General Public License as published by
22965 the Free Software Foundation, either version 3 of the License, or
22966 (at your option) any later version.
22967
22968 GNU Emacs is distributed in the hope that it will be useful,
22969 but WITHOUT ANY WARRANTY; without even the implied warranty of
22970 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
22971 GNU General Public License for more details.
22972
22973 You should have received a copy of the GNU General Public License
22974 along with GNU Emacs. If not, see <http://www.gnu.org/licenses/>.